/********** Template CSS **********/

:root {
    --primary: #ec691f;
    --light: #F6F7F8;
    --dark: #1A2A36;
    --smoke-color: #F8F8F8;
    --section-space: 120px;
    --border-color: #E4E4E4;
    --white-color: #ffffff;
    --title-color: #0E121D;
    --theme-color: #FF5E14;
    --section-space-mobile: 80px;
    --title-font: 'Exo', sans-serif;
    --body-font: 'Public Sans', sans-serif;
    --icon-font: "Font Awesome 6 Pro";
    --btn-bgcolor: #2d6a1d;
}

.my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-50 {
    margin-top: 50px;
}

.btn-link {
    color: var(--primary);
}

.text-gray {
    color: #9B9B9B !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/

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

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

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

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

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

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


/*** Navbar ***/

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

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

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

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/

.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header.aboutUsBannerImg {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/aboutus/About_Banner1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header.solarEpcBannerImg {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/services/1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header.windMillsBannerImg {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/services/2.jpg) center center no-repeat;
    background-size: cover;
}

.page-header.manufacturingBannerImg {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/services/3.jpg) center center no-repeat;
    background-size: cover;
}

.page-header.greenHydrogenBannerImg {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/services/H2.jpg) center center no-repeat;
    background-size: cover;
}

.page-header.energyStorageSystemBannerImg {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/services/Storage.jpg) center center no-repeat;
    background-size: cover;
}

.page-header.contactBgImg {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/contactUs/ContactUsBanner.jpg) center center no-repeat;
    background-size: cover;
}

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


/*** About ***/

@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }
    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/

.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/

@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }
    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/

@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }
    .quote-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/

.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/

.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/

@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }
    .contact-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/

.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

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

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

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

.display_none {
    display: none;
}


/* HEADER CSS */


/* HEADER LOGO CSS */

img.headerLogo {
    height: 50px;
}


/* HEADER LOGO CSS */


/* HEADER CSS END */


/* BUTTON CSS */

.btn-primary {
    color: #000;
    background-color: #2d6a1d;
    border-color: #2d6a1d;
}


/* BUTTON CSS END */


/* Clients */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/* Clients End */


/* Our Strengths */

