body {
          font-family: "Poppins", sans-serif;
        }

        .about-section {
          padding: 90px 0;
          background: #f8f6f2;
          overflow: hidden;
        }

        .about-image {
          position: relative;
        }

        .about-image img {
          width: 100%;
          border-radius: 15px;
          object-fit: cover;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          transition: 0.4s ease;
        }

        .about-image img:hover {
          transform: scale(1.03);
        }

        .about-content {
          padding-left: 40px;
        }

        .about-tag {
          display: inline-block;
          background: #c48b4f;
          color: #fff;
          padding: 8px 22px;
          border-radius: 50px;
          font-size: 14px;
          font-weight: 600;
          letter-spacing: 1px;
          margin-bottom: 20px;
        }

        .about-content h2 {
          font-size: 48px;
          font-weight: 700;
          color: #222;
          line-height: 1.3;
          margin-bottom: 25px;
        }

        .about-content h2 span {
          color: #b77b3f;
          position: relative;
        }

        .about-content h2 span::after {
          content: "";
          position: absolute;
          left: 0;
          bottom: -8px;
          width: 100%;
          height: 4px;
          background: #d4a26a;
          border-radius: 10px;
        }

        .about-content p {
          font-size: 17px;
          color: #555;
          line-height: 32px;
          margin-bottom: 20px;
        }

        .about-btn {
          display: inline-block;
          padding: 14px 35px;
          background: #b77b3f;
          color: #fff;
          text-decoration: none;
          border-radius: 8px;
          font-weight: 600;
          transition: 0.3s;
        }

        .about-btn:hover {
          background: #000;
          color: #fff;
        }

        /* ===== Responsive ===== */

        @media (max-width: 991px) {
          .about-content {
            padding-left: 0;
            margin-top: 40px;
            text-align: center;
          }

          .about-content h2 {
            font-size: 38px;
          }

          .about-content p {
            font-size: 16px;
            line-height: 28px;
          }
        }

        @media (max-width: 767px) {
          .about-section {
            padding: 60px 0;
          }

          .about-content h2 {
            font-size: 30px;
          }

          .about-content p {
            font-size: 15px;
            line-height: 26px;
          }

          .about-btn {
            padding: 12px 28px;
            font-size: 15px;
          }
        }

        .collections {
          padding: 80px 0;
          background: #f8f6f2;
        }

        .section-title {
          font-size: 42px;
          font-weight: 700;
          color: #222;
          text-align: center;
          margin-bottom: 15px;
          position: relative;
        }

        .section-title::after {
          content: "";
          width: 120px;
          height: 4px;
          background: #c79a63;
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          bottom: -12px;
          border-radius: 20px;
        }

        .section-desc {
          max-width: 950px;
          margin: auto;
          text-align: center;
          font-size: 17px;
          line-height: 32px;
          color: #666;
          margin-bottom: 50px;
        }



        .product-card {
          background: #fff;
          border-radius: 18px;
          overflow: hidden;
          transition: 0.4s ease;
          margin: 12px;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
          border: 1px solid #f0e6db;
        }

        .product-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .product-img {
          position: relative;
          overflow: hidden;
          background: #fff;
        }

        .product-img img {
          width: 100%;
          height: 320px;
          object-fit: cover;
          transition: 0.5s;
        }

        .product-card:hover .product-img img {
          transform: scale(1.08);
        }

        /* Overlay Effect */

        .product-overlay {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
          opacity: 0;
          transition: 0.4s;
        }

        .product-card:hover .product-overlay {
          opacity: 1;
        }

        /* Card Body */

        .product-content {
          padding: 22px 18px;
          text-align: center;
        }

        .product-content h3 {
          margin-bottom: 10px;
        }

        .product-content h3 a {
          text-decoration: none;
          color: #222;
          font-size: 20px;
          font-weight: 600;
          transition: 0.3s;
        }

        .product-content h3 a:hover {
          color: #b77b3f;
        }

        /* Button */

        .view-btn {
          display: inline-block;
          margin-top: 10px;
          padding: 10px 24px;
          background: #c79a63;
          color: #fff;
          border-radius: 50px;
          text-decoration: none;
          font-size: 14px;
          font-weight: 600;
          transition: 0.3s;
        }

        .view-btn:hover {
          background: #000;
          color: #fff;
        }

 
        .slick-dots li button:before {
          font-size: 12px;
          color: #b77b3f;
        }

        .slick-dots li.slick-active button:before {
          color: #000;
        }

   

        @media (max-width: 991px) {
          .section-title {
            font-size: 34px;
          }

          .section-desc {
            font-size: 16px;
            line-height: 28px;
          }

          .product-img img {
            height: 280px;
          }
        }

        @media (max-width: 767px) {
          .collections {
            padding: 60px 0;
          }

          .section-title {
            font-size: 28px;
          }

          .section-desc {
            font-size: 15px;
            line-height: 26px;
          }

          .product-content h3 a {
            font-size: 18px;
          }

          .product-img img {
            height: 250px;
          }
        }
        .product-card {
          border-radius: 12px;
          overflow: hidden;
          position: relative;
          background: #fff;
        }

        /* IMAGE BOX SAME SIZE */
        .product-img {
          width: 100%;
          height: 350px; /* same height */
          overflow: hidden;
          position: relative;
        }

        /* IMAGE SAME SIZE */
        .product-img img {
          width: 100%;
          height: 100%;
          object-fit: cover; /* image fit properly */
          display: block;
          transition: 0.4s ease;
        }

        /* HOVER ZOOM EFFECT */
        .product-card:hover .product-img img {
          transform: scale(1.05);
        }

        /* OVERLAY */
        .product-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.2);
        }

        /* CONTENT */
        .product-content {
          text-align: center;
          padding: 20px 15px;
        }

        .product-content h3 {
          font-size: 22px;
          margin-bottom: 12px;
        }

        .product-content h3 a {
          color: #111;
          text-decoration: none;
          font-weight: 600;
        }

        .view-btn {
          display: inline-block;
          padding: 10px 22px;
          background: #c40000;
          color: #fff;
          border-radius: 6px;
          text-decoration: none;
          transition: 0.3s ease;
        }

        .view-btn:hover {
          background: #111;
        }

      

        @media (max-width: 767px) {
          .product-img {
            height: 280px;
          }

          .product-content h3 {
            font-size: 18px;
          }
        }

 #gallery-section {
          background: #fff;
        }

        .gallery-item {
          overflow: hidden;
          border-radius: 15px;
          position: relative;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
        }

        .gallery-item img {
          width: 100%;
          height: 320px;
          object-fit: cover;
          transition: 0.5s ease;
          display: block;
        }

        .gallery-item:hover img {
          transform: scale(1.08);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
          .gallery-item img {
            height: 220px;
          }
        }

        @media (max-width: 576px) {
          .gallery-item img {
            height: 180px;
          }
        }
    

    

      
        .product-card {
          transition: 0.4s ease;
          height: 100%;
        }

        .product-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
        }

        /* IMAGE HEIGHT SAME */

        .product-img {
          height: 340px;
        }

        .product-img img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: 0.5s ease;
        }

        /* IMAGE HOVER */

        .product-card:hover img {
          transform: scale(1.08);
        }

        /* TITLE */

        /* .{
    font-size:22px;
    line-height:32px;
    min-height:70px;
    color:#111;
} */

        /* ENQUIRY BUTTON */

        .enquiry-btn {
          background: #b77b3f;
          color: #fff;
          border: none;
          transition: 0.3s ease;
        }

        .enquiry-btn:hover {
          background: #111;
          color: #fff;
        }

        /* WHATSAPP BUTTON */

        .whatsapp-btn {
          transition: 0.3s ease;
        }

        .whatsapp-btn:hover {
          background: #b77b3f !important;
          border-color: #b77b3f !important;
        }

        /* MOBILE RESPONSIVE */

        @media (max-width: 767px) {
          .product-img {
            height: 260px;
          }

          /* .{
        font-size:18px;
        line-height:28px;
        min-height:auto;
    } */

          .d-flex.gap-2 {
            flex-direction: column;
          }

          .d-flex.gap-2 a {
            width: 100% !important;
          }
        }
