/* VIDEO FULL SCREEN */
.video-full-screen {
  margin-top: 56px;
  margin-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .video-full-screen {
    margin-top: 64px;
    margin-bottom: 96px;
  }
}
.video-full-screen .container {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media screen and (min-width: 768px) {
  .video-full-screen .container {
    gap: 96px;
  }
}
@media screen and (min-width: 1281px) {
  .video-full-screen .container {
    padding: 0 80px;
  }
}
.video-full-screen .video-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .video-full-screen .video-container {
    height: 650px;
  }
}
.video-full-screen .video-container .image-thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  background-color: var(--greyDark);
}
.video-full-screen .video-container iframe {
  width: 100%;
  height: 100%;
}
.video-full-screen .video-container button {
  height: 127px;
  width: 127px;
  border-radius: 50%;
  background-color: var(--electricBlue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .video-full-screen .video-container button {
    top: unset;
    left: unset;
    right: 48px;
    bottom: 48px;
    transform: translate(0, 0);
  }
}
.video-full-screen .video-container button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
@media screen and (min-width: 768px) {
  .video-full-screen .video-container button:hover {
    transform: scale(1.1);
  }
}
.video-full-screen .video-container::after {
  content: "";
  mask: url(../images/icons/icon-play.svg) no-repeat;
  -webkit-mask: url(../images/icons/icon-play.svg) no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: var(--white);
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .video-full-screen .video-container::after {
    top: unset;
    left: unset;
    right: 95px;
    bottom: 95px;
    transform: translate(0, 0);
  }
}
.video-full-screen .video-container.hide-after::after {
  display: none;
}

/* END VIDEO FULL SCREEN */
