* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Abhaya Libre';a
    src: url('../font/AbhayaLibre-ExtraBold.woff2') format('woff2'),
        url('../font/AbhayaLibre-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Gisha';
    src: url('../font/Gisha.woff2') format('woff2'),
        url('../font/Gisha.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pangram';
    src: url('../font/Pangram-Regular.woff2') format('woff2'),
        url('../font/Pangram-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #fff;
    --black: #000;
    --gray: #333333;
    --primary: #f7f5f1;
    --main: #f7f768;
    --secondary: #f2f2f2;
    --font1: 'Abhaya Libre';
    --font2: 'Gisha';
    --font3: 'Pangram';
}

img {
    width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--black);
}

p {
    font-family: var(--font2);
    font-size: 16px;
    letter-spacing: 0.2px;
}

section {
    overflow: hidden;
}

.wrap-sec {
    padding: 0 0 3rem;
}

.header-part {
    padding-bottom: 3rem;
    position: relative;
    line-height: 1.1;
}

.header-part p {
    font-size: 1rem;
    font-family: var(--font2);
    font-weight: 400;
    line-height: 1.2rem;
    letter-spacing: 0.02em;
}

.heading-sec {
    font-size: 25px;
    font-family: var(--font1);
    text-transform: capitalize;
    font-weight: 900;
    line-height: 30px;
}

.title-sec {
    font-size: 2rem;
    line-height: 2.6rem;
    font-family: var(--font1);
    text-transform: capitalize;
    font-weight: bold;
    margin-bottom: 1rem;
}

.sub-title {
    font-size: 1.2rem;
    text-transform: capitalize;
    font-family: var(--font3);
    font-weight: 600;
    line-height: 1.2;
}
.btn-sec {
    padding: 0.6em 1.7em;
    background-color: var(--gray);
    border-radius: .3em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--font1);
    border: 1px solid;
    font-family: inherit;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
    z-index: 1;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   }
   
   .btn-sec::before, .btn-sec::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--black);
    transition: 1s ease;
   }
   
   .btn-sec::before {
    top: -2em;
    left: -2em;
   }
   
   .btn-sec::after {
    left: calc(100% + 2em);
    top: calc(100% + 2em);
   }
   
   .btn-sec:hover::before, .btn-sec:hover::after {
    height: 410px;
    width: 150%;
   } 
   .btn-sec:hover {
    color:var(--main);
   }
   
   .btn-sec:active {
    filter: brightness(.8);
   }
