.video-frame {
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  height: 125%;
}
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s linear;
}
.video-frame .iframe {
  width: 100%;
  display: block;
  padding-bottom: 56.25%;
  z-index: -1;
}
.video-frame.video-play .iframe {
  z-index: 10;
}
.video-frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: 0.5s linear;
}
.video-frame:before {
  content: "";
  z-index: 1;
  left: 0rem;
  right: 0;
  margin: 0 auto;
  top: calc(50% - 2.5rem);
  background: url("../../img/icons/play-transparent.svg") no-repeat 55% 50%;
  width: 5rem;
  height: 5rem;
  display: block;
  position: absolute;
  transition: 0.2s ease-in-out;
  background-color: rgba(0, 0, 0, 0.49);
  border: 1px solid #6C6C78;
  backdrop-filter: blur(1px);
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .video-frame:before {
    width: 7rem;
    height: 7rem;
    top: calc(50% - 3.5rem);
    background-size: 2rem;
  }
}
.video-frame:active:before, .video-frame:active:after {
  transform: scale(0.95);
}
.video-frame.video-play:before, .video-frame.video-play:after {
  opacity: 0;
}
.video-frame.video-play iframe {
  opacity: 1;
}