.site-heading h2 {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.site-heading h2 span {
    color: var(--primary);
}

.site-heading h4 {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.site-heading h4::before {
    background: var(--primary) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
}

.site-heading {
    margin-bottom: 20px;
    overflow: hidden;
    margin-top: -5px;
}

.features-items,
.features-items .items-box {
    overflow: hidden;
}

.features-area .features-items .col-md-5,
.features-area .features-items .col-md-7 {
    display: table-cell;
    float: none;
    vertical-align: middle;
}

.features-area .features-items.reversed .col-md-5,
.features-area .features-items.reversed .col-md-7 {
    display: inline-block;
    float: left;
}

.features-area .features-items.reversed .info-box {
    float: right;
}

.features-area .features-items .item {
    padding: 15px 30px;
}

.features-area.item-full .features-items .item {
    padding: 30px;
}

.features-area .features-items .item h4 {
    position: relative;
}

.features-area.bottom-small {
    padding-bottom: 25px;
}

.features-area.default-padding.bottom-none {
    padding-bottom: 30px;
}

.features-area .item .icon {
    margin-bottom: 20px;
}

.features-area .item .icon i {
    background: #ffffff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    color: var(--primary);
    display: inline-block;
    font-size: 24px;
    height: 70px;
    line-height: 70px;
    position: relative;
    text-align: center;
    width: 70px;
    z-index: 1;
}

.features-area .features-items .items-box i {
    background: transparent;
}

.features-area .item .icon {
    margin-bottom: 25px;
}

.features-area .features-items.icon-solid i {
    border-radius: inherit;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    color: var(--primary);
    display: inline-block;
    font-size: 50px;
    height: 80px;
    line-height: 80px;
    position: relative;
    text-align: center;
    width: 80px;
}

.features-area .item .info h4 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 20px;
}

.features-area .item .info p {
    margin: 0;
}

.features-area .features-items.less-icon .items-box.inc-cell .item .info {
    padding-left: 0;
}

.features-area .features-items .items-box.inc-cell .item .info a {
    color: #666666;
    display: inline-block;
    margin-top: 15px;
    text-transform: uppercase;
}

.features-area .features-items .items-box.inc-cell .item .info a:hover {
    color: var(--primary);
}


/* Our Strengths End */


/* Home Carousel */

.homeSliderCarousel .owl-carousel .owl-item img {
    height: 80vh;
    object-fit: cover;
}


/* Home Carousel End */


/* Services */

.telecrownServices .img-fluid {
    max-width: 100%;
    height: 30vh;
    width: -webkit-fill-available;
    object-fit: cover;
}


/* Services End */

.service-sidebar .widget {
    background: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.service-sidebar .widget .title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.service-sidebar .widget .title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background: var(--theme-color);
    border-radius: 50px;
}

.service-sidebar .category a {
    display: block;
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid var(--border-info-color);
}

.service-sidebar .category a:hover {
    color: var(--theme-color);
    padding-left: 5px;
}

.service-sidebar .category a i {
    margin-right: 5px;
}

.service-sidebar .category a:last-child {
    padding: 0;
    margin: 0;
    border-bottom: none;
}

.service-sidebar .service-download a {
    display: block;
    color: var(--dark);
    font-weight: 500;
    border: 2px solid var(--theme-color);
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.service-sidebar .service-download a:last-child {
    margin-bottom: 0;
}

.service-sidebar .service-download a:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

.service-sidebar .service-download a i {
    margin-right: 10px;
}

.service-details img {
    border-radius: 30px;
    width: -webkit-fill-available;
    height: 100%;
    object-fit: cover;
}

.service-details .content h3 {
    color: var(--dark);
}

.service-details .content .list li {
    font-weight: 500;
    color: var(--dark);
    margin-top: 5px;
    list-style: none;
}

.service-details .content .list i {
    color: var(--primary);
    margin-right: 10px;
}

.service-details,
.service-details .content.mb-20,
.service-details .content.mb-20 .left-content-as-image {
    height: 100%;
}

@media (max-width: 992px) {
    .service-single.py-120.mb-5 .service-single-wrap .col-xl-5.col-lg-5.col-md-5.col-sm-12 {
        margin-bottom: 20px;
    }
}

img.img-fluid.rounded.footerGallery {
    height: 50px;
    width: -webkit-fill-available;
}

section.features-area.py-5.item-full.text-center.cell-items.default-padding.aboutUsOurStrengths .col-lg-2.col-md-2.col-sm-6.equal-height .item {
    padding: 10px 0;
}

section.features-area.py-5.item-full.text-center.cell-items.default-padding.aboutUsOurStrengths .col-lg-2.col-md-2.col-sm-6.equal-height .info h4 {
    font-size: 15px;
}

section.features-area.py-5.item-full.text-center.cell-items.default-padding.aboutUsOurStrengths .col-lg-2.col-md-2.col-sm-6.equal-height .info p {
    font-size: 10px;
}

.container-fluid.overflow-hidden.px-lg-0.mt-5.aboutUsCompanyDetails .col-lg-6.about-text.wow.fadeIn .col-sm-12.col-lg-12.col-md-12 p {
    display: flex;
}

.container-fluid.overflow-hidden.px-lg-0.mt-5.aboutUsCompanyDetails .col-lg-6.about-text.wow.fadeIn i.fa.fa-check-circle.text-primary.me-3 {
    line-height: 1.5;
}


/* ABOUT US NEW DESIGN CSS */

.about-bg-shape {
    position: relative;
    padding: 30px 0
}

.about-bg-shape .shape {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    z-index: -1
}

.about-bg-shape .shape img {
    object-fit: cover;
    height: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    background-color: #F8F8F8
}

@media (max-width: 1399px) {
    .about-bg-shape .shape {
        left: -350px
    }
    .about-bg-shape .shape img {
        max-width: calc(100% + 370px)
    }
}

@media (max-width: 1199px) {
    .img-box7 {
        display: inline-block;
        margin-left: 0;
        margin-bottom: 40px;
        padding-right: 120px
    }
    .img-box7>img {
        max-width: 100%
    }
    .img-box7 .shape {
        left: -40px
    }
    .img-box7 .about-counter1 {
        right: 0
    }
    .about-bg-shape .shape {
        left: 0
    }
    .about-bg-shape .shape img {
        max-width: 100%
    }
    .container-fluid.bg-light.overflow-hidden.my-5.px-lg-0.whyChooseUsDiv {
        padding: 50px 0;
    }
    .container-fluid.bg-light.overflow-hidden.my-5.px-lg-0.whyChooseUsDiv .col-lg-6.feature-text.wow.fadeIn .row.g-4 {
        margin-bottom: 20px;
    }
    .container-fluid.overflow-hidden.px-lg-0.indexContactUs .col-lg-6.quote-text.wow.fadeIn .p-lg-5.pe-lg-0 {
        margin-top: 20px;
    }
    .aboutUsDiv.space#about-sec {
        padding-top: 40px !important;
        padding-bottom: 10px !important;
    }
}

#about-sec .th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--btn-bgcolor);
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 20.5px 29px;
    border-radius: 0
}

