@font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham-Medium.otf');
}

html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: 0;
}

img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.has-error {
    border: 1px solid red !important;
}

.valign {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.img-center {
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
}

.noscroll {
    overflow: hidden;
}

.static {
    position: static;
}

.nopadding {
    padding-left: 0px;
    padding-right: 0px;
}

.clear {
    clear: both;
}

* {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    ;
}

button:focus {
    outline: none;
}


/*** full-page js ***/

.fp-tableCell {
    display: block;
}


/****** Header CSS ******/

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 5px 0px;
    /*    background-color: rgba(0,0,0,0.5);*/
    z-index: 999;
}

.add-bg {
    background-color: rgba(0, 0, 0, 1);
}

.add-bg .main-logo h1 a {
    color: #00aeef;
}

.main-logo img {
    max-width: 65%;
    display: none;
}

.main-logo h1 {
    margin-top: 8px;
}

.main-logo h1 a {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.hr-nav {
    text-align: center;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.d-block {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.hr-nav ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.hr-nav ul li {
    display: inline-block;
    margin: 20px 10px;
}

.hr-nav ul li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-size: 16px;
}

.hr-nav ul li a:hover {
    color: #00aeef;
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.chng-opc {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Icon 4 */

#nav-icon4 {
    width: 35px;
    height: 32px;
    position: relative;
    margin: 8px auto;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    float: right;
}

#nav-icon4 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #d3531a;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon4 {}

#nav-icon4 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
    top: 19px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

#nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 22px;
    left: 8px;
}


/*** hamburger-icon ***/

.hamburger-icon {
    display: inline-block;
    float: right;
    margin: 5px 10px;
}

.hamburger-icon img {
    margin-bottom: 8px;
}

.hamburger-icon:hover {
    cursor: pointer;
}

.hamburger-icon span {
    margin-right: 5px;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin-top: 12px;
    display: inline-block;
}

/*** main-carousel ***/

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-content img {
    max-width: 50%;
    margin: 0 auto;
}

.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 11px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    color: #fff;
    background-color: #000;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 15px 0;
    font-size: 16px;
    border-radius: 0px;
    border: 0px;
}

.kw-more {
    padding: 8px 14px;
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00aeef;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: white;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.btn-default:hover {
    border-color: #00aeef;
}

.owl-item.active .hero-content img {
    -webkit-animation: 1s .2s zoomIn both;
    animation: 1s .2s zoomIn both;
}

.owl-item.active .hero-content h3 {
    -webkit-animation: 1s .4s zoomIn both;
    animation: 1s .4s zoomIn both;
}

.owl-item.active .hero-content p {
    -webkit-animation: 1s .6s zoomIn both;
    animation: 1s .6s zoomIn both;
}

a.hvr-sweep-to-right i.fa {
    font-size: 22px;
    -webkit-animation: 1s .2s fadeInLeft infinite both;
    animation: 1s .2s fadeInLeft infinite both;
    display: inline-block;
    margin-left: 4px;
}

.owl-item.active .hvr-sweep-to-right {
    -webkit-animation: 1s .9s flipInX both;
    animation: 1s .9s flipInX both;
    /* line-height: 20px; */
}

.main-carousel.owl-carousel .owl-nav.disabled,
.main-carousel.owl-carousel .owl-dots.disabled {
    display: block;
}

/*
.main-carousel.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
*/
.slider-section {
    position: relative;
}

.main-carousel item img.main-img {
    /*    height: 100vh;*/
}

.main-carousel.owl-carousel .owl-nav .owl-prev,
.main-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 35px;
    color: #fff;
}

.main-carousel.owl-carousel .owl-nav .owl-prev {
    left: 44px;
}

.main-carousel.owl-carousel .owl-nav button.owl-prev,
.main-carousel.owl-carousel .owl-nav button.owl-next {
    padding: 5px 14px !important;
    background-color: transparent;
    border: 1px solid #fff;
}

.main-carousel.owl-carousel .owl-nav button:hover {
    background-color: #00aeef;
    border: 1px solid #00aeef;
}

.main-carousel.owl-carousel .owl-nav .owl-next {
    /* float: right; */
    right: 44px;
    top: 50%;
}

.main-carousel-wrapper {
    position: relative;
    /*        height: 100vh;*/
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    bottom: 52px;
    text-align: center;
    width: 100%;
    z-index: 99;
    color: #fff;
    text-transform: capitalize;
}

.scroll-down p {
    margin-bottom: 0px;
    font-size: 16px;
}

.scroll-down a {
    font-size: 30px;
    color: #fff;
    display: inline-block;
    position: relative;
    /*
    -webkit-animation: 1.2s 1.9s fadeInDown infinite;
    animation: 1.2s 1.9s fadeInDown infinite;
*/

}

.scroll-down a i {
    -webkit-animation: scrolldown 1s infinite ease-in-out;
    animation: scrolldown 1s infinite ease-in-out;
}

@-webkit-keyframes scrolldown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes scrolldown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
    }
}

