@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

@font-face {
    font-family: 'orange_avenue_demoregular';
    src: url('../fonts/orangeavenuedemo-regular-webfont.woff2') format('woff2'),
         url('../fonts/orangeavenuedemo-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --black : #1A1A1A;
    --white: #fff;
    --green: #11553A;
    --dark-green: #003836;
    --yellow: #EBB415;
    --light-grey: #F5F5F5;
    --darkgrey: #787878;
    --body-font: "Alan Sans", sans-serif;
    --heading-font: 'orange_avenue_demoregular';
    --subheading-font: "Inter", sans-serif;
}
body, html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    background: var(--white);
    color: var(--darkgrey);
    font-size: 13px;
    line-height: 1.6;
    font-family: var(--body-font);
    font-weight: 400;
}
p{
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--body-font);
    color: var(--darkgrey);
}
a{
    text-decoration: none !important;
    font-family: var(--body-font);
}
p:last-of-type{
    margin-bottom: 0 !important;
}
img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sec-space{
    padding: 90px 0;
}
.btn {
    height: 42px;
    line-height: 42px;
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.6px;
    border: 1px solid transparent;
    text-transform: capitalize;
    font-family: var(--body-font);
    padding: 0 24px;
    min-width: 148px;
    border-radius: 48px;
    position: relative;
    overflow: hidden;
}
button:focus, .btn:focus{
    box-shadow:  none !important;
}
.btn-primary{
    background-color: var(--green);
    color: var(--white);
    border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    background-color: var(--dark-green) !important;
    color: var(--white);
    border-color: var(--dark-green) !important;
}
.btn-outline{
    color: var(--green);
    border-color: var(--green);
    font-weight: 500;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active{
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
    font-weight: 300;
}
.btn-line{
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.6px;
    text-transform: capitalize;
    font-family: var(--body-font);
}
.btn-line:hover, .btn-line:focus, .btn-line:active{
    color: #a47832;
}
.section-heading{
    margin-bottom: 42px;
    max-width: 60%;
}
.form-control {
    font-size: 13px;
    border-radius: 46px;
    background: var(--white);
    border: none;
    border: 1px solid #11553A20;
    padding: 8px 20px;
    color: var(--black);
    font-weight: 500;
}
.form-control::placeholder, textarea::placeholder{
    color: var(--black);
    text-transform: capitalize;
    font-size: 13px;
}
textarea {
    width: 100%;
    height: 80px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--black);
    padding: 8px 12px 8px 32px;
    color: var(--black);
}
.form-control:focus, textarea:focus{
    border-color: var(--green) !important;
    background: #F5F5F5;
    box-shadow: none;
    outline: none;
}
.form-group{
    position: relative;
    margin-bottom: 2rem;
}
.form-group .bi{
    color: var(--black);
    font-size: 20px;
    position: absolute;
    left: 0;
}
.contact-form  label{
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
    margin: 0 0 4px 12px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: transparent;
    height: 40px;
    width: 40px;
    border: 1px solid var(--darkgrey);
    border-radius: 4px;
    color: var(--darkgrey);
    font-size: 20px;
    position: absolute;
    top: 240px;
    left: -60px;
    transition: 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-next{
    left: auto;
    right: -60px;
}
.owl-carousel .owl-nav button:hover, .owl-carousel .owl-nav button:focus, .owl-carousel .owl-nav button:active{
    color: var(--white);
    background: var(--green);
    border: none;
    outline: 0;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
}
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: 1px solid var(--green);
    padding: 0!important;
    font: inherit;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 8px;
    background: transparent;
    transition: 0.3s ease-in-out;
}
.owl-carousel button.owl-dot.active{
    background: var(--green);
    width: 24px;
}


/* Header  */
.header-top{
    background: var(--green);
    color: var(--white);
    padding: 6px 0;
    width: 100%;
}
.navbar-brand img {
    height: 50px;
    width: auto;
}
.navbar-toggler-icon{
    color: var(--green);
    font-size: 36px;
}
.nav-text{
    gap: 20px;
}
.nav-text img{
    height: 20px;
    width: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(34%) sepia(3%) saturate(6474%) hue-rotate(105deg) brightness(85%) contrast(111%);
}
.myHeader.fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--light-grey);
    z-index: 99;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.myHeader.fixed{
    background: var(--white);
}
.myHeader.fixed .navbar-brand img {
    height: 60px;
}
.myHeader.fixed .navbar-collapse, .myHeader.fixed .nav-text{
    margin-top: 0px;
}
.desktop-nav{
    background: var(--white);
}
.navbar-nav li a {
    font-size: 14px;
    font-weight: 400;
    padding: 14px 0;
    text-transform: capitalize;
    font-family: var(--body-font);
    color: var(--darkgrey);
    position: relative;
    transition: 0.4s ease-in-out;
}
.navbar-nav li{
    margin-left: 20px;
    transition: 0.3s ease-in-out;
    position: relative;
}
.navbar-nav li.active a, .navbar-nav li:hover a{
    color: var(--green);
}
.myHeader .btn{
    min-width: 126px;
}
.myHeader .btn-text{
    color: var(--green);
    font-weight: 500;
    border-left: 1px solid var(--darkgrey);
    padding-left: 20px;
}
.searchbar .form-control {
    background: #11553a0d;
    border: 1px solid #11553a29;
}
.search-btn{
    color: var(--white);
    height: 36px;
    width: 36px;
    background: var(--green);
    border: none;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    top: 0;
}

