.home-hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(131.4deg, #396F8C 0%, #082331 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .home-hero {
    min-height: 125vh;
  }
}
.home-hero #hero-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.home-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 3%;
  padding-top: calc(97px + 7rem);
  padding-bottom: 7rem;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.home-hero .hero-link-columns {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 4rem;
}
.home-hero .hero-link-columns .container {
  display: flex;
  gap: 1%;
}
.home-hero .hero-link-columns .hero-link-col {
  position: relative;
  overflow: hidden;
  flex: 1;
  backdrop-filter: blur(4.7px);
  -webkit-backdrop-filter: blur(4.7px);
  background: rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 5px;
  padding: 9.25rem 1rem 1rem 1rem;
  text-decoration: none;
  transition: background 250ms ease, border-color 250ms ease;
}
.home-hero .hero-link-columns .hero-link-col:hover {
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(163, 212, 242, 0.2);
}
.home-hero .hero-link-columns .hero-link-col__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero .hero-link-columns .hero-link-col__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-hero .hero-link-columns .hero-link-col__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #3a7594 0%, rgba(58, 117, 148, 0.5) 100%);
}
.home-hero .hero-link-columns .hero-link-col .col-title,
.home-hero .hero-link-columns .hero-link-col .col-description {
  position: relative;
  z-index: 1;
}
.home-hero .hero-link-columns .hero-link-col .col-title {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(18px, 2vw, 32px);
  color: #F6F3F0;
  letter-spacing: 0em;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.home-hero .hero-link-columns .hero-link-col .col-description {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #F6F3F0;
  line-height: 1.6;
  letter-spacing: 0;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .home-hero .hero-content {
    padding-top: calc(97px + 5rem);
  }
  .home-hero .hero-link-columns {
    padding-bottom: 3rem;
  }
  .home-hero .hero-link-columns .container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .home-hero .hero-link-columns .hero-link-col {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
@media only screen and (max-width: 900px) {
  .home-hero .hero-content {
    min-height: 60vh;
    padding-top: calc(97px + 2.5rem);
    padding-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 600px) {
  .home-hero .hero-link-columns .hero-link-col {
    flex: 1 1 100%;
    padding: 3.5rem 1rem 1rem;
  }
  .home-hero .hero-link-columns .hero-link-col .col-title {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  .home-hero .hero-link-columns .hero-link-col .col-description {
    font-size: 13px;
    line-height: 1.4;
  }
}

.home-hero-heading {
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 0;
  color: #F6F3F0;
}
.home-hero-heading .heading-accent {
  display: block;
  color: #A3D4F2;
}
.home-hero-heading .heading-main {
  display: block;
  color: #F3E9E0;
}/*# sourceMappingURL=home-hero.css.map */