/* Trailer Modal (ex-index)*/
.trailer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  margin: auto auto;
  animation: fadeIn 1.0s ease-in-out;
  backdrop-filter: blur(8px);
}

/* embed YT (ex-index)*/
.trailer-modal iframe {
  width: 70%;
  height: 70%;
  border: none;
  background: #E4DEBE;
  display: block;
  justify-content: center;
  align-items: center;
  margin: 8% auto;
  animation: fadeIn 1.5s ease-in-out;
}

/* tombol X (ex-index)*/
.trailer-modal .close {
  cursor: pointer;
  right: 5%;
  top: 5%;
  position: absolute;
  font-size: 30px;
  font-weight: bold;
  color: #A94438;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px #A9443810;
  text-shadow: 0px 0px 5px white;
  padding: 0;
}

/* tablet */
@media (max-width: 780px) {

  .trailer-modal iframe {
    width: 80%;
    height: 35%;
  }

  .trailer-modal .close {
    right: 10%;
    top: 25%;
    font-size: 20px;
    width: 30px;
    height: 30px;
  }

}

/* handphone */
@media (max-width:  450px) {

  .trailer-modal iframe {
    width: 80%;
    height: 20%;
  }

  .trailer-modal .close {
    right: 7%;
    top: 35%;
    font-size: 15px;
    width: 25px;
    height: 25px;
  }

}