:root {
    --bg-color: white;
    --text-color: black;
    --orange-color: rgba(255, 143, 67, 1);
    --orange-mob-color: rgb(255, 103, 0);
    --green-color: rgba(0, 181, 101, 1)
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    border-radius: 10px;
}
::-webkit-scrollbar {
    width: 5px;
    background-color: #b5d8c7;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: #148a56;;
    border-radius: 10px;
}

.commonSec {
    padding: 80px 0;
}

.orangeText {
    color: var(--orange-color);
}

.whiteBox *{
    color: #fff !important;
}

.bg_FFF5EE {
    background-color: #FFF5EE;
}

.headingWrap {
    padding-bottom: 30px;
    position: relative;

    .secH {
        position: relative;
        display: inline-block;
        padding-bottom: 20px;
        color: rgba(0, 0, 0, 0.75);
        font-weight: 300;

        &::after {
            width: 200px;
            height: 30px;
            position: absolute;
            content: "";
            background: url(../images/headingLine.png) no-repeat;
            background-size: 100%;
            bottom: 0;
            right: 0;
        }
    }
}

.caseStudyList {
    .caseStudySec_1 {
        .headingWrap {
            text-align: center;

            h2 {
                &:first-child {
                    display: none;
                }

                text-align: center;
            }
        }
    }

    .aboutImgWrap {
        margin-top: 20px;
    }
}

.secH {
    font-size: 54px;
    line-height: 1.3;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: 0.3s;
    font-family: 'Public Sans';
    font-weight: normal;
}

/* Dark theme overrides */
body.dark-theme {
    /* --bg-color: #121212; */
    --bg-color: #002917;
    --text-color: #ffffff;
}

/* Toggle switch styling (optional) */
.theme-switch {
    margin-left: 20px;
}

.theme-switch input {
    display: none;
}

.theme-switch .slider {
    width: 80px;
    height: 40px;
    background: #747474c7;
    display: flex;
    justify-content: space-between;
    border-radius: 25px;
    position: relative;
    align-items: center;
    cursor: pointer;
    padding: 0 10px;
}

.theme-switch .slider span {
    position: relative;

    img {
        filter: brightness(0) invert(1);
    }

    &.lightTheme {
        img {
            filter: brightness(1) invert(0);
        }
    }
}

.dark-theme {
    .theme-switch .slider span {
        position: relative;

        img {
            filter: brightness(1) invert(0);
        }

        &.lightTheme {
            img {
                filter: brightness(0) invert(1);
            }
        }
    }
}

.theme-switch .slider::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    top: 2px;
    left: 2.5px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.theme-switch input:checked+.slider::before {
    transform: translateX(38px);
}

