.zoom-images .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
   
  .zoom-images  .item {
    display: flex;
    justify-content: center;
    align-items: center;
    
    flex-basis: 34%;
    height: 600px;
    transition: .5s flex-basis;
  }
  .zoom-images  .item.active {
    flex-basis: 80%;
  }
  .zoom-images  .item {
    position: relative;
  }
  .zoom-images  .item span {
    background: #000;
    padding: 0px 8px 5px 8px;
  }
  .zoom-images{
    position: relative;
  }
  
 
  .zoom-images  .item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(to right, #0a5ba5, rgba(34,34,34,0));
    z-index: 1;
  }
  .zoom-images  .item  .item-content-2 {
    display: none;
  }
  .zoom-images  .item.active .item-content-2 {
  display: block
}
  
.zoom-images  .item.active .item-content{
   display: none;
}
@media only screen and (max-width: 736px) {
  .zoom-images .slider{
    display: inline-block;
    width: 100%;
  }
  .zoom-images .item{
    height: 200px;
  }
  .zoom-images .item.active{
    height: 600px;
  }
  .zoom-images .item.active>div{
    width: 100%!important;
    padding:15px
  }
}