/********** Template CSS **********/
:root {
    /* --primary: #009CFF; */
    --primary:#f7c02d;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}
h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-weight: 700;
    margin: 0px;
    background: none;
    line-height: 1.6em;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #f7c02d;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.text-gradient{
   background: -webkit-linear-gradient(#a5ac23, #4635dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-justify{
    text-align: justify;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Spinner ***/
.logo{
    width: 51px;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.615), rgba(8, 8, 8, 0.675)), url(../img/breadcrumb-bg.jpg) center center no-repeat;
    background-size: cover;

    
} 
.sustainability-page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.615), rgba(8, 8, 8, 0.675)), url(../img/sustainability.jpeg) center center no-repeat;
    background-size: cover;

    
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}

/*** Home page Service New ***/
 .services-section {
    position: relative;
    padding: 35px 0 80px;
}
.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.services-carousel .services-block {
    margin-bottom: 0;
}
.services-block {
    margin-bottom: 40px;
}
.services-block .inner-box{
    margin-bottom: 20px;
}
.services-block .image-box img {
    display: block;
    width: 100%;
    height: auto;
}
.services-block .image-box {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}
.services-block .image-box img {
    display: block;
    width: 100%;
    height: auto;
}
.services-block .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 100%;
    background-color: rgba(24, 24, 24, .90);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.services-block .overlay-box .btn-box {
    position: absolute;
    left: 30px;
    top: -25px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.services-block .overlay-box .btn-box a {
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: #f7c02d;
    font-weight: 600;
}
.services-block .overlay-box .btn-box .icon {
    position: relative;
    display: inline-block;
    top: 3px;
    height: 14px;
    width: 14px;
    background-repeat: no-repeat;
    margin-right: 10px;
}
.services-block .image-box .title {
    position: absolute;
    left: 0;
    bottom: 20px;
    z-index: 9;
    padding: 10px 20px;
    padding-right: 60px;
    background-color: #ffffff;
}
.services-block .image-box .title h3 {
    display: block;
    font-size: 15px;
    line-height: 25px;
    color: #303030;
    font-weight: 600;
}
.services-block .image-box .title i {
    position: absolute;
    right: -45px;
    top: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #303030;
    font-size: 26px;
    font-weight: 600;
    background-color: #f7c02d;
    text-align: center;
}
.services-block .inner-box:hover .overlay-box {
    height: 100%;
}
.services-block .overlay-box .btn-box a:hover {
    text-decoration: underline;
}
.services-block .inner-box:hover .overlay-box .btn-box {
    top: 25px;
    transition-delay: 200ms;
}
.services-block .image-box .title i {
    position: absolute;
    right: -45px;
    top: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #303030;
    font-size: 26px;
    font-weight: 600;
    background-color: #f7c02d;
    text-align: center;
}

/*** Home page What We Do ***/
.what-we-do {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../img/whatwedo-bg.jpg);
    padding: 100px 0;
}
.what-we-do h2{
    font-family: 'Roboto', sans-serif;
}

