body {
  overflow: hidden;
}

.video-background-holder {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  /* overflow: hidden; */
}

.video-background-holder video {
  position: absolute;
  top: 0;
  left: 0;
  /* min-width: 100%;
    min-height: 100%; */
  width: 100vw;
  height: 100vh;
  z-index: 0;
  /* -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); */
  object-fit: cover;
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  /* position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #345350e0;
  mix-blend-mode: overlay;
  z-index: 1;

}

.faa {
  width: 10%;
}

.logo {
  position: relative;
  top: 0;
  /* left: 20px; */
  width: 10%;
  z-index: 1000;
}

.wet {
  margin: auto;
  width: 75vw;
  height: auto;
  background-color: rgba(221, 246, 206, .20);
  border: 4px solid rgb(144, 72, 108);
  border-radius: 5%;
  color:black;
  font-weight: bolder;
  font-size: x-small;
  text-align: justify;
  z-index: 1;
}

.wet ul {
  list-style-type: none;
  /* Remove bullets */
  padding-left: 4px;
}

/* iPhone Landscape */
@media screen and (max-device-width: 926px) and (orientation:landscape) {
  .logo {
    display: none;
  }

  .faa {
    width: 5%;
  }
  .wet h5 {
    font-size: x-small;
    font-weight: bolder;
  }
}
/* iPhone Portrait */
@media screen and (max-device-width: 480px) and (orientation:portrait) {

  .wet {
    width: 100%;
  }
  .logo {
    width: 25%;
  }

  .faa {
    width: 25%;
  }
} 


/* All Phones up to 920px Landscape Only */
@media (max-width: 920px) and (orientation:landscape) {
  .wet h5 {
    font-size: x-small;
    margin: 0;
    font-weight: bolder;
  }
 
}