@charset "UTF-8";





.movie-img {
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius:20px;
}
@media (hover: hover) and (pointer: fine) {
  .movie-img:hover {
    opacity: 0.7;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .movie-img:hover {
    opacity: 0.7;
  }
}

.movie-modal {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.movie-modal.fade-in {
  -webkit-animation: fadeInAnimation 0.3s;
          animation: fadeInAnimation 0.3s;
  opacity: 1;
}
.movie-modal.fade-out {
  -webkit-animation: fadeOutAnimation 0.3s;
          animation: fadeOutAnimation 0.3s;
  opacity: 0;
  display: block;
}
.movie-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 800px;
  aspect-ratio: 16/9;
}
.movie-modal-content .vimeo-player {
  width: 100%;
  height: 100%;
}
.movie-modal-close {
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  margin-bottom: 10px;
}

@-webkit-keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutAnimation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOutAnimation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}


@media screen and (max-width: 768px){
.movie-inner {
  padding-bottom: 0;
}

.movie-intro {
  margin-top: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 40px;
  padding: 0 0;
}


.movie-img img{
  border-radius: 15px;
}

.movie-modal-content {
  width: 94%;
}






}