p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.enqirybox-wel {
    display: flex;
}

.enqirybox-wel a button {
    font-size: 15px;
    padding: 10px;
}

.enqirybox-wel {
    display: flex;
    margin: 20px 0px;
    gap: 10px;
    justify-content: center;
}

.sign-in .btn-close {
    top: 20px;
}

.sign-in button {
    margin-top: 20px;
}

.accordion-button:not(.collapsed)::after {
    color: #000;
    filter: brightness(0);
}

.accordion-item:first-of-type .accordion-button {
    color: #000;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    color: #000;
}

.enqirybox a button {
    font-size: 15px;
}

.enqirybox {
    display: flex;
    justify-content: center;
    margin: 12px 0px;
    gap: 10px;
}

.breadcrumb {
    padding: 10px;
}

.breadcrumb h6,
.breadcrumb a {
    color: #fff;
    margin: 0px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 40px !important;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-width: 1px;
    padding: 10px;
}

#content img.google-logo {
    width: 200px;
}

.fa-star:before {
    color: #e8b447;
}

/*.owl-nav.disabled {display:none;}*/

p,
li {
    /* text-align: justify; */
}

img {
    max-width: 100%;
}

.breadcrumb-site {
    padding-top: 2px;
    padding-bottom: 2px;
    margin-bottom: 0px;
}