/**** home-about-wrapper ***/

#full-page-wrapper {
    overflow-x: hidden;
}

.home-about-wrapper {
    background: url(../images/parallax.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0px;
    position: relative;
    background-attachment: fixed;
}

.home-about-content h1 {
    color: #00aeef;
    font-size: 28px;
    margin: 0px 0px 20px;
    font-weight: 600;
}

.home-about-content p {
    color: #fff;
    font-size: 16px;
}

/**** projects-setion ****/

.project-home {
    position: relative;
}

.projects-section {
    position: relative;
    overflow-x: hidden;
}

.projects-headline {
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    z-index: 999;
}

.projects-headline h1 {
    font-size: 50px;
    color: #fff;
}

.projects {
    padding: 90px 0px;
    position: relative;
}

.pro-one,
.pro-two {
    background: url(../images/slide-1.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.pro-two {
    background: url(../images/slide-2.jpg) no-repeat;
    background-attachment: fixed;
}

.projects .overlay-bg {
    background-color: rgba(0, 0, 0, 0.8);
}

.project-brief {
    color: #fff;
}

.project-brief h1 {
    margin-top: 0px;
    color: #fff;
    font-size: 30px;
}

.project-brief p {
    color: #fff;
    font-size: 16px;
}

.project-brief ul {
    padding-left: 20px;
    margin: 0px;
}

.project-brief ul li {
    color: #c7c3c3;
    font-size: 16px;
}

/***** footer-wrapper ****/

.footer-wrapper {
    background-color: #000;
    padding: 10px 0px;
}

.footer-wrapper p,
.footer-wrapper p a {
    color: #fff;
    margin: 0px;
}

.footer-wrapper p.right {
    text-align: right;
}

/**** menu-wrapper ***/

.menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    z-index: 999999;
    display: none;
    opacity: 0;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

.open {
    display: block;
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.menu-content .logo {
    text-align: center;
}

.menu-content .logo img {
    max-width: 70%;
    display: none;
    /*
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 0.4s 0.2s ease-in-out;
    transition: all 0.4s 0.2s ease-in-out;
*/
}

.menu-content .logo h1,
.menu-content .logo h1 a {
    color: #fff;
    font-size: 36px;
    margin-top: 0px;
}

.menu-wrapper .menu-content ul {
    text-align: center;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    margin-top: 100px;
}

.menu-wrapper .menu-content ul li {
    margin: 10px 0px;
    opacity: 1;
}

.menu-wrapper .menu-content ul li a {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.menu-content ul li a:hover {
    color: #F1531B;
    text-shadow: -1px -1px 0 #F1531B, 1px -1px 0 #F1531B, -1px 1px 0 #fff, 1px 1px 0 #F1531B;
    -webkit-transition: color .2s ease, text-shadow .2s ease;
    transition: color .2s ease, text-shadow .2s ease;
}

.menu-wrapper.open .menu-content .logo img {
    -webkit-animation: 1s .2s fadeInUp both;
    animation: 1s .2s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.one {
    -webkit-animation: 1s .4s fadeInUp both;
    animation: 1s .4s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.two {
    -webkit-animation: 1s 6s fadeInUp both;
    animation: 1s .6s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.three {
    -webkit-animation: 1s 8s fadeInUp both;
    animation: 1s .8s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.four {
    -webkit-animation: 1s 1s fadeInUp both;
    animation: 1s 1s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.five {
    -webkit-animation: 1s 1.2s fadeInUp both;
    animation: 1s 1.2s fadeInUp both;
}

.menu-wrapper.open .menu-content ul li.six {
    -webkit-animation: 1s 1.4s fadeInUp both;
    animation: 1s 1.4s fadeInUp both;
}

.close-line-wrapper {
    position: absolute;
    right: 30px;
    top: 30px;
    display: block;
    z-index: 99999;
    width: 40px;
    height: 70px;
}

.close-line {
    position: relative;
    width: 28px;
    height: 1px;
    -webkit-transition: all 1.2s linear;
    transition: all 1.2s linear;
}

.close-line:hover {
    cursor: pointer;
}

.close-line:before,
.close-line:after {
    content: "";
    background-color: #fff;
    width: 100%;
    height: 2px;
    top: 4px;
    display: block;
    left: 0;
    position: absolute;
    -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, .4);
    -webkit-transition: all 1.2s linear;
    transition: all 1.2s linear;
}

.menu-wrapper.open .close-line:before {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
    -webkit-transition: all 1.2s linear;
    transition: all 1.2s linear;
}

.menu-wrapper.open .close-line:after {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    -webkit-transition: all 1.2s linear;
    transition: all 1.2s linear;
}

ul.social {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    position: absolute;
    bottom: 10%;
    text-align: center;
    width: 100%;
}

ul.social li {
    display: inline-block;
    margin: 0px 10px;
}

ul.social li a {
    color: #fff;
    font-size: 20px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

ul.social li a:hover {
    color: #F1531B;
}

/***** about-us-content-wrapper ***/

.top-banner {
    /* ff3.6+ */
    /* safari4+,chrome */
    /* safari5.1+,chrome10+ */
    /* opera 11.10+ */
    /* ie10+ */
    background: -webkit-gradient(linear, left top, right top, from(rgba(188, 145, 188, 1)), color-stop(57%, rgba(50, 86, 167, 1)), to(rgba(34, 54, 117, 1)));
    background: linear-gradient(90deg, rgba(188, 145, 188, 1) 0%, rgba(50, 86, 167, 1) 57%, rgba(34, 54, 117, 1) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#BC91BC', endColorstr='#223675', GradientType=1);
    /* ie6-9 */
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.top-banner h1 {
    margin: 0px;
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.about-top-banner {
    /* ff3.6+ */
    /* safari4+,chrome */
    /* safari5.1+,chrome10+ */
    /* opera 11.10+ */
    /* ie10+ */
    background: -webkit-gradient(linear, left top, right top, from(rgba(188, 145, 188, 1)), color-stop(57%, rgba(50, 86, 167, 1)), to(rgba(34, 54, 117, 1)));
    background: linear-gradient(90deg, rgba(188, 145, 188, 1) 0%, rgba(50, 86, 167, 1) 57%, rgba(34, 54, 117, 1) 100%);
    /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#BC91BC', endColorstr='#223675', GradientType=1);
    /* ie6-9 */
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-top-banner h1 {
    color: #fff;
    margin: 0px 0px 0px 100px;
}

.about-us-content-wrapper {
    padding: 60px 0px;
}

.about-us-content {
    /*    padding: 0px 40px;*/
}

.about-us-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    margin-top: 0px;
}

.about-us-content p {
    color: #000;
    font-size: 16px;
}

/*** core-values-wrapper ****/

.core-values-wrapper {
    background: url(../images/slide-1.jpg) no-repeat;
    background-attachment: fixed;
    padding: 80px 0px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.core-value-ovaerlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.main-heading {
    margin-bottom: 40px;
}

.main-heading h1 {
    font-size: 36px;
    color: #000;
    z-index: 99;
    position: relative;
}

.previllage h1 {
    margin: 0px 0px 20px;
}

.main-heading p {
    font-size: 18px;
    color: #000;
}

.core-values-content h1 {
    color: #fff;
}

.value-slider {
    margin-top: 40px;
}

.value-slider .img-box {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    background-color: #797474;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.value-slider .item:hover img {
    /*    max-width: 90%;*/
}

.value-slider img {
    /*    max-width: 105px;*/
    border-radius: 10px;
}

.value-slider p {
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
}

/*** awards-section ***/

.awards-section {
    padding: 50px 0px;
}

/*
.awards-img {
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}
*/

.awrads-wrapper {
    /* padding-bottom: 20px; */
    -webkit-transition: all .8s ease !important;
    transition: all .8s ease !important;

}

.awrads-wrapper h3 {
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 15px;
    /*    line-height: 20px;*/
    color: #fff;
    font-weight: 400;
    height: 80px;
    background-color: #0b526d;
    padding: 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.awrads-wrapper:hover {
    -webkit-box-shadow: 0px 40px 19px -26px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 40px 19px -26px rgba(0, 0, 0, 0.2);
}

textarea {
    resize: none;
}

/*** contact-us css ****/

.contact-container {
    padding: 50px 0px;
}

.contact-heading {
    margin-bottom: 30px;
}

.contact-form-wrapper h1,
.contact-heading h1 {
    font-weight: 700;
    color: #000;
    margin-top: 0px;
}

.contact-form-wrapper p,
.contact-heading p {
    color: #000;
}

.contact-form-wrapper .form-control {
    border-radius: 0px;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000 !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #000 !important;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #000 !important;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #000 !important;
}

.address-box {
    margin-bottom: 20px;
}

.address-box h3 {
    font-size: 20px !important;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    color: #000;
    margin-top: 0px;
    font-weight: 700;
}

.address-box p {
    color: #000;
    font-size: 16px;
}

.contact-map {
    margin-top: 40px;
    border: 1px solid #000;
}

.tabel-one {
    margin: 50px 0px;
}

/****** Back To Top Button ******/

#button {
    display: inline-block;
    background-color: #00aeef;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    bottom: 60px;
    right: 20px;
    -webkit-transition: background-color .3s,
        opacity .5s, visibility .5s;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    margin-top: 5px;
    display: block;
}

#button:hover {
    cursor: pointer;
}

#button:hover:after {
    color: #000;
}

#button:active {
    background-color: #000;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

/**** projects page css ***/

.project-pageswarpper {
    background-color: #f9f6f6;
    padding: 50px 0px;
}

.projects-tab .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 0px;
}

.projects-tab .nav-tabs > li {
    margin: 0px 5px;
}

.projects-tab .nav-tabs > li a {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 0px;
}

.projects-tab .nav-tabs > li.active a,
.projects-tab .nav-tabs > li a:hover,
.projects-tab .nav-tabs > li a:focus {
    background-color: #F1531B;
    border: 1px solid #F1531B;
    color: #fff;
}

.tab-content {
    margin-top: 50px;
}

.project-box {
    margin-bottom: 20px;
}

.project-box:hover,
.awrads-wrapper:hover {
    transform: translateY(-5px) !important;
    -webkit-box-shadow: 0 10px 50px 0 rgba(84, 110, 122, .35) !important;
    box-shadow: 0 10px 50px 0 rgba(84, 110, 122, .35) !important;
    -webkit-transform: translateY(-5px) !important;
    transform: translateY(-5px) !important;
}

.awrads-wrapper {
    /* padding: 20px; */
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    border: 6px solid #000;
    padding: 8px;
    border-style: double;
}

.awrads-wrapper .awards-img img {
    /*    padding: 20px;*/
}

.short-info {
    overflow: hidden;
    padding: 10px;
}

.short-info p.pr-name {
    font-weight: 700;
    color: #000;
    font-size: 18px;
}

p.location {
    width: 100%;
    float: left;
    display: block;
}

p.location img {
    width: 16px !important;
    float: left;
    margin-right: 10px;
}

span.loc-name {
    font-size: 14px;
}

.kw-more-btn a.btn-default {
    padding: 6px 12px;
    border-radius: 0px;
    border: 1px solid #000;
    font-size: 12px;
    font-weight: 400;
}

.kw-more-btn a.btn-default.hvr-sweep-to-right {
    text-transform: capitalize;
    margin: 5px 0px;
}

.project_img,
.awards-img {
    position: relative;
}

.project_img a {
    z-index: 99;
    position: relative;
    display: block;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.artist-impression {
    position: absolute;
    bottom: 10px;
    right: 0;
    opacity: 1;
    z-index: 99;
}

.artist-impression p {
    color: #000;
    display: inline-block;
    padding: 4px 6px;
    background-color: #fff;
}

.project-box:hover .img-overlay,
.awards-img:hover .img-overlay {
    opacity: 1;
}

.media-table-wrapper {
    padding: 50px 0px;
}

.table-bordered,
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td {
    border: 1px solid #000;
}

.remove-margin {
    margin: 0px;
}

#aniimated-thumbnials {
    display: block;
    overflow: hidden;
}

#tabOne p {
    color: #403f3f;
    font-size: 18px;
    /*    font-weight: 700;*/
}

p.img-caption {
    margin: 10px;
    color: #000;
    font-size: 18px;
}

.yt-video-wrapper {
    position: relative;
}

.yt-video-wrapper img.yt-thumb {
    width: 100%;
}

.video-button {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.video-button img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.yt-video-wrapper {
    margin-bottom: 20px;
}


/*** for-channel-partners ***/

.default-padding {
    padding: 40px 0px;
}

.benefits-icons {
    height: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.benefits-icons img {
    width: 70px;
    height: 70px;
}



.benefits-icons p {
    color: #211c1c;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0px;
}

.mg-btm {
    margin-bottom: 20px;
}

.mg-btm a.btn-default {
    font-size: 15px;
}

.loc-marg {
    margin-top: 25px;
}

/**** floating-form ****/

.floating-form {
    position: fixed;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9999;
}

.vi-title {
    font-size: 17px;
    margin: 10px 0px;
}

/*** about page vision-mission ****/

.vi-mi-wrapper {}

.vi-box-wrapper {
    margin-top: 20px;
    padding: 15px 15px;
    font-family: 'Gotham-Medium';
}

.bg-color {
    background-color: #ececec;
}

.vision-box {}

.vision-box h4 {
    font-weight: 300;
    color: #000;
    font-size: 20px;
    font-family: 'Gotham-Medium';
}

.vision-box p {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    font-family: 'Gotham-Medium';
}

.bd-btm {
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.project-home .artist-impression {
    right: 0px;
}

.media-gal {
    margin-top: 30px !important;
}

.t-right {
    text-align: right;
}

.t-right a {
    color: #fff;
}

.disclaimer-contant {
    margin: 50px 0px;
}

.disclaimer-contant p {
    color: #000;
    font-size: 17px;
    margin-bottom: 20px;
}

.disclaimer-contant ul {
    padding-left: 15px;
}

.disclaimer-contant ul li {
    color: #000;
    font-size: 17px;
}

.video-box {
    margin-bottom: 15px;
}

.vd-title h3 {
    font-size: 18px;
    margin: 10px 0px;
}

body.compensate-for-scrollbar {
    margin-right: 0px !important;
}

/** sitemap-wrapper ***/

.sitemap-wrapper {
    margin: 50px 0px;
}

.sitemap-box h3 {
    margin: 0px;
    margin-bottom: 20px;
}

.sitemap-box ul {
    margin: 0px;
    padding-left: 15px;
}

.sitemap-box ul li {
    margin-bottom: 5px;
}

.sitemap-box ul li a {
    color: #000;
    font-size: 18px;
}

.lock-scroll {
    overflow: hidden;
    position: fixed;
}

.main-carousel item img.main-img {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

.main-carousel-wrapper {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

.slider-section {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

.core-gallery img {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}
