body {
  padding-top: 0;
  padding-bottom: 0;
}

#main {
  width: 100vw;
  height: 100vh;
  position: relative;
}

@media only screen and (max-width: 385px) {
  #main {
    width: 385px;
  }
}

#main #page-content {
  z-index: 15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 50px;
  text-align: center;
}

#main #page-content .row {
  position: relative;
  display: inline-block;
}

#main #page-content .row .col {
  margin-bottom: 50px;
}

#main #page-content .row .col:after {
  content: "";
  display: block;
  clear: both;
}

#main #page-content .row .col:last-child {
  margin-bottom: 0;
}

#main #page-content .row .left {
  float: left;
  padding-right: 20px;
  width: 250px;
}

#main #page-content .row .left p {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
}

@media only screen and (max-width: 768px) {
  #main #page-content .row .left {
    float: none;
    width: 100%;
  }
}

#main #page-content .row .right {
  float: left;
  text-align: left;
}

#main #page-content .row .right p {
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-weight: normal;
}

#main #page-content .row .right p a {
  text-decoration: none;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  #main #page-content .row .right {
    float: none;
    width: 100%;
  }
}

#main #page-content p {
  font-family: 'Montserrat', sans-serif;
  color: #FFF;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 900;
}

#main #background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#main #background-video:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

#main #background-video video {
  position: fixed;
  right: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
  transform: translateX(calc((100% - 100vw) / 2));
}

#main #background-video video.d-none {
  display: none;
}

@media only screen and (min-aspect-ratio: 16 / 9) {
  #main #background-video video {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-aspect-ratio: 16 / 9) {
  #main #background-video video {
    width: auto;
    height: 100%;
  }
}