.testimonials {
    padding: 30px 0px;
    background: #000;
}

.testimonials .author-info p {
    text-align: center;
}

.testimonials-sec .blockquote {
    padding: 0px 100px;
}

.testimonials-sec .blockquote p {
    text-align: center;
    color: #fff;
}

.breadcrumb-site .breadcrumb-item+.breadcrumb-item::before {
    content: "";
    margin: 0 15px;
    color: #9b9b9b;
    font-size: 0;
    width: 20px;
    height: 1px;
    background-color: currentColor;
}

.breadcrumb-item.active {
    color: white;
}

.letter-spacing-01 {
    letter-spacing: 0.1em !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.bg-gray-2 {
    background-color: #000;
}

.pb-lg-13,
.py-lg-13 {
    padding-bottom: 5rem !important;
}

.pt-11,
.py-11 {
    padding-top: 4rem !important;
}

.pt-7,
.py-7 {
    padding-top: 2.5rem !important;
}

.pt-10,
.py-10 {
    padding-top: 4.375rem !important;
}

.pb-10,
.py-10 {
    padding-bottom: 5rem !important;
}

.mb-7,
.my-7 {
    margin-bottom: 2.5rem !important;
}

.pt-6,
.py-6 {
    padding-top: 1.875rem !important;
}

.p-md-8 {
    padding: 3.125rem !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-15 {
    font-size: 17px !important;
}

.fs-18 {
    font-size: 17px !important;
    font-weight: 500;
}

.fs-34 {
    font-size: 22px !important;
}

.mt-lg-8,
.my-lg-8 {
    margin-top: 3.125rem !important;
}

.pb-10,
.py-10 {
    padding-bottom: 4.375rem !important;
    padding-top: 4.375rem !important;
}

.pb-14,
.py-14 {
    padding-bottom: 6.875rem !important;
    padding-top: 6.875rem !important;
}

.pt-lg-12,
.py-lg-12 {
    padding-top: 3.625rem !important;
}

.text-left {
    text-align: left !important;
}

.text-secondary {
    color: #000 !important;
}

a {
    color: #000;
    text-decoration: none;
    background-color: transparent;
}

a u {
    color: #000;
    text-decoration: none;
    background-color: transparent;
}

.slick-slide {
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.slick-arrow {
    display: block;
}

#content img {
    width: 100%;
}

/*top-bar*/

.topbar {
    padding: 3px 0px;
}

.topbar li a,
.topbar p a,
.topbar p i {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 5px;
}

.topheadertext {
    color: #fff !important;
    padding-left: 74px;
    font-size: 15px !important;
}

/*end*/

/*testimonials*/

.testimonial img {
    max-height: 450px;
}

.testimonial h4 {
    font-size: 20px;
    color: #fff;
}

/*navigation*/

.dropdown {
    position: none;
}

.main-header .dropdown-menu {
    position: absolute;
    border: 0;
    border-radius: 0;
    margin-top: 0;
    z-index: 9999;
}

.megamenu-li {
    position: static;
}

.navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
    left: 10px;
    right: 10px;
}

.sticky-area-wrap {
    position: relative;
}

.sticky-area {
    left: 0;
    right: 0;
    z-index: 1010;
}

.main-header .navbar .dropdown-menu {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.main-header .navbar .dropdown-link {
    color: #000000;
}

.megamenu-li .megamenu li {
    width: 250px;
    display: inline-block;
    padding-right: 20px;
}

.navbar-expand-xl .navbar-nav .dropdown-menu li a {
    color: #000;
    text-decoration: none;
}

.navbar-expand-xl .navbar-nav .nav-link {
    display: block;
    padding: 47px 10px;
}

.offcanvas.show {
    height: 100vh;
    overflow-x: scroll;
}

.nav-link {
    color: #000;
}

.main-header .navbar {
    position: static;
}

.sticky .navbar-expand-xl .navbar-nav .nav-link {
    display: block;
    padding: 30px 10px;
}

.navbar-brand {
    width: 100px;
}

.sticky .navbar-brand {
    width: 100px;
}

.navbar-brand img {
    width: 100%;
}

.pt-lg-11,
.py-lg-11 {
    padding-top: 5rem !important;
}

/*slick slide*/

.slick-slide {
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.slick-dots {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    margin-top: 30px;
}

.slick-dots li {
    cursor: pointer;
    text-align: center;
    padding: 0 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slick-dots span {
    display: inline-block;
    line-height: 8px;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

.slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}

.slick-dots li.slick-active,
.slick-dots li:hover,
.slick-arrow:active,
.slick-dots li:active,
.slick-arrow:focus,
.slick-dots li:focus {
    opacity: 1;
}

.slick-dots li.slick-active span {
    width: 14px;
    height: 14px;
    line-height: 14px;
    display: inline-block;
    border: 1px solid #000;
    background: 0;
}

.slick-dots-light .slick-dots li span {
    background: #fff;
}

.slick-dots-light .slick-dots li.slick-active span {
    border-color: #fff;
    background: 0;
}

.banner-01 .card-img {
    height: 420px;
}

.static-banner .card {
    background: rgb(96, 59, 8);
    background: -moz-linear-gradient(45deg, rgba(96, 59, 8, 1) 0%, rgba(228, 181, 63, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(96, 59, 8, 1) 0%, rgba(228, 181, 63, 1) 100%);
    background: linear-gradient(45deg, rgba(96, 59, 8, 1) 0%, rgba(228, 181, 63, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#603b08", endColorstr="#e4b53f", GradientType=1);
}

.static-banner .card .card-img {
    background-position: right !important;
    background-size: contain;
}

.static-banner .card-img-overlay {
    padding: 40px;
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-img-cover-center {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-overlay-gradient-01 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 57.87%, rgba(0, 0, 0, 0.57) 100%);
}

.bg-overlay-gradient-02 {
    background-image: linear-gradient(176deg, #00000078 -2%, #00000000 51%);
}

.bg-overlay-01 {
    background: rgba(0, 0, 0, 0.23);
}

.hover-top {
    position: relative;
    transition: all 0.3s;
    top: 0;
}

.hover-top:hover {
    top: -15px;
}

.hover-transform-20 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: 0.3s;
}

.hover-transform-20:hover {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}

.bg-color-1 {
    background-color: #f0f3f2 !important;
}

.hover-zoom-in {
    overflow: hidden;
}

.hover-zoom-in img,
.hover-zoom-in .img,
.hover-zoom-in .card-img {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: 0.5s ease-in-out;
}

.hover-zoom-in:hover img,
.hover-zoom-in:hover .img,
.hover-zoom-in:hover .card-img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.hover-opacity {
    overflow: hidden;
}

.hover-opacity img,
.hover-opacity .img,
.hover-opacity .card-img {
    opacity: 1;
    transition: 1s ease-in-out;
}

.hover-opacity:hover img,
.hover-opacity:hover .img,
.hover-opacity:hover .card-img {
    opacity: 0.5;
}

.bg-animation {
    background-position: 0 0;
    background-repeat: repeat-x;
    -webkit-animation: animatedBackground 15s linear infinite;
    animation: animatedBackground 15s linear infinite;
}

@-webkit-keyframes animatedBackground {
    0 {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes animatedBackground {
    0 {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.hover-shine:hover::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.hover-flash:hover img,
.hover-flash:hover .card-img,
.hover-flash:hover .img {
    opacity: 1;
    -webkit-animation: g5-flash 1.5s;
    animation: g5-flash 1.5s;
}

@-webkit-keyframes g5-flash {
    0 {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

@keyframes g5-flash {
    0 {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

.fs-15 {
    font-size: 17px !important;
}

.fs-15 {
    font-size: 17px !important;
}

.custom-font-02 {
    font-family: butler !important;
}

.product-cate h4 {
    margin-top: 10px;
}

.product-cate .card-title {
    font-size: 20px;
}

.quickcontact {
    width: 50px;
    position: fixed;
    bottom: 65px;
    left: 12px;
    border-radius: 20px;
    z-index: 20;
    bottom: 10px;
}

.quickcontact img {
    width: 100%;
}

.quickcontact2 {
    width: 80px;
    position: fixed;
    bottom: 74px;
    right: 16px;
    border-radius: 20px;
    z-index: 20;
}

.quickcontact2 a img {
    width: 100%;
}

/*canvas sidebar*/

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.moblogo {
    display: none;
}

.navwidht {
    width: 50%;
}

.navpart {
    display: flex;
}

/*end*/

.welcome p {
    text-align: justify;
}

.welcome h1 {
    font-size: 34px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.6875rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.6;
    color: #000;
    background-color: #f5f5f5;
    background-clip: padding-box;
    border: 1px solid #3f4a3c33;
    border-radius: 3px;
    box-shadow: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-bottom: 20px;
}

/*slick-slider*/

.slick-slider {
    margin-left: -15px;
    margin-right: -15px;
}

.slick-slider .box {
    background-color: transparent !important;
    font-size: 0.9375rem;
}

.slick-slider .box:focus {
    outline: 0;
}

.slick-slider img {
    max-width: 100%;
}

.category .slick-slider img {
    width: 100%;
    height: 316px;
    object-fit: fill !important;
}

.trusted .slick-slide img {
    height: auto;
}

.productimages img {
    height: 330px;
}

.product-details-layout-4 .slick-slide img {
    height: 410px;
}

.product-details-layout-4 .galleries-product .slider-nav img {
    height: 100px;
}

.collections .slick-slide img {
    height: auto;
}

.whatsappbutton {
    background-color: #2ab128 !important;
}

.product-details-layout-4 .slick-slide img {
    height: 380px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-secondary {
    color: #fff;
    background-color: #000;
    border-color: #000;
    box-shadow: none;
}

.slick-slider :focus {
    outline: 0;
}

.custom-arrows .slick-arrow {
    display: none !important;
    border: 0;
}

.custom-arrows .slick-arrow i {
    font-size: 40px;
}

.custom-arrows .slick-arrow:hover {
    box-shadow: none;
}

@media (min-width: 992px) {
    .arrow-lg .slick-arrow {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .custom-arrows .slick-arrow {
        display: block !important;
    }
    .dot-lg-0 .slick-dots {
        display: none !important;
    }
    .p-md-4 {
        padding: 3.5rem !important;
    }
}

.arrow-0 .slick-arrow {
    display: none !important;
}

.slick-slide {
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.slick-track {
    display: -ms-flexbox;
    display: flex;
}

.slick-vertical {
    height: auto;
}

.slick-vertical .slick-track {
    display: block;
}

.slick-vertical .slick-dots {
    right: 50px;
    left: auto;
    top: 50%;
    -ms-flex-flow: column;
    flex-flow: column;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slick-arrow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #00000094;
    width: 39px;
    height: 39px;
    font-size: 14px;
    border-radius: 50%;
    color: #fff;
    border: 2px solid #eee;
    z-index: 100;
    transition: all 0.3s;
    cursor: pointer;
}

.slick-arrow:hover {
    color: black;
    background-color: white;
    border: 2px solid #eee;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}

.slick-arrow.slick-disabled {
    cursor: no-drop;
}

.slick-arrow.slick-prev {
    left: 0;
    right: auto;
}

.slick-arrow.slick-next {
    left: auto;
    right: 0;
}

.slick-arrow i {
    font-size: 18px;
    line-height: inherit;
}

.custom-arrows-02-prev,
.custom-arrows-02-next {
    -webkit-transform: none;
    transform: none;
}

.custom-arrows-03 .slick-prev {
    left: 35px;
}

.custom-arrows-03 .slick-next {
    right: 35px;
}

@media (min-width: 1750px) {
    .custom-arrows-04 .slick-prev {
        left: -148px;
    }
    .custom-arrows-04 .slick-next {
        right: -148px;
    }
}

.slick-dots {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    margin-top: 30px;
}

.slick-dots li {
    cursor: pointer;
    text-align: center;
    padding: 0 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slick-dots span {
    display: inline-block;
    line-height: 8px;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

.slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}

.slick-dots li.slick-active,
.slick-dots li:hover,
.slick-arrow:active,
.slick-dots li:active,
.slick-arrow:focus,
.slick-dots li:focus {
    opacity: 1;
}

.slick-dots li.slick-active span {
    width: 14px;
    height: 14px;
    line-height: 14px;
    display: inline-block;
    border: 1px solid #000;
    background: 0;
}

.slick-dots-light .slick-dots li span {
    background: #fff;
}

.slick-dots-light .slick-dots li.slick-active span {
    border-color: #fff;
    background: 0;
}

.custom-dots-01 .slick-dots span {
    line-height: 10px;
    width: 10px;
    height: 10px;
    background: #ccc;
}

.custom-dots-01 li {
    padding: 0 7.5px;
}

.custom-dots-01 li.slick-active span {
    width: 10px;
    height: 10px;
    background: #000;
}

.custom-slider-02 .slick-dots {
    position: absolute;
    bottom: 30px;
}

.footer li {
    text-align: left;
}

@media (min-width: 992px) {
    .custom-slider-02 .slick-dots {
        right: calc(100vw / 2 - 992px / 2+30px);
    }
}

@media (min-width: 1200px) {
    .custom-slider-02 .slick-dots {
        right: calc(100vw / 2 - 1170px / 2+30px);
    }
}

@media screen and (min-width: 1750px) {
    .custom-slider-02 .slick-dots {
        right: calc(100vw / 2 - 1750px / 2+30px);
    }
}

@media (max-width: 1024.98px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px 5px;
        font-size: 15px;
    }
    .product-details-layout-4 .slick-slide img {
        height: 420px;
    }
    .productimages img {
        height: 390px;
    }
    .collections .slick-slide img {
        height: 270px;
    }
}

@media (max-width: 991.98px) {
    .main-header .navbar .dropdown-menu {
        overflow-y: scroll;
        height: 280px;
    }
    .custom-slider-02 .slick-dots {
        left: calc(100vw / 2 - 768px / 2+45px);
        right: auto;
        bottom: 20px;
    }
    .collections .slick-slide img {
        height: auto;
    }
}

@media (max-width: 768px) {
    .custom-slider-02 .slick-dots {
        left: calc(100vw / 2 - 576px / 2+45px);
    }
    .productimages {
        height: 320px;
    }
}

@media (max-width: 575.98px) {
    .testimonial h4 {
        font-size: 15px;
    }
    .custom-slider-02 .slick-dots {
        left: 30px;
    }
    .pt-5 {
        padding-top: 2rem !important;
    }
}

.custom-slider-02 .slick-dots li:not(.slick-active) {
    display: none;
}

.custom-slider-02 .slick-dots .slick-active {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}

.custom-slider-02 .slick-dots .dot,
.custom-slider-02 .slick-dots .dot-divider,
.custom-slider-02 .slick-dots .divider-value {
    height: auto;
    width: auto;
    background-color: transparent;
    border: 0;
}

.custom-slider-02 .slick-dots .dot {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.custom-slider-02 .slick-dots .dot-divider {
    display: inline-block;
    content: "";
    width: 100px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 15px;
    position: relative;
    z-index: 1;
}

.custom-slider-02 .slick-dots .divider-value {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    background-color: #fff;
    z-index: 2;
    width: 100%;
}

.custom-slider-02.dots-white .slick-dots .dot {
    color: #fff;
}

.custom-slider-02.dots-white .slick-dots .dot-divider {
    background-color: rgba(255, 255, 255, 0.17);
}

.custom-slider-02.dots-white .slick-dots .divider-value {
    background-color: #fff;
}

@media (max-width: 991.98px) {
    .custom-slider-02.slider-01 .slick-dots {
        left: calc(100vw / 2 - 768px / 2+30px);
    }
}

@media (max-width: 767.98px) {
    .custom-slider-02.slider-01 .slick-dots {
        left: calc(100vw / 2 - 576px / 2+30px);
    }
}

@media (max-width: 575.98px) {
    .custom-slider-02.slider-01 .slick-dots {
        left: 15px;
    }
}

.custom-slider-03 .slick-arrow {
    top: -125px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.custom-slider-03 .slick-arrow.slick-next {
    right: 14%;
}

.custom-slider-03 .slick-arrow.slick-prev {
    left: auto;
    right: 22%;
}

.custom-slider-03 .slick-dots {
    font-size: 18px;
    color: #000;
    position: absolute;
    top: -137px;
    right: 17%;
}

.custom-slider-03 .slick-dots .dot-divider,
.custom-slider-03 .slick-dots .dot-text,
.custom-slider-03 .slick-dots .dot {
    height: auto;
    width: auto;
    background-color: transparent;
    border: 0;
}

.custom-slider-03 .slick-dots li:not(.slick-active) {
    display: none;
}

.custom-slider-03 .slick-dots .dot-text {
    padding-right: 5px;
}

@media (min-width: 768px) {
    .dot-md-0 .slick-dots {
        display: none !important;
    }
}

.client-logo .slick-current .opacity-hover-10 {
    opacity: 1 !important;
}

@media (max-width: 1440px) {
    .custom-slider-03 .slick-arrow.slick-prev {
        right: 25%;
    }
    .custom-slider-03 .slick-dots {
        right: 18%;
    }
}

@media (min-width: 1200px) {
    .custom-slider-04 {
        width: 65vw;
    }
    .custom-slider-04 .slick-list {
        padding: 0 24.3% 0 0 !important;
    }
}

@media (min-width: 1440px) {
    .custom-slider-04 {
        width: 62vw;
    }
}

.banner-01 .card-img {
    height: 420px;
}

.banner-02 .card-img {
    height: 311px;
}

@media (min-width: 576px) {
    .banner-02 .card-img {
        height: 400px;
    }
}

.banner-03 .card-img {
    height: 350px;
}

@media (min-width: 576px) {
    .banner-03 .card-img {
        height: 400px;
    }
}

.banner-04 .card-img {
    padding-bottom: 120%;
}

@media (min-width: 992px) {
    .banner-04 .card-img {
        padding-bottom: 160.10144927536%;
    }
}

.banner-05 .card-img {
    height: 344px;
}

.banner-06 .card-img {
    height: 450px;
}

@media (min-width: 992px) {
    .banner-06 .card-img {
        height: 750px;
    }
}

.banner-07 .card-img {
    height: 400px;
}

@media (min-width: 768px) {
    .banner-07 .card-img {
        height: 650px;
    }
}

.banner-08 .card-img {
    height: 400px;
}

@media (min-width: 768px) {
    .banner-08 .card-img {
        height: 690px;
    }
}

.banner-09 .card-img {
    height: 330px;
}

.banner-10 .card-img {
    height: 400px;
}

@media (min-width: 576px) {
    .banner-10 .card-img {
        height: 600px;
    }
}

@media (min-width: 768px) {
    .banner-10 .card-img {
        height: 900px;
    }
}

.galleries-product .slider-nav .slick-current img {
    border: 1px solid #000;
}

@media (min-width: 1200px) {
    .galleries-product-01 .slider-nav {
        -ms-flex-order: 1;
        order: 1;
        width: 84px;
    }
    .galleries-product-01 .slider-for {
        -ms-flex-order: 2;
        order: 2;
        width: calc(100% - 84px);
    }
    .galleries-product-05 .slider-nav {
        -ms-flex-order: 1;
        order: 1;
        width: 75px;
    }
    .galleries-product-05 .slider-for {
        -ms-flex-order: 2;
        order: 2;
        width: calc(100% - 75px);
    }
}

@media (max-width: 1199.98px) {
    .galleries-product-01,
    .galleries-product-05 {
        -ms-flex-flow: column;
        flex-flow: column;
    }
}

/*end*/

@media (min-width: 1200px) {
    .container-xl {
        width: 95%;
    }
}

@media (max-width: 991.98px) {
    .moblogo {
        display: block;
    }
    .desktop {
        display: none !important;
    }
    .navwidht {
        width: 100%;
    }
    .navpart {
        display: block;
    }
    .megamenu-li {
        position: relative;
    }
    .offcanvas.show {
        padding: 10px 30px;
    }
    .container,
    .container-sm,
    .container-md {
        max-width: 738px;
    }
    .topheadertext {
        padding-left: 15px;
    }
    .pt-lg-11,
    .py-lg-11 {
        padding-top: 2rem !important;
    }
    .queryform button {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .productimages img {
        height: 320px;
    }
    .product-details-layout-4 .slick-slide img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .card-img-overlay {
        position: static;
    }
    .fs-18 {
        font-size: 14px !important;
    }
    body {
        font-size: 14px;
    }
    .moblogo {
        width: 100px;
    }
    .welcome h1 {
        font-size: 21px;
    }
    .h2,
    h2 {
        font-size: 20px;
    }
    .copyright,
    .copyright p {
        text-align: center;
    }
    .h1,
    h1 {
        font-size: 23px;
    }
    .quickcontact {
        left: 2px;
    }
    .static-banner .card-img-overlay {
        padding: 20px;
    }
    .static-banner .card .card-img {
        background-size: cover;
    }
    .static-banner .card-img-overlay {
        background: #363636;
    }
    .fs-34 {
        font-size: 18px !important;
        line-height: 30px;
    }
    .banner-01 .card-img {
        height: 375px;
    }
    .blockquote {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    .pb-4 {
        padding-bottom: 1rem !important;
    }
    .pt-4 {
        padding-top: 1rem !important;
    }
    ol,
    ul {
        padding-left: 1.1rem;
    }
    .pb-5 {
        padding-bottom: 1rem !important;
    }
    .pb-14,
    .py-14 {
        padding-bottom: 2rem !important;
        padding-top: 2rem !important;
    }
}

@media (max-width: 425.98px) {
    /* #content img {
        height: auto;
    } */
    .productimages {
        height: auto;
    }
    .productimages img {
        height: 370px;
    }
    .product-details-layout-4 .slick-slide img {
        height: 370px;
    }
    .testimonials-sec .blockquote {
        padding: 0px 5px !important;
    }
}

@media (max-width: 376px) {
    .fs-34 {
        line-height: 25px;
    }
    .productimages img {
        height: 320px;
    }
    .testimonials {
        padding: 20px 0px;
    }
    .banner-01 .card-img {
        height: 330px;
    }
    .product-details-layout-4 .slick-slide img {
        height: 300px;
    }
}

@media (max-width: 321px) {
    .productimages img {
        height: 290px;
    }
    .banner-01 .card-img {
        height: 277px;
    }
}

footer h3,
footer p,
footer ul li a,
footer ul li .text-body,
footer ul li {
    color: #fff !important;
}

.testimonials {
  background: #f8f9fa;
}

.google-logo {
  max-width: 180px;
}

.testimonial-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stars i {
  color: #ffb400;
  margin-right: 3px;
  font-size: 16px;
}

.review-text {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.client-info h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111;
}

.client-info span {
  color: #777;
  font-size: 14px;
}