/*------share api---------*/
.share-btn-box{display:inline-block;}
 .share-btn {
            font-size: 26px;
            font-weight: 600;
            color: black;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .social-share {
            width: fit-content;
            height: fit-content;
        }

        .social-share ul {
            display: flex;
            align-items: center;
            gap: 12px;
            list-style: none;
            padding-left: 0;
        }

        .social-share ul li button,
        .social-share ul li a {
            color: #fff;
            font-size: 19px;
            line-height: 24px;
            height: 24px;
            width: 34px;
            text-align: center;
            padding: 4px 8px !important;
            border-radius: 3px;
            text-transform: capitalize;
            display: block;
            height: fit-content;
            box-shadow: none;
            border: none;
            outline: none;
            cursor: pointer;
        }

        .social-share ul li button:hover,
        .social-share ul li a:hover {
            opacity: 0.8;
        }

        .social-share ul li button.facebook,
        .social-share ul li a.facebook {
            background: #3B5999;
        }

        .social-share ul li button.twitter,
        .social-share ul li a.twitter {
            background: #1DA1F2;
        }

        .social-share ul li button.whatsapp,
        .social-share ul li a.whatsapp {
            background: #20cb45;
        }

        .social-share ul li a.google-plus {
            background: #fe6d4c;
        }

        .social-share ul li button.linkedin,
        .social-share ul li a.linkedin {
            background: #0a66c2;
        }

        .social-share ul li button.telegram {
            background: #0a9ac2;
        }

        .social-share ul li button.email {
            background: #c2410a;
        }
/* -----======input=====------*/

/* Style the search field */
.input-group.add-on{position:inherit;}X
.search_box{z-index:999;}
form.example input[type=text] {
    padding: 7px;
    font-size: 14px;
    border: none;
    float: left;
    width: 80%;
    background: var(--light);
}

form.example {
    border: none;
    border-radius: 5px 5px;
    box-sizing: border-box;
    outline: 1px solid var(--dark);
}

form.example input {
    outline: none;
}

/* Style the submit button */
form.example button {
    float: left;
    width: 20%;
    padding: 5px;
    background-color: var(--secondary);
    color: var(--dark);
    font-size: 17px;
    border: none;
    border-left: none;
    cursor: pointer;
    border-radius: 0px 5px 5px 0;
    outline: none;
}

form.example button {
    background: var(--bg1);
    color: var(--light);
}

/* Clear floats */
form.example::after {
    content: "";
    clear: both;
    display: table;
}

.search_box{
    position: absolute;
    top: 100%;
    right:0%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    overflow-X:hidden;
    overflow-y:auto;
    max-height:80vh;
}
.search_box img{
    max-height:300px;
}
.search_box img,
.search_box p{
    padding: 5px 8px;
    
}
/* -----header------*/
header {
    background-color: var(--gray);
    position: relative;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:1rem;
    position:relative;
}

.logo img {
    width: 175px;
}

/*ul.nav-sec {*/
/*    display: flex;*/
/*}*/

ul.nav-sec li {
    display: inline-block;
    padding: 1rem;
    position: relative;
}

ul.nav-sec li a {
    display: block;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font1);
    color: var(--white);
}

.nav-sec li .drp-dwn {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--black);
    z-index: 9999;
    width: 250px;
    transition: all 0.3s ease-in-out;
    transform-origin: top;
    transform: scaleY(0);
    overflow-y: auto;
    height: 300px;
}

.drp-dwn::-webkit-scrollbar{
    width: 5px;
    background-color: var(--white);
}
.drp-dwn::-webkit-scrollbar-thumb{
    width: 10px;
    background-color: var(--main);
    border-radius: 50px;
}
.drp-dwn::-webkit-scrollbar-button{
    width: 10px;
    background-color: var(--white);
    border-radius: 10px;
}
.nav-sec li.drop-menu:hover .drp-dwn {
    transform: scaleY(1);
}

.nav-sec li.drop-menu {
    padding-right: 1.5rem;
}

.drop-menu .click_btn {
    position: absolute;
    color: var(--white);
    top: 16px;
    right: 0;
}

.drp-dwn li {
    background-color: var(--black);
    width: 100%;
    display: block;
    color: var(--main);
    border-bottom: 1px solid var(--white);
}

.drp-dwn li a {
    font-size: 1.5rem;
    font-family: var(--font2);
    letter-spacing: 0.5px;
    color: var(--main);
}
#my-header.sticky{
    position: fixed;
    top: 0;
    width: 100%;
    background-color:var(--gray);
    z-index: 9999;
    animation: slide-down 1s ease-in-out;
    box-shadow: 0px 1px 4px gray;
}
@keyframes slide-down{
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}

/* ============== */


