/**
    Fonts
 */
/**
    Colors
 */
/* Font size */
.hero {
  position: relative;
  width: 100%;
  height: 50rem;
  max-height: 50rem;
  overflow: hidden;
}
.hero .hero__media {
  position: absolute;
  inset: 0;
}
.hero .hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero .hero__band {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10.875rem;
  background-color: rgba(18, 19, 132, 0.5);
}
.hero .hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
}
.hero .hero__content .container {
  position: relative;
  height: 100%;
}
.hero .hero__cards {
  position: absolute;
  right: 20px;
  bottom: 5rem;
  left: 20px;
  display: grid;
  align-items: end;
  gap: 1.25rem;
}
.hero .hero__cards[data-items="1"] {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.hero .hero__cards[data-items="1"] .hero__card:first-child {
  grid-column: 1/span 8;
}
.hero .hero__cards[data-items="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hero .hero__cards[data-items="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hero .hero__cards[data-items="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hero .hero__card {
  --hero-card-height: 16rem;
  --hero-card-button-height: 3.5rem;
  --hero-card-button-gap: 0.5rem;
  min-width: 0;
  height: var(--hero-card-height);
  min-height: var(--hero-card-height);
  border-radius: 0.625rem;
  background-color: #121384;
  color: #ffffff;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
  overflow: hidden;
  align-self: end;
}
.hero .hero__card.hero__card--has-link {
  transition: height 0.25s ease, min-height 0.25s ease, box-shadow 0.25s ease;
}
.hero .hero__card.hero__card--has-link:hover, .hero .hero__card.hero__card--has-link:focus-within {
  height: calc(var(--hero-card-height) + var(--hero-card-button-height) + var(--hero-card-button-gap));
  min-height: calc(var(--hero-card-height) + var(--hero-card-button-height) + var(--hero-card-button-gap));
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.24);
}
.hero .hero__card.hero__card--has-link:hover .hero__button, .hero .hero__card.hero__card--has-link:focus-within .hero__button {
  height: calc(var(--hero-card-button-height) + var(--hero-card-button-gap));
  max-height: calc(var(--hero-card-button-height) + var(--hero-card-button-gap));
  opacity: 1;
}
.hero .hero__card.hero__card--has-link:hover .hero__button-inner, .hero .hero__card.hero__card--has-link:focus-within .hero__button-inner {
  margin-top: var(--hero-card-button-gap);
}
.hero .hero__card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem 1.75rem 1.5rem;
}
.hero .hero__text {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.hero .hero__text h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 2.625rem;
  font-weight: 300;
}
.hero .hero__text h2 strong {
  font-weight: 700;
}
.hero .hero__text > :first-child {
  margin-top: 0;
}
.hero .hero__text > :last-child {
  margin-bottom: 0;
}
.hero .hero__button {
  height: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.3s ease, max-height 0.3s ease, opacity 0.2s ease;
}
.hero .hero__button-inner {
  display: block;
  margin-top: 0;
  transition: margin-top 0.25s ease;
}
.hero .slick-list {
  overflow: hidden;
  height: initial !important;
}
.hero .slick-track {
  display: flex;
}
.hero .slick-slide {
  height: inherit;
}
.hero .slick-slide > div {
  height: 100%;
}
.hero .slick-dots {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.hero .slick-dots li {
  display: block;
}
.hero .slick-dots button {
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 0;
  cursor: pointer;
}
.hero .slick-dots .slick-active button {
  background-color: #ffe500;
}
@media only screen and (max-width: 1280px) {
  .hero .hero__heading h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .hero .hero__text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .hero {
    height: 40rem;
  }
  .hero .hero__cards {
    bottom: 2.5rem;
  }
  .hero .hero__card-inner {
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .hero {
    height: auto;
  }
  .hero .hero__band {
    display: none;
  }
  .hero .hero__media {
    position: relative;
    height: 26.8125rem;
  }
  .hero .hero__content {
    margin-top: -4.375rem;
    padding: 1.25rem 0 1.875rem;
    height: auto;
    background-color: rgba(18, 19, 132, 0.5);
  }
  .hero .hero__content .container {
    height: auto;
  }
  .hero .hero__cards {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
  }
  .hero .slick-slide .hero__card {
    margin: 0 0.3125rem;
  }
  .hero .hero__card {
    --hero-card-height: auto;
    border-radius: 0.3125rem;
    box-shadow: none;
    height: auto;
    min-height: 0;
  }
  .hero .hero__card-inner {
    height: auto;
    padding: 1.25rem;
  }
  .hero .hero__heading h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
  .hero .hero__text {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
  .hero .slick-dots {
    gap: 0.75rem;
    margin: 0.6875rem 0 0;
  }
  .hero .slick-dots li {
    line-height: 0;
  }
  .hero .slick-dots li.slick-active button {
    background-color: #121384;
  }
  .hero .slick-dots button {
    width: 0.9375rem;
    height: 0.9375rem;
    border: 0.125rem solid #121384;
    border-radius: 0.1875rem;
    background-color: #ffffff;
  }
  .hero .slick-dots .slick-active button {
    background-color: #ffffff;
  }
}