
#banner-home {
    position: relative;
    width: 100%;
   /* background: var(--banner-bg);*/
   background: linear-gradient(to right, #efeff0 50%, #ffffff 30%);
}

#banner-home .banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
  
#banner-home .banner-desktop {
    display: none;
}
  
#banner-home .banner-mobile {
    display: flex;
    justify-content: center;
}
  
  @media (min-width: 570px) {
   #banner-home .banner-desktop {
      display: block;
    }
    #banner-home .banner-mobile {
      display: none;
    }
    #banner-home .so-responsive {
        padding-left: 0;
        padding-right: 0;
    }
  }