/*=========banner========*/
.banner-section {
    position: relative;
}
.ban-next.slick-arrow,
.ban-back.slick-arrow {
    position: absolute;
    content: '';
    z-index: 1;
    top: 50%;
    font-size: 17px;
    font-weight: 700;
    padding: 10px;
    cursor: pointer;
    font-weight: 300;
    height: auto;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: var(--black);
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.ban-next.slick-arrow:hover,
.ban-back.slick-arrow:hover {
    color: var(--black);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.ban-next.slick-arrow {
    right: 5px;
}

.ban-back.slick-arrow {
    left: 5px;
}

.banner-img img {
    /*height: 600px;*/
    object-fit: cover;
}

.banner-slider {
    position: relative;
}

.banner-slider .slick-dots button {
    width: 14px;
    height: 14px;
    background-color: var(--black);
    text-indent: -9999px;
    padding: 4px;
    border: none;
    border-radius: 50%;
}

.banner-slider .slick-dots {
    text-align: center;
    padding-top: 20px;
    position: absolute;
    bottom: 1rem;
    left: 45%;
}

.banner-slider ul.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.banner-slider ul.slick-dots .slick-active button {
    background-color: var(--main);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* =======------feature_product-----======= */
.feature_product {
    background-color: var(--white);
}

.feature-img {
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.feature-img img {
    position: relative;
    transition: all 0.2s ease-in-out;
}

.feature-img img:hover {
    transform: scale(1.051);
}

/* =======-about_us--======= */
.about-sec {
    background-color: var(--secondary);
}

.about-content {
        padding: 2rem;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        height: 400px;
        overflow: auto;
        background-color: var(--white);
    }
    .about-content::-webkit-scrollbar{
        width: 10px;
        background-color: var(--secondary);
    }
    .about-content::-webkit-scrollbar-thumb{
        width: 10px;
        background-color: var(--gray);
        border-radius: 50px;
    }
    .about-content::-webkit-scrollbar-button{
        width: 20px;
        background-color: var(--secondary);
        border-radius: 10px;
    }
.about-content p {
    font-size: 15px;
    word-spacing: 0.1px;
    font-weight: 400;
    font-family: var(--font2);
}
.about-inner-sec{background-color:var(--secondary);}
.ab_content .header-part{
    padding-bottom:0px;
}
/* ============ */


/* ===========hot_products======= */
.hot-product {
    background-color: var(--black);
    position: relative;
}
.hot-product .title-sec,.hot-product p{color: var(--white);}

.next-btn,
.back-btn {
    position: absolute;
    content: '';
    z-index: 1;
    top: 50%;
    font-size: 17px;
    font-weight: 700;
    padding: 10px;
    cursor: pointer;
    font-weight: 300;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: var(--black);
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.next-btn {
    right: 0px;
    bottom: 0;
    background-position: center;
    z-index: 999;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
}

.back-btn {
    left: 0px;
    bottom: 0;
    background-position: center;
    z-index: 999;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
}

.next-btn:hover,
.back-btn:hover {
    transform: scale(1.1);
    color: var(--black);
    box-shadow: 0px 0px 2px var(--white);
    opacity: 1;
}

.mySwiper{position: inherit;}
.swiper-container {
    width: 100%;
    height: 400px;
}

.swiper-slide {
    font-size: 80px;
    text-align: center;
    line-height: 400px;
    color: white;
    filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
}
.swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-prev img,   
.swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-next img{
    /*height: 200px;*/
}   
.swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active img{
    /*height: 240px;*/
}

/* =======------_product-box-----======= */
.our-product {
    background-color: var(--white);
    position: relative;
}

.product-header .title-sec,
.product-header p {
    color: var(--black);
}

.product-slider {
    position: inherit;
}
.product-img{
    overflow: hidden;
}
.product-img img{
    /*height: 320px;*/
    transition: all 0.3s ease-in-out;
}
.product-box:hover .product-img img{
    transform: scaleY(1.1);
}
.product-box {
    position: relative;
    height: 410px;
    background-color: var(--gray);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 12px;
}

.product-name {
    display: block;
    position: relative;
    padding: 1rem;
    font-family: var(--font1);
    font-size: 1.5rem;
    color: var(--main);
    line-height:1.1;
    text-align: center;
    text-transform: capitalize;
    text-align:center;
    background-color: black;
}
.product-name:hover{color: var(--white);}
.product-slider .slick-dots,
.p-slider .slick-dots{
    text-align: center;
    padding-top: 20px;
}

.product-slider .slick-dots button,
.p-slider .slick-dots button {
    width: 16px;
    height: 4px;
    background-color: var(--black);
    text-indent: -9999px;
    padding: 0;
    border: none;
    border-radius: 0px;
    transform: skew(-30deg);
}

.product-slider .slick-dots button,
.p-slider .slick-dots button {
    background-color: var(--black);
}

.slick-dots {
    text-align: center;
    padding-top: 20px;
}

.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.slick-dots .slick-active button {
    background-color: var(--main);
    width: 22px;
    height: 4px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.product-slider .slick-slide,
.p-slider .slick-slide {
    text-align:center;
    margin: 0 10px;
}
/* =======------counter-sec-----======= */
.counter-sec {
    margin-top: -200px;
    position: relative;
    z-index: 99;
}

.counter-wrapper {
    background-color: var(--white);
    padding: 2rem;
    z-index: 99;
    margin-top: -150px;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 4px 12px;
}

.counter-items {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.counter-list {
    text-align: center;
    display: inline-table;
    padding: 1rem;
}
.counter-list .heading-sec{
    padding-bottom: 1rem;
}
.counter-img img {
    width: 70px;
    margin-bottom: 1rem;
}

/********** contact-sec ************/
.contact-sec {
    position: relative;
    z-index: 9;
    background-color: var(--secondary);
}


.contact-sec:after {
    position: absolute;
    content: '';
    z-index: -1;
    left: 0%;
    bottom: 0%;
    top: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/abt-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    animation: move 8s ease-in-out infinite;
}

.contact--right-sec {
    padding: 50px 30px;
}

.contact-img img {
    height: auto;
    border-radius: 10px 0 0 10px;
}

.contact-form .input-text::placeholder {
    color: var(--black);
}

.contact-form .input-text {
    display: block;
    outline: none;
    border: none;
    width: 100%;
    padding: 0px 20px;
    font-size: 15px;
    font-weight: 300;
    color: var(--gray);
    font-family: var(--font2);
    height: 40px;
    margin: 0 0 20px 0;
    transition: all 0.5s linear;
    border: 1px solid var(--black);
}

.contact-form .input-select {
    color: var(--black);
}

.contact-form textarea.input-text {
    height: 170px;
    padding-top: 30px;
    padding-bottom: 10px;
}

.contact-layer {
    background-color: var(--white);
    margin-top: -80px;
    padding: 80px;
}

.contact-layer p,
.contact-form .heading-sec {
    color: var(--black);
    font-family: var(--font1);
}

button.contact-btn.btn-sec {
    border: none;
    margin-top:1rem;
}

.contact-heading {
    margin-bottom: 1rem;
    color: var(--black);
}

.contact-header {
    margin-bottom: 0rem;
}

.contact-header p,
.contact-detail p {
    color: var(--black);
    font-size: 19px;
}

.contact-detail {
    padding: 2.5rem;
}

/*-------- */
.contact-box {
    margin-bottom: 2rem;
}

.c-list {
    width: 100%;
    position: relative;
    background-color: transparent;
}

.c-icon {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    height: fit-content;
    z-index: 9;
}

.c-icon i {
    width: 30px;
    height: 30px;
    background:var(--gray);
    border-radius: 10%;
    text-align: center;
    padding: 20px;
    color: var(--main);
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--black);
}

.cb-content {
    margin-left: 20px;
}

.cb-content span {
    font-size: 28px;
    line-height: 30px;
    width: 100%;
    display: inline-block;
    color: var(--gray);
    text-transform: capitalize;
    font-family: var(--font1);
    text-transform: capitalize;
    font-weight: 600;
}

.cb-content img {
    width: 35px;
}

.cb-content p {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    color: var(--gray);
    display: inline-block;
    margin-bottom: 4px;
    font-family: var(--font2);
}

.cb-content p a {
    color: var(--gray);
    font-size: 1rem;
}

.cb2-content {
    font-size: 24px;
    line-height: 34px;
    color: var(--main);
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 500;
}
.contact-link{
    margin-left: 0;
}
.social-items{
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.s-list{
    font-size: 1.5rem;
    background-color:var(--gray);
    color: var(--white);
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease-in-out;
}
.s-list:hover{
    color: var(--main);
    transform: scale(1.1);
}
/* =======testi-sec======= */
.testi-box{
     padding: 5px 15px;
    height: 513px;
    background: #fff;
    display: inline-block;
    -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 0 5px 10px;
    text-align: center;
}
.testi-img{
    height: 200px;
    width: 100%;
}
.testi-img img{
    height: 100%;
}
.testi-slider .slick-slide{
    margin: 0 1rem;
}
.testi-content{
    padding: 10px 0;
    display: block;
    /*height: 90px;*/
    overflow: auto;
    font-family: var(--font2);
    color: var(--gray);
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin: 8px auto 10px;
}
.testi-content::-webkit-scrollbar{
    width: 5px;
    background-color: var(--secondary);
}
.testi-content::-webkit-scrollbar-thumb{
    width: 10px;
    background-color: var(--gray);
    border-radius: 50px;
}
.testi-content::-webkit-scrollbar-button{
    width: 10px;
    background-color: var(--secondary);
    border-radius: 10px;
}

.rating-box{
    display: inline-block;
    border-top: 1px solid #e5e5e5;
    padding-top: 15px;
    margin-bottom: 8px;
    margin-top: 0rem;
}
 .rating-box .star-fill{
    display: inline-block;
    margin: 0 2px;
 }
 .rating-box .star-fill:before{
    content: "";
    background: url("../img/icon/star.svg") no-repeat;
    width: 18px;
    height: 18px;
    display: block;
 }
 .testi-box .info{
    margin: 0;
    font-size: 15px;
    line-height: 20px;
    color: #848484;
    font-family: var(--font2);
    text-transform: capitalize;
 }
 .testi-box .info span{
    font-size: 13px;
    line-height: 16px;
    color: #515151;
    padding-top: 3px;
    display: block;
 }
/* =======footer-sec======= */
footer {
    background-image: url(../img/bg/footer-bg.jpg);
    background-size: cover;
    position: relative;
    z-index: 99;
    padding: 2rem 0 1rem 0;
}

footer::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray);
    z-index: -1;
    opacity: 0.5;
}

.f-logo img{
    width: 120px;
    border-radius: 5px;
}

.f-section {
    display: flex;
    overflow: hidden;
}

.f-icon {
    margin-right: 20px;
    font-size: 18px;
    background-color:var(--white);
    border-radius: 5px;
    padding: 10px;
    height: 38px;
    width: 38px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
}

.footer-content {
    color: var(--white);
    font-family: var(--font2);
    margin-bottom: 10px;
    font-size: 15px;
    letter-spacing: 0.6px;
    line-height: 1.4;
    display: block;
}

.footer-element {
    margin-top: 20px;
}
.footer-element p{
    color: var(--white);
}

.f-heading { 
    text-transform: capitalize;
    font-size: 20px;
    font-family: var(--font1);
    font-weight: 700;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    color: var(--main);
}

.f-content li {
    padding: 7px 0;
    overflow: hidden;
    font-family: var(--font1);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;

}

.f-content li a {
    color: var(--white);
    transition: all 0.2s ease-in-out;
    font-family: var(--font2);
    font-weight: 400;
}

.f-content li a:hover {
    color: var(--main);
    font-size: 16px;
}

.f-content>li>a>span {
    margin-right: 10px;
    color: var(--white);
}

.f-content li:hover.f-content>li>a>span {
    margin-right: 20px;
}

.f-services {
    height: 230px;
    overflow: auto;
}

.f-services::-webkit-scrollbar {
    width: 5px;
}

.f-services::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 20px;
}

.f-services::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 15px;
}
.f-item p{
    margin-bottom: 5px;
    color: var(--white);
    font-weight: 400;
}
.f-contact li{
padding-bottom: 10px;
}
.f-item a:hover{
    font-size: 13px;
}
.f-content li a:hover{
    font-size: 16px;
}


.copyright-sec p{
    margin-bottom: 0;
        color: var(--white);
}
.copyright-sec {
    text-align: center;
    font-family: var(--font1);
    text-transform: capitalize;
    padding: 8px;
    color: var(--white);
}

.copyright-sec a {
    color: var(--main);
    font-size: 17px;
    font-style: italic;
}

/********scroll-btn**************/
#scroll-top {
    display: inline-block;
    background-color: var(--white);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 1px;
    position: fixed;
    bottom: 30px;
    right: 10px;
    visibility: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 1000;
}

#scroll-top::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 40px;
    color: var(--gray);
}

#scroll-top:hover::after{
    color: var(--main);
}
#scroll-top:hover {
    cursor: pointer;
    background-color: var(--gray);
    box-shadow: 0px 0px 2px var(--white);
    color: var(--main);
}

