.zoom {
  height: auto;
}

.zoom .zoom-desc {
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  transition: 0.5s padding;
  text-align: center;
  font-size: 52px;
  position: absolute;
  bottom: 30%;
  right: 10px;
  padding-left: 20px;
  padding-right: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 500px) {
  .zoom {
    height: auto;
  }
  
  .zoom .zoom-desc {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    transition: 0.5s padding;
    text-align: center;
    font-size: 24px;
    position: absolute;
    bottom: 30%;
    left: 10px;
    right: 10px;
    padding-left: 20px;
    padding-right: 20px;
    vertical-align: middle;
    
  }

}

.img-anim {
  width: 100%;
  height: 85vh;
  background-size: 110% 110%;
  background-position: center center;
  animation: shrink 5s infinite alternate;
}

@keyframes shrink {
  0% {
    background-size: 110% 110%;
  }

  100% {
    background-size: 100% 100%;
  }
}

@media screen and (max-width: 600px) {
  .accordion {
      display: none;

  }
}