#about-sec .th-btn:before,
#about-sec .th-btn:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    width: 0%;
    background-color: var(--title-color);
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out
}

#about-sec .th-btn:before {
    left: 0;
    border-radius: 0 20px 20px 0
}

#about-sec .th-btn:after {
    right: 0;
    border-radius: 20px 0 0 20px
}

#about-sec .th-btn:hover,
#about-sec .th-btn.active {
    color: var(--white-color)
}

#about-sec .th-btn:hover::before,
#about-sec .th-btn:hover:after,
#about-sec .th-btn.active::before,
#about-sec .th-btn.active:after {
    width: 50%;
    border-radius: 0
}

.product-big-img {
    background-color: var(--smoke-color);
    text-align: center;
    border-radius: 10px;
    overflow: hidden
}

.product-big-img .img img {
    max-width: 100%;
    height: 286px;
    width: 546px;
}

.product-big-img .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 25px;
    margin-bottom: 0
}

.product-big-img .slick-arrow {
    left: 30px
}

.product-big-img .slick-arrow.slick-next {
    left: auto;
    right: 30px
}

#about-sec.space,
#about-sec.space-bottom {
    padding-bottom: var(--section-space);
}

#about-sec.space,
#about-sec.space-top {
    padding-top: var(--section-space);
}

.arrow-list-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