#scroll-top:active {
    background-color: var(--gray);
    color: var(--main);
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.fixed-wtsp {
    position: fixed;
    top: 90vh;
    left: 2px;
    display: block;
    width: 3.5rem;
    padding: 5px;
    border-radius: 0 5px 5px 0;
    z-index: 999;
    transition: all 1s ease;
}

.fixed-wtsp:hover {
    transform: scale(1.1);
}

/******breadcrump*******/
.breadcrump-sec {
    background-color: var(--gray);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 99;
}
.inner-bread{
   padding: 238px 0; 
}

.breadcrump-sec::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(146, 173, 245, 0.1);
    content: '';
    z-index: -1;
    background: url('../img/image/banner.jpg');
    background-size: cover;
    opacity: 0.6;
}

.bread-title {
    font-family: var(--font2);
    font-size: 35px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-align: left;
    padding: 20vh 10vw 0 0;
    text-shadow: 0px 1px var(--black);
}

.b-links {
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 50%;
    display: inline-block;
    background-color: var(--black);
    padding: 14px 30px;
    color: var(--white);
    font-family: var(--font1);
    font-weight: 800;
    text-transform: capitalize;
    box-shadow: inset 0 0 3px var(--secondary);
    clip-path: polygon(0 0, 82% 0, 100% 100%, 0% 100%);
}

