.hero-inner-pages {
  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-inner-pages {
    flex-direction: row-reverse;
  }
}
.hero-inner-pages::before, .hero-inner-pages::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-inner-pages::before {
  width: 260px;
  top: -100px;
  right: auto;
  bottom: auto;
  left: 0;
}
@media only screen and (min-width: 992px) {
  .hero-inner-pages::before {
    width: 500px;
    top: -240px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-inner-pages::before {
    width: 720px;
    top: -300px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-inner-pages::before {
    width: 925px;
    top: -387px;
  }
}
.hero-inner-pages::after {
  width: 142px;
  top: auto;
  right: 0;
  bottom: -40px;
  left: auto;
  animation-delay: 0.5s;
}
@media only screen and (min-width: 1200px) {
  .hero-inner-pages::after {
    width: 316px;
    top: auto;
    right: 30px;
    bottom: -150px;
  }
}
.hero-inner-pages__copy {
  flex: 1;
}
.hero-inner-pages__heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .hero-inner-pages__heading-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-inner-pages__heading-wrap {
    padding-top: 86px;
    padding-bottom: 86px;
  }
}
.hero-inner-pages__heading-wrap h1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  color: #3e78bc;
}

@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 {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero::before, .hero::after {
    opacity: 0.1;
  }
}

/*# sourceMappingURL=hero-inner-pages.css.map */
