.hero-video {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100vh;
  margin-top: -10rem;
  min-height: 10rem;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow:hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  filter: blur(7px);
  /*z-index: -1;*/
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  z-index: 2;
}

.hero-video p {
  color: white;
  width: 60vw;
  font-size: 1.25rem;
  text-align: center;
}

.hero-video h1 {
  color:white;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
}
.hero-video h2 {
  color: white;
}

.big-text {
    font-size: 1.5rem;
}

.btn-cta {
  /*border: 1px solid;*/
  overflow: hidden;
  position: relative;
  font-family: mudial sans-serif;
}
.btn-cta span {
  z-index: 20;
}
.btn-cta:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 20;
}

.btn-cta:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .hero-video h1 {
    font-size: 2rem;
  }
  .hero-video {
    margin-top: -8rem;
  }
}
