* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}
:root{
    --second-color:#fff;
}
body  ,.s-comments-product {
    background-color:  var(--second-color) !important ;

}
/*banner--fixed*/
.s-block.s-block--fixed-banner {
    margin-top: 0;
}
.s-block.s-block--fixed-banner  .container {
    max-width: 100%;
    padding: 0;
}
.banner--fixed img {
       background-color: transparent;
       margin: auto;
}
/*  grid */
section.s-block.s-block--banners.container {
    margin-bottom: 2.5rem;
}
.md\:grid-cols-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
    grid-template-areas:
        "item1 item1 item1 item2 item2"
        "item3 item3 item4 item4 item4";
}
.md\:grid-cols-3 > .banner-entry:nth-child(1) {
    grid-area: item1 !important;
}
.md\:grid-cols-3 > .banner-entry:nth-child(2) {
    grid-area: item2;
}
.md\:grid-cols-3 > .banner-entry:nth-child(3) {
    grid-area: item3;
}

.md\:grid-cols-3 > .banner-entry:nth-child(4) {
    grid-area: item4;
}
.banner-entry ,.two-row .banner-entry:first-child {
     height: 370px !important;
      background-color: transparent;
      padding: 0px;
      color: #fff;
 overflow: hidden;
  position: relative;
  transition: 0.5s;
   }
.md\:grid-cols-2 .banner-entry  {
     height: 310px !important;
   }
.one-row .banner-entry,
.two-row .banner-entry,
.one-row .banner-entry:first-child,
.two-row .banner-entry:first-child {
  grid-column: span 1;
  grid-row: span 1;
}
.sm\:gap-8 {
    gap:20px;
}
.sm\:py-16 {
    padding-top: 0;
    padding-bottom: 4rem;
}
/* animation on hover */
a.banner-entry.square-photos:hover {
    transform: scale(1.1);
    transition: 1s ease;
}
.banner-entry::after ,.s-product-card-image::after  {
  content: '';
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.25);
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.banner-entry:hover::after ,.s-product-card-image:hover::after{
  animation: flashing 0.6s linear;
}
@keyframes flashing {

  0%,
  50% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
/* products border  */
.s-product-card-entry {
    border: 2px solid var(--color-primary);
    
}
button.s-button-btn.s-button-outline.s-button-primary-outline {
    border: 0;
    border-radius: 10px;
    box-shadow: 1px 2px 3px #ddd;
}
button.s-button-btn.s-button-outline.s-button-primary-outline {
      background-color: var(--color-primary);
    color: var(--second-color);
}

.s-product-card-content {
    padding: 12px;
}
.s-product-card-image img {
    background: #fff;
}
/*remove the latest products*/
[dir=rtl] .s-slider-block__title h2 {
      color:var(--color-primary);
}
/*footer*/
.footer-is-light .store-footer .store-footer__inner  ,footer.store-footer {
    background-color: var(--color-primary) !important;
    color: var(--second-color);
}
.copyright-text p {
    color: var(--second-color);
}
/* media */
@media (max-width: 767px){
  .navbar-brand img {
    max-height: 4rem !important;
}
.sm\:gap-8 {
    gap: .5rem;
}
.banner-entry ,.two-row .banner-entry:first-child {
    height:120px !important;
  } 
.swiper-slide {
    width: 56%;
}
.store-footer__inner * {
    text-align: center;
    justify-content: center;
}
}