@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;
}

h1,
h2,
h3,
h4 {
    padding: 0;
    margin: 0;
    line-height: normal;
    font-weight: 700;
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

a {
    text-decoration: none;
}

.heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}


:root {
    --colorOne: #2457AA;
    --colorTwo: #FFD200;
    --colorThree: #F6F9FF;
}


/***** Hero Slider Section *****/

.heroSection {
    overflow: hidden;
    padding: 0 16px;

    .heroSwiper {
        overflow: hidden;

        &:hover .swiper-button-next {
            opacity: 1;
        }

        &:hover .swiper-button-prev {
            opacity: 1;
        }

        .heroBanner {

            img {
                width: 100%;
                aspect-ratio: 12/5.6;
                object-fit: cover;
            }
        }

        .swiper-pagination-bullet {
            background-color: var(--colorOne);
            opacity: 1;
            border-radius: 0px !important;
            -webkit-border-radius: 0px !important;
            -moz-border-radius: 0px !important;
            -ms-border-radius: 0px !important;
            -o-border-radius: 0px !important;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--colorTwo);
            width: 20px;
            border-radius: 0px !important;
            -webkit-border-radius: 0px !important;
            -moz-border-radius: 0px !important;
            -ms-border-radius: 0px !important;
            -o-border-radius: 0px !important;
        }

        .swiper-button-next {
            opacity: 0;
            position: absolute;
            width: 41px !important;
            z-index: 10;
            background: white;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
        }

        .swiper-button-prev {
            opacity: 0;
            position: absolute;
            width: 41px;
            z-index: 10;
            background: white;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
        }

        .swiper-button-prev {
            width: 40px;
            height: 40px;
            border-radius: 50px;
            -webkit-border-radius: 50px;
            -moz-border-radius: 50px;
            -ms-border-radius: 50px;
            -o-border-radius: 50px;

            &:hover:after {
                transform: translateX(-5px);
                -webkit-transform: translateX(-5px);
                -moz-transform: translateX(-5px);
                -ms-transform: translateX(-5px);
                -o-transform: translateX(-5px);
            }
        }

        .swiper-button-next {
            right: 10px;
            left: auto;
            width: 40px;
            height: 40px;
            border-radius: 50px;
            -webkit-border-radius: 50px;
            -moz-border-radius: 50px;
            -ms-border-radius: 50px;
            -o-border-radius: 50px;

            &:hover:after {
                transform: translateX(5px);
                -webkit-transform: translateX(5px);
                -moz-transform: translateX(5px);
                -ms-transform: translateX(5px);
                -o-transform: translateX(5px);
            }
        }

        .swiper-button-prev::after {
            content: "\f104";
            font-family: FontAwesome;
            font-size: 20px;
            color: black;
            transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -ms-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
        }

        .swiper-button-next::after {
            content: "\f105";
            font-family: FontAwesome;
            font-size: 20px;
            color: black;
            z-index: 99;
            transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -ms-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
        }
    }

    .heroRight {
        height: 100%;

        img {
            height: 100%;
            object-fit: cover;
            aspect-ratio: 1/0.8;
        }
    }
}

@media (max-width:992px) {
    .heroRight {
        height: 100%;

        img {
            display: none;
        }
    }
}

@media (max-width:768px) {

    .heroNav {
        display: none;
    }
}

/***** End Hero Slider Section *****/

/***** Usp Section *****/

.uspSection {
    padding: 25px 50px;

    .uspCard {
        padding: 25px;
        background-color: var(--colorThree);
        height: 100%;

        &:hover .uspIn .uspIcon {
            transform: rotateY(-360deg);
        }

        .uspIn {
            display: flex;
            gap: 10px;

            .uspIcon {
                height: 45px;
                width: 45px;
                line-height: 45px;
                position: relative;
                -webkit-transition: all .5s;
                -moz-transition: all .5s;
                -ms-transition: all .5s;
                -o-transition: all .5s;
                transition: all .5s;

                i {
                    font-size: 28px;
                    display: inline-block;
                    padding-top: 7px;
                    color: var(--colorOne);
                }

            }

            h3 {
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 5px;
            }
        }
    }

    .uspCardTwo {
        background-color: #FFD200;

        .uspIn {

            .uspIcon {

                i {
                    color: black;
                }
            }

            h3 {
                color: black;
            }

            p {
                color: black;
                opacity: 0.9;
            }
        }
    }

    .uspCardThree {
        background-color: #02112B;

        .uspIn {

            .uspIcon {

                i {
                    color: white;
                }
            }

            h3 {
                color: white;
            }

            p {
                color: white;
                opacity: 0.9;
            }
        }
    }
}

@media (max-width:992px) {

    .uspSection {
        padding: 0px 0px;

        .uspCard {
            padding: 16px;
            background-color: var(--colorThree);
            height: 100%;

            &:hover .uspIn .uspIcon {
                transform: rotateY(-360deg);
            }

            .uspIn {
                display: flex;
                gap: 10px;

                .uspIcon {
                    height: 45px;
                    width: 45px;
                    line-height: 45px;
                    position: relative;
                    -webkit-transition: all .5s;
                    -moz-transition: all .5s;
                    -ms-transition: all .5s;
                    -o-transition: all .5s;
                    transition: all .5s;

                    i {
                        font-size: 28px;
                        display: inline-block;
                        padding-top: 7px;
                        color: var(--colorOne);
                    }

                }

                h3 {
                    font-size: 18px;
                    font-weight: 700;
                    margin-bottom: 3px;
                }
            }
        }

        .uspCardTwo {
            background-color: #FFD200;

            .uspIn {

                .uspIcon {

                    i {
                        color: black;
                    }
                }

                h3 {
                    color: black;
                }

                p {
                    color: black;
                    opacity: 0.9;
                }
            }
        }

        .uspCardThree {
            background-color: #02112B;

            .uspIn {

                .uspIcon {

                    i {
                        color: white;
                    }
                }

                h3 {
                    color: white;
                }

                p {
                    color: white;
                    opacity: 0.9;
                }
            }
        }
    }
}

/***** End Usp Section *****/

/***** Banner Section *****/

.bannerSection {
    padding: 25px 62px;
    overflow: hidden;

    .bannerCard {
        position: relative;
        overflow: hidden;
        height: 100%;

        a {
            position: relative;
            z-index: 1;
            display: inline-block;
            vertical-align: top;
            width: 100%;
            height: 100%;
            background: #fff;

            img {
                width: 100%;
                height: 100%;
            }
        }

        a::before,
        a::after {
            background: rgba(255, 255, 255, .4) none repeat scroll 0 0;
            content: " ";
            height: 0;
            padding: 0;
            position: absolute;
            transition: all 0.5s ease-out 0s;
            -webkit-transition: all 0.5s ease-out 0s;
            -moz-transition: all 0.5s ease-out 0s;
            -ms-transition: all 0.5s ease-out 0s;
            -o-transition: all 0.5s ease-out 0s;
            width: 0;
            transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            z-index: 1;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -khtml-border-radius: 5px;
            -moz-border-radius: 5px;
        }

        a::before {
            left: 0;
            top: 0;
        }

        a::after {
            bottom: 0;
            right: 0;
        }

        &:hover a::before,
        &:hover a::after {
            height: 100%;
            width: 100%;
            transform: rotatex(-180deg);
            -webkit-transform: rotatex(-180deg);
            -moz-transform: rotatex(-180deg);
            -ms-transform: rotatex(-180deg);
            -o-transform: rotatex(-180deg);
            opacity: 0;
        }
    }

}

@media (max-width:992px) {

    .bannerSection {
        padding: 25px 12px;

        .bannerCard {
            position: relative;
            overflow: hidden;
            height: 100%;

            a {
                position: relative;
                z-index: 1;
                display: inline-block;
                vertical-align: top;
                width: 100%;
                height: 100%;
                background: #fff;

                img {
                    width: 100%;
                    height: 100%;
                }
            }

            a::before,
            a::after {
                background: rgba(255, 255, 255, .4) none repeat scroll 0 0;
                content: " ";
                height: 0;
                padding: 0;
                position: absolute;
                transition: all 0.5s ease-out 0s;
                -webkit-transition: all 0.5s ease-out 0s;
                -moz-transition: all 0.5s ease-out 0s;
                -ms-transition: all 0.5s ease-out 0s;
                -o-transition: all 0.5s ease-out 0s;
                width: 0;
                transform: rotate(180deg);
                -webkit-transform: rotate(180deg);
                -moz-transform: rotate(180deg);
                -ms-transform: rotate(180deg);
                -o-transform: rotate(180deg);
                z-index: 1;
                border-radius: 5px;
                -webkit-border-radius: 5px;
                -khtml-border-radius: 5px;
                -moz-border-radius: 5px;
            }

            a::before {
                left: 0;
                top: 0;
            }

            a::after {
                bottom: 0;
                right: 0;
            }

            &:hover a::before,
            &:hover a::after {
                height: 100%;
                width: 100%;
                transform: rotatex(-180deg);
                -webkit-transform: rotatex(-180deg);
                -moz-transform: rotatex(-180deg);
                -ms-transform: rotatex(-180deg);
                -o-transform: rotatex(-180deg);
                opacity: 0;
            }
        }
    }
}

@media (max-width:768px) {

    .bannerSection {
        padding: 25px 12px;
    }

    .paddingset {
        padding-right: 3px;
    }

    .paddingset1 {
        padding-right: 2px;
        padding-left: 2px;
    }

    .paddingset2 {
        padding-right: 2px;
    }

    .paddingset3 {
        padding-left: 4px;
    }

    .imgFour {
        display: none;
    }
}


/***** End Banner Section *****/

/***** Welding Machine *****/

