/* BLOG SECTION CSS */

.blog-section .blog-box-wrapper {
    margin: 0 -25px;
}

.blog-section .blog-box-wrapper>div {
    padding: 0 25px;
}

.blog-section .blog-box-wrapper .blog-box {
    background-color: #ffffff;
    margin-bottom: 40px;
}

.blog-section .blog-box-wrapper .blog-box:last-child {
    margin-bottom: 0;
}

.blog-section .blog-box-wrapper .blog-box .blog-img img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.blog-section .blog-box-wrapper .blog-box .blog-img {
    height: 100%;
    min-height: 100%;
}

.blog-section .blog-box-wrapper .blog-box .blog-content {
    padding: 50px;
    height: 100%;
    min-height: 100%;
}

.blog-section .blog-box-wrapper .blog-box .blog-content h2 {
    margin: 20px 0;
}

.blog-section .blog-box-wrapper .blog-box .blog-content .cms-type1 {
    margin-bottom: 20px;
}

.blog-section .blog-pagination {
    justify-content: center;
    gap: 3px;
    margin-bottom: 0;
}

.blog-section .blog-pagination .page-item .page-link {
    border: 1px solid #11615D;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    font-family: 'Satoshi-Bold';
    color: #11615D;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #F5F5F5;
    box-shadow: none;
}

.blog-section .blog-pagination .page-item .page-link:hover {
    background-color: #56A809;
    border: 1px solid #56A809;
    color: #ffffff;
}

.blog-section .blog-pagination .page-item:first-child a,
.blog-section .blog-pagination .page-item:last-child a {
    background-color: #11615D;
}

.blog-section .blog-sidebar {
    background-color: #ffffff;
    padding: 50px 45px 50px 50px;
}

.blog-section .blog-sidebar .search-wrapper .search-input {
    border: 1px solid #E0E0E0;
    border-radius: 0;
    box-shadow: none;
    color: #11615D;
    font-weight: 400;
    font-size: 13px;
    line-height: 27px;
    font-family: 'Satoshi-Regular';
    padding: 10px 12px 10px 50px;
}

.blog-section .blog-sidebar .search-wrapper .search-input::placeholder {
    color: #578987;
}

.blog-section .blog-sidebar .search-wrapper {
    position: relative;
    margin: 25px 0 40px;
}

