.hero-section {
  position: relative;
  height: 900px;
  margin: 16px 16px 0 16px;
}
.hero-section__bg {
  border-radius: 24px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 32px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section__bg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-section__bg__overlay {
  height: 100%;
  width: 100%;
  background: linear-gradient(78.48deg, rgba(23, 50, 95, 0.79) 0%, #3B82F6 11.49%, rgba(255, 255, 255, 0) 87.34%);
  position: absolute;
  top: 0;
  left: 0;
}
.hero-section__content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.hero-section__title {
  max-width: 1150px;
  width: 100%;
  color: var(--white) !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}
.hero-section__subtitle {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.25rem !important;
  line-height: 1.6 !important;
  max-width: 560px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}
.hero-section__buttons {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}
.hero-section__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease, transform 0.3s ease;
}
.hero-section__btn svg {
  transition: transform 0.3s ease;
}
.hero-section__btn svg path {
  transition: 0.3s ease;
}
.hero-section__btn:hover svg {
  transform: translateX(4px);
}
.hero-section__btn.orange {
  background: #FB7028;
  border: 1px solid #FB7028;
  color: #FFFFFF;
}
.hero-section__btn.orange:hover {
  background: transparent;
  color: #FB7028;
  transform: translateY(-2px);
}
.hero-section__btn.orange:hover svg path {
  stroke: #FB7028;
}
.hero-section__btn.outlined {
  border: 1px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
}
.hero-section__btn.outlined:hover {
  background: #FFFFFF;
  color: #000;
  transform: translateY(-2px);
}
.hero-section__btn.outlined:hover svg path {
  stroke: #000;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
@media (max-width: 1024px) {
  .hero-section {
    height: 700px;
    margin: 12px 12px 0 12px;
  }
  .hero-section__bg {
    width: calc(100% - 24px);
    border-radius: 20px;
  }
  .hero-section__title {
    font-size: 48px !important;
    line-height: 58px !important;
  }
  .hero-section__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .hero-section__buttons {
    gap: 20px;
  }
  .hero-section__btn {
    padding: 10px 16px;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .hero-section {
    height: 600px;
    margin: 8px 8px 0 8px;
  }
  .hero-section__bg {
    width: calc(100% - 16px);
    border-radius: 16px;
  }
  .hero-section__bg__overlay {
    background: linear-gradient(180deg, rgba(23, 50, 95, 0.85) 0%, rgba(59, 130, 246, 0.7) 100%);
  }
  .hero-section__content {
    gap: 24px;
    padding: 0 8px;
  }
  .hero-section__title {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .hero-section__subtitle {
    font-size: 14px;
    line-height: 22px;
  }
  .hero-section__buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: stretch;
  }
  .hero-section__btn {
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .hero-section {
    height: 550px;
  }
  .hero-section__title {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .hero-section__subtitle {
    font-size: 13px;
    line-height: 20px;
  }
}/*# sourceMappingURL=style.css.map */