/* */
/* Secondary Colors */
/*Neutral Colors */
.hero {
  overflow: hidden;
}
.hero .inner {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .hero .inner {
    margin: 0 auto;
    display: flex;
    justify-content: stretch;
    align-items: center;
    max-height: 635px;
  }
}
@media only screen and (min-width: 980px) {
  .hero .inner {
    width: 100%;
    min-height: 500px;
  }
}
@media only screen and (min-width: 1170px) {
  .hero .inner {
    width: auto;
  }
}
@media only screen and (min-width: 768px) {
  .hero.size219 .inner {
    aspect-ratio: 21 / 9;
  }
}
@media only screen and (min-width: 768px) {
  .hero.size169 .inner {
    aspect-ratio: 16 / 9;
  }
}
@media only screen and (min-width: 768px) {
  .hero.size43 .inner {
    aspect-ratio: 4 / 3;
  }
}
@media only screen and (min-width: 768px) {
  .hero .media-outer-container {
    width: 40%;
    height: 100%;
  }
}
@media only screen and (min-width: 980px) {
  .hero .media-outer-container {
    width: 50%;
  }
}
.hero .media-outer-container .ring-1,
.hero .media-outer-container .ring-2 {
  border-radius: 100%;
  padding: 20px;
  border: 4px solid #FAD42F;
}
@media only screen and (min-width: 980px) {
  .hero .media-outer-container .ring-1,
  .hero .media-outer-container .ring-2 {
    border: 5px solid #FAD42F;
  }
}
.hero .media-outer-container .ring-1 {
  position: relative;
  left: max(-50%, -235px);
  margin-top: max(-35%, -164px);
  width: 160%;
  max-width: 750px;
}
@media only screen and (min-width: 768px) {
  .hero .media-outer-container .ring-1 {
    left: -55%;
    top: -30%;
    width: 155%;
    max-width: none;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1170px) {
  .hero .media-outer-container .ring-1 {
    left: max(-50%, -370px);
    margin-top: max(-22%, -164px);
    width: 150%;
    max-width: 1115px;
    top: 0;
  }
}
.hero .media-outer-container .ring-2 {
  border-width: 12px;
}
@media only screen and (min-width: 980px) {
  .hero .media-outer-container .ring-2 {
    border-width: 20px;
  }
}
.hero .media-wrap {
  background: transparent;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  border: 65px solid #FD372C;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .hero .media-wrap {
    border-width: 45px;
  }
}
@media only screen and (min-width: 980px) {
  .hero .media-wrap {
    border-width: 75px;
  }
}
.hero .vid-wrap video {
  position: relative;
  width: calc(100% + 4px) !important;
  left: -2px;
  height: calc(100% + 4px) !important;
  top: -2px;
  border-radius: 100%;
}
.hero .content-wrap {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap {
    width: 60%;
    max-width: 525px;
  }
}
@media only screen and (min-width: 980px) {
  .hero .content-wrap {
    width: 50%;
  }
}
.hero .content-wrap .content {
  position: relative;
  padding: 35px 25px;
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap .content {
    padding: 25px;
  }
}
@media only screen and (min-width: 980px) {
  .hero .content-wrap .content {
    padding: 45px;
  }
}
.hero .content-wrap p {
  font-size: 1.125rem;
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap p {
    font-size: 1.375rem;
  }
}
.hero .content-wrap .link-wrap {
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  .hero .content-wrap .link-wrap {
    margin-top: 25px;
  }
}
.hero h1,
.hero h2 {
  color: darkblue;
}
.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);
  }
}
