/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Futura", "Verdana", sans-serif;
  color: #FFFFFF;
}

a {
  color: #6699cc;
  text-decoration: none;
}

a:hover {
  color: #cc9966;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Futura", "Verdana", sans-serif;
  text-align: center;

}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  height: calc(100vh);
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  margin-top: 0px;
  padding: 0;

}
#hero:before {
  content: "";
  /*
  background: rgba(0, 0, 0, 0.4);
  */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  z-index: 2;
  width: 640px;
  postition: absolute;
  bottom 0;
  background: rgba(0, 0, 0, 0.5);

}
#hero h1 {
  margin: 0 0 0 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-transform: uppercase;
}
#hero h2 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 18px;
}
#hero .btn-get-started {
  font-family: "Futura", "Verdana", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}
#hero .btn-get-started:hover {
  border-color: #FFFFFF;
  background: #666666;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero {
    margin-top: 0px;
    height: calc(100vh - 0px);
    width: 100%;
    font-size: 18px;
  }
  #hero h1 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #hero .container {
    z-index: 2;
    width: 100%;
    font-size: 13px;
  }
  #hero h1 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# videoWrapper
--------------------------------------------------------------*/
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