.blog-section .blog-sidebar .search-wrapper::before {
    content: '';
    background: url(../images/search-icon.svg);
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.blog-section .blog-sidebar .searched-blogs {
    margin-top: 30px;
}

.blog-section .blog-sidebar .searched-blogs .small-blog-box {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-section .blog-sidebar .searched-blogs .small-blog-box:last-child {
    margin-bottom: 0;
}

.blog-section .blog-sidebar .searched-blogs .small-blog-box .img {
    flex: 0 0 100px;
    height: 100%;
    min-height: 100%;
}

.blog-section .blog-sidebar .searched-blogs .small-blog-box .img img {
    height: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
}

.blog-section .blog-sidebar .searched-blogs .small-blog-box .content h3 {
    margin-bottom: 10px;
}

.blog-section .blog-sidebar .searched-blogs .small-blog-box .content .date {
    font-size: 14px;
    padding: 0 10px;
}

@media(max-width:1600px) {

    .blog-section .blog-box-wrapper .blog-box .blog-content,
    .blog-section .blog-sidebar {
        padding: 30px;
    }

    .blog-section .blog-box-wrapper {
        margin: 0 -15px;
    }

    .blog-section .blog-box-wrapper>div {
        padding: 0 15px;
    }
}

@media(max-width:1400px) {
    .blog-section .blog-sidebar .search-wrapper {
        margin: 25px 0;
    }

    .blog-section .blog-sidebar .searched-blogs {
        margin-top: 25px;
    }

    .blog-section .blog-sidebar .searched-blogs .small-blog-box {
        gap: 15px;
    }
}

@media(max-width:1199px) {

    .blog-section .blog-sidebar,
    .blog-section .blog-box-wrapper .blog-box {
        margin-bottom: 30px;
    }
}

@media(max-width:991px) {
    .blog-section .blog-sidebar .search-wrapper {
        margin: 20px 0;
    }
}

@media(max-width:576px) {

    .blog-section .blog-box-wrapper .blog-box .blog-content,
    .blog-section .blog-sidebar {
        padding: 20px;
    }
}

/* BLOG DETAILS CSS */
.blog-details-section .top-content .blog-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 45px 0;
}

.blog-details-section .top-content .blog-info .date-wrapper {
    padding-left: 20px;
    margin-left: 10px;
    border-left: 1px solid #E0E0E0;
}

.blog-details-section .top-content {
    max-width: 750px;
    margin: 0 auto;
}

.blog-details-section .blog-details-img {
    border-radius: 20px;
}

.blog-details-section .blog-content {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    max-width: 1008px;
    margin: 45px auto 0;
    text-align: center;
}

.blog-details-section .blog-content p,
.blog-details-section .blog-content h2 {
    margin-bottom: 35px;
}

@media(max-width:1600px) {
    .blog-details-section .top-content {
        max-width: 650px;
    }

    .blog-details-section .top-content .blog-info {
        margin: 30px 0;
    }

    .blog-details-section .blog-content {
        margin: 30px auto 0;
    }

    .blog-details-section .blog-content p,
    .blog-details-section .blog-content h2 {
        margin-bottom: 20px;
    }
}

@media(max-width:1199px) {
    .blog-details-section .blog-content {
        max-width: 800px;
    }
}

@media(max-width:991px) {
    .blog-details-section .top-content {
        max-width: 450px;
    }

    .blog-details-section .top-content .blog-info {
        margin: 20px 0;
    }

    .blog-details-section .blog-content {
        margin: 20px auto 0;
    }

    .blog-details-section .blog-content {
        max-width: 100%;
    }
}

@media(max-width:767px) {
    .blog-details-section .top-content {
        max-width: 100%;
    }
}

/* HOME PAGE BANNER CSS */
.home-banner-section {
    position: relative;
}

.home-banner-section .banner-bg {
    background: url(../images/home-banner-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 260px 0 65px;
}

.home-banner-section::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #99A0AF 0%, rgba(54, 58, 71, 0.66) 42.23%, rgba(30, 45, 26, 0.2) 100%);
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.home-banner-section .home-banner-content {
    z-index: 2;
    position: relative;
}

.home-banner-section .home-banner-content .content {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    max-width: 700px;
    margin: 30px auto;
}

.home-banner-section .home-banner-content .banner-top {
    padding: 0 0 150px;
    text-align: center;
    max-width: 930px;
    margin: 0 auto;
}

.home-banner-section .home-banner-content .banner-boxes .box {
    background: rgba(31, 46, 27, 0.6);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}

.home-banner-section .home-banner-content .banner-boxes .row>div:not(:first-child) .box {
    padding: 40px;
}

.home-banner-section .home-banner-content .banner-boxes .box .video-img img {
    border-radius: 15px;
}

.home-banner-section .home-banner-content .banner-boxes .box .video-img {
    position: relative;
}

.home-banner-section .home-banner-content .banner-boxes .box .video-img .video-icon {
    display: block;
    background: url(../images/play-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 78px;
    height: 78px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.3s;
}

.home-banner-section .home-banner-content .banner-boxes .box .video-img .video-icon:hover {
    opacity: 0.9;
}

.home-banner-section .home-banner-content .banner-boxes .box .clients-images {
    justify-content: center;
    margin-bottom: 35px;
}

.home-banner-section .home-banner-content .banner-boxes .box .solar-img {
    border-radius: 40.5px;
    margin-bottom: 15px;
}

.home-banner-section .home-banner-content .banner-boxes .box .cms-type2 {
    margin: 15px 0;
}

.home-banner-section .home-banner-content .banner-boxes h3 {
    font-weight: 700;
    font-size: 23px;
    line-height: 26px;
    font-family: 'Satoshi-Bold';
}

.home-banner-section .home-banner-content .banner-boxes a {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    font-family: 'Satoshi-Bold';
}

.home-banner-section .home-banner-content .banner-boxes a:hover {
    text-decoration: none;
}

@media(max-width:1600px) {

    .home-banner-section .home-banner-content .banner-boxes .box,
    .home-banner-section .home-banner-content .banner-boxes .row>div:not(:first-child) .box {
        padding: 20px;
    }

    .home-banner-section .banner-bg {
        padding: 200px 0 65px;
    }

    .home-banner-section .home-banner-content .banner-top {
        padding: 0 0 100px;
        max-width: 780px;
    }

    .home-banner-section .home-banner-content .banner-boxes .box .clients-images {
        margin-bottom: 25px;
    }

    .home-banner-section .home-banner-content .banner-boxes .box .cms-type2 {
        margin: 10px 0;
    }

    .home-banner-section .home-banner-content .content {
        font-size: 24px;
        line-height: 32px;
    }

    .home-banner-section .home-banner-content .banner-boxes h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .home-banner-section .home-banner-content .banner-boxes a {
        font-size: 16px;
        line-height: 22px;
    }
}

@media(max-width:1300px) {
    .home-banner-section .home-banner-content .content {
        font-size: 22px;
        line-height: 30px;
        max-width: 600px;
        margin: 20px auto;
    }

    .home-banner-section .home-banner-content .banner-boxes h3 {
        font-size: 17px;
        line-height: 20px;
    }
}

@media(max-width:1199px) {
    .home-banner-section .banner-bg {
        padding: 100px 0 65px;
    }

    .home-banner-section .home-banner-content .banner-top {
        padding: 0 0 70px;
    }

    .home-banner-section .home-banner-content .banner-boxes .row {
        row-gap: 30px;
    }
}

@media(max-width:991px) {
    .home-banner-section .home-banner-content .banner-top {
        max-width: 620px;

    }

    .home-banner-section .banner-bg {
        padding: 65px 0;
    }

    .home-banner-section .home-banner-content .content {
        font-size: 22px;
        line-height: 32px;
        margin: 20px auto;
        max-width: 100%;
    }
}

@media(max-width:767px) {
    .home-banner-section .home-banner-content .banner-top {
        max-width: 100%;
        padding: 0 0 50px;

    }

    .home-banner-section .home-banner-content .banner-boxes .box .video-img img {
        border-radius: 30px;
        width: 100%;
        object-fit: cover;
    }
}

/* TESTIMONIALS SECTION CSS */
.testimonials-section {
    position: relative;
    z-index: 1;
}

.service-page .testimonials-section {
    position: static;
}

.service-page .testimonials-section .testimonials-wrapper::after {
    content: '';
    position: absolute;
    background: url(../images/testimonial-pattern.svg);
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    left: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    z-index: -1;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    background: url(../images/testimonial-pattern.svg);
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    left: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    z-index: -1;
}

.esg-tool .testimonials-section::after {
    display: none;
}

.testimonials-section .top-content h2 {
    margin: 15px auto 50px;
    max-width: 580px;
}

.testimonials-slider {
    margin-bottom: 75px;
}

.testimonials-slider .testimonial {
    border-radius: 20px;
    background-color: #ffffff;
}

.testimonials-slider .testimonial .content {
    padding: 40px 40px 35px;
    font-family: 'Satoshi-MediumItalic';
    font-weight: 500;
}

.testimonials-slider .testimonial .testimonial-info {
    padding: 25px 40px 40px;
    border-top: 1px solid #EEEEEE;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-slider .testimonial .testimonial-info .content {
    padding: 0;
    color: #093D3B;
}

.testimonials-slider .slick-slide {
    margin: 0 15px;
}

.testimonials-slider .slick-list {
    margin: 0 -15px;
}

.testimonials-section .testimonials-wrapper {
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

@media(max-width:1600px) {
    .testimonials-section .top-content h2 {
        max-width: 450px;
    }
}

@media(max-width:1199px) {

    .testimonials-slider .testimonial .content,
    .testimonials-slider .testimonial .testimonial-info {
        padding: 30px;
    }

    .testimonials-slider {
        margin-bottom: 60px;
    }
}

@media(max-width:991px) {
    .testimonials-section .top-content h2 {
        max-width: 350px;
    }

    .testimonials-section .top-content h2 {
        margin: 15px auto 25px;
    }

    .testimonials-slider {
        margin-bottom: 40px;
    }

    .testimonials-section .testimonials-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media(max-width:576px) {
    .testimonials-section .testimonials-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* STATISTICS SECTION CSS */

.statistics-section .statistics-box .line {
    position: relative;
    padding-bottom: 80px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    font-family: 'Satoshi-Bold';
}

.statistics-section .statistics-box .line::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: #F68B27;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: 0;
    top: 60px;
    z-index: 1;
}

.statistics-section .statistics-box .line::after {
    content: '';
    position: absolute;
    width: 85%;
    height: 1px;
    background: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: 0;
    top: 61px;
}

@media(max-width:1400px) {
    .statistics-section .statistics-box .line {
        font-size: 20px;
        line-height: 27px;
        padding-bottom: 60px;
    }

    .statistics-section .statistics-box .line::after {
        top: 46px;
    }

    .statistics-section .statistics-box .line::before {
        top: 45px;
    }
}

@media(max-width:1300px) {
    .statistics-section .statistics-box .line {
        font-size: 18px;
        line-height: 25px;
    }
}

@media(max-width:1199px) {
    .statistics-section .row {
        row-gap: 30px;
    }
}

@media(max-width:992px) {
    .statistics-section .statistics-box .line {
        padding-bottom: 45px;
    }
}

@media(max-width:576px) {
    .statistics-section .statistics-box .line::after {
        width: 100%;
    }

}

/* GLOBE SECTION CSS */

.globe-section {
    padding-top: 65px;
    position: relative;
}

.globe-section::after {
    content: '';
    position: absolute;
    background: linear-gradient(175.52deg, #B3E5AA 5.65%, #FFCFA3 98.41%);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

}

.globe-section .right-content {
    font-weight: 500;
    font-size: 24px;
    line-height: 27px;
    font-family: 'Satoshi-Medium';
    position: relative;
    padding: 0px 30px 50px 60px;
}

.globe-section .right-content::before {
    content: '';
    position: absolute;
    background: url(../images/quote-start.svg);
    width: 46px;
    height: 34px;
    left: 0;
    top: -25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.globe-section .right-content::after {
    content: '';
    position: absolute;
    background: url(../images/quote-end.svg);
    width: 46px;
    height: 34px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media(max-width:1600px) {
    .globe-section .left-content {
        font-size: 23px;
        line-height: 40px;

    }

    .globe-section .right-content {
        font-size: 18px;
        line-height: 26px;
        padding: 0px 30px 0 60px;
        padding-right: 0;
        margin-top: -60px;
    }

    .globe-section .right-content::after {
        bottom: -40px;
    }

}

@media(max-width:1199px) {
    .globe-section .globe-img {
        display: block;
        margin: 0 auto;
    }

    .globe-section .right-content {
        margin-top: 0;
    }

    .globe-section .row {
        row-gap: 30px;
    }
}

@media(max-width:767px) {
    .globe-section .row {
        row-gap: 50px;
    }

    .globe-section .left-content {
        text-align: center;
    }
}

/* SERVICES SECTION CSS */
.services-section {
    position: relative;
    z-index: 1;
}

.services-section::after {
    content: '';
    position: absolute;
    background: url(../images/service-pattern.jpg);
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    left: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    z-index: -1;
}

.services-section .top-content h2 {
    margin: 15px auto 50px;
    max-width: 820px;
}

.services-slider {
    margin-bottom: 75px;
}

.services-slider .slick-slide {
    margin: 0 13px;
}

.services-slider .slick-list {
    margin: 0 -13px;
}

.services-slider .service .img-link-wrapper img {
    border-radius: 20px;
}

.services-slider .service .img-link-wrapper {
    position: relative;
}

.services-slider .service .img-link-wrapper .arrow-link {
    position: absolute;
    right: 5px;
    bottom: 0;
}

.services-slider .service h3 {
    margin: 28px 0 18px;
}

@media(max-width:1600px) {
    .services-slider .service .img-link-wrapper .arrow-link {
        right: 0;
        background-size: 15px 13px;
        width: 38px;
        height: 38px;
    }
}

@media(max-width:1400px) {
    .services-section .top-content h2 {
        max-width: 500px;
    }

    .services-slider .service .img-link-wrapper .arrow-link {
        width: 32px;
        height: 32px;
    }
}

@media(max-width:1199px) {
    .services-slider {
        margin-bottom: 60px;
    }

    .services-slider .service .img-link-wrapper .arrow-link {
        width: 25px;
        height: 25px;
        background-size: 10px 10px;
    }
}

@media(max-width:991px) {
    .services-section .top-content h2 {
        max-width: 400px;
        margin: 15px auto 25px;
    }

    .services-slider {
        margin-bottom: 40px;
    }

    .services-slider .service .img-link-wrapper .arrow-link {
        right: 5px;
        bottom: 4px;
    }
}

@media(max-width:767px) {
    .services-section .top-content h2 {
        max-width: 100%;
    }

    .services-slider .service .img-link-wrapper .arrow-link {
        width: 35px;
        height: 35px;
        background-size: 20px 12px;
        right: 35px;
        bottom: 7px;
    }
}

@media(max-width:576px) {
    .services-slider .service .img-link-wrapper .arrow-link {
        width: 30px;
        height: 30px;
        right: 0;
        bottom: 0;
    }
}

/* CUSTOMERS SECTION CSS */
.customer-section {
    padding: 40px 0;
}

.customer-section .customer-slider {
    margin-top: 20px;
}

.customer-section .customer-slider .slick-track {
    margin: 0 -15px;
}

.customer-section .customer-slider .slick-track .customer {
    padding: 0 15px;
}

/* WELCOME SECTION CSS */
.welcome-section .top-content h2 {
    margin: 20px auto 40px;
}

.welcome-section .top-content .content {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    margin: 0 auto 45px;
}

.welcome-section .square-img {
    border-radius: 20px;
}

.welcome-section .left-side .circle-img {
    margin-bottom: 170px;
}

.welcome-section .right-side .square-img {
    display: block;
    margin-left: auto;
    margin-bottom: 105px;
}

@media(max-width:1400px) {
    .welcome-section .top-content h2 {
        margin: 20px auto 25px;
    }

    .welcome-section .top-content .content {
        margin: 0 auto 25px;
    }
}

@media(max-width:767px) {
    .welcome-section .left-side .circle-img {
        margin-bottom: 30px;
    }

    .welcome-section .right-side .square-img {
        margin-bottom: 30px;
    }

    .welcome-section .row {
        row-gap: 50px;
    }

    .welcome-section .left-side .square-img {
        display: block;
        margin-left: auto;
    }
}

/* FOUNDER SECTION CSS */
.founder-section .founder-rows .founder-content .desg {
    font-family: 'Satoshi-MediumItalic';
    font-weight: 500;
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 30px;
}

.founder-section .founder-rows .founder-content h2 {
    margin-bottom: 15px;
}

.founder-section .founder-rows .founder-content .cms-type1 p {
    margin-bottom: 25px;
}

.founder-section .founder-rows .founder-content .cms-type1 p:last-child {
    margin-bottom: 0;
}

.founder-section .founder-rows .founder-content {
    padding: 50px 0 0 60px;
}

.founder-section .founder-rows {
    margin-bottom: 100px;
}

.founder-section .founder-rows:last-child {
    margin-bottom: 0;
}

.founder-section .founder-img img {
    border-radius: 20px;
}

.founder-section .founder-rows:nth-child(even) .row {
    flex-direction: row-reverse;
}

.founder-section .founder-rows:nth-child(even) .row .founder-content {
    padding: 50px 60px 0 0;
}

@media(max-width:1600px) {
    .founder-section .founder-rows .founder-content {
        padding: 25px 0 0 30px;
    }

    .founder-section .founder-rows:nth-child(even) .row .founder-content {
        padding: 25px 30px 0 0;
    }

    .founder-section .founder-rows .founder-content h2 {
        margin-bottom: 10px;
    }

    .founder-section .founder-rows .founder-content .desg {
        margin-bottom: 20px;
    }

    .founder-section .founder-rows .founder-content .cms-type1 p {
        margin-bottom: 15px;
    }

    .founder-section .founder-rows {
        margin-bottom: 70px;
    }
}

@media(max-width:1400px) {
    .founder-section .founder-rows .founder-content {
        padding: 0 0 0 30px;
    }

    .founder-section .founder-rows:nth-child(even) .row .founder-content {
        padding: 0 30px 0 0;
    }
}

@media(max-width:1199px) {
    .founder-section .founder-rows .founder-content .desg {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .founder-section .founder-rows .founder-content .cms-type1 p {
        margin-bottom: 10px;
    }
}

@media(max-width:991px) {
    .founder-section .founder-img img {
        width: 100%;
        object-fit: cover;
        border-radius: 30px;
        margin-bottom: 30px;
    }

    .founder-section .founder-rows .founder-content,
    .founder-section .founder-rows:nth-child(even) .row .founder-content {
        padding: 0;
    }

    .founder-section .founder-rows {
        margin-bottom: 40px;
    }
}

/* WHY CHOOSE SECTION CSS */
.why-choose-section .why-choose-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 45px;
    height: 100%;
}

.why-choose-section.why-choose-services .why-choose-box {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.why-choose-section .why-choose-box .img {
    width: 92px;
    height: 92px;
    background: linear-gradient(23.04deg, #51A508 17.16%, #6BB60C 47.48%, #92CE11 93.14%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.why-choose-section .why-choose-box h2 {
    margin: 32px 0 16px;
}

.why-choose-section.why-choose-services .why-choose-box h2 {
    text-align: center;
}

.why-choose-section .row {
    row-gap: 42px;
    margin: 65px -15px 0;
}

.why-choose-section .row>div {
    padding: 0 15px;
}

@media(max-width:1600px) {
    .why-choose-section .why-choose-box {
        padding: 35px;
    }
}

@media(max-width:1400px) {
    .why-choose-section .why-choose-box {
        padding: 30px;
    }

    .why-choose-section .why-choose-box h2 {
        margin: 15px 0;
    }

    .why-choose-section .row {
        row-gap: 30px;
        margin: 30px -15px 0;
    }
}

/* EXPERIENCE SECTION CSS */
.experience-section .experience-sec-wrapper {
    padding: 70px;
    border-radius: 20px;
}

.experience-section .experience-sec-wrapper .experience-content {
    margin-right: 90px;
}

.experience-section .experience-sec-wrapper .experience-content .mission-visison-sec {
    margin-top: 50px;
}

.experience-section .experience-sec-wrapper .experience-content .mission-visison-sec .mission-visison-row {
    display: flex;
    gap: 27px;
    border-bottom: 1px solid #DAD9D9;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.experience-section .experience-sec-wrapper .experience-content .mission-visison-sec .mission-visison-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.experience-section .experience-sec-wrapper .experience-content .mission-visison-sec .mission-visison-row .icon {
    background: linear-gradient(180deg, #EB751F 22.8%, #FE9C2D 114.5%);
    width: 50px;
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.experience-section .experience-sec-wrapper .experience-content .mission-visison-sec .mission-visison-row .content h3 {
    margin-bottom: 15px;
}

.experience-section .experience-sec-wrapper .experience-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@media(max-width:1600px) {
    .experience-section .experience-sec-wrapper .experience-content {
        margin-right: 35px;
    }
}

@media(max-width:1400px) {

    .experience-section .experience-sec-wrapper .experience-content .mission-visison-sec .mission-visison-row {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .experience-section .experience-sec-wrapper .experience-content .mission-visison-sec {
        margin-top: 30px;
    }

    .experience-section .experience-sec-wrapper {
        padding: 50px;
    }

    .experience-section .experience-sec-wrapper .experience-content {
        margin-right: 0;
    }
}

@media(max-width:991px) {
    .experience-section .experience-sec-wrapper .row {
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    .experience-section .experience-sec-wrapper {
        padding: 30px;
    }
}

@media(max-width:576px) {
    .experience-section .experience-sec-wrapper {
        padding: 20px;
    }

    .experience-section .experience-sec-wrapper .experience-content .mission-visison-sec .mission-visison-row {
        gap: 15px;
    }

    .experience-section .experience-sec-wrapper .experience-content .mission-visison-sec .mission-visison-row .content h3 {
        margin-bottom: 10px;
    }

    .experience-section .experience-sec-wrapper .experience-content .mission-visison-sec .mission-visison-row {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

/* PROFESSIONAL EXPERIENCE SECTION CSS */
.prof-exp-section .sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 57px;
}

.prof-exp-section .sec-title span {
    padding-right: 35px;
    position: relative;
    z-index: 1;
    background: #f5f5f5;
}

.prof-exp-section .sec-title::after {
    content: '';
    position: absolute;
    background: #DAD9D9;
    height: 1px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.prof-exp-section .prof-exp-boxes {
    margin-top: 90px;
}

.prof-exp-section .prof-exp-boxes .prof-exp-box {
    text-align: center;
}

.prof-exp-section .prof-exp-boxes .prof-exp-box .text {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    margin-top: 35px;
}

@media(max-width:1600px) {
    .prof-exp-section .prof-exp-boxes {
        margin-top: 50px;
    }

    .prof-exp-section .prof-exp-boxes .prof-exp-box .text {
        margin-top: 20px;
    }
}

@media(max-width:1199px) {
    .prof-exp-section .prof-exp-boxes .prof-exp-box .text {
        font-size: 20px;
        line-height: 30px;
        margin-top: 10px;
    }
}

@media(max-width:991px) {
    .prof-exp-section .prof-exp-boxes {
        margin-top: 30px;
        row-gap: 30px;
    }

    .prof-exp-section .sec-title span {
        padding-right: 15px;
    }
}

@media(max-width:576px) {
    .prof-exp-section .prof-exp-boxes .prof-exp-box .text {
        font-size: 17px;
        line-height: 25px;
        margin-top: 5px;
    }
}

/* SUSTAINABILITY SECTION CSS */
.sustainability-section .row {
    margin: 0 -40px;
}

.sustainability-section .row>div {
    padding: 0 40px;
}

.sustainability-section .sustainability-content h2,
.sustainability-section .sustainability-content .cms-type3 p {
    margin-bottom: 30px;
}

.sustainability-section .sustainability-content .sustainability-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #DAD9D9;
}

.sustainability-section .sustainability-content .sustainability-contact .contact-icon {
    background-color: #F68B27;
    width: 67px;
    height: 67px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sustainability-section .sustainability-content .sustainability-contact a {
    transition: all 0.3s;
    text-decoration: none;
}

.sustainability-section .sustainability-content .sustainability-contact a:hover {
    color: #56A809;
}

.sustainability-section .sustainability-content .btm-txt {
    font-family: 'Satoshi-BoldItalic';
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 13px;
}

.sustainability-section .sustainability-content {
    margin-right: 50px;
}

@media(max-width:1600px) {
    .sustainability-section .row>div {
        padding: 0 20px;
    }

    .sustainability-section .row {
        margin: 0 -30px;
    }

    .sustainability-section .row>div {
        padding: 0 30px;
    }

    .sustainability-section .sustainability-content h2,
    .sustainability-section .sustainability-content .cms-type3 p {
        margin-bottom: 20px;
    }

    .sustainability-section .sustainability-content .sustainability-contact {

        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .sustainability-section .sustainability-content {
        margin-right: 30px;
    }

}

@media(max-width:1400px) {
    .sustainability-section .row {
        margin: 0 -20px;
    }

    .sustainability-section .row>div {
        padding: 0 20px;
    }

    .sustainability-section .sustainability-content .btm-txt {
        font-size: 20px;
        line-height: 30px;
    }
}

@media(max-width:1199px) {
    .sustainability-section .sustainability-content {
        margin: 40px 0 0;
    }

    .sustainability-section .row {
        margin: 0 -15px;
    }

    .sustainability-section .row>div {
        padding: 0 15px;
    }
}

/* EARTH SECTION CSS */
.contact-earth-section img {
    border-radius: 20px;
}

.contact-earth-section {
    margin: 50px 0;
}

@media(max-width:991px) {
    .contact-earth-section {
        margin: 30px 0;
    }
}

/* CONTACT US SECTION CSS */
.contact-section .top-content {
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-section .top-content .hd-type4 {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    margin-top: 25px;
}

.contact-section .contact-form {
    border-radius: 20px;
    padding: 50px;
}

.contact-section .contact-form h3 {
    margin-bottom: 20px;
}

.contact-section .contact-form .cms-type1 {
    margin-bottom: 60px;
}

.contact-section .contact-form .form-group {
    margin-bottom: 40px;
}

.contact-section .contact-form .form-group label {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    color: #11615D;
    position: relative;
    width: 100%;
}
.contact-section .contact-form .form-group label.error{
        font-family: 'Satoshi-Regular';
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
}
.contact-section .contact-form .form-group .form-control {
    border-width: 0 0 1px;
    border-color: #CECECE;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Satoshi-Regular';
    color: #578987;
}

.contact-section .contact-form .form-group.select-dropdown .form-control {
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    font-family: 'Satoshi-Bold';
    color: #11615D;
}

.contact-section .contact-form .form-group.select-dropdown label::after {
    content: '';
    position: absolute;
    background: url(../images/dropdown-arrow.svg);
    width: 12px;
    height: 7px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.contact-section .contact-info .cms-type1 {
    margin: 15px 0;
}

.contact-section .contact-info .contact-info-row:not(:last-child) {
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #DAD9D9;
}

.contact-section .contact-info .contact-info-row .contact-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-section .contact-info .contact-info-row .contact-link .icon {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    background: linear-gradient(23.04deg, #51A508 17.16%, #6BB60C 47.48%, #92CE11 93.14%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 55px;
}

.contact-section .contact-info .contact-info-row .contact-link .link {
    color: #51A508;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    font-family: 'Satoshi-Bold';
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-section .contact-info .contact-info-row .contact-link .link:hover {
    color: #11615D;
}

.contact-section .container>.row {
    margin: 0 -50px;
}

.contact-section .container>.row>div {
    padding: 0 50px;
}

.contact-section .contact-form .btn-type1 {
    min-width: 145px;
    border: 0;
}

.contact-section .contact-form .form-group.select-dropdown label {
    padding-right: 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    font-family: 'Satoshi-Medium';
}

@media(max-width:1600px) {
    .contact-section .container>.row {
        margin: 0 -30px;
    }

    .contact-section .container>.row>div {
        padding: 0 30px;
    }
}

@media(max-width:1400px) {
    .contact-section .top-content .hd-type4 {
        margin-top: 15px;
    }

    .contact-section .contact-info .contact-info-row .contact-link .link {
        font-size: 21px;
        line-height: 30px;
    }

    .contact-section .top-content {
        margin: 0 auto 40px;
    }

    .contact-section .contact-form .cms-type1 {
        margin-bottom: 40px;
    }

    .contact-section .contact-form .form-group {
        margin-bottom: 30px;
    }

    .contact-section .contact-info .contact-info-row:not(:last-child) {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
}

@media(max-width:1199px) {
    .contact-section .contact-form {
        padding: 30px;
    }

    .contact-section .container>.row {
        margin: 0 -15px;
    }

    .contact-section .container>.row>div {
        padding: 0 15px;
    }
}

@media(max-width:991px) {
    .contact-section .container>.row {
        row-gap: 50px;
    }

    .contact-section .contact-form .cms-type1 {
        margin-bottom: 30px;
    }

    .contact-section .top-content {
        max-width: 450px;
    }

    .contact-section .contact-info .contact-info-row:not(:last-child) {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .contact-section .contact-info .cms-type1 {
        margin: 10px 0;
    }
}

@media(max-width:767px) {
    .contact-section .contact-form {
        padding: 20px;
    }

    .contact-section .top-content {
        max-width: 100%;
    }
}

/* ESG GAIN SECTION CSS */
.esg-gain-section .top-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.partner-page .esg-gain-section .top-content {
    max-width: 1200px;
}

.partner-page .esg-gain-section .top-content .hd-type5 {
    max-width: 1025px;
    margin: 45px auto auto;
}

.esg-gain-section .top-content .hd-type5 {
    margin: 30px 0;
    font-family: 'Satoshi-Medium';
    font-weight: 500;
}

.esg-gain-section .top-content img {
    border-radius: 20px;
}

.esg-gain-section .esg-sec-img {
    border-radius: 20px;
}

@media(max-width:1199px) {
    .esg-gain-section .top-content .hd-type5 {
        margin: 20px 0;
    }
}

@media(max-width:991px) {
    .esg-gain-section .top-content {
        max-width: 570px;
    }
}

/* ESG IMAGE SECTION CSS */
.esg-image-section .left-side {
    width: 150px;
    height: 150px;
    background: linear-gradient(23.04deg, #51A508 17.16%, #6BB60C 47.48%, #92CE11 93.14%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    text-align: center;
    margin: 20px auto 0;
}

.esg-image-section .right-side {
    width: 150px;
    height: 150px;
    background: linear-gradient(180deg, #EB751F 22.8%, #FE9C2D 114.5%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    text-align: center;
    margin: 0 auto;
}

.esg-image-section .circle-img {
    width: 150px;
    height: 150px;
    background: linear-gradient(180deg, #076CA1 0%, #055C89 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    text-align: center;
    margin: 0 auto;
}

.esg-image-section .content {
    margin: 45px 0;
    text-align: center;
}

@media(max-width:1600px) {
    .esg-image-section .content {
        margin: 35px 0;
    }
}

@media(max-width:767px) {
    .esg-image-section .row {
        row-gap: 30px;
    }

    .esg-image-section .content {
        margin: 25px 0;
    }
}

/* BENEFITS SECTION CSS */
.benefits-section .benefits-sec-wrapper {
    border-radius: 20px;
    padding: 65px 100px;
}

.benefits-section .benefits-sec-wrapper h2 {
    margin-bottom: 65px;
}

.benefits-section .benefits-sec-wrapper .row {
    margin: 0 -40px;
    row-gap: 35px;
}

.benefits-section .benefits-sec-wrapper .row>div {
    padding: 0 40px;
}

.benefits-section .benefits-sec-wrapper .benefits-box img {
    border-radius: 20px;
    margin-bottom: 25px;
    width: 100%;
    object-fit: cover;
}

.benefits-section .benefits-sec-wrapper .top-content .cms-type1 {
    margin: 0 auto 40px;
    text-align: center;
    max-width: 590px;
}

.service-page .benefits-section .benefits-sec-wrapper .benefits-box .cms-type1 {
    margin-top: 12px;
}

@media(max-width:1600px) {
    .benefits-section .benefits-sec-wrapper .row {
        margin: 0 -20px;
    }

    .benefits-section .benefits-sec-wrapper .row>div {
        padding: 0 20px;
    }

    .benefits-section .benefits-sec-wrapper {
        padding: 65px;
    }

    .benefits-section .benefits-sec-wrapper h2 {
        margin-bottom: 40px;
    }
}

@media(max-width:1400px) {
    .benefits-section .benefits-sec-wrapper {
        padding: 50px;
    }
}

@media(max-width:1199px) {
    .benefits-section .benefits-sec-wrapper .row {
        margin: 0 -15px;
        row-gap: 30px;
    }

    .benefits-section .benefits-sec-wrapper .row>div {
        padding: 0 15px;
    }

    .benefits-section .benefits-sec-wrapper .benefits-box img {
        margin-bottom: 15px;
    }

    .benefits-section .benefits-sec-wrapper {
        padding: 30px;
    }

    .benefits-section .benefits-sec-wrapper h2 {
        margin-bottom: 25px;
    }

    .benefits-section .benefits-sec-wrapper .top-content .cms-type1 {
        margin: 0 auto 25px;
    }
}

@media(max-width:767px) {
    .benefits-section .benefits-sec-wrapper .benefits-box img {
        width: 100%;
        object-fit: cover;
    }

    .benefits-section .benefits-sec-wrapper {
        padding: 20px;
    }
}

/* BOOK A DEMO SECTION CSS */
.book-demo-section .book-demo-wrapper {
    background: url(../images/book-demo-sec.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 80px 0;
    max-width: 1077px;
    margin: 70px auto;
    position: relative;
    z-index: 1;
}

.book-demo-section .book-demo-wrapper::before {
    content: '';
    position: absolute;
    background: linear-gradient(270deg, #0D4745 7.16%, rgba(13, 71, 69, 0) 97.54%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 20px;
}

.book-demo-section .book-demo-wrapper .content-box {
    max-width: 430px;
    position: relative;
    z-index: 1;
}

.book-demo-section .book-demo-wrapper .content-box h2 {
    font-weight: 700;
    font-size: 45px;
    line-height: 60px;
    font-family: 'Satoshi-Bold';
}

.book-demo-section .book-demo-wrapper .content-box .content {
    margin: 10px 0 20px;
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.CAM-page .book-demo-section .book-demo-wrapper .content-box .content {
    font-size: 16px;
    line-height: 20px;
}

@media(max-width:1600px) {
    .benefits-section .benefits-sec-wrapper h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .book-demo-section .book-demo-wrapper .content-box h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media(max-width:1300px) {

    .book-demo-section .book-demo-wrapper .content-box h2 {
        font-size: 35px;
        line-height: 45px;
    }
}

@media(max-width:991px) {
    .book-demo-section .book-demo-wrapper {
        max-width: 100%;
        padding: 300px 25px 50px;
        margin: 50px auto;
        background-position: 20% center;
    }

    .book-demo-section .book-demo-wrapper .content-box {
        max-width: 100%;
    }

    .book-demo-section .book-demo-wrapper .content-box .content {
        margin: 10px 0;
    }

    .benefits-section .benefits-sec-wrapper h2 {
        font-size: 30px;
        line-height: 35px;
    }
}

@media(max-width:576px) {
    .book-demo-section .book-demo-wrapper {
        background-position: 26% center;
    }

    .book-demo-section .book-demo-wrapper .content-box h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

/* USP SECTION CSS */
.usp-section .usp-content h2 {
    margin-bottom: 80px;
}

.usp-section .usp-content .usp-rows-wrapper .usp-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 64px;
}

.usp-section .usp-content .usp-rows-wrapper .usp-row .icon {
    background: #11615D;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99px;
    height: 99px;
    flex: 0 0 99px;
    border-radius: 100%;
}

.usp-section .usp-content .usp-rows-wrapper .usp-row h3 {
    flex-grow: 1;
    position: relative;
}

.usp-section .usp-content .usp-rows-wrapper .usp-row h3::after {
    content: '';
    position: absolute;
    background: #DAD9D9;
    height: 1px;
    width: 100%;
    left: 0;
    bottom: -64px;
}

.usp-section .usp-img {
    width: 100%;
    object-fit: cover;
}

@media(max-width:1600px) {
    .usp-section .usp-content .usp-rows-wrapper .usp-row {
        margin-bottom: 50px;
    }

    .usp-section .usp-content .usp-rows-wrapper .usp-row h3::after {
        bottom: -50px;
    }

    .usp-section .usp-content h2 {
        margin-bottom: 60px;
    }
}

@media(max-width:1600px) {
    .usp-section .usp-content .usp-rows-wrapper .usp-row {
        margin-bottom: 30px;
    }

    .usp-section .usp-content h2 {
        margin-bottom: 40px;
    }
}

@media(max-width:992px) {
    .usp-section .usp-content .usp-rows-wrapper .usp-row .icon {
        width: 80px;
        height: 80px;
        flex: 0 0 80px;
    }

    .usp-section .usp-content .usp-rows-wrapper .usp-row {
        gap: 20px;
    }

    .usp-section .usp-content .usp-rows-wrapper .usp-row h3::after {
        bottom: -30px;
    }
}

/* CONTACT US BOX SECTION CSS */
.contact-us-box-section .box-wrapper {
    background: #07699D;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 975px;
    margin: 0 auto;
}

@media(max-width:1600px) {
    .contact-us-box-section .box-wrapper {
        padding: 30px;
    }
}

@media(max-width:767px) {
    .contact-us-box-section .box-wrapper {
        max-width: 100%;
        padding: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* SERVICES SECTION CSS */
.service-section .service-probox img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.service-section2.service-section .service-probox img {
    max-height: 320px;
}

.service-section .service-probox h3 {
    margin: 30px 0 18px;
}

.service-section .row {
    row-gap: 40px;
}

@media(max-width:991px) {
    .service-section .service-probox h3 {
        margin: 15px 0;
    }

    .service-section .row {
        row-gap: 30px;
    }
}

/* UNLOCK POTENTIAL SECTION CSS */
.unlock-potential-section .unlock-potential-wrapper {
    border-radius: 20px;
    padding: 70px;
}

.unlock-potential-section .unlock-potential-wrapper .left-part img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.unlock-potential-section .unlock-potential-wrapper .right-part {
    margin-right: 100px;
}

.unlock-potential-section .unlock-potential-wrapper>.row {
    margin: 0 -38px;
    margin-bottom: 45px;
}

.unlock-potential-section .unlock-potential-wrapper>.row>div {
    padding: 0 38px;
}

.unlock-potential-section .prof-exp-section .prof-exp-boxes .prof-exp-box {
    text-align: left;
}

.unlock-potential-section .prof-exp-section .prof-exp-boxes .prof-exp-box .hd-type5 {
    margin: 15px 0 12px;
}

.unlock-potential-section .prof-exp-section .prof-exp-boxes {
    margin-top: 70px;
}

@media(max-width:1600px) {
    .unlock-potential-section .unlock-potential-wrapper .right-part {
        margin-right: 0;
    }

    .unlock-potential-section .unlock-potential-wrapper {
        padding: 50px;
    }

    .unlock-potential-section .prof-exp-section .prof-exp-boxes {
        margin-top: 50px;
    }

    .unlock-potential-section .unlock-potential-wrapper>.row {
        margin: 0 -20px;
        margin-bottom: 30px;
    }

    .unlock-potential-section .unlock-potential-wrapper>.row>div {
        padding: 0 20px;
    }
}

@media(max-width:1199px) {
    .unlock-potential-section .unlock-potential-wrapper {
        padding: 30px;
    }

    .unlock-potential-section .unlock-potential-wrapper>.row {
        margin: 0 -15px;
        row-gap: 30px;
    }

    .unlock-potential-section .unlock-potential-wrapper>.row>div {
        padding: 0 15px;
    }

    .unlock-potential-section .prof-exp-section .prof-exp-boxes {
        margin-top: 40px;
    }
}

/* TWO BOX SECTION CSS */
.two-box-section h2 {
    margin-bottom: 55px;
}

.two-box-section .two-box-wrapper .two-box img {
    border-radius: 20px;
}

.two-box-section .two-box-wrapper .two-box h4 {
    margin: 28px 0 18px;
}

.two-box-section .two-box-wrapper {
    margin: 0 -27px;
    row-gap: 45px;
}

.two-box-section .two-box-wrapper>div {
    padding: 0 27px;
}

.sustainability-services-page .two-box-section h2 {
    margin-bottom: 20px;
}

.sustainability-services-page .two-box-section .top-content {
    max-width: 770px;
    margin: 0 auto 45px;
    text-align: center;
}

.sustainability-services-page .two-box-section .two-box-wrapper {
    margin: 0 -15px;
}

.sustainability-services-page .two-box-section .two-box-wrapper>div {
    padding: 0 15px;
}

@media(max-width:1600px) {
    .two-box-section h2 {
        margin-bottom: 40px;
    }

    .two-box-section .two-box-wrapper {
        margin: 0 -20px;
        row-gap: 40px;
    }

    .two-box-section .two-box-wrapper>div {
        padding: 0 20px;
    }

    .two-box-section .two-box-wrapper .two-box h4 {
        margin: 15px 0;
    }
}

@media(max-width:1199px) {
    .sustainability-services-page .two-box-section .top-content {
        margin: 0 auto 30px;
    }

    .sustainability-services-page .two-box-section h2 {
        margin-bottom: 10px;
    }
}

@media(max-width:991px) {
    .sustainability-services-page .two-box-section .top-content {
        max-width: 100%;
    }
}

@media(max-width:767px) {
    .two-box-section h2 br {
        display: none;
    }

    .two-box-section h2 {
        margin-bottom: 20px;
    }
}

/* SUSTAINBILITY BENEFITS SECTION CSS */
.sustainability-benefits-section .sustainability-benefits-wrapper {
    padding: 60px;
    background-color: #ffffff;
    border-radius: 20px;
}

.sustainability-benefits-section .sustainability-benefits-wrapper .row {
    margin: 0 -40px;
}

.sustainability-benefits-section .sustainability-benefits-wrapper .row>div {
    padding: 0 40px;
}

.sustainability-benefits-section .sustainability-benefits-wrapper .top-content {
    text-align: center;
    margin: 0 auto 80px;
}

.sustainability-benefits-section .sustainability-benefits-wrapper .top-content h2 {
    margin-bottom: 20px;
}

.sustainability-benefits-section .sustainability-benefits-wrapper .img-side img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.sustainability-benefits-section .sustainability-benefits-wrapper .content-side .content-row {
    display: flex;
    gap: 27px;
}

.sustainability-benefits-section .sustainability-benefits-wrapper .content-side .content-row .text {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    font-family: 'Satoshi-Bold';
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DAD9D9;
}

.sustainability-benefits-section .sustainability-benefits-wrapper .content-side .content-row:last-child .text {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.error {
    color: red !important;
}

@media(max-width:1600px) {
    .sustainability-benefits-section .sustainability-benefits-wrapper {
        padding: 50px;
    }

    .sustainability-benefits-section .sustainability-benefits-wrapper .top-content {
        margin: 0 auto 50px;
    }

    .sustainability-benefits-section .sustainability-benefits-wrapper .row {
        margin: 0 -30px;
    }

    .sustainability-benefits-section .sustainability-benefits-wrapper .row>div {
        padding: 0 30px;
    }
}

@media(max-width:1199px) {
    .sustainability-benefits-section .sustainability-benefits-wrapper .row {
        margin: 0 -15px;
    }

    .sustainability-benefits-section .sustainability-benefits-wrapper .row>div {
        padding: 0 15px;
    }

    .sustainability-benefits-section .sustainability-benefits-wrapper {
        padding: 35px;
    }

    .sustainability-benefits-section .sustainability-benefits-wrapper .top-content {
        margin: 0 auto 35px;
    }

    .sustainability-benefits-section .sustainability-benefits-wrapper .content-side .content-row .text {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

@media(max-width:991px) {
    .sustainability-benefits-section .sustainability-benefits-wrapper .row {
        row-gap: 30px;
    }
}

@media(max-width:576px) {
    .sustainability-benefits-section .sustainability-benefits-wrapper {
        padding: 20px;
    }

    .sustainability-benefits-section .sustainability-benefits-wrapper .content-side .content-row {
        gap: 15px;
    }

    .sustainability-benefits-section .sustainability-benefits-wrapper .content-side .content-row .text {
        font-size: 18px;
        line-height: 25px;
    }

    .sustainability-benefits-section .sustainability-benefits-wrapper .top-content {
        margin: 0 auto 20px;
    }
}

/* BOX TYPE 1 CSS */
.box-type-wrapper .row {
    margin-left: -34px;
    margin-right: -34px;
}

.box-type-wrapper .row>div {
    padding-left: 34px;
    padding-right: 34px;
}

.box-type-wrapper .row:not(:last-child) {
    margin-bottom: 80px;
}

.box-type-wrapper .row:nth-child(2) {
    flex-direction: row-reverse;
}

.box-type-wrapper .row .img-part img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.box-type-wrapper .row .content-part h2 {
    font-weight: 700;
    font-size: 35px;
    line-height: 45px;
    font-family: 'Satoshi-Bold';
    margin-bottom: 15px;
}

.box-type-wrapper .row .content-part .hd-type5:not(:last-child) {
    margin-bottom: 15px;
}

@media(max-width:1600px) {
    .box-type-wrapper .row {
        margin-left: -25px;
        margin-right: -25px;
    }

    .box-type-wrapper .row>div {
        padding-left: 25px;
        padding-right: 25px;
    }

    .box-type-wrapper .row .content-part h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .partner-page .esg-gain-section .top-content .hd-type5 {
        margin: 30px auto auto;
    }
}

@media(max-width:1400px) {
    .box-type-wrapper .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .box-type-wrapper .row>div {
        padding-left: 15px;
        padding-right: 15px;
    }

    .box-type-wrapper .row .content-part h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .box-type-wrapper .row:not(:last-child) {
        margin-bottom: 50px;
    }
}

@media(max-width:992px) {
    .box-type-wrapper .row {
        gap: 30px;
    }

    .box-type-wrapper .row:not(:last-child) {
        margin-bottom: 30px;
    }
}