.b-links a {
    font-size: 18px;
    letter-spacing: 1.1px;
    padding: 0 5px;
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: none;
    color: var(--main);
    margin-bottom: 50px;
}

.b-item.active {
    color: var(--white);
    text-transform: capitalize;
    font-family: var(--font1);
    letter-spacing: 1.2px;
    font-size: 20px;
    font-weight: 600;
    padding-left: 5PX;
}

span.fa-solid {
    color: var(--white);
}

/****marketing-butoon***/
.market-place {
    background-color: var(--secondary);
    padding: 40px 0;
    position: relative;
}

a.market-btn {
    display: block;
}

.market-title {
    color: var(--main);
}

.marketing-title {
    font-size: 32px;
    text-transform: capitalize;
    font-family: var(--font1);
    font-weight: 600;
    margin: 20px auto;
    line-height: 1.1;
}

a.market-btn {
    padding: 18px 30px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    text-transform: capitalize;
    font-family: var(--font1);
    font-weight: 600;
    line-height: 1.2;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
    display: block;
}

.mfp-wrap{
    z-index: 99999;
}
.abt_inner .row{
    display:revert;
}
.col-md-6.abt_img{
       width: 50%;
    float: left;
    flex: inherit;
    padding-right: 2rem;
    padding-bottom: 2rem;
}
.col-md-6.abt_text{
    width:100%;
}
/* =======media-queries======= */
@media (max-width:992px) {
    .logo img{
        width:100px;
    }
    .abt_inner .row{
    display:flex;
}
.col-md-6.abt_img{
       width: 100%;
    float: none;
    flex: inherit;
    padding-right: 0rem;
    padding-bottom: 1rem;
}
.col-md-6.abt_text{
    width:100%;
}
    .nav-sec {
        display: none;
        position: absolute;
        left: 0;
        flex-direction: column;
        width: 100%;
        top: 100%;
        z-index: 999;
        background-color: var(--secondary);
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    }

    ul.nav-sec li {
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--gray);
        padding: 0 0.8rem;
    }

    ul.nav-sec li a {
        padding: 10px;
        color: var(--black) !important;
    }
    .nav-sec li .drp-dwn{
        width: 100%;
        background-color: var(--white);
    }
    .nav-sec li .drp-dwn li{
        background-color: var(--white);

    }
    .toggle {
        cursor: pointer;
        overflow: hidden;
        width: 55px;
        height: 55px;
        background: #fff;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 4;
    }

    .line-toggle {
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: #000;
        transition: all .6s;
    }

    .line-toggle:first-child {
        transform: translateY(-12px) translateX(-7px);
        width: 35px;
        transition-delay: 0s;
    }

    .toggle .line-toggle:nth-child(2) {
        transition-delay: .12s;
    }

    .line-toggle:last-child {
        transform: translateY(12px) translateX(-12px);
        width: 25px;
        transition-delay: 0s;
    }

    .toggle.active .line-toggle:first-child {
        background: var(--black);
        transform: translateY(0) translateX(0) rotate(45deg);
        width: 40px;
        height: 3px;
        transition-delay: .1s;
    }

    .toggle.active .line-toggle:nth-child(2) {
        transform: translateX(110px);
        transition-delay: 0s;
    }

    .toggle.active .line-toggle:last-child {
        background: var(--black);
        transform: translateY(0) translateX(0) rotate(314deg);
        width: 40px;
        height: 3px;
        transition-delay: .1s;
    }
    .drop-menu .click_btn{
        color: var(--gray);
        padding: 0.81rem;
        top: 0;
    }
    
    header,#my-header.sticky{
        padding:0.5rem 0;
    }
    .btn-sec{
        font-size:14px;
    }
