#intro {
  width: 100%;
  height: 100vh;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#intro:before {
  content: "";
  background: rgba(148, 220, 238, 0.0); /* Home opacity */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .intro-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#intro video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh + 350px);
  object-fit: cover;
  z-index: -100;
  transition: 1s opacity;
}

.center-logo {
  display: block;
  margin: 0 auto;
  width: 550px;
  height: auto;
}


#intro h1 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 56px;
  font-weight: 600;
  text-transform: uppercase;
}

#intro h1 span {
  color: #4bb1ec;
}

#intro p {
  color: #ebebeb;
  font-weight: 700;
  font-size: 20px;
}

