.hero-video {
  background: rgb(48,66,81);
  background: linear-gradient(180deg, rgba(48,66,81,1) 25%, rgba(8,22,38,1) 75%);
}

.hero-video h1 {
  font-size: 50px;
  color: #fff;
}

.hero-video p {
  font-size: 24px;
  color: #fff;
}

.hero-video-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-container {
  width: 100%;
  max-width: 1095px;
  margin: 0 auto;
  z-index: 1;
}

.chevron-icon {
  display: none;    
}

body.home-page .chevron-icon {
  display: block;
  position: absolute;
  bottom: 30px;
}

.chevron-icon svg {
  width: 30px;
  height: 30px;
  fill: #e44e1d;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  transform: scale(1);
  animation: pulse 0.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.1);
  }

  40% {
    transform: scale(1.2);
  }

  60% {
    transform: scale(1.3);
  }

  80% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-video-text {
  z-index: 1;
}

@media screen and (max-width: 1440px) {
  .hero-video-text {
    padding: 0 20px;
  }
}

.background-video { width: 100%; position: absolute;  left: 0;  right: 0;  top: 0;  bottom: 0;  z-index: -1; opacity: 20%;}

.background-video video {
  width: 100%;
}

@media screen and (max-width: 1110px) {
  .background-video video {
    width: unset;
  }
}

@media screen and (max-width: 639px) {
  body.home-page .chevron-icon {
    display: none;
  }
}

@media screen and (max-width: 529px) {
  .hero-video-bg {
    height: auto;
    padding: 150px 0 55px;
    justify-content: center;
  }

  .hero-video h1 {
    font-size: 32px !important;
    text-align: center;
  }

  .hero-video p {
    font-size: 22px;
    text-align: center;
  }
}