/* Add custom CSS styles below */ 
/* start banners */ 
section:first-of-type {
    margin-top: 0;
}
section.s-block.s-block--fixed-banner .container {
    margin: 0;
    padding: 0;
    max-width: 100%;
}
section.s-block.s-block--fixed-banner img{
  background-color: unset;
}
/* start grid categories */

.banner-entry{
  height: 300px;
}
.banner-entry .lazy__bg{
  background-size: contain !important;
  background-repeat: no-repeat;
  background-color: unset;
}
.banner-entry .lazy__bg {
    transition: all 0.2s linear;
}
.banner-entry:hover .lazy__bg {
    scale: 0.9;
}
@media(min-width:1024px){
  .md\:grid-cols-2{
    width: 50% ;
    margin: auto;
  }
}

@media(max-width:767px){
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  .banner-entry{
  height: 200px;
}
}