@media (max-width: 767px) {
    .arrow-list-wrap {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.arrow-list-wrap .th-video {
    padding: 0
}

#about-sec .col-xl-6.ps-3.ps-xl-5 .about-bg-shape .arrow-list-wrap p.mt-n2.mb-4 {
    color: #4D5765;
}

@media (max-width: 991px) {
    .pad40px {
        padding-top: 40px !important;
    }
    .product-big-img {
        margin-bottom: 40px;
    }
    .space,
    .space-bottom {
        padding-bottom: var(--section-space-mobile);
    }
}

.img-box13 {
    margin-right: 56px;
    margin-left: -74px
}

@media (max-width: 1300px) {
    .img-box13 {
        margin-right: 20px;
        margin-left: -64px
    }
    .img-box13 img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 1199px) {
    .img-box13 {
        margin: 0 0 30px 0;
        text-align: center
    }
}

.wcu-experience-wrap1 {
    margin-top: -40px;
    font-size: 52px;
    font-weight: 700;
    font-family: var(--title-font);
    bottom: 0;
    right: 135px;
    color: #283891;
}

.aboutspan {
    font-size: 24px;
    font-weight: 600;
    color: var(--title-color);
}

.paddingtop100px {
    padding-top: 80px;
}

.padding0px {
    padding: 0px !important;
}

.paddingtop0px {
    padding-top: 0px !important;
}

.font18 {
    font-size: 18px !important;
}

.movingX {
    -webkit-animation: movingX 8s linear infinite;
    animation: movingX 8s linear infinite
}

@-webkit-keyframes movingX {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes movingX {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.moving {
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite
}

@-webkit-keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.mb-45 {
    margin-bottom: 45px;
}

.shape-mockup-wrap {
    z-index: 2;
    position: relative
}

.shape-mockup {
    position: absolute;
    z-index: -1
}

.shape-mockup.z-index3 {
    z-index: 3
}

.jump-reverse {
    -webkit-animation: jumpReverseAni 7s linear infinite;
    animation: jumpReverseAni 7s linear infinite
}

@-webkit-keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.spin {
    -webkit-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes scrollMove {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
}

@keyframes scrollMove {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
}

.checklist ul {
    padding-left: 0;
    list-style: none;
    text-align: left;
    margin-bottom: 0
}

.checklist li {
    color: var(--title-color);
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
    padding-left: 28px
}

.checklist li:before {
    content: "\f058";
    font-family: var(--icon-font);
    font-weight: 900;
    color: var(--theme-color);
    position: absolute;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out
}

.checklist li:first-child {
    margin-top: -0.5em
}

.checklist li:last-child {
    margin-bottom: -0.5em
}

.checklist .check-text {
    margin-bottom: 0
}

.checklist .check-title {
    margin-bottom: 10px;
    font-size: 24px
}

.checklist.style5 li {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    padding-left: 32px;
    margin-bottom: 14px;
    list-style: none;
}

.checklist.style5 li:before {
    content: "\f336";
    font-size: 18px
}

.checklist.style5 li:last-child {
    margin-bottom: -0.5em
}

.sub-title7 {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color);
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: -0.41em;
    margin-bottom: 25px;
    position: relative
}

.sub-title7 .box {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    top: 7px;
    margin-right: 4px
}

.sub-title7 .box:before,
.sub-title7 .box:after {
    content: "";
    height: 16px;
    width: 16px;
    background-color: var(--theme-color);
    border-radius: 3px;
    display: inline-block;
    position: absolute
}

.sub-title7 .box:before {
    top: 0;
    left: 0;
    background-color: transparent;
    border: 2px solid var(--theme-color)
}

.sub-title7 .box:after {
    bottom: 0;
    right: 0
}

@media (max-width: 1199px) {
    .sub-title7 {
        margin-bottom: 20px
    }
}

@media (max-width: 575px) {
    .sub-title7 {
        letter-spacing: 0.14em
    }
}


/* ABOUT US NEW DESIGN CSS END */


/* CORE VALUES */

.title-area {
    margin-bottom: calc(var(--section-title-space) - 12px);
    position: relative;
    z-index: 2
}

.title-area .sec-title {
    margin-bottom: 15px
}

.title-area.mb-0 .sec-title {
    margin-bottom: -0.31em
}

.sub-title6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
    font-family: var(--title-font);
    text-transform: uppercase;
    margin-top: -0.41em;
    margin-bottom: 25px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px
}

.sub-title6 .dots {
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: inherit;
    border-radius: 99px;
    position: absolute;
    top: 0
}

.sub-title6 .dots:before,
.sub-title6 .dots:after {
    content: '';
    height: inherit;
    width: inherit;
    background-color: inherit;
    border-radius: inherit;
    display: inline-block;
    position: absolute;
    top: 0
}

.sub-title6 .shape {
    display: inline-block;
    height: 3px;
    width: 40px;
    background-color: var(--theme-color);
    border-radius: 99px;
    position: relative
}

.sub-title6 .shape.left .dots {
    left: -6px
}

.sub-title6 .shape.left .dots:before {
    left: -6px
}

.sub-title6 .shape.left .dots:after {
    left: -12px
}

.sub-title6 .shape.right .dots {
    right: -6px
}

.sub-title6 .shape.right .dots:before {
    right: -6px
}

.sub-title6 .shape.right .dots:after {
    right: -12px
}

@media (max-width: 1399px) {
    .mission-grid {
        gap: 40px
    }
    .tab-menu1 {
        margin-bottom: 40px
    }
}

@media (max-width: 420px) {
    .tab-menu1 button {
        -webkit-box-flex: 50%;
        -webkit-flex: 50%;
        -ms-flex: 50%;
        flex: 50%;
        margin-bottom: -1px
    }
    .mission-grid .checklist ul {
        grid-template-columns: auto
    }
    .mission-feature-wrap {
        grid-template-columns: auto;
        gap: 20px
    }
}

.tab-menu1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px
}

.tab-menu1 button {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--title-color);
    background-color: var(--white-color);
    position: relative;
    z-index: 2;
    padding: 27px;
    text-align: center;
    border: 0;
    margin: 0;
    box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.05);
    cursor: pointer
}

