.video-block {
  position: relative;
  width: 100%;
  max-width: 1394px;
  margin: 0 auto;
  overflow: hidden;
  transition: border-radius 0.4s;
}

.video-block.active {
  border-radius: 16px;
}

.video-preview {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.video-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-content {
  display: flex;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--akva-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-play::before {
  content: '';
  display: block;
  height: 40px;
  width: 40px;
  flex: none;
  background: url(../img/icons/video-play.svg) center / contain no-repeat;
}

@media (max-width: 767px) {
  .video-play {
    width: 64px;
    height: 64px;
  }

  .video-play::before {
    height: 20px;
    width: 20px;
  }
}