.video_cinema {
  position: relative;
}

@media (min-width: 1024px) {
  .video_cinema {
    min-height: unset;
    max-height: unset;
  }
}

.video_cinema .video_cinema_wrapper {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  height: 615px;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 1024px) {
  .video_cinema .video_cinema_wrapper {
    background-attachment: scroll;
    background-position: center;
    padding: 250px 0;
    height: auto;
  }
}

.video_cinema .video_cinema_wrapper h2.h2-sticky {
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

.video_cinema .video_cinema_wrapper button {
  width: 131px;
  height: 40px;
  padding-top: 2px;
  padding-right: 4px;
  padding-bottom: 2px;
  padding-left: 4px;
  margin: 0 auto;
  gap: 2px;
  opacity: 1;
  border-radius: 100px;

  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--primary-color);
  background-color: #FFFFFF;

  border: unset;
  outline: unset;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: opacity .3s ease-in-out;

  &:hover {
    opacity: .9;
  }

  >img {
    width: 24px;
    height: 24px;
  }
}

.video_cinema+.video_cinema_popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
}

.video_cinema+.video_cinema_popup.open {
  display: flex;
}

.video_cinema+.video_cinema_popup iframe {
  width: 80vw;
  height: 45vw;
  border: none;
}

@media (max-width: 767px) {
  .video_cinema+.video_cinema_popup iframe {
    width: 100vw;
    height: 55vw;
  }
}

.video_cinema+.video_cinema_popup .close-video_cinema_popup {
  position: absolute;
  top: 50px;
  right: 50px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  background: unset;
  border: unset;
}

@media (max-width: 767px) {
  .video_cinema+.video_cinema_popup .close-video_cinema_popup {
    width: 30px;
  }
}

.video_cinema+.video_cinema_popup .close-video_cinema_popup::before,
.video_cinema+.video_cinema_popup .close-video_cinema_popup::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: white;
  display: block;
  position: absolute;
}

.video_cinema+.video_cinema_popup .close-video_cinema_popup::before {
  transform: rotate(45deg);
}

.video_cinema+.video_cinema_popup .close-video_cinema_popup::after {
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .video_cinema .video_cinema_popup .close-video_cinema_popup {
    width: 30px;
  }

  .video_cinema .video_cinema_popup iframe {
    width: calc(70vw);
  }
}