.btnWrap {
    .btnMain {
        display: inline-block;
        padding: 10px 30px;
        border-radius: 30px;
        color: #fff;
        background-color: var(--orange-color);
        padding-right: 60px;
        position: relative;
        margin-right: 15px;
        transition: .4s;
        overflow: hidden;

        span {
            position: relative;
            z-index: 1;
        }

        &:active {
            border: none !important;
        }

        &::after {
            width: 30px;
            height: 30px;
            background: url(../images/right_arrow_icon.png) no-repeat;
            background-size: 100%;
            right: 20px;
            position: absolute;
            content: "";
        }

        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: #FF8531;
            border-radius: 30px;
            transition: .4s;
        }

        &.btnOne {
            padding: 2px;
            background: linear-gradient(90deg, #f6651c 0%, #10b56830 100%);

            &::after {
                display: none;
            }

            span {
                display: block;
                padding: 10px 30px;
                background: linear-gradient(90deg, #FF8531 0%, #007743 100%);
                border-radius: 30px;
                position: relative;
                padding-right: 70px;
                transition: .4s;

                &::after {
                    width: 30px;
                    height: 30px;
                    background: url(../images/right_arrow_icon.png) no-repeat;
                    background-size: 100%;
                    right: 30px;
                    position: absolute;
                    content: "";
                }

            }
        }

        &:hover {
            &::before {
                width: 100%;
            }

            &.btnOne {
                span {
                    background: transparent;
                }
            }
        }
    }
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    color: #dc3232;
    font-size: 14px;
    border: none;
    padding: 0;
    margin: 0;
}

/*===header start==*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 10px 20px 0;

    .headerInner {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .logoImg {
            width: 215px;
            height: 42px;
            transition: all 0.5s;

            a {
                display: block;
                width: 100%;
                height: 100%;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(117deg) brightness(110%) contrast(103%);
                }
            }
        }
    }

    .headerRight {
        display: flex;
        align-items: center;
        height: 100%;

        .menuWrap {
            ul {
                display: flex;

                li {
                    display: flex;
                    gap: 15px;
                    padding: 20px 15px;
                    align-items: center;
                    height: 100%;
                    transition: all 0.5s;

                    a {
                        color: #fff;
                        font-size: 16px;
                        transition: all 0.5s;
                    }

                    .toggleArrow {
                        color: #fff;
                        font-size: 12px;
                    }

                    .megaMenu {
                        position: absolute;
                        left: 0;
                        top: 100%;
                        width: 100%;
                        padding: 0 50px;
                        -webkit-animation: .5s ease-in-out forwards growDown;
                        animation: .5s ease-in-out forwards growDown;
                        -webkit-transform-origin: top center;
                        -ms-transform-origin: top center;
                        display: none;

                        .megaMenuInn {
                            display: flex;
                            flex-wrap: wrap;
                            background-color: #fff;
                            border-radius: 15px;
                            overflow: hidden;
                            box-shadow: 0px 0px 10px 0px #484848;
                            padding: 20px 0px;

                            .megaMenuCard {
                                width: 33.33%;
                                position: relative;

                                .megaMenuHead {
                                    /* background: linear-gradient(to right, #ff853142 0, #00774336 35%); */
                                    font-size: 19px;
                                    font-weight: 500;
                                    margin-bottom: 10px;
                                    padding: 20px 20px 10px;
                                    background: linear-gradient(2deg, #137844, #eb833b);
                                    -webkit-background-clip: text;
                                    -webkit-text-fill-color: transparent;
                                    background-clip: text;
                                    color: transparent;
                                    border-bottom: 2px solid #ffffff;
                                }

                                ul {
                                    display: flex;
                                    flex-direction: column;
                                    padding: 0 20px;

                                    li {
                                        display: block;
                                        padding: 0;
                                        margin-bottom: 0;
                                        padding-bottom: 15px;
                                        padding-left: 18px;
                                        position: relative;

                                        &::before {
                                            width: 6px;
                                            height: 6px;
                                            border-radius: 50%;
                                            background-color: #007743;
                                            position: absolute;
                                            left: 0;
                                            top: 7px;
                                            content: "";
                                        }

                                        a {
                                            display: block;
                                            width: 100%;
                                            height: 100%;
                                            font-size: 16px;
                                            color: #171717;
                                            width: 100%;
                                            position: relative;
                                            transition: .4s;
                                            padding-left: 0px;
                                            margin-bottom: 0;
                                            transition: 0.5s;

                                            &:hover {
                                                color: #f6651c;
                                            }
                                        }

                                        ul {
                                            padding-left: 15px;

                                            li {
                                                a {
                                                    position: relative;
                                                    color: #121212;
                                                    font-size: 14px;
                                                    padding-left: 18px;
                                                    margin-bottom: 10px;
                                                    transition: all 0.4s;

                                                    &::after {
                                                        content: '';
                                                        position: absolute;
                                                        width: 6px;
                                                        height: 6px;
                                                        border-radius: 50%;
                                                        background-color: #007743;
                                                        top: 5px;
                                                        left: 0;
                                                    }
                                                }

                                                &:hover {
                                                    a {
                                                        color: #007743;
                                                        margin-left: 8px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }

                                &:not(:last-child) {
                                    /* margin-bottom: 20px; */
                                    border-right: 2px solid #cccccc57;
                                }
                            }

                            .megaMenuRow {
                                width: 33.33%;
                                padding: 0px 20px;

                                &:not(:last-child) {
                                    border-right: 1px solid #bdbbbb;
                                }

                                .megaMenuNewCard {
                                    ul {
                                        display: flex;
                                        flex-direction: column;

                                        li {
                                            display: block;
                                            padding: 8px 0px;
                                            margin-bottom: 0;
                                            position: relative;
                                            padding-left: 0;

                                            >a {
                                                display: block;
                                                font-size: 20px;
                                                font-weight: 600;
                                                margin-bottom: 8px;
                                                background: linear-gradient(to right, #ff8531 0, #007743 20%);
                                                -webkit-background-clip: text;
                                                -webkit-text-fill-color: transparent;
                                                background-clip: text;
                                                color: transparent;
                                                border-bottom: 2px solid #ffffff;
                                                position: relative;
                                                padding-left: 16px;

                                                &::before {
                                                    content: '';
                                                    position: absolute;
                                                    border-radius: 0;
                                                    width: 7px;
                                                    height: 7px;
                                                    border: none;
                                                    background: #ff8531;
                                                    top: 8px;
                                                    left: 0;
                                                    transition: all 0.5s;
                                                }
                                            }

                                            &:hover {
                                                >a {
                                                    &::before {
                                                        transform: rotate(45deg);
                                                    }
                                                }
                                            }

                                            ul {
                                                padding-left: 15px;
                                                margin-top: 8px;

                                                li {
                                                    a {
                                                        display: block;
                                                        width: 100%;
                                                        height: 100%;
                                                        font-size: 16px;
                                                        color: #171717;
                                                        width: 100%;
                                                        position: relative;
                                                        margin-bottom: 0;
                                                        padding-left: 15px;
                                                        -webkit-text-fill-color: unset;
                                                        font-weight: 400;
                                                        transition: all 0.3s;

                                                        &::before {
                                                            width: 6px;
                                                            height: 6px;
                                                            border-radius: 50%;
                                                            background-color: #007743;
                                                            position: absolute;
                                                            left: 0;
                                                            top: 7px;
                                                            content: "";
                                                            transition: all 0.5s;
                                                        }

                                                        &:hover {
                                                            color: #f6651c;
                                                            padding-left: 26px;

                                                            &::before {
                                                                width: 20px;
                                                                height: 2px;
                                                                border-radius: 0;
                                                                transform: none;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }

                                    }

                                    &:last-child {
                                        border: none;
                                    }
                                }
                            }
                        }
                    }

                    &.hasMegaMenu {
                        &:hover {
                            >.megaMenu {
                                display: block;
                            }
                        }
                    }
                }
            }
        }
    }

    &.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        /* background-color: #000000a3; */
        background-color: #ffffffc2;
        backdrop-filter: blur(10px);
        animation: slideDown 0.35s ease-out;
        z-index: 9;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);

        .headerInner {
            .logoImg {
                width: 180px;

                a {
                    img {
                        filter: none;
                    }
                }
            }

            .headerRight {
                .menuWrap {
                    ul {
                        li {
                            a {
                                color: #000;
                            }

                            .toggleArrow {
                                color: #000;
                                font-size: 12px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@-webkit-keyframes growDown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }

    100%,
    80% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1)
    }
}

@keyframes growDown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }

    100%,
    80% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.mobMenu_wrap {
    display: none;
}

.toggle-wrap {
    display: none;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.bg_EAFBF4 {
    background-color: #EAFBF4;
}

.rad_50 {
    border-radius: 50px;
}

/*===form wrap start====*/

.frmWrap {
    .inputTxt {
        width: 100%;
        border: none;
        border-radius: 30px;
        padding: 8px 20px;
        padding-right: 40px;
        height: 50px;
        background-color: #F1F1F1;
        outline: none;
        color: #000;
        font-size: 18px;
        font-weight: 500;
        resize: none;
        line-height: 34px;

        &.textArea {
            height: 80px;
        }

        &::placeholder {
            color: #000;
            font-family: 'Public Sans';
            font-weight: normal;
        }
    }

    .frmIcon {
        position: absolute;
        width: 20px;
        right: 15px;
        top: 18px;

        img {
            width: 100%;
        }
    }

    margin-bottom: 20px;

    .inputTxt.textArea {
        height: 100px;
        padding-top: 10px;
        border-radius: 10px;
    }

    &.btnWrap {
        position: relative;
        display: inline-block;
        width: 100%;
        text-align: end;
        margin-bottom: 0px;

        .subBtn {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            opacity: 0;
            z-index: 1;
        }

    }
    &.capthaWrap{
        p{
            .wpcf7-form-control-wrap{
                input{
                    background-color: #f1f1f1;
                }
            }
        }
    }
}

.wpcf7-spinner {
    position: absolute;
    top: 0;
    right: -42px;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 14px;
    color: #dc3232;
    border: none;
    margin: 7px 0 0;
}

.wpcf7 form.sent .wpcf7-response-output {
    font-size: 14px;
    color: #46b450;
    border: none;
    margin: 7px 0 0;
}


.mapSec {
    position: relative;
    overflow: hidden;

    .mapWrap {
        height: 700px;

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

    .bookFormInner {
        width: 500px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 80px;
        background-color: #fff;
        border-radius: 30px;
        padding: 30px 20px;
    }

    .bookFormWrap {
        /* padding: 40px; */

        h2 {
            font-size: 24px;
            color: #007743;
            margin-bottom: 20px;
        }

        .frmWrap {
            &.btnWrap {
                .subBtn {
                    z-index: 2;
                }
            }

            .inputTxt {
                height: 40px;
                line-height: 25px;
                font-size: 16px;

                &.textArea {
                    height: 90px;
                }
            }
        }
    }
}

/*===footer start===*/
.overflowH {
    overflow: hidden;
}

.footerSec {
    padding-bottom: 300px;
    background-size: 100% !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;

    .footerMain {
        background-color: #ffffff;
        backdrop-filter: blur(30px);

        .footerMainInner {
            padding: 80px 30px 20px;

            .footerLogo {
                width: 220px;
                margin-bottom: 20px;
            }

            h4 {
                color: var(--orange-color);
                font-family: 'Public Sans';
                font-weight: 600;
                font-size: 20px;
            }

            .isoText {
                display: flex;
                align-items: center;

                .isoIcon {
                    width: 30px;

                    img {
                        width: 100%;
                    }
                }

                p {
                    width: calc(100 - 30px);
                    padding-left: 10px;
                }
            }

            a {
                color: #000;
                transition: 0.5s;
                font-weight: 300;

                &:hover {
                    color: #008d4f;
                }
            }

            p {
                font-weight: 300;
            }

            .footerText {
                margin-bottom: 15px;
            }

            .menuList,
            .servieList {
                li {
                    padding: 7px 0;
                }
            }
        }

    }

    .contactList {
        li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;

            &::before {
                width: 25px;
                height: 25px;
                position: absolute;
                left: 0;
                top: 5px;
                content: "";
            }

            &.address {
                &::before {
                    background: url(../images/MapPinArea.png) no-repeat;
                    background-size: 20px;
                }
            }

            &.call {
                &::before {
                    background: url(../images/PhoneCall.png) no-repeat;
                    background-size: 20px;
                    top: 0;
                }
            }

            &.mail {
                &::before {
                    background: url(../images/Envelope.png) no-repeat;
                    background-size: 20px;
                    top: 2px;
                }
            }
        }
    }

    .socialWrap {
        padding-top: 15px;
        display: flex;
        gap: 20px;

        a {
            font-size: 24px;
        }
    }

    .footerMainBottom {
        display: flex;
        justify-content: space-between;
        padding: 20px 30px 40px;
        border-top: 1px solid #797979;
        margin-top: 0;

        a {
            color: #000;
            transition: 0.6s;

            &:hover {
                color: #008d4f;
            }
        }

        .rightWrap {
            a {
                font-weight: 600;
            }
        }
    }
}

.count_2 {
    column-count: 1;
}

.dark-theme {
    .footerSec {
        .footerMain {
            background-color: #ffffffab;
            backdrop-filter: blur(30px);
        }
    }
}

.innerBanner {
    overflow: hidden;
    max-height: 400px;
    position: relative;

    img {
        width: 100%;
    }

    &:before {
        width: 100%;
        height: 200px;
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        background-image: linear-gradient(180deg, #0000007a 55% 0%, transparent 100%);
        z-index: 1;
    }

    &::after {
        width: 100%;
        height: 100%;
        position: absolute;
        content: "";
        bottom: -10px;
        left: 0;
        /* background-image: linear-gradient(180deg, transparent 0 57%, #000000 96% 100%); */
        background-image: linear-gradient(180deg, transparent 0 25%, #000000d7 96% 100%);
        z-index: 1;
    }
}

.dark-theme {
    .innerBanner {
        position: relative;

        &::after {
            /* background-image: linear-gradient(180deg, transparent 0 10%, #000000 90% 100%); */
            background-image: linear-gradient(180deg, transparent 0 10%, #3d2400 90% 100%);
        }
    }
}

.aboutImgWrap {
    padding-left: 50px;

    .overlayImg {
        position: absolute;
        width: 100.5%;
        height: 100%;
        top: 0;
        left: -2px;

    }

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

.aboutSecWrap {
    padding: 80px 30px;

    .aboutTxt {
        .textWrap {
            margin-bottom: 20px;

            h4,
            h3 {
                font-size: 24px;
                line-height: 1.4;
                font-weight: 300;
                margin-bottom: 20px;
                color: #b9b9b9;
            }
        }
    }
}

.productDetails_1 {
    .textWrap {
        h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
    }
}

.countWrap {
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;

    & .countBox {
        width: 25%;
        flex: 0 0 auto;
        padding: 0 10px;
        position: relative;
        text-align: center;

        h3 {
            color: #00B565;
            font-size: 50px;
            font-family: 'Unbounded';
            line-height: 1.3;
            font-weight: 500;
        }

        &:not(:last-child) {
            &::after {
                width: 1px;
                height: 100%;
                position: absolute;
                content: "";
                right: 0;
                background: rgba(0, 0, 0, 0.25);
                top: 50%;
                transform: translateY(-50%);
            }
        }

    }
}

.counterSec {
    .countWrap {
        padding-top: 0;
    }
}

.countWrapProd {
    &.countWrap {
        justify-content: center;

        .countBox {
            padding: 30px 15px;
            border-radius: 30px;
            width: calc(33.33% - 30px);
            box-shadow: 3px 3px 4px 2px #00000015;
            /* background: linear-gradient(23deg, #f6651c30 0%, #10b5681c 100%); */
            background: linear-gradient(23deg, #f6651c 0%, #f6651c 100%);

            h3 {
                /* color: #071810; */
                color: #ffffff;
                font-size: 24px;
                line-height: 1;
                font-weight: 500;
                font-family: 'Unbounded';
            }

            &:not(:last-child) {
                margin-right: 30px;

                &::after {
                    content: normal;
                }
            }

            .countBoxInner {
                text-align: center;
                /* display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center; */

                h3 {
                    margin-right: 15px;
                    margin-bottom: 10px;
                }
                h3 + p{
                    line-height: 1;
                }
            }
        }
    }
}

.dark-theme {
    .counterSec {
        .countWrap {
            .countBox {
                p {
                    color: #fff;
                }

                &:not(:last-child) {
                    &::after {
                        background: #fff;
                    }
                }
            }
        }
    }
}


/*===color code ====*/
.bg_eafbf4 {
    background-color: #eafbf4;
}

.innerBannerCont {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    padding-top: 60px;
    z-index: 2;
}

.innerBanner {
    .imgImg {
        height: 460px;

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

.cd-breadcrumb {
    width: 100%;
    padding-left: 0px;
    margin-bottom: 0px;
    list-style: none;

    li {
        display: inline-block;
        list-style: none;
        padding-left: 0px;
        margin-left: 0px;
    }
}

.cd-breadcrumb li>* {
    display: inline-block;
    font-size: 18px;
    color: #fff;
}

.cd-breadcrumb li.current {
    color: var(--orange-color);
}

.cd-breadcrumb li {
    font-size: 18px;
}

.cd-breadcrumb li::after {
    display: inline-block;
    content: '\f054';
    margin: 0 .6em;
    color: #959fa5;
    font-family: "FontAwesome";
    font-size: 12px;
}

.cd-breadcrumb li:last-child {
    &::after {
        display: none;
    }
}

.innerBannerTitle {
    margin-bottom: 20px;
}

.projectWrap {
    .headingWrap {
        position: absolute;
        text-align: center;
        width: 100%;
        left: 0;
        padding-top: 60px;
        top: 0;
        z-index: 1;
    }

    .projectItem {
        position: relative;

        .projectImg {
            border-radius: 50px;
            overflow: hidden;
            position: relative;
            height: 700px;

            .project_overlay {
                position: absolute;
                right: 0;
                top: 0;
            }

            &::before {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background-color: #0000009c;
                content: "";
            }

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

        .projectInner {
            position: absolute;
            left: 0;
            bottom: 0;
            padding: 30px;

            a {
                color: #fff;
                font-size: 30px;
                font-family: 'Unbounded';
                font-weight: 300;
            }
        }
    }
}

.mt_minus_40 {
    margin-top: -40px;
    z-index: 2;
}

/*==storiesStart ---*/
.storiesWrap {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;

    .mobileImg {
        display: none;
        position: absolute;
        top: 192px;
        left: 50%;
        transform: translateX(-50%);
        width: 24%;
        width: 18.5%;
    }

    .headingWrap {
        margin-bottom: 30px;

        & .secH {
            &::after {
                left: 50%;
                right: 0;
                transform: translateX(-50%);
            }
        }
    }

    .storiesSlider {
        padding-top: 30px;
        position: relative;

        .slick-list {
            padding: 0 !important;
        }

        .sliderItem {
            margin: 0 20px;
            z-index: -1;
            position: relative;
            transition: 0s ease-out;

            .sliderInner {
                height: 360px;
                border-radius: 15px;
                overflow: hidden;
                position: relative;
                transition: 1s;
                background-color: var(--orange-mob-color);
                /* border-radius: 5px; */

                .storiesImg {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    transition: 0s ease-out;
                    z-index: 1;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    /* background-color: #fff; */
                    background-color: #bbbbbb;

                    img {
                        width: 100%;
                        /* height: 100%; */
                        transition: 0.6s;
                        /* object-fit: cover; */
                        object-position: center top;
                        /* filter: brightness(1) invert(1); */
                    }
                }

                .storiesContent {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    padding: 30px 20px;
                    opacity: 0;
                    visibility: hidden;
                    transition: 0s ease-out;

                    .storiesTxt {
                        padding-top: 50px;
                        position: relative;


                        &::before {
                            font-size: 50px;
                            position: absolute;
                            content: "\f10d";
                            left: 0;
                            top: -13px;
                            font-family: "FontAwesome";
                            opacity: 0.3;
                        }

                        p {
                            color: #fff;
                            font-size: 17px;
                            line-height: 1.4;
                        }

                        &::-webkit-scrollbar-track {
                            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
                            background-color: #ffffff;
                            border-radius: 10px;
                        }

                        &::-webkit-scrollbar {
                            width: 5px;
                            background-color: #ffffff;
                            border-radius: 10px;
                        }

                        &::-webkit-scrollbar-thumb {
                            background-color: #148a56;;
                            border-radius: 10px;
                        }
                    }

                    .storiesBottom {
                        display: flex;
                        margin-top: 40px;
                        align-items: center !important;

                        .storiesImg_2 {
                            width: 60px;
                            height: 60px;
                            display: flex;
                            overflow: hidden;
                            border-radius: 50%;
                            align-items: center;
                            justify-content: center;
                            border: 1px solid #fff;

                            img {
                                width: 100%;
                            }
                        }

                        .storiesInfo {
                            width: calc(100% - 60px);
                            padding-left: 10px;

                            h5 {
                                font-size: 16px;
                                color: #fff;
                                font-family: 'Public Sans';
                                font-weight: 600;
                                margin-bottom: 5px;
                            }

                            a {
                                font-size: 14px;
                                color: #fff;
                                align-items: center;
                                display: flex;

                                .playIcon {
                                    width: 30px;
                                    height: 30px;
                                    border-radius: 50%;
                                    background-color: #fff;
                                    color: var(--orange-mob-color);
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    margin-left: 10px;
                                }
                            }
                        }
                    }
                }
            }

            /* &.slick-current.slick-active { */
            &:hover {
                z-index: 1;
                transition: 1s ease-in;

                .storiesContent {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    padding: 30px 20px;
                    opacity: 1;
                    visibility: visible;
                    transition: 1s ease-in;
                    z-index: 1;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;

                    .storiesTxt {
                        padding-right: 5px;
                        height: 330px;
                        overflow-y: auto;
                    }
                }

                .storiesImg {
                    z-index: 0;
                    opacity: 0;
                    visibility: hidden;
                }
            }
        }
    }

    .slick-arrow {
        bottom: -80px;
        top: auto;

        &.slick-next {
            right: calc(50% - 60px);
            background: url(../images/right_arrow_icon.png) no-repeat center center #D9D9D9;
            background-size: 80%;
            transform: none;
        }

        &.slick-prev {
            left: calc(50% - 60px);
            background: url(../images/left_arrow_icon.png) no-repeat center center #D9D9D9;
            background-size: 80%;
            transform: none;
        }

        &:hover {
            &.slick-next {
                background: url(../images/right_arrow_icon.png) no-repeat center center #00B565;
                background-size: 80%;
            }

            &.slick-prev {
                background: url(../images/left_arrow_icon.png) no-repeat center center #00B565;
                background-size: 80%;
            }
        }
    }

}

.slick-arrow {
    position: absolute;
    font-size: 0px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #D9D9D9;
    border: none;
    top: 50%;
    transform: translateX(-50%);
    transition: 0.5s;

    &.slick-next {
        right: -60px;
        background: url(../images/right_arrow_icon_right.png) no-repeat center center #D9D9D9;
        background-size: 80%;
    }

    &.slick-prev {
        left: -20px;
        background: url(../images/left_arrow_icon_black.png) no-repeat center center #D9D9D9;
        background-size: 80%;
    }

    &:hover {
        &.slick-next {
            background: url(../images/right_arrow_icon.png) no-repeat center center #00B565;
            background-size: 80%;
        }

        &.slick-prev {
            background: url(../images/left_arrow_icon.png) no-repeat center center #00B565;
            background-size: 80%;
        }
    }
}

.pagination {
    display: flex;
    gap: 10px;
}

.pagination span {
    line-height: 50px;
}

.pagination .page-numbers {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    background: transparent;
    border: 1px solid #cecece;
    color: #000;
}

.pagination .page-numbers.active,
.pagination .page-numbers:hover {
    background-color: rgba(0, 119, 67, 1);
    color: #fff;
}

.listWrap {
    margin-top: 30px;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    margin-top: 30px;

    ul {
        column-count: 2;

        li {
            display: inline-block;
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;

            &::before {
                position: absolute;
                width: 20px;
                height: 20px;
                content: "";
                background: url(../images/check.png) no-repeat;
                background-size: 100%;
                left: 0;
                top: 7px;
            }
        }
    }
}

/* form nice select  */
.bookFormWrap {
    .frmWrap {

        .wpcf7-form-control-wrap {
            position: relative;
            display: inline-block;
            width: 100%;
        }
    }

    .nice-select:after {
        background-image: url(../images/select_arrow.png);
        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
        height: 10px;
        width: 17px;
        border-right: unset;
        border-bottom: unset;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0);
        transition: .4s;
    }

    .nice-select.open:after {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: translate(-50%) rotate(-180deg);
        transform-origin: 66% 35%;
    }

    .nice-select.open .list {
        background-color: #fff5ee;
        border: 1px solid #c3c3c3;
        width: 100%;
        max-height: 220px;
        overflow-y: auto;

        li {
            &:not(:last-child) {
                border-bottom: 1px solid #ffd0b1;
            }
        }
    }

    .nice-select .option:hover,
    .nice-select .option.focus,
    .nice-select .option.selected.focus {
        background-color: #ff9146;
    }

    .nice-select .option.disabled {
        color: #000;
    }
}

/* end form nice select */


/* start get in touch */
.getInTouchBtn {
    position: fixed;
    right: -56px;
    bottom: 15%;
    transform: translateY(-26%) rotate(-90deg);
    z-index: 100;
    padding: 8px 25px;
    background-color: #F86602;
    /* background: linear-gradient(90deg, #FF8531 0%, #007743 100%); */
    border-radius: 15px 15px 0 0;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.5s;

    a {
        display: block;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.5s;
    }

    &.btnOne{
        right: auto;
        margin-right: 0;
        transform: rotate(0);
    }
}

.sidebarForm {
    position: fixed;
    width: 100%;
    max-width: 350px;
    z-index: 9999;
    transform: translateX(120%);
    right: 0;
    top: 0;
    height: 100%;
    /* overflow-y: auto; */
    min-width: 300px;
    background: #FFF5EE;
    transition: all 0.5s;
    padding: 12px 20px 30px;
    box-shadow: 2px 0 10px 2px rgba(0, 0, 0, 0.3);

    .sidebarFormTop {
        margin-bottom: 20px;

        h5.sideFormTitle {
            color: var(--orange-color);
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 7px;
        }

        h5.sideFormHead {
            font-weight: 400;
            color: rgba(0, 0, 0, 0.75);
            font-size: 18px;
        }

        .sideMenuClose {
            position: absolute;
            right: 10px;
            top: 8px;
            font-size: 22px;

            svg {
                color: #047742;
            }
        }
    }

    .sidebarFormInn {
        /* overflow-y: auto; */
        /* overflow-x: hidden; */
        /* scroll-behavior: smooth; */
        max-height: calc(100vh - 90px);
        padding-right: 10px;
        padding-bottom: 30px;
        overflow-y: auto;
        overflow-x: hidden;

        .frmWrap {
            height: 100%;
            margin-bottom: 20px !important;

            .inputTxt {
                background-color: #fff;
                height: 40px;
                padding: 6px 20px;
                line-height: 20px;
                font-size: 16px;
                line-height: 25px;

                &.nice-select {
                    margin-bottom: 20px;
                }
            }

            &.btnWrap {
                text-align: center;
                margin-top: 20px;

                .btnMain {
                    &.btnOne {
                        width: 140px;
                        height: 45px;
                        background: linear-gradient(90deg, #FF8531 0%, #007743 100%);
                        border: none;
                        transition: all 0.5s;

                        span {
                            padding: 7px 22px;
                            padding-right: 64px;
                        }
                    }
                }
            }
        }

        .sideFormBtn {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            opacity: 0;
        }

        .nice-select {
            ul.list {
                height: 250px;
                overflow-y: auto;
                background-color: #fff5ee;
                border: 1px solid #c3c3c3;
                width: 100%;

                & li {
                    &:not(:last-child) {
                        border-bottom: 1px solid #ffd0b1;
                    }
                }
            }
        }

        .nice-select .option:hover,
        .nice-select .option.focus,
        .nice-select .option.selected.focus {
            background-color: #ff9146;
        }

        /* scrollbar */
        /* &::-webkit-scrollbar-track {
            background-color: #a3a3a3;
            border-radius: 20px;
        }

        &::-webkit-scrollbar {
            width: 4px;
            background-color: #a3a3a3;
        }

        &::-webkit-scrollbar-thumb {
            background-color: #f66820;
            border: 2px solid #f66820;
            border-radius: 20px;
        } */
    }

    &.active {
        transform: translateX(0%);
    }

    .quickAdd {
        padding-top: 15px;

        ul {
            li {
                padding-left: 30px;
                position: relative;

                &:not(:last-child) {
                    margin-bottom: 15px;
                }

                a {
                    color: #000;
                    transition: 0.5s;
                    font-weight: 300;
                }

                &::before {
                    width: 25px;
                    height: 25px;
                    position: absolute;
                    left: 0;
                    top: 0;
                    content: "";
                }

                &.sideFrLoc {
                    &::before {
                        background: url(../images/MapPinArea.png) no-repeat;
                        background-size: 20px;
                    }
                }

                &.sideFrcall {
                    &::before {
                        background: url(../images/PhoneCall.png) no-repeat;
                        background-size: 20px;
                    }
                }

                &.sideFrmail {
                    &::before {
                        background: url(../images/Envelope.png) no-repeat;
                        background-size: 20px;
                    }
                }
            }
        }
    }


}

.sideFormOverlay.active {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    background-color: #00000038;
    z-index: 900;
    backdrop-filter: blur(3px);
}

.swiper-navigation-icon {
    display: none;
}

/* end get in touch */

/* 404 not found */

.pnf_sec {
    padding: 70px 0 !important;

    .pnf_head {
        display: flex;
        align-items: center;
        justify-content: center;

        h2 {
            font-size: 280px;
            font-family: Combo, system-ui;
        }

        .pnf_img {
            width: 300px;
            height: auto;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }

    .pnf_cont {
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;

        p {
            font-size: 20px;
        }
    }
}

.page-template-404-not-found,
.page-template-thank-you {
    .header {
        background: rgba(0, 0, 0, 0.5);
       padding-bottom: 10px;

        &.is-sticky {
            background: transparent;
        }
    }

    &.dark-theme {
        .header {
            background: transparent;

            &.is-sticky {
                background: #ffffffc2;
            }
        }

        .pnf_sec {
            .pnf_cont {
                p {
                    color: #fff;
                }
            }
        }

        .thankyouDiv {
            .thankyouDivInn {
                .wrapper-2 {
                    h2 {
                        color: #00bc6a;
                    }
                    p{
                        color: #fff;
                    }
                }
            }
        }
    }
}

/* thank you page */

.thankyouDiv {
    padding: 120px 0px 80px;
    text-align: center;

    .ThankyouGif {
        margin: 0 auto;
        width: 110px;
        height: auto;

        img {
            width: 100%;
            height: 100%;
        }
    }

    .thankyouDivInn {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        .wrapper-2 {
            padding: 30px;
            text-align: center;
            h2{
                font-family: "Kaushan Script", cursive;
                font-size: 90px;
                letter-spacing: 2px;
                color: #007743;
                margin: 0;
                margin-bottom: 20px;
            }
            p{
                margin: 0;
                font-size: 1.3em;
                color: #aaa;
                letter-spacing: 1px;
            }
            .btnWrap{
                margin-top: 30px;
            }
        }
    }
}

/* responsive */

@media(max-width: 1768px) {



    .secH {
        font-size: 50px;
    }

    .storiesWrap {
        .mobileImg {
            height: 589px;

            img {
                width: 100%;
                height: 100%;
            }
        }

        .storiesSlider {

            & .sliderItem {
                .sliderInner {
                    /* height: 460px; */

                }

                /* &.slick-current.slick-active { */
                &:hover {
                    & .storiesContent {
                        & .storiesTxt {
                            padding-top: 40px;

                            &::before {
                                font-size: 40px;
                                top: -16px;
                            }
                        }

                        .storiesBottom {
                            margin-top: 30px;

                            .storiesImg_2 {
                                width: 50px;
                                height: 50px;
                            }

                            & .storiesInfo {
                                & a {
                                    .playIcon {
                                        width: 24px;
                                        height: 24px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }


}

@media(max-width: 1680px) {

    .aboutSecWrap {
        & .aboutTxt {
            & .textWrap {
                h4 {
                    font-size: 22px;
                }
            }
        }
    }

    .countWrap {
        & .countBox {
            h3 {
                font-size: 44px;
            }
        }
    }
}

@media(max-width: 1600px) {

    p {
        line-height: 24px;
    }

    p,
    ul li,
    ol li {
        font-size: 14px;
    }

    .header {

        &.is-sticky {
            padding-top: 0px;
        }

        .headerRight {
            .menuWrap {
                ul {
                    li {
                        a {
                            font-size: 14px;
                        }

                        .megaMenu {
                            .megaMenuInn {
                                .megaMenuRow {
                                    .megaMenuNewCard {
                                        ul {
                                            li {
                                                padding: 6px 0px;

                                                >a {
                                                    font-size: 18px;
                                                }

                                                ul {
                                                    li {
                                                        a {
                                                            font-size: 14px;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .headingWrap {
        padding-bottom: 15px;
    }

    .secH {
        font-size: 46px;
    }

    .aboutSecWrap {
        & .aboutTxt {
            & .textWrap {
                h4 {
                    font-size: 20px;
                }
            }
        }
    }

    .countWrap {
        & .countBox {
            h3 {
                font-size: 40px;
            }
        }
    }

    .frmWrap {
        margin-bottom: 10px;

        .inputTxt {
            font-size: 14px;
        }
    }

    .mapSec {
        .bookFormInner {
            padding: 0;
        }

        .bookFormWrap {
            padding: 20px;

            h2 {
                font-size: 20px;
                margin-bottom: 10px;
            }
        }
    }

    .storiesWrap {
        .mobileImg {
            height: 532px;
        }

        & .storiesSlider {
            padding-top: 24px;

            & .sliderItem {
                & .sliderInner {
                    /* height: 440px; */
                }

                /* &.slick-current.slick-active { */
                &:hover {
                    .storiesContent {
                        padding: 20px 14px;

                        & .storiesTxt {
                            height: 312px;

                            p {
                                font-size: 16px;
                            }
                        }

                        .storiesBottom {
                            margin-top: 20px;
                        }
                    }
                }
            }
        }

        .slick-arrow {
            bottom: -70px;
        }
    }
}

@media(max-width: 1440px) {
    .header {
        .logoImg {
            width: 180px;
        }

        .headerRight {
            .menuWrap {
                ul {
                    li {
                        .megaMenu {
                            .megaMenuInn {
                                .megaMenuRow {
                                    .megaMenuNewCard {
                                        ul {
                                            li {
                                                >a {
                                                    font-size: 16px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .secH {
        font-size: 44px;
    }

    .aboutSecWrap {
        & .aboutTxt {
            & .textWrap {
                h4 {
                    font-size: 17px;
                }
            }
        }
    }

    .storiesWrap {
        .mobileImg {
            height: 474px;
            width: 18.3%;
        }

        & .storiesSlider {
            padding-top: 22px;

            & .sliderItem {
                & .sliderInner {
                    /* height: 390px; */
                }

                /* &.slick-current.slick-active { */
                &:hover {
                    & .storiesContent {
                        .storiesTxt {
                            height: 270px;

                            p {
                                font-size: 14px;
                            }
                        }

                        & .storiesBottom {
                            margin-top: 10px;

                            .storiesImg_2 {
                                width: 40px;
                                height: 40px;
                            }

                            .storiesInfo {
                                width: calc(100% - 40px);

                                h5 {
                                    font-size: 14px;
                                }
                            }
                        }
                    }

                }
            }
        }
    }

    /* start footer */
    .footerSec {
        padding-bottom: 260px;

        & .footerMain {
            .footerMainInner {
                padding: 60px 30px;
            }
        }
    }

    /* end footer */
}

@media(max-width: 1366px) {
    .mapSec {
        .mapWrap {
            height: 570px;
        }
    }

    .btnWrap {
        & .btnMain {
            &.btnOne {
                span {
                    padding: 6px 20px;
                    padding-right: 50px;

                    &::after {
                        top: 9px;
                        right: 20px;
                        width: 24px;
                        height: 24px;
                    }
                }
            }
        }
    }

    .frmWrap {
        .inputTxt.textArea {
            height: 70px;
            padding-top: 5px;
            line-height: 1.2;
        }

        &.btnWrap {
            margin-bottom: 0;

            .btnMain {
                margin-right: 0 !important;
            }
        }
    }

    .header {
        .headerInner {
            .logoImg {
                width: 180px;
            }
        }

        &.is-sticky {
            padding: 8px 0px;

            .headerInner {
                .logoImg {
                    width: 160px;
                }

                .headerRight {
                    .menuWrap {
                        ul {
                            li {
                                padding: 10px 12px;

                                a {
                                    font-size: 14px;
                                }

                                .megaMenu {
                                    top: calc(100% - 10px);
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .secH {
        font-size: 36px;
    }

    .headingWrap {
        padding-bottom: 14px;
    }

    .storiesWrap {
        .headingWrap {
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .mobileImg {
            height: 412px;
            width: 18.1%;
        }

        & .storiesSlider {
            padding-top: 30px;

            & .sliderItem {
                & .sliderInner {
                    /* height: 330px; */

                }

                /* &.slick-current.slick-active { */
                &:hover {
                    & .storiesContent {
                        .storiesTxt {
                            height: 176px;
                        }
                    }

                }
            }
        }
    }

    .sidebarForm {
        & .sidebarFormTop {
            h5.sideFormTitle {
                font-size: 22px;
            }

            h5.sideFormHead {
                font-size: 16px;
            }
        }

        & .sidebarFormInn {
            & .frmWrap {
                .inputTxt {
                    font-size: 13px;
                }

                &.btnWrap {
                    text-align: center;
                    margin-top: 0;
                    margin-bottom: 0px !important;
                }
            }
        }
    }
}

@media(max-width: 1280px) {
    .header {
        & .headerRight {
            & .menuWrap {
                & ul {
                    & li {
                        padding: 10px 10px;
                    }
                }
            }
        }
    }

    .secH {
        font-size: 30px;
    }

    .btnWrap {
        & .btnMain {
            &.btnOne {
                span {
                    font-size: 16px;
                    padding: 10px 22px;
                    padding-right: 64px;
                }
            }
        }
    }

    .aboutSecWrap {
        .aboutTxt {
            .textWrap {
                h4 {
                    font-size: 16px;
                }

                p {
                    margin-bottom: 10px;
                    line-height: 23px;
                }
            }
        }

        .countWrap {
            padding-top: 40px;
        }
    }


    /* start counter */
    .countWrap {
        & .countBox {
            h3 {
                font-size: 34px;
            }
        }
    }

    /* stop counter */

    /* start stories */
    .storiesWrap {
        & .storiesSlider {
            padding-top: 10px;
        }
    }

    /* stop stories */
}

@media(max-width: 1260px) {
    .storiesWrap {
        & .storiesSlider {
            & .sliderItem {

                /* &.slick-current.slick-active { */
                &:hover {
                    & .storiesContent {
                        & .storiesBottom {
                            flex-direction: column;
                            justify-content: flex-start;
                            align-items: flex-start;

                            .storiesInfo {
                                width: 100%;
                                padding-left: 0;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 1199px) {

    /* start stories */
    .storiesWrap {
        .mobileImg {
            height: 500px;
            width: 30%;
        }

        & .storiesSlider {
            & .sliderItem {
                & .sliderInner {
                    /* height: 406px; */
                }

                /* &.slick-current.slick-active { */
                &:hover {
                    & .storiesContent {
                        & .storiesBottom {
                            flex-direction: row;

                            .storiesInfo {
                                width: calc(100% - 40px);
                                padding-left: 10px;
                            }
                        }
                    }
                }
            }
        }
    }

    /* end stories */

    /* start footer */
    .col_ft_2 {
        width: 20%;
    }

    .col_ft_4,
    .col_ft_3 {
        width: 40%;
    }

    .col_ft_con_3 {
        width: 100%;
        padding-top: 40px;
    }

    /* end footer */
}

@media(max-width: 1120px) {
    .dskMenu_nav {
        display: none;
    }

    .mobMenu_wrap {
        display: block;

        .mobMenu_head {
            border-bottom: 1px solid #FF8531;
            background-color: #fff5ee;

            .mob_menu_tp {
                img {
                    width: 170px;
                }
            }
        }

        &.mob_menu_wrap {
            position: fixed;
            width: 340px;
            height: 100%;
            background-color: #fff5ee;
            backdrop-filter: blur(20px);
            right: 0;
            top: 0;
            transform: translateX(110%);
            transition: all 0.5s;
            z-index: 99999;
            box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
            border-left: 5px solid #FF8531;

            &.active {
                transform: translateX(0);
            }
        }

        .mobCloseMenu {
            position: absolute;
            top: 12px;
            right: 12px;
            border: 1px solid #FF8531;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;

            svg {
                color: #FF8531;
                font-size: 14px;
            }
        }

        .mob_menu_tp {
            padding: 15px;
        }

        .mob_menu_nav {
            max-height: calc(100% - 80px);
            overflow-y: auto;

            ul {
                /* height: 500px; */
                /* overflow-y: auto; */

                li {
                    position: relative;
                    /* margin-bottom: 3px; */

                    a {
                        width: 100%;
                        padding: 10px 25px 10px 15px;
                        color: #FF8531;
                        display: inline-block;
                    }

                    .toggleArrow {
                        position: absolute;
                        top: 10px;
                        right: 10px;
                        transition: .4s;

                        svg {
                            font-size: 12px;
                            color: #FF8531;
                        }

                        &.open {
                            transform: rotate(180deg);
                        }
                    }


                    ul {
                        /* height: 100%; */
                        background-color: #ff934acf;
                        padding-bottom: 5px;
                        /* display: none; */

                        li {
                            &:not(:last-child) {
                                border-bottom: 1px solid #fff;
                            }

                            a {
                                color: #fff;
                            }

                            &.has-submenu {
                                > a {
                                    width: auto;
                                    position: relative;
                                    padding-right: 30px;
                                    display: inline-block;

                                    /* &::after {
                                        content: '\f107';
                                        font-family: fontawesome;
                                        position: absolute;
                                        right: 10px;
                                        top: 10px;
                                        color: #fff;
                                        transition: all 0.5s;
                                    } */
                                }
                                
                                ul {
                                    /* display: none; */
                                    background: #fff5ee;
                                    margin: 0px 10px;

                                    li {
                                        &:not(:last-child) {
                                            border-bottom: 1px solid #FF8531;
                                        }

                                        a {
                                            position: relative;
                                            padding-left: 30px;
                                            color: #FF8531;

                                            &::before {
                                                content: '';
                                                width: 6px;
                                                height: 6px;
                                                background-color: #FF8531;
                                                transform: rotate(45deg);
                                                left: 15px;
                                                top: 15px;
                                                position: absolute;
                                            }
                                        }
                                    }
                                }

                                &.active {
                                    >a {
                                        &::after {
                                            transform: rotate(180deg);
                                        }
                                    }

                                    ul {
                                        display: block;
                                    }
                                }
                            }
                        }
                    }

                    &.has-dropdown-open {
                        .toggleArrow {
                            transform: rotate(180deg);
                        }
                    }


                    .megaMenu{
                        display: none;

                        .megaMenuRow{
                            .megaMenuNewCard{
                                ul{
                                    li{
                                        &.has-submenu{
                                            a{}
                                            .toggleArrowMob{
                                                position: absolute;
                                                right: 10px;
                                                top: 6px;
                                                z-index: 2;
                                                width: 24px;
                                                height: 24px;
                                                display: flex;
                                                align-items: center;
                                                justify-content: center;
                                                background-color: #ffffff60;
                                            }
                                            .toggleArrowMob + ul{
                                                display: none;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }

                }
            }
        }
    }

    .toggle-wrap {
        display: block;
        position: relative;
        cursor: pointer;
        transition: all 0.5s;
        padding-left: 15px;
        padding-right: 15px;
        height: 30px;

        .toggle-bar {
            background-image: url(../images/toggle_menu.png);
            background-repeat: no-repeat;
            background-size: 80%;
            background-position: center;
            display: inline-block;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid #ff9146;
            filter: brightness(0) invert(1);
        }
    }

    .header {
        &.is-sticky {
            .toggle-wrap {
                height: 27px;

                .toggle-bar {
                    width: 27px;
                    height: 27px;
                    filter: brightness(0) saturate(100%) invert(19%) sepia(52%) saturate(10%) hue-rotate(314deg) brightness(75%) contrast(94%);
                }
            }
        }
    }

    .testingWrap {
        height: 400px;

        .testingImg {
            height: 100%;

            figure {
                height: 100%;

                img {
                    height: 100%;
                }
            }
        }

        .testingContentWrap {
            .textWrap {
                overflow-y: auto;
                max-height: 150px;
            }
        }
    }
}

@media(max-width: 1024px) {
    .storiesWrap {
        .storiesSlider {
            .sliderItem {
                .sliderInner {
                    height: 360px !important;

                    .storiesContent {
                        z-index: 1 !important;
                        opacity: 1 !important;
                        height: 100% !important;
                        overflow: hidden !important;
                        border-radius: 15px !important;
                        position: relative !important;
                        visibility: visible !important;
                        background-color: var(--orange-mob-color) !important;

                        .storiesTxt {
                            height: 210px;
                            overflow-y: auto;
                        }

                        .storiesBottom {
                            .storiesImg_2 {
                                width: 60px !important;
                                height: 60px !important;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 991px) {
    .pb_70 {
        padding-bottom: 30px;
    }

    .pt_70 {
        padding-top: 30px;
    }

    .commonSec {
        padding: 50px 0;
    }

    .countWrap {
        padding-top: 40px;
        justify-content: space-between;

        & .countBox {
            width: calc(50% - 10px);
            background-color: #fff;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 8px;

            &:not(:last-child) {
                &::after {
                    content: normal;
                }
            }

            h3 {
                font-size: 30px;
            }
        }
    }

    /* 404 page */

    .pnf_sec {
        .pnf_head {
            h2 {
                font-size: 230px;
            }

            .pnf_img {
                width: 220px;
            }
        }
    }

    /* start stories */
    .storiesWrap {
        .mobileImg {
            height: 452px;
            width: 30%;
        }


        & .storiesSlider {
            & .sliderItem {
                & .sliderInner {
                    /* height: 365px; */
                }
            }
        }
    }

    /* end stories */

    /* start footer */
    .footerSec {
        & .footerMain {
            .footerMainInner {
                padding: 30px 15px 20px;

                & .footerLogo {
                    width: 220px;
                    margin: 0 auto 20px;
                }
            }
        }
    }

    .col_ft_2 {
        width: 100%;
        padding-top: 30px;
    }

    .col_ft_3 {
        padding-top: 0px;
        width: 100%;
    }

    .col_ft_4 {
        width: 100%;
        padding-top: 30px;
    }

    .col_ft_con_3 {
        width: 100%;
        padding-top: 30px;
    }

    .footerSec {
        .footerMainBottom {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 15px 15px;
        }
    }

    .mapSec {
        .bookFormInner {
            width: 430px;
            right: 50px;
        }
    }

    /* end footer */
    .aboutPageSec_1 {
        .row_2 {
            flex-direction: column-reverse;
        }

        .aboutImgWrap {
            margin-bottom: 40px;
        }
    }

    .innerBanner {
        .imgImg {
            height: 380px;

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

    .innerBannerCont {
        padding-top: 10px;
    }

    .listWrap {
        min-width: 100%;
    }

    .caseStudyList {
        .aboutImgWrap {
            margin-top: 20px;
            padding-left: 0px;
        }
    }
}

@media(max-width: 840px) {
    .storiesWrap {
        .mobileImg {
            display: none;
        }

        & .storiesSlider {
            padding-top: 15px;


        }

        .slick-arrow {
            bottom: -88px;
        }
    }

    .mapSec {
        padding: 0 10px 10px;

        &.rad_50 {
            border-radius: 30px !important;
        }

        .bookFormWrap {
            padding: 20px;
        }

        .bookFormInner {
            width: 100%;
            right: 50px;
            position: initial;
            transform: none;
            box-shadow: 0 0 10px 0px #cecece;
        }

        .mapWrap {
            height: 450px;
            overflow: hidden;
            margin-bottom: 20px;
            border-radius: 30px;
            /* border-radius: 0 0 30px 30px; */
        }
    }
}

@media(max-width: 768px) {
    .secH {
        font-size: 34px;
    }
    .headingWrap {
        & .secH {
            &::after {
                left: 0;
                margin: auto;
                width: 160px;
                height: 24px;
            }
        }
    }

    .commonSec {
        padding: 70px 0;
    }

    .aboutSec {
        padding-top: 50px !important;
    }

    .aboutSecWrap {
        padding: 30px 15px 40px;
    }

    /* strat stories */
    .storiesWrap {
        padding: 60px 20px;
    }

    .p_40 {
        padding: 20px;
    }
    /* end stories */

    .countWrapProd {
        &.countWrap {
            & .countBox {
                padding: 30px 10px;
                width: calc(33.33% - 10px);
                h3{
                    span{
                        display: block;
                    }
                }
                &:not(:last-child) {
                    margin-right: 10px;
                }
            }
        }
    }


    /* start footer */
    .footerSec {
        padding-bottom: 180px;

        .footerMain {
            background-color: #0000001c;
        }
    }
    /* end footer */

    .btnWrap {
        & .btnMain {
            &.btnOne {
                background: var(--orange-color);

                span {
                    font-size: 14px;
                    padding: 8px 22px;
                    padding-right: 22px;
                    background: var(--orange-color);

                    &::after {
                        display: none;
                    }
                }
            }
        }
    }

    .commonSec {
        padding: 40px 0;
    }

    .frmWrap {
        &.btnWrap {
            text-align: center;
        }
    }

    /* start get in touch */
    .getInTouchBtn {
        right: -52px;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        padding: 10px 18px;
        height: 65px;

        a {
            font-size: 16px;
        }
    }

    .sidebarForm {
        & .sidebarFormInn {
            & .frmWrap {
                &.btnWrap {
                    & .btnMain {
                        &.btnOne {
                            span {
                                padding-right: 22px
                            }
                        }
                    }
                }
            }
        }
    }

    main {
        overflow: hidden;
    }

    .caseStudyList {
        & .caseStudySec_1 {
            .textWrap {
                text-align: center;
                width: 100%;
            }
        }
    }

    /* end get in touch */

    /* thank you page */

    .thankyouDiv {
        .thankyouDivInn {
            .wrapper-2 {
                h2 {
                    font-size: 60px;
                }
                p {
                    font-size: 18px;
                }
            }
        }
    }

    .countWrapProd {
        &.countWrap {
            padding-top: 0px;
            .countBox {
                .countBoxInner {
                    h3 {
                        margin-right: 0;
                        line-height: 1.3;
                    }
                }
            }
        }
    }
}

@media(max-width: 700px) {
    .storiesWrap {
        & .storiesSlider {
            & .sliderItem {
                margin: 0 auto;

                & .sliderInner {
                    height: auto;
                }

                /* &.slick-current.slick-active { */
                &:hover {
                    & .sliderInner {
                        overflow: visible;
                        height: auto;
                    }

                    & .storiesContent {
                        position: static;

                        .storiesTxt {
                            height: auto;
                        }

                        & .storiesBottom {
                            margin-top: 30px;
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 640px) {
    .frmWrap {
        &.btnWrap {
            text-align: center;
        }
    }

    .bookFormWrap {
        .nice-select:after {
            height: 8px;
            width: 12px;
        }
    }

    /* .headingWrap {
        & .secH {
            &::after {
                left: 0;
                margin: auto;
                width: 160px;
                height: 24px;
            }
        }
    } */

    .countWrapProd {
        &.countWrap {

            .countBox {
                width: 100%;
                margin-right: 0 !important;
            }
        }
    }
}

@media(max-width: 575px) {
    .innerBanner {
        &:after {
            background-image: linear-gradient(180deg, transparent 0 5%, #000000d7 96% 100%);
        }
    }

    .theme-switch .slider {
        width: 70px;
        height: 33px;
        padding: 0 8px;
    }

    .theme-switch .slider::before {
        width: 30px;
        height: 30px;
        left: 2px;
    }

    .theme-switch .slider span {
        img {
            width: 15px;
        }
    }

    .mobMenu_wrap {
        &.mob_menu_wrap {
            width: 100%;

            & .mobMenu_head {
                & .mob_menu_tp {
                    img {
                        width: 156px;
                    }
                }
            }
        }
    }

    .secH {
        font-size: 30px;
    }

    .headingWrap {
        & .secH {
            &::after {
                width: 134px;
            }
        }
    }

    p {
        font-size: 14px;
        /* line-height: 1.5; */
    }

    .rad_50 {
        border-radius: 28px;
    }

    /* start home about section */
    .aboutSecWrap {
        & .aboutTxt {
            text-align: center;

            & .textWrap {
                h4 {
                    font-size: 16px;
                    text-align: center;
                }
            }
        }
    }

    /* end home about section */

    /* start count */
    .countWrap {
        padding-top: 40px;
        justify-content: center;

        & .countBox {
            width: 100%;

            h3 {
                font-size: 26px;
            }

            &:last-child {
                margin-bottom: 0;
            }
        }
    }

    /* end count */

    /* start stories */
    .storiesWrap {
        padding: 40px 15px;
    }

    /* end stories */

    /* start footer */

    .footerSec {
        padding-bottom: 130px;
    }

    .col_ft_4 {
        padding-top: 14px;
    }

    .col_ft_2 {
        padding-top: 20px;
    }

    .col_ft_con_3 {
        padding-top: 14px;
    }

    .footerMainBottom p {
        font-size: 13px;
        line-height: 22px;
        text-align: center;
    }

    /* end footer */

    /* 404 page */

    .pnf_sec {
        .pnf_head {
            h2 {
                font-size: 160px;
            }

            .pnf_img {
                width: 180px;
            }
        }
    }
}

@media(max-width: 480px) {
    .secH {
        font-size: 26px;
    }

    /* start footer */
    .footerSec {
        & .footerMain {
            & .footerMainInner {

                .menuList,
                .servieList {
                    column-count: 1;
                }
            }
        }
    }

    .header {
        padding: 10px 0px;

        .headerInner {
            .logoImg {
                width: 155px;
            }
        }

        &.is-sticky {
            .headerInner {
                .logoImg {
                    width: 140px;
                }
            }
        }
    }


    /* end footer */

    /* thank you page */
    .thankyouDiv {
        .ThankyouGif {
            width: 80px;
        }
        .thankyouDivInn {
            .wrapper-2 {
                h2 {
                    font-size: 40px;
                }
                p{
                    font-size: 16px;
                }
            }
        }
    }
}

@media(max-width: 440px) {
    .productCommon {
        .productBox {
            padding-bottom: 50px;
        }
    }

    /* 404 page */
    .pnf_sec {
        .pnf_head {
            h2 {
                font-size: 130px;
            }

            .pnf_img {
                width: 150px;
            }
        }
        .pnf_cont {
            p {
                font-size: 18px;
            }
        }
    }
}

.has-mask-fill>span {
    position: relative;
    display: inline;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.1);
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-image: linear-gradient(#000, #000);
    background-size: 0% 100%;
}

body.touchOpen {
    overflow: hidden;
    height: 100vh !important;
    /* prevent background scroll */

}

body.touchOpen #smooth-wrapper {
    height: 100vh !important;
    overflow: hidden;
    position: inherit !important;
}

body.touchOpen #smooth-content {
    height: 100vh;
    overflow: hidden !important;
    transform: none !important;
}


.downloadBrochurePopup{
    width: 100%;
    max-width: 500px;
}

.formWrap,
.downloadBrochurePopup{
    h4{
        margin-bottom: 20px;
        text-align: center;
    }
}


.capthaWrap{
    p{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        img{
            width: 80px !important;
        }
        .wpcf7-form-control-wrap{
            padding-left: 10px;
            width: calc(100% - 80px) !important;

            input{
                width: 100%;
                height: 40px;
                padding: 6px 20px;
                font-size: 16px;
                line-height: 25px;
                width: 100%;
                border: none;
                outline: none;
                color: #000;
                font-weight: 500;
                border-radius: 30px;
                background-color: #fff;
            }
        }
    }
}