/* */
.hero {
  color: #fff;
  overflow: hidden;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .hero:before {
    content: '';
    display: block;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .hero.size219:before {
    padding-top: 42.85%;
  }
}
@media only screen and (min-width: 768px) {
  .hero.size169:before {
    padding-top: 56.25%;
  }
}
@media only screen and (min-width: 768px) {
  .hero.size43:before {
    padding-top: 75%;
  }
}
.hero h2,
.hero h3 {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .hero h2 {
    font-size: 75px;
  }
}
.hero h3 {
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .hero h3 {
    font-size: 30px;
    font-weight: 400;
  }
}
.hero .btn {
  border-color: #fff;
  color: #fff;
}
.hero .btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .hero .media-wrap {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.hero .content-wrap {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  display: flex;
  width: 100%;
  /* top */
  /* center */
  /* bottom */
}
.hero .content-wrap .content {
  z-index: 10;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap.top-left {
    left: 50px;
    top: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap.top-middle {
    justify-content: center;
    left: 0px;
    top: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap.top-right {
    right: 50px;
    top: 50px;
  }
}
.hero .content-wrap.top-right .content {
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap.center-left {
    align-items: center;
    height: 100%;
    left: 50px;
    top: 0px;
  }
}
.hero .content-wrap.center-middle {
  align-items: center;
  height: 100%;
  justify-content: center;
  left: 0px;
  top: 0px;
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap.center-right {
    align-items: center;
    height: 100%;
    right: 50px;
    top: 0px;
  }
}
.hero .content-wrap.center-right .content {
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap.bottom-left {
    bottom: 50px;
    left: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap.bottom-middle {
    bottom: 50px;
    justify-content: center;
    left: 0px;
  }
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap.bottom-right {
    bottom: 50px;
    right: 50px;
  }
}
.hero .content-wrap.bottom-right .content {
  margin-left: auto;
}
.hero .content-wrap .content {
  padding: 0px 15px;
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap .content {
    padding: 25px;
  }
}
.hero .content-wrap .link-wrap {
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap .link-wrap {
    margin-top: 25px;
  }
}
.hero .down-arrow {
  display: none;
}
@media only screen and (min-width: 768px) {
  .hero .down-arrow {
    animation: 1s ease-in-out infinite alternate levitate;
    background: #333;
    border: none;
    border-radius: 50px;
    bottom: 10px;
    cursor: pointer;
    display: flex;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    padding: 10px;
    position: absolute;
    width: 50px;
  }
}
.hero .down-arrow svg {
  fill: #ffffff;
  height: auto;
  margin: auto;
  width: 18px;
}
.hero .down-arrow span {
  display: none;
}
.hero .cover video {
  min-height: 275px;
}
/* levitate animation */
@keyframes levitate {
  0% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(-3px);
  }
}
