.hero {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  width: 1920px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 992px) {
  .hero {
    flex-direction: row-reverse;
  }
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  background-image: url("../../assets/images/favicon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  aspect-ratio: 1/1;
  height: auto;
  animation: zoomIn 1.2s ease-out 0.3s forwards;
}
.hero::before {
  width: 416px;
  top: -50px;
  right: auto;
  bottom: auto;
  left: -100px;
}
@media only screen and (min-width: 992px) {
  .hero::before {
    width: 800px;
    top: -40%;
    left: -220px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero::before {
    width: 1000px;
    top: -60%;
    left: -200px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero::before {
    width: 925px;
    top: -60%;
    left: 100px;
  }
}
.hero::after {
  width: 142px;
  top: 300px;
  right: -10px;
  bottom: auto;
  left: auto;
  animation-delay: 0.5s;
}
@media only screen and (min-width: 1200px) {
  .hero::after {
    width: 316px;
    top: 253px;
    right: 30px;
  }
}
.hero__copy {
  flex: 1;
  padding-top: 50px;
}
@media only screen and (min-width: 992px) {
  .hero__copy {
    padding-top: 78px;
  }
}
.hero__heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #3e78bc;
  text-align: center;
  padding: 20px;
  margin-bottom: 27px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .hero__heading-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 460px;
    margin-bottom: 60px;
  }
}
.hero__heading-wrap * {
  color: #fff;
}
.hero__heading-wrap h1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}
.hero__heading-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  opacity: 0;
  animation: fadeInScale 1s ease-out 0.5s forwards;
}
@media only screen and (min-width: 576px) {
  .hero__heading-wrap h2 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) {
  .hero__heading-wrap h2 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 992px) {
  .hero__heading-wrap h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__heading-wrap h2 {
    font-size: 42px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero__heading-wrap h2 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero__heading-wrap h2 {
    font-size: 62px;
  }
}
.hero__cta {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
}
@media only screen and (min-width: 992px) {
  .hero__cta {
    padding-left: 460px;
    margin-bottom: 90px;
  }
}
.hero__cta .btn {
  opacity: 0;
  animation: fadeInScale 0.6s ease-out 1.1s forwards;
  transition: all 0.3s ease;
}
.hero__cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero__cta .btn:active {
  transform: translateY(-1px);
}
.hero__img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .hero__img-wrap {
    position: absolute;
    left: 100px;
    align-self: end;
  }
}
@media only screen and (min-width: 1750px) {
  .hero__img-wrap {
    left: 30px;
  }
}
.hero__img-wrap img {
  width: 100%;
  height: auto;
  width: 362px;
  margin: 0 auto;
  aspect-ratio: 624/584;
  height: auto;
  opacity: 0;
  animation: fadeInUpLarge 1s ease-out 0.8s forwards;
}
@media only screen and (min-width: 992px) {
  .hero__img-wrap img {
    width: 420px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__img-wrap img {
    width: 512px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero__img-wrap img {
    width: 624px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpLarge {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 0.1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .hero__heading-wrap h1, .hero__heading-wrap h2, .hero__cta .btn, .hero__img-wrap img {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero::before, .hero::after {
    opacity: 0.1;
  }
  .hero__cta .btn:hover {
    transform: none;
  }
}

/*# sourceMappingURL=hero.css.map */
