.content-header {
  width: 100%;
  min-height: 100vh;
  aspect-ratio: 16/8;
  color: var(--color-white);
  background: url('../img/home/home-full-banner.jpg?n2') center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  position: relative;
  padding: 5%;
}
.content-header .lettering {
  height: fit-content;
  font-size: 28px;
  line-height: 28px;
  border-radius: 8px;
  z-index: 99;
}
.content-header .layer {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  position: absolute;
  top: 0;
  left: 0;
}
.content-header .lettering .headline-primary {
  width: 100%;
}
.content-header .lettering .headline-secondary {
  width: 100%;
  margin: 8px 0 0;
}
.content-header .lettering .cta {
  margin: 16px 0 0;
}

.history {
  background-color: var(--color-blue-dark);
  width: 100%;
  height: auto;
  padding: 40px 4% 40px 8%;
}
.history .history-content {
  width: 100%;
  color: var(--color-white);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.history .history-content .contant-info {
  width: 25%;
}
.history .history-content h2 {
  font-size: 32px;
  line-height: 32px;
  color: var(--color-blue-light);
}
.history .history-content .contant-image {
  width: 70%;
}

.highlights {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8% 15%;
}
.highlights .slick-next.slick-arrow,
.highlights .slick-prev.slick-arrow {
  width: 30px;
  height: 30px;
  z-index: 99;
}
.highlights .slick-next.slick-arrow {
  background: url('../img/icons/arrow-right.svg') center center;
}
.highlights .slick-prev.slick-arrow {
  background: url('../img/icons/arrow-left.svg') center center; 
}
.highlights .slick-next.slick-arrow:before,
.highlights .slick-prev.slick-arrow:before {
  content: '';
}
.highlights .highlight {
  width: 48%;
  position: relative;
}
.highlights .highlight .highlight-slide {
  height: auto;
  margin: auto;
}
.highlights .highlight .highlight-slide .highlight-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
}
.highlights .highlight .highlight-slide .highlight-text {
  width: 100%;
  padding: 32px 0;
  display: flex;
  align-items: center;
}
.highlights .highlight .highlight-slide .highlight-text h2 {
  color: var(--color-blue-light);
}

.our-numbers {
  background-color: var(--color-blue-light);
  color: var(--color-white);
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  padding: 5% 15%;
}
.our-numbers .number {
  background-color: var(--color-blue-darkest);
  width: 32.5%;
  height: auto;
  padding: 40px;
  font-size: 14px;
  border-radius: 8px;
}
.our-numbers .number h2 {
  font-size: 30px;
}
.our-numbers .number .icon {
  width: 80px;
  margin: auto;
}

.content-footer {
  width: 100%;
  height: 90vh;
  color: var(--color-white);
  background: url('../img/home/home-footer-full-banner.jpg') center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  position: relative;
  padding: 10%;
}
.content-footer .lettering {
  background-color: var(--color-blue);
  width: fit-content;
  height: fit-content;
  font-size: 28px;
  line-height: 28px;
  padding: 40px;
  border-radius: 8px;
}
.content-footer .lettering .headline-primary {
  width: 100%;
}
.content-footer .lettering .headline-secondary {
  color: var(--color-blue-light);
  width: 100%;
  margin: 8px 0 0;
}
.content-footer .lettering .cta {
  margin: 16px 0 0;
}

@media (max-width: 900px) {
  .content-header {
    background: url('../img/home/home-full-banner-mobile.jpg?n2') center center;
    background-size: cover;
    height: 95vh;
    align-items: flex-end;
  }
  .content-header .lettering {
    width: 100%;
    padding: 16px;
  }
  .content-header .layer {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
  }

  .history {
    padding: 40px;
  }
  .history .history-content {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .history .history-content .contant-info,
  .history .history-content .contant-image {
    width: 100%;
  }
  .history .history-content .contant-image {
    margin: 0 0 24px;
  }

  .content-footer {
    background: url('../img/home/home-footer-full-banner-m.jpg') center center;
    background-size: cover;
    align-items: flex-end;
  }

  .highlights {
    flex-wrap: wrap;
    padding: 40px;
  }
  .highlights .highlight {
    width: 100%;
  }

  .our-numbers {
    padding: 40px;
  }
  .our-numbers .number {
    width: 100%;
    margin: 0 0 8px;
  }
}