html, body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #161616;
    background: url(../img/web-bg.jpg) no-repeat center fixed;
    background-size: cover;
}
.content-wrapper{
    display: flex;
    flex-direction: column;
}
h3{
   font-size: clamp(1.2rem, 3vw, 2rem);
   font-weight: 400;
}
img{
    width: 100%;
}
header, section, footer{
    width: 100%;
    /* height: 100vh; */
    position: relative;
}
section{
    margin: 3rem 0;
}
.section-box{
    border-radius: 20px;
}
.logo{
    max-width: 250px;
}
.header-container{
    background-color: #ffce1b;
    border-radius: 0 0 50px 0;
    padding: 20px;
}
.bg-white{
    background-color: #fff;
}
.bg-yellow{
    background-color: #ffce1b;
}

li{
    font-weight: 600;
}
::marker{
    color:#f05124;
}
.orange-text{
    color: #f5821f;
}
.product-icon{
    max-width: 100px;
    display: block;
    margin: 0 auto;
}
.footer-container{
    background-color: #ffce1b;
    border-radius: 50px 0 0 0;
    padding: 20px;
}
 
.address-container ul li{
    display: flex;
}
.address-container ul li span{
    padding-right: 5px;
}
.address-container ul li span img{
    width: 24px;
}
@media screen and (max-width: 600px){
    .header-container{
        width: 84%;
    }
}

/*-----------------------------------
INFINITE SCROLLER
---------------------------------------*/
.swiper.mySwiper-slide {
    /* mask-image: linear-gradient(
      to right,
      transparent 0%,
      white 10%,
      white 90%,
      transparent 100%
    ); */
    border-radius: 20px;
  }
  
  .swiper-wrapper.marquee-swiper {
    transition-timing-function: linear;
    align-items: center;
  }
  
  .swiper-slide.marquee-swiper-item {
    width: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /*--------------------------------------------------------*/
