/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.home-hero {
  overflow: hidden;
}
.home-hero h1 {
  line-height: 0.8;
  font-weight: 500;
}
.home-hero__images {
  width: 100%;
  pointer-events: none;
}
.home-hero__images img {
  width: 100%;
  height: 90vw;
  max-height: 56rem;
  object-fit: cover;
}
.home-hero__content {
  padding-top: 5rem;
  margin-bottom: 3rem;
}
.home-hero .home-hero__pagination-wrap {
  position: absolute;
  bottom: 8%;
  width: 100%;
}
.home-hero .splide__pagination {
  gap: 1rem;
  justify-content: flex-start;
}
.home-hero .splide__pagination button {
  height: 0.4rem;
  width: 1.6rem;
  border-radius: 0.3rem;
  background-color: rgba(255, 255, 255, 0.4);
}
.home-hero .splide__pagination button.is-active {
  background-color: white;
}
.home-hero .splide__track::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}
@media print, screen and (min-width: 46.875em) {
  .home-hero .splide__pagination button {
    height: 0.6rem;
    width: 3.6rem;
  }
}
@media print, screen and (min-width: 64em) {
  .home-hero {
    height: 100svh;
  }
  .home-hero__content {
    margin-bottom: 14vh;
  }
  .home-hero__images {
    height: 100svh;
    position: absolute;
    top: 0;
    left: 0;
  }
  .home-hero__images img {
    max-height: none;
    height: 100svh;
  }
  .home-hero .splide__track::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
  }
  .home-hero__pagination-wrap {
    bottom: 7vh;
  }
}

.home-intro h2 {
  max-width: 84rem;
}
@media print, screen and (max-width: 63.99875em) {
  .home-intro h2 {
    font-size: min(6.4rem, 6.6vw);
  }
}
@media print, screen and (min-width: 64em) {
  .home-intro {
    background: url(../../img/page-header-bg.svg) no-repeat fixed bottom right;
  }
}

.card-hover {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.card-hover__front {
  height: 25rem;
  padding: 1.8rem 1.8rem 2.8rem;
}
.card-hover__front img {
  height: 10.8rem;
  width: 10.8rem;
  object-fit: contain;
}
.card-hover__back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #9AC9E2;
  color: #051F28;
  padding: 3rem 1.8rem 2.8rem 1.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.39, 0.03, 0.18, 0.78);
}
.card-hover__back .entry-content {
  opacity: 0;
  transform: translateY(-3rem);
  transition: all 0.4s cubic-bezier(0.39, 0.03, 0.18, 0.78);
  height: 100%;
  padding-right: 1.2rem;
}
.card-hover:hover .card-hover__back {
  opacity: 1;
  pointer-events: auto;
}
.card-hover:hover .card-hover__back .entry-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
@media print, screen and (min-width: 46.875em) {
  .card-hover__front {
    height: 30rem;
  }
}

.card-icon {
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.07);
  padding: 1.8rem 1.5rem;
}
.card-icon img {
  max-height: 3rem;
  width: auto;
}
.card-icon h3 {
  font-size: 2rem;
  margin: 1.6rem 0;
}

.card-quick-link {
  border-radius: 8px;
  background: #9AC9E2;
  padding: 1.8rem;
  height: min(32rem, 68vw);
  position: relative;
  transition: all 0.5s cubic-bezier(0.39, 0.03, 0.18, 0.78);
}
.card-quick-link__icon {
  border-radius: 0.4rem;
  background: rgba(76, 151, 191, 0.2);
  width: 10.5rem;
  height: 10.5rem;
  transition: background-color 0.5s cubic-bezier(0.39, 0.03, 0.18, 0.78);
}
.card-quick-link__arrow {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  border: 1px solid rgba(5, 31, 40, 0.2);
  width: 4.2rem;
  height: 4.2rem;
}
.card-quick-link__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.card-quick-link__arrow svg:first-child {
  transition-delay: 0.2s;
}
.card-quick-link__arrow svg:last-child {
  opacity: 0;
}
a:hover .card-quick-link {
  background-color: #051F28;
  color: #FAFAFA;
}
a:hover .card-quick-link__icon {
  background-color: #64C764;
}
a:hover .card-quick-link__arrow {
  border-color: rgba(154, 201, 226, 0.4);
}
a:hover .card-quick-link__arrow svg:first-child {
  opacity: 0;
  transition-delay: 0s;
}
a:hover .card-quick-link__arrow svg:last-child {
  opacity: 1;
  transition-delay: 0.2s;
}
@media print, screen and (min-width: 46.875em) {
  .card-quick-link {
    width: 26rem;
  }
}

@media print, screen and (min-width: 64em) {
  .home-services__list {
    padding-right: 4%;
    margin-bottom: 0;
  }
}

.home-awards .splide {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
  max-width: 110rem;
  margin: 0 auto;
}
.home-awards .splide__list {
  align-items: center;
}
.home-awards .splide img {
  display: block;
  margin: 0 auto;
  max-height: 9rem;
  width: auto;
  mix-blend-mode: multiply;
}
@media print, screen and (max-width: 46.87375em) {
  .home-awards .grid-container {
    padding-left: 0;
    padding-right: 0;
  }
}
