@font-face {
    font-family: "MyriadPro";
    src: url("../fonts/MyriadPro-Regular.otf") format("opentype"),
        url("../fonts/MyriadPro-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "MyriadPro";
    src: url("../fonts/MyriadPro-Semibold.otf") format("opentype"),
        url("../fonts/MyriadPro-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "MyriadPro";
    src: url("../fonts/Myriad\ Pro\ Bold.ttf") format("truetype"),
        url("../fonts/Myriad\ Pro\ Bold.ttf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "MaisonNeue";
    src: url("../fonts/MaisonNeue-Bold.ttf") format("truetype"),
        url("../fonts/MaisonNeue-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}

.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

body {
    max-width: 100%;
    font-family: "MyriadPro";
    font-weight: 400;
}

.container-max {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "MaisonNeue";
}

p,
a,
ul li {
    font-size: 18px;
    line-height: 28px;
    font-family: "MyriadPro";
    font-weight: 400;
}

.customList {
    li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 15px;

        &::before {
            content: '';
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: #000;
            border-radius: 50%;
            left: 0;
            top: 10px;
        }
    }
}

.innerBanner {
    ul {
        li {
            &::before {
                content: normal;
            }
        }
    }
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background-color: #ccc;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #70BC44;
    border-radius: 10px;
}

.row_gap20 {
    row-gap: 20px;
}

.row_gap25 {
    row-gap: 25px;
}

.row_gap30 {
    row-gap: 30px;
}

.skyBg {
    background-color: #30A4DC;
}

.skyText {
    color: #30A4DC;
}

.blackText {
    color: #000 !important;
}

.ltSkyBg {
    background-color: #EAFAFF;
}

.wid_50 {
    width: 50%;
}

.wid_60 {
    width: 60%;
}

.wid_70 {
    width: 70%;
}

.wid_80 {
    width: 80%;
}

.wid_90 {
    width: 90%;
}

.wid_100 {
    width: 100%;
}

.mb_20 {
    margin-bottom: 20px !important;
}

.mb_30 {
    margin-bottom: 30px !important;
}

.mb_40 {
    margin-bottom: 40px !important;
}

.mb_50 {
    margin-bottom: 50px !important;
}

.container-mid {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.secH {
    font-size: 58px !important;
    line-height: 1.1;
    font-family: "MaisonNeue" !important;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 15px;
    color: #30A4DC;

    div {
        display: inline !important;
    }
}

.subH {
    font-size: 45px;
    line-height: 1.1;
    font-family: "MaisonNeue";
    font-weight: 700;
    margin-bottom: 15px;

    div {
        display: inline !important;
    }
}

.commonSec {
    width: 100%;
    height: auto;
    padding: 120px 0px;
}

.bgSec {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: 150px;
        width: 500px;
        height: 450px;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        opacity: 0.3;
        z-index: 1;
    }

    &.bgSecLeft {
        &::after {
            left: 0;
            background-image: url(../images/common/bg_design_left.png);
        }
    }

    &.bgSecRight {
        &::after {
            right: 0;
            background-image: url(../images/common/bg_design_right.png);
        }
    }

    .bgSecInn {
        position: relative;
        z-index: 2;
    }
}



.commonBtn {
    width: 200px;
    color: #000;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid transparent;
    transition: all 0.5s;
    text-align: center;

    &.greenBtn {
        background-color: #43C206;
        color: #fff;

        &:hover {
            background-color: #fff;
            border-color: #43C206;
            color: #43C206;
        }
    }

    &.whiteBtn {
        background-color: #fff;

        &:hover {
            background-color: #43C206;
            border-color: transparent;
            color: #fff;
        }
    }
}

.more-btn {
    border-color: #000;
    color: #000;

    &:hover {
        border-color: transparent;
        color: #fff;
    }
}

/* slick buttons */

.slick-arrow {
    position: absolute;
    font-size: 0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.4s;
    z-index: 2;

    &::before {
        position: absolute;
        content: "\f054";
        font-family: fontawesome;
        font-size: 16px;
        color: #828282;
        height: 30px;
        width: 30px;
        border-radius: 50%;
        top: -2px;
        left: 0;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        transition: all 0.4s;
    }

    &::after {
        position: absolute;
        content: "";
        height: 43px;
        width: 45px;
        border-top: 1px solid #1c202371;
        border-right: 1px solid #1c202371;
        border-bottom: 1px solid #1c202371;
        bottom: -7px;
        right: -7px;
        border-radius: 0 50px 50px 0;
    }

    &:hover {
        background-color: #43C206;

        &::before {
            color: #fff;
        }
    }

    &.slick-prev {
        &::before {
            top: -2px;
            left: 0;
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

        &::after {
            border-top: 1px solid #1c202371;
            border-left: 1px solid #1c202371;
            border-bottom: 1px solid #1c202371;
            border-radius: 50px 0 0 50px;
            border-right: 0;
        }
    }

    &.slick-next {
        &::before {
            content: '\f053';
            top: -2px;
            left: 1px;
        }
    }
}

.centeredSlider {
    padding-bottom: 30px;

    .slick-arrow {
        position: absolute;
        top: auto;
        bottom: -30px;

        &.slick-prev {
            left: calc(50% - 37px);
        }

        &.slick-next {
            right: calc(50% - 37px);
        }
    }
}

/* certificate section */
.certiSec {
    .certiSecBtm {
        position: relative;

        .certiSlider {
            padding-bottom: 30px;

            .slick-arrow {
                position: absolute;
                top: auto;
                bottom: -30px;

                &.slick-prev {
                    left: calc(50% - 37px);
                }

                &.slick-next {
                    right: calc(50% - 37px);
                }
            }

            .certiCard {
                padding: 15px;

                .certiCardInn {
                    width: 100%;
                    height: 100%;
                    padding: 15px 20px;
                    border-radius: 12px;
                    overflow: hidden;
                    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);

                    .certiImg {
                        width: 100%;
                        height: 180px;
                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                            border-radius: 12px;
                        }
                        .imgHover{
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            opacity: 0;
                            width: 100%;
                            height: 100%;
                            display: flex;
                            transition: 0.6s;
                            visibility: hidden;
                            position: absolute;
                            align-items: center;
                            justify-content: center;
                            background-color: #fff;
                            span{
                                display: block;
                                color: #1e4e35;
                                font-size: 16px;
                                line-height: 1.4;
                                text-align: center;
                            }
                        }
                        a{
                            position: relative;

                            &:hover{
                                .imgHover{
                                    opacity: 1;
                                    visibility: visible;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media only screen and (max-width: 991px){
    /* .certiSec {
        .certiSecBtm {
            .certiSlider {
                .certiCard {
                    .certiCardInn {
                        .certiImg {
                            img {
                                width: 100%;
                                height: auto;
                                margin-bottom: 20px;
                            }
                        }
                    }
                }
            }
        }
    } */
}

/* faq section */
.commonFAQSec {
    .faqWrapInner {
        .eachFaq {
            margin-bottom: 30px;
            border-radius: 12px;
            overflow: hidden;
            background-color: #EAFAFF;

            .eachFaqInner {
                .faqCont {
                    display: none;
                    background-color: #EAFAFF;
                    padding: 20px 60px;

                    .faqContInner {
                        display: flex;
                        gap: 15px;

                        p,
                        span {
                            font-size: 18px;
                        }
                    }
                }

                .faqTitle {
                    position: relative;
                    background-color: #A4E2FF;
                    padding: 25px 90px 25px 60px;
                    color: #000;
                    font-size: 22px;
                    font-weight: 700;
                    border-radius: 12px;
                    margin-bottom: 0;
                    cursor: pointer;
                    line-height: 1.2;

                    span {
                        margin-right: 15px;
                    }

                    &::after {
                        content: '\2b';
                        font-family: fontawesome;
                        position: absolute;
                        right: 40px;
                        top: 20px;
                        width: 36px;
                        height: 36px;
                        background-color: #fff;
                        border-radius: 50%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: #1B9EBC;
                        transition: all 0.5s;
                        font-size: 14px;
                    }
                }
            }

            &.active {
                .eachFaqInner {
                    .faqCont {
                        display: block;
                    }

                    .faqTitle {
                        &::after {
                            content: '\f068';
                        }
                    }
                }
            }
        }
    }
}

/* pop-up form */
.popUpForm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 100;
    display: none;
    backdrop-filter: blur(12px);

    .wpcf7-spinner {
        position: absolute;
        bottom: -30px;
    }

    .frmBtnWrap {
        justify-content: center;
    }

    .popUpFormInn {
        width: calc(100% - 10px);
        max-width: 600px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        border: 2px solid #43C206;
        border-radius: 20px;
        padding: 20px;

        .more-btn {
            border: 1px solid #43C206;
            overflow: visible;
            background-color: #43C206;
            color: #fff;

            input[type='submit'] {
                color: #fff;
            }

            &::before,
            &::after {
                content: normal;
            }

            &:hover {
                background-color: #fff;
                border-color: #43C206;
                color: #43C206;

                &::before,
                &::after {
                    content: normal;
                }

                input[type='submit'] {
                    color: #43C206;
                }
            }
        }

        .popClose {
            position: absolute;
            right: 15px;
            top: 15px;
            font-size: 20px;
            color: #000;
            cursor: pointer;
        }

        .popUpHead {
            text-align: center;
            font-size: 30px;
            color: #43C206;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            width: 100%;
            display: block;
            margin-bottom: 5px;
            color: #000;
            font-size: 18px;
        }

        input,
        textarea {
            width: 100%;
            display: block;
            padding: 5px 12px;
            border-radius: 8px;
            border: 1px solid #000;
            outline: 0;
            font-size: 16px;
        }

        textarea {
            height: 80px;
            resize: none;
        }

        input[type='submit'] {
            width: 150px;
            /* background-color: #43C206; */
            color: #000;
            padding: 8px 12px;
            font-size: 18px;
            text-align: center;
            border-radius: 8px;
            border: 1px solid transparent;
            margin: 0px auto;
            transition: all 0.5s;

            &:hover {
                color: #fff;
            }
        }

        .wpcf7-captchar {
            width: calc(100% - 125px);
            display: inline;
        }
    }
}

.newResView {
    display: none;
}

/* creating impact */
.impactSec {
    position: relative;

    .impactAbsImg {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        z-index: 2;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }

    .impactSecInn {
        padding-bottom: 80px;
    }

    .text-content {
        .text-box {
            position: relative;
        }
    }
}

.eleventh-section {
    height: 730px;

    .bg-map {
        height: 100%;
        width: 100%;
        position: initial;
    }
}

/* Responsive */

@media (max-width: 1738px) {
    .bgSec {
        &::after {
            width: 340px;
            height: 420px;
        }
    }
}

@media (max-width: 1600px) {
    .commonSec {
        padding: 100px 0px;
    }

    .bgSec {
        &::after {
            width: 250px;
            height: 300px;
        }
    }

    .subH {
        font-size: 36px;
    }
}

@media (max-width: 1440px) {
    .secH {
        font-size: 50px !important;
    }
}

@media (max-width: 1366px) {

    p,
    a,
    ul li {
        font-size: 16px;
        line-height: 26px;
    }

    .secH {
        font-size: 40px !important;
    }

    .gt_switcher_wrapper {
        right: 40px !important;
    }
}

@media (max-width: 1199px) {
    .headerMain {
        .container-max {
            width: 100%;
            max-width: 100%;
        }
    }

    .gt_switcher_wrapper {
        right: 20px !important;
    }
}

@media (max-width: 1024px) {

    .commonSec {
        padding: 80px 0px;
    }

    .bgSec {
        &::after {
            content: normal;
        }
    }

    .subH {
        font-size: 30px;
        text-align: center;
    }

    .secH {
        font-size: 40px !important;
    }

    .headingWrap {
        margin-bottom: 20px;
    }

    .eleventh-section {
        height: auto;
        padding-bottom: 0px;

        .bg-map {
            height: 400px;
            width: 100%;
            position: initial;

            iframe {
                height: 100%;
                width: 100%;
                object-fit: cover;
                object-position: center center;
            }
        }

        .contactFrmWrap {
            background-color: #fff;
            position: static;
            max-width: 97%;
            margin: 0 auto;
            margin-top: 30px;
            top: 0;
            left: 50%;
            transform: translateX(0);
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 140px;

        }
    }
}

@media (max-width: 991px) {
    .newDeskView {
        display: none;
    }

    .newResView {
        display: block;
    }

    .popUpForm {
        .popUpFormInn {
            input {
                height: 40px;
            }
        }
    }
}

@media (max-width: 768px) {
    .commonSec {
        padding: 60px 0px;
    }

    .subH {
        font-size: 28px;
    }

    .secH {
        font-size: 35px !important;
    }

    .eleventh-section {
        .contactFrmWrap {
            margin-bottom: 0px;
        }
    }

    .commonFAQSec {
        .faqWrapInner {
            .eachFaq {
                .eachFaqInner {
                    .faqTitle {
                        padding: 20px 90px 20px 20px;
                        font-size: 18px;

                        span {
                            margin-right: 5px;
                        }
                    }

                    .faqCont {
                        .faqContInner {

                            p,
                            span {
                                font-size: 16px;
                            }
                        }

                        padding: 20px;
                    }
                }
            }
        }
    }
}

@media (max-width: 575px) {
    .subH {
        font-size: 25px;
    }

    .secH {
        font-size: 30px !important;
    }
}