.what-we-do .sec-title {
    margin-bottom: 30px;
}
.sec-title.light h4 {
    color: #ffffff;
}
.sec-title h4 {
    font-size: 14px;
    color: #303030;
    text-transform: uppercase;
    margin: 0;
    display: inline-block;
    line-height: 1em;
    vertical-align: top;
}
.sec-title.light h2, .sec-title.light h4 {
    color: #ffffff;
}
.sec-title h4+h2 {
    margin-top: 11px;
}
.sec-title h2 {
    position: relative;
    font-size: 36px;
    line-height: 1.2em;
    color: #303030;
    font-weight: 600;
}
.what-we-do .sec-title h5 {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #f7c02d;
    font-weight: 400;
    margin-top: 15px;
}
.what-we-do .info-box {
    position: relative;
    margin-bottom: 20px;
}
.what-we-do .content-column .text {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #ADADAD;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}
.what-we-do .content-column .more-btn {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 30px;
    transition: all .4s ease;
    margin-top: 15px;
    font-family: 'Roboto';
}
.what-we-do .content-column .more-btn:hover {
    color: #F7C02D;
    padding-left: 0;
}
.what-we-do .content-column .more-btn i {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 1;
    -webkit-transform: translateY(-50%) translateX(0px);
    -ms-transform: translateY(-50%) translateX(0px);
    -o-transform: translateY(-50%) translateX(0px);
    transform: translateY(-50%) translateX(0px);
    transition: all .4s ease;
}
.what-we-do .video-column {
    position: relative;
}
.what-we-do .video-column .inner-column {
    position: relative;
}
.what-we-do .video-column .image {
    position: relative;
}
.what-we-do .video-column .image img {
    display: block;
    width: 100%;
}

/*** Home page About us ***/
.about-us {
    position: relative;
    padding: 80px 0 40px;
}
.about-us .info-column {
    margin-bottom: 40px;
}
.about-us .sec-title {
    margin-bottom: 0;
}
.sec-title {
    position: relative;
    margin-bottom: 50px;
}
.sec-title h4+h2 {
    margin-top: 11px;
}
.about-us .about-company {
    position: relative;
}
.about-us .about-company h4 {
    display: block;
    font-size: 24px;
    line-height: 32px;
    color: #303030;
    font-weight: 400;
    margin-bottom: 40px;
    margin-top: 13px;
}
.btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    color: #303030;
    padding: 15px 50px;
    font-weight: 700;
    background: #f7c02d;
    border-radius: 3px;
    text-transform: capitalize;
}
.btn-style-one:hover {
    color: #f7c02d;
    background: #303030;
}
.theme-btn {
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    font-family: "Roboto", sans-serif;
}
.about-us .list-column .inner-column {
    position: relative;
}
.about-block {
    position: relative;
    margin-bottom: 50px;
}
.about-block .inner-box {
    position: relative;
    padding-left: 115px;
    min-height: 85px;
}
.about-block .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 85px;
    width: 85px;
    border: 1px solid #f2f2f2;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.icon-gear {
    background-image: url(../icon/gear.png);
}
.icon-clock {
    background-image: url(../icon/clock.png);
}
.icon-worker {
    background-image: url(../icon/worker.png);
}
.icon-team {
    background-image: url(../icon/team.png);
}
.icon-profession {
    background-image: url(../icon/profession.png);
}
.icon-respect {
    background-image: url(../icon/respect.png);
}
.icon-integrity {
    background-image: url(../icon/integrity.png);
}
.icon-transparency {
    background-image: url(../icon/transparency.png);
}
.icon-world{
    background-image: url(../icon/world.png);
}
.about-block .icon:after {
    position: absolute;
    left: 50%;
    top: 100%;
    margin-top: 10px;
    content: "";
    height: 40px;
    width: 1px;
    background-color: #f2f2f2;
}
.about-block h4 {
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #303030;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.about-block h4:before {
    content: '';
    background: #F5BE2D;
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/*** Home page our core value ***/
.project-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
}
.project-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #181818;
    opacity: .90;
}
.project-section .sec-title {
    position: relative;
    margin-bottom: 50px;
}
.sec-title.light h4 {
    color: #ffffff;
}
.project-section .carousel-box {
    position: relative;
}
.project-carousel .owl-item .project-block {
    position: relative;
    -webkit-transform: scale(1, .83);
    -ms-transform: scale(1, .83);
    -o-transform: scale(1, .83);
    transform: scale(1, .83);
    transition: all .4s ease;
}
.project-block .image-box {
    position: relative;
    overflow: hidden;
}
.project-block .image-box figure {
    position: relative;
}
.project-block .image-box figure a {
    position: relative;
    display: block;
}
.project-block .image-box figure>a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50%;
    width: 100%;
    background: #181818;
    background: -moz-linear-gradient(top, #000000, rgba(0, 0, 0, 0.80), transparent);
    background: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0.80), transparent);
    background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.80), transparent);
    content: "";
    z-index: 1;
}
.project-block .image-box figure a img {
    display: block;
    width: 100%;
    height: auto;
}
.project-block .image-box .title-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9;
    padding-left: 30px;
    padding-bottom: 20px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.project-block .image-box .title-box:before {
    position: absolute;
    left: 30px;
    bottom: 0;
    height: 3px;
    width: 0px;
    content: "";
    background-color: #f7c02d;
}
.project-block .image-box .title-box h3 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 3px;
}
.project-block .image-box .title-box .tag {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #f7c02d;
    font-weight: 400;
}
.project-block .image-box .title-box a {
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.project-block .image-box .title-box a:hover {
    color: #f7c02d;
}

/*** about-us page seperate ***/
.about-section-two .image-column {
    position: relative;
}
.about-section-two .image-column .inner-column {
    position: relative;
    padding-right: 60px;
}
.about-section-two .image-column .image {
    position: relative;
    display: block;
    margin-bottom: 0;
}
.about-section-two .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
}
.about-section-two .content-column {
    position: relative;
}
.about-section-two .content-column .inner-column {
    position: relative;
    padding-top: 45px;
    margin-left: -30px;
}
.about-section-two .content-column .inner-column:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 120px;
    height: 1px;
    background-color: #f7c02d;
}
.about-section-two .content-column .text {
    position: relative;
    padding-right: 30px;
    margin-bottom: 65px;
}
.about-section-two .content-column .text p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 26px;
}
.about-section-two .content-column .text p strong {
    position: relative;
    font-weight: 700;
}
.about-section-two .fact-counter {
    position: relative;
    text-align: center;
    background-color: #ffffff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    margin-left: -80px;
}
.about-section-two .fact-counter .column {
    position: relative;
    float: left;
    padding: 0px;
}
.fact-counter .column .inner {
    position: relative;
    padding: 45px 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    border-right: 1px solid #dddddd;
}
.fact-counter .count-outer {
    position: relative;
    margin: 0px 0px;
    font-weight: 300;
    color: #f7c02d;
    font-size: 40px;
}
.about-section-two .fact-counter .count-outer .count-text {
    font-size: 44px;
}
.fact-counter .count-outer .count-text {
    position: relative;
    font-weight: 300;
    color: #f7c02d;
    font-size: 40px;
    display: inline-block;
}
.about-section-two .fact-counter .column .counter-title {
    letter-spacing: 0;
}
.fact-counter .column .counter-title {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    display: block;
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

/* about page mission section */
.mission-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
    margin-top: 105px;
}
.mission-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #f9dd92;
    opacity: .90;
    content: "";
}
.mission-section .no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.mission-section .no-gutters .colum {
    padding-right: 0;
    padding-left: 0;
}

