body{
  background-color: white;
}
.banner--fixed img, .banner-entry{
  background: transparent;
}
section:nth-of-type(1){
  margin: unset;
}
section:nth-of-type(1) .container ,
section:nth-of-type(15) .container{
  max-width:unset;
  padding: unset;
}
section:nth-of-type(2) .container {
  max-width: 500px;
}
section:nth-of-type(3){
  margin-top: 1rem;
  max-width: 963px;
}
.s-slider-block__title h2{
  font-size: 1.7rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  color: black;
}
  /* section:nth-of-type(3) div{
grid-template-columns: repeat(5, minmax(0, 1fr));    
  } */
  section:nth-of-type(3) div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .banner-entry{
    width: 16%;
    height: 150px !important;
  }
.two-row .banner-entry:first-child{
  grid-row: span 1 / span 1 ;
}
section:nth-of-type(3) {
  margin-top: 1rem;
}
  .banner-entry{
    height: 230px;
  }
.s-product-card-vertical{
  box-shadow: 0 0 10px black;
  margin: 10px;
}
.s-product-card-entry{
  height: 95%
}
.s-button-primary-outline {
  color:white ;
 background-color: #AB704A;
}
.s-button-primary-outline:hover{
  color:white ;
  background-color: #AB704A;
}
.s-reviews-header-wrapper{
  justify-content: center;
}
.s-reviews-header{
font-size: 1.5rem;
    color: white;
    padding: 9px 100px;
    background-repeat: no-repeat;
    background-image: url(https://imglink.cc/cdn/8-bhWZPIjx.webp);
}
.s-reviews-testimonial ,
.store-footer__inner{
   color:white ;
background: linear-gradient(90deg, #AC744E 0%, #1F1E1A 100%);
}
.s-rating-stars-small svg ,
.s-reviews-testimonial__icon svg{
  fill: white;
}
.footer-is-light .store-footer .store-footer__inner{
    color:white ;
  background-color: #AB704A;
}
.store-footer{
  background-color: white;
}
.text-gray-700 , .text-gray-500  , .text-gray-900{
  color: white;
}
@media (max-width:425px){
  section:nth-of-type(3) div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .banner-entry{
    width: 30%;
    height: 100px;
  }
}
@media (min-width:426px) and (max-width:768px){
    section:nth-of-type(3) div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .banner-entry{
    width: 30%;
    height: 180px !important;
  }
   
}
/**/
.marquee-component .marquee-container {
	width: 100%;
	position: relative;
	overflow: hidden;
  height: 3rem;
    background-color: #AB704A;
    color: white;
}

.marquee-component .marquee-container:hover .item {
	animation-play-state: paused;
}

.marquee-component .marquee-container .content {
	min-width: calc(var(--width-item) * var(--quantity));
	height: 100%;
	display: flex;
	position: relative;
}

.marquee-component .marquee-container .item {
	padding:10px;
	border-radius: 9999999px;
	width: var(--width-item);
	position: absolute;
	cursor: pointer;
	left: 0;
	animation: auto-run var(--speed) linear infinite;
	animation-delay: calc(
		(var(--speed) / var(--quantity)) * (var(--position) - 1) - var(--speed)
	);
}

@keyframes auto-run {
	from {
		left: 100%;
	}
	to {
		left: calc(var(--width-item) * -1);
	}
      height: 48px;
}