.bannerWrap {
    height: 100vh;
    padding: 0px;
    overflow: hidden;
    position: relative;

    .bannerBigText {
        position: absolute;
        font-size: 300px;
        font-weight: bold;
        color: #ffffff54;
        left: 50%;
        transform: translateX(-50%);
        font-family: "Unbounded";
        top: 95px;
        letter-spacing: 30px;
        text-transform: uppercase;
        line-height: 1.3;
        transition: 0s ease-out;
        opacity: 0;
    }

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

    .swiper-button-prev {
        width: 50px;
        position: absolute;
        top: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        transform: translateY(-50%) rotate(180deg);
        background-image: unset;
        color: #fff;
    }

    .swiper-button-next {
        width: 50px;
        position: absolute;
        top: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(-50%) rotate(180deg);
        background-image: unset;
        color: #fff;
    }

    .bannerArrow {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        right: 50px;
        top: 50%;
        transform: translate(-50%) rotate(90deg);
        z-index: 8;

        &::before {
            width: 100%;
            height: 100%;
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            font-family: "FontAwesome";
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000;
        }

        & .swiper-button-prev {
            &::before {
                content: "";
                background-image: url(../images/ban_prev_arrow.png);
                background-repeat: no-repeat;
                background-size: contain;
                width: 12px;
                height: 40px;
                transform: rotate(90deg);
                position: absolute;
                top: 4px;
                right: 64px;
            }
        }

        & .swiper-button-next {
            &::before {
                content: "";
                background-image: url(../images/ban_next_arrow.png);
                background-repeat: no-repeat;
                background-size: contain;
                width: 12px;
                height: 40px;
                transform: rotate(90deg);
                position: absolute;
                top: 4px;
                left: 64px;
            }
        }
    }

    .bannerContent {
        position: absolute;
        bottom: 0;
        padding-bottom: 70px;
        width: 100%;
        left: 0;
        z-index: 2;

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

            .bannerText {
                width: 100%;

                .bannerH {
                    font-weight: 300;
                    font-size: 40px;
                    line-height: 1.3;
                    margin-bottom: 30px;
                    opacity: 0;
                    color: #fff;
                    font-family: "Unbounded";
                    font-weight: 300;
                }

                .col_2 {
                    .countBoxInner {
                        justify-content: flex-end;

                        h3 {
                            font-size: 50px;
                            color: #ffffff;
                            text-align: right;
                        }

                        p {
                            font-size: 24px;
                            color: #ffffff;
                            text-align: right;
                        }
                    }
                }
            }

            .bannerVideo {
                width: 50%;
                display: flex;
                justify-content: flex-end;

                .bannerVideoBox {
                    width: 400px;
                    height: 150px;
                    border-radius: 100px;
                    position: relative;
                    overflow: hidden;

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

                    .playIcon {
                        width: 60px;
                        height: 60px;
                        border-radius: 50%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background-color: #fff;
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);

                        img {
                            width: 20px;
                            height: auto;
                        }
                    }
                }
            }
        }
    }

    .bannerImg_1,
    .bannerImg_2 {
        height: 100vh;
        position: relative;

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

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.25);
        }
    }

    .swiper-slide {
        height: 100%;

        &.swiper-slide-active {
            .bannerBigText {
                opacity: 1;
                transition: 1s ease-in;
            }

            & .bannerContent {
                & .bnnerContentInner {
                    & .bannerText {
                        .bannerH {
                            opacity: 1;
                        }
                    }
                }
            }
        }

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

/*===about sec start===*/

.text-reveal {
    font-size: 32px;
    font-weight: 500;
    background-image: linear-gradient(to right, #111 50%, #ccc 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 0.5s ease;
}

/*===our business start===*/

.businessWrap {
    padding: 80px 30px;

    .accordionPro {
        margin-top: 20px;
        /* display: flex;
        max-width: 100%;
        height: 640px;
        overflow: hidden;
        gap: 15px; */

        /* old design */
        /* .accordion-cell {
            flex: 1;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            border-right: 1px solid #ccc;
            transition: flex 0.4s ease;
            overflow: hidden;
            border-radius: 10px;
            background-size: cover !important;
            background-repeat: no-repeat !important;
            background-position: center center !important;
            position: relative;

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

            .businessContent {
                position: absolute;
                right: 30px;
                bottom: 30px;
                border-radius: 20px;
                background-color: #fff;
                padding: 20px;
                width: 45%;
                opacity: 0;
                visibility: hidden;
                transition: 0s ease-out;

                .businessInner {
                    display: flex;
                    justify-content: space-between;

                    .businessTxt {
                        width: calc(100% - 60px);

                        h5 {
                            margin-bottom: 10px;

                            a {
                                color: #00B565;

                            }
                        }
                    }

                    .roundArrowBtn {
                        width: 55px;
                        height: 55px;
                        border-radius: 50%;
                        background-color: var(--orange-color);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        transform: rotate(-45deg);
                    }
                }
            }

            .title_1 {
                display: inline-flex;
                justify-content: center;
                align-items: center;
                width: 150px;
                position: absolute;
                bottom: 20px;
                background-color: #fff;
                border-radius: 10px;
                padding: 10px;
                text-align: center;
                min-height: 80px;
                transition: 0.6s;
                right: 15px;

                h4 {
                    color: #000;
                    font-size: 18px;
                    font-family: 'Public Sans';
                    margin-bottom: 0px;
                }
            }

            &.expanded {
                flex: 5;
                background-color: #fff;

                .title_1 {
                    opacity: 0;
                    visibility: hidden;
                }

                .businessContent {
                    opacity: 1;
                    visibility: visible;
                    transition: 2s ease-in;
                }
            }

            .titleAcc {
                padding: 20px;
                background-color: #d9d9d9;
                text-align: center;
                font-weight: bold;
            }

            .accordion-cell-content {
                display: none;
                padding: 20px;
                overflow-y: auto;
            }

            .accordion-cell.expanded .accordion-cell-content {
                display: block;
            }
        } */

        /* new design */
        .businessSlider {
            padding-bottom: 50px;

            .businessSlide {
                margin: 0px 15px;

                .businessSlideInn {
                    width: 100%;
                    height: 540px;
                    position: relative;
                    background-size: cover !important;
                    background-repeat: no-repeat !important;
                    background-position: center center !important;
                    position: relative;
                    border-radius: 20px;

                    .businessContent {
                        position: absolute;
                        left: 50%;
                        transform: translateX(-50%);
                        bottom: 30px;
                        border-radius: 20px;
                        background-color: #fff;
                        padding: 20px;
                        width: calc(100% - 50px);

                        .businessInner {
                            display: flex;
                            justify-content: space-between;

                            .businessTxt {
                                /* width: calc(100% - 60px); */
                                width: 100%;

                                h5 {
                                    margin-bottom: 15px;
                                    display: flex;
                                    align-items: center;

                                    &>a {
                                        color: #00b565;
                                        display: block;
                                        margin-right: 15px;
                                    }
                                }
                            }

                            .roundArrowBtn {
                                width: 35px;
                                /* height: 50px; */
                                /* border-radius: 50%; */
                                /* background-color: var(--orange-color); */
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                /* transform: rotate(-45deg); */

                                img {
                                    filter: brightness(0.4);
                                }
                            }
                        }
                    }
                }
            }

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

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

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

.mobAccor {
    display: none;
}

/*===industry start===*/
.industrySec {
    .headingWrap {
        position: absolute;
        top: 80px;
        left: 140px;
        z-index: 2;

        .secH {
            color: #fff;
        }
    }

    .industryWrap {
        height: 800px;
        position: relative;
        overflow: hidden;

        .industryContent {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background-repeat: no-repeat !important;
            background-size: 100% 100%;
            display: flex;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: 0.5s;

            &::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                /* background-color: #000000a3; */
                background-color: #000000a8;
                z-index: 1;
            }

            .indusContent {
                padding: 40px;
                width: 66%;
                z-index: 2;

                h4 {
                    color: var(--orange-color);
                    font-size: 24px;
                    font-family: "Unbounded";
                    font-weight: 400;
                }

                p {
                    color: #fff;
                    font-size: 16px;
                }
            }

            &.current {
                opacity: 1;
                visibility: visible;
            }
        }

        .indusTab {
            width: 100%;
            height: auto;
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 2;

            ul {
                display: flex;
                border-top: 1px solid #cecece59;
                flex-wrap: wrap;
                justify-content: flex-start;

                li {
                    width: 100%;
                    min-width: 20%;
                    flex: 0 0 20%;
                    -ms-flex: 0 0 20%;
                    border-right: 1px solid #cecece59;

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

                    a {
                        color: #fff;
                        font-family: "Unbounded";
                        font-size: 18px;
                        font-weight: 300;
                        padding: 16px 15px;
                        align-items: center;
                        display: flex;
                        justify-content: center;
                        height: 100%;
                        text-align: center;

                        &.current {
                            color: var(--orange-color);
                        }
                    }
                }
            }
        }

        .indusImgLayer {
            height: 100%;
            position: absolute;
            top: 0;
            right: 0;

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

.mobIndustry {
    display: none;
}

.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%;
        }
    }
}

.marqueeSec {
    margin-top: 120px;
    padding-top: 30px;
    border-top: 1px solid #cecece;

    .js-marquee-wrapper {
        &::after {
            content: "";
            display: table;
            clear: both;
        }
    }

    .marquee_logo .js-marquee {
        display: flex;
        gap: 80px;
    }

    .countyLogo {
        img {
            transition: 0.5s;
            filter: brightness(0) invert(0.5);
            opacity: 0.5;
        }

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

/*===ourTeamSec start===*/
.ourTeamSec {
    .businessWrap {
        padding: 80px 60px;

        .btnWrap {
            margin-top: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
    }
}

.mobTeamImg {
    display: none;
}

/*==blog start==*/
.blogWrap {
    padding: 80px 60px;

    .btnWrap {
        text-align: right;
        margin-top: 0px;
    }

    .blogSlider {
        margin-top: 10px;
    }

    .blogItem {
        margin: 0 20px;

        &:nth-child(even) {
            display: flex;
            flex-direction: column-reverse;
            flex-wrap: wrap;

            .blogContent {
                padding-top: 20px;

                .blogInfo {
                    margin-bottom: 0px;
                }
            }
        }

        .blogContent {
            a {
                color: #000;
                transition: 0.5s;
            }
        }

        .blogTitle {
            a {
                font-weight: 500;
                font-size: 18px;
                transition: 0.5s;
            }
        }

        .blogInfo {
            padding: 20px 0;
            margin-top: 20px;
            border-top: 1px solid #000;
            border-bottom: 1px solid #000;
            margin-bottom: 30px;

            ul {
                display: flex;
                flex-wrap: wrap;

                li {
                    width: 100%;
                    max-width: 33.33%;
                    flex: 0 0 33.33%;
                    -ms-flex: 0 0 33.33%;
                    padding: 0 15px;
                    border-right: 1px solid #000;
                    text-align: center;

                    p {
                        font-size: 14px;
                    }

                    .blogInfoInner {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                    }

                    &:last-child {
                        border-right: none;
                        padding-right: 0px;
                    }

                    &:first-child {
                        padding-left: 0px;
                    }
                }
            }
        }

        .blogImg {
            height: 280px;
            border-radius: 20px;
            overflow: hidden;

            a {
                display: block;
                position: relative;
                height: 100%;

                &::before {
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    top: 0;
                    left: 0;
                    background-color: #11784499;
                    opacity: 0;
                    transition: 0.5s;
                    content: "";
                }

                &::after {
                    width: 60px;
                    height: 60px;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%) rotate(-45deg);
                    transition: 0.5s;
                    content: "";
                    background: url(../images/right_arrow_icon.png) no-repeat center center var(--orange-color);
                    border-radius: 50%;
                    opacity: 0;
                }

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

        &:hover {
            .blogTitle {
                a {
                    color: #007743;
                    font-weight: 700;
                }
            }

            .infoBlogIcon {
                img {
                    filter: brightness(0) saturate(100%) invert(62%) sepia(88%) saturate(1152%) hue-rotate(329deg) brightness(103%) contrast(101%);
                }
            }

            a {
                &::before {
                    opacity: 1;
                    visibility: visible;
                }

                &::after {
                    opacity: 1;
                }
            }
        }
    }
}

.mobBlogBtn {
    display: none;
}

.dark-theme {
    .bannerWrap {
        & .swiper-slide {
            &::after {
                background-image: linear-gradient(180deg,
                        transparent 0 57%,
                        #002917 96% 100%);
            }
        }
    }

    .industrySec {
        .industryWrap {
            border: 1px solid #ffffff4a;
        }
    }
}

.mobAbImg {
    display: none;
}

@media (max-width: 1768px) {
    .bannerWrap {
        .bannerContent {
            .bnnerContentInner {
                .bannerText {
                    .col_2 {
                        .countBoxInner {
                            padding-right: 30px;
                        }
                    }
                }
            }
        }
    }

    .businessSec {
        .headingWrap {
            padding-bottom: 10px;
        }
    }

    .industrySec {
        .headingWrap {
            left: 55px;
        }

        .industryWrap {
            height: 730px;
        }
    }
}

@media (max-width: 1680px) {
    .bannerWrap {
        .bannerBigText {
            font-size: 220px;
            top: 150px;
        }

        & .bannerContent {
            & .bnnerContentInner {
                & .bannerText {
                    .bannerH {
                        font-size: 50px;
                    }
                }

                & .bannerVideo {
                    .bannerVideoBox {
                        width: 350px;
                        height: 130px;
                    }
                }
            }
        }
    }

    .businessWrap {
        .accordionPro {
            .accordion-cell {
                .businessContent {
                    .businessInner {
                        .roundArrowBtn {
                            width: 50px;
                            height: 50px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1600px) {
    .bannerWrap {
        .bannerBigText {
            top: 142px;
            font-size: 200px;
        }

        & .bannerContent {
            & .bnnerContentInner {
                & .bannerText {

                    .bannerH {
                        font-size: 48px;
                    }
                }
            }
        }
    }

    .businessWrap {
        .accordionPro {
            /* height: 500px; */

            .businessSlider {
                .businessSlide {
                    .businessSlideInn {
                        height: 480px;
                    }
                }
            }

            .accordion-cell {
                .title_1 {
                    right: 10px;
                    min-height: 50px;
                }

                .businessContent {
                    .businessInner {
                        .roundArrowBtn {
                            width: 40px;
                            height: 40px;
                            padding: 5px;
                        }
                    }
                }
            }
        }
    }

    .industrySec {
        .headingWrap {
            top: 60px;
            left: 64px;
        }

        .industryWrap {
            height: 650px;

            .industryContent {
                .indusContent {

                    /* width: 50%; */
                }
            }
        }
    }

    .storiesWrap {
        .mobileImg {
            left: 50.1%;
        }
    }
}

@media (max-width: 1440px) {
    .bannerWrap {
        .bannerContent {
            .bnnerContentInner {
                .bannerText {
                    .bannerH {
                        font-size: 44px;
                        top: 112px;
                    }

                    .col_2 {
                        .countBoxInner {
                            h3 {
                                font-size: 44px;
                            }
                        }
                    }
                }
            }
        }
    }

    .marqueeSec {
        margin-top: 190px;
    }

    /* start blog */
    .blogWrap {
        & .blogItem {
            & .blogInfo {
                padding: 10px 0;
                margin-top: 10px;
                margin-bottom: 20px;

                & ul {
                    li {
                        padding: 0 10px;

                        .blogInfoInner {
                            gap: 0;

                            .infoBlogIcon {
                                width: 26px;
                            }

                            p {
                                width: calc(100% - 26px);
                                padding-left: 3px;
                            }
                        }
                    }
                }
            }
        }
    }

    /* end blog */
}

@media (max-width: 1366px) {
    .bannerWrap {
        .bannerBigText {
            font-size: 158px;
            top: 100px;
        }

        & .bannerContent {
            & .bnnerContentInner {
                & .bannerText {
                    .bannerH {
                        font-size: 40px;
                    }

                    .col_2 {
                        .countBoxInner {
                            h3 {
                                font-size: 40px;
                            }

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

                & .bannerVideo {
                    .bannerVideoBox {
                        width: 324px;
                        height: 100px;

                        .playIcon {
                            width: 48px;
                            height: 48px;
                        }
                    }
                }
            }
        }
    }

    .industrySec {
        .headingWrap {
            .secH {
                &::after {
                    left: 0;
                }
            }
        }

        .industryWrap {
            height: 520px;

            .indusTab {
                ul {
                    li {
                        a {
                            font-size: 16px;
                            padding: 12px 12px;
                        }
                    }
                }
            }

            .industryContent {
                .indusContent {
                    width: 85%;
                    padding: 20px 40px;
                }
            }
        }
    }

    .businessWrap {
        .accordionPro {

            /* height: 410px; */
            .businessSlider {
                .businessSlide {
                    .businessSlideInn {
                        height: 380px;

                        .businessContent {
                            bottom: 15px;
                            width: calc(100% - 30px);

                            .businessInner {
                                .roundArrowBtn {
                                    width: 45px;
                                    height: 45px;
                                    padding: 5px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .bannerWrap {
        .bannerBigText {
            font-size: 130px;
            top: 130px;
        }

        & .bannerContent {
            & .bnnerContentInner {
                & .bannerText {
                    .bannerH {
                        font-size: 36px;
                    }

                    .col_2 {
                        .countBoxInner {
                            h3 {
                                font-size: 36px;
                            }

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

                & .bannerVideo {
                    & .bannerVideoBox {
                        .playIcon {
                            width: 42px;
                            height: 42px;

                            img {
                                width: 18px;
                            }
                        }
                    }
                }
            }
        }
    }

    .industrySec {
        .headingWrap {
            .secH {
                font-size: 30px;

                &::after {
                    width: 150px;
                }
            }
        }
    }

    /* start business */
    .businessWrap {
        .accordionPro {
            .businessSlider {
                .businessSlide {
                    .businessSlideInn {
                        height: 340px;
                    }
                }
            }
        }
    }

    /* end business */

    /* start blog */
    .blogWrap {
        & .blogItem {
            & .blogInfo {
                & ul {
                    flex-direction: column;

                    li {
                        width: 100%;
                        max-width: 100%;
                        flex: 0 0 100%;
                        -ms-flex: 0 0 100%;
                        padding: 0;
                        border-right: unset;

                        &:not(:last-child) {
                            border-bottom: 1px solid #00000063;
                            padding-bottom: 5px;
                        }

                        &:not(:first-child) {
                            padding-top: 5px;
                        }

                        & .blogInfoInner {
                            p {
                                text-align: left;
                            }
                        }
                    }
                }
            }
        }

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

    /* end blog */
}

@media (max-width: 1240px) {
    .industrySec {
        .industryWrap {
            .industryContent {
                .indusContent {
                    width: 90%;
                }
            }
        }
    }
}

@media (max-width: 1199px) {
    .bannerWrap {
        & .bannerContent {
            & .bnnerContentInner {
                .bannerText {
                    .col_1 {
                        width: 60%;
                    }

                    .col_2 {
                        width: 40%;
                    }
                }

                .bannerVideo {
                    width: 40%;
                }
            }
        }
    }

    .businessWrap {
        & .accordionPro {
            & .accordion-cell {
                .title_1 {
                    right: 10px;
                }
            }
        }
    }
}

@media (max-width: 1140px) {
    .businessWrap {
        & .accordionPro {
            & .accordion-cell {
                .title_1 {
                    right: 6px;
                }
            }
        }
    }

    .industrySec {
        & .industryWrap {
            & .industryContent {
                .indusContent {
                    width: 100%;
                }
            }

            & .indusTab {
                & ul {
                    & li {
                        a {
                            padding: 7px 12px;
                        }
                    }
                }
            }
        }
    }
}

@media (min-width: 1025px) {
    .businessWrap {
        .accordionPro {
            .businessSlider {
                .businessSlide {
                    .businessSlideInn {
                        .businessContent {
                            height: 200px;
                            bottom: -130px;
                            transition: 0.6s;
                        }

                        &:hover {
                            .businessContent {
                                bottom: 30px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    .businessWrap {
        & .accordionPro {
            & .accordion-cell {
                .businessContent {
                    width: 90%;
                    right: 18px;
                    bottom: 18px;
                }
            }
        }
    }

    .industrySec {
        .headingWrap {
            top: 40px;
            left: 55px;
        }

        .industryWrap {
            .industryContent {
                .indusContent {
                    /* width: 86%; */
                    position: absolute;
                    top: 74px;

                    h4 {
                        font-size: 24px;
                    }
                }
            }
        }
    }

    /* start our team */
    .ourTeamSec {
        .businessWrap {
            padding: 60px 20px;
        }
    }

    /* end our team */

    /* start blog */
    .blogSec {
        .blogWrap {
            padding: 60px 54px;
        }
    }

    /* end blog */
}

@media (max-width: 991px) {
    .bannerWrap {
        .bannerBigText {
            font-size: 100px;
            top: 240px;
        }

        & .bannerContent {
            & .bnnerContentInner {
                .bannerText {

                    .bannerH {
                        font-size: 30px;
                    }
                }

                .bannerVideo {
                    width: 30%;
                }
            }
        }
    }

    .mobAbImg {
        display: block;
        margin-bottom: 15px;

        .img_1 {
            img {
                width: 100%;
                border-radius: 15px;
            }
        }
    }

    .dskAbImg {
        display: none;
    }

    /* home business section */
    .mobAccor {
        display: block;
    }

    .businessWrap {
        padding: 80px 10px;

        .dskAccor {
            display: none;
        }

        & .mobAccordionPro {
            height: auto;

            & .mobAccordion-cell {
                &:not(:last-child) {
                    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
                }

                .mobTitle_1 {
                    padding: 30px 25px 30px;
                    position: relative;

                    &::after {
                        content: "";
                        position: absolute;
                        top: 25px;
                        right: 18px;
                        width: 28px;
                        height: 28px;
                        border-radius: 50%;
                        background-color: #f86602;
                    }

                    &::before {
                        content: "\2b";
                        position: absolute;
                        top: 26px;
                        right: 25px;
                        font-family: fontawesome;
                        font-size: 16px;
                        color: #fff;
                        z-index: 1;
                    }

                    h5 {
                        font-size: 20px;
                        font-weight: 700;
                        color: #000;
                        font-family: "Public Sans";
                        margin-bottom: 0px;
                    }
                }

                .mobBusinessContent {
                    display: none;
                    padding: 0 14px 20px 14px;
                    background-color: #fff;
                    width: 98%;
                    border-radius: 0 0 20px 20px;
                    box-shadow: 4px 12px 13px 0px #00774329;
                    margin: 0 auto 15px;

                    .mobBusinessInner {
                        .mobBusinessTxt {
                            .mobBusImg {
                                margin-bottom: 15px;
                                position: relative;
                                border-radius: 20px;
                                width: 100%;

                                img {
                                    border-radius: 20px;
                                    width: 100%;
                                }

                                .mobRoundArrowBtn {
                                    width: 44px;
                                    height: 44px;
                                    border-radius: 50%;
                                    background-color: var(--orange-color);
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    transform: rotate(-45deg);
                                    position: absolute;
                                    bottom: 10px;
                                    right: 12px;
                                    padding: 5px;
                                }
                            }
                        }
                    }
                }

                &.active {
                    .mobTitle_1 {
                        width: 98%;
                        margin: 15px auto 0;
                        background-color: #fff;
                        padding: 20px 48px 20px 20px;
                        border-radius: 20px 20px 0 0;
                        box-shadow: 0px -8px 5px 0px #00774329;

                        h5 {
                            font-size: 20px;
                            color: #007743;
                        }

                        &::after {
                            top: 18px;
                            right: 15px;
                        }

                        &::before {
                            content: "\f068";
                            position: absolute;
                            top: 20px;
                            right: 22px;
                            font-family: fontawesome;
                            font-size: 16px;
                            color: #fff;
                        }
                    }

                    /* .mobBusinessContent {
                        display: block;
                    } */
                }
            }
        }
    }

    /* end business section */

    /* start industry section */
    .mobIndustry {
        display: block;
    }

    .dskIndustry {
        display: none;
    }

    .industrySec {
        & .headingWrap {
            top: 47px;

            .secH {
                color: #f86602;
                z-index: 5;
            }
        }
    }

    .mobIndustryWrap {
        background-color: #fff5ee;
        border-radius: 50px;
        padding: 110px 20px 80px;

        .eachIndustry {
            &:not(:last-child) {
                border-bottom: 1px solid rgba(0, 0, 0, 0.25);
            }

            .mobIndustryTitleInn {
                h4 {
                    font-size: 20px;
                    font-weight: 700;
                    color: #000;
                    font-family: "Public Sans";
                    margin-bottom: 0px;
                    position: relative;
                    padding: 14px 25px 14px;

                    &::before {
                        content: "\2b";
                        position: absolute;
                        top: 10px;
                        right: 12px;
                        font-family: fontawesome;
                        font-size: 16px;
                        color: #fff;
                        z-index: 9;
                        width: 28px;
                        height: 28px;
                        background-color: #f86602;
                        display: flex;
                        align-items: center;
                        border-radius: 50%;
                        justify-content: center;
                        align-items: center;
                    }
                }
            }

            .mobIndustryInn {
                border-radius: 20px;
                background-repeat: no-repeat;
                background-size: cover;
                width: 100%;
                height: 100%;
                position: relative;
                margin: 15px 0;
                background-color: transparent;

                &::after {
                    content: normal;
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: #00000091;
                    z-index: 1;
                    border-radius: 20px;
                }

                .mobIndusImgLayer {
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 2;
                    opacity: 0;
                    visibility: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 20px;
                    }
                }

                .mobIndusContentInn {
                    position: relative;
                    z-index: 3;
                }

                .mobIndustrycont {
                    display: none;
                    position: relative;

                    .mobRoundArrowBtn {
                        display: none !important;
                        width: 44px;
                        height: 44px;
                        border-radius: 50%;
                        background-color: var(--orange-color);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        transform: rotate(-45deg);
                        position: absolute;
                        bottom: -28px;
                        right: 8px;

                        img {
                            border-radius: 20px;
                            width: 30px;
                            height: auto;
                        }
                    }
                }

                p {
                    color: #fff;
                }
            }

            &.active {
                .mobIndustryInn {
                    background-image: var(--background-image);

                    &::after {
                        content: "";
                    }

                    .mobIndusContentInn {
                        padding: 0 14px 20px 14px;
                    }
                }

                .mobIndusImgLayer {
                    opacity: 1;
                    visibility: visible;
                }

                .mobIndustryTitleInn {
                    h4 {
                        font-size: 20px;
                        font-weight: 700;
                        font-family: "Public Sans";
                        margin-bottom: 0px;
                        position: relative;
                        padding: 30px 44px 14px 0;
                        color: #ff8f43;

                        &::before {
                            content: "\f068";
                            position: absolute;
                            top: 32px;
                            right: 10px;
                            font-family: fontawesome;
                            font-size: 16px;
                            color: #fff;
                            z-index: 9;
                        }

                        /* &::after {
                            content: "";
                            position: absolute;
                            top: 30px;
                            right: 15px;
                            width: 28px;
                            height: 28px;
                            border-radius: 50%;
                            background-color: #F86602;
                        } */
                    }
                }
            }
        }
    }

    /* end industry section */

    /* start stories */
    .storiesSec {
        .storiesWrap {
            background-color: #eafbf4;
        }
    }

    /* end stories */

    /* start team */
    .ourTeamSec {
        .businessWrap {
            background-color: #fff5ee;

            .aboutImgWrap {
                transform: unset !important;
                margin-top: 30px;
                padding-left: 0;

                figure {
                    img {
                        width: 100%;
                    }
                }

                .overlayImg {
                    img {
                        width: 100%;
                    }
                }
            }
        }
    }

    .mobTeamImg {
        display: block;
    }

    .dskTeamImg {
        display: none;
    }

    /* end team */

    /* start blog */

    .blogSec {
        .blogWrap {
            background-color: #eafbf4;
        }
    }

    /* end blog */
}

@media (max-width: 840px) {
    .marqueeSec {
        margin-top: 140px;
    }

    .bannerWrap {
        .bannerContent {
            .bnnerContentInner {
                .bannerText {
                    .bannerH {
                        br {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .headingWrap {
        text-align: center;
    }

    .secH {
        text-align: center;
    }

    .bannerWrap {
        height: 700px;

        .bannerImg_1,
        .bannerImg_2 {
            height: 700px;
        }

        .bannerBigText {
            font-size: 90px;
            top: 195px;
        }

        .bannerContent {
            padding-bottom: 100px;

            .bnnerContentInner {
                .bannerText {
                    width: 100%;
                    text-align: center;

                    .btnWrap {
                        .btnMain {
                            margin-right: 0;
                        }
                    }

                    .bannerH {
                        font-size: 28px;
                    }

                    .bannerTextInner {
                        flex-direction: column-reverse;

                        .col_1 {
                            width: 100%;
                        }

                        .col_2 {
                            width: 100%;
                            margin-bottom: 15px;

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

                                p {
                                    font-size: 20px;
                                    text-align: center;
                                }
                            }
                        }
                    }
                }

                .bannerVideo {
                    display: none;
                }
            }
        }

        .bannerArrow {
            top: auto;
            right: auto;
            bottom: 80px;
            left: 50%;
            transform: translate(0%, -50%) rotate(180deg);
        }

        .swiper-button-prev,
        .swiper-button-next {
            top: auto;
            transform: translateY(-0%) rotate(180deg);
        }

        & .swiper-slide {
            &::after {
                /* background-image: linear-gradient(180deg, transparent 0 57%, #ffffff 96% 100%); */
                background-image: linear-gradient(180deg,
                        rgba(0, 0, 0, 0) 75%,
                        rgba(255, 255, 255, 1) 100%);
            }
        }
    }

    /* start industry */
    .industrySec {
        .headingWrap {
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
        }
    }

    /* end industry */

    /* start blog */
    .blogSec {
        .headingWrap {
            text-align: left;
        }
    }

    /* end blog */
}

@media (max-width: 767px) {

    /* start blog */
    .mobBlogBtn {
        display: block;
        margin-top: 15px;

        .btnWrap {
            text-align: center;

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

    .dskBlogBtn {
        display: none;
    }

    .blogSec {
        .headingWrap {
            text-align: center;
        }
    }

    .blogWrap {
        padding: 60px 45px;

        .blogSlider {
            margin-top: 10px;

            .slick-arrow {
                top: auto;
                transform: unset;
                bottom: 0;
                z-index: 9;

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

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

        & .blogItem {
            margin: 0 20px 70px;
            display: flex;
            flex-direction: column-reverse;
            flex-wrap: wrap;

            .blogImg {
                height: auto;
            }

            .blogContent {
                padding-top: 20px;
            }

            & .blogTitle {
                a {
                    color: #007743;
                    font-weight: 700;
                }
            }

            & .infoBlogIcon {
                img {
                    filter: brightness(0) saturate(100%) invert(62%) sepia(88%) saturate(1152%) hue-rotate(329deg) brightness(103%) contrast(101%);
                }
            }

            & a {
                &::before {
                    opacity: 1 !important;
                    visibility: visible;
                }

                &::after {
                    opacity: 1 !important;
                }
            }
        }
    }

    /* end blog */
}

@media (max-width: 575px) {
    .bannerWrap {
        .bannerBigText {
            font-size: 80px;
            letter-spacing: 15px;
            top: 195px;
        }

        & .bannerArrow {
            & .swiper-button-prev {
                &::before {
                    top: 1px;
                }
            }

            & .swiper-button-next {
                &::before {
                    top: 1px;
                }
            }
        }
    }

    .bannerWrap {
        .bannerBigText {
            top: 200px;
        }

        & .bannerContent {
            & .bnnerContentInner {
                & .bannerText {
                    .bannerH {
                        font-size: 24px;
                    }
                }
            }
        }
    }

    .toggle-wrap {
        padding-right: 0;
    }

    /* start about company */
    .mobAbImg {
        display: none;
    }

    .aboutSec {
        .btnWrap {
            text-align: center;
            margin-top: 15px;

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

    /* end about company */

    /* start business section */
    .businessWrap {
        padding: 40px 10px;

        .mobAccordionPro {
            .mobAccordion-cell {
                .mobTitle_1 {
                    padding: 20px 25px 20px;

                    h5 {
                        font-size: 17px;
                    }

                    &::after {
                        top: 18px;
                    }

                    &::before {
                        top: 20px;
                    }
                }

                .mobBusinessContent {
                    .mobBusinessInner {
                        .mobBusinessTxt {
                            .mobBusImg {
                                .mobRoundArrowBtn {
                                    width: 32px;
                                    height: 32px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* end business section */

    /* industry section */
    .mobIndustryWrap {
        padding: 96px 20px 30px;

        & .eachIndustry {
            .mobIndustryInn {
                margin: 10px 0;

                & .mobIndustrycont {
                    .mobRoundArrowBtn {
                        width: 35px;
                        height: 35px;
                        padding: 5px;
                    }
                }
            }

            .mobIndustryTitleInn {
                h4 {
                    padding: 10px 50px 10px 10px;
                    font-size: 17px;
                }
            }
        }
    }

    /* end industry section */

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

    /* end stories */

    /* start marquee */
    .marqueeSec {
        padding-top: 14px;
    }

    /* end marquee */
    /* start blog */
    .blogSec {
        .blogWrap {
            padding: 40px 44px;
        }
    }

    /* end blog */
}

@media (max-width: 500px) {
    .ourTeamSec {
        & .businessWrap {
            .btnWrap {
                flex-direction: column;
            }
        }
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0px;

        .logoImg {
            img {
                width: 140px;
            }
        }
    }

    .theme-switch .slider {
        width: 68px;
        height: 30px;
        padding: 0 7px;
    }

    .theme-switch .slider::before {
        width: 26px;
        height: 26px;
    }

    .bannerWrap {
        .bannerBigText {
            font-size: 60px;
            top: 220px;
        }

        & .bannerContent {
            & .bnnerContentInner {
                & .bannerText {
                    .bannerH {
                        font-size: 22px;
                    }
                }
            }
        }

        & .bannerArrow {
            & .swiper-button-prev {
                span {
                    font-size: 16px;
                }
            }

            & .swiper-button-next {
                span {
                    font-size: 16px;
                }
            }
        }
    }

    /* start blog */
    .blogSec {
        .blogWrap {
            padding: 40px 0px;
        }
    }

    /* end blog */
}

@media (max-width: 420px) {

    /* start blog */
    .blogSec {
        .blogWrap {
            padding: 40px 15px;
        }
    }

    /* end blog */
}

.home {
    .wpcf7-spinner {
        position: absolute;
        top: 15px;
        right: 180px;
    }
}

.mobAccContBus {
    .roundArrowBtn {
        a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #f86602;
            padding: 7px;

            img {
                transform: rotate(-40deg);
            }
        }
    }
}