.mission-section .colum {
    position: relative;
}
.mission-section .content-box {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    text-align: center;
    padding: 65px 70px 60px;
}

.mission-section .content-box h4 {
    position: relative;
    display: block;
    font-size: 32px;
    line-height: 1.2em;
    color: #f7c02d;
    font-weight: 900;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.mission-section .content-box h4:before {
    position: absolute;
    content: '';
    left: 0px;
    right: 0;
    margin: 0 auto;
    bottom: 0px;
    width: 80px;
    height: 1px;
    border-right: 60px solid #f7c02d;
    border-left: 20px solid #f7c02d;
}
.mission-section .content-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #555555;
    font-weight: 400;
}
.mission-section .image-box {
    position: relative;
}
.mission-section .image-box .image {
    position: relative;
    margin-bottom: 0;
}
.mission-section .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
}
.mission-section .colum.right-column .inner-column {
    position: relative;
    margin-top: 20px;
}

/* about page three column */
.about-box .fact-item{
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.about-box .text-justify{
    text-align: justify;
}

/*** about page seperate End ***/

/*** Service page seperate Start ***/
.service-page-section .types-of-service .row .item:nth-child(1),
.service-page-section .types-of-service .row .item:nth-child(3) {
    margin-top: 50px;
}
.service-page-section .types-of-service .service-type {
    padding: 35px;
    text-align: center;
    /* background-color: #030F27; */
    background-color: #f9fcff;
    background-image: linear-gradient(147deg, #f9fcff 0%, #dee4ea 74%);
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.types-of-service .service-type .service-icon i {
    font-size: 50px;
    color: #f97538;
}
.types-of-service .service-type .service-title {
    margin-bottom: 10px;
}
.types-of-service .service-type .service-box-info {
    color: #ffffff;
    margin-bottom: 0;
}

/*** Service page seperate End ***/

/*** Service page seperate New Start ***/


/*** Service page seperate New End ***/



/*** contact page seperate Start ***/
.contact-form-section {
    position: relative;
    background-color: #f7f7f7;
    padding: 80px 0 0;
    z-index: 9;
}
.contact-form-section .image-column {
    text-align: center;
    position: relative;
}
.contact-form-section .image-column .inner-column {
    margin-top: -40px;
}
.contact-form-section .image-column {
    text-align: center;
    position: relative;
}
.contact-form-section .form-column .sec-title {
    margin-bottom: 30px;
}
.contact-form {
    position: relative;
}
.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}
.contact-form.style-two .form-group input[type="text"], .contact-form.style-two .form-group input[type="email"], .contact-form.style-two .form-group input[type="tel"], .contact-form.style-two .form-group input[type="url"], .contact-form.style-two .form-group textarea, .contact-form.style-two .form-group select {
    background-color: transparent;
    border: 1px solid #e8e8e8;
    height: 55px;
    line-height: 25px;
}
.contact-form .ui-selectmenu-button.ui-button, .contact-form .form-group input[type="text"], .contact-form .form-group input[type="email"], .contact-form .form-group input[type="tel"], .contact-form .form-group input[type="url"], .contact-form .form-group textarea, .contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 16px;
    line-height: 30px;
    color: #848484;
    font-weight: 400;
    padding: 9px 20px;
    background-color: #ffffff;
    border: 1px solid #efefef;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-form.style-two .form-group textarea {
    height: 205px;
    resize: none;
}
.contact-form button {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    color: #303030;
    font-weight: 700;
    padding: 10px 50px;
    background-color: #f7c02d;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.section-contact{
    margin-bottom: 60px;
}
.section-contact > .container {
    padding-top: 20px;
    padding-bottom: 0;
}
.section-contact .box-icon-4 {
    background-color: #f7c02d;
    margin-bottom: 20px;
    padding: 10px 50px;
    min-height: 120px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px;
}
.section-contact .box-icon-4:hover{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transition: all .3s ease-in;
}

.section-contact .box-icon-4 .body-content {
    text-align: center;
    color: #303030;
    position: relative;
    z-index: 1;
}
.section-contact .box-icon-4 .body-content .heading {
    color: #303030;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

/*** contact page seperate End ***/
/*** Dealership page seperate Start ***/
.dealer-section{
        position: relative;
}
.dealer-section > .container {
    padding-top: 80px;
    padding-bottom: 0px;
}
.dealer-section .contact-card {
    background-color: #eceaea;
    background-clip: border-box;
    border: 1px solid rgba(4, 4, 4, 0.125);
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.dealer-section .widget {
    margin-bottom: 50px;
    clear: both;
}
.dealer-section .widget .category-nav {
    margin-left: 0;
    margin-bottom: 30px;
    padding: 0;
}
.dealer-section .widget .category-nav li {
    list-style: none;
    margin: 0;
    font-weight: 700;
}
.dealer-section .widget .category-nav li.active a {
    border-color: #FFC31D;
}
.dealer-section .widget .category-nav li a:hover {
    border-color: #FFC31D;
}
.dealer-section .widget .category-nav li a {
    color: #222222;
    display: block;
    padding: 15px 20px;
    margin-bottom: 5px;
    background-color: #eff3f6;
    border-left: 5px solid transparent;
}
.dealer-section .widget .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.dealer-section .widget .margin-bottom-30 {
    margin-bottom: 30px;
}
.dealer-section .section-heading.left {
    text-align: left;
}
.dealer-section .section-heading {
    font-size: 30px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 5px;
    text-align: center;
    color: #303030;
}
.dealer-section blockquote {
    padding: 15px 20px;
    background-color: #f6f6f6;
    margin: 0 0 20px;
    border-left: 5px solid #FFC31D;
    color: #303030;
}
.dealer-section blockquote, q {
    quotes: none;
}
.dealer-section .widget .widget-title {
    font-size: 24px;
    font-weight: 700;
    color: #303030;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}
.dealer-section .widget .list-info {
    margin: 0;
    padding: 0;
}
.dealer-section .widget .list-info li {
    margin-bottom: 20px;
    list-style: none;
}
.dealer-section .widget .list-info li .info-icon {
    display: inline-block;
    color: #FFC31D;
    font-size: 16px;
    float: left;
}
.dealer-section .widget .list-info li .info-text {
    margin-left: 30px;
}

/*** Dealership page seperate End ***/

/*** Group Companies seperate Start ***/
.group_companies .bg-grey{
    background-color: #fafafa;
}
.group_companies .bg-holder {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    will-change: transform,opacity,filter;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-repeat: no-repeat;
    z-index: 0;
}
.group_companies .align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}
.group_companies .text-justify{
    text-align: justify;
}

/*** Group Companies seperate End ***/
/***  sustainability start ***/  
.sustainability-img{
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
} */

/***  sustainability end ***/  


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer{
    background-color: #181818;
    color: #888888;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.main-footer .footer-bottom {
    position: relative;
    text-align: center;
    padding: 23.25px 0;
    background-color: #232323;
}
.main-footer .footer-bottom .copyright-text {
    position: relative;
    display: block;
    font-size: 16px;
    color: #848484;
    font-weight: 400;
}
.main-footer .footer-bottom .copyright-text a {
    display: inline-block;
    color: #f7c02d;
}
.main-footer .footer-column {
    position: relative;
}
.main-footer .contact-widget {
    border-top: 2px solid #f7c02d;
    position: relative;
    padding: 25px 40px;
    background-color: #232323;
}
.main-footer .footer-widget {
    margin-bottom: 25px;
}
.contact-widget .single-contact-widget+.single-contact-widget {
    border-top: 1px solid #313131;
    padding-top: 14px;
    margin-top: 13px;
}
.contact-widget .single-contact-widget .icon-box {
    width: 30px;
}
.contact-widget .single-contact-widget .icon-box, .contact-widget .single-contact-widget .text-box {
    display: table-cell;
    vertical-align: top;
}
.contact-widget .single-contact-widget .icon-box i {
    color: #F7C02D;
    font-size: 30px;
    display: block;
    line-height: 1em;
    position: relative;
    top: 7px;
}
.contact-widget .single-contact-widget .text-box {
    padding-left: 20px;
}
.contact-widget .single-contact-widget .icon-box, .contact-widget .single-contact-widget .text-box {
    display: table-cell;
    vertical-align: top;
}
.contact-widget .single-contact-widget .text-box h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.contact-widget .single-contact-widget .text-box h3, .contact-widget .single-contact-widget .text-box p {
    margin: 0;
}
.contact-widget .single-contact-widget .text-box h3+span {
    margin-top: 9px;
}
.contact-widget .single-contact-widget .text-box span {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    display: block;
    font-family: 'Roboto', sans-serif;
}
.contact-widget .single-contact-widget .text-box p {
    color: #999999;
    font-size: 16px;
    line-height: 24px;
}
.contact-widget .single-contact-widget .text-box h3, .contact-widget .single-contact-widget .text-box p {
    margin: 0;
}