.tab-menu1 button:before {
    content: '';
    height: 100%;
    width: 100%;
    background-color: var(--theme-color);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: -1
}

.tab-menu1 button:before {
    content: '';
    height: 100%;
    width: 100%;
    background-color: var(--theme-color);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: -1
}

.tab-menu1 button:hover {
    color: var(--title-color)
}

.tab-menu1 button.active {
    color: var(--white-color)
}

.tab-menu1 button.active:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

@media (max-width: 1199px) {
    .tab-menu1 button {
        font-size: 20px
    }
}

@media (max-width: 991px) {
    .tab-menu-wrap {
        margin-bottom: 30px
    }
    .tab-menu1 {
        gap: 25px
    }
    .tab-menu1 button {
        -webkit-box-flex: 1;
        -webkit-flex: auto;
        -ms-flex: auto;
        flex: auto;
        font-size: 16px;
        padding: 16px 15px
    }
}

@media (max-width: 767px) {
    .tab-menu-wrap .shape {
        display: none
    }
    .tab-menu1 {
        gap: 20px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.mission-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 80px
}

.mission-grid .mission-img {
    -webkit-box-flex: 586px;
    -webkit-flex: 586px;
    -ms-flex: 586px;
    flex: 586px;
    border-radius: 0px;
    overflow: hidden
}

.mission-grid .mission-img img {
    width: 100%
}

.mission-grid .mission-img .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.mission-grid .mission-content {
    -webkit-box-flex: 554px;
    -webkit-flex: 554px;
    -ms-flex: 554px;
    flex: 554px
}

.mission-grid .mission-title {
    margin-bottom: 22px
}

.mission-grid .mission-text {
    margin-bottom: 25px
}

.mission-grid .checklist {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color)
}

.mission-grid .checklist ul {
    display: grid;
    grid-template-columns: auto auto;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.mission-grid.style2 {
    gap: 40px
}

.mission-grid.style2 .mission-img {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none
}

@media (max-width: 1299px) {
    .mission-grid.style2 .mission-img {
        -webkit-box-flex: 445px;
        -webkit-flex: 445px;
        -ms-flex: 445px;
        flex: 445px
    }
}

@media (max-width: 1199px) {
    .mission-grid.style2 {
        display: block
    }
    .mission-grid.style2 .mission-img {
        margin-bottom: 30px
    }
}

.wcu-history-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 21px
}

.wcu-history-wrap:not(:last-child) {
    margin-bottom: 30px
}

.wcu-history-wrap .history-wrap-date {
    background: var(--white-color);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--title-font);
    padding: 25px;
    margin-right: 20px;
    position: relative;
    max-width: 142px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    -webkit-filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05))
}

