.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 3rem 0;
  background: var(--navy-gradient);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.hero-content {
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-text {
  margin-top: 3rem;
  color: white;
  max-width: 45%;
  margin-bottom: 3rem;
}
.hero-text h1 {
  font-size: calc(var(--step-6) + 10px);
}
@media (max-width: 1000px) {
  .hero-text h1 {
    font-size: var(--step-6);
  }
}
.hero-text h1 strong {
  font-weight: 700;
}
.hero-text p {
  font-size: calc(var(--step-1) + 2px);
  line-height: 1.6;
}
.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.hero-description {
  color: white;
  max-width: 240px;
  font-weight: 600;
  font-size: var(--step-4);
}
.hero-buttons {
  flex: 1 1 500px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem 1rem 1.5rem 1rem;
  transition: background-color 0.3s ease;
}
.hero-button:hover {
  background-color: white;
  text-decoration: none;
}
.hero-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--black);
}
.hero-button-text {
  color: var(--black);
  padding-top: 0.5rem;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}
.hero-image {
  position: absolute;
  right: -50%;
  border-radius: 100rem;
  overflow: hidden;
  width: 100%;
  height: 200%;
  top: -50%;
}
.hero-image img {
  position: absolute;
  top: 25%;
  left: 0;
  object-fit: cover;
  height: 50%;
  width: 50%;
}
@media (max-width: 1366px) {
  .hero-button {
    min-width: 250px;
  }
}
@media (max-width: 1250px) {
  .hero {
    padding-top: 0;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-bottom {
    flex-direction: column;
  }
  .hero-buttons {
    flex: 1;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-text {
    margin: 2rem 0;
  }
  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 35vh;
    border-radius: 0 0 50% 50%;
  }
  .hero-image img {
    position: static;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .hero-inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .hero-content {
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 35vh;
  }
}
@media (max-width: 768px) {
  .hero {
    background: linear-gradient(180deg, #08314E 50%, #075074);
  }
  .hero-button {
    min-width: initial;
  }
  .hero-button:first-child {
    flex: 1 1 100%;
  }
  .hero-image {
    position: absolute;
    max-height: 35vh;
    width: 120%;
    transform: translateX(-10%);
  }
  .hero-content {
    margin-top: 35vh;
  }
}