/* Dropdown menu  */
.navbar, li.nav-item.dropdown{
    position: static;
}
.dropdown-menu{
    top: 96%;
    width: 100%;
    padding: 28px 0 40px;
}
.navbar-nav li .dropdown-menu li{
    margin-left: 0;
}
.navbar-nav li .dropdown-menu li a {
    padding: 4px 0 !important;
    color: var(--darkgrey) !important;
}
.navbar-nav li .dropdown-menu li a:hover{
    color: var(--green) !important;
}
span.dropdown-title {
    font-weight: 600;
    color: var(--green);
    background: linear-gradient(90deg, #DFEEE1, #ebf4ec);
    padding: 6px 20px;
    font-family: var(--subheading-font);
    font-size: 16px;
    width: 100%;
    display: block;
    margin-bottom: 6px;
}
.shop-row [class*="col-"]{
    flex: 0 0 calc(100% / 5);
    max-width: calc(100% / 5);
}



/* Banner  */
.banner{
    max-width: 99%;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    color: var(--white);
    z-index: 1;
}
/* .banner:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #00000041;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
} */
.banner-img{
    position: relative;
    padding-top: 42%;
}
.banner-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.banner-wrap{
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
}
.banner-text{
    max-width: 42%;
}
.banner-text h1{
    font-size: 36px;
    line-height: 1.3;
    font-family: var(--heading-font);
    color: var(--dark-green);
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 600;
}
.banner-text h1 strong {
    color: #a47832;
    font-size: 42px;
    display: block;
}
.banner-text h6, .about-text h6, .section-heading h6{
    font-family: var(--body-font);
    font-size: 12px;
    text-transform: uppercase;
    color: #A98B52;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.banner-text h6 {
    font-size: 15px;
    color: #a47832;
}
.banner-text p, .banner-text{
    color: var(--black);
}


/* Product Category  */
.pro-cat-slider{
    max-width: 68%;
}
.cat-img{
    padding-top: 142%;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}
.cat-img img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.cat-img::before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000bf, #0000000a, #0000000a);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}
.cat-text{
    padding: 0 12px 12px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    transition: 0.3s ease-in-out;
}
.cat-text h3{
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4px;
}
.cat-text h3 a{
    color: var(--white);
    font-family: var(--subheading-font);
    color: var(--white);
}
.cat-text p{
    color: #ffffffd8;
    font-weight: 300;
    padding-top: 12px;
}
.category-box:hover .cat-img img{
    transform: scale(1.1);
}
.category-box:hover .cat-img::before{
    background: linear-gradient(0deg, #003836eb, #0038365e, #0000000a);
}
.cat-wrap{
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}
.pro-category .about-text{
    max-width: 26%;
}
.pro-category::before, .whyus::before{
    content: "";
    width: 28%;
    height: 100%;
    background: url(../images/leaf-left.png) no-repeat center;
    background-position: 0 -60%;
    position: absolute;
    top: 0;
    left: 0;
}
.whyus::before{
    background: url(../images/leaf-right.png) no-repeat center;
    background-position: 100% 100%;
    position: absolute;
    top: -58%;
    left: auto;
    right: 0;
}
.section-heading{
    max-width: 68%;
    margin-bottom: 40px;
}
.section-heading h2, .about-text h2{
    font-size: 28px;
    line-height: 1.3;
    text-transform: capitalize;
    font-family: var(--heading-font);
    color: var(--black);
    margin-bottom: 0;
}
.section-heading h2 strong, .about-text h2 strong{
    display: block;
    font-weight: 400;
}


/* Feature Products  */
.feature-products{
    background: #F6F3EC;;
}
.feature-products .section-heading{
    margin-bottom: 16px;
}
.pro-img{
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.pro-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.pro-img-1{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.product-box:hover .pro-img-1{
    opacity: 1;
}
.product-title{
    font-size: 15px;
    font-family: var(--subheading-font);
    font-weight: 700;
    color: var(--black);
}
.product-title:hover, .blog-title:hover{
    color: var(--green);
}
.product-box p{
    line-height: 1.4;
}
.desc, .desc p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.price-wrap{
    color: var(--green);
    font-size: 16px;
    font-weight: 600;
    margin-top: 6px;
}
.price-wrap del{
    color: #787878;
}
.image-wrap{
    border-radius: 8px;
    overflow: hidden;
}

/* Product Video Slider  */
.video-box{
    padding-top: 160%;
    border-radius: 8px;
    overflow: hidden;
}
.video-box video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.video-box i.bi {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 57px;
    transition: 0.3s ease-in-out;
}
.video-box:hover i.bi {
    opacity: 0;
    visibility: hidden;
}

/* USP  */
.usp-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 16px;
}
.whyus-box{
    padding: 40px 28px;
    /* background: #19561c0a; */
    background: linear-gradient(0deg, #eef7f4, #f8f9f9);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.whyus-box:hover{
    transform: translateY(-12px);
}
.whyus-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #003836, #11553A);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}
.whyus-box:hover::before {
    opacity: 1;
}
.whyus-icon {
    height: 72px;
    width: 72px;
    background: #8fd19247;
    border-radius: 50%;
    padding: 16px;
    transition: 0.3s ease-in-out;
}
.whyus-box:hover .whyus-icon img{
    filter: brightness(0) invert(1);
}
.whyus-box:hover .whyus-icon{
    background: #ffffff16;
}
.whyus-box h3{
    color: var(--green);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 600;
}
.whyus-box p{
    font-weight: 300 !important;
    transition: 0.3s ease-in-out;
}
.whyus-box:hover h3, .whyus-box:hover p{
    color: var(--white);
    font-weight: 400;
}


/* Middle Banner  */
.mid-banner-img{
    position: relative;
    padding-top: 27%;
    border-radius: 8px;
    overflow: hidden;
}
.mid-banner-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.mid-banner .about-text h6{
    margin-bottom: 8px;
}
.mid-banner .about-text h3{
    font-size: 25px;
    line-height: 1.3;
    font-weight: 500;
    font-family: var(--heading-font);
    color: var(--white);
}
.before-after{
    background: var(--dark-green);
    padding: 28px 16px 16px;
    border-radius: 8px;
    border: 1px solid #A98B5220;
}
.del-flex{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}
.del-box:not(:last-child){
    border-right: 1px solid #ececec;
    padding-right: 20px;
    margin-right: 20px;
}
.del-box .whyus-icon {
    height: 48px;
    width: 48px;
    padding: 12px;
    margin-right: 8px;
    flex-shrink: 0;
}
.del-box h5{
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 6px;
}
.del-box p {
    line-height: 1.1;
}

/* Before After  */
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d6d2c7;
  user-select: none;
}
.panel {
  position: absolute;
  inset: 0;
}
.after {
  background: linear-gradient(135deg, #d8c8a8, #efe4cd);
}
.before {
  background: linear-gradient(135deg, #2c3540, #5a6878);
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: #fff;
  pointer-events: none;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.divider::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  z-index: 2;
}
.slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}
.label {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  text-transform: uppercase;
}
.label-before {
  left: 12px;
}
.label-after {
  right: 12px;
}


 /* About Us  */
.about-home{
    background: var(--dark-green);
}
.about-home .about-img{
    width: 48%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.about-home::before {
    content: "";
    width: 27%;
    height: 100%;
    background: url(../images/leaf.png) no-repeat center;
    background-size: contain;
    background-position: 100% 0;
    position: absolute;
    top: 0;
    right: 0;
}
.about-home .about-text h2, .about-home .about-text ul li{
    color: var(--white);
}
.about-home .about-text p{
    color: #ffffffa2;
    font-weight: 300;
}
.stat-flex li{
    font-size: 14px;
    font-weight: 300;
}
.stat-flex li span{
    font-size: 28px;
    line-height: 1;
    font-family: var(--heading-font);
    display: block;
    margin-bottom: 2px;
}
.about-home hr{
    background: #ffffff40;
    margin: 2rem 0;
}
.about-home .btn-primary{
    background-color: #A98B52;
    border-color: #A98B52;
    color: var(--dark-green);
    font-weight: 600;
}
.about-home .btn-primary:hover, .about-home .btn-primary:focus, .about-home .btn-primary:active{
    background-color: var(--white) !important;
    color: var(--dark-green);
    font-weight: 600;
}
.about-home .btn-outline{
    font-weight: 300;
}
.about-home .btn-outline:hover, .about-home .btn-outline:focus, .about-home .btn-outline:active{
    border-color: #A98B52 !important;
    background: #A98B52;
}


/* Testimonials  */
.test-box{
    background: linear-gradient(210deg, #F5F5F5, #fff, #EEEEEE);
    padding: 32px 24px;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    gap: 20px;
}
.test-box .bi{
    color: var(--yellow);
    margin-right: 1px;
}
.client-img{
    height: 52px;
    width: 52px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}
.client-info h4{
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}
.client-info h4 strong{
    display: block;
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
}
.test-product-img{
    position: relative;
    padding-top: 36%;
    flex: 0 0 34%;
    border-radius: 8px;
    overflow: hidden;
}
.test-product-img img{
    position: absolute;
    top: 0;
    left: 0;
}


.newsletter{
    background: url(../images/newsletter-bg.png) no-repeat center;
    background-position: left;
    background-size: cover;
    border-radius: 8px;
    overflow: hidden;
    padding: 45px 28px 45px 200px;
}
.newsletter h2{
    color: var(--green);
}.newsletter .form-control{
    padding: 14px 20px;
}
.newsletter .btn{
    position: absolute;
    right: 4px;
    top: 4px;
}

/* Gallery  */
.gallery-img{
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}
.gallery-img img{
    position: absolute;
    top: 0;
    left: 0;
}
.gallery-img:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #1a1a1aab;
    backdrop-filter: blur(8px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.gallery-img::after{
    content: "\F437";
    font-family: 'Bootstrap-icons';
    font-size: 42px;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.gallery-img:hover:before, .gallery-img:hover::after{
    opacity: 1;
}


/* Blogs  */
.blog-box{
    background: var(--light-grey);
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.blog-box:hover{
    background: #dfbe8061;
    border-color: #A98B52;
}
.blog-img{
    padding-top: 24%;
    padding-right: 33%;
}
.blog-img img{
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
.blog-box:hover .blog-img img{
    transform: scale(1.1);
}
.blog-text{
    padding: 20px 28px;
}
.blog-title {
    color: var(--black);
    font-family: var(--subheading-font);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 8px;
    margin: 12px 0;
}
.blog-btn{
    bottom: 0;
    left: 0;
    width: 49%;
    gap: 20px;
}
.blog-btn span{
    width: 100%;
    height: 1px;
    background: #78787840;
}
.blog-btn .btn{
    flex-shrink: 0;
}




/* Footer  */
.myFooter{
    background: #F2F5ED;
    z-index: 1;
}
.footer-logo.navbar-brand img{
    height: 100px;
}
.myFooter h3{
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    font-family: var(--subheading-font);
}
.myFooter li a {
    color: #454545;
}
.myFooter li.active a, .myFooter li:hover a{
    color: var(--green);
    font-weight: 600;
}
.collection-list{
    columns: 2;
}
.quick-links li:not(:last-child){
    margin-bottom: 4px;
}
.social-list{
    gap: 8px;
}
.social-list li .bi{
    display: block;
    height: 36px;
    width: 36px !important;
    line-height: 36px;
    text-align: center;
    background: #11553A20;
    color: var(--dark-green); 
    font-size: 16px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.social-list li:not(:last-child){
    margin-bottom: 8px;
}
.social-list span {
    display: inline-block;
    height: 184px;
    width: 1px;
    background: var(--darkgrey);
    margin-bottom: 24px;
}
.con-list .con-box {
    position: relative;
    padding-left: 50px;
}
.con-box h5 , .timing h5{
    font-size: 12px;
    color: var(--darkgrey);
    font-weight: 400;
    margin-bottom: 2px;
    line-height: 1;
}
.con-box, .con-box a, .con-box a span , .timing span{
    font-size: 14px;
    line-height: 1.4;
    color: var(--green);
    font-weight: 500;
}
.con-box .bi {
    display: block;
    color: var(--green);
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: #11553a1c;
    font-size: 15px;
    position: absolute;
    top: 0;
    left: 0;
}
.con-list .con-box:not(:last-child), .timing li:not(:last-child){
    margin-bottom: 12px;
}
.footer-row{
    padding: 100px 0 60px;
}
.logo-wrap {
    border-right: 1px solid #00383624;
    padding-right: 40px;
    margin-right: 12px;
}
.copyright{
    background: var(--dark-green);
    color: var(--white);
}
.copyright p{
    color: #ffffff8b;
    font-weight: 300;
}
.copyright a{
    color: var(--white);
}
.pay-icon{
    height: 18px;
    width: auto;
    object-fit: contain;
}
