.zoom-video {
  margin-bottom: 1em;
  position: relative;
  display: inline-block;
}
.zoom-video a {
  display: block;
}
.zoom-video a img {
  height: auto;
  cursor: pointer;
}
.zoom-video svg {
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  -webkit-opacity: 0.4;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
  filter: alpha(opacity=40);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  cursor: pointer;
  left: 50%;
  max-width: 20%;
  max-height: 33%;
  position: absolute;
  top: 50%;
  pointer-events: none;
}
.zoom-video img {
  max-width: 100%;
}
@media only screen and (min-width: 480px) {
  .zoom-video img {
    max-width: 60%;
  }
}
@media only screen and (min-width: 992px) {
  .zoom-video img {
    max-width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  .zoom-video img {
    width: 100%;
    max-width: 535px;
  }
}
.zoom-video:hover svg {
  max-width: 23.5%;
  max-height: 38%;
}
.zoom-video-full-width img {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 480px) {
  .zoom-video-full-width img {
    max-width: 60%;
  }
}
@media only screen and (min-width: 992px) {
  .zoom-video-full-width img {
    max-width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  .zoom-video-full-width img {
    max-width: 100%;
  }
}
