/* banner */
.bannerSecWrap {
    padding: 15px 15px 0px;

    .bannerSec {
        width: 100%;
        overflow: hidden;
        position: relative;
        border-radius: 25px;
        height: calc(100vh - 30px);

        &.mobView {
            display: none;
            height: auto;

            .banSlider {
                width: 100%;
                height: auto;

                .banSlide {
                    .banSlideDiv {
                        position: relative;
                        height: 700px;

                        .banImg {
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;

                            img,
                            video {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }

                            &::after {
                                content: '';
                                position: absolute;
                                left: 0;
                                top: 0;
                                width: 100%;
                                height: 100%;
                                background: rgba(0, 0, 0, 0.6);
                                z-index: 1;
                            }
                        }

                        .banSlideCont {
                            width: 100%;
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%, -50%);
                            z-index: 2;
                            text-align: center;
                            padding: 0px 20px;

                            .banText {
                                margin-bottom: 40px;

                                .banSlideName {
                                    font-size: 50px;
                                    text-align: center;
                                    color: #fff;
                                    margin-bottom: 15px;
                                }

                                .banHead {
                                    color: #fff;
                                    display: block;
                                    font-size: 25px;
                                    text-align: center;
                                    margin-bottom: 25px;
                                    font-family: "Roboto", sans-serif;
                                }

                                img {
                                    width: 100%;
                                    max-width: 450px;
                                    height: auto;
                                    margin: 0px auto;
                                }
                            }

                            .banBtnWrap {
                                margin-bottom: 0;

                                .btnOne {
                                    display: inline-flex;

                                    span.btnTxt {
                                        color: #FFF;
                                        text-align: center;
                                        font-size: 16px;
                                        font-style: normal;
                                        font-weight: 300;
                                        letter-spacing: 2.7px;
                                        text-transform: uppercase;
                                        padding: 8px 30px;
                                        border: 1px solid #fff;
                                        border-radius: 50px;
                                        margin-right: 12px;
                                        line-height: 35px;
                                        transition: all 0.5s;
                                    }

                                    span.arrow {
                                        width: 55px;
                                        height: 55px;
                                        border-radius: 50%;
                                        background-color: transparent;
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        color: #fff;
                                        margin-left: -2px;
                                        border: 1px solid #fff;
                                        transition: 0.5s;
                                    }
                                }

                                &:hover {
                                    .btnOne {
                                        span.btnTxt {
                                            background-color: #008FFF;
                                            border-color: transparent;
                                        }

                                        span.arrow {
                                            background-color: #008FFF;
                                            border-color: transparent;
                                            transform: rotate(45deg);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                .slick-dots {
                    position: absolute;
                    bottom: 40px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    gap: 12px;
                    left: 50%;
                    transform: translateX(-50%);

                    li {
                        font-size: 0;
                        width: 10px;
                        height: 10px;
                        background: #fff;
                        border-radius: 50%;
                        transition: all 0.5s;

                        button {
                            display: none;
                        }

                        &.slick-active {
                            background-color: #008FFF;
                            width: 40px;
                            /* height: 3px; */
                            border-radius: 5px;
                        }
                    }
                }
            }
        }

        .banTabWrap {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;

            .banTab {
                display: flex;
                flex-direction: column;
                gap: 40px;

                li {
                    color: rgba(255, 255, 255, 0.50);
                    text-align: right;
                    font-size: 22px;
                    font-weight: 400;
                    cursor: pointer;
                    position: relative;
                    padding-bottom: 10px;
                    display: inline-block;

                    &::after {
                        content: '';
                        position: absolute;
                        right: 0;
                        bottom: 0;
                        height: 1px;
                        width: 90%;
                        background: rgba(255, 255, 255, 0.50);
                    }

                    &.active {
                        color: #FFF;
                    }
                }
            }
        }

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

            .tab_content {
                height: 100%;
                display: none;

                &.active {
                    display: block;
                }

                .banContInn {
                    height: 100%;
                    position: relative;

                    /* &::after {
                        content: '';
                        position: absolute;
                        background-image: url(../images/common/banner-bg.png);
                        background-repeat: no-repeat;
                        background-size: 100% 100%;
                        width: 55%;
                        height: 100%;
                        right: 0;
                        top: 0;
                        bottom: 0;
                        z-index: 2;
                    } */

                    .mobView {
                        display: none;
                    }

                    .banAbsDiv {
                        width: 100%;
                        height: 100%;
                        position: relative;

                        &::before {
                            content: '';
                            position: absolute;
                            left: 0;
                            top: 0;
                            width: 100%;
                            height: 100%;
                            background: linear-gradient(270deg, #000 1.82%, rgba(0, 0, 0, 0.00) 100%);
                            z-index: 2;
                        }

                        .banImg {
                            width: 100%;
                            height: 100vh;

                            img,
                            video {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }
                        }
                    }

                    .banFlexCont {
                        width: 100%;
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        display: flex;
                        justify-content: space-between;
                        align-items: flex-end;
                        z-index: 2;
                        padding: 0px 60px;
                        z-index: 5;

                        .banText {
                            width: 1000px;

                            .banHead {
                                color: #FFF;
                                display: block;
                                font-size: 70px;
                                font-weight: 400;
                                line-height: 83px;
                                margin-bottom: 20px;
                                font-family: "Roboto", sans-serif;
                            }

                            img {
                                width: 100%;
                                max-width: 800px;
                                height: auto;
                            }
                        }

                        .banBtnWrap {
                            margin-bottom: 30px;

                            .btnOne {
                                display: inline-flex;

                                span.btnTxt {
                                    color: #FFF;
                                    text-align: center;
                                    font-size: 18px;
                                    font-style: normal;
                                    font-weight: 300;
                                    letter-spacing: 2.7px;
                                    text-transform: uppercase;
                                    padding: 8px 30px;
                                    border: 1px solid #fff;
                                    border-radius: 50px;
                                    margin-right: 12px;
                                    line-height: 45px;
                                    transition: all 0.5s;
                                }

                                span.arrow {
                                    width: 65px;
                                    height: 65px;
                                    border-radius: 50%;
                                    background-color: transparent;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    color: #fff;
                                    margin-left: -2px;
                                    border: 1px solid #fff;
                                    transition: 0.5s;
                                }
                            }

                            &:hover {
                                .btnOne {
                                    span.btnTxt {
                                        background-color: #008FFF;
                                        border-color: transparent;
                                    }

                                    span.arrow {
                                        background-color: #008FFF;
                                        border-color: transparent;
                                        transform: rotate(45deg);
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

/* about us */
.aboutSec {
    .aboutLeftCont {
        position: sticky;
        top: 100px;
    }

    .aboutImg {
        width: 100%;
        height: 100%;

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

    .aboutRightCont {
        position: sticky;
        top: 100px;

        .aboutRightHead {
            color: #000;
            font-family: "Poppins", sans-serif;
            font-size: 40px;
            font-weight: 400;
            line-height: 52px;
            margin-bottom: 10px;
        }
    }
}

/* products section */
.productSec {
    overflow: hidden;

    .prodTabWrap {

        .tab_content,
        .subTabContentBox,
        .sub_tab_content,
        .subTabList {
            display: none;
        }

        .sub_tab_content {
            .accTrigger {
                display: none;
                cursor: pointer;
                font-size: 20px;
                transition: 0.3s;
                overflow: hidden;
                margin-bottom: 0;
                position: relative;
                border-radius: 10px;
                padding: 15px 60px 15px 15px;
                border: 1px solid #00000025;

                &:after {
                    width: 32px;
                    height: 32px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    right: 15px;
                    font-size: 32px;
                    top: 12px;
                    position: absolute;
                    transition: 0.6s;
                    font-family: fontawesome;
                    font-weight: 900;
                    -moz-osx-font-smoothing: grayscale;
                    -webkit-font-smoothing: antialiased;
                    display: var(--fa-display, inline-block);
                    font-style: normal;
                    font-variant: normal;
                    line-height: 1;
                    text-rendering: auto;
                    content: "\f055";
                    color: #0C0056;
                }
            }
        }

        .tab_content.active,
        .subTabContentBox.active,
        .sub_tab_content.active,
        .tab_content.active .subTabList {
            display: block;
        }

        .prodTabWrapTop {
            width: 100%;
            max-width: 800px;
            position: relative;
            /* margin: -60px auto 0px auto; */
            margin: 0px auto 0px auto;
            border-radius: 15px;
            background: #FFF;
            box-shadow: 0 4px 43px 7px rgba(0, 71, 126, 0.17);
            padding: 30px;

            .prodList {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-bottom: 30px;

                li {
                    color: #000;
                    text-align: center;
                    font-size: 30px;
                    font-weight: 400;
                    line-height: 20px;
                    position: relative;
                    background: transparent;
                    border-radius: 0;
                    padding: 0;
                    padding: 0px 50px 15px;
                    cursor: pointer;
                    border: none;

                    &::after {
                        content: '';
                        position: absolute;
                        width: calc(100% - 100px);
                        height: 4px;
                        background: #BABABA;
                        bottom: 0;
                        left: 50%;
                        transform: translateX(-50%);
                        transition: all 0.5s;
                    }

                    &:not(:last-child) {
                        &::before {
                            content: '';
                            position: absolute;
                            right: 0;
                            top: 0;
                            width: 1px;
                            height: 100%;
                            background-color: rgba(0, 0, 0, 0.30);
                        }
                    }

                    &.active {
                        &::after {
                            background-color: #008FFF;
                        }
                    }
                }
            }

            .prodContBox {
                .tab_content {
                    .prodSubTabWrap {
                        .subTabList {
                            display: none;
                            justify-content: center;
                            align-items: center;
                            gap: 30px;

                            li {
                                width: 160px;
                                height: 42px;
                                border-radius: 50px;
                                background: transparent;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                text-align: center;
                                color: #4B4B4B;
                                text-align: center;
                                font-size: 18px;
                                font-weight: 400;
                                border: 1px solid rgba(0, 0, 0, 0.25);
                                transition: all 0.5s;
                                padding: 5px 8px;
                                cursor: pointer;

                                &.active {
                                    background: #FFB600;
                                    border-color: transparent;
                                    color: #000;
                                }
                            }
                        }
                    }

                    &.active {
                        .prodSubTabWrap {
                            .subTabList {
                                display: flex;
                            }
                        }
                    }
                }

            }
        }

        .prodTabWrapBtm {
            margin-top: 60px;
        }
    }

    /* product card */

    .prodSlide {
        margin: 0px 15px;
        opacity: 0.5;

        .productCard {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            background: #FFF;
            border: 2px solid #FFF;
            padding: 80px 30px 30px;
            transition: all 0.5s;
            position: relative;

            .prodCardBrandImg {
                width: 110px;
                height: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 5px;
                /* background-color: #fff; */
                position: absolute;
                top: 14px;
                left: 14px;
                padding: 8px;
                z-index: 9;

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

            .prodCardImg {
                width: 100%;
                height: 300px;
                position: relative;
                margin-bottom: 12px;

                &::after {
                    content: '';
                    position: absolute;
                    background-image: url(../images/Home/product-bg.png);
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: center center;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    right: 0;
                    right: 0;
                    opacity: 0;
                    transition: all 0.5s;
                    z-index: 1;
                }

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    z-index: 2;
                    position: relative;
                }
            }

            .prodCardTxt {
                .prodCardHead {
                    color: #4B4B4B;
                    font-size: 38px;
                    font-weight: 300;
                    margin-bottom: 10px;
                    line-height: 1.2;
                }

                .prodCardTxtInn {
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    height: 55px;
                    margin-bottom: 12px;
                }

                .prodReadBtn {
                    min-width: 130px;
                    opacity: 0;
                    transition: all 0.5s;
                    margin-left: auto;
                    display: flex;
                    justify-content: flex-end;

                    a {
                        color: #FFB600;
                        font-size: 18px;
                        font-weight: 500;
                        position: relative;
                        display: block;
                        line-height: 1.2;
                        padding-right: 30px;

                        &::after {
                            content: '\f061';
                            font-family: fontawesome;
                            position: absolute;
                            right: 0;
                            top: 0;
                            color: #ffba0e;
                            font-size: 18px;
                        }
                    }
                }
            }
        }


        &.slick-active,
        &.slick-prev-slide,
        &.slick-next-slide {
            opacity: 1;

            &:hover {
                .productCard {
                    border-color: #008FFF;
                    /* background-color: #0C0056; */
                    background-color: #ffffff;

                    .prodCardImg {
                        &::after {
                            opacity: 0.1;
                        }
                    }

                    .prodCardTxt {
                        .prodCardHead {
                            color: #008FFF;
                            font-weight: 500;
                        }

                        .prodCardTxtInn {
                            color: #000;

                            p {
                                color: #000;
                            }
                        }

                        .prodReadBtn {
                            opacity: 1;
                        }
                    }
                }
            }
        }

        &.slick-current {
            .productCard {
                border-color: #008FFF;
                /* background-color: #0C0056; */
                background-color: #ffffff;
                box-shadow: inset 0 0 100px 0px #008fff2b;
                /* box-shadow: inset 0 0 15px 1px #008fff6b; */

                .prodCardImg {
                    &::after {
                        opacity: 0.1;
                    }
                }

                .prodCardTxt {
                    .prodCardHead {
                        font-weight: 500;
                        color: #008FFF;
                    }

                    .prodCardTxtInn {
                        color: #000;

                        p {
                            color: #000;
                        }
                    }

                    .prodReadBtn {
                        opacity: 1;
                    }
                }
            }
        }
    }

    .slick-arrow {
        &.slick-prev {
            left: 210px;
        }

        &.slick-next {
            right: 210px;
        }
    }

}

/* why choose us */
.whyChooseUs {
    .headingWrap {
        padding: 0px 60px;

        .whyChooseBg {
            /* display: none; */
            height: 118px;
            display: inline-block;

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

    .whyChooseBtm {
        position: relative;
        /* margin-top: -30px; */
        margin-top: 30px;
        margin-bottom: 0px !important;

        .whyChooseSlide {
            padding: 0px 15px;

            .whyChooseCard {
                border-radius: 15px;
                background: #E4E9ED;
                padding: 50px 30px;
                transition: all 0.5s;
                position: relative;

                .whyChooseCardTop {
                    padding-bottom: 20px;
                    border-bottom: 1px solid #000;
                    margin-bottom: 30px;
                    transition: all 0.5s;
                    position: relative;
                    z-index: 2;

                    .whyChooseImg {
                        width: 50px;
                        height: 50px;
                        margin-bottom: 20px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                            filter: brightness(0) saturate(100%);
                        }
                    }

                    .whyChooseHead {
                        color: #000;
                        font-family: "Poppins", sans-serif;
                        font-size: 30px;
                        font-weight: 400;
                        transition: all 0.5s;
                    }
                }

                .whyChooseCardBtm {
                    height: 200px;
                    overflow-y: auto;
                    padding-right: 8px;
                    transition: all 0.5s;
                    position: relative;
                    z-index: 2;

                    /* &::-webkit-scrollbar-thumb{
                        background-color: #FFB600;
                    } */
                    p {
                        color: #000;
                        transition: all 0.5s;
                    }
                }

                &::after {
                    content: '';
                    position: absolute;
                    right: 0;
                    bottom: 20px;
                    background-image: url(../images/Home/choose_card_bg.png);
                    background-repeat: no-repeat;
                    background-size: 100% 100%;
                    width: 200px;
                    height: 200px;
                    opacity: 0;
                    visibility: hidden;
                    transition: all 0.5s;
                    z-index: 1;
                }

                &:hover {
                    background: #0C0056;

                    .whyChooseCardTop {
                        border-color: #fff;

                        .whyChooseImg {
                            img {
                                filter: brightness(0) saturate(100%) invert(71%) sepia(92%) saturate(2065%) hue-rotate(359deg) brightness(103%) contrast(106%);
                            }
                        }

                        .whyChooseHead {
                            color: #fff;
                        }
                    }

                    .whyChooseCardBtm {
                        * {
                            color: #fff;
                        }

                        &::-webkit-scrollbar-thumb {
                            background-color: #FFB600;
                        }
                    }

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

            /* &.slick-current {
                .whyChooseCard {
                    background: #0C0056;

                    .whyChooseCardTop {
                        border-color: #fff;

                        .whyChooseImg {
                            img {
                                filter: brightness(0) saturate(100%) invert(71%) sepia(92%) saturate(2065%) hue-rotate(359deg) brightness(103%) contrast(106%);
                            }
                        }

                        .whyChooseHead {
                            color: #fff;
                        }
                    }

                    .whyChooseCardBtm {
                        * {
                            color: #fff;
                        }

                        &::-webkit-scrollbar-thumb {
                            background-color: #FFB600;
                        }
                    }

                    &::after {
                        visibility: visible;
                        opacity: 1;
                    }
                }
            } */
        }

        /* .whyChooseBg {
            position: absolute;
            right: 80px;
            bottom: -140px;
            width: 900px;
            height: 150px;
            z-index: -1;

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

/* success stories */
.succesSec {
    .successSecInn {
        position: relative;
        height: 80vh;
        border-radius: 15px;
        overflow: hidden;

        .headingWrap {
            position: absolute;
            top: 60px;
            z-index: 2;
            text-align: center;
            width: 100%;

            .secBigH {
                font-size: 160px;
                padding: 0px 15px;
                color: #ffffff54;
                -webkit-text-stroke: 1px #fff;
                font-weight: 700;
                font-family: "Poppins", sans-serif;
            }
        }

        /* success slider */
        .successSlider {
            position: absolute;
            height: 100%;
            width: 100%;
            left: 0;
            top: 0;

            .swiper-slide {
                .successImg {
                    width: 100%;
                    height: 100%;
                    position: relative;

                    &::after {
                        content: '';
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        left: 0;
                        top: 0;
                        background: linear-gradient(45deg, rgb(0, 0, 0) 1.05%, rgba(0, 0, 0, 0) 96.17%);
                        z-index: 1;
                    }

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

                .slider_container {
                    width: 100%;
                    position: absolute;
                    left: calc((100% - 1360px) / 2);
                    bottom: 60px;
                    max-width: 500px;
                    min-height: 300px;
                    z-index: 3;

                    .successHead {
                        margin-bottom: 30px;
                        font-size: 40px;
                        font-weight: 700;
                        color: #fff;
                    }

                    .successPara {
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 2;
                        color: #fff;
                    }
                }

                &.swiper-slide-active {
                    z-index: 5;
                }
            }

            .swiper-button-next,
            .swiper-button-prev {
                display: none;

                svg {
                    display: none;
                }
            }
        }

        /* thumb slider */
        .sliderThumbWrap {
            position: absolute;
            width: 800px;
            bottom: 40px;
            z-index: 2;
            /* right: calc((100% - 1360px) / 2); */
            right: 100px;
            overflow: hidden;
            padding: 40px 0px;

            .sliderThumb {
                width: 100%;

                .swiper-slide {
                    width: 100%;
                    height: 100%;
                    padding: 20px;

                    .thumbImg {
                        width: 100%;
                        height: 140px;
                        border: 6px solid #fff;
                        border-radius: 15px;
                        overflow: hidden;

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

                    &.swiper-slide-active {
                        transform: scale(1.2);
                    }
                }
            }
        }

        /* swiper buttons */
        .swiper-btn-container {
            width: 850px;
            position: absolute;
            right: 70px;
            bottom: 160px;
            z-index: 5;
            display: flex;
            gap: 20px;

            .swiper-button-next,
            .swiper-button-prev {
                background: #0C0056;
                width: 42px;
                height: 42px;
                border-radius: 50%;
                position: absolute;
                font-size: 0;
                margin-top: 0;
                transition: all 0.3s;

                svg {
                    opacity: 0;
                }

                &::after {
                    content: '';
                    position: absolute;
                    font-family: fontawesome;
                    position: absolute;
                    color: #fff;
                    font-size: 16px;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    transition: all 0.3s;
                }

                &:hover {
                    background-color: #FFB600;
                    border-color: transparent;

                    &::after {
                        color: #3F3F3F;
                    }
                }
            }

            .swiper-button-prev {
                left: 0;
                top: 50%;

                &::after {
                    content: '\f060';
                }
            }

            .swiper-button-next {
                &::after {
                    content: '\f061';
                }
            }
        }

        /* .swiper-button-next,
        .swiper-button-prev {
            background: #0C0056;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            position: absolute;
            font-size: 0;
            margin-top: 0;
            transition: all 0.3s;

            svg {
                opacity: 0;
            }

            &::after {
                content: '';
                position: absolute;
                font-family: fontawesome;
                position: absolute;
                color: #fff;
                font-size: 16px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.3s;
            }

            &:hover {
                background-color: #FFB600;
                border-color: transparent;

                &::after {
                    color: #3F3F3F;
                }
            }
        }

        .swiper-button-prev {
            left: 0;
            top: 50%;

            &::after {
                content: '\f060';
            }
        }

        .swiper-button-next {
            &::after {
                content: '\f061';
            }
        } */
    }
}


/* Responsive */

@media (max-width: 1768px) {
    .whyChooseUs {
        .headingWrap {
            .whyChooseBg {
                height: 105px;
            }
        }
    }

    /* products */
    .productSec {
        .prodSlide {
            .productCard {
                .prodCardTxt {
                    .prodCardHead {
                        font-size: 30px;
                    }
                }
            }
        }
    }

    /* why choose us */
    .whyChooseUs {
        .whyChooseBtm {
            .whyChooseSlide {
                .whyChooseCard {
                    .whyChooseCardTop {
                        .whyChooseHead {
                            font-size: 25px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1680px) {
    .whyChooseUs {
        .headingWrap {
            .whyChooseBg {
                height: 94px;
            }
        }
    }

    /* banner */
    .bannerSecWrap {
        .bannerSec {
            .banContBox {
                .tab_content {
                    .banContInn {
                        .banFlexCont {
                            .banBtnWrap {
                                .btnOne {
                                    span.btnTxt {
                                        font-size: 16px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* products */
    .productSec {
        .slick-arrow {
            &.slick-prev {
                left: 150px;
            }

            &.slick-next {
                right: 150px;
            }
        }
    }

    /* success sec */
    .succesSec {
        .successSecInn {
            .headingWrap {
                .secBigH {
                    font-size: 140px;
                }
            }
        }
    }
}

@media (max-width: 1600px) {

    /* banner */
    .bannerSecWrap {
        .bannerSec {
            .banContBox {
                .tab_content {
                    .banContInn {
                        .banFlexCont {
                            .banText {
                                .banHead {
                                    font-size: 60px;
                                    line-height: 70px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* products */
    .productSec {
        .prodTabWrap {
            .prodTabWrapTop {
                .prodContBox {
                    .tab_content {
                        .prodSubTabWrap {
                            .subTabList {
                                display: none;
                            }
                        }
                    }
                }
            }
        }

        .prodSlide {
            .productCard {
                padding: 20px;

                .prodCardTxt {
                    .prodCardHead {
                        font-size: 24px;
                    }
                }
            }
        }

        .slick-arrow {
            &.slick-prev {
                left: 140px;
            }

            &.slick-next {
                right: 140px;
            }
        }
    }

    /* why choose us */
    .whyChooseUs {
        .whyChooseBtm {
            .whyChooseBg {
                width: 700px;
            }

            .whyChooseSlide {
                .whyChooseCard {
                    padding: 30px 20px;
                }
            }
        }
    }

    /* success sec */
    .succesSec {
        .successSecInn {
            .sliderThumbWrap {
                width: 730px;
                right: 60px;
                padding: 30px 0px;
            }

            .successSlider {
                .swiper-slide {
                    .slider_container {
                        bottom: 60px;
                        max-width: 600px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1536px) {
    .bannerSecWrap {
        .bannerSec {
            .banContBox {
                .tab_content {
                    .banContInn {
                        .banFlexCont {
                            .banText {
                                .banHead {
                                    font-size: 50px;
                                    line-height: 50px;
                                }
                                img {
                                    max-width: 700px;
                                }
                            }
                            .banBtnWrap {
                                .btnOne {
                                    span.arrow {
                                        width: 50px;
                                        height: 50px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1500px) {
    .whyChooseUs {
        .headingWrap {
            .whyChooseBg {
                height: 80px;
            }
        }
    }
}

@media (max-width: 1480px) {

    /* banner */
    .bannerSecWrap {
        .bannerSec {
            .banTabWrap {
                .banTab {
                    gap: 30px;

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

            .banContBox {
                .tab_content {
                    .banContInn {
                        .banFlexCont {
                            .banText {
                                width: 800px;

                                .banHead {
                                    font-size: 45px;
                                    line-height: 55px;
                                }

                                img {
                                    max-width: 600px;
                                }
                            }

                            .banBtnWrap {
                                .btnOne {
                                    span.btnTxt {
                                        font-size: 16px;
                                        padding: 8px 22px;
                                        line-height: 35px;
                                    }

                                    span.arrow {
                                        width: 50px;
                                        height: 50px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* products */
    .productSec {
        .slick-arrow {
            &.slick-prev {
                left: 190px;
            }

            &.slick-next {
                right: 190px;
            }
        }
    }

    /* why choose us */
    .whyChooseUs {
        .whyChooseBtm {
            .whyChooseSlide {
                .whyChooseCard {
                    .whyChooseCardTop {
                        margin-bottom: 20px;
                        padding-bottom: 12px;

                        .whyChooseImg {
                            width: 45px;
                            height: 45px;
                            margin-bottom: 15px;
                        }

                        .whyChooseHead {
                            font-size: 22px;
                        }
                    }

                    .whyChooseCardBtm {
                        p {
                            font-size: 16px;
                            line-height: 26px;
                        }
                    }
                }
            }

            .whyChooseBg {
                bottom: -130px;
                width: 600px;
            }
        }
    }

    /* success sec */
    .succesSec {
        .successSecInn {
            .headingWrap {
                .secBigH {
                    font-size: 125px;
                }
            }

            .successSlider {
                .swiper-slide {
                    .slider_container {
                        left: 40px;
                        bottom: 20px;
                    }
                }
            }

            .sliderThumbWrap {
                width: 680px;
                right: 40px;
                bottom: 20px;
            }
        }
    }
}

@media (max-width: 1440px) {
    .productSec {
        .prodSlide {
            .productCard {
                .prodCardImg {
                    height: 200px;
                }
            }
        }

        .slick-arrow {
            &.slick-prev {
                left: 175px;
            }

            &.slick-next {
                right: 175px;
            }
        }

        .prodTabWrap {
            .prodTabWrapTop {
                /* margin: -50px auto 0px auto; */
                margin: 0px auto 0px auto;
            }
        }
    }
}

@media (max-width: 1400px) {
    .succesSec {
        .successSecInn {
            .sliderThumbWrap {
                width: 600px;
                right: 30px;

                .sliderThumb {
                    .swiper-slide {
                        .thumbImg {
                            height: 120px;
                            border: 5px solid #fff;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1399px) {
    .productSec {
        .slick-arrow {
            &.slick-prev {
                left: 125px;
            }

            &.slick-next {
                right: 125px;
            }
        }
    }
}

@media (max-width: 1366px) {
    .aboutSec {
        .aboutImg {
            height: 450px;
        }
    }
    .aboutTxtCard {
        row-gap: 20px;
        .abtTxtCardRow {
            .aboutTxtCardInn {
                height: 70px;
            }
        }
    }
    
    .whyChooseUs {
        .headingWrap {
            .whyChooseBg {
                height: 64px;
            }
        }
    }

    /* banner */
    .bannerSecWrap {
        .bannerSec {
            .banTabWrap {
                .banTab {
                    li {
                        font-size: 18px;
                    }
                }
            }
            .banContBox {
                .tab_content {
                    .banContInn {
                        .banFlexCont {
                            .banText {
                                .banHead {
                                    font-size: 40px;
                                    line-height: 44px;
                                }
                                img {
                                    max-width: 700px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* products */
    .productSec {
        .prodTabWrap {
            .prodTabWrapTop {
                .prodList {
                    li {
                        font-size: 24px;
                    }
                }
            }
        }

        .prodSlide {
            .productCard {
                padding: 20px;

                .prodCardImg {
                    height: 170px;
                }

                .prodCardTxt {
                    .prodCardTxtInn {
                        p {
                            font-size: 14px;
                            line-height: 24px;
                        }
                    }
                }
            }
        }

        .slick-arrow {
            &.slick-prev {
                left: 160px;
            }

            &.slick-next {
                right: 160px;
            }
        }
    }

    /* why choose us */
    .whyChooseUs {
        .whyChooseBtm {
            .whyChooseBg {
                bottom: -118px;
                width: 500px;
            }
        }
    }

    /* success sec */
    .succesSec {
        .successSecInn {
            height: 90vh;
        }
    }
}

@media (max-width: 1365px) {

    /* success sec */
    .succesSec {
        .successSecInn {
            .headingWrap {
                top: 45px;

                .secBigH {
                    font-size: 100px;
                }
            }

            .successSlider {
                .swiper-slide {
                    .slider_container {
                        left: 50%;
                        bottom: 50%;
                        transform: translate(-50%, -50%);
                        top: 50%;
                        width: 100%;
                        max-width: 100%;
                        text-align: center;
                        padding: 40px 30px 0px;

                        .successHead {
                            margin-bottom: 15px;
                        }

                        .btnWrap {
                            .btnOne {
                                .btnTxt {
                                    font-size: 15px;
                                    min-width: 150px;
                                    height: 45px;
                                    padding: 0 20px;
                                }

                                span.arrow {
                                    width: 45px;
                                    height: 45px;
                                }
                            }
                        }
                    }
                }
            }

            .sliderThumbWrap {
                width: 600px;
                right: 50%;
                transform: translateX(-50%);
                left: 50%;
                padding: 0;
            }
        }

    }
}

@media (max-width: 1299px) {
    .productSec {
        .slick-arrow {
            &.slick-prev {
                left: 75px;
            }

            &.slick-next {
                right: 75px;
            }
        }
    }
}

@media (max-width: 1280px) {
    /* banner */
    .bannerSecWrap {
        .bannerSec {
            /*height: 700px;*/

            .banTabWrap {
                .banTab {
                    gap: 20px;
                }
            }

            .banContBox {
                .tab_content {
                    .banContInn {
                        &::after {
                            width: 700px;
                        }

                        .banAbsDiv {
                            .banImg {
                                /*height: 700px;*/
                            }

                            &::before {
                                background: linear-gradient(270deg, #000 1.82%, rgb(0 0 0 / 62%) 100%);
                            }
                        }

                        .banFlexCont {
                            bottom: auto;
                            justify-content: flex-start;
                            align-items: flex-start;
                            padding: 0px 60px;
                            top: 50%;
                            transform: translateY(-50%);
                            flex-direction: column;
                            padding: 0px 25px;
                            row-gap: 40px;

                            .banText {
                                width: 700px;

                                .banHead {
                                    font-size: 40px;
                                    line-height: 55px;
                                }

                                img {
                                    max-width: 400px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    
    .aboutSec {
        .aboutImg {
            height: 470px;
        }
    }

    /* products */
    .productSec {
        .slick-arrow {
            &.slick-prev {
                left: 95px;
            }

            &.slick-next {
                right: 95px;
            }
        }
    }

    /* success sec */
    .succesSec {
        .successSecInn {
            height: 92vh;

            .headingWrap {
                .secBigH {
                    font-size: 85px;
                }
            }

            .sliderThumbWrap {
                width: 510px;

                .sliderThumb {
                    .swiper-slide {
                        padding: 15px;

                        .thumbImg {
                            height: 100px;
                        }
                    }
                }
            }
        }
    }
}

.mainTabImg{
    display: none;
}

@media (max-width: 1199px) {
    .mainDeskImg{
        display: none;
    }
    .mainTabImg{
        display: block;
    }

    /* products section */
    .productSec {
        .subTabSlider {
            padding-bottom: 50px;
        }

        .prodSlide {
            .productCard {
                padding: 20px 10px;
                border-color: #008FFF;
                /* background-color: #0C0056; */
                background-color: #ffffff;
                box-shadow: inset 0 0 100px 0px #008fff2b;

                .prodCardImg {
                    &::after {
                        opacity: 0.1;
                    }
                }

                .prodCardTxt {
                    .prodCardHead {
                        font-weight: 500;
                        font-size: 20px;
                        color: #008FFF;
                    }

                    .prodCardTxtInn {
                        color: #000;

                        p {
                            color: #000;
                        }
                    }

                    .prodReadBtn {
                        opacity: 1;
                        justify-content: center;

                        a {
                            font-size: 16px;

                            &::after {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }

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

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

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

    }

    /* why choose us */
    .whyChooseUs {
        &.commonSec {
            padding-bottom: 120px;
        }

        .whyChooseBtm {
            /* margin-top: -20px; */
            margin-bottom: 30px;

            .whyChooseBg {
                bottom: -120px;
                width: 480px;
            }

            .whyChooseSlider {
                /* padding-bottom: 60px; */
            }

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

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

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

        }
    }

    /* success sec */
    .succesSec {
        .successSecInn {
            .headingWrap {
                .secBigH {
                    font-size: 75px;
                }
            }

            .successSlider {
                .swiper-slide {
                    .slider_container {
                        .successPara {
                            -webkit-line-clamp: 1;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    .whyChooseUs {
        .headingWrap {
            .whyChooseBg {
                height: 50px;
            }
        }
    }

    /* banner */
    .bannerSecWrap {
        .bannerSec {
            &.deskView {
                display: none;
            }

            .banTabWrap {
                right: 50%;
                top: auto;
                transform: translateX(-50%);
                bottom: 30px;
                left: 50%;

                .banTab {
                    gap: 40px;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;

                    li {
                        font-size: 0;

                        &::after {
                            background: #fff;
                            z-index: 1;
                            height: 2px;
                            width: 30px;
                        }

                        &.active {
                            &::after {
                                background-color: #008FFF;
                            }
                        }
                    }
                }
            }

            &.mobView {
                display: block;
            }
        }
    }

    /* about sec */
    .aboutSec {
        .headingWrap {
            .secSmallH {
                text-align: center;
            }
        }

        .aboutRightCont {
            .aboutRightHead {
                font-size: 30px;
                line-height: 40px;
                margin-bottom: 10px;
            }
        }
    }

    /* why choose us */
    .whyChooseUs {
        .headingWrap {
            text-align: center;
        }

        .whyChooseBtm {

            .whyChooseBg {
                bottom: -110px;
                width: 370px;
                right: 25px;
            }

            .whyChooseSlide {
                .whyChooseCard {
                    background: #0C0056;

                    .whyChooseCardTop {
                        border-color: #fff;

                        .whyChooseImg {
                            img {
                                filter: brightness(0) saturate(100%) invert(71%) sepia(92%) saturate(2065%) hue-rotate(359deg) brightness(103%) contrast(106%);
                            }
                        }

                        .whyChooseHead {
                            color: #fff;
                        }
                    }

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

                        &::-webkit-scrollbar-thumb {
                            background-color: #FFB600;
                        }
                    }

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

    }

    /* success sec */
    .succesSec {
        .successSecInn {
            height: auto;
            position: static;

            .headingWrap {
                position: static;
                padding: 0;
                margin-bottom: 20px;

                .secBigH {
                    font-size: 70px;
                    padding: 0;
                    -webkit-text-stroke: unset;
                    color: var(--grey-text);
                    font-family: "Roboto", sans-serif;
                    font-weight: 900;
                }
            }

            .successSlideWrap {
                height: auto;

                .successSlider {
                    height: 100%;
                    position: static;
                    padding-bottom: 60px;

                    .swiper-slide {
                        width: 100%;
                        height: 400px;
                        padding: 0px 6px;

                        .successImg {
                            border-radius: 20px;
                            overflow: hidden;
                        }

                        .slider_container {
                            .successPara {
                                -webkit-line-clamp: 3;
                            }
                        }
                    }

                    .swiper-button-next,
                    .swiper-button-prev {
                        display: block;
                        top: auto;
                        bottom: 70px;
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        background-color: #0C0056;
                        position: absolute;
                        background-image: none;
                        margin-top: 0;

                        &::after {
                            content: '';
                            font-family: fontawesome;
                            position: absolute;
                            color: #fff;
                            font-size: 16px;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%, -50%);
                            transition: all 0.3s;
                        }
                    }

                    .swiper-button-prev {
                        right: auto;
                        left: calc(50% - 50px);

                        &::after {
                            content: '\f060';
                        }
                    }

                    .swiper-button-next {
                        left: auto;
                        right: calc(50% - 50px);

                        &::after {
                            content: '\f061';
                        }
                    }
                }
            }

            .sliderThumbWrap {
                position: static;
                transform: none;
                margin: 0px auto;
                width: 100%;
                padding-top: 20px;
                display: none;

                .sliderThumb {
                    .swiper-slide {
                        padding: 0px 6px;

                        &.swiper-slide-active {
                            transform: scale(1);
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 992px) {
    .aboutSec {
        .aboutRightCont {
            position: static;
        }
    }
}

@media (max-width: 991px) {

    /* about sec */
    .aboutSec {
        .aboutLeftCont {
            position: static;
        }
        .aboutImg {
            height: auto;
        }

        /*.abtRowTwo {*/
        /*    display: none;*/
        /*}*/

        .aboutRightCont {
            text-align: center;
        }
    }

    /* products */
    .productSec {
        .prodTabWrap {
            padding: 0px 15px;

            .prodTabWrapTop {
                max-width: 100%;
                margin: 0px auto 0px auto;
                position: sticky;
                top: 50px;
                z-index: 3;
                border-radius: 10px;
                padding: 20px;

                .prodList {
                    margin-bottom: 0;
                }

                .prodContBox {
                    display: none;
                }
            }

            .prodTabWrapBtm {
                margin-top: 10px;

                .sub_tab_content {
                    display: block;
                    border-radius: 10px;
                    background: #fff;

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

                    .accTrigger {
                        display: block;
                    }

                    .subTabSliderDiv {
                        display: none;
                        padding-top: 20px;
                    }

                    &.active {
                        border: 1px solid #00000025;

                        .accTrigger {
                            background-color: #0C0056;
                            border-color: transparent;
                            color: #fff;
                            border-radius: 10px 10px 0px 0px;

                            &::after {
                                color: #fff;
                                content: "\f056";
                            }
                        }

                        .subTabSliderDiv {
                            display: block;
                            padding: 30px 0px;
                        }
                    }
                }
            }

        }
    }

    /* why choose us */
    .whyChooseUs {
        &.commonSec {
            padding-bottom: 80px;
        }

        .headingWrap {
            padding: 0px 15px;

            .whyChooseBg {
                display: block;
                text-align: center;

                img {
                    max-width: 280px;
                    display: inline-block;
                }
            }
        }

        .whyChooseBtm {
            margin-top: 20px;
            margin-bottom: 50px;

            .slick-arrow {
                bottom: -50px;
                transform: translateY(0);
            }

            .whyChooseSlide {
                .whyChooseCard {
                    .whyChooseCardTop {
                        .whyChooseImg {
                            margin: 0px auto 15px;
                        }

                        .whyChooseHead {
                            text-align: center;
                        }
                    }

                    .whyChooseCardBtm {
                        text-align: center;
                    }

                    &::after {
                        width: 130px;
                        height: 130px;
                    }
                }
            }

            .whyChooseBg {
                width: 310px;
                height: auto;
                bottom: -65px;
                right: 50%;
                transform: translateX(-50%);
                left: 50%;
                display: none;
            }
        }
    }

    /* success sec */
    .succesSec {
        .successSecInn {
            .successSlider {
                .swiper-slide {
                    .slider_container {
                        .successHead {
                            font-size: 30px;
                            line-height: 40px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {

    /* banner sec */
    .bannerSecWrap {
        .bannerSec {
            &.mobView {
                .banSlider {
                    .banSlide {
                        .banSlideDiv {
                            height: 550px;

                            .banSlideCont {
                                .banText {
                                    img {
                                        max-width: 350px;
                                    }

                                    .banSlideName {
                                        display: block;
                                        font-size: 40px;
                                        font-family: "Roboto", sans-serif;
                                    }

                                    .banHead {
                                        font-size: 22px;
                                    }
                                }
                            }
                        }
                    }

                    .slick-dots {
                        bottom: 25px;
                    }
                }
            }
        }

        /* success sec */
        .succesSec {
            .successSecInn {
                .successSlider {
                    .swiper-slide {
                        .slider_container {
                            .successHead {
                                font-size: 30px;
                            }

                            .btnWrap {
                                .btnOne {
                                    .btnTxt {
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 767px) {
    .whyChooseUs {
        .headingWrap {
            .whyChooseBg {
                height: auto;
                display: block;
                text-align: center;

                img {
                    max-width: 300px;
                    display: inline-block;
                }
            }
        }

        .whyChooseBtm {
            .whyChooseBg {
                display: none;
            }
        }
    }
}

@media (max-width: 640px) {
    .productSec {
        .prodSlide {
            .productCard {
                .prodCardTxt {
                    .prodCardTxtInn {
                        overflow: visible;
                        text-overflow: inherit;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: inherit;
                        height: auto;
                    }
                }
            }
        }
    }
}

@media (max-width: 575px) {

    /* banner sec */
    .bannerSecWrap {
        .bannerSec {
            &.mobView {
                .banSlider {
                    .banSlide {
                        .banSlideDiv {
                            .banSlideCont {
                                .banText {
                                    img {
                                        max-width: 280px;
                                    }

                                    .banSlideName {
                                        font-size: 32px;
                                    }

                                    .banHead {
                                        font-size: 18px;
                                    }
                                }

                                .banBtnWrap {
                                    .btnOne {
                                        span.btnTxt {
                                            font-size: 15px;
                                            line-height: 30px;
                                            padding: 8px 20px;
                                            margin-right: 8px;
                                        }

                                        span.arrow {
                                            width: 48px;
                                            height: 48px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* about section */
    .aboutSec {
        .aboutRightCont {
            .aboutRightHead {
                font-size: 25px;
                line-height: 35px;
                margin-bottom: 10px;
            }
        }
    }

    /* products section */
    .productSec {
        .prodTabWrap {
            .prodTabWrapTop {
                padding: 10px;
                position: static;

                .prodList {
                    li {
                        font-size: 18px;
                        padding: 0px 30px 10px;

                        &::after {
                            width: calc(100% - 60px);
                            height: 2px;
                        }
                    }
                }
            }
        }
    }

    /* why choose us */
    .whyChooseUs {
        .headingWrap {
            .whyChooseBg {
                img {
                    max-width: 240px;
                }
            }
        }
    }

    /* success sec */
    .succesSec {
        .successSecInn {
            .headingWrap {
                .secBigH {
                    font-size: 60px;
                }
            }

            .successSlideWrap {
                .successSlider {

                    .swiper-button-next,
                    .swiper-button-prev {
                        bottom: 55px;
                    }

                    .swiper-slide {
                        .slider_container {
                            padding: 0px 15px 0px;
                            min-height: 260px;

                            .successHead {
                                font-size: 26px;
                                line-height: 34px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 480px) {

    /* banner */
    .bannerSecWrap {
        .bannerSec {
            &.mobView {
                .banSlider {
                    .banSlide {
                        .banSlideDiv {
                            .banSlideCont {
                                .banText {
                                    margin-bottom: 30px;

                                    img {
                                        max-width: 220px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* products */
    .productSec {
        .prodTabWrap {

            .sub_tab_content {
                .accTrigger {
                    font-size: 18px;
                }
            }
        }
    }

    /* why choose us */
    .whyChooseUs {
        .headingWrap {
            .whyChooseBg {
                img {
                    max-width: 180px;
                }
            }
        }

        /* .whyChooseBtm {
            .whyChooseBg {
                width: 200px;
                height: 70px;
            }
        } */
    }

    /* success sec */
    .succesSec {
        .successSecInn {
            .headingWrap {
                .secBigH {
                    font-size: 42px;
                }
            }
        }
    }

}

@media(max-width: 1360px) and (min-width: 699px) {
    .whyChooseUs {
        .whyChooseBtm {
            .whyChooseSlide {
                .whyChooseCard {
                    .whyChooseCardTop {
                        .whyChooseHead {
                            min-height: 60px;
                        }
                    }
                }
            }
        }
    }
}