.hero-large-v1 {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
@media only screen and (min-width: 992px) {
  .hero-large-v1 {
    height: calc(100svh - 180px);
    max-height: 900px;
  }
}

.hero-large-v1__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 16px;
  min-height: 500px;
  border-bottom-right-radius: 60px;
}
@media only screen and (min-width: 992px) {
  .hero-large-v1__inner {
    padding: 40px;
    border-bottom-right-radius: 150px;
    flex: 1;
  }
}

.hero-large-v1__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-right-radius: inherit;
  z-index: -1;
}
.hero-large-v1__background--video {
  max-width: none;
}
.hero-large-v1__background--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-large-v1__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px 20px;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(50px);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media only screen and (min-width: 992px) {
  .hero-large-v1__content {
    max-width: 765px;
    flex-grow: 1;
    padding: 60px 95px;
    gap: 30px;
    backdrop-filter: blur(60px);
    border-top-left-radius: 110px;
    border-bottom-right-radius: 110px;
  }
}

.hero-large-v1__heading {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.042;
  letter-spacing: -0.48px;
  text-align: center;
  color: white;
}
@media only screen and (min-width: 992px) {
  .hero-large-v1__heading {
    margin-bottom: 0;
    font-size: 90px;
    line-height: 1.056;
    letter-spacing: -0.9px;
  }
}

.hero-large-v1__description {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.333;
  color: white;
}
.hero-large-v1__description p {
  margin: 0;
}
.hero-large-v1__description--desktop {
  display: none;
}
@media only screen and (min-width: 992px) {
  .hero-large-v1__description--desktop {
    display: block;
  }
}
.hero-large-v1__description--mobile {
  display: block;
  position: relative;
  z-index: 2;
  padding: 20px 16px;
  color: #000;
}
@media only screen and (min-width: 992px) {
  .hero-large-v1__description--mobile {
    display: none;
  }
}

.hero-large-v1__ctas-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-large-v1__ctas-wrapper--desktop {
  display: none;
}
@media only screen and (min-width: 992px) {
  .hero-large-v1__ctas-wrapper--desktop {
    display: block;
  }
}
.hero-large-v1__ctas-wrapper--mobile {
  margin-top: auto;
}
@media only screen and (min-width: 992px) {
  .hero-large-v1__ctas-wrapper--mobile {
    display: none;
  }
}

.hero-large-v1__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .hero-large-v1__ctas {
    gap: 20px;
    padding-top: 20px;
  }
}

.hero-large-v1__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  padding: 9px 12px;
  background-color: #F8AE43;
  border-radius: 40px;
  box-shadow: 0 0 0 0 #F8AE43;
  text-decoration: none;
  transition: all 0.25s ease-out;
  width: 100%;
  max-width: 360px;
  color: #000;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
  text-align: center;
  text-transform: uppercase;
}
.hero-large-v1__cta:hover, .hero-large-v1__cta:focus {
  background-color: #000;
  box-shadow: 0 3px 0 0 #F8AE43;
  color: white;
}
.hero-large-v1__cta > span {
  padding-left: 10px;
  padding-right: 10px;
}

@keyframes drop-bounce {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  13.33% {
    transform: translateX(-50%) translateY(15px);
  }
  24% {
    transform: translateX(-50%) translateY(11px);
  }
  32% {
    transform: translateX(-50%) translateY(13px);
  }
  48%, 100% {
    transform: translateX(-50%) translateY(0);
  }
}
.hero-large-v1__scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: auto;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  width: fit-content;
  height: fit-content;
  animation: drop-bounce 1500ms ease-out infinite;
}
.hero-large-v1__scroll-indicator svg path {
  transition: all 0.25s ease-out;
}
.hero-large-v1__scroll-indicator::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease-out;
}
.hero-large-v1__scroll-indicator:hover svg path, .hero-large-v1__scroll-indicator:focus svg path {
  fill: #fff;
}
.hero-large-v1__scroll-indicator:hover::after, .hero-large-v1__scroll-indicator:focus::after {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .hero-large-v1__scroll-indicator {
    display: none;
  }
}

/*# sourceMappingURL=hero-large-v1.css.map */