.wcu-history-wrap .history-wrap-date:after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    border-left: solid 20px var(--white-color);
    border-bottom: solid 17px transparent;
    border-top: solid 17px transparent
}

@media (max-width: 767px) {
    .wcu-history-wrap {
        display: block
    }
    .wcu-history-wrap .history-wrap-date {
        max-width: none;
        display: block;
        margin-right: 0;
        margin-bottom: 30px
    }
    .wcu-history-wrap .history-wrap-date:after {
        bottom: -20px;
        top: auto;
        right: 50%;
        width: 20px;
        height: 20px;
        -webkit-transform: translate(50%, 0);
        -ms-transform: translate(50%, 0);
        transform: translate(50%, 0);
        border-top: solid 20px var(--white-color);
        border-left: solid 17px transparent;
        border-right: solid 17px transparent;
        border-bottom: 0
    }
}

.history-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: var(--white-color);
    -webkit-filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05));
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fill-available;
}

.history-card .history-card-img i.coreValuesFaFaIcon {
    width: 100px;
    height: -webkit-fill-available;
    align-content: center;
    text-align: center;
    font-size: 55px;
    color: var(--theme-color);
}

.history-card .history-card-img {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    height: 100%
}

.history-card .history-card-img img {
    height: 100%;
    max-width: 160px;
    object-fit: cover
}

.history-card .history-card-details {
    padding: 30px
}

.history-card .history-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: -0.3em;
    margin-bottom: 10px
}

.history-card .history-card-text {
    margin-bottom: -0.5em
}

@media (min-width: 575px) {
    .history-card .history-card-img i.coreValuesFaFaIcon {
        padding-left: 30px;
    }
}

@media (max-width: 575px) {
    .history-card {
        display: block
    }
    .history-card .history-card-img img {
        max-width: none;
        width: 100%;
        max-height: 200px
    }
    .history-card .history-card-img i.coreValuesFaFaIcon {
        padding-top: 20px;
        font-size: 40px;
    }
}

.filter-item {
    transition: opacity 0.7s ease-in-out;
    opacity: 0;
    display: none;
}

.filter-item.cat1 {
    display: block;
    /* Show 'cat1' by default */
    opacity: 1;
}

.coreValues.space,
.coreValues.space-bottom {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}


/* CORE VALUES END */


/* CONTACT PAGE STYLE */

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .contact-box {
    background-color: var(--theme-color);
    padding: 44px 30px 44px 30px;
    border-radius: 5px 5px 5px 5px;
}

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .contact-box .address-box {
    display: flex;
}

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .contact-box .address-box .address-icon {
    background-image: linear-gradient(275deg, #ffffff 0%, #fcfcff 100%);
    min-width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    width: 40px;
    border-radius: 50%;
    margin-right: 23px;
}

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .contact-box .address-box .address-icon i {
    font-size: 20px;
    line-height: 20px;
    color: var(--theme-color);
}

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .contact-box .address-box .address-text .label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .contact-box .address-box .address-text a {
    color: #ffffff;
}

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .contact-box .address-box .address-text a:hover {
    color: #ccc;
}

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .contact-box .address-box .address-text .desc {
    color: #ffffff;
}

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .mb-25 {
    margin-bottom: 25px;
}

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .col-xl-5.col-lg-5.col-md-12.col-sm-12.pe-lg-0 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .col-xl-5.col-lg-5.col-md-12.col-sm-12.pe-lg-0 .contact-box h2.title.white-color {
    color: #FFF;
}

@media (min-width: 700px) {
    .container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .col-xl-5.col-lg-5.col-md-12.col-sm-12.pe-lg-0 {
        padding: 50px;
    }
}

@media (max-width: 700px) {
    .container-fluid.bg-light.overflow-hidden.px-lg-0.contactPageDiv .col-xl-5.col-lg-5.col-md-12.col-sm-12.pe-lg-0 {
        padding-bottom: 20px;
    }
}


/* CONTACT PAGE STYLE END */