.header-part {
    padding-bottom: 3rem;
    position: relative;
    line-height: 1.1;
}

.header-part p {
    font-size: 1rem;
    font-family: var(--font2);
    font-weight: 400;
    line-height: 1.2rem;
    letter-spacing: 0.02em;
}

.heading-sec {
    font-size: 20px;
    line-height: 24px;
}

.title-sec {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.sub-title {
    font-size: 1rem;
}
    
    /* ---banner--- */
    .banner-img img {
        height: auto;
    }
    /* ====feature-sec ======*/
    .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active img,
    .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-prev img, .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-next img
    {
        height: auto;
    }
  .mySwiper{position: inherit;}
.swiper-container {
    width: 100%;
    height: auto;
}

.swiper-slide {
    font-size: 80px;
    text-align: center;
    line-height: 1!important;
    color: white;
    filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
}
    /* ====feature-sec ======*/
    .feature-img{
        margin-bottom: 2rem;
    }
    
    /* ====counter-sec ======*/
    .counter-items{
        flex-direction: column;
        gap: 2rem;
    }
    .product-slider .slick-dots button {
        display: none;
    }
    .contact-layer{
        padding:1rem;
        margin-top: 0;
    }
 /*----breadcrump-- */
 .breadcrump-sec {
    padding: 0px 0;

}

.bread-title {
    color: var(--white) !important;
    font-weight: 600;
    margin-bottom: 0px !important;
    font-size: 20px;
    padding: 10vh 10vw 0;
    text-shadow: 0px 1px var(--white);
}

.b-links {
    position: relative;
    width: 100%;
    font-weight: 700;
}

.b-links a {
    font-size: 16px;
}

.b-item.active {
    color: var(--white);
    text-transform: capitalize;
    font-family: var(--font2);
    letter-spacing: 0.2px;
    font-size: 16px;
    font-weight: 700;
    padding-left: 5PX;
    flex-wrap: wrap;
}
.cb-content span{font-size:20px;}
.c-icon i{
        width: 30px;
    height: 30px;
    border-radius: 1%;;
    padding: 10px;
    font-size: 18px;
    border: 1px solid var(--black);
}
.counter-wrapper{
    padding:1rem;
}
.s-list{
    font-size: 1.2rem;
    padding: 10px;
    width: 30px;
    height: 30px;
}

}

