@font-face {
  font-family: "Montserrat bold";
  src: url("/fonts/Montserrat-Bold.otf");
}
body {
  font-family:"Montserrat bold";
}
.video {
  position:relative;
}
.video-vertical {
  display:none;
}
.video .logo img {
    position: absolute;
    width: 250px;
    z-index: 2;
    top: 50px;
    left: 50px;
}
.video .book {
    position: absolute;
    right: 100px;
    top: 50px;
    text-transform: uppercase;
    background-color: #f0b00c;
    padding: 4px 15px;
    z-index: 2;
    color: #0f354e;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.4s linear 0s;
}
.video .book:hover {
  background-color:#ffffff;
}
.video .recommend {
    position: absolute;
    width: 135px;
    right: 100px;
    bottom: 15%;
}
.video .reserve {
    color: #f0b00c;
    position: absolute;
    left: 50px;
    top: 160px;
    z-index: 2;
    text-decoration: none;
    font-size: 18px;
}
@media (max-width: 1200px) {
  .video .logo img {
    width:170px;
  }
  .video .book {
    font-size:16px;
  }
  .video .reserve {
    top:140px;
  }
}
@media (max-width: 600px) {
  .video-horizontal {
    display:none;
  }
  .video-vertical {
    display:block;
  }
  .video .logo img {
      top: 20px;
      width: 130px;
      left: 20px;
  }
  .video .book {
      right: 20px;
      font-size: 13px;
      top: 21px;
  }
  .video .recommend {
      right: 25px;
      width: 80px;
      bottom: 20%;
  }
  .video .reserve {
      top: 100px;
      font-size: 14px;
      left: 20px;
  }
}
