.block-hero-banner-with-cards {
  display: flex;
  flex-direction: column;
  gap: 16px 20px;
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards {
    flex-direction: row;
    gap: 40px;
  }
}
.block-hero-banner-with-cards .main-hero-section {
  background-color: #000000;
  position: relative;
  flex-grow: 1;
}
@media only screen and (min-width: 576px) {
  .block-hero-banner-with-cards .main-hero-section {
    aspect-ratio: unset;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  .block-hero-banner-with-cards .main-hero-section {
    min-height: 500px;
  }
}
.block-hero-banner-with-cards .main-hero-section__img {
  aspect-ratio: 326/205;
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: center;
}
@media only screen and (min-width: 576px) {
  .block-hero-banner-with-cards .main-hero-section__img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
  }
}
.block-hero-banner-with-cards .main-hero-section__heading {
  padding: 30px 20px 10px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .block-hero-banner-with-cards .main-hero-section__heading {
    position: relative;
    padding: 0;
  }
}
.block-hero-banner-with-cards .main-hero-section__heading h1 {
  color: #ffffff;
  text-shadow: 0px 8px 12px rgba(0, 0, 0, 0.4);
}
.block-hero-banner-with-cards .main-hero-section__heading h1 span[style*="text-decoration: underline"],
.block-hero-banner-with-cards .main-hero-section__heading h1 span[style*="text-decoration:underline"] {
  text-decoration: none !important;
  color: #00AEEF !important;
}
.block-hero-banner-with-cards .main-hero-section__short-copy {
  background-color: #000000;
  padding: 16px 20px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
}
.block-hero-banner-with-cards .main-hero-section__short-copy * {
  color: #ffffff;
}
@media only screen and (min-width: 576px) {
  .block-hero-banner-with-cards .main-hero-section__short-copy {
    background: rgba(0, 46, 65, 0.5);
    backdrop-filter: blur(10px);
  }
}
.block-hero-banner-with-cards .main-hero-section__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.block-hero-banner-with-cards .main-hero-section__cta {
  white-space: nowrap;
}
.block-hero-banner-with-cards .main-hero-section__cta-text {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.block-hero-banner-with-cards .main-hero-section__cta-text:is(a):hover, .block-hero-banner-with-cards .main-hero-section__cta-text:is(a):focus {
  color: #00AEEF;
}
.block-hero-banner-with-cards .hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  flex: 1;
}
@media only screen and (min-width: 576px) {
  .block-hero-banner-with-cards .hero-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards .hero-cards {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
  }
}
.block-hero-banner-with-cards .hero-cards .hero-card {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards .hero-cards .hero-card {
    width: 445px;
    height: 140px;
  }
  .block-hero-banner-with-cards .hero-cards .hero-card:hover .hero-card__title {
    width: calc(100% - 32px);
    align-items: flex-start;
    justify-content: flex-start;
    height: calc(100% - 32px);
  }
  .block-hero-banner-with-cards .hero-cards .hero-card:hover .hero-card__short-description {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.block-hero-banner-with-cards .hero-cards .hero-card__img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}
.block-hero-banner-with-cards .hero-cards .hero-card__header {
  aspect-ratio: 326/147;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards .hero-cards .hero-card__header {
    aspect-ratio: unset;
    height: 100%;
  }
}
.block-hero-banner-with-cards .hero-cards .hero-card__title {
  background-color: #00AEEF;
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 6px 10px;
  top: 16px;
  left: 16px;
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards .hero-cards .hero-card__title {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease, padding 0.3s ease, height 0.3s ease;
  }
}
.block-hero-banner-with-cards .hero-cards .hero-card__title h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 900;
  line-height: clamp(24px, 2.5vw, 30px);
  color: #ffffff;
  user-select: none;
  margin: 0;
  margin-block-end: 0 !important;
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards .hero-cards .hero-card__title h3 {
    align-self: flex-start;
  }
}
.block-hero-banner-with-cards .hero-cards .hero-card__title h3 a {
  color: inherit;
  text-decoration: none;
}
.block-hero-banner-with-cards .hero-cards .hero-card .stretched-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: transparent;
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards .hero-cards .hero-card .stretched-link::after {
    pointer-events: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards .hero-cards .hero-card--has-link {
    cursor: pointer;
  }
}
.block-hero-banner-with-cards .hero-cards .hero-card__short-description {
  position: relative;
  z-index: 1;
  padding: 16px 20px 20px;
  background-color: #00AEEF;
  color: #ffffff;
  display: block;
  height: 100%;
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards .hero-cards .hero-card__short-description {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 48px;
    z-index: 2;
    background: transparent;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    height: fit-content;
    padding: 10px 20px;
  }
}
.block-hero-banner-with-cards .hero-cards .hero-card__short-description p {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 4px;
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards .hero-cards .hero-card__short-description p {
    color: #ffffff;
  }
}
.block-hero-banner-with-cards .hero-cards .hero-card__short-description .btn {
  display: flex;
  margin-left: auto;
  margin-right: 0;
  width: fit-content;
  color: #ffffff;
}
.block-hero-banner-with-cards .hero-cards .hero-card__short-description .btn::after {
  background-color: #ffffff;
}
.block-hero-banner-with-cards .hero-cards .hero-card__short-description .btn::before {
  background-color: #ffffff;
}
@media only screen and (min-width: 1200px) {
  .block-hero-banner-with-cards .hero-cards .hero-card__short-description .btn {
    display: none;
  }
}

body:not(.home) .block-hero-banner-with-cards .main-hero-section__img {
  aspect-ratio: 328/119;
}

/*# sourceMappingURL=hero-banner-with-cards-style.css.map */