.weldingMachine {
    padding: 50px;

    .weldingMachineText {
        margin-bottom: 20px;
        text-align: center;

        h2 {
            font-size: 22px;
            margin-bottom: 3px;
            position: relative;
            padding-left: 35px;
            display: inline-block;

            &::before {
                position: absolute;
                content: "";
                top: 3px;
                left: 0;
                width: 20px;
                height: 20px;
                background-color: var(--colorOne);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            &::after {
                position: absolute;
                content: "";
                top: 3px;
                left: 10px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--colorTwo);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }

        p {
            max-width: 650px;
            font-weight: 500;
            opacity: .9;
            margin: auto;
        }
    }

    .weldingCard {
        border: 1px solid #e9eef6;

        &:hover .weldingCardImg .forntImg {
            opacity: 0;
            visibility: hidden;
        }

        &:hover .weldingCardImg .backImg {
            opacity: 1;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            -o-opacity: 1;
            -moz-transform: scale(1, 1);
            -webkit-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            transform: scale(1, 1);
            transition: all 0.45s ease 0s;
            -webkit-transition: all 0.45s ease 0s;
            -moz-transition: all 0.45s ease 0s;
            -o-transition: all 0.45s ease 0s;
        }

        .weldingCardImg {
            text-align: center;
            padding: 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--colorThree);

            .forntImg {
                width: 160px;
                margin: auto;
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .backImg {
                position: absolute;
                opacity: 0;
                width: 160px;
                -webkit-opacity: 0;
                -moz-opacity: 0;
                -o-opacity: 0;
                -moz-transform: scale(0, 1);
                -webkit-transform: scale(0, 1);
                -o-transform: scale(0, 1);
                -ms-transform: scale(0, 1);
                transform: scale(0, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;

            }
        }

        .weldingCardContent {
            border-top: 1px solid #e9eef6;
            line-height: 50px;
            text-align: center;

            a {
                display: inline-block;
                font-size: 16px;
                font-weight: 600;
                width: 100%;
            }
        }
    }
}

@media (max-width:992px) {

    .weldingMachine {
        padding: 16px 0;

        .weldingMachineText {
            margin-bottom: 20px;
            /* text-align: center; */

            h2 {
                font-size: 22px;
                margin-bottom: 3px;
                position: relative;
                padding-left: 35px;
                /* text-align: center; */
                /* display: inline-block; */

                &::before {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 0;
                    width: 20px;
                    height: 20px;
                    background-color: var(--colorOne);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }

                &::after {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 10px;
                    width: 20px;
                    height: 20px;
                    border: 2px solid var(--colorTwo);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }
            }

            p {
                max-width: 650px;
                font-weight: 500;
                opacity: .9;
                /* margin: auto ; */
            }
        }

        .weldingCard {
            border: 1px solid #e9eef6;

            &:hover .weldingCardImg .forntImg {
                opacity: 0;
                visibility: hidden;
            }

            &:hover .weldingCardImg .backImg {
                opacity: 1;
                -webkit-opacity: 1;
                -moz-opacity: 1;
                -o-opacity: 1;
                -moz-transform: scale(1, 1);
                -webkit-transform: scale(1, 1);
                -o-transform: scale(1, 1);
                -ms-transform: scale(1, 1);
                transform: scale(1, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .weldingCardImg {
                text-align: center;
                padding: 20px;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--colorThree);

                .forntImg {
                    width: 160px;
                    margin: auto;
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .backImg {
                    position: absolute;
                    opacity: 0;
                    width: 160px;
                    -webkit-opacity: 0;
                    -moz-opacity: 0;
                    -o-opacity: 0;
                    -moz-transform: scale(0, 1);
                    -webkit-transform: scale(0, 1);
                    -o-transform: scale(0, 1);
                    -ms-transform: scale(0, 1);
                    transform: scale(0, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;

                }
            }

            .weldingCardContent {
                border-top: 1px solid #e9eef6;
                line-height: 50px;
                text-align: center;

                a {
                    display: inline-block;
                    font-size: 16px;
                    font-weight: 600;
                    width: 100%;
                }
            }
        }
    }
}

/***** End Welding Machine *****/

/***** Categories Section *****/

.catSection {
    padding: 25px 62px;

    .catContent {
        text-align: center;
        margin-bottom: 30px;

        h2 {
            font-size: 22px;
            margin-bottom: 3px;
            position: relative;
            padding-left: 35px;
            display: inline-block;

            &::before {
                position: absolute;
                content: "";
                top: 3px;
                left: 0;
                width: 20px;
                height: 20px;
                background-color: var(--colorOne);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            &::after {
                position: absolute;
                content: "";
                top: 3px;
                left: 10px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--colorTwo);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }

        p {
            max-width: 650px;
            font-weight: 500;
            opacity: .9;
            margin: auto;
        }
    }

    .catTab {

        .tab {
            background-color: var(--colorThree);
            line-height: 45px;
            border: 1px solid #e9eef6;
            display: flex;
            justify-content: center;
            align-items: center;

            button {
                border: none;
                outline: none;
                padding: 0 15px;
                font-weight: 600;
                background-color: transparent;

                &.active {
                    background-color: white;
                    border-bottom: 3px solid var(--colorOne);
                    color: var(--colorOne);
                }
            }
        }
    }

    .tabcontent {
        margin-top: 20px;
        display: none;

        .xyz{
            display: grid !important;
            grid-template-columns: repeat(5, 1fr) !important;
            gap: 15px;
        }

        .catProduct {
            border: 1px solid #e9eef6;

            &:hover .catProductImg .forntImg {
                opacity: 0;
                visibility: hidden;
            }

            &:hover .catProductImg .backImg {
                opacity: 1;
                -webkit-opacity: 1;
                -moz-opacity: 1;
                -o-opacity: 1;
                -moz-transform: scale(1, 1);
                -webkit-transform: scale(1, 1);
                -o-transform: scale(1, 1);
                -ms-transform: scale(1, 1);
                transform: scale(1, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .catProductImg {
                text-align: center;
                padding: 20px;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--colorThree);

                .forntImg {
                    width: 140px;
                    margin: auto;
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .backImg {
                    position: absolute;
                    opacity: 0;
                    width: 160px;
                    -webkit-opacity: 0;
                    -moz-opacity: 0;
                    -o-opacity: 0;
                    -moz-transform: scale(0, 1);
                    -webkit-transform: scale(0, 1);
                    -o-transform: scale(0, 1);
                    -ms-transform: scale(0, 1);
                    transform: scale(0, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;

                }
            }

            .catProductContent {
                border-top: 1px solid #e9eef6;
                line-height: 50px;
                text-align: center;

                a {
                    display: inline-block;
                    font-size: 16px;
                    font-weight: 600;
                    width: 100%;
                    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
                }
            }
        }

    }

    .sectionOne {
        padding: 25px 0;

        .col-lg-3 {
            padding: 0 !important;
            height: 100%;

            &:hover {
                background-color: white;
                box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            }
        }

        .tabContentIn {
            position: relative;

            &::after {
                position: absolute;
                content: "";
                border-right: 1px solid rgb(220, 220, 220);
                height: 70%;
                width: 100%;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
            }
        }

        .oneCard {
            display: flex;
            gap: 5px;
            padding: 15px;
            align-items: center;


            .oneCardImg {

                img {
                    width: 120px;
                }
            }

            p {
                margin: 0;
                font-size: 12px;
            }

            h4 {
                font-size: 16px
            }
        }
    }
}

@media (max-width:992px) {

    .catSection {
        padding: 0px 16px 25px 16px;

        .catContent {
            text-align: center;
            margin-bottom: 20px;

            h2 {
                font-size: 22px;
                margin-bottom: 3px;
                position: relative;
                padding-left: 35px;
                display: inline-block;

                &::before {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 0;
                    width: 20px;
                    height: 20px;
                    background-color: var(--colorOne);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }

                &::after {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 10px;
                    width: 20px;
                    height: 20px;
                    border: 2px solid var(--colorTwo);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }
            }
        }

        .catTab {

            .tab {
                background-color: var(--colorThree);
                line-height: 45px;
                border: 1px solid #e9eef6;
                display: flex;
                justify-content: start;
                align-items: center;
                overflow-x: scroll;

                button {
                    border: none;
                    outline: none;
                    padding: 0 15px;
                    font-weight: 600;
                    background-color: transparent;

                    &:first-child {
                        min-width: 161px;
                    }

                    &.active {
                        background-color: white;
                        border-bottom: 3px solid var(--colorOne);
                        color: var(--colorOne);
                    }
                }
            }
        }

        .tabcontent {
            margin-top: 20px;
            display: none;

            .xyz{
                display: grid !important;
                grid-template-columns: repeat(4, 1fr) !important;
                gap: 15px;
            }

            .catProduct {
                border: 1px solid #e9eef6;

                &:hover .catProductImg .forntImg {
                    opacity: 0;
                    visibility: hidden;
                }

                &:hover .catProductImg .backImg {
                    opacity: 1;
                    -webkit-opacity: 1;
                    -moz-opacity: 1;
                    -o-opacity: 1;
                    -moz-transform: scale(1, 1);
                    -webkit-transform: scale(1, 1);
                    -o-transform: scale(1, 1);
                    -ms-transform: scale(1, 1);
                    transform: scale(1, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .catProductImg {
                    text-align: center;
                    padding: 20px;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--colorThree);

                    .forntImg {
                        width: 160px;
                        margin: auto;
                        transition: all 0.45s ease 0s;
                        -webkit-transition: all 0.45s ease 0s;
                        -moz-transition: all 0.45s ease 0s;
                        -o-transition: all 0.45s ease 0s;
                    }

                    .backImg {
                        position: absolute;
                        opacity: 0;
                        width: 160px;
                        -webkit-opacity: 0;
                        -moz-opacity: 0;
                        -o-opacity: 0;
                        -moz-transform: scale(0, 1);
                        -webkit-transform: scale(0, 1);
                        -o-transform: scale(0, 1);
                        -ms-transform: scale(0, 1);
                        transform: scale(0, 1);
                        transition: all 0.45s ease 0s;
                        -webkit-transition: all 0.45s ease 0s;
                        -moz-transition: all 0.45s ease 0s;
                        -o-transition: all 0.45s ease 0s;

                    }
                }

                .catProductContent {
                    border-top: 1px solid #e9eef6;
                    line-height: 50px;
                    text-align: center;

                    a {
                        display: inline-block;
                        font-size: 16px;
                        font-weight: 600;
                        width: 100%;
                    }
                }
            }

        }

        .sectionOne {
            padding: 25px 0;

            .col-lg-3 {
                padding: 0 !important;
                height: 100%;

                &:hover {
                    background-color: white;
                    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
                }
            }

            .tabContentIn {
                position: relative;

                &::after {
                    position: absolute;
                    content: "";
                    border-right: 1px solid rgb(220, 220, 220);
                    height: 70%;
                    width: 100%;
                    left: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    -webkit-transform: translateY(-50%);
                    -moz-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    -o-transform: translateY(-50%);
                }
            }

            .oneCard {
                display: flex;
                gap: 5px;
                padding: 15px;
                align-items: center;


                .oneCardImg {

                    img {
                        width: 120px;
                    }
                }

                p {
                    margin: 0;
                    font-size: 12px;
                }

                h4 {
                    font-size: 16px
                }
            }
        }
    }
}
@media (max-width:768px) {

    .catSection {
        padding: 0px 16px 25px 16px;

        .catContent {
            text-align: center;
            margin-bottom: 20px;

            h2 {
                font-size: 22px;
                margin-bottom: 3px;
                position: relative;
                padding-left: 35px;
                display: inline-block;

                &::before {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 0;
                    width: 20px;
                    height: 20px;
                    background-color: var(--colorOne);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }

                &::after {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 10px;
                    width: 20px;
                    height: 20px;
                    border: 2px solid var(--colorTwo);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }
            }
        }

        .catTab {

            .tab {
                background-color: var(--colorThree);
                line-height: 45px;
                border: 1px solid #e9eef6;
                display: flex;
                justify-content: start;
                align-items: center;
                overflow-x: scroll;

                button {
                    border: none;
                    outline: none;
                    padding: 0 15px;
                    font-weight: 600;
                    background-color: transparent;

                    &:first-child {
                        min-width: 161px;
                    }

                    &.active {
                        background-color: white;
                        border-bottom: 3px solid var(--colorOne);
                        color: var(--colorOne);
                    }
                }
            }
        }

        .tabcontent {
            margin-top: 20px;
            display: none;

            .xyz{
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 10px;
            }

            .catProduct {
                border: 1px solid #e9eef6;

                &:hover .catProductImg .forntImg {
                    opacity: 0;
                    visibility: hidden;
                }

                &:hover .catProductImg .backImg {
                    opacity: 1;
                    -webkit-opacity: 1;
                    -moz-opacity: 1;
                    -o-opacity: 1;
                    -moz-transform: scale(1, 1);
                    -webkit-transform: scale(1, 1);
                    -o-transform: scale(1, 1);
                    -ms-transform: scale(1, 1);
                    transform: scale(1, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .catProductImg {
                    text-align: center;
                    padding: 20px;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--colorThree);

                    .forntImg {
                        width: 140px;
                        margin: auto;
                        transition: all 0.45s ease 0s;
                        -webkit-transition: all 0.45s ease 0s;
                        -moz-transition: all 0.45s ease 0s;
                        -o-transition: all 0.45s ease 0s;
                    }

                    .backImg {
                        position: absolute;
                        opacity: 0;
                        width: 140px;
                        -webkit-opacity: 0;
                        -moz-opacity: 0;
                        -o-opacity: 0;
                        -moz-transform: scale(0, 1);
                        -webkit-transform: scale(0, 1);
                        -o-transform: scale(0, 1);
                        -ms-transform: scale(0, 1);
                        transform: scale(0, 1);
                        transition: all 0.45s ease 0s;
                        -webkit-transition: all 0.45s ease 0s;
                        -moz-transition: all 0.45s ease 0s;
                        -o-transition: all 0.45s ease 0s;

                    }
                }

                .catProductContent {
                    border-top: 1px solid #e9eef6;
                    line-height: 50px;
                    text-align: center;

                    a {
                        display: inline-block;
                        font-size: 16px;
                        font-weight: 600;
                        width: 100%;
                    }
                }
            }

        }

        .sectionOne {
            padding: 25px 0;

            .col-lg-3 {
                padding: 0 !important;
                height: 100%;

                &:hover {
                    background-color: white;
                    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
                }
            }

            .tabContentIn {
                position: relative;

                &::after {
                    position: absolute;
                    content: "";
                    border-right: 1px solid rgb(220, 220, 220);
                    height: 70%;
                    width: 100%;
                    left: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    -webkit-transform: translateY(-50%);
                    -moz-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    -o-transform: translateY(-50%);
                }
            }

            .oneCard {
                display: flex;
                gap: 5px;
                padding: 15px;
                align-items: center;


                .oneCardImg {

                    img {
                        width: 120px;
                    }
                }

                p {
                    margin: 0;
                    font-size: 12px;
                }

                h4 {
                    font-size: 16px
                }
            }
        }
    }
}

/***** End Categories Section *****/

/***** SubCategories Section *****/

.subPage {
    padding: 50px;

    .subPageText {
        margin-bottom: 20px;
        text-align: center;

        h2 {
            font-size: 22px;
            margin-bottom: 3px;
            position: relative;
            padding-left: 35px;
            display: inline-block;

            &::before {
                position: absolute;
                content: "";
                top: 3px;
                left: 0;
                width: 20px;
                height: 20px;
                background-color: var(--colorOne);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            &::after {
                position: absolute;
                content: "";
                top: 3px;
                left: 10px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--colorTwo);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }

        p {
            max-width: 650px;
            font-weight: 500;
            opacity: .9;
            margin: auto;
        }
    }

    .subCard {
        border: 1px solid #e9eef6;

        &:hover .subCardImg .forntImg {
            opacity: 0;
            visibility: hidden;
        }

        &:hover .subCardImg .backImg {
            opacity: 1;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            -o-opacity: 1;
            -moz-transform: scale(1, 1);
            -webkit-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            transform: scale(1, 1);
            transition: all 0.45s ease 0s;
            -webkit-transition: all 0.45s ease 0s;
            -moz-transition: all 0.45s ease 0s;
            -o-transition: all 0.45s ease 0s;
        }

        .subCardImg {
            text-align: center;
            padding: 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--colorThree);

            .forntImg {
                width: 160px;
                margin: auto;
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .backImg {
                position: absolute;
                opacity: 0;
                width: 160px;
                -webkit-opacity: 0;
                -moz-opacity: 0;
                -o-opacity: 0;
                -moz-transform: scale(0, 1);
                -webkit-transform: scale(0, 1);
                -o-transform: scale(0, 1);
                -ms-transform: scale(0, 1);
                transform: scale(0, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;

            }
        }

        .subCardContent {
            border-top: 1px solid #e9eef6;
            line-height: 50px;
            text-align: center;

            a {
                display: inline-block;
                font-size: 16px;
                font-weight: 600;
                width: 100%;
            }
        }
    }
}

@media (max-width:992px) {

    .subPage {
        padding: 16px 0;

        .subCard {
            border: 1px solid #e9eef6;

            &:hover .subCardImg .forntImg {
                opacity: 0;
                visibility: hidden;
            }

            &:hover .subCardImg .backImg {
                opacity: 1;
                -webkit-opacity: 1;
                -moz-opacity: 1;
                -o-opacity: 1;
                -moz-transform: scale(1, 1);
                -webkit-transform: scale(1, 1);
                -o-transform: scale(1, 1);
                -ms-transform: scale(1, 1);
                transform: scale(1, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .subCardImg {
                text-align: center;
                padding: 20px;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--colorThree);

                .forntImg {
                    width: 160px;
                    margin: auto;
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .backImg {
                    position: absolute;
                    opacity: 0;
                    width: 160px;
                    -webkit-opacity: 0;
                    -moz-opacity: 0;
                    -o-opacity: 0;
                    -moz-transform: scale(0, 1);
                    -webkit-transform: scale(0, 1);
                    -o-transform: scale(0, 1);
                    -ms-transform: scale(0, 1);
                    transform: scale(0, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;

                }
            }

            .subCardContent {
                border-top: 1px solid #e9eef6;
                line-height: 50px;
                text-align: center;

                a {
                    display: inline-block;
                    font-size: 16px;
                    font-weight: 600;
                    width: 100%;
                }
            }
        }
    }
}

/***** End SubCategories Section *****/

/***** Section Two *****/

.sectionTwo {
    padding: 25px 50px;

    .twoLeft {
        height: 100%;

        img {
            width: 100%;
            height: auto;
        }
    }

    .twoCard {
        padding: 20px;
        text-align: center;
        display: inline-block;
        width: 100%;
        transition: all 0.1s linear;
        -webkit-transition: all 0.1s linear;
        -moz-transition: all 0.1s linear;
        -ms-transition: all 0.1s linear;
        -o-transition: all 0.1s linear;
        background-color: var(--colorThree);
        border: 1px solid rgb(238, 238, 238);


        &:hover {
            background-color: white;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        }

        p {
            margin-bottom: 5px;
            font-size: 13px;
            line-height: normal;
            text-align: left;
        }

        h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            text-align: left;
        }

        img {
            max-width: 160px;
        }
    }
}

@media (max-width:992px) {

    .sectionTwo {
        padding: 12px 0px;


        .twoCard {
            padding: 20px;
            text-align: center;
            display: inline-block;
            width: 100%;
            transition: all 0.1s linear;
            -webkit-transition: all 0.1s linear;
            -moz-transition: all 0.1s linear;
            -ms-transition: all 0.1s linear;
            -o-transition: all 0.1s linear;
            background-color: var(--colorThree);
            border: 1px solid rgb(238, 238, 238);


            &:hover {
                background-color: white;
                box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
            }

            p {
                margin-bottom: 5px;
                font-size: 13px;
                line-height: normal;
                text-align: left;
            }

            h4 {
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 10px;
                text-align: left;
            }

            img {
                max-width: 120px;
            }
        }
    }
}

/***** End Section Two *****/

/***** Banner Two Section *****/

.bannerTwo {
    padding: 25px 50px;

    a {
        position: relative;
        z-index: 1;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        height: 100%;
        background: #fff;

        img {
            width: 100%;
            height: 100%;
        }
    }

    a::before,
    a::after {
        background: rgba(255, 255, 255, .4) none repeat scroll 0 0;
        content: " ";
        height: 0;
        padding: 0;
        position: absolute;
        transition: all 0.5s ease-out 0s;
        -webkit-transition: all 0.5s ease-out 0s;
        -moz-transition: all 0.5s ease-out 0s;
        -ms-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        width: 0;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        z-index: 1;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -khtml-border-radius: 5px;
        -moz-border-radius: 5px;
    }

    a::before {
        left: 0;
        top: 0;
    }

    a::after {
        bottom: 0;
        right: 0;
    }

    &:hover a::before,
    &:hover a::after {
        height: 100%;
        width: 100%;
        transform: rotatex(-180deg);
        -webkit-transform: rotatex(-180deg);
        -moz-transform: rotatex(-180deg);
        -ms-transform: rotatex(-180deg);
        -o-transform: rotatex(-180deg);
        opacity: 0;
    }
}

@media (max-width:992px) {

    .bannerTwo {
        padding: 0px 0px 16px 0;
    }
}

/***** End Banner Two Section *****/

/***** Section Three *****/

.sectionThree {
    background-color: rgb(244, 244, 244);
    padding: 25px 50px;

    .tab3 {
        display: flex;
        justify-content: center;
        gap: 10px;
        border-bottom: 1px solid rgb(238, 238, 238);
        margin-bottom: 20px;

        .tablinks3 {
            padding: 0 10px 10px 10px;
            background-color: transparent;
            font-size: 16px;
            font-weight: 600;
            border: none;
            outline: none;

            &.active {
                border-bottom: 2px solid #ffd200;
            }
        }
    }

    .tabcontent3 {
        display: none;
    }

    .cardThree {
        padding: 20px;
        background-color: rgb(255, 255, 255);
        text-align: center;
        transition: all 0.1s;
        -webkit-transition: all 0.1s;
        -moz-transition: all 0.1s;
        -ms-transition: all 0.1s;
        -o-transition: all 0.1s;

        &:hover {
            background-color: white;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        }

        p {
            font-size: 12px;
            line-height: normal;
            margin-bottom: 5px;
            text-align: left;
        }

        h4 {
            font-size: 16px;
            line-height: normal;
            margin-bottom: 10px;
            text-align: left;
        }

        img {
            width: 120px;
        }
    }

    .cardThreeImg {
        height: 100%;
        width: 100%;

        img {
            width: 100%;
            height: 100%;
        }
    }
}

@media (max-width:992px) {

    .sectionThree {
        background-color: rgb(244, 244, 244);
        padding: 16px 0px;

        .tab3 {
            display: flex;
            justify-content: center;
            gap: 10px;
            border-bottom: 1px solid rgb(238, 238, 238);
            margin-bottom: 20px;

            .tablinks3 {
                padding: 0 10px 10px 10px;
                background-color: transparent;
                font-size: 16px;
                font-weight: 600;
                border: none;
                outline: none;

                &.active {
                    border-bottom: 2px solid #ffd200;
                }
            }
        }

        .tabcontent3 {
            display: none;
        }

        .cardThree {
            padding: 20px;
            background-color: rgb(255, 255, 255);
            text-align: center;
            transition: all 0.1s;
            -webkit-transition: all 0.1s;
            -moz-transition: all 0.1s;
            -ms-transition: all 0.1s;
            -o-transition: all 0.1s;

            &:hover {
                background-color: white;
                box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            }

            p {
                font-size: 12px;
                line-height: normal;
                margin-bottom: 5px;
                text-align: left;
            }

            h4 {
                font-size: 16px;
                line-height: normal;
                margin-bottom: 10px;
                text-align: left;
            }

            img {
                width: 120px;
            }
        }

        .cardThreeImg {
            height: 100%;
            width: 100%;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

/***** End Section Three *****/

/***** Promise Section *****/

.promisSection {
    background-image: url("../img/promise-1.jpg");
    width: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px;
    position: relative;

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: radial-gradient(circle, rgba(2, 0, 36, 1) 0%, rgba(36, 87, 170, 1) 100%, rgba(0, 212, 255, 1) 100%);
        opacity: 0.7;
    }

    .promiseContent {
        text-align: center;
        position: relative;

        h2 {
            font-size: 24px;
            color: white;
            margin-bottom: 3px;
            position: relative;
            padding-left: 35px;
            display: inline-block;

            &::before {
                position: absolute;
                content: "";
                top: 3px;
                left: 0;
                width: 20px;
                height: 20px;
                background-color: var(--colorOne);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            &::after {
                position: absolute;
                content: "";
                top: 3px;
                left: 10px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--colorTwo);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }

        p {
            max-width: 1100px;
            font-weight: 500;
            color: white;
            font-size: 17px;
            opacity: .9;
            margin: auto;
        }

        a {
            display: inline-block;
            margin-top: 15px;
            background-color: var(--colorTwo);
            padding: 8px 20px;
            color: black;
            font-weight: 600;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;

            &:hover {
                color: white;
            }

            &:hover::before {
                width: 100%;
            }

            &::before {
                position: absolute;
                content: "";
                width: 0%;
                height: 100%;
                background-color: var(--colorOne);
                top: 0;
                left: 0;
                z-index: -1;
                transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
            }
        }
    }
}

@media (max-width:992px) {

    .promisSection {
        padding: 40px 12px;
    }
}

/***** End Promise Section *****/

/***** Top Selling Section *****/

.sellingSection {
    padding: 25px 50px;

    .sellingContent {
        text-align: center;
        margin-bottom: 30px;

        h2 {
            font-size: 22px;
            margin-bottom: 3px;
            position: relative;
            padding-left: 35px;
            display: inline-block;

            &::before {
                position: absolute;
                content: "";
                top: 3px;
                left: 0;
                width: 20px;
                height: 20px;
                background-color: var(--colorOne);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            &::after {
                position: absolute;
                content: "";
                top: 3px;
                left: 10px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--colorTwo);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }

        p {
            max-width: 650px;
            font-weight: 500;
            opacity: .9;
            margin: auto;
        }
    }

    .catProduct {
        border: 1px solid #e9eef6;

        &:hover .catProductImg .forntImg {
            opacity: 0;
            visibility: hidden;
        }

        &:hover .catProductImg .backImg {
            opacity: 1;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            -o-opacity: 1;
            -moz-transform: scale(1, 1);
            -webkit-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            transform: scale(1, 1);
            transition: all 0.45s ease 0s;
            -webkit-transition: all 0.45s ease 0s;
            -moz-transition: all 0.45s ease 0s;
            -o-transition: all 0.45s ease 0s;
        }

        .catProductImg {
            text-align: center;
            padding: 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--colorThree);

            .forntImg {
                width: 160px;
                margin: auto;
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .backImg {
                position: absolute;
                opacity: 0;
                width: 160px;
                -webkit-opacity: 0;
                -moz-opacity: 0;
                -o-opacity: 0;
                -moz-transform: scale(0, 1);
                -webkit-transform: scale(0, 1);
                -o-transform: scale(0, 1);
                -ms-transform: scale(0, 1);
                transform: scale(0, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;

            }
        }

        .catProductContent {
            border-top: 1px solid #e9eef6;
            line-height: 50px;
            text-align: center;

            a {
                display: inline-block;
                font-size: 16px;
                font-weight: 600;
                width: 100%;
                box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
            }
        }
    }
}

@media (max-width:992px) {

    .sellingSection {
        padding: 12px 0;

        .sellingContent {
            text-align: center;
            margin-bottom: 20px;

            h2 {
                font-size: 22px;
                margin-bottom: 3px;
                position: relative;
                padding-left: 35px;
                display: inline-block;

                &::before {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 0;
                    width: 20px;
                    height: 20px;
                    background-color: var(--colorOne);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }

                &::after {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 10px;
                    width: 20px;
                    height: 20px;
                    border: 2px solid var(--colorTwo);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }
            }
        }

        .catProduct {
            border: 1px solid #e9eef6;

            &:hover .catProductImg .forntImg {
                opacity: 0;
                visibility: hidden;
            }

            &:hover .catProductImg .backImg {
                opacity: 1;
                -webkit-opacity: 1;
                -moz-opacity: 1;
                -o-opacity: 1;
                -moz-transform: scale(1, 1);
                -webkit-transform: scale(1, 1);
                -o-transform: scale(1, 1);
                -ms-transform: scale(1, 1);
                transform: scale(1, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .catProductImg {
                text-align: center;
                padding: 20px;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--colorThree);

                .forntImg {
                    width: 140px;
                    margin: auto;
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .backImg {
                    position: absolute;
                    opacity: 0;
                    width: 160px;
                    -webkit-opacity: 0;
                    -moz-opacity: 0;
                    -o-opacity: 0;
                    -moz-transform: scale(0, 1);
                    -webkit-transform: scale(0, 1);
                    -o-transform: scale(0, 1);
                    -ms-transform: scale(0, 1);
                    transform: scale(0, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;

                }
            }

            .catProductContent {
                border-top: 1px solid #e9eef6;
                line-height: 50px;
                text-align: center;

                a {
                    display: inline-block;
                    font-size: 16px;
                    font-weight: 600;
                    width: 100%;
                }
            }
        }
    }
}

/***** End Top Selling Section *****/

/***** Product Page Section *****/

.productPage {
    padding: 50px;

    .productPageContent {
        text-align: center;
        margin-bottom: 30px;

        h2 {
            font-size: 22px;
            margin-bottom: 3px;
            position: relative;
            padding-left: 35px;
            display: inline-block;

            &::before {
                position: absolute;
                content: "";
                top: 3px;
                left: 0;
                width: 20px;
                height: 20px;
                background-color: var(--colorOne);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            &::after {
                position: absolute;
                content: "";
                top: 3px;
                left: 10px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--colorTwo);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }

        p {
            max-width: 650px;
            font-weight: 500;
            opacity: .9;
            margin: auto;
        }
    }

    .ppCard {
        border: 1px solid #e9eef6;

        &:hover .ppCardImg .forntImg {
            opacity: 0;
            visibility: hidden;
        }

        &:hover .ppCardImg .backImg {
            opacity: 1;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            -o-opacity: 1;
            -moz-transform: scale(1, 1);
            -webkit-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            transform: scale(1, 1);
            transition: all 0.45s ease 0s;
            -webkit-transition: all 0.45s ease 0s;
            -moz-transition: all 0.45s ease 0s;
            -o-transition: all 0.45s ease 0s;
        }

        .ppCardImg {
            text-align: center;
            padding: 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--colorThree);

            .forntImg {
                width: 160px;
                margin: auto;
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .backImg {
                position: absolute;
                opacity: 0;
                width: 160px;
                -webkit-opacity: 0;
                -moz-opacity: 0;
                -o-opacity: 0;
                -moz-transform: scale(0, 1);
                -webkit-transform: scale(0, 1);
                -o-transform: scale(0, 1);
                -ms-transform: scale(0, 1);
                transform: scale(0, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;

            }
        }

        .ppCardContent {
            border-top: 1px solid #e9eef6;
            line-height: 50px;
            text-align: center;

            a {
                display: inline-block;
                font-size: 16px;
                font-weight: 600;
                width: 100%;
            }
        }
    }
}

@media (max-width:992px) {

    .productPage {
        padding: 25px 0;

        .productPageContent {
            margin-bottom: 20px;
            text-align: center;

            h2 {
                font-size: 22px;
                margin-bottom: 5px;
            }

            p {
                max-width: initial;
                margin: auto;
            }
        }

        .ppCard {
            border: 1px solid #e9eef6;

            &:hover .ppCardImg .forntImg {
                opacity: 0;
                visibility: hidden;
            }

            &:hover .ppCardImg .backImg {
                opacity: 1;
                -webkit-opacity: 1;
                -moz-opacity: 1;
                -o-opacity: 1;
                -moz-transform: scale(1, 1);
                -webkit-transform: scale(1, 1);
                -o-transform: scale(1, 1);
                -ms-transform: scale(1, 1);
                transform: scale(1, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .ppCardImg {
                text-align: center;
                padding: 20px;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--colorThree);

                .forntImg {
                    width: 160px;
                    margin: auto;
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .backImg {
                    position: absolute;
                    opacity: 0;
                    width: 160px;
                    -webkit-opacity: 0;
                    -moz-opacity: 0;
                    -o-opacity: 0;
                    -moz-transform: scale(0, 1);
                    -webkit-transform: scale(0, 1);
                    -o-transform: scale(0, 1);
                    -ms-transform: scale(0, 1);
                    transform: scale(0, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;

                }
            }

            .ppCardContent {
                border-top: 1px solid #e9eef6;
                line-height: 50px;
                text-align: center;

                a {
                    display: inline-block;
                    font-size: 16px;
                    font-weight: 600;
                    width: 100%;
                }
            }
        }
    }
}

/***** End Product Page Section *****/

/** Blog Section **/

.blogSection {
    padding: 25px 50px;
    overflow: hidden;

    .blogLeft {
        padding: 0 25 0 0px;

        .blogLeftSwiper {
            padding: 10px;

            .blogContent {
                margin-bottom: 20px;

                p {
                    font-weight: 600;
                    letter-spacing: 1px;
                    color: #2457AA;
                    margin-bottom: 0;
                    line-height: normal;
                }

                h2 {
                    font-size: 24px;
                    margin-bottom: 0;
                    line-height: normal;
                }
            }

            .blogCard {
                background-color: white;
                padding: 15px;
                box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
                /* box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px; */
                border-radius: 15px;
                -webkit-border-radius: 15px;
                -moz-border-radius: 15px;
                -ms-border-radius: 15px;
                -o-border-radius: 15px;

                &:hover .blogImg img {
                    scale: 1.05;
                }

                .blogImg {
                    overflow: hidden;
                    border-radius: 15px;
                    -webkit-border-radius: 15px;
                    -moz-border-radius: 15px;
                    -ms-border-radius: 15px;
                    -o-border-radius: 15px;

                    img {
                        width: 100%;
                        transition: all 0.5s linear;
                        -webkit-transition: all 0.5s linear;
                        -moz-transition: all 0.5s linear;
                        -ms-transition: all 0.5s linear;
                        -o-transition: all 0.5s linear;
                        border-radius: 15px;
                        -webkit-border-radius: 15px;
                        -moz-border-radius: 15px;
                        -ms-border-radius: 15px;
                        -o-border-radius: 15px;
                    }
                }

                .blogCardContent {
                    padding-top: 10px;

                    .blogPerson {
                        display: flex;
                        align-items: center;
                        gap: 15px;
                        margin-bottom: 10px;

                        a {
                            font-size: 14px;
                        }

                        div {
                            display: flex;
                            align-items: center;
                            gap: 5px;

                            i {
                                font-size: 12px;
                            }

                            p {
                                font-size: 14px;
                            }
                        }
                    }

                    h4 {
                        font-size: 16px;
                        line-height: normal;
                        margin-bottom: 10px;
                    }

                    p {
                        font-size: 16px;
                        margin-bottom: 0;
                        font-family: 500;
                    }

                    .blogLink {
                        display: inline-block;
                        margin-top: 15px;
                        color: white;
                        background-color: var(--colorOne);
                        padding: 6px 15px;
                        font-weight: 500;
                        font-size: 15px;
                        position: relative;
                        border-radius: 5px;
                        -webkit-border-radius: 5px;
                        -moz-border-radius: 5px;
                        -ms-border-radius: 5px;
                        -o-border-radius: 5px;
                    }
                }
            }

            .swiper-button-prev {
                right: 35px;
                left: inherit;
                top: 35px;

                &::after {
                    font-size: 22px;
                    content: "\f137";
                    font-family: FontAwesome;
                    color: #2457AA;
                }
            }

            .swiper-button-next {
                top: 35px;
                right: 0;

                &::after {
                    font-size: 22px;
                    content: "\f138";
                    font-family: FontAwesome;
                    color: #2457AA;
                }
            }
        }
    }

    .blogRight {
        background-color: #F6F9FF;
        /* padding: 15px; */
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;

        .blogRightSwiper {
            padding: 10px;

            .blogContent {
                margin-bottom: 15px;

                p {
                    font-weight: 600;
                    letter-spacing: 1px;
                    line-height: normal;
                    color: #2457AA;
                    margin-bottom: 0;
                }

                h2 {
                    font-size: 24px;
                    margin-bottom: 0;
                    color: black;
                    line-height: normal;
                }
            }

            .blogCard {
                background-color: white;
                padding: 15px;
                box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                -moz-border-radius: 15px;
                -ms-border-radius: 15px;
                -o-border-radius: 15px;

                &:hover .blogImg img {
                    scale: 1.05;
                }

                .blogImg {
                    overflow: hidden;
                    border-radius: 15px;
                    -webkit-border-radius: 15px;
                    -moz-border-radius: 15px;
                    -ms-border-radius: 15px;
                    -o-border-radius: 15px;

                    img {
                        width: 100%;
                        transition: all 0.7s linear;
                        -webkit-transition: all 0.7s linear;
                        -moz-transition: all 0.7s linear;
                        -ms-transition: all 0.7s linear;
                        -o-transition: all 0.7s linear;
                        border-radius: 15px;
                        -webkit-border-radius: 15px;
                        -moz-border-radius: 15px;
                        -ms-border-radius: 15px;
                        -o-border-radius: 15px;
                    }
                }

                .blogCardContent {
                    padding-top: 10px;

                    .blogPerson {
                        display: flex;
                        align-items: center;
                        gap: 15px;
                        margin-bottom: 10px;

                        a {
                            font-size: 14px;
                        }

                        div {
                            display: flex;
                            align-items: center;
                            gap: 5px;

                            i {
                                font-size: 12px;
                            }

                            p {
                                font-size: 14px;
                            }
                        }
                    }

                    h4 {
                        font-size: 16px;
                        line-height: normal;
                        margin-bottom: 10px;
                    }

                    p {
                        font-size: 16px;
                        margin-bottom: 0;
                        font-family: 500;
                    }

                    .blogLink {
                        display: inline-block;
                        margin-top: 15px;
                        color: white;
                        background-color: var(--colorOne);
                        padding: 6px 15px;
                        font-weight: 500;
                        font-size: 15px;
                        position: relative;
                        border-radius: 5px;
                        -webkit-border-radius: 5px;
                        -moz-border-radius: 5px;
                        -ms-border-radius: 5px;
                        -o-border-radius: 5px;
                    }
                }
            }

            .swiper-button-prev {
                right: 35px;
                left: inherit;
                top: 35px;

                &::after {
                    font-size: 22px;
                    content: "\f137";
                    font-family: FontAwesome;
                    color: #2457AA;
                }
            }

            .swiper-button-next {
                top: 35px;
                right: 0;

                &::after {
                    font-size: 22px;
                    content: "\f138";
                    font-family: FontAwesome;
                    color: #2457AA;
                }
            }
        }
    }
}

@media (max-width:992px) {

    .blogSection {
        padding: 16px 0px;

        .blogLeft {

            .blogLeftSwiper {

                .blogContent {
                    margin-bottom: 20px;

                    p {
                        letter-spacing: 0px;
                    }

                    h2 {
                        font-size: 26px;
                        margin-bottom: 0;
                        line-height: normal;
                    }
                }

                .blogCard {

                    &:hover img {
                        scale: 1.1;
                    }

                    .blogImg {
                        overflow: hidden;

                        img {
                            width: 100%;
                            aspect-ratio: 19/10;
                            transition: all 0.7s linear;
                            -webkit-transition: all 0.7s linear;
                            -moz-transition: all 0.7s linear;
                            -ms-transition: all 0.7s linear;
                            -o-transition: all 0.7s linear;
                        }
                    }

                    .blogCardContent {
                        padding-top: 8px;

                        h3 {
                            font-size: 20px;
                            line-height: normal;
                            margin-bottom: 6px;
                        }

                        p {
                            font-size: 16px;
                            /* line-height: 1.3; */
                            margin-bottom: 0;
                            font-family: 500;
                        }

                        a {
                            display: inline-block;
                            margin-top: 10px;
                            color: var(--colorOne);
                            font-weight: 600;
                            position: relative;

                            &:hover::after {
                                right: -18px;
                            }

                            &::after {
                                position: absolute;
                                content: "\f101";
                                font-family: FontAwesome;
                                top: 6px;
                                font-size: 12px;
                                right: -15px;
                                transition: all 0.3s linear;
                                -webkit-transition: all 0.3s linear;
                                -moz-transition: all 0.3s linear;
                                -ms-transition: all 0.3s linear;
                                -o-transition: all 0.3s linear;
                            }
                        }
                    }
                }

                .swiper-button-prev {
                    right: 35px;
                    left: inherit;
                    top: 35px;

                    &::after {
                        font-size: 22px;
                        content: "\f137";
                        font-family: FontAwesome;
                        color: #2457AA;
                    }
                }

                .swiper-button-next {
                    top: 35px;
                    right: 0;

                    &::after {
                        font-size: 22px;
                        content: "\f138";
                        font-family: FontAwesome;
                        color: #2457AA;
                    }
                }
            }
        }

        .blogRight {
            background-color: #F6F9FF;
            padding: 16px;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;

            .blogRightSwiper {

                .blogContent {
                    margin-bottom: 20px;

                    p {
                        font-weight: 600;
                        letter-spacing: 0px;
                    }

                    h2 {
                        font-size: 24px;
                    }
                }

                .blogCard {
                    background-color: white;
                    overflow: hidden;
                    border-radius: 5px;
                    -webkit-border-radius: 5px;
                    -moz-border-radius: 5px;
                    -ms-border-radius: 5px;
                    -o-border-radius: 5px;

                    &:hover img {
                        scale: 1.1;
                    }

                    .blogImg {
                        overflow: hidden;

                        img {
                            width: 100%;
                            aspect-ratio: 19/10;
                            transition: all 0.7s linear;
                            -webkit-transition: all 0.7s linear;
                            -moz-transition: all 0.7s linear;
                            -ms-transition: all 0.7s linear;
                            -o-transition: all 0.7s linear;
                        }
                    }

                    .blogCardContent {
                        padding: 8px;

                        h3 {
                            font-size: 20px;
                            line-height: normal;
                            margin-bottom: 6px;
                        }

                        p {
                            font-size: 15px;
                            line-height: 1.3;
                            margin-bottom: 0;
                        }

                        a {
                            display: inline-block;
                            margin-top: 10px;
                            color: var(--colorOne);
                            font-weight: 600;
                            position: relative;

                            &:hover::after {
                                right: -18px;
                            }

                            &::after {
                                position: absolute;
                                content: "\f101";
                                font-family: FontAwesome;
                                top: 5px;
                                font-size: 12px;
                                right: -15px;
                                transition: all 0.3s linear;
                                -webkit-transition: all 0.3s linear;
                                -moz-transition: all 0.3s linear;
                                -ms-transition: all 0.3s linear;
                                -o-transition: all 0.3s linear;
                            }
                        }
                    }
                }

                .swiper-button-prev {
                    right: 35px;
                    left: inherit;
                    top: 35px;

                    &::after {
                        font-size: 22px;
                        content: "\f137";
                        font-family: FontAwesome;
                        color: #2457AA;
                    }
                }

                .swiper-button-next {
                    top: 35px;
                    right: 0;

                    &::after {
                        font-size: 22px;
                        content: "\f138";
                        font-family: FontAwesome;
                        color: #2457AA;
                    }
                }
            }
        }
    }
}

/** End Blog Section **/

/** Blog Page Section **/

.blogPage {
    padding: 50px;

    .blogPageContent {
        margin-bottom: 20px;

        p {
            font-weight: 600;
            color: var(--colorOne);
        }

        h2 {
            font-size: 26px;
        }
    }

    .blogCard {
        background-color: white;
        padding: 15px;
        box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;

        &:hover .blogImg img {
            scale: 1.05;
        }

        .blogImg {
            overflow: hidden;
            border-radius: 15px;
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            -ms-border-radius: 15px;
            -o-border-radius: 15px;

            img {
                width: 100%;
                transition: all 0.5s linear;
                -webkit-transition: all 0.5s linear;
                -moz-transition: all 0.5s linear;
                -ms-transition: all 0.5s linear;
                -o-transition: all 0.5s linear;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                -moz-border-radius: 15px;
                -ms-border-radius: 15px;
                -o-border-radius: 15px;
            }
        }

        .blogCardContent {
            padding-top: 10px;

            .blogPerson {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 10px;

                a {
                    font-size: 14px;
                }

                div {
                    display: flex;
                    align-items: center;
                    gap: 5px;

                    i {
                        font-size: 12px;
                    }

                    p {
                        font-size: 14px;
                    }
                }
            }

            h4 {
                font-size: 16px;
                line-height: normal;
                margin-bottom: 10px;
            }

            p {
                font-size: 16px;
                margin-bottom: 0;
                font-family: 500;
            }

            .blogLink {
                display: inline-block;
                margin-top: 15px;
                color: white;
                background-color: var(--colorOne);
                padding: 6px 15px;
                font-weight: 500;
                font-size: 15px;
                position: relative;
                border-radius: 5px;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;
            }
        }
    }
}

@media (max-width:992px) {

    .blogPage {
        padding: 25px 0px;

        .blogPageContent {
            margin-bottom: 20px;

            p {
                font-weight: 600;
                color: var(--colorOne);
            }

            h2 {
                font-size: 22px;
            }
        }

        .blogCard {

            &:hover img {
                scale: 1.1;
            }

            .blogImg {
                overflow: hidden;

                img {
                    width: 100%;
                    aspect-ratio: 19/10;
                    transition: all 0.7s linear;
                    -webkit-transition: all 0.7s linear;
                    -moz-transition: all 0.7s linear;
                    -ms-transition: all 0.7s linear;
                    -o-transition: all 0.7s linear;
                }
            }

            .blogCardContent {
                padding-top: 8px;

                h3 {
                    font-size: 20px;
                    line-height: normal;
                    margin-bottom: 6px;
                }

                p {
                    font-size: 16px;
                    margin-bottom: 0;
                    font-family: 500;
                }

                a {
                    display: inline-block;
                    margin-top: 10px;
                    color: var(--colorOne);
                    font-weight: 600;
                    position: relative;

                    &:hover::after {
                        right: -18px;
                    }

                    &::after {
                        position: absolute;
                        content: "\f101";
                        font-family: FontAwesome;
                        top: 6px;
                        font-size: 12px;
                        right: -15px;
                        transition: all 0.3s linear;
                        -webkit-transition: all 0.3s linear;
                        -moz-transition: all 0.3s linear;
                        -ms-transition: all 0.3s linear;
                        -o-transition: all 0.3s linear;
                    }
                }
            }
        }
    }
}

/** End Blog Page Section **/

/***** Blog Details Section *****/

/* Blog Details  */
.blogMain {
    padding: 50px;

    .blogMainLeft {

        img {
            /* width: 100%; */
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
        }

        .blogDate {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 15px 0 15px 0;

            div {
                display: flex;
                align-items: center;
                gap: 4px;

                i {
                    font-size: 14px;
                }
            }
        }
        .blog-title{
                background: #ecf7ff;
                background: linear-gradient(90deg, #ecf7ff 0, #fff);
                border-left: 5px solid #009688;
                color: #00796b;
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ecf7ff",endColorstr="#ffffff",GradientType=1);
                line-height: 1.2em;
                margin: 20px 0;
                padding: 10px 20px;
                text-transform: capitalize;
        }

        h2 {
            font-size: 22px;
            margin-bottom: 5px;
        }

        p {
            text-align: justify;
        }

        h3 {
            margin-top: 10px;
            margin-bottom: 5px;
            font-size: 20px;
        }

        ul {
            margin: 0px 0 0 0;
            padding: 0 0 0 16px;

            li {
                margin-top: 8px;
                list-style: decimal;
                text-align: justify;
            }
        }
    }

    .blogMainRight {
        border-radius: 5px;
        overflow: hidden;
        padding-bottom: 5px;
        background-color: #F4FCFF;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

        .blogHum {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--colorOne);
            color: white;
            line-height: 40px;
            padding: 8px 20px;

            h4 {
                color: white;
                font-size: 20px;
            }

            i {
                display: none;
            }
        }

        .blogSide {
            background-color: #F4FCFF;

            a {
                margin: 0;
                padding: 0 20px 0 12px;
                line-height: 35px;
                font-size: 15px;
                border-top: 1px solid #e9eef6;
                display: inline-block;
                width: 100%;
                color:var(--colorOne);
                cursor: pointer !important;
                border-bottom: 1px solid #eee;
                box-shadow: 1px 0 5px #b0e3fa;
                transition: all ease-in-out 0.4s;
                &:hover{
                    padding-left:8px;
                }
            }

        }
    }

    .latestBlog {
        border-radius: 5px;
        overflow: hidden;
        /* padding-bottom: 5px; */
        background-color: #F4FCFF;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        margin-top: 20px;
        position: sticky;
        top: 80px;

        h4 {
            background-color: var(--colorOne);
            color: white;
            font-size: 20px;
            line-height: 40px;
            padding: 0 20px;
        }

        .blogCard {
            background-color: white;
            padding: 15px;
            border-radius: 15px;
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            -ms-border-radius: 15px;
            -o-border-radius: 15px;

            &:hover .blogImg img {
                scale: 1.05;
            }

            .blogImg {
                overflow: hidden;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                -moz-border-radius: 15px;
                -ms-border-radius: 15px;
                -o-border-radius: 15px;

                img {
                    width: 100%;
                    transition: all 0.5s linear;
                    -webkit-transition: all 0.5s linear;
                    -moz-transition: all 0.5s linear;
                    -ms-transition: all 0.5s linear;
                    -o-transition: all 0.5s linear;
                    border-radius: 15px;
                    -webkit-border-radius: 15px;
                    -moz-border-radius: 15px;
                    -ms-border-radius: 15px;
                    -o-border-radius: 15px;
                }
            }

            .blogCardContent {
                padding-top: 10px;

                .blogPerson {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    margin-bottom: 10px;

                    a {
                        font-size: 14px;
                    }

                    div {
                        display: flex;
                        align-items: center;
                        gap: 5px;

                        i {
                            font-size: 12px;
                        }

                        p {
                            font-size: 14px;
                        }
                    }
                }

                h5 {
                    font-size: 16px;
                    line-height: normal;
                    margin-bottom: 5px;
                }

                p {
                    font-size: 16px;
                    margin-bottom: 0;
                    font-family: 500;
                }

                .blogLink {
                    display: inline-block;
                    margin-top: 15px;
                    color: white;
                    background-color: var(--colorOne);
                    padding: 6px 15px;
                    font-weight: 500;
                    font-size: 15px;
                    position: relative;
                    border-radius: 5px;
                    -webkit-border-radius: 5px;
                    -moz-border-radius: 5px;
                    -ms-border-radius: 5px;
                    -o-border-radius: 5px;
                }
            }
        }
    }
}

@media (max-width:992px) {

    .blogMain {
        padding: 12px 0px;

        .blogMainLeft {
            h2 {
                font-size: 20px;
                margin-bottom: 5px;
            }

            p {
                text-align: justify;
            }

            h3 {
                margin-top: 10px;
                margin-bottom: 5px;
                font-size: 20px;
            }

            ul {
                margin: 0px 0 0 0;
                padding: 0 0 0 16px;

                li {
                    margin-top: 8px;
                    list-style: decimal;
                    text-align: justify;
                }
            }
        }

        .blogMainRight {
            border-radius: 5px;
            overflow: hidden;
            padding-bottom: 0px;
            background-color: #F4FCFF;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

            .blogHum {
                display: flex;
                justify-content: space-between;
                align-items: center;
                background-color: var(--colorOne);
                color: white;
                line-height: 40px;
                padding: 8px 20px;

                h4 {
                    color: white;
                    font-size: 20px;
                }

                i {
                    display: block;
                }
            }

            .blogSide {
                background-color: #F4FCFF;
                max-height: 0;
                overflow: hidden;
                transition: all 0.5s ease;
                -webkit-transition: all 0.5s ease;
                -moz-transition: all 0.5s ease;
                -ms-transition: all 0.5s ease;
                -o-transition: all 0.5s ease;

                &.open {
                    max-height: 500px;
                }

                a {
                    margin: 0;
                    padding: 0 20px 0 20px;
                    line-height: 35px;
                    font-size: 18px;
                    border-top: 1px solid #e9eef6;
                    display: inline-block;
                    width: 100%;
                }
            }
        }

        .latestBlog {
            border-radius: 5px;
            overflow: hidden;
            /* padding-bottom: 5px; */
            background-color: #F4FCFF;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            margin-top: 20px;

            h4 {
                background-color: var(--colorOne);
                color: white;
                font-size: 20px;
                line-height: 40px;
                padding: 0 20px;
            }

            .blogCard {
                background-color: white;
                padding: 15px;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                -moz-border-radius: 15px;
                -ms-border-radius: 15px;
                -o-border-radius: 15px;

                &:hover .blogImg img {
                    scale: 1.05;
                }

                .blogImg {
                    overflow: hidden;
                    border-radius: 15px;
                    -webkit-border-radius: 15px;
                    -moz-border-radius: 15px;
                    -ms-border-radius: 15px;
                    -o-border-radius: 15px;

                    img {
                        width: 100%;
                        transition: all 0.5s linear;
                        -webkit-transition: all 0.5s linear;
                        -moz-transition: all 0.5s linear;
                        -ms-transition: all 0.5s linear;
                        -o-transition: all 0.5s linear;
                        border-radius: 15px;
                        -webkit-border-radius: 15px;
                        -moz-border-radius: 15px;
                        -ms-border-radius: 15px;
                        -o-border-radius: 15px;
                    }
                }

                .blogCardContent {
                    padding-top: 10px;

                    .blogPerson {
                        display: flex;
                        align-items: center;
                        gap: 15px;
                        margin-bottom: 10px;

                        a {
                            font-size: 14px;
                        }

                        div {
                            display: flex;
                            align-items: center;
                            gap: 5px;

                            i {
                                font-size: 12px;
                            }

                            p {
                                font-size: 14px;
                            }
                        }
                    }

                    h5 {
                        font-size: 16px;
                        line-height: normal;
                        margin-bottom: 5px;
                    }

                    p {
                        font-size: 16px;
                        margin-bottom: 0;
                        font-family: 500;
                    }

                    .blogLink {
                        display: inline-block;
                        margin-top: 15px;
                        color: white;
                        background-color: var(--colorOne);
                        padding: 6px 15px;
                        font-weight: 500;
                        font-size: 15px;
                        position: relative;
                        border-radius: 5px;
                        -webkit-border-radius: 5px;
                        -moz-border-radius: 5px;
                        -ms-border-radius: 5px;
                        -o-border-radius: 5px;
                    }
                }
            }
        }
    }
}

@media (max-width:768px) {

    .blogMain {

        .latestBlog {
           display: none;
        }
    }
}

/***** End Blog Details Section *****/

/***** Why Choose Us Section *****/

.whySection {
    padding: 50px;
    background-color: #02112B;

    .whyLeft {

        h2 {
            font-size: 28px;
            color: var(--colorTwo);
        }

        p {
            margin-top: 10px;
            font-weight: 500;
            color: white;
        }
    }

    .whyRight {
        ul {
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;

            li {
                list-style: none;
                background-color: var(--colorThree);
                border: 1px solid #e9eef6;
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 12px 10px;
                font-weight: 500;

                i {
                    background-color: var(--colorOne);
                    color: white;
                    width: 18px;
                    font-size: 10px;
                    text-align: center;
                    line-height: 18px;
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }
            }
        }
    }
}

@media (max-width:992px) {
    .whySection {
        padding: 12px 0px;
        background-color: #02112B;

        .whyLeft {

            h2 {
                font-size: 24px;
                color: var(--colorTwo);
            }
        }
    }
}

/***** End Why Choose Us Section *****/

/***** About Page Section *****/

.aboutPage {

    padding: 50px;

    .aboutPageLeft {

        .top {
            font-size: 18px;
            font-weight: 600;
            color: var(--colorOne);
        }

        h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        p {
            font-weight: 500;
            margin-top: 6px;
            text-align: justify;
        }
    }

    .aboutPageRight {

        img {
            width: 100%;
        }
    }

}

@media (max-width:992px) {

    .aboutPage {

        padding: 12px 0;

        .aboutPageLeft {

            .top {
                font-size: 18px;
                font-weight: 600;
                color: var(--colorOne);
            }

            h2 {
                font-size: 22px;
                font-weight: 700;
                margin-bottom: 5px;
            }

            p {
                font-weight: 500;
                margin-top: 6px;
            }
        }

        .aboutPageRight {

            img {
                width: 100%;
            }
        }
    }
}

/***** End About Page Section *****/

/***** Customer Policy Section *****/

.customerPolicy {
    padding: 50px;

    .policyLeft {
        position: sticky;
        top: 100px;

        img {
            width: 100%;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
        }
    }

    .policyRight {

        h2 {
            font-size: 24px;
            transform: translateY(-3px);
            -webkit-transform: translateY(-3px);
            -moz-transform: translateY(-3px);
            -ms-transform: translateY(-3px);
            -o-transform: translateY(-3px);
        }

        p {
            font-weight: 500;
            margin-top: 7px;
            text-align: justify;
        }

        .hidden-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;

            &.show {
                max-height: 2000px;
            }
        }

        .read-more-btn {
            position: relative;
            background-color: var(--colorOne);
            color: white;
            border: none;
            padding: 8px 18px;
            cursor: pointer;
            margin-top: 15px;
            border-radius: 2px;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            -ms-border-radius: 2px;
            -o-border-radius: 2px;
            overflow: hidden;
            z-index: 1;

            &:hover {
                color: black;
            }

            &:hover::before {
                color: black;
                width: 100%;
            }

            &::before {
                position: absolute;
                content: "";
                width: 0%;
                height: 100%;
                background-color: var(--colorTwo);
                color: black;
                top: 0;
                left: 0;
                z-index: -1;
                transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
            }
        }
    }
}

@media (max-width:992px) {

    .customerPolicy {
        padding: 12px 0px;

        .policyLeft {
            position: sticky;
            top: 100px;
        }

        .policyRight {

            h2 {
                font-size: 24px;
                line-height: 1;
            }

            .hidden-content {

                &.show {
                    max-height: 2000px;
                }
            }
        }
    }
}

/***** End Customer Policy Section *****/

/***** Pepole Policy Section *****/

.pepolePolicy {
    border-top: 1px solid rgb(230, 228, 228);
    padding: 50px;

    .policyLeft {
        position: sticky;
        top: 100px;

        img {
            width: 100%;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }
    }

    .policyRight {

        h2 {
            font-size: 24px;
            transform: translateY(-3px);
            -webkit-transform: translateY(-3px);
            -moz-transform: translateY(-3px);
            -ms-transform: translateY(-3px);
            -o-transform: translateY(-3px);
        }

        p {
            font-weight: 500;
            margin-top: 7px;
            text-align: justify;
        }

        .hidden-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;

            &.show1 {
                max-height: 2000px;
            }
        }

        .read-more-btn {
            position: relative;
            background-color: var(--colorOne);
            color: white;
            border: none;
            padding: 8px 18px;
            cursor: pointer;
            margin-top: 15px;
            border-radius: 2px;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            -ms-border-radius: 2px;
            -o-border-radius: 2px;
            overflow: hidden;
            z-index: 1;

            &:hover {
                color: black;
            }

            &:hover::before {
                color: black;
                width: 100%;
            }

            &::before {
                position: absolute;
                content: "";
                width: 0%;
                height: 100%;
                background-color: var(--colorTwo);
                color: black;
                top: 0;
                left: 0;
                z-index: -1;
                transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
            }
        }
    }
}

@media (max-width:992px) {

    .pepolePolicy {
        padding: 12px 0;

        .policyLeft {
            position: sticky;
            top: 100px;
        }

        .policyRight {

            h2 {
                line-height: 1;
            }

            p {
                font-weight: 500;
                margin-top: 7px;
            }

            .hidden-content {

                &.show1 {
                    max-height: 2000px;
                }
            }
        }
    }
}

/***** End Pepole Policy Section *****/

/***** Value Section *****/

.valueSection {
    padding: 0px 50px 50px 50px;

    .valueOne {
        background-color: var(--colorOne);
        padding: 25px;
        height: 100%;

        h3 {
            font-size: 20px;
            margin-bottom: 3px;
            color: white;
        }

        p {
            font-weight: 500;
            color: white;
        }
    }

    .valueTwo {
        background-color: #FFD200;

        h3,
        p {
            color: black;
        }
    }

    .valueThree {
        background-color: #02112B;

        h3,
        p {
            color: white;
        }
    }
}

@media (max-width:992px) {

    .valueSection {
        padding: 0px 0px 12px 0;

        .valueOne {
            background-color: var(--colorOne);
            padding: 20px;
            height: 100%;

            h3 {
                font-size: 20px;
                margin-bottom: 3px;
                color: white;
            }

            p {
                font-weight: 500;
                color: white;
            }
        }

        .valueTwo {
            background-color: #FFD200;

            h3,
            p {
                color: black;
            }
        }

        .valueThree {
            background-color: #02112B;

            h3,
            p {
                color: white;
            }
        }
    }
}

/***** End Value Section *****/

/***** Apporch Section *****/

.apporchSection {
    background-color: #E9F6FE;
    padding: 50px;

    .apporchText {
        margin-bottom: 30px;

        h2 {
            text-align: center;
            font-size: 24px;
        }
    }

    .apporchCard {
        text-align: center;

        .text {
            font-weight: 500;
            margin-top: 20px;
        }

        .apporchCardIn {
            margin: auto;
            border: 2px dashed rgba(0, 0, 0, 0.667);
            width: 200px;
            line-height: 120px;
            text-align: center;
            border-radius: 500px;
            -webkit-border-radius: 500px;
            -moz-border-radius: 500px;
            -ms-border-radius: 500px;
            -o-border-radius: 500px;
            position: relative;
            z-index: 1;

            p {
                font-size: 16px;
                font-weight: 600;
            }

            &::before {
                position: absolute;
                box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
                content: "";
                width: 85%;
                height: 85%;
                background-color: rgb(255, 255, 255);
                z-index: -1;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                -o-transform: translate(-50%, -50%);
                border-radius: 500px;
                -webkit-border-radius: 500px;
                -moz-border-radius: 500px;
                -ms-border-radius: 500px;
                -o-border-radius: 500px;
            }

            &::after {
                position: absolute;
                content: "";
                width: 70%;
                height: 70%;
                border: 3px solid var(--colorOne);
                border-right: 3px solid white;
                top: 0;
                left: 0;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                -o-transform: translate(-50%, -50%);
                border-radius: 500px;
                -webkit-border-radius: 500px;
                -moz-border-radius: 500px;
                -ms-border-radius: 500px;
                -o-border-radius: 500px;
            }
        }

        .twoCard {

            &::after {
                border: 3px solid var(--colorTwo);
                border-right: 3px solid white;
            }
        }

        .threeCard {

            &::after {
                border: 3px solid green;
                border-right: 3px solid white;
            }
        }

        .fourCard {

            &::after {
                border: 3px solid red;
                border-right: 3px solid white;
            }
        }

        .fiveCard {

            &::after {
                border: 3px solid purple;
                border-right: 3px solid white;
            }
        }
    }
}

@media (max-width:992px) {

    .apporchSection {
        padding: 12px 12px;

        .apporchText {
            margin-bottom: 20px;
        }

        .apporchCard {
            text-align: center;

            .text {
                font-weight: 500;
                margin-top: 10px;
            }

            .apporchCardIn {
                width: 160px;
                line-height: 100px;

                p {
                    font-size: 16px;
                    font-weight: 600;
                }
            }
        }
    }
}

/***** End Apporch Section *****/

/***** Gallery Section *****/

.gallerySection {
    padding: 50px;

    .galleryContent {
        text-align: center;
        margin-bottom: 30px;

        h2 {
            font-size: 22px;
            margin-bottom: 3px;
            position: relative;
            padding-left: 35px;
            display: inline-block;

            &::before {
                position: absolute;
                content: "";
                top: 3px;
                left: 0;
                width: 20px;
                height: 20px;
                background-color: var(--colorOne);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            &::after {
                position: absolute;
                content: "";
                top: 3px;
                left: 10px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--colorTwo);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }

        p {
            max-width: 850px;
            font-weight: 500;
            opacity: .9;
            margin: auto;
        }
    }

    .galleryCard {
        position: relative;
        overflow: hidden;

        &:hover img {
            scale: 1.1;
        }

        .image-box {
            margin: 0;

            img {
                width: 100%;
                object-fit: cover;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
            }
        }

        .view-btn {

            a {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media (max-width:992px) {

    .gallerySection {
        padding: 12px 0;
    
        .galleryContent {
            margin-bottom: 15px;
        }

    }
}
/***** End Gallery Section *****/

/***** Career Section *****/

.careerSection {
    padding: 50px;

    .careerContent {
        text-align: center;
        margin-bottom: 30px;

        h2 {
            font-size: 22px;
            margin-bottom: 3px;
            position: relative;
            padding-left: 35px;
            display: inline-block;

            &::before {
                position: absolute;
                content: "";
                top: 3px;
                left: 0;
                width: 20px;
                height: 20px;
                background-color: var(--colorOne);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            &::after {
                position: absolute;
                content: "";
                top: 3px;
                left: 10px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--colorTwo);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }

        p {
            max-width: 750px;
            font-weight: 500;
            opacity: .9;
            margin: auto;
        }
    }

    .careerLeft {

        .input-contain {
            position: relative;

            input {
                line-height: 45px;
                width: 100%;
                border: 1px solid black;
                padding: 0 16px;
                background: transparent;

                &:focus {
                    border: 1px solid var(--colorOne);
                    outline: none;
                    border-radius: 0 !important;
                }
            }

            .placeholder-text {
                position: absolute;
                top: 50%;
                left: 16px;
                transform: translateY(-50%);
                transition: all 0.2s ease;
                font-size: 16px;
                color: black;
                pointer-events: none;
            }

            input:focus+.placeholder-text,
            input:not(:placeholder-shown)+.placeholder-text {
                top: 0px;
                font-size: 14px;
                color: var(--colorOne);
                background-color: white;
                padding: 0 5px;
            }
        }

        .file {

            input {
                min-width: 100% !important;
                padding: 10px 16px;
                border: 1px solid black;
                outline: none;
                background-color: transparent;

                &:focus {
                    border: 1px solid var(--colorOne);
                }
            }
        }

        textarea {
            min-width: 100% !important;
            padding: 10px 16px;
            border: 1px solid black;
            outline: none;
            background-color: transparent;

            &:focus {
                border: 1px solid var(--colorOne);
            }
        }

        textarea::placeholder {
            color: black;
        }

        button {
            background-color: var(--colorOne);
            color: white;
            padding: 8px 15px;
            border: none;
            outline: none;
            font-weight: 600;
            transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -ms-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;

            &:hover {
                scale: .9;
            }
        }
    }

    .contactRight {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background-color: var(--colorThree);
        padding: 25px;

        h4 {
            font-size: 20px;
            color: var(--colorOne);
        }

        ul {
            margin: 0;
            padding: 0 0 0 16px;
            display: flex;
            flex-direction: column;
            gap: 5px;

            li {
                list-style: decimal;
            }
        }

        p {

            a {
                font-weight: 700;
                color: var(--colorOne);
            }
        }
    }
}

@media(max-width:992px) {

    .careerSection {
        padding: 25px 0;

        .careerLeft {

            .input-contain {
                position: relative;

                input {
                    line-height: 45px;
                    width: 100%;
                    border: 1px solid black;
                    padding: 0 16px;
                    background: transparent;

                    &:focus {
                        border: 1px solid var(--colorOne);
                        outline: none;
                        border-radius: 0 !important;
                    }
                }

                .placeholder-text {
                    position: absolute;
                    top: 50%;
                    left: 16px;
                    transform: translateY(-50%);
                    transition: all 0.2s ease;
                    font-size: 16px;
                    color: black;
                    pointer-events: none;
                }

                input:focus+.placeholder-text,
                input:not(:placeholder-shown)+.placeholder-text {
                    top: 0px;
                    font-size: 14px;
                    color: var(--colorOne);
                    background-color: white;
                    padding: 0 5px;
                }
            }

            .file {

                input {
                    min-width: 100% !important;
                    padding: 10px 16px;
                    border: 1px solid black;
                    outline: none;
                    background-color: transparent;

                    &:focus {
                        border: 1px solid var(--colorOne);
                    }
                }
            }

            textarea {
                min-width: 100% !important;
                padding: 10px 16px;
                border: 1px solid black;
                outline: none;
                background-color: transparent;

                &:focus {
                    border: 1px solid var(--colorOne);
                }
            }

            textarea::placeholder {
                color: black;
            }

            button {
                background-color: var(--colorOne);
                color: white;
                padding: 8px 15px;
                border: none;
                outline: none;
                font-weight: 600;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;

                &:hover {
                    scale: .9;
                }
            }
        }

        .contactRight {

            img {
                width: 100%;
            }
        }
    }
}

/***** End Section *****/

/***** Footer Section *****/

.footerSection {
    background-color: #02112B;
    overflow: hidden;
    background-image: url("../img/footer-bg.jpg");
    width: 100%;

    .footerTop1 {
        padding: 50px 62px;
        background-color: #0d2143;

        .topOne {
            .footer-map{
                border: 8px solid var(--colorThree);
                border-radius: 5px;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;
}

            h3 {
                font-size: 20px;
                color: white;
                margin-bottom: 10px;
                font-weight: 600;
            }

            p {
                opacity: 0.8;
                color: white;
                font-weight: 300;
            }

            .socialIcon {
                display: flex;
                gap: 10px;
                margin-top: 15px;

                a {
                    display: inline-block;

                    i {
                        background-color: blue;
                        color: white;
                        width: 40px;
                        line-height: 40px;
                        text-align: center;
                        border-radius: 3px;
                        -webkit-border-radius: 3px;
                        -moz-border-radius: 3px;
                        -ms-border-radius: 3px;
                        -o-border-radius: 3px;
                    }

                    .fa-facebook-f {
                        background-color: #316FF6;
                    }

                    .fa-instagram {
                        background: linear-gradient(to right,
                                #833ab4, #fd1d1d, #fcb045);
                    }

                    .fa-x-twitter {
                        background-color: #1DA1F2;
                    }

                    .fa-youtube {
                        background-color: #FF0000;
                    }

                    .fa-linkedin-in {
                        background-color: #0077B5;
                    }
                }
            }

            form {
                margin-top: 15px;
                line-height: 40px;
                display: flex;
                border-radius: 3px;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                -ms-border-radius: 3px;
                -o-border-radius: 3px;
                overflow: hidden;
                width: 80%;

                input {
                    border: none;
                    outline: none;
                    padding: 0 10px;
                    width: 100%;
                    font-weight: 500;
                }

                button {
                    border: none;
                    outline: none;
                    padding: 0 15px;
                    background-color: var(--colorTwo);
                    font-weight: 500;
                }
            }

            iframe {
                display: block; 
                height: 90px;
                width: 100%;
                padding: 0;
                margin: 0;
                border: none; 
            }
        }
    }

    .footerNav {
        padding: 50px 62px;

        .footerNavLink {

            img {
                width: 140px;
                margin-bottom: 15px;
            }

            h3 {
                font-size: 20px;
                color: black;
                margin-bottom: 15px;
                font-weight: 700;
            }

            .f-top {
                opacity: 0.8;
                color: rgb(0, 0, 0);
                font-weight: 500;
                text-align: justify;
            }

            ul {
                padding: 0;
                margin: 0;

                li {
                    list-style: none;
                    margin-top: 5px;

                    a {
                        font-weight: 500;
                        color: black;
                        opacity: 0.8;
                        transition: all 0.3s linear;
                        -webkit-transition: all 0.3s linear;
                        -moz-transition: all 0.3s linear;
                        -ms-transition: all 0.3s linear;
                        -o-transition: all 0.3s linear;

                        &:hover {
                            padding-left: 5px;
                        }
                    }
                }
            }
        }

        address {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 0;

            .contactLink {
                display: flex;
                align-items: center;
                gap: 10px;

                a {
                    color: black;
                    opacity: 0.8;
                    font-weight: 500;
                }

                i {
                    width: 35px;
                    line-height: 35px;
                    background-color: var(--colorTwo);
                    text-align: center;
                    color: black;
                    font-size: 14px;
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }

                p {

                    a {
                        color: black;
                        font-weight: 500;
                        opacity: 0.8;
                    }
                }
            }
        }
    }

    .copyRight {
        padding: 16px 62px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(0, 0, 0, 0.3);

        p {
            color: black;
            font-size: 15px;
            font-weight: 500;

            a {
                color: var(--colorOne);
                font-weight: 700;
            }
        }
    }
}

@media (max-width:992px) {

    .footerSection {

        .footerTop1 {
            padding: 12px;

            .topOne {

                h3 {
                    font-size: 18px;
                    margin-bottom: 5px;
                }

                p {
                    font-size: 15px;
                }

                form {
                    width: 100%;
                }
            }
        }

        .footerNav {
            padding: 12px;

            .footerNavLink {

                img {
                    width: 120px;
                    margin-bottom: 5px;
                }

                h3 {
                    font-size: 18px;
                    color: black;
                    margin-bottom: 5px;
                    font-weight: 700;
                }

                .f-top {
                    opacity: 0.8;
                    color: rgb(0, 0, 0);
                    font-weight: 500;
                    text-align: justify;
                }
            }

            address {
                display: flex;
                flex-direction: column;
                gap: 10px;

                .contactLink {
                    display: flex;
                    align-items: center;
                    gap: 10px;

                    a {
                        color: black;
                        opacity: 0.8;
                        font-weight: 500;
                    }

                    i {
                        width: 35px;
                        line-height: 35px;
                        background-color: var(--colorTwo);
                        text-align: center;
                        color: black;
                        font-size: 14px;
                        border-radius: 50px;
                        -webkit-border-radius: 50px;
                        -moz-border-radius: 50px;
                        -ms-border-radius: 50px;
                        -o-border-radius: 50px;
                    }

                    p {

                        a {
                            color: black;
                            font-weight: 500;
                        }
                    }
                }
            }
        }

        .copyRight {
            padding: 12px;
            flex-direction: column;

            p {
                text-align: center;

                a {
                    color: var(--colorOne);
                    font-weight: 700;
                }

                &:last-child {

                    a {
                        &:last-child {
                            /* display: block; */
                            opacity: 1;
                        }
                    }
                }
            }
        }
    }
}

/***** End Footer Section *****/

/***** Product Details Section *****/

.pDetailsSection {
    overflow: hidden;
    padding: 50px 50px 25px 50px;

    .pDetailsLeft {
        display: flex;
        flex-direction: row-reverse;
        gap: 10px;

        .mySwiper2 {
            width: 80%;
            height: 100%;
            background-color: var(--colorThree);
            border: 1px solid #e9eef6;
            padding: 25px;

            .productImg {
                display: flex;
                justify-content: center;
                align-items: center;

                img {
                    width: 250px;
                }
            }

            .swiper-button-prev {
                background-color: var(--colorOne);
                width: 40px;
                height: 40px;
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;

                &:hover::after {
                    transform: translateX(-5px);
                    -webkit-transform: translateX(-5px);
                    -moz-transform: translateX(-5px);
                    -ms-transform: translateX(-5px);
                    -o-transform: translateX(-5px);
                }
            }

            .swiper-button-prev::after {
                content: "\f104";
                font-family: FontAwesome;
                font-size: 18px;
                color: white;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
            }

            .swiper-button-next {
                background-color: var(--colorOne);
                width: 40px;
                height: 40px;
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;

                &:hover::after {
                    transform: translateX(5px);
                    -webkit-transform: translateX(5px);
                    -moz-transform: translateX(5px);
                    -ms-transform: translateX(5px);
                    -o-transform: translateX(5px);
                }
            }

            .swiper-button-next::after {
                content: "\f105";
                font-family: FontAwesome;
                font-size: 18px;
                color: white;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;
            }
        }

        .mySwiper {
            width: 20%;
            height: 304px;
            overflow: hidden !important;

            .swiper-slide {
                background-color: var(--colorThree);
                border: 1px solid #e9eef6;
                padding: 5px;
                overflow: hidden;
                display: flex;
                justify-content: center;
                align-items: center;

                img {
                    width: 83px;
                }
            }
        }
    }

    .swiper {
        width: 100%;
    }

    .mySwiper .swiper-slide {
        height: auto !important;
        opacity: 0.5;
    }

    .mySwiper .swiper-slide-thumb-active {
        opacity: 1;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        object-fit: cover;
    }

    .pDetailsRight {
        padding-right: 50px;

        h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        p {
            font-weight: 500;
            line-height: 1.4;
        }

        .pDetailsRightIn {
            display: flex;
            align-items: center;
            gap: 15px;

            button {
                background-color: var(--colorOne);
                color: white;
                border: none;
                outline: none;
                margin-top: 15px;
                padding: 8px 18px;
                font-weight: 500;
                overflow: hidden;
                border-radius: 3px;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                -ms-border-radius: 3px;
                -o-border-radius: 3px;
                position: relative;
                z-index: 1;

                &:hover {
                    color: black;
                }

                &:hover::before {
                    width: 100%;
                }

                &::before {
                    position: absolute;
                    content: "";
                    width: 0%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    background-color: var(--colorTwo);
                    z-index: -1;
                    transition: all 0.3s ease;
                    -webkit-transition: all 0.3s ease;
                    -moz-transition: all 0.3s ease;
                    -ms-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                }
            }

            a {
                display: inline-block;
                background-color: var(--colorOne);
                color: white;
                border: none;
                outline: none;
                margin-top: 15px;
                padding: 8px 18px;
                font-weight: 500;
                overflow: hidden;
                border-radius: 3px;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                -ms-border-radius: 3px;
                -o-border-radius: 3px;
                position: relative;
                z-index: 1;

                &:hover {
                    color: black;
                }

                &:hover::before {
                    width: 100%;
                }

                &::before {
                    position: absolute;
                    content: "";
                    width: 0%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    background-color: var(--colorTwo);
                    z-index: -1;
                    transition: all 0.3s ease;
                    -webkit-transition: all 0.3s ease;
                    -moz-transition: all 0.3s ease;
                    -ms-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                }
            }
        }
    }
}

/* Product Description  */
.descSection {
    padding: 25px 50px;

    .descLeft {
        position: sticky;
        top: 100px;
        border: 1px solid #e9eef6;

        .top {
            background-color: var(--colorThree);
            border-bottom: 1px solid #e9eef6;
            padding: 0px 25px;
            line-height: 45px;
            font-weight: 700;
        }

        .descLeftIn {
            padding: 20px 25px;

            h3 {
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 5px;
            }

            ul {
                padding: 0;
                margin: 0 0 10px 0;
                display: flex;
                flex-direction: column;
                gap: 5px;
                font-weight: 500;
                padding-left: 16px;

                li {
                    list-style: decimal;
                }
            }


            p {
                font-weight: 500;
                margin-top: 5px;
            }
        }
    }

    .descRight {
        border: 1px solid #e9eef6;

        .top {
            background-color: var(--colorThree);
            border-bottom: 1px solid #e9eef6;
            padding: 0px 25px;
            line-height: 45px;
            font-weight: 700;
        }

        .descRightIn {
            padding: 20px;

            table {
                width: 100%;
                border: 1px solid #e9eef6;
                border-bottom: none;

                tr {
                    &:nth-of-type(odd) {
                        background-color: var(--colorThree);
                    }

                    th {
                        background-color: var(--colorThree);
                        border-bottom: 1px solid #e9eef6;
                        line-height: 40px;
                        padding: 0 10px;

                        &:first-child {
                            border-right: 1px solid #e9eef6;
                        }
                    }

                    td {
                        border-bottom: 1px solid #e9eef6;
                        line-height: 40px;
                        padding: 0 10px;
                        font-weight: 500;

                        &:first-child {
                            border-right: 1px solid #e9eef6;
                        }
                    }
                }
            }
        }
    }

    .productDesc {

        .tab {
            overflow: hidden;
            border: 1px solid #e9eef6;
            background-color: var(--colorThree);

            button {
                border: none;
                outline: none;
                cursor: pointer;
                padding: 14px 16px;
                transition: 0.3s;
                background-color: transparent;
                font-weight: 600;
                position: relative;

                &.active::before {
                    position: absolute;
                    content: "";
                    width: 100%;
                    height: 100%;
                    border-bottom: 2px solid var(--colorOne);
                    top: 0;
                    left: 0;
                }
            }
        }

        .tabcontent {
            display: none;
            padding: 25px;
            border: 1px solid #e9eef6;
            border-top: none;

            h3 {
                font-size: 22px;
                font-weight: 700;
                margin-bottom: 10px;
            }

            ul {
                padding: 0;
                display: flex;
                flex-direction: column;
                gap: 5px;
                font-weight: 500;
                padding-left: 16px;

                li {
                    list-style: decimal;
                }
            }

            p {
                font-weight: 500;
                margin-top: 5px;
            }

            table {
                width: auto;
                border: 1px solid #e9eef6;
                border-bottom: none;

                tr {

                    th {
                        background-color: var(--colorThree);
                        border-bottom: 1px solid #e9eef6;
                        line-height: 40px;
                        padding: 0 10px;

                        &:first-child {
                            border-right: 1px solid #e9eef6;
                        }
                    }

                    td {
                        border-bottom: 1px solid #e9eef6;
                        line-height: 40px;
                        padding: 0 10px;
                        font-weight: 500;

                        &:first-child {
                            border-right: 1px solid #e9eef6;
                        }
                    }
                }
            }
        }
    }
}

/* Related Product  */
.relatedSectoin {
    padding: 25px 50px;

    .relatedSwiper {

        .relatedContent {
            margin-bottom: 20px;
            background-color: var(--colorThree);
            border: 1px solid #e9eef6;
            padding: 10px 16px;

            h2 {
                font-size: 22px;
                font-weight: 700;
                letter-spacing: 0.5px;
            }
        }

        .swiper-button-prev {
            right: 55px;
            left: inherit;
            top: 30px;
            width: 40px;
            height: 35px;
            border: 1px solid #e9eef6;

            &::after {
                font-size: 18px;
                content: "\f104";
                font-family: FontAwesome;
                color: #2457AA;
            }
        }

        .swiper-button-next {
            top: 30px;
            right: 10px;
            width: 40px;
            height: 35px;
            border: 1px solid #e9eef6;

            &::after {
                font-size: 18px;
                content: "\f105";
                font-family: FontAwesome;
                color: #2457AA;
            }
        }

        .relatedProduct {
            border: 1px solid #e9eef6;

            &:hover .relatedProductImg .forntImg {
                opacity: 0;
                visibility: hidden;
            }

            &:hover .relatedProductImg .backImg {
                opacity: 1;
                -webkit-opacity: 1;
                -moz-opacity: 1;
                -o-opacity: 1;
                -moz-transform: scale(1, 1);
                -webkit-transform: scale(1, 1);
                -o-transform: scale(1, 1);
                -ms-transform: scale(1, 1);
                transform: scale(1, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .relatedProductImg {
                text-align: center;
                padding: 20px;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--colorThree);

                .forntImg {
                    width: 120px;
                    margin: auto;
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .backImg {
                    position: absolute;
                    opacity: 0;
                    width: 120px;
                    -webkit-opacity: 0;
                    -moz-opacity: 0;
                    -o-opacity: 0;
                    -moz-transform: scale(0, 1);
                    -webkit-transform: scale(0, 1);
                    -o-transform: scale(0, 1);
                    -ms-transform: scale(0, 1);
                    transform: scale(0, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;

                }
            }

            .relatedProductContent {
                border-top: 1px solid #e9eef6;
                line-height: 50px;
                text-align: center;

                a {
                    display: inline-block;
                    font-size: 16px;
                    font-weight: 600;
                    width: 100%;
                }
            }
        }
    }
}

@media (max-width:992px) {

    .pDetailsSection {
        overflow: hidden;
        padding: 16px 0;

        .pDetailsLeft {
            display: flex;
            flex-direction: row-reverse;
            gap: 10px;

            .mySwiper2 {
                width: 80%;
                height: 100%;
                background-color: var(--colorThree);
                border: 1px solid #e9eef6;
                padding: 25px;

                .productImg {
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    img {
                        width: 250px;
                    }
                }

                .swiper-button-prev {
                    background-color: var(--colorOne);
                    width: 40px;
                    height: 40px;
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;

                    &:hover::after {
                        transform: translateX(-5px);
                        -webkit-transform: translateX(-5px);
                        -moz-transform: translateX(-5px);
                        -ms-transform: translateX(-5px);
                        -o-transform: translateX(-5px);
                    }
                }

                .swiper-button-prev::after {
                    content: "\f104";
                    font-family: FontAwesome;
                    font-size: 18px;
                    color: white;
                    transition: all 0.3s linear;
                    -webkit-transition: all 0.3s linear;
                    -moz-transition: all 0.3s linear;
                    -ms-transition: all 0.3s linear;
                    -o-transition: all 0.3s linear;
                }

                .swiper-button-next {
                    background-color: var(--colorOne);
                    width: 40px;
                    height: 40px;
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;

                    &:hover::after {
                        transform: translateX(5px);
                        -webkit-transform: translateX(5px);
                        -moz-transform: translateX(5px);
                        -ms-transform: translateX(5px);
                        -o-transform: translateX(5px);
                    }
                }

                .swiper-button-next::after {
                    content: "\f105";
                    font-family: FontAwesome;
                    font-size: 18px;
                    color: white;
                    transition: all 0.3s linear;
                    -webkit-transition: all 0.3s linear;
                    -moz-transition: all 0.3s linear;
                    -ms-transition: all 0.3s linear;
                    -o-transition: all 0.3s linear;
                }
            }

            .mySwiper {
                width: 20%;
                height: 304px;

                .swiper-slide {
                    background-color: var(--colorThree);
                    border: 1px solid #e9eef6;
                    padding: 5px;
                    overflow: hidden;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    img {
                        width: 83px;
                    }
                }
            }
        }

        .swiper {
            width: 100%;
        }

        .mySwiper .swiper-slide {
            height: auto !important;
            opacity: 0.5;
        }

        .mySwiper .swiper-slide-thumb-active {
            opacity: 1;
        }

        .swiper-slide img {
            display: block;
            width: 100%;
            object-fit: cover;
        }

        .pDetailsRight {
            padding-right: 0px;

            h2 {
                font-size: 22px;
                margin-bottom: 5px;
            }

            p {
                font-weight: 500;
                line-height: 1.4;
                font-weight: 500;
            }

            button {
                background-color: var(--colorOne);
                color: white;
                border: none;
                outline: none;
                margin-top: 15px;
                padding: 8px 18px;
                font-weight: 500;
            }
        }
    }

    /* Product Description  */
    .descSection {
        padding: 16px 0;

        .productDesc {

            .tab {
                overflow: hidden;
                border: 1px solid #e9eef6;
                background-color: var(--colorThree);

                button {
                    border: none;
                    outline: none;
                    cursor: pointer;
                    padding: 14px 16px;
                    transition: 0.3s;
                    background-color: transparent;
                    font-weight: 600;
                    position: relative;

                    &.active::before {
                        position: absolute;
                        content: "";
                        width: 100%;
                        height: 100%;
                        border-bottom: 2px solid var(--colorOne);
                        top: 0;
                        left: 0;
                    }
                }
            }

            .tabcontent {
                display: none;
                padding: 25px;
                border: 1px solid #e9eef6;
                border-top: none;

                h3 {
                    font-size: 22px;
                    font-weight: 700;
                    margin-bottom: 10px;
                }

                ul {
                    padding: 0;
                    display: flex;
                    flex-direction: column;
                    gap: 5px;
                    font-weight: 500;
                    padding-left: 16px;

                    li {
                        list-style: decimal;
                    }
                }

                p {
                    font-weight: 500;
                    margin-top: 5px;
                }

                table {
                    width: auto;
                    border: 1px solid #e9eef6;
                    border-bottom: none;

                    tr {

                        th {
                            background-color: var(--colorThree);
                            border-bottom: 1px solid #e9eef6;
                            line-height: 40px;
                            padding: 0 10px;

                            &:first-child {
                                border-right: 1px solid #e9eef6;
                            }
                        }

                        td {
                            border-bottom: 1px solid #e9eef6;
                            line-height: 40px;
                            padding: 0 10px;
                            font-weight: 500;

                            &:first-child {
                                border-right: 1px solid #e9eef6;
                            }
                        }
                    }
                }
            }
        }
    }

    /* Related Product  */
    .relatedSectoin {
        padding: 16px 0px;

        .relatedSwiper {

            .relatedContent {
                margin-bottom: 10px;

                h2 {
                    font-size: 20px;
                }
            }

            .swiper-button-prev {
                right: 55px;
                left: inherit;
                top: 27px;
                width: 40px;
                height: 35px;
                border: 1px solid #e9eef6;

                &::after {
                    font-size: 18px;
                    content: "\f104";
                    font-family: FontAwesome;
                    color: #2457AA;
                }
            }

            .swiper-button-next {
                top: 27px;
                right: 10px;
                width: 40px;
                height: 35px;
                border: 1px solid #e9eef6;

                &::after {
                    font-size: 18px;
                    content: "\f105";
                    font-family: FontAwesome;
                    color: #2457AA;
                }
            }

            .relatedProduct {
                border: 1px solid #e9eef6;

                &:hover .relatedProductImg .forntImg {
                    opacity: 0;
                    visibility: hidden;
                }

                &:hover .relatedProductImg .backImg {
                    opacity: 1;
                    -webkit-opacity: 1;
                    -moz-opacity: 1;
                    -o-opacity: 1;
                    -moz-transform: scale(1, 1);
                    -webkit-transform: scale(1, 1);
                    -o-transform: scale(1, 1);
                    -ms-transform: scale(1, 1);
                    transform: scale(1, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .relatedProductImg {
                    text-align: center;
                    padding: 20px;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--colorThree);

                    .forntImg {
                        width: 120px;
                        margin: auto;
                        transition: all 0.45s ease 0s;
                        -webkit-transition: all 0.45s ease 0s;
                        -moz-transition: all 0.45s ease 0s;
                        -o-transition: all 0.45s ease 0s;
                    }

                    .backImg {
                        position: absolute;
                        opacity: 0;
                        width: 120px;
                        -webkit-opacity: 0;
                        -moz-opacity: 0;
                        -o-opacity: 0;
                        -moz-transform: scale(0, 1);
                        -webkit-transform: scale(0, 1);
                        -o-transform: scale(0, 1);
                        -ms-transform: scale(0, 1);
                        transform: scale(0, 1);
                        transition: all 0.45s ease 0s;
                        -webkit-transition: all 0.45s ease 0s;
                        -moz-transition: all 0.45s ease 0s;
                        -o-transition: all 0.45s ease 0s;

                    }
                }

                .relatedProductContent {
                    border-top: 1px solid #e9eef6;
                    line-height: 50px;
                    text-align: center;

                    a {
                        display: inline-block;
                        font-size: 16px;
                        font-weight: 600;
                        width: 100%;
                    }
                }
            }
        }
    }
}

/***** End Product Details Section *****/

/***** Details About Section *****/

.deatilsOne {
    padding: 25px 50px;

    .deatSection {
        border: 1px solid #e9eef6;

        .top {
            border-bottom: 1px solid #e9eef6;
            background-color: var(--colorThree);
            padding: 0 25px;
            line-height: 45px;
            font-weight: 700;
        }

        .deatSectionIn {
            padding: 5px 25px 25px 25px;

            h3 {
                font-size: 20px;
                margin: 15px 0 5px 0;
            }

            p {
                font-weight: 500;
                /* font-size: 17px; */
                letter-spacing: 0.5px;
                opacity: 0.9;
            }
        }
    }
}

@media (max-width:992px) {

    .deatilsOne {
        padding: 16px 0px;

        .deatSection {
            border: 1px solid #e9eef6;

            .top {
                border-bottom: 1px solid #e9eef6;
                background-color: var(--colorThree);
                padding: 0 16px;
                line-height: 45px;
                font-weight: 700;
            }

            .deatSectionIn {
                padding: 0px 16px 16px 16px;

                h3 {
                    font-size: 18px;
                    margin: 10px 0 5px 0;
                }

                p {
                    font-weight: 500;
                    /* font-size: 17px; */
                    letter-spacing: 0.5px;
                    opacity: 0.9;
                }
            }
        }
    }
}

/***** End Details About Section *****/

/***** Contact Us Section *****/

.contactSection {
    /* overflow: hidden; */
    padding: 50px;

    .contactContent {
        text-align: center;
        margin-bottom: 30px;

        h2 {
            font-size: 22px;
            margin-bottom: 3px;
            position: relative;
            padding-left: 35px;
            display: inline-block;

            &::before {
                position: absolute;
                content: "";
                top: 3px;
                left: 0;
                width: 20px;
                height: 20px;
                background-color: var(--colorOne);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            &::after {
                position: absolute;
                content: "";
                top: 3px;
                left: 10px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--colorTwo);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }

        p {
            max-width: 650px;
            font-weight: 500;
            opacity: .9;
            margin: auto;
        }
    }

    .contactLink {
        background-color: var(--colorThree);
        border: 1px solid #e9eef6;
        margin-bottom: 25px;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
        /* position: sticky;
        top: 100px; */
 
        h5{
            padding: 10px 20px;
            border-bottom: 1px solid grey;
            background-color:var(--colorOne);
            color: white;
        }

        .linkIn {
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            height: 100%;
            position: relative;

            i {
                color: var(--colorOne);
            }

            a {
                font-weight: 500;
            }

            .linkInNumber {
                display: flex;
                flex-wrap: wrap;
                gap: 5px 15px;
            }
        }

        .one,
        .two {
            position: relative;

            &::after {
                position: absolute;
                content: "";
                width: 1px;
                height: 50%;
                background-color: #e9eef6;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
            }
        }
    }

    .contactLeft {
        background-color: var(--colorThree);
        padding: 0px 50px;

        .input-contain {
            position: relative;

            input {
                line-height: 45px;
                width: 100%;
                border: 1px solid rgb(199, 199, 199);
                padding: 0 16px;
                background: transparent;

                &:focus {
                    border: 1px solid var(--colorOne);
                    outline: none;
                    border-radius: 0 !important;
                }
            }

            .placeholder-text {
                position: absolute;
                top: 50%;
                left: 16px;
                transform: translateY(-50%);
                transition: all 0.2s ease;
                font-size: 16px;
                color: black;
                pointer-events: none;
            }

            input:focus+.placeholder-text,
            input:not(:placeholder-shown)+.placeholder-text {
                top: 0px;
                font-size: 14px;
                color: var(--colorOne);
                background-color: var(--colorThree);
                padding: 0 5px;
            }
        }

        textarea {
            min-width: 100% !important;
            padding: 10px 16px;
            border: 1px solid rgb(199, 199, 199);
            outline: none;
            background-color: transparent;
        }

        textarea:focus {
            border: 1px solid var(--colorOne);
        }

        textarea::placeholder {
            color: black;
        }

        button {
            background-color: var(--colorOne);
            color: white;
            padding: 8px 15px;
            border: none;
            outline: none;
            font-weight: 600;
            transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -ms-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;

            &:hover {
                scale: .9;
            }
        }
    }

    .contactRight {
        border:8px solid rgb(222, 222, 222);

        iframe {
            width: 100%;
            height: 100%;
     
            /* margin-bottom: -6px; */
        }
    }
}

@media(max-width:992px) {

    .contactSection {
        overflow: hidden;
        padding: 25px 0px;

        .contactContent {
            margin-bottom: 20px;
            text-align: center;

            h2 {
                font-size: 24px;
                margin-bottom: 5px;
            }

            p {
                max-width: initial;
                font-weight: 500;
                margin: auto;
            }
        }

        .contactLink {
            background-color: var(--colorThree);
            border: 1px solid #e9eef6;
            margin-bottom: 20px;

            .linkIn {
                padding: 15px;
                display: flex;
                align-items: center;
                gap: 15px;
                height: 100%;
                position: relative;

                i {
                    color: var(--colorOne);
                }

                a {
                    font-weight: 500;
                }
            }

            .one,
            .two {
                position: relative;

                &::after {
                    position: absolute;
                    content: "";
                    width: 100%;
                    height: 100%;
                    border-bottom: 1px solid #e9eef6;
                    background-color: transparent;
                }
            }
        }

        .contactLeft {
            background-color: var(--colorThree);
            border: 1px solid #e9eef6;
            padding: 16px;

            .input-contain {
                position: relative;

                input {
                    line-height: 45px;
                    width: 100%;
                    border: 1px solid rgb(199, 199, 199);
                    padding: 0 16px;
                    background: transparent;

                    &:focus {
                        border: 1px solid var(--colorOne);
                        outline: none;
                        border-radius: 0 !important;
                    }
                }

                .placeholder-text {
                    position: absolute;
                    top: 50%;
                    left: 16px;
                    transform: translateY(-50%);
                    transition: all 0.2s ease;
                    font-size: 16px;
                    color: black;
                    pointer-events: none;
                }

                input:focus+.placeholder-text,
                input:not(:placeholder-shown)+.placeholder-text {
                    top: 0px;
                    font-size: 14px;
                    color: var(--colorOne);
                    background-color: var(--colorThree);
                    padding: 0 5px;
                }
            }

            textarea {
                min-width: 100% !important;
                padding: 10px 16px;
                border: 1px solid rgb(199, 199, 199);
                outline: none;
                background-color: transparent;
            }

            textarea:focus {
                border: 1px solid var(--colorOne);
            }

            textarea::placeholder {
                color: black;
            }

            button {
                background-color: var(--colorOne);
                color: white;
                padding: 8px 15px;
                border: none;
                outline: none;
                font-weight: 600;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;

                &:hover {
                    scale: .9;
                }
            }
        }

        .contactRight {
    
            border: 1px solid #e9eef6;

            iframe {
                width: 100%;
                height: 100%;
                margin-bottom: -6px;
            }
        }
    }
}

/***** End Contact Us Section *****/

/** BreadCrumb Section **/

.bweldBredcrumb {
    position: relative;

    &:hover .arf .arf1::before {
        top: 0%;
    }

    &:hover .arf .arf2::before {
        top: 0%;
    }

    &:hover .arf .arf3::before {
        top: 0%;
    }

    img {
        width: 100%;
    }

    .arf {
        position: absolute;
        width: auto;
        height: 100%;
        top: 0;
        left: 20%;
        display: flex;
        gap: 15px;
        transform: skew(-30deg);
        -webkit-transform: skew(-30deg);
        -moz-transform: skew(-30deg);
        -ms-transform: skew(-30deg);
        -o-transform: skew(-30deg);

        .arf1 {
            width: 50px;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(3.2px);
            -webkit-backdrop-filter: blur(3.2px);
            overflow: hidden;
            position: relative;

            &::before {
                position: absolute;
                content: "";
                width: 100%;
                height: 100%;
                background: linear-gradient(to top, rgb(255, 255, 255), rgba(0, 0, 0, 0));
                top: -100%;
                transition: all 0.5s ease;
                -webkit-transition: all 0.5s ease;
                -moz-transition: all 0.5s ease;
                -ms-transition: all 0.5s ease;
                -o-transition: all 0.5s ease;
            }
        }

        .arf2 {
            width: 50px;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(3.2px);
            -webkit-backdrop-filter: blur(3.2px);
            overflow: hidden;
            position: relative;

            &::before {
                position: absolute;
                content: "";
                width: 100%;
                height: 100%;
                background: linear-gradient(to top, rgb(255, 255, 255), rgba(0, 0, 0, 0));
                top: -100%;
                transition: all 0.7s ease;
                -webkit-transition: all 0.7s ease;
                -moz-transition: all 0.7s ease;
                -ms-transition: all 0.7s ease;
                -o-transition: all 0.7s ease;
            }
        }

        .arf3 {
            width: 50px;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(3.2px);
            -webkit-backdrop-filter: blur(3.2px);
            overflow: hidden;
            position: relative;

            &::before {
                position: absolute;
                content: "";
                width: 100%;
                height: 100%;
                background: linear-gradient(to top, rgb(255, 255, 255), rgba(0, 0, 0, 0));
                top: -100%;
                transition: all 0.4s ease;
                -webkit-transition: all 0.4s ease;
                -moz-transition: all 0.4s ease;
                -ms-transition: all 0.4s ease;
                -o-transition: all 0.4s ease;
            }
        }
    }

    .breadContent {
        text-align: left;
        position: absolute;
        top: 0;
        color: white;
        left: 0;
        width: 100%;
        height: 100%;

        h1 {
            font-size: 32px;
            color: var(--colorTwo);
            position: absolute;
            top: 10%;
            left: 50px;
        }

        p {
            max-width: 500px;
            position: absolute;
            right: 5%;
            bottom: 20%;
            text-align: right;
        }
    }
}

@media (max-width:768px) {

    .bweldBredcrumb {
        position: relative;
        overflow: hidden;

        .breadContent {
            text-align: left;
            position: absolute;
            top: 50%;
            color: white;
            left: 12px;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);

            h1 {
                font-size: 22px;
                font-weight: 700;
                color: var(--colorTwo);
                position: absolute;
                top: 50%;
                left: 0px;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
            }

            p {
                max-width: 500px;
                display: none;
            }
        }

        .arf {
            display: none;
        }
    }
}

/** End BreadCrumb Section **/

/***** Enquiry Form Section *****/

.bweldModal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
    -ms-transition: opacity 0.3s ease, visibility 0.3s ease;
    -o-transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99999;

    &.show {
        opacity: 1;
        visibility: visible;
    }

    .bweldModal-content {
        background-color: #fff;
        max-width: 500px;
        width: 90%;
        animation: slideDown 0.7s ease;
        -webkit-animation: slideDown 0.7s ease;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        overflow: hidden;

        .enquiryContent {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--colorOne);
            margin-bottom: 10px;
            padding: 20px 20px;

            h3 {
                font-size: 18px;
                color: white;
            }


            .bweldModal-close-btn {
                cursor: pointer;
                color: white;

                &:hover i {
                    rotate: 180deg;
                }

                i {
                    font-size: 25px;
                    font-weight: 300;
                    transition: all 0.3s linear;
                    -webkit-transition: all 0.3s linear;
                    -moz-transition: all 0.3s linear;
                    -ms-transition: all 0.3s linear;
                    -o-transition: all 0.3s linear;
                }
            }
        }

        form {
            padding: 20px;

            .input-contain {
                position: relative;

                input {
                    line-height: 40px;
                    width: 100%;
                    border: 1px solid #c4c4c4;
                    padding: 0 16px;
                    background: transparent;

                    &:focus {
                        border: 1px solid var(--colorOne);
                        outline: none;
                        border-radius: 0 !important;
                    }
                }

                .placeholder-text {
                    position: absolute;
                    top: 50%;
                    left: 16px;
                    transform: translateY(-50%);
                    transition: all 0.2s ease;
                    font-size: 16px;
                    color: rgb(78, 78, 78);
                    pointer-events: none;
                }

                input:focus+.placeholder-text,
                input:not(:placeholder-shown)+.placeholder-text {
                    top: 0px;
                    font-size: 14px;
                    color: var(--colorOne);
                    background-color: white;
                    padding: 0 5px;
                }
            }

            textarea {
                min-width: 100% !important;
                padding: 10px 16px;
                border: 1px solid #c4c4c4;
                outline: none;
                background-color: transparent;
            }

            textarea:focus {
                border: 1px solid var(--colorOne);
            }

            textarea::placeholder {
                color: rgb(78, 78, 78);
            }

            button {
                background-color: var(--colorOne);
                color: white;
                padding: 8px 15px;
                border: none;
                outline: none;
                font-weight: 600;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;

                &:hover {
                    scale: .9;
                }
            }
        }
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/***** End Enquiry Form Section *****/

/***** Bottom Top Top Button Section *****/

#top {
    background-color: var(--colorTwo);
    border: none;
    outline: none;
    width: 35px;
    line-height: 35px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 9999999;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;

    i {
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        font-size: 14px;
    }

    &:hover i {
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
    }
}

@media (max-width:992px) {

    #top {
        right: 8px;
        bottom: 5px;
    }
}

/***** End Bottom Top Top Button Section *****/

/***** Online Service Request Section *****/

.onlineSection {
    padding: 50px;

    .onlineContent {
        text-align: center;
        margin-bottom: 30px;

        h2 {
            font-size: 22px;
            margin-bottom: 3px;
            position: relative;
            padding-left: 35px;
            display: inline-block;

            &::before {
                position: absolute;
                content: "";
                top: 3px;
                left: 0;
                width: 20px;
                height: 20px;
                background-color: var(--colorOne);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            &::after {
                position: absolute;
                content: "";
                top: 3px;
                left: 10px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--colorTwo);
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }

        p {
            max-width: 650px;
            font-weight: 500;
            opacity: .9;
            margin: auto;
        }
    }

    form {

        .input-contain {
            position: relative;

            input {
                line-height: 40px;
                width: 100%;
                border: 1px solid black;
                padding: 0 16px;
                background: transparent;

                &:focus {
                    border: 1px solid var(--colorOne);
                    outline: none;
                    border-radius: 0 !important;
                }
            }

            .placeholder-text {
                position: absolute;
                top: 50%;
                left: 16px;
                transform: translateY(-50%);
                transition: all 0.2s ease;
                font-size: 16px;
                color: black;
                pointer-events: none;
            }

            input:focus+.placeholder-text,
            input:not(:placeholder-shown)+.placeholder-text {
                top: 0px;
                font-size: 14px;
                color: var(--colorOne);
                background-color: white;
                padding: 0 5px;
            }
        }

        textarea {
            min-width: 100% !important;
            padding: 10px 16px;
            border: 1px solid black;
            outline: none;
            background-color: transparent;
        }

        textarea:focus {
            border: 1px solid var(--colorOne);
        }

        textarea::placeholder {
            color: black;
        }

        button {
            background-color: var(--colorOne);
            color: white;
            padding: 8px 15px;
            border: none;
            outline: none;
            font-weight: 600;
            transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -ms-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;

            &:hover {
                scale: .9;
            }
        }
    }

    .onlineRight {

        img {
            width: 100%;
        }
    }
}

@media (max-width:992px) {

    .onlineSection {
        padding: 12px 0;

        .onlineContent {
            text-align: center;
            margin-bottom: 30px;

            h2 {
                font-size: 22px;
                margin-bottom: 3px;
                position: relative;
                padding-left: 35px;
                display: inline-block;

                &::before {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 0;
                    width: 20px;
                    height: 20px;
                    background-color: var(--colorOne);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }

                &::after {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 10px;
                    width: 20px;
                    height: 20px;
                    border: 2px solid var(--colorTwo);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }
            }

            p {
                max-width: 650px;
                font-weight: 500;
                opacity: .9;
                margin: auto;
            }
        }

        form {

            .input-contain {
                position: relative;

                input {
                    line-height: 40px;
                    width: 100%;
                    border: 1px solid black;
                    padding: 0 16px;
                    background: transparent;

                    &:focus {
                        border: 1px solid var(--colorOne);
                        outline: none;
                        border-radius: 0 !important;
                    }
                }

                .placeholder-text {
                    position: absolute;
                    top: 50%;
                    left: 16px;
                    transform: translateY(-50%);
                    transition: all 0.2s ease;
                    font-size: 16px;
                    color: black;
                    pointer-events: none;
                }

                input:focus+.placeholder-text,
                input:not(:placeholder-shown)+.placeholder-text {
                    top: 0px;
                    font-size: 14px;
                    color: var(--colorOne);
                    background-color: white;
                    padding: 0 5px;
                }
            }

            textarea {
                min-width: 100% !important;
                padding: 10px 16px;
                border: 1px solid black;
                outline: none;
                background-color: transparent;
            }

            textarea:focus {
                border: 1px solid var(--colorOne);
            }

            textarea::placeholder {
                color: black;
            }

            button {
                background-color: var(--colorOne);
                color: white;
                padding: 8px 15px;
                border: none;
                outline: none;
                font-weight: 600;
                transition: all 0.3s linear;
                -webkit-transition: all 0.3s linear;
                -moz-transition: all 0.3s linear;
                -ms-transition: all 0.3s linear;
                -o-transition: all 0.3s linear;

                &:hover {
                    scale: .9;
                }
            }
        }

        .onlineRight {

            img {
                width: 100%;
            }
        }
    }
}

/***** End Online Service Request Section *****/

/***** Product One Section *****/

.productOne {
    padding: 50px;

    .productLeft {
        border: 1px solid #e9eef6;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        position: sticky;
        top: 100px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        background: #f4fcff;

        #catClose {
            display: none;
        }

        h3 {
            font-size: 20px;
            background-color: var(--colorOne);
            color: white;
            padding: 0px 15px;
            font-weight: 600;
            line-height: 45px;
            border-radius: 5px 5px 0 0;
            -webkit-border-radius: 5px 5px 0 0;
            -moz-border-radius: 5px 5px 0 0;
            -ms-border-radius: 5px 5px 0 0;
            -o-border-radius: 5px 5px 0 0;
            /* margin-bottom: 15px; */
        }

        .productBtn {
            border-top: 1px solid #e9eef6;

            .proBtn {
                line-height: 35px;
                width: 100%;
                text-align: left;
                padding: 0 15px;
                border: none;
                outline: none;
                background-color: transparent;
                font-size: 16px;
                font-weight: 700;
                position: relative;
                cursor: pointer;
                background-color: #F4FCFF;
                color: black;

                /* &.active {
                    background-color: var(--colorThree);
                } */

                /* &.active::before {
                    content: "\f107";
                } */

                /* &::before {
                    position: absolute;
                    content: "\f105";
                    font-family: FontAwesome;
                    right: 15px;
                    transition: all 0.3s ease;
                    -webkit-transition: all 0.3s ease;
                    -moz-transition: all 0.3s ease;
                    -ms-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                } */
            }

            .subBtn {
                /* height: 0; */
                overflow: hidden;
                transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;

                ul {
                    margin: 0;
                    padding: 0 0 0 0px;

                    li {
                        list-style: circle;
                        line-height: 30px;
                        border-top: 1px solid #e9eef6;
                        padding: 0 20px 0 35px;
                        position: relative;
                        font-size: 15px;
                        font-weight: 500;
                        background-color: #F4FCFF;
                        color: var(--colorOne);

                        &::before {
                            position: absolute;
                            content: "\f0da";
                            font-family: FontAwesome;
                            left: 20px;
                            font-size: 14px;
                            opacity: 0.7;
                        }
                    }
                }
            }
        }
    }

    #showCat {
        display: none;
    }

    .productRight {
        position: sticky;
        top: 100px;

        .subPageText {
            margin-bottom: 20px;
            text-align: center;

            h2 {
                font-size: 22px;
                margin-bottom: 3px;
                position: relative;
                padding-left: 35px;
                display: inline-block;

                &::before {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 0;
                    width: 20px;
                    height: 20px;
                    background-color: var(--colorOne);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }

                &::after {
                    position: absolute;
                    content: "";
                    top: 3px;
                    left: 10px;
                    width: 20px;
                    height: 20px;
                    border: 2px solid var(--colorTwo);
                    border-radius: 50px;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    -ms-border-radius: 50px;
                    -o-border-radius: 50px;
                }
            }

            p {
                max-width: 650px;
                font-weight: 500;
                opacity: .9;
                margin: auto;
            }
        }

        .subCard {
            border: 1px solid #e9eef6;

            &:hover .subCardImg .forntImg {
                opacity: 0;
                visibility: hidden;
            }

            &:hover .subCardImg .backImg {
                opacity: 1;
                -webkit-opacity: 1;
                -moz-opacity: 1;
                -o-opacity: 1;
                -moz-transform: scale(1, 1);
                -webkit-transform: scale(1, 1);
                -o-transform: scale(1, 1);
                -ms-transform: scale(1, 1);
                transform: scale(1, 1);
                transition: all 0.45s ease 0s;
                -webkit-transition: all 0.45s ease 0s;
                -moz-transition: all 0.45s ease 0s;
                -o-transition: all 0.45s ease 0s;
            }

            .subCardImg {
                text-align: center;
                padding: 20px;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--colorThree);

                .forntImg {
                    width: 160px;
                    margin: auto;
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .backImg {
                    position: absolute;
                    opacity: 0;
                    width: 160px;
                    -webkit-opacity: 0;
                    -moz-opacity: 0;
                    -o-opacity: 0;
                    -moz-transform: scale(0, 1);
                    -webkit-transform: scale(0, 1);
                    -o-transform: scale(0, 1);
                    -ms-transform: scale(0, 1);
                    transform: scale(0, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;

                }
            }

            .subCardContent {
                border-top: 1px solid #e9eef6;
                line-height: 50px;
                text-align: center;

                a {
                    display: inline-block;
                    font-size: 16px;
                    font-weight: 600;
                    width: 100%;
                    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
                }
            }
        }
    }
}

@media (max-width:992px) {

    .productOne {
        padding: 12px 0;

        .productLeft {
            border: 1px solid #e9eef6;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            position: sticky;
            top: 100px;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;

            h3 {
                font-size: 20px;
                background-color: var(--colorOne);
                color: white;
                padding: 0px 15px;
                font-weight: 600;
                line-height: 45px;
                border-radius: 5px 5px 0 0;
                -webkit-border-radius: 5px 5px 0 0;
                -moz-border-radius: 5px 5px 0 0;
                -ms-border-radius: 5px 5px 0 0;
                -o-border-radius: 5px 5px 0 0;
                /* margin-bottom: 15px; */
            }

            .productBtn {
                border-top: 1px solid #e9eef6;

                .proBtn {
                    line-height: 35px;
                    width: 100%;
                    text-align: left;
                    padding: 0 15px;
                    border: none;
                    outline: none;
                    background-color: transparent;
                    font-size: 16px;
                    font-weight: 700;
                    position: relative;
                    cursor: pointer;
                    background-color: #F4FCFF;
                    color: black;

                    /* &.active {
                    background-color: var(--colorThree);
                } */

                    /* &.active::before {
                    content: "\f107";
                } */

                    /* &::before {
                    position: absolute;
                    content: "\f105";
                    font-family: FontAwesome;
                    right: 15px;
                    transition: all 0.3s ease;
                    -webkit-transition: all 0.3s ease;
                    -moz-transition: all 0.3s ease;
                    -ms-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                } */
                }
                

                .subBtn {
                    /* height: 0; */
                    overflow: hidden;
                    transition: all 0.3s ease;
                    -webkit-transition: all 0.3s ease;
                    -moz-transition: all 0.3s ease;
                    -ms-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;

                    ul {
                        margin: 0;
                        padding: 0 0 0 0px;

                        li {
                            list-style: circle;
                            line-height: 30px;
                            border-top: 1px solid #e9eef6;
                            padding: 0 20px 0 35px;
                            position: relative;
                            font-size: 15px;
                            font-weight: 500;
                            background-color: #F4FCFF;
                            color: var(--colorOne);
                            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

                            &::before {
                                position: absolute;
                                content: "\f0da";
                                font-family: FontAwesome;
                                left: 20px;
                                font-size: 14px;
                                opacity: 0.7;
                            }
                        }
                    }
                }
            }
        }

        .productRight {
            position: sticky;
            top: 100px;

            .subPageText {
                margin-bottom: 20px;
                text-align: center;

                h2 {
                    font-size: 22px;
                    margin-bottom: 3px;
                    position: relative;
                    padding-left: 35px;
                    display: inline-block;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 3px;
                        left: 0;
                        width: 20px;
                        height: 20px;
                        background-color: var(--colorOne);
                        border-radius: 50px;
                        -webkit-border-radius: 50px;
                        -moz-border-radius: 50px;
                        -ms-border-radius: 50px;
                        -o-border-radius: 50px;
                    }

                    &::after {
                        position: absolute;
                        content: "";
                        top: 3px;
                        left: 10px;
                        width: 20px;
                        height: 20px;
                        border: 2px solid var(--colorTwo);
                        border-radius: 50px;
                        -webkit-border-radius: 50px;
                        -moz-border-radius: 50px;
                        -ms-border-radius: 50px;
                        -o-border-radius: 50px;
                    }
                }

                p {
                    max-width: 650px;
                    font-weight: 500;
                    opacity: .9;
                    margin: auto;
                }
            }

            .subCard {
                border: 1px solid #e9eef6;

                &:hover .subCardImg .forntImg {
                    opacity: 0;
                    visibility: hidden;
                }

                &:hover .subCardImg .backImg {
                    opacity: 1;
                    -webkit-opacity: 1;
                    -moz-opacity: 1;
                    -o-opacity: 1;
                    -moz-transform: scale(1, 1);
                    -webkit-transform: scale(1, 1);
                    -o-transform: scale(1, 1);
                    -ms-transform: scale(1, 1);
                    transform: scale(1, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .subCardImg {
                    text-align: center;
                    padding: 20px;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--colorThree);

                    .forntImg {
                        width: 160px;
                        margin: auto;
                        transition: all 0.45s ease 0s;
                        -webkit-transition: all 0.45s ease 0s;
                        -moz-transition: all 0.45s ease 0s;
                        -o-transition: all 0.45s ease 0s;
                    }

                    .backImg {
                        position: absolute;
                        opacity: 0;
                        width: 160px;
                        -webkit-opacity: 0;
                        -moz-opacity: 0;
                        -o-opacity: 0;
                        -moz-transform: scale(0, 1);
                        -webkit-transform: scale(0, 1);
                        -o-transform: scale(0, 1);
                        -ms-transform: scale(0, 1);
                        transform: scale(0, 1);
                        transition: all 0.45s ease 0s;
                        -webkit-transition: all 0.45s ease 0s;
                        -moz-transition: all 0.45s ease 0s;
                        -o-transition: all 0.45s ease 0s;

                    }
                }

                .subCardContent {
                    border-top: 1px solid #e9eef6;
                    line-height: 50px;
                    text-align: center;

                    a {
                        display: inline-block;
                        font-size: 16px;
                        font-weight: 600;
                        width: 100%;
                    }
                }
            }
        }
    }
}

@media (max-width:768px) {

    .productOne {
        padding: 12px 0;

        .productLeft {
            border: 1px solid #e9eef6;
            background-color: #F4FCFF;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            position: initial;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            position: fixed;
            width: 70%;
            height: 100vh;
            z-index: 9999;
            left: -100%;
            top: 0;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;

            &.active {
                left: 0;
            }

            #catClose {
                display: block;
                position: absolute;
                right: 10px;
                top: 10px;
                color: var(--colorOne);
                background-color: white;
                height: 25px;
                width: 25px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }

            h3 {
                font-size: 20px;
                background-color: var(--colorOne);
                color: white;
                padding: 0px 15px;
                font-weight: 600;
                line-height: 45px;
                border-radius: 5px 5px 0 0;
                -webkit-border-radius: 5px 5px 0 0;
                -moz-border-radius: 5px 5px 0 0;
                -ms-border-radius: 5px 5px 0 0;
                -o-border-radius: 5px 5px 0 0;
            }

            .productBtn {
                border-top: 1px solid #e9eef6;
                border-bottom: 1px solid #eee;
                box-shadow: 1px 0 5px #b0e3fa;

                .proBtn {
                    line-height: 35px;
                    width: 100%;
                    text-align: left;
                    padding: 0 15px;
                    border: none;
                    outline: none;
                    background-color: transparent;
                    font-size: 16px;
                    font-weight: 700;
                    position: relative;
                    cursor: pointer;
                    background-color: #F4FCFF;
                    color: black;

                }

                .subBtn {
                    overflow: hidden;
                    transition: all 0.3s ease;
                    -webkit-transition: all 0.3s ease;
                    -moz-transition: all 0.3s ease;
                    -ms-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;

                    ul {
                        margin: 0;
                        padding: 0 0 0 0px;

                        li {
                            list-style: circle;
                            line-height: 30px;
                            border-top: 1px solid #e9eef6;
                            padding: 0 20px 0 35px;
                            position: relative;
                            font-size: 15px;
                            font-weight: 500;
                            background-color: #F4FCFF;
                            color: var(--colorOne);
                            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

                            &::before {
                                position: absolute;
                                content: "\f0da";
                                font-family: FontAwesome;
                                left: 20px;
                                font-size: 14px;
                                opacity: 0.7;
                            }
                        }
                    }
                }
            }
        }

        #showCat {
            display: inline-block;
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: var(--colorOne);
            color: white;
            padding: 8px 12px;
            max-width: 60%;

            h3 {
                font-size: 18px;
            }
        }

        .productRight {
            position: sticky;
            top: 100px;

            .subPageText {
                margin-bottom: 20px;
                text-align: center;

                h2 {
                    font-size: 22px;
                    margin-bottom: 3px;
                    position: relative;
                    padding-left: 35px;
                    display: inline-block;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 3px;
                        left: 0;
                        width: 20px;
                        height: 20px;
                        background-color: var(--colorOne);
                        border-radius: 50px;
                        -webkit-border-radius: 50px;
                        -moz-border-radius: 50px;
                        -ms-border-radius: 50px;
                        -o-border-radius: 50px;
                    }

                    &::after {
                        position: absolute;
                        content: "";
                        top: 3px;
                        left: 10px;
                        width: 20px;
                        height: 20px;
                        border: 2px solid var(--colorTwo);
                        border-radius: 50px;
                        -webkit-border-radius: 50px;
                        -moz-border-radius: 50px;
                        -ms-border-radius: 50px;
                        -o-border-radius: 50px;
                    }
                }

                p {
                    max-width: 650px;
                    font-weight: 500;
                    opacity: .9;
                    margin: auto;
                }
            }

            .subCard {
                border: 1px solid #e9eef6;

                &:hover .subCardImg .forntImg {
                    opacity: 0;
                    visibility: hidden;
                }

                &:hover .subCardImg .backImg {
                    opacity: 1;
                    -webkit-opacity: 1;
                    -moz-opacity: 1;
                    -o-opacity: 1;
                    -moz-transform: scale(1, 1);
                    -webkit-transform: scale(1, 1);
                    -o-transform: scale(1, 1);
                    -ms-transform: scale(1, 1);
                    transform: scale(1, 1);
                    transition: all 0.45s ease 0s;
                    -webkit-transition: all 0.45s ease 0s;
                    -moz-transition: all 0.45s ease 0s;
                    -o-transition: all 0.45s ease 0s;
                }

                .subCardImg {
                    text-align: center;
                    padding: 20px;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--colorThree);

                    .forntImg {
                        width: 160px;
                        margin: auto;
                        transition: all 0.45s ease 0s;
                        -webkit-transition: all 0.45s ease 0s;
                        -moz-transition: all 0.45s ease 0s;
                        -o-transition: all 0.45s ease 0s;
                    }

                    .backImg {
                        position: absolute;
                        opacity: 0;
                        width: 160px;
                        -webkit-opacity: 0;
                        -moz-opacity: 0;
                        -o-opacity: 0;
                        -moz-transform: scale(0, 1);
                        -webkit-transform: scale(0, 1);
                        -o-transform: scale(0, 1);
                        -ms-transform: scale(0, 1);
                        transform: scale(0, 1);
                        transition: all 0.45s ease 0s;
                        -webkit-transition: all 0.45s ease 0s;
                        -moz-transition: all 0.45s ease 0s;
                        -o-transition: all 0.45s ease 0s;

                    }
                }

                .subCardContent {
                    border-top: 1px solid #e9eef6;
                    line-height: 50px;
                    text-align: center;

                    a {
                        display: inline-block;
                        font-size: 16px;
                        font-weight: 600;
                        width: 100%;
                    }
                }
            }
        }
    }
}

/***** End Product One Section *****/


.chooseSection {
    padding: 50px;
    background-image: url("../img/choose.jpg");
    background-size: cover;
    width: 100%;

    .chooseRight {

        .chooseContent {
            margin-bottom: 40px;

            .top {
                font-size: 18px;
                font-weight: 600;
                color: white;
                margin-bottom: 5px;
            }

            h2 {
                color: white;
                font-size: 24px;
                margin-bottom: 5px;
            }

            p {
                color: white;
            }
        }

        .chooseCard {
            background-color: #181646bd;
            padding: 50px 20px;
            text-align: center;

            i {
                width: 40px;
                line-height: 40px;
                background-color: var(--colorTwo);
                color: #02112B;
                font-size: 18px;
                margin-bottom: 10px;
            }

            h3 {
                font-size: 18px;
                color: var(--colorTwo);
                margin-bottom: 5px;
            }

            p {
                color: white;
            }
        }
    }
}

@media (max-width:992px) {

    .chooseSection {
        padding: 12px 0;
    }
}

@media (max-width:768px) {

    .chooseSection {
        padding: 25px 0;

        .chooseRight {

            .chooseContent {
                margin-bottom: 20px;
                text-align: center;

                .top {
                    font-size: 16px;
                    font-weight: 600;
                    color: white;
                    margin-bottom: 5px;
                    color: var(--colorTwo);
                }

                h2 {
                    color: white;
                    font-size: 18px;
                    margin-bottom: 5px;
                }

                p {
                    color: white;
                }
            }

            .chooseCard {
                background-color: #181646bd;
                padding: 20px 20px;
                text-align: center;

                i {
                    width: 40px;
                    line-height: 40px;
                    background-color: var(--colorTwo);
                    color: #02112B;
                    font-size: 18px;
                    margin-bottom: 10px;
                }

                h3 {
                    font-size: 18px;
                    color: var(--colorTwo);
                    margin-bottom: 5px;
                }

                p {
                    color: white;
                }
            }
        }
    }
}

/***** Warranty Section *****/

.warrantySection {
    padding: 50px;
    max-width: 900px;
    margin: auto;

    h2 {
        font-size: 26px;
        text-align: center;
    }

    h3 {
        font-size: 20px;
        font-weight: 700;
        margin: 15px 0 5px 0;
    }

    p {
        text-align: justify;
    }

    ul {
        margin: 5px 0 0 16px;
        padding: 0;

        li {
            list-style: circle;
            margin-top: 5px;
            text-align: justify;
        }
    }

    .last {
        margin-top: 20px;
        display: flex;
        justify-content: end;
    }
}

@media (max-width:768px) {
    .warrantySection {
        padding: 12px 0;
        max-width: initial;
        margin: auto;
    
        h2 {
            font-size: 20px;
            text-align: center;
        }
    
        h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 10px 0 5px 0;
        }
    
        p {
            text-align: justify;
        }
    
        ul {
            margin: 5px 0 0 16px;
            padding: 0;
    
            li {
                list-style: circle;
                margin-top: 5px;
                text-align: justify;
            }
        }
    
        .last {
            margin-top: 20px;
            display: flex;
            justify-content: end;
        }
    }
}
/***** End Warranty Section *****/

.breadLink {

    ul {
        display: flex;
        gap: 6px;
        align-items: center;
        margin: 0 0 0x 0;
        padding: 0;
        background-color: #efece7;
        padding: 0 50px;
        line-height: 45px;
        color: black;

        li {
            list-style: none;
            font-weight: 700;
        }
    }
}

@media (max-width:992px) {
    .breadLink {

        ul {
            padding: 0 12px;
    
            li {
                list-style: none;
                font-weight: 700;
            }
        }
    }
}
#searchContent{
    position: absolute;
    top:100%;
    width: 100%;
    left:0;
    background-color: rgb(255, 255, 255);
    height: 300px;
    z-index: 1000;
    padding: 10px;
    border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -ms-border-radius: 0px 0px 10px 10px;
    -o-border-radius: 0px 0px 10px 10px;
    overflow-y: scroll;
    img{
        width: 70px;
        margin-right: 12px;
        /* background-color:rgb(230, 230, 230);
        padding: 6px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        margin-right: 20px; */
}
    button{
        background-color:var(--colorTwo);
        border: 60px;
        color:black;
        border-radius: 60px;
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        -ms-border-radius: 60px;
        -o-border-radius: 60px;
        padding: 2px 10px !important;
        margin-top: 5px;
    }
    tr{
        border-bottom: 1px solid rgb(230, 230, 230) !important;
        padding: 2px 0px;
    }
    
}
    #searchMenu{
        position: relative;
    }
    @media screen and (max-width:952px) {
        #searchMenu{
            position: absolute !important;
        }
    }
 
#category-response{
    background-color: var(--colorOne);
    color: white;
    padding: 10px;
    display: inline;
    width: 30%;
}    

 