<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --color-blue: #0054A2;
  --color-aqua: #26BCB4;
  --color-lightgray: #EEEEEE;
  --color-yellow: #FFDD55;
  --color-mediumgray: #808285;
  --color-gray: #D1D3D4;
  --color-darkgray: #454545;
}

@keyframes shrink {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroImageWiggle {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes heroImageWiggleReverse {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

html {
  font-family: 'bicyclette', serif;
}

body {
  max-width: 1920px;
  margin: 0 auto !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  position: relative;
  min-height: 100vh;
}

footer {
  background-color: var(--color-blue);
  padding: 65px 65px 25px 65px;

  .footer-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 85px;

    h5 {
      margin-bottom: 15px;
      color: white;

      img {
        display: none;
      }
    }

    .legal {
      ul {
        column-count: 2;
        column-gap: 50px;
      }
    }

    ul {
      margin: 0;
      padding: 0;

      li {
        list-style: none;

        a {
          color: var(--color-lightgray);
          font-family: 'bicyclette', sans-serif;
          transition: 0.4s;

          &amp;:hover {
            color: white;
          }
        }
      }
    }

    .social-wrapper {
      display: flex;
      gap: 30px;
      align-items: center;

      a {
        img {
          max-height: 25px;
          max-width: 25px;
        }

        &amp;:hover {
          img {
            &amp;:hover {
              filter: brightness(0) invert(1);
            }
          }
        }

      }
    }

  }

  .copyright {

    p {
      text-align: center;
      color: white;
      font-family: 'bicyclette', sans-serif;
      font-size: 14px;
      font-style: italic;
      margin: 45px 0 0;
    }
  }

  img.footer-graphic {
    position: absolute;
    right: 25px;
    bottom: 0;
    width: 30%;
    max-width: 550px;
    z-index: -1;

  }

  @media (max-width: 1000px) {
    padding: 45px 25px 25px;



    .footer-wrapper {
      gap: 45px;

      h5 {
        font-size: 18px;
        margin-bottom: 10px;
      }

      .legal {
        ul {
          column-gap: 25px;
        }
      }

      .social {
        .social-wrapper {
          gap: 15px;
        }
      }
    }

    img.footer-graphic {
      display: none;
    }
  }

  @media (max-width: 600px) {
    padding-bottom: 0;

    .footer-wrapper {
      flex-wrap: wrap;

      .legal {
        ul {
          column-count: 1;
        }
      }
    }

    .copyright {
      margin-bottom: 35px;
    }

    img.footer-graphic {
      display: block;
      position: relative;
      width: 100%;
      right: 0;
    }
  }

  @media (max-width: 500px) {
    .footer-wrapper {
      flex-direction: column;
      max-width: 250px;
      gap: 5px;

      ul {
        display: none;

        &amp;.active {
          display: block;
        }
      }

      h5 {
        display: flex;
        justify-content: space-between;
        align-items: center;

        img {
          display: block;
        }

        &amp;.active {
          img {
            transform: scaleY(-1)
          }
        }
      }

      .social {
        display: flex;
        align-items: center;
        justify-content: space-between;

        h5 {
          margin: 0 45px 0 0;
        }
      }
    }
  }

}

.viewport {
  overflow: hidden;
}

h1 {
  font-family: 'bicyclette', serif;
  font-size: 70px;
  line-height: 70px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 5px;
  position: relative;

  &amp;.star {
    &amp;:before {
      content: '';
      display: inline-block;
      position: absolute;
      width: 73px;
      height: 73px;
      background-image: url('media/icon-star-yellow.svg');
      background-size: contain;
      top: -6px;
      left: -85px;
    }

    &amp;.star-aqua {
      &amp;:before {
        background-image: url('media/icon-star-aqua.svg');
      }
    }

    &amp;.star-white {
      &amp;:before {
        filter: brightness(0) invert(1);
        left: -105px;
      }
    }
  }

  @media (max-width: 1400px) {
    font-size: 46px;
    line-height: 42px;
    margin: 0 0 14px;

    &amp;.star {
      &amp;:before {
        width: 45px;
        height: 45px;
        left: -55px;
      }
    }
  }

  @media (max-width: 800px) {
    font-size: 36px;
    line-height: 32px;

    &amp;.star {
      &amp;:before {
        width: 30px;
        height: 30px;
        left: -35px;
        top: -3px;
      }

      &amp;.centered {
        &amp;:before {
          position: relative;
          left: -25px;
          top: 0;
        }
      }
    }
  }
}

h2 {
  font-family: 'bicyclette', serif;
  font-size: 60px;
  line-height: 60px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 25px;
  position: relative;

  &amp;.star {

    &amp;:before {
      content: '';
      display: inline-block;
      position: absolute;
      width: 73px;
      height: 73px;
      background-image: url('media/icon-star-yellow.svg');
      background-size: contain;
      top: -12px;
      left: -85px;
    }

    &amp;.star-aqua {
      &amp;:before {
        top: -10px;
        background-image: url('media/icon-star-aqua.svg');
      }
    }

    &amp;.star-white {
      &amp;:before {
        filter: brightness(0) invert(1);
        left: -105px;
      }
    }

    &amp;.centered {
      &amp;:before {
        position: relative;
        left: -15px;
        top: 18px;
      }
    }
  }

  @media (max-width: 1400px) {
    font-size: 36px;
    line-height: 36px;
    margin: 0 0 15px;

    &amp;.star {
      &amp;:before {
        width: 45px;
        height: 45px;
        left: -55px;
        top: -7px;
      }

      &amp;.centered {
        &amp;:before {
          left: -10px;
          top: 10px;
        }
      }
    }

  }

  @media (max-width: 800px) {
    font-size: 30px;
    line-height: 30px;

    &amp;.star {
      &amp;:before {
        width: 30px;
        height: 30px;
        left: -35px;
        top: -2px;
      }

      &amp;.centered {
        &amp;:before {
          left: -8px;
          top: 6px;
        }
      }
    }
  }
}

h3 {
  font-family: 'bicyclette', serif;
  font-size: 45px;
  line-height: 45px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 15px;
  position: relative;

  &amp;.star {
    &amp;:before {
      content: '';
      display: inline-block;
      position: absolute;
      width: 73px;
      height: 73px;
      background-image: url('media/icon-star-yellow.svg');
      background-size: contain;
      top: -20px;
      left: -85px;
    }

    &amp;.star-aqua {
      &amp;:before {
        top: -10px;
        background-image: url('media/icon-star-aqua.svg');
      }
    }

    &amp;.star-white {
      &amp;:before {
        filter: brightness(0) invert(1);
        left: -105px;
      }
    }

    &amp;.centered {
      &amp;:before {
        position: relative;
        left: -15px;
        top: 18px;
      }
    }
  }

  @media (max-width: 1400px) {
    font-size: 34px;
    line-height: 34px;
    margin: 0 0 15px;

    &amp;.star {
      &amp;:before {
        width: 45px;
        height: 45px;
        left: -55px;
        top: -15px;
      }

      &amp;.centered {
        &amp;:before {
          left: -10px;
          top: 10px;
        }
      }
    }
  }

  @media (max-width: 1000px) {
    font-size: 30px;
    line-height: 30px;
  }

  @media (max-width: 800px) {
    font-size: 24px;
    line-height: 24px;

    &amp;.star {
      &amp;:before {
        width: 30px;
        height: 30px;
        left: -35px;
        top: -5px;
      }

      &amp;.centered {
        &amp;:before {
          left: -8px;
          top: 6px;
        }
      }
    }
  }
}

h4 {
  font-family: 'bicyclette', serif;
  font-size: 30px;
  line-height: 33px;
  font-weight: 300;
  color: var(--color-mediumgray);
  margin: 0 0 15px;
  font-style: italic;

  @media (max-width: 1200px) {
    font-size: 25px;
    line-height: 25px;
    margin: 0 0 14px;
  }

  @media (max-width: 800px) {
    font-size: 20px;
    line-height: 20px;
  }
}

h5 {
  font-family: 'bicyclette', serif;
  font-size: 25px;
  line-height: 27px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 10px;

  @media (max-width: 800px) {
    font-size: 21px;
    line-height: 24px;
    margin: 0 0 5px;
  }
}

h6 {
  font-family: 'bicyclette', serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 15px;

  @media (max-width: 800px) {
    font-size: 15px;
    line-height: 17px;
    margin: 0 0 14px;
  }
}

p {
  font-family: 'superclarendon', serif;
  color: var(--color-darkgray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 25px;

  &amp;.btn {
    font-family: 'bicyclette', serif;
    color: var(--color-blue);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;

    &amp;:after {
      content: '';
      display: inline-block;
      width: 25px;
      height: 25px;
      margin-left: 12px;
      background-image: url('media/icon-arrow-right-blue.svg');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      position: relative;
      top: 6px;
      transition: 0.4s;
    }

    &amp;:hover {
      &amp;:after {
        margin-left: 20px;
      }
    }

    &amp;.white {
      color: white;
    }
  }

  @media (max-width: 1000px) {
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 10px;
  }
}

a {
  font-family: 'superclarendon', serif;
  text-decoration: none;
  color: var(--color-blue);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  outline: none !important;

  &amp;:hover {
    color: var(--color-blue);
  }

  &amp;.btn {
    font-family: 'bicyclette', serif;
    color: var(--color-blue);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    padding-bottom: 2px;

    &amp;:after {
      content: '';
      display: inline-block;
      width: 25px;
      height: 25px;
      background-image: url('media/icon-arrow-right-blue.svg');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      position: relative;
      top: 6px;
      left: 12px;
      transition: 0.4s;
    }

    &amp;:hover {
      &amp;:after {
        left: 20px;
      }
    }

    &amp;.white {
      color: white;
    }
  }

  &amp;:visited {
    color: var(--color-blue);
  }

  @media (max-width: 800px) {
    font-size: 14px;
    line-height: 22px;

    &amp;.btn {
      font-size: 14px;
      line-height: 14px;
      font-weight: 800;
    }
  }
}

a.blob-blue {
  color: white;
  position: relative;
  z-index: 2;
  max-width: 135px;
  display: block;
  text-align: center;
  font-family: 'bicyclette', serif;
  font-size: 25px;
  font-weight: 800;

  &amp;:after {
    content: '';
    display: inline-block;
    width: 300px;
    height: 285px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    background-image: url('media/blob-blue.svg');
    opacity: 1;
  }

  &amp;:before {
    content: '';
    display: inline-block;
    width: 300px;
    height: 285px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    background-image: url('media/blob-yellow.svg');
    opacity: 0;
  }

  &amp;:hover {
    &amp;:after {
      opacity: 0;
    }

    &amp;:before {
      opacity: 1;
    }
  }

  &amp;.aqua {
    &amp;:after {
      background-image: url('media/blob-aqua.svg');
    }
  }

  &amp;.small {
    font-size: 16px;
    line-height: 18px;
    max-width: 45px;

    &amp;:before,
    &amp;:after {
      width: 110px;
      height: 110px;
    }
  }

  &amp;.medium {
    font-size: 25px;

    &amp;:before,
    &amp;:after {
      width: 180px;
      height: 170px;
    }
  }

  @media (max-width: 1400px) {
    font-size: 20px;
    line-height: 20px;

    &amp;:before,
    &amp;:after {
      width: 200px;
      height: 205px;
    }
  }

  @media (max-width: 800px) {
    font-size: 14px;
    line-height: 16px;
    max-width: 75px;

    &amp;:before,
    &amp;:after {
      width: 135px;
      height: 125px;
    }

    &amp;:before {
      display: none;
    }

    &amp;.medium,
    &amp;.small {
      font-size: 11px;
      max-width: 35px;
      line-height: 11px;

      &amp;:before,
      &amp;:after {
        width: 65px;
        height: 65px;
      }
    }

    &amp;:hover {
      &amp;:after {
        opacity: 1;
      }
    }
  }
}

button.blob-blue {
  color: white;
  position: relative;
  z-index: 2;
  max-width: 135px;
  display: block;
  text-align: center;
  font-family: 'bicyclette', serif;
  font-size: 25px;
  font-weight: 800;

  &amp;:after,
  &amp;:before {
    content: '';
    display: inline-block;
    width: 300px;
    height: 285px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  &amp;:after {
    background-image: url('media/blob-blue.svg');
    opacity: 1;
  }

  &amp;:before {
    background-image: url('media/blob-yellow.svg');
    opacity: 0;
  }

  &amp;:hover {
    &amp;:after {
      opacity: 0;
    }

    &amp;:before {
      opacity: 1;
    }
  }

  &amp;.aqua {
    &amp;:after {
      background-image: url('media/blob-aqua.svg');
    }
  }

  &amp;.small {
    font-size: 16px;
    line-height: 18px;
    max-width: 45px;

    &amp;:before,
    &amp;:after {
      width: 110px;
      height: 110px;
    }
  }

  &amp;.medium {
    font-size: 25px;

    &amp;:before,
    &amp;:after {
      width: 180px;
      height: 170px;
    }
  }

  @media (max-width: 1400px) {
    font-size: 20px;
    line-height: 20px;

    &amp;:before,
    &amp;:after {
      width: 200px;
      height: 205px;
    }
  }

  @media (max-width: 800px) {
    font-size: 14px;
    line-height: 16px;
    max-width: 75px;

    &amp;:before,
    &amp;:after {
      width: 135px;
      height: 125px;
    }

    &amp;:before {
      display: none;
    }

    &amp;.medium,
    &amp;.small {
      font-size: 11px;
      max-width: 35px;
      line-height: 11px;

      &amp;:before,
      &amp;:after {
        width: 65px;
        height: 65px;
      }
    }

    &amp;:hover {
      &amp;:after {
        opacity: 1;
      }
    }
  }
}


button {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;

  &amp;:hover {
    cursor: pointer;
  }

}

ul {
  font-family: 'superclarendon', serif;
  color: var(--color-darkgray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  margin: 0 0 25px 15px;

  @media (max-width: 800px) {
    font-size: 14px;
    line-height: 22px;
  }
}

ol {
  font-family: 'superclarendon', serif;
  color: var(--color-darkgray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 800;
  margin: 0;
  padding: 0;
  margin: 0 0 25px 19px;

  @media (max-width: 800px) {
    font-size: 14px;
    line-height: 22px;
  }
}

.swiper-scrollbar,
.testimonial-swiper-scrollbar {
  background-color: var(--color-lightgray);
  border-radius: 0;
  height: 9px;

  &amp;.swiper-scrollbar-horizontal {
    left: 0;
    width: 100%;
    bottom: 0;
    height: 9px;
  }

  .swiper-scrollbar-drag {
    background-color: var(--color-blue);
    border-radius: 0;
  }
}

#lightbox {
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  align-items: center;
  justify-content: center;
  z-index: 1000;

  button#close-lightbox {
    position: absolute;
    top: 65px;
    right: 25px;
    background: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;

    img {
      filter: invert(1);
      width: 25px;
    }
  }

  @media (max-width: 800px) {
    button#close-lightbox {
      top: 25px;
      right: 20px;
    }
  }
}

/* Utilities */
.white {
  color: white;
}

.blue {
  color: var(--color-blue);
  background-color: var(--color-blue);
}

.aqua {
  color: var(--color-aqua);
  background-color: var(--color-aqua);
}

.lightgray {
  color: var(--color-lightgray);
  background-color: var(--color-lightgray);
}

.yellow {
  color: var(--color-yellow);
  background-color: var(--color-yellow);
}

.mediumgray {
  color: var(--color-mediumgray);
  background-color: var(--color-mediumgray);
}

.gray {
  color: var(--color-gray);
  background-color: var(--color-gray);
}

.darkgray {
  color: var(--color-darkgray);
  background-color: var(--color-darkgray);
}

.border-radius {
  border-radius: 20px;

  &amp;:before {
    border-radius: 20px;
  }

  @media (max-width: 800px) {
    border-radius: 10px;

    &amp;:before {
      border-radius: 10px;
    }
  }
}

.overlay {
  &amp;:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-blue);
    opacity: 0.75;
    z-index: 1;
  }
}

.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.4s;

  .video-wrapper {
    width: 90%;
    max-width: 1080px;
    aspect-ratio: 16/9;

    iframe,
    video {
      width: 100%;
      height: 100%;
    }
  }

  img.close-video-popup {
    position: absolute;
    top: 45px;
    right: 45px;
    width: 30px;
    height: 30px;

    &amp;:hover {
      cursor: pointer;
    }
  }

  @media (max-width: 800px) {
    img.close-video-popup {
      right: 25px;
      top: 25px;
      width: 25px;
      height: 25px;
    }
  }
}



/* CUSTOM */

header {
  .header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 25px 65px;
    position: relative;

    a.custom-logo-link {
      width: 130px;

      img {
        width: 130px;
      }
    }

    nav {
      padding: 0 100px;

      ul {
        gap: 65px;

        li.menu-item-has-children {
          display: flex;
          align-items: center;

          &amp;:after {
            content: '';
            display: inline-block;
            width: 14px;
            height: 14px;
            background-image: url('media/icon-chevron-down-blue.png');
            background-size: contain;
            background-repeat: no-repeat;
            position: relative;
            left: 7px;
            top: 3px;
          }

          &amp;.active {
            &amp;:after {
              transform: scaleY(-1);
              top: -4px;
            }
          }
        }
      }

      a {
        font-family: 'bicyclette', sans-serif;
      }

      ul.sub-menu {
        gap: 0;
        border-radius: 20px;
        display: none;
        top: 55px;

        &amp;.active {
          display: flex;
        }

        li {
          background-color: var(--color-aqua);
          width: 250px;

          a {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 3;
            color: white;
            padding: 50px 25px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            font-size: 20px;
            font-weight: 800;

            img.background-image {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              object-fit: cover;
              z-index: -1;
            }

            p.btn {
              color: white;
            }



          }

          &amp;:first-of-type {
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;

            a {
              border-top-left-radius: 20px;
              border-bottom-left-radius: 20px;

              img.background-image {
                border-top-left-radius: 20px;
                border-bottom-left-radius: 20px;
              }
            }
          }

          &amp;:last-of-type {
            border-top-right-radius: 20px;
            border-bottom-right-radius: 20px;

            a {
              border-top-right-radius: 20px;
              border-bottom-right-radius: 20px;
              display: flex;
              flex-direction: column;
              justify-content: flex-end;
              align-items: center;
              padding: 75px 45px 25px;
              font-size: 25px;
              color: var(--color-yellow);

              p.btn {
                margin-bottom: 35px;
              }
            }
          }
        }
      }
    }

    .right-nav {
      display: flex;
      gap: 30px;

      a {
        font-family: 'bicyclette', sans-serif;
      }

      .search-container {
        width: 25px;
        height: 25px;

        img.search-icon {
          &amp;:hover {
            cursor: pointer;
          }
        }
      }


    }

    .search-popup {
      position: fixed;
      top: -200%;
      left: 50%;
      width: 101%;
      height: 100vh;
      max-width: 1920px;
      margin: 0 auto;
      z-index: 20;
      transition: 0.6s;
      transform: translateX(-50%);
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 30px;



      &amp;:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-blue);
        opacity: 0.75;
        z-index: 1;
      }

      .search-filter-base {
        display: flex;
        gap: 0;
        z-index: 2;
        border-bottom: solid 2px white;
        width: 400px;


        .search-filter-input-text {
          font-family: 'bicyclette', sans-serif;
          background: transparent;
          border: none;
        }
      }

      img.close-search {
        position: absolute;
        top: 45px;
        right: 45px;
        z-index: 2;
        width: 20px;
        height: 20px;

        &amp;:hover {
          cursor: pointer;
        }
      }

      &amp;.active {
        top: 0;
      }
    }

    .mobile-nav-toggle {
      display: none;

      @media (max-width: 1000px) {
        display: block;
        position: absolute;
        right: 25px;
        top: 20px;

      }
    }
  }

  .announcement-bar {
    position: relative;
    background-image: linear-gradient(to right, var(--color-blue) 33%, #1ca1b0);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 105px 14px 65px;

    .content-wrapper {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 7px 25px;

      p {
        color: white;
        margin: 0;
      }

    }

    img.close-announcement {
      position: absolute;
      right: 0;
      top: 0;
      width: 17px;
      height: 17px;
      right: 55px;
      top: 22px;

      &amp;:hover {
        cursor: pointer;
      }
    }

    &amp;.closed {
      display: none;
    }

    @media (max-width: 800px) {
      padding: 14px 55px 14px 25px;

      .content-wrapper {
        gap: 2px;
      }

      img.close-announcement {
        right: 20px;
        top: 20px;
        width: 13px;
        height: 13px;
      }
    }
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-aqua);
    z-index: 10;
    padding: 100px 45px;
    transform: translateX(-100%);
    transition: 0.4s;

    &amp;.active {
      transform: none;
    }

    img.background-image,
    img.graphic-image {
      display: none;
    }

    p.btn {
      display: none;
    }

    ul {
      margin: 0;

      li {
        list-style: none;
        margin-bottom: 25px;


        a {
          font-family: 'bicyclette', sans-serif;
          font-size: 24px;
          font-weight: 800;
          color: var(--color-yellow);
        }

        &amp;.menu-item-has-children {

          a {
            &amp;:after {
              content: '';
              display: inline-block;
              position: relative;
              width: 20px;
              height: 20px;
              background-image: url('media/icon-chevron-down-white.svg');
              background-size: contain;
              background-repeat: no-repeat;
              background-position: center;
              margin-left: 10px;
              top: 2px;
            }
          }

          &amp;.active {
            a {
              &amp;:after {
                transform: scaleY(-1);
              }
            }
          }

          ul.sub-menu {
            display: none;

            li {
              margin-bottom: 10px;
              margin: 0 0 10px 10px;
            }

            a {
              color: white;
              font-size: 18px;

              &amp;:after {
                display: none;
              }
            }

            &amp;.active {
              display: block;
              margin-top: 10px;
            }
          }
        }
      }
    }

    a {
      font-family: 'bicyclette', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--color-yellow);
    }

    img.close-mobile-menu {
      position: absolute;
      top: 25px;
      right: 25px;
    }

    img.mobile-search-icon {
      margin-top: 15px;
    }

    img.mobile-menu-graphic {
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 250px;
    }
  }

  @media (max-width: 1400px) {
    .header-wrapper {
      nav {
        ul.sub-menu {
          li {
            width: 200px;

            a {
              padding: 25px 20px;
            }
          }
        }
      }
    }
  }

  @media (max-width: 1200px) {
    .header-wrapper {
      padding: 25px;
      align-items: flex-start;


      a.custom-logo-link {
        width: 90px;
      }

      nav {
        padding: 0 25px 0 55px;

        ul {
          gap: 35px;
        }

        a {
          font-size: 14px;
        }
      }

      .right-nav {
        padding-right: 25px;

        a {
          font-size: 14px;
        }
      }
    }
  }

  @media (max-width: 1000px) {
    nav.main-navigation {
      display: none;
    }

    .header-wrapper {
      padding: 15px 25px;

      a.custom-logo-link {
        position: relative;
        top: 4px;
      }

      .right-nav {
        display: none;
      }

      .search-popup {
        form {
          input.search-field {
            width: 200px;
          }
        }

        img.close-search {
          width: 13px;
          top: 15px;
          right: 25px;
        }
      }
    }

  }
}

.error-404 {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;

  &amp;:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-blue);
    opacity: 0.7;
    z-index: 1;
  }

  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    h1 {
      text-align: center;
    }
  }
}

.search-results-page {
  padding: 65px;

  .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;

    .search-header {
      background-color: var(--color-blue);
      padding: 65px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 25px;
      margin-bottom: 45px;

      h3 {
        text-align: center;
        color: white;
      }

      .search-filter-base {
        width: 400px;
        border-bottom: solid 2px white;

        .search-filter-input-text {
          font-family: 'bicyclette', sans-serif;
          border: none;
          color: white;
        }

        .search-filter-input-text__input::placeholder {
          color: white !important;

        }
      }
    }

    .search-filter-query-posts {
      .result-single {
        margin-bottom: 0;
        padding: 45px;

        &amp;:nth-child(even) {
          background-color: var(--color-lightgray);
        }
      }
    }

    .pagination {
      margin-top: 25px;
      display: flex;
      justify-content: center;
      gap: 85px;
    }
  }

  @media (max-width: 800px) {
    padding: 45px 25px;

    .content-wrapper {
      .search-header {
        padding: 25px 25px 35px;
        gap: 0;
      }

      .search-filter-query-posts {
        .result-single {
          padding: 25px;

        }
      }
    }
  }
}

.post-type-archive-news {
  section.header-no-image {
    min-height: 450px;
  }

  @media (max-width: 1300px) {
    section.header-no-image {
      min-height: 320px;
    }
  }

  @media (max-width: 1000px) {
    section.header-no-image {
      min-height: 0
    }
  }
}

section.home-hero {
  padding: 25px 45px 45px;
  overflow: hidden;

  .content-wrapper {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 150px;

    .content {
      width: 55%;
      display: flex;
      align-items: flex-start;
      gap: 35px;

      .image {
        width: 30%;

        img {
          width: 100%;
          min-width: 270px;
        }
      }

      .text {
        width: 70%;

        h1 {
          span {
            display: block;
            white-space: nowrap;

            &amp;:nth-of-type(3),
            &amp;:nth-of-type(4) {
              color: var(--color-aqua);
            }
          }
        }
      }
    }

    .stacked-images {
      width: 675px;
      height: 550px;
      position: relative;

      img {
        position: absolute;

        &amp;#image-1 {
          max-width: 458px;
          bottom: 0px;
          left: 140px;
        }

        &amp;#image-2 {
          max-width: 575px;
        }

        &amp;#image-3 {
          max-width: 320px;
          animation: shrink 0.75s forwards, heroImageWiggle 3s 0.75s ease-in-out infinite;
          top: -35px;
          left: 240px;
        }

        &amp;#image-4 {
          max-width: 430px;
          opacity: 0;
          transform: scale(1.2);
          animation: shrink 0.75s 0.25s forwards, heroImageWiggleReverse 3s .75s ease-in-out infinite;
          top: 50px;
          left: -20px;
        }

        &amp;#image-5 {
          max-width: 280px;
          opacity: 0;
          transform: scale(1.2);
          animation: shrink 0.75s 0.5s forwards, heroImageWiggleReverse 3s 1s ease-in-out infinite;
          bottom: 20px;
          left: 230px;
        }

        &amp;#image-6 {
          max-width: 180px;
          transform: scale(1.2);
          opacity: 0;
          animation: shrink 0.75s 0.75s forwards, heroImageWiggleReverse 3s 1.5s ease-in-out infinite;
          bottom: 150px;
          left: 15px;
        }
      }
    }
  }

  @media (max-width: 1600px) {
    padding: 25px 25px 45px;

    .content-wrapper {
      gap: 90px;

      .content {
        .image {
          img {
            min-width: 200px;
          }
        }
      }
    }
  }

  @media (max-width: 1400px) {
    .content-wrapper {
      gap: 75px;

      .content {}

      .stacked-images {
        height: 450px;
        width: 550px;

        img {
          &amp;#image-1 {
            max-width: 370px;
            left: 90px;
          }

          &amp;#image-2 {
            max-width: 470px;
            left: -20px;
          }

          &amp;#image-3 {
            max-width: 270px;
            top: -25px;
            left: 200px;
          }

          &amp;#image-4 {
            max-width: 370px;
            top: 40px;
            left: -10px;
          }

          &amp;#image-5 {
            max-width: 220px;
            bottom: 15px;
            left: 170px;
          }

          &amp;#image-6 {
            max-width: 140px;
            bottom: 140px;
            left: 10px;
          }
        }
      }
    }
  }

  @media (max-width: 1200px) {
    .content-wrapper {
      .content {
        width: 50%;
        gap: 15px;

        .image {
          width: 20%;

          img {
            min-width: 0;
            width: 100%
          }
        }
      }

      .stacked-images {
        height: 400px;
        width: auto;

        img {
          &amp;#image-1 {
            max-width: 320px;
            left: 70px;
          }

          &amp;#image-2 {
            max-width: 420px;
            left: -10px;
          }

          &amp;#image-3 {
            max-width: 240px;
            top: -20px;
            left: 170px;
          }

          &amp;#image-4 {
            max-width: 320px;
            top: 30px;
            left: -10px;
          }

          &amp;#image-5 {
            max-width: 200px;
            bottom: 10px;
            left: 140px;
          }

          &amp;#image-6 {
            max-width: 120px;
            bottom: 120px;
            left: 10px;
          }
        }
      }
    }
  }

  @media (max-width: 1000px) {
    .content-wrapper {
      .content {
        width: 45%;

        .image {
          display: none;
        }
      }

      .stacked-images {
        width: 55%;
      }
    }
  }

  @media (max-width: 900px) {
    .content-wrapper {
      gap: 45px;

      .stacked-images {
        height: 350px;

        img {
          &amp;#image-1 {
            max-width: 270px;
            left: 50px;
          }

          &amp;#image-2 {
            max-width: 370px;
            left: -10px;
          }

          &amp;#image-3 {
            max-width: 210px;
            top: -15px;
            left: 140px;
          }

          &amp;#image-4 {
            max-width: 270px;
            top: 20px;
            left: -10px;
          }

          &amp;#image-5 {
            max-width: 170px;
            bottom: 5px;
            left: 110px;
          }

          &amp;#image-6 {
            max-width: 100px;
            bottom: 100px;
            left: 10px;
          }
        }
      }
    }
  }

  @media (max-width: 700px) {
    .content-wrapper {
      .content {
        width: 50%;
      }

      .stacked-images {
        height: 260px;
        width: 50%;

        img {
          &amp;#image-1 {
            max-width: 200px;
            left: 70px;
          }

          &amp;#image-2 {
            max-width: 260px;
            left: -10px;
          }

          &amp;#image-3 {
            max-width: 140px;
            top: -10px;
            left: 110px;
          }

          &amp;#image-4 {
            max-width: 220px;
            top: 10px;
            left: -10px;
          }

          &amp;#image-5 {
            max-width: 140px;
            bottom: 0;
            left: 80px;
          }

          &amp;#image-6 {
            max-width: 80px;
            bottom: 80px;
            left: 10px;
          }
        }
      }
    }
  }

  @media (max-width: 600px) {
    padding: 25px 45px 45px;

    .content-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 25px;

      .content {
        width: auto;
      }

      .stacked-images {
        width: 260px;
      }
    }
  }
}

section.news-slider {
  overflow: hidden;
  background-color: var(--color-aqua);
  position: relative;

  .marquee-wrapper {
    padding: 45px 0;

    .marquee-content {
      display: inline-block;
      white-space: nowrap;
      animation: marquee 30s linear infinite;

      h2 {
        display: inline-block;
        color: var(--color-yellow);
        margin: 0;
      }

      img {
        margin: 0 115px;
        position: relative;
        top: 3px;
      }
    }
  }

  .content-wrapper {
    display: flex;
    margin-bottom: 75px;

    .main-link {
      width: 25%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-container {
      width: 75%;
      overflow: hidden;
      cursor: url('media/cursor-arrow.png') 16 16, auto;


      a {
        cursor: inherit;
      }

      .card-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 35px;

        a.media {
          aspect-ratio: 1;
          position: relative;
          width: 50%;


          img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }

        .content {
          width: 50%;
        }
      }
    }


  }

  @media (max-width: 1400px) {
    .marquee-wrapper {
      .marquee-content {
        img {
          margin: 0 65px;
          width: 35px;
          top: 6px;
        }
      }
    }

    .content-wrapper {
      .main-link {
        width: 250px;
      }

      .swiper-container {
        width: calc(100% - 250px);

        .card-wrapper {
          gap: 20px;
        }
      }
    }
  }

  @media (max-width: 1200px) {
    .content-wrapper {
      .swiper-container {
        .card-wrapper {
          padding: 0 15px;
        }
      }
    }
  }

  @media (max-width: 1000px) {
    .marquee-wrapper {
      padding: 35px 0;

      .marquee-content {
        img {
          margin: 0 65px;
        }
      }
    }

    .content-wrapper {
      margin-bottom: 45px;
    }
  }

  @media (max-width: 800px) {
    .marquee-wrapper {
      padding: 35px 0 35px;

      .marquee-content {
        img {
          margin: 0 15px;
          width: 30px;
          height: 30px;
          top: 5px;
        }
      }
    }

    .content-wrapper {

      .main-link {
        width: 200px;
      }

      .swiper-container {
        width: calc(100% - 200px);

        .card-wrapper {
          align-items: flex-start;
        }
      }
    }
  }

  @media (max-width: 600px) {
    .marquee-wrapper {
      padding: 35px 0 65px;
    }

    .content-wrapper {
      flex-direction: column;

      .main-link {
        width: 100%;
        position: relative;

        a.blob-blue {
          position: absolute;
          right: 40px;
          top: 0;
        }
      }

      .swiper-container {
        width: 100%;

        .card-wrapper {
          flex-direction: column;
          padding: 0 45px;

          a.media {
            width: 100%;
            padding-top: 100%;
            /* Creates 1:1 aspect ratio */
            height: 0;
          }

          .content {
            width: 100%;
          }
        }
      }
    }
  }

}

section.video-text-banner {
  padding: 45px 0;
  overflow: hidden;

  .content-wrapper {
    display: flex;
    align-items: center;
    gap: 135px;

    .media {
      width: 45%;
      position: relative;

      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: right center;

        &amp;.mobile {
          display: none;
        }
      }

      button {
        position: absolute;
        right: 55%;
        bottom: 36%;

      }
    }

    .content {
      width: 55%;
      padding-right: 65px;

      h2 {
        max-width: 650px;
      }

      p {
        max-width: 500px;
      }
    }
  }

  &amp;.right {

    .content-wrapper {
      flex-direction: row-reverse;

      .content {
        padding-right: 0;
        width: 55%;
        padding-left: 15%;
      }

      .media {
        width: 45%;

        button {
          right: unset;
          left: 45px;
          bottom: 29%;
        }
      }
    }
  }

  @media (max-width: 1400px) {
    &amp;.right {
      .content-wrapper {
        .content {
          padding-left: 125px;
        }
      }
    }
  }

  @media (max-width: 1200px) {
    .content-wrapper {
      gap: 45px;

      .content {
        padding-right: 45px;
      }
    }

    &amp;.right {
      .content-wrapper {
        .content {
          padding-left: 85px;
        }

        .media {
          img {
            width: 95%;
            float: right;
          }

          button {
            right: 0;
          }
        }
      }
    }
  }

  @media (max-width: 600px) {
    .content-wrapper {
      flex-direction: column;
      gap: 45px;

      .media {
        width: 100%;

        img.desktop {
          display: none;
        }

        img.mobile {
          display: block;
          width: 95%;
          max-width:
        }

        button {
          right: unset;
          left: 18%;
          bottom: 32%;
        }
      }

      .content {
        width: 100%;
        padding: 0 45px;
      }
    }

    &amp;.right {
      .content-wrapper {
        flex-direction: column;

        .content {
          width: 100%;
          padding: 0 45px;
        }

        .media {
          width: 100%;

          img {
            width: 90%;
            float: right;
          }

          button {
            left: 25px;
          }
        }
      }
    }
  }
}

section.text-image-50-50 {
  padding: 0 65px 0 125px;

  .content-wrapper {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 85px;

    .content {
      width: 50%;

      .text {
        max-width: 500px;
      }
    }

    .image {
      width: 50%;

      img {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        display: block;
      }
    }
  }

  @media (max-width: 1200px) {
    padding: 45px 65px 45px 85px;

    .content-wrapper {
      gap: 45px;

      .image {
        width: 40%;
      }

      .content {
        width: 60%;
      }
    }
  }

  @media (max-width: 800px) {
    padding: 45px;

    .content-wrapper {}
  }

  @media (max-width: 600px) {
    padding: 45px 45px 0 45px;

    .content-wrapper {
      flex-direction: column-reverse;

      .image {
        width: 100%;
      }

      .content {
        width: 100%;
      }
    }
  }
}

section.floating-two-cards {
  position: relative;
  padding: 145px 65px;

  .floating-image {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    max-width: 550px;
  }

  .content-wrapper {
    max-width: 1400px;
    height: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;

    img.background-pattern {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: auto;
      z-index: 0;
    }

    .card {
      position: relative;
      z-index: 2;
      width: 550px;
      height: 420px;
      background-size: cover;
      display: flex;
      align-items: flex-end;
      padding: 65px 65px;
      margin-top: -145px;

      &amp;:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-aqua);
        opacity: 75%;
        z-index: 1;
        border-radius: 20px;
      }

      .content {
        position: relative;
        z-index: 2;

        h3 {
          color: white;
          margin-bottom: 0;
        }

        p.btn {
          color: white;
          margin-bottom: 0;
        }
      }

      &amp;:nth-of-type(2) {
        margin-top: 145px;

        &amp;:before {
          background-color: var(--color-blue);
        }
      }
    }
  }

  @media (max-width: 1400px) {
    padding: 145px 45px;

    .content-wrapper {
      .card {
        width: 50%;
        padding: 45px;
        height: auto;
        aspect-ratio: 1.3;
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 125px 45px;

    img.floating-image {
      max-width: 425px;
    }

    .content-wrapper {
      height: 350px;

      .card {
        padding: 25px;
      }
    }
  }

  @media (Max-width: 800px) {
    padding: 85px 45px;

    .floating-image {
      display: none;
    }

    .content-wrapper {
      flex-direction: column;
      height: 100%;
      gap: 20px;

      .card {
        margin-top: 0;
        width: 100%;
        max-width: 550px;

        &amp;:nth-of-type(2) {
          margin-top: 0;
        }

        &amp;:before {
          border-radius: 10px;
        }
      }

      img.background-pattern {
        display: none;
      }


    }
  }

  @media (max-width: 600px) {
    padding: 45px 25px;

    .content-wrapper {
      .card {
        aspect-ratio: 1.4;
      }
    }
  }
}

section.cta {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 85px;

  .content-wrapper {
    position: relative;
    z-index: 2;
    padding: 85px 65px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;

    &amp;:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--color-blue);
      z-index: 1;
      opacity: 75%;
      border-radius: 20px;
    }

    .content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      max-width: 800px;
      margin: 0 auto;

      h2 {
        text-align: center;
        margin-bottom: 0;
      }

      .link-wrapper {
        display: flex;
        gap: 55px;
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 85px 45px;
  }

  @media (max-width: 800px) {
    padding: 65px 25px;

    .content-wrapper {
      padding: 65px 35px;

      &amp;:before {
        border-radius: 10px;
      }

      .content {
        max-width: 90%;

        .link-wrapper {
          flex-wrap: wrap;
          justify-content: center;
          gap: 10px 55px;
        }
      }


    }
  }

  @media (max-width: 600px) {
    padding: 65px 20px;

    .content-wrapper {
      .content {
        max-width: 100%;
      }
    }
  }

}

section.cta-two-columns {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 65px 85px;

  .content-wrapper {
    position: relative;
    z-index: 2;
    padding: 85px 65px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    display: flex;
    gap: 65px;

    &amp;:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--color-blue);
      z-index: 1;
      opacity: 75%;
      border-radius: 20px;
    }

    .column {
      position: relative;
      z-index: 2;
      width: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      h2 {
        text-align: center;
        margin-bottom: 0;
      }


    }

  }

  @media (max-width: 1000px) {
    padding: 85px 45px;
  }

  @media (max-width: 800px) {
    padding: 65px 25px;

    .content-wrapper {
      padding: 65px 35px;

      &amp;:before {
        border-radius: 10px;
      }
    }
  }

  @media (max-width: 600px) {
    padding: 65px 20px;

    .content-wrapper {
      flex-direction: column;
      gap: 45px;

      .column {
        width: 100%;
      }
    }
  }

}

section.header-50-50 {
  padding: 15px 65px 85px;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 180px;

    .content {
      width: 45%;
      padding-top: 100px;

      p {
        max-width: 550px;
      }

      .anchor-links {
        background-color: var(--color-aqua);

        width: 315px;
        padding: 25px 45px;
        margin-top: 45px;

        h6 {
          margin-bottom: 15px;
        }

        .links-wrapper {
          display: flex;
          flex-direction: column;
        }

        a {
          color: white;
          position: relative;
          font-weight: 400;
          margin-bottom: 10px;

          &amp;:before {
            content: '';
            display: inline-block;
            position: relative;
            width: 22px;
            height: 22px;
            background-image: url('media/icon-star-yellow.svg');
            background-size: contain;
            top: 4px;
            margin-right: 5px;
          }
        }
      }
    }

    .image {
      width: 55%;
      position: relative;

      img.main {
        width: 100%;
        z-index: 2;
        position: relative;
        max-width: 600px;
      }

      img.blob {
        position: absolute;
        top: -70px;
        right: 0;
        width: 420px;
        z-index: 1;
      }

      img.blob-front {
        position: absolute;
        top: 25px;
        right: 150px;
        z-index: 3;
      }


    }
  }

  @media (max-width: 1600px) {
    .content-wrapper {
      gap: 85px;
      align-items: center;
      padding-top: 0;

      .content {
        width: 50%;
        padding-top: 45px;
      }

      .image {
        width: 50%;

        img.main {
          max-width: 525px;
        }
      }
    }
  }

  @media (max-width: 1400px) {
    padding: 0 45px 45px;

    .content-wrapper {
      .image {
        img.main {
          max-width: 475px;
        }

        img.blob-front {
          width: 100px;
          top: 10px;
          right: 120px;
        }
      }
    }



  }

  @media (max-width: 1300px) {
    .content-wrapper {
      .image {
        img.main {
          max-width: 375px;
        }

        img.blob-front {
          display: none;
        }
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 65px 25px 25px;

    .content-wrapper {
      gap: 0;
      flex-direction: column-reverse;

      .content {
        width: 100%;

        p {
          max-width: none;
        }

        .anchor-links {
          width: 100%;
          padding: 25px 45px;
          margin-top: 45px;

          .links-wrapper {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 5px 45px;
          }
        }
      }

      .image {
        width: 100%;

        img.main {
          display: block;
          margin: 0 auto;
        }

        img.blob {
          right: 50%;
          top: -50px;
          width: 350px;

          transform: translateX(85%);
        }
      }
    }
  }

  @media (max-width: 600px) {
    .content-wrapper {
      .content {
        .anchor-links {
          padding: 25px;

          .links-wrapper {
            flex-direction: column;
            gap: 5px;

          }
        }
      }

      .image {
        img.main {
          margin: 0;
        }


      }
    }
  }

  @media (max-width: 500px) {
    .content-wrapper {
      .image {
        img.blob-front {
          display: block;
          right: -20px;
          width: 75px;

        }
      }
    }
  }

  @media (max-width: 400px) {
    .content-wrapper {
      .image {
        img.blob-front {
          display: block;
          right: -20px;
        }
      }
    }
  }
}

section.header-full-photo {
  padding: 65px;
  position: relative;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    padding: 125px 85px;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;


    video {
      border-radius: 20px;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;

      h1 {
        max-width: 650px;
      }

      p {
        color: white;
      }
    }
  }

  img.blob {
    position: absolute;
    top: -120px;
    right: 0;
    z-index: -1;
    transform: rotate(130deg);
  }


  img.blob-yellow {
    position: absolute;
    top: 150px;
    right: 4%;
    z-index: 3;
  }

  @media (max-width: 1400px) {
    .content-wrapper {
      min-height: 500px;
    }

    img.blob {
      width: 300px;
      top: -80px;
    }

    img.blob-yellow {
      top: 110px;
      width: 140px;
    }
  }

  @media (max-width: 1000px) {
    padding: 25px 25px;

    .content-wrapper {
      padding: 100px 65px;
      min-height: 450px;
    }

    img.blob {
      display: none;
    }

    img.blob-yellow {
      display: none;
    }
  }

  @media (max-width: 800px) {
    padding: 0 0;

    .content-wrapper {
      border-radius: 0;
      padding: 85px 35px;
      min-height: 400px;

      &amp;:before {
        border-radius: 0;
      }

      video {
        border-radius: 0;
      }
    }
  }
}

section.leadership {
  padding: 85px 65px;
  background-repeat: repeat-y;
  background-size: contain;
  background-position: top center;

  .leadership-single {
    margin-bottom: 85px;

    .content-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      background-color: var(--color-blue);
      padding: 65px 0;
      position: relative;


      .image {
        width: 40%;
        position: relative;

        img.headshot {
          position: absolute;
          left: -140px;
          max-width: 450px;
          z-index: 1;
        }

        img.star {
          z-index: 2;
          position: absolute;
          width: 55px;
          height: 55px;
          right: 65px;
          top: 35px;
        }
      }

      .content {
        width: 60%;
        padding: 45px 85px 0 0;

        h2 {
          color: white;
        }

        h5 {
          color: white;
        }

        p {
          color: white;
        }
      }
    }

    &amp;:nth-of-type(even) {
      .content-wrapper {
        flex-direction: row-reverse;

        .content {
          padding: 0 0 0 85px;
        }

        .image {
          img.headshot {
            left: unset;
            right: -140px;
          }

          img.star {
            right: unset;
            left: 65px;
          }
        }
      }
    }
  }

  @media (max-width: 1400px) {
    .leadership-single {
      position: relative;
      right: -6%;

      &amp;:nth-of-type(even) {
        right: unset;
        left: -6%;
      }
    }
  }

  @media (max-width: 1200px) {
    padding: 65px 45px;

    .leadership-single {
      left: 0;

      .content-wrapper {
        gap: 65px;
        padding: 65px;

        .image {
          img.headshot {
            left: 0;
            position: relative;
            width: 100%;
          }

          img.star {
            right: -25px;
          }
        }

        .content {
          padding: 35px 0 0 0;
        }
      }

      &amp;:nth-of-type(even) {
        left: 0;

        .content-wrapper {
          .image {
            img.headshot {
              position: relative;
              right: 0;
            }

            img.star {
              left: -25px;
            }
          }

          .content {
            padding: 35px 0 0 0;
          }
        }
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 65px 25px;

    .leadership-single {
      margin-bottom: 65px;

      .content-wrapper {
        padding: 45px;
        gap: 45px
      }
    }

  }

  @media (max-width: 800px) {
    background-image: none !important;
    background-color: var(--color-lightgray);

    .leadership-single {
      margin-bottom: 45px;

      .content-wrapper {
        flex-direction: column;
        gap: 45px;
        padding: 35px 25px;

        .image {
          width: 100%;

          img.headshot {
            display: block;
            margin: 0 auto;
          }

          img.star {
            display: none;
          }
        }

        .content {
          width: 100%;
          padding: 0;
        }
      }

      &amp;:nth-of-type(even) {
        .content-wrapper {
          flex-direction: column;

          .content {
            padding: 0;
          }
        }
      }

      &amp;:last-of-type {
        margin-bottom: 0;
      }
    }

  }
}

section.header-no-image {
  padding: 65px;
  position: relative;
  min-height: 500px;

  .content-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    p {
      text-align: center;
    }

    h2 {
      text-align: center;
    }
  }

  img.right {
    position: absolute;
    right: -145px;
    bottom: 65px;
    z-index: -1;
    max-width: 450px;
  }

  img.left {
    position: absolute;
    left: -65px;
    bottom: 45px;
    z-index: -1;
    max-width: 350px;
  }

  @media (max-width: 1500px) {
    img.right {
      right: -225px;
    }

    img.left {
      left: -175px;
    }
  }

  @media (max-width: 1300px) {
    padding: 45px;
    min-height: 400px;

    .content-wrapper {
      max-width: 700px;
    }

    img.right {
      right: -200px;
      max-width: 350px;
    }

    img.left {
      left: -135px;
      max-width: 250px;

    }
  }

  @media (max-width: 1000px) {
    min-height: 0;

    .content-wrapper {
      max-width: 700px;
    }

    img.right {
      display: none;
    }

    img.left {
      display: none;

    }
  }

  @media (max-width: 800px) {
    padding: 25px 25px 45px;


  }
}

section.multi-feature {
  background-color: var(--color-aqua);
  padding: 125px 65px;
  position: relative;
  overflow: hidden;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;

    .heading {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-bottom: 45px;

      h2 {
        text-align: center;
        color: var(--color-yellow);
        display: inline-block;

        &amp;:before {
          position: relative;
          left: -25px;
          top: 17px;
        }
      }

      p {
        max-width: 750px;
        text-align: center;
        color: white;
      }
    }

    .feature-wrapper {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 25px 85px;

      .feature {
        display: flex;
        align-items: center;
        gap: 25px;

        .image {
          width: 20%;

          img {
            width: 100%;
          }
        }

        .content {
          width: 80%;

          h3 {
            color: white;

            img {
              display: none;
            }
          }

          p {
            color: white;
          }
        }
      }
    }


  }

  img.background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    z-index: 1;
  }

  img.background-image.desktop {
    display: none;
  }

  @media (max-width: 1400px) {
    .content-wrapper {
      .heading {
        h2 {
          &amp;:before {
            left: -15px;
            top: 10px;
          }
        }
      }
    }
  }

  @media (max-width: 1200px) {
    padding: 85px 45px;

    .content-wrapper {
      .feature-wrapper {
        gap: 25px 45px;

        .feature {
          .content {
            h3 {
              font-size: 24px;
              line-height: 30px;
              margin-bottom: 5px;
            }
          }
        }
      }
    }
  }

  @media (max-width: 800px) {
    padding: 65px 25px;

    .content-wrapper {
      .heading {
        h2 {
          &amp;:before {
            left: -10px;
            top: 5px;
          }
        }

        p {
          display: none;
        }
      }

      .feature-wrapper {
        grid-template-columns: minmax(0, 1fr);

        .feature {
          max-width: 600px;
          margin: 0 auto;
        }
      }
    }
  }

  @media (max-width: 600px) {
    padding: 45px 45px 45px 25px;
    background-size: cover;
    background-position: center;

    .content-wrapper {
      .heading {
        margin-bottom: 15px;
      }

      .feature-wrapper {
        gap: 10px;

        .feature {
          align-items: center;

          .content {
            h3 {
              margin-top: 0;
              position: relative;

              img {
                display: inline-block;
                margin-left: 10px;
                transition: 0.2s;
                position: absolute;
                bottom: 9px;
              }

              &amp;.active {
                img {
                  transform: scaleY(-1);
                }
              }
            }

            p {
              display: none;

              &amp;.active {
                display: block;
              }
            }
          }
        }
      }
    }

    img.background-image.desktop {
      display: none;
    }

    img.background-image {
      display: none;
    }


  }
}

section.fifty-fifty-square {
  padding: 105px 65px 65px;

  .content-wrapper {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    gap: 85px;

    .left {
      width: 40%;

      .image-wrapper {
        position: relative;
        z-index: 1;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          aspect-ratio: 1;
        }

        button.blob-blue {
          position: absolute;
          bottom: 55px;
          right: 45px;
        }
      }

      img.top-right {
        position: absolute;
        z-index: 0;
        top: -45px;
        right: -45px;
      }

      img.bottom-left {
        position: absolute;
        bottom: 65px;
        z-index: 2;
        left: -85px;
      }

      .swiper-scrollbar {
        width: 90%;
        position: relative;
        margin: 35px auto 0;
      }
    }

    .right {
      width: 60%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 0 0 85px;
    }
  }

  @media (max-width: 1200px) {
    padding: 90px 65px 65px;

    .content-wrapper {
      gap: 35px;

      .left {
        img.bottom-left {
          width: 180px;
          left: -25px;
        }

        img.top-right {
          width: 120px;
          top: -25px;
          right: -25px;
        }
      }

      .right {
        padding-bottom: 0;
        padding: 0 0 0 60px;
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 75px 45px 65px;

    .left {
      width: 40%;
    }

    .right {
      width: 60%;
    }
  }

  @media (max-width: 800px) {
    .content-wrapper {
      flex-direction: column;
      gap: 45px;

      .left {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;

        .swiper-scrollbar {
          margin: 15px auto 0;
        }
      }

      .right {
        width: 100%;
        padding: 0 0 0 25px;
      }
    }
  }

  @media (max-width: 600px) {
    padding: 45px 40px 45px;

    .content-wrapper {
      gap: 35px;

      .left {
        img.bottom-left {
          display: none;
        }

        img.top-right {
          width: 80px;
          height: 80px;
          top: -15px;
          right: -15px;
        }

        .image-wrapper {
          button.blob-blue {
            bottom: 40px;
            right: 25px;
          }
        }
      }

      .right {
        padding-left: 0;
      }
    }
  }
}


section.fifty-fifty-carousel {
  padding: 145px 185px;
  position: relative;

  .swiper-container {
    max-width: 1300px;
    margin: 0 auto;

    .content-wrapper {
      display: flex;
      gap: 125px;
      align-items: center;

      .image-wrapper {
        width: 50%;
        position: relative;

        img.border-radius {
          position: relative;
          z-index: 1;
          width: 100%;
        }

        img.top-right {
          position: absolute;
          z-index: 0;
          top: -45px;
          right: -45px;
        }

        img.bottom-left {
          position: absolute;
          bottom: 65px;
          z-index: 2;
          left: -85px;
        }
      }

      .content {
        width: 50%;

        h5 {
          margin-bottom: 25px;
        }

        h3 {
          margin-bottom: 10px;
        }

        h6 {
          color: var(--color-darkgray);
        }
      }
    }

    .swiper-scrollbar {
      position: relative;
      max-width: 900px;
      margin: 65px auto 0;
    }
  }

  .swiper-button-prev {
    color: var(--color-blue);
    top: 45%;
    left: 100px;
  }

  .swiper-button-next {
    color: var(--color-blue);
    top: 45%;
    right: 100px;
  }

  @media (max-width: 1600px) {
    .swiper-container {
      .content-wrapper {
        gap: 85px;
      }
    }

    .swiper-button-next {
      right: 65px;
    }

    .swiper-button-prev {
      left: 65px;
    }
  }

  @media (max-width: 1400px) {
    padding: 85px;

    .swiper-container {
      .content-wrapper {
        gap: 65px;

        .image-wrapper {
          img.bottom-left {
            display: none;
          }

          img.top-right {
            width: 120px;
            top: -25px;
            right: -25px;
          }
        }
      }
    }

    .swiper-button-next {
      right: 25px;
    }

    .swiper-button-prev {
      left: 25px;
    }
  }

  @media (max-width: 1000px) {
    padding: 65px 45px;

    .swiper-container {
      .content-wrapper {
        flex-direction: column;
        gap: 45px;

        .image-wrapper {
          width: 100%;
          max-width: 500px;
        }

        .content {
          width: 100%;
        }
      }

      .swiper-scrollbar {
        margin-top: 45px;
      }
    }

    .swiper-button-next,
    .swiper-button-prev {
      display: none;
    }




  }

  @media (max-width: 600px) {
    padding: 45px 25px;

    .swiper-container {
      .content-wrapper {
        gap: 35px;

        .image-wrapper {
          img.top-right {
            width: 80px;
            height: 80px;
            top: -15px;
            right: -15px;
          }
        }
      }

      .swiper-scrollbar {
        margin-top: 35px;
      }

    }

  }
}

section.center-content-block {
  padding: 100px 65px 85px;

  .content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--color-blue);
    text-align: center;
    padding: 85px 125px;
    position: relative;


    p {
      color: white;
    }

    a.btn {
      color: white;
    }

    img.top-right {
      position: absolute;
      top: -100px;
      right: -180px;
      z-index: -1;
    }

    img.bottom-left {
      position: absolute;
      bottom: -65px;
      left: -135px;
      z-index: -1;
    }
  }

  @media (max-width: 1000px) {
    padding: 85px 40px 65px;

    .content-wrapper {
      padding: 65px 45px;

      img.top-right {
        width: 250px;
        right: -100px;
        top: -60px;
      }

      img.bottom-left {
        width: 200px;
        bottom: -35px;
        left: -65px;
      }
    }
  }

  @media (max-width: 600px) {
    padding: 0;

    .content-wrapper {
      border-radius: 0;
      padding: 65px 40px;

      img.top-right,
      img.bottom-left {
        display: none;
      }
    }
  }
}

section.center-content-block-dots {
  padding: 145px 85px;
  position: relative;

  .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
  }

  img.dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 95%;
    max-width: 1400px;
  }

  @media (max-width: 1200px) {
    padding: 85px 45px;

    .content-wrapper {
      padding: 65px 40px;
      width: 75%;
    }

    img.dots {
      width: 90%;
    }

  }

  @media (max-width: 1000px) {
    padding: 65px 40px;

    .content-wrapper {
      padding: 65px 40px;
      width: 85%;
    }

    img.dots {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

  }

  @media (max-width: 800px) {
    .content-wrapper {
      width: 100%;
    }
  }

  @media (max-width: 800px) {
    padding: 0;

    img.dots {
      display: none;
    }
  }
}

section.appreciation-slider {
  padding: 85px 65px;

  .content-wrapper {
    max-width: 1700px;
    margin: 0 auto;

    .heading {
      max-width: 1000px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0 auto 65px;

      h2 {
        position: relative;
        display: inline;
        text-align: center;
      }

      .text {
        text-align: center;
        max-width: 750px;
      }
    }

    .swiper-slide {

      &amp;:first-of-type {
        background-color: var(--color-blue);

        .slide-wrapper {
          img.top-left {
            opacity: 35%;
          }
        }

        h5 {
          color: var(--color-aqua);
        }

        p {
          color: white;
        }

        .source {

          h5 {
            color: white;
          }
        }


      }

      .slide-wrapper {
        padding: 85px;
        position: relative;

        img.top-left {
          position: absolute;
          top: 20px;
          left: 20px;
          z-index: 0;
        }

        h5 {
          position: relative;
          z-index: 2;
          color: var(--color-aqua);
        }

        p {
          position: relative;
          z-index: 2;
        }
      }

      .source {
        display: flex;
        gap: 8px;
        align-items: center;

        h5 {
          margin: 0;
          color: var(--color-blue);
        }

        .bar {
          width: 20px;
          height: 4px;
          background-color: var(--color-aqua);
          position: relative;
        }
      }


    }

    .appreciation-slider-swiper-scrollbar {
      position: relative;
      width: 85%;
      max-width: 900px;
      margin: 65px auto 0;
    }
  }

  @media (max-width: 600px) {
    padding: 55px 20px;

    .content-wrapper {
      .heading {
        margin-bottom: 35px;
        padding: 0 15px;
      }

      .swiper-slide {
        .slide-wrapper {
          padding: 45px 35px;

          img.top-left {
            width: 60px;
            top: 20px;
            left: 15px;
          }

          h5 {
            margin-bottom: 15px;
          }

          p {
            margin-bottom: 25px;
          }

          .source {
            h5 {
              margin: 0;
            }
          }
        }
      }

      .swiper-scrollbar {
        margin-top: 25px;
      }

    }



  }
}

section.post-grid {
  padding: 0 65px 85px;
  margin-top: -150px;
  z-index: 3;
  position: relative;

  .filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    margin-bottom: 45px;

    .search-filter-field__input {
      width: 250px;
    }

    .search-filter-component-combobox .search-filter-component-combobox__actions .search-filter-component-combobox__actions-input {
      font-family: 'Superclarendon', serif;

      &amp;::placeholder {
        opacity: 1;
        color: var(--color-blue);
      }
    }

  }

  .grid-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;

    .grid-item {
      position: relative;
      padding: 50px 45px;
      display: flex;
      align-items: flex-end;
      aspect-ratio: 1;
      background-size: cover;
      background-position: center;

      &amp;:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
      }

      &amp;:hover {
        cursor: pointer;

        .content {
          p.btn {

            &amp;:after {
              margin-left: 20px;
            }
          }
        }
      }

      .content {
        position: relative;
        z-index: 2;

        h5 {
          margin-bottom: 5px;
        }

        p.btn {
          margin: 0;
        }
      }


    }

  }

  @media (max-width: 1300px) {
    margin-top: -80px;
    padding: 0 45px 65px;


    .filters {
      margin-bottom: 25px;
    }

    .grid-container {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    }

  }

  @media (max-width: 1000px) {
    margin-top: -40px;
    padding: 0 45px 65px;


    .filters {
      margin-bottom: 15px;
    }

    .grid-container {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

  }

  @media (max-width: 800px) {
    margin-top: 0;
    padding: 0 20px 45px;
  }

  @media (max-width: 600px) {
    .filters {
      ul {
        gap: 5px 20px;
        flex-wrap: wrap;
      }

      select {
        font-size: 13px;


        option {
          font-size: 13px;
        }
      }
    }

    .grid-container {
      grid-template-columns: minmax(0, 1fr);

      .grid-item {
        padding: 35px 25px;
      }
    }
  }
}

section.post-hero {
  padding: 45px 65px 45px;

  .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 125px;

    .content {
      width: 45%;

      h4 {
        margin-bottom: 25px;
      }
    }

    .image {
      width: 55%;

      img {
        width: 100%;
      }

      .share {
        display: flex;
        gap: 15px;
        justify-content: flex-end;
        align-items: center;
        margin-top: 35px;

        h5 {
          margin: 0;
        }

        a,
        button {
          width: 25px;
          height: 25px;
        }

        img {
          width: 25px;
          height: 25px;
        }
      }
    }
  }

  @media (max-width: 1400px) {
    padding: 45px 65px;

    .content-wrapper {
      gap: 85px;

      .content {}
    }
  }

  @media (max-width: 1000px) {
    padding: 45px 45px 25px;

    .content-wrapper {
      gap: 65px;

      .content {
        width: 55%;

        h1.star {
          &amp;:before {
            display: none;
          }
        }
      }

      .image {
        width: 45%;
      }
    }
  }

  @media (max-width: 800px) {
    padding: 45px 25px 25px;

    .content-wrapper {
      .content {}

      .image {
        .share {
          margin-top: 20px;
          gap: 10px;

          img {
            width: 18px;
            height: 18px;
          }

          h5 {
            line-height:
          }

          a,
          button {
            position: relative;
            top: -1px;
            width: 18px;
            height: 18px;
          }
        }
      }
    }
  }

  @media (max-width: 700px) {
    padding: 25px 25px 0;

    .content-wrapper {
      flex-direction: column-reverse;
      gap: 35px;

      .content {
        width: 100%;

      }

      .image {
        width: 100%;
      }
    }
  }
}

section.image-slider {
  padding: 15px 0 35px;

  .swiper-container {
    cursor: url('media/cursor-arrow.png') 16 16, auto;
  }

  .swiper-slide {
    .slide-wrapper {
      aspect-ratio: 1.5;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }


  }

  .swiper-scrollbar {
    width: 85%;
    max-width: 500px;
    position: relative;
    margin: 45px auto 15px;
  }

  @media (max-width: 1000px) {
    padding: 15px 0;

    .swiper-scrollbar {
      margin-top: 25px;
    }
  }
}

section.text-quote {
  padding: 85px 65px;

  .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;

    .content {
      width: 65%;
    }

    .quote {
      width: 35%;
      position: relative;

      img {
        position: absolute;
        top: -65px;
        left: -65px;
        z-index: 0;
      }

      h3 {
        position: relative;
        z-index: 1;
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 85px 45px;

    .content-wrapper {
      gap: 65px;
    }
  }

  @media (max-width: 800px) {
    padding: 65px 25px;

    .content-wrapper {
      flex-direction: column;

      .content {
        width: 100%;
      }

      .quote {
        width: 100%;
        margin: 0 auto;

        img {
          width: 80px;
          top: -35px;
          left: -45px;
        }
      }
    }
  }

  @media (max-width: 400px) {
    .content-wrapper {
      .quote {

        img {
          width: 55px;
          top: -25px;
          left: -35px;
        }
      }
    }
  }
}

section.overview {
  position: relative;
  padding: 85px 65px;

  .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;

    h2 {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    p {
      text-align: center;
      position: relative;
      z-index: 1;
    }
  }

  img.dots {
    position: absolute;
    bottom: 0;
    left: -135px;
    z-index: 0;
  }

  @media (max-width: 1400px) {
    img.dots {
      width: 245px;
      left: -85px;
    }
  }

  @media (max-width: 1000px) {
    padding: 45px 25px;

    img.dots {
      display: none;
    }
  }

}

section.general-content {
  padding: 65px;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;

  }

  @media (max-width: 1000px) {
    padding: 45px 45px;
  }

  @media (max-width: 800px) {
    padding: 45px 25px;
  }
}

section.two-column-links {
  padding: 85px 65px;

  .content-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 100px;

    .content {
      width: 50%;
    }

    .links {
      width: 50%;

      h5 {
        margin-bottom: 25px;
      }

      .links-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 45px;
      }
    }
  }

  @media (max-width: 1200px) {
    padding: 65px 65px 65px 45px;

    .content-wrapper {
      gap: 25px;
      flex-direction: column;

      .content {
        width: 100%;
      }

      .links {
        width: 100%;

        .links-wrapper {
          grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);

        }
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 45px 25px;

    .content-wrapper {
      .links {
        .links-wrapper {
          grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        }
      }
    }
  }

  @media (max-width: 500px) {

    .content-wrapper {
      .links {
        .links-wrapper {
          grid-template-columns: minmax(0, 1fr);
        }
      }
    }
  }
}

section.heading-text-grid {
  padding: 85px 65px;

  .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    .heading {
      text-align: center;
      margin-bottom: 85px;

      h2 {
        margin-bottom: 15px;
      }
    }

    .repeater-content {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
      gap: 50px 85px;

      .content {
        h5 {
          margin-bottom: 5px;
        }
      }
    }
  }

  @media (max-width: 1200px) {
    padding: 85px 45px;

    .content-wrapper {
      .heading {
        margin-bottom: 55px;
      }

      .repeater-content {
        gap: 35px 45px;
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 65px 45px;

    .content-wrapper {
      .repeater-content {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }
    }
  }

  @media (max-width: 800px) {
    padding: 45px 25px;

    .content-wrapper {
      .repeater-content {
        gap: 25px 35px;
      }
    }
  }

  @media (max-width: 600px) {

    .content-wrapper {
      .heading {
        margin-bottom: 40px;
      }

      .repeater-content {
        grid-template-columns: minmax(0, 1fr);
      }
    }
  }
}

section.testimonial-slider-gray {
  background-color: var(--color-lightgray);
  padding: 85px 65px 65px;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;

    .swiper-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
    }

    .slide-wrapper {
      display: flex;
      align-items: center;
      gap: 65px;

      .image {
        width: 40%;

        img {
          width: 100%;
        }
      }

      .content {
        width: 60%;

        h6 {
          color: var(--color-darkgray);
        }
      }
    }

    .swiper-button-prev {
      left: 0;
      color: var(--color-blue);
    }

    .swiper-button-next {
      right: 0;
      color: var(--color-blue);
    }

    .testimonial-gray-swiper-scrollbar {
      position: relative;
      width: 50%;
      max-width: 900px;
      margin: 65px auto 0;
      background: white;
    }
  }



  @media (max-width: 1400px) {
    padding: 65px 45px;
  }

  @media (max-width: 1200px) {
    padding: 65px 25px;

    .content-wrapper {
      .slide-wrapper {
        gap: 35px;

        .image {
          width: 33.33%;
        }

        .content {
          width: 66.66%;

          p {
            font-size: 14px;
          }
        }
      }
    }
  }

  @media (max-width: 800px) {
    padding: 45px 25px;

    .content-wrapper {
      .swiper-container {
        width: 100%;
      }

      .slide-wrapper {
        flex-direction: column;

        .image {
          width: 100%;

          img {
            max-width: 400px;
            margin: 0 auto;
            display: block;
          }
        }

        .content {
          width: 100%;
        }
      }

      .testimonial-gray-swiper-scrollbar {
        width: 100%;
        margin-top: 25px;
      }

      .swiper-button-prev,
      .swiper-button-next {
        display: none;
      }
    }
  }
}

section.testimonial-slider-white {
  padding: 85px 65px 65px;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;

    .swiper-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
    }

    .slide-wrapper {
      display: flex;
      align-items: center;
      gap: 65px;

      .image {
        width: 40%;

        img {
          width: 100%;
        }
      }

      .content {
        width: 60%;

        h6 {
          color: var(--color-darkgray);
        }
      }
    }

    .swiper-button-prev {
      left: 0;
      color: var(--color-blue);
    }

    .swiper-button-next {
      right: 0;
      color: var(--color-blue);
    }

    .testimonial-white-swiper-scrollbar {
      position: relative;
      width: 50%;
      max-width: 900px;
      margin: 65px auto 0;
    }
  }

  @media (max-width: 1400px) {
    padding: 65px 45px;
  }

  @media (max-width: 1200px) {
    padding: 65px 25px;

    .content-wrapper {
      .slide-wrapper {
        gap: 35px;

        .image {
          width: 33.33%;
        }

        .content {
          width: 66.66%;

          p {
            font-size: 14px;
          }
        }
      }
    }
  }

  @media (max-width: 800px) {
    padding: 45px 25px;

    .content-wrapper {
      .swiper-container {
        width: 100%;
      }

      .slide-wrapper {
        flex-direction: column;

        .image {
          width: 100%;

          img {
            max-width: 400px;
            margin: 0 auto;
            display: block;
          }
        }

        .content {
          width: 100%;
        }
      }

      .testimonial-white-swiper-scrollbar {
        width: 100%;
        margin-top: 25px;
      }

      .swiper-button-prev,
      .swiper-button-next {
        display: none;
      }
    }
  }
}

section.three-card-grid {
  padding: 85px 65px;

  .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    .heading {
      text-align: center;
      margin-bottom: 65px;

      h2 {
        margin-bottom: 15px;
      }

      .text {
        max-width: 750px;
        margin: 0 auto;
      }
    }

    .grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
      gap: 20px;

      a {
        aspect-ratio: 1;
        position: relative;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end;
        padding: 45px;

        &amp;:before {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.4);
          z-index: 1;
        }

        &amp;:hover {
          .content {
            p.btn {
              &amp;:after {
                margin-left: 20px;
              }
            }
          }
        }

        .content {
          position: relative;
          z-index: 2;

          p {
            margin-bottom: 0;
          }
        }
      }
    }
  }

  img.dots {
    position: absolute;
    top: 150px;
    right: -85px;
    z-index: -1;
  }

  @media (max-width: 1400px) {
    img.dots {
      top: 150px;
      right: -115px;
      width: 250px;
    }
  }

  @media (max-width: 1200px) {
    padding: 65px 45px;

    .content-wrapper {
      .heading {
        margin-bottom: 45px;
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 45px 25px;

    .content-wrapper {
      .heading {
        margin-bottom: 45px;
      }

      .grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }
    }
  }

  @media (max-width: 800px) {
    .content-wrapper {
      .grid {
        a {
          padding: 25px;
        }
      }
    }

    img.dots {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .content-wrapper {
      .grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }
  }
}

section.four-card-grid {
  padding: 85px 65px;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;

    .heading {
      text-align: center;
      margin-bottom: 65px;

      h2 {
        margin-bottom: 15px;
      }

      .text {
        max-width: 750px;
        margin: 0 auto;
      }
    }

    .grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
      gap: 20px;

      a {
        aspect-ratio: 1;
        position: relative;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end;
        padding: 45px;

        &amp;:before {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.4);
          z-index: 1;
        }

        &amp;:hover {
          .content {
            p.btn {
              &amp;:after {
                margin-left: 20px;
              }
            }
          }
        }

        .content {
          position: relative;
          z-index: 2;

          p {
            margin-bottom: 0;
          }
        }
      }
    }
  }

  img.dots {
    position: absolute;
    top: 150px;
    right: -85px;
    z-index: -1;
  }

  @media (max-width: 1400px) {
    .content-wrapper {
      .grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
      }
    }

    img.dots {
      top: 150px;
      right: -115px;
      width: 250px;
    }
  }

  @media (max-width: 1200px) {
    padding: 65px 45px;

    .content-wrapper {
      .heading {
        margin-bottom: 45px;
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 45px 25px;

    .content-wrapper {
      .heading {
        margin-bottom: 45px;
      }

      .grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }
    }
  }

  @media (max-width: 800px) {
    .content-wrapper {
      .grid {
        a {
          padding: 25px;
        }
      }
    }

    img.dots {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .content-wrapper {
      .grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }
  }
}

section.three-card-content {
  padding: 85px 65px;
  position: relative;

  .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;

    .grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
      gap: 20px;

      .card {
        background-color: var(--color-aqua);
        padding: 85px 65px;
      }
    }
  }

  img.left {
    position: absolute;
    top: 45px;
    left: -165px;
    z-index: -1;
  }

  img.right {
    position: absolute;
    bottom: 0;
    right: -155px;
    z-index: -1;
  }

  @media (max-width: 1400px) {
    .content-wrapper {
      .grid {
        .card {
          padding: 65px 35px;
        }
      }
    }
  }

  @media (max-width: 1200px) {
    padding: 65px 25px;
  }

  @media (max-width: 1000px) {
    padding: 45px 25px;

    .content-wrapper {
      .grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }
  }

  @media (max-width: 600px) {
    img.left {
      display: none;
    }

    img.right {
      display: none;
    }
  }
}

section.embed {
  padding: 85px 65px;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;

    h2 {
      text-align: center;
    }
  }

  @media (max-width: 1000px) {
    padding: 65px 45px;
  }

  @media (max-width: 800px) {
    padding: 45px 25px;
  }
}

section.two-column-content {
  padding: 85px 65px;
  background-color: var(--color-aqua);

  .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;

    .content {
      width: 55%;

      p {
        color: white;
      }
    }

    .details {
      width: 55%;

      h2,
      h3,
      h4,
      h5,
      h6,
      p,
      a {
        color: white;
      }

      em {
        font-size: 14px;
        line-height: 16px;
      }
    }
  }

  @media (max-width: 1200px) {
    padding: 65px;

    .content-wrapper {
      gap: 35px;
    }
  }

  @media (max-width: 800px) {
    padding: 45px 45px;

    .content-wrapper {
      flex-direction: column;
      gap: 45px;

      .content,
      .details {
        width: 100%;
      }
    }
  }

}

section.news-post-grid {
  .grid-container {
    gap: 65px 65px;

    .card {
      a.media {
        display: block;
        aspect-ratio: 1;
        background-size: cover;
        background-position: center;
      }

      .content {
        padding: 25px 10px;

        p.btn {
          margin: 0;
        }
      }

      &amp;:nth-of-type(n+17) {
        display: none;
      }
    }
  }

  .button-wrapper {
    display: flex;
    justify-content: center;
    button {
      margin-top: 65px;
      

    }
    button.hidden {
      display: none;
    }
  }

  @media (max-width: 1600px) {
    .grid-container {
      gap: 45px 25px;
    }
  }


  @media (max-width: 1000px) {
    padding-top: 45px;

    .grid-container {
      gap: 35px 20px;
    }
  }

  @media (max-width: 800px) {
    padding-top: 0;
  }


  @media (max-width: 600px) {
    .grid-container {
      gap: 25px 25px;
    }
  }
}

section.counters {
  margin-top: -150px;
  padding: 0 65px 85px;

  .counters-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    gap: 100px;

    .single-counter {
      .number-wrapper {
        position: relative;
        margin-bottom: 45px;

        img {
          width: 100%;
        }

        h2 {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          margin: 0;
        }
      }

      h5 {
        text-align: center;
      }

    }
  }

  @media (max-width: 1400px) {

    .counters-wrapper {
      max-width: 1000px;
      gap: 65px;
    }
  }

  @media (max-width: 1000px) {
    margin-top: 0;
    padding: 0 25px 65px;

    .counters-wrapper {
      gap: 25px;

      .single-counter {
        .number-wrapper {
          margin-bottom: 25px;
        }
      }
    }
  }

  @media (max-width: 800px) {
    padding: 0 15px 65px;

    .counters-wrapper {
      gap: 20px;

      .single-counter {
        .number-wrapper {
          h2 {
            font-size: 24px;
          }
        }

        h5 {
          font-size: 16px;
          line-height: 22px;
        }
      }
    }
  }

  @media (max-width: 500px) {
    .counters-wrapper {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 45px;
    }
  }


}

section.media-cards {
  background-size: auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 85px 65px 95px 65px;


  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;

    .heading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 45px;
      margin-bottom: 65px;

      h3 {
        margin: 0;

      }

      h5 {
        margin: 0;
        transition: 0.4s;

        &amp;:hover {
          color: var(--color-aqua);
        }
      }
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(var(--grid-cols, 1), minmax(0, 1fr));
      justify-content: center;
      gap: 20px;

      a.card {
        aspect-ratio: 1;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 45px;
        position: relative;

        &amp;:before {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.4);
          z-index: 1;
        }

        &amp;:hover {
          p.btn {
            &amp;:after {
              margin-left: 20px;
            }
          }
        }

        .content {
          position: relative;
          z-index: 2;

          p.btn {
            color: white;
            margin: 0;

          }
        }
      }
    }

    .block {
      background-color: var(--color-aqua);
      padding: 65px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      max-width: 1200px;
      margin: 75px auto 0;

      h2 {
        margin-bottom: 25px;
      }

      .text {
        max-width: 900px;
        margin: 0 auto;

        p {
          color: white;
          text-align: center;
        }
      }
    }
  }

  @media (max-width: 1400px) {
    padding: 65px 45px 65px 45px;
    background-size: cover;

    .content-wrapper {
      .heading {
        margin-bottom: 45px;
      }

      .grid {
        a.card {
          padding: 25px;
        }
      }

      .block {
        margin-top: 55px;
      }
    }
  }

  @media (max-width: 1200px) {
    padding: 55px 35px 55px 35px;

    .content-wrapper {
      .grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

        a.card {
          padding: 25px;
        }
      }
    }
  }

  @media (max-width: 800px) {
    padding: 55px 25px 45px;

    .content-wrapper {
      .heading {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;


      }

      .block {
        padding: 45px;

        h2 {
          text-align: center;
        }
      }
    }
  }

  @media (max-width: 600px) {

    .content-wrapper {
      .heading {
        a {
          h5 {
            font-size: 16px;
          }
        }
      }

      .grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .block {
        padding: 25px;
      }
    }
  }
}

section.dot-banner {
  padding: 125px 65px;
  position: relative;

  .content {
    position: relative;
    background-color: var(--color-aqua);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 65px;

    h2 {
      text-align: center;
      text-transform: none;
      margin-bottom: 35px;
    }

    .text {
      max-width: 550px;
      margin: 0 auto;

      p {
        text-align: center;
        color: white;
      }
    }


  }

  img.background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1000px;
  }

  @media (max-width: 800px) {
    padding: 85px 25px;

    .content {
      padding: 45px 25px;
      max-width: 550px;

      h2 {
        margin-bottom: 15px;
      }
    }

    img.background-image {
      height: 90%;
      width: auto;
    }
  }
}

section.text-image-lightbox {
  padding: 100px 65px;

  .content-wrapper {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 125px;

    .content {
      width: 50%;
    }

    .image {
      width: 50%;

      img {
        width: 100%;

        &amp;:hover {
          cursor: pointer;
        }
      }
    }
  }

  @media (max-width: 1200px) {
    padding: 85px 45px;

    .content-wrapper {
      gap: 65px;
    }
  }

  @media (max-width: 800px) {
    padding: 65px 45px;

    .content-wrapper {
      flex-direction: column-reverse;
      justify-content: center;
      align-items: center;

      .content {
        width: 100%;
        max-width: 550px;
      }

      .image {
        width: 100%;

        img {
          max-width: 550px;
          display: block;
          margin: 0 auto;
        }
      }
    }
  }
}

section.image-text-banner {
  padding: 45px 0;
  position: relative;

  img.graphic {
    position: absolute;
    top: -150px;
    right: -250px;
  }

  .content-wrapper {
    display: flex;
    align-items: center;
    gap: 135px;

    .media {
      width: 45%;
      position: relative;

      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: right center;

        &amp;.mobile {
          display: none;
        }
      }
    }

    .content {
      width: 55%;
      padding-right: 65px;

      h2 {
        max-width: 650px;
      }

      p {
        max-width: 500px;
      }
    }
  }



  @media (max-width: 1400px) {
    img.graphic {
      top: -20px;
      right: -150px;
      max-width: 300px;
    }
  }


  @media (max-width: 1200px) {
    .content-wrapper {
      gap: 45px;

      .content {
        padding-right: 45px;
      }
    }
  }

  @media (max-width: 1000px) {
    .graphic {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .content-wrapper {
      flex-direction: column;
      gap: 45px;

      .media {
        width: 100%;

        img.desktop {
          display: none;
        }

        img.mobile {
          display: block;
          width: 95%;
          max-width:
        }

        button {
          right: unset;
          left: 18%;
          bottom: 32%;
        }
      }

      .content {
        width: 100%;
        padding: 0 45px;
      }
    }
  }
}

section.industry-numbers {
  padding: 85px 65px;
  position: relative;

  img.graphic {
    position: absolute;
    left: -165px;
    bottom: 15px;
    z-index: -1;
  }

  .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 85px;

    .content {
      flex-grow: 1;
      max-width: calc(100% - 575px);

      .text {
        max-width: 500px;
      }
    }

    .image {
      width: 575px;
      flex-shrink: 0;
      position: relative;


      img {
        width: 575px;
      }

      .stats-wrapper {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 130px;
        left: 80px;
        max-width: 300px;

        h3 {
          color: white;
          text-align: center;
        }

        .stat-single {
          display: flex;
          gap: 15px;
          color: white;
          justify-content: center;
          align-items: center;

          h2 {
            color: white;
            margin: 0;
          }

          h5 {
            color: white;
            margin: 0;
          }
        }
      }
    }
  }

  @media (max-width: 1400px) {
    .content-wrapper {
      .content {
        max-width: calc(100% - 475px);
      }

      .image {
        width: 475px;

        img {
          width: 475px;
        }

        .stats-wrapper {
          left: 44px;
        }
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 65px 45px;

    img.graphic {
      display: none;
    }

    .content-wrapper {
      gap: 65px;

      .content {
        max-width: calc(100% - 375px);
      }

      .image {
        width: 375px;

        img {
          width: 375px;
        }

        .stats-wrapper {
          left: 7px;
          top: 97px;

          .stat-single {
            gap: 10px;
          }
        }
      }
    }
  }

  @media (max-width: 800px) {
    padding: 65px 45px;

    .content-wrapper {
      gap: 25px;

      .content {
        max-width: calc(100% - 330px);
      }

      .image {
        width: 330px;


        img {
          width: 330px;
        }

        .stats-wrapper {
          top: 87px;
          left: 15px;
          max-width: 250px;
        }
      }
    }

  }

  @media (max-width: 600px) {
    padding: 45px 45px;

    .content-wrapper {
      flex-direction: column-reverse;
      justify-content: center;
      align-items: center;
      gap: 35px;

      .content {
        width: 100%;
        max-width: none;
      }

      .image {
        width: 350px;

        img {
          max-width: none;
          width: 350px;
          margin: 0 auto;
          display: block;
        }

        .stats-wrapper {
          top: 97px;
          left: 23px;
        }
      }
    }
  }

  @media (max-width: 400px) {
    &amp; .content-wrapper {
      &amp; .image {
        width: 320px;

        &amp; img {
          width: 320px;
        }

        .stats-wrapper {
          top: 84px;
          left: 7px;
        }
      }
    }
  }
}

section.offset-slider {
  position: relative;
  margin: 85px 0;
  padding: 0 65px 85px;

  &amp;:after {
    content: '';
    display: block;
    position: absolute;
    height: 600px;
    background-color: var(--color-blue);
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    cursor: url('media/cursor-teal.png') 16 16, auto;


    .slide-wrapper {
      a {
        cursor: url('media/cursor-teal.png') 16 16, auto;
      }

      a.media {
        aspect-ratio: 1.8;
        display: block;
        margin-bottom: 35px;

        img {
          position: relative;
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
        }
      }
    }
  }

  .swiper-scrollbar {
    .swiper-scrollbar-drag {
      background-color: var(--color-aqua);
    }
  }

  @media (max-width: 1000px) {
    padding: 0 45px 85px;
  }

  @media (max-width: 800px) {
    padding: 0 25px 65px;

    &amp;:after {
      height: 500px;
    }
  }
}

section.timeline {
  padding: 85px 65px;

  .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 35px;

    .main-wrapper {
      position: relative;

      img.gray-bars {
        position: absolute;
        top: -25px;
        left: -100px;
      }

      .card {
        background-color: var(--color-blue);
        display: flex;
        padding: 85px 65px 85px 0;
        position: relative;
        display: none;
        gap: 45px;

        &amp;.active {
          display: flex;
        }

        .media {
          width: 33.33%;

          img {
            position: absolute;
            top: -65px;
            left: -65px;
            max-width: 400px;
          }

          button {
            position: absolute;
            top: 235px;
          }
        }

        .content {
          width: 66.66%;

          p {
            color: white;
          }
        }
      }
    }


    .list-wrapper {
      p {
        margin: 0 0 15px;
        color: #808285;
        position: relative;
        white-space: nowrap;

        img {
          display: none;
        }

        &amp;:hover {
          cursor: pointer;
        }

        &amp;.active {
          color: var(--color-blue);

          img {
            display: block;
            position: absolute;
            left: -20px;
            top: 7px;
          }
        }
      }
    }
  }

  .mobile {
    display: none;
    position: relative;

    img.gray-bars {
      position: absolute;
      width: 200px;
      top: 25px;
      left: 30%;
      transform: translateX(-50%);
    }

    .slide-wrapper {
      max-width: 400px;
      margin: 0 auto;

      .media {
        position: relative;
        display: block;
        margin: 0 auto;
        max-width: 300px;

        img {
          width: 100%;
        }

        button {
          position: absolute;
          left: 35px;
          bottom: 20px;
        }
      }

      .content {
        background-color: var(--color-blue);
        padding: 100px 25px 45px;
        position: relative;
        margin-top: -75px;
        z-index: -1;

        p {
          color: white;
        }
      }
    }

    .timeline-slider-scrollbar {
      position: relative;
      width: 90%;
      max-width: 400px;
      margin: 30px auto 0;
    }
  }

  @media (max-width: 1400px) {
    .content-wrapper {
      .main-wrapper {
        .card {
          .media {
            width: 40%;

            img {
              max-width: 350px;
              left: -35px;
            }

            button {
              top: 185px;
            }
          }

          .content {
            width: 60%;
          }
        }
      }
    }
  }

  @media (max-width: 1000px) {
    padding: 65px 45px;

    .content-wrapper {
      .main-wrapper {
        .card {
          padding: 45px 45px 45px 0;

          .media {
            width: 45;

            img {
              max-width: 300px;
              left: -35px;
            }

            button {
              top: 155px;
            }
          }

          .content {
            width: 55%;
          }
        }
      }
    }
  }

  @media (max-width: 800px) {
    padding: 45px 25px;

    .desktop {
      display: none;
    }

    .mobile {
      display: block;
    }
  }
}

section.form-embed {
  padding: 0 65px 65px;
  margin-top: -165px;

  .content-wrapper {
    max-width: 600px;
    margin: 0 auto;

    .gform_fields {
      gap: 20px;
    }

    .gform_title {
      display: none;
    }

    label {
      font-family: 'Superclarendon', sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: #454545;
    }

    input,
    select,
    textarea {
      background-color: var(--color-lightgray);
      border: none;
      border-radius: 0;
      font-family: 'Superclarendon', sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: #454545;
      min-height: 50px;
      box-shadow: none;

      option {
        font-family: 'Superclarendon', sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #454545;
      }
    }

    .gform-footer {
      display: flex;
      justify-content: center;

      input.gform_button {
        font-family: 'bicyclette', serif !important;
        color: var(--color-blue) !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        border: none !important;
        background: none !important;
        text-transform: uppercase !important;
        box-shadow: none !important;

        &amp;:focus {
          outline: none !important;
        }
      }


    }

    .validation_message {
      font-family: 'Superclarendon', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: red;
    }

    .gform_confirmation_message {
      font-family: 'Superclarendon', sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: var(--color-aqua);
      background-color: var(--color-lightgray);
      border: solid 1px var(--color-gray);
      text-align: center;
      padding: 25px 65px;
    }

    .gfield_required {
      display: none;
    }
  }

  @media (max-width: 1000px) {
    padding: 0 45px 65px;
    margin-top: 0;
  }

  @media (max-width: 800px) {
    padding: 0 25px 45px;
    margin-top: 0;
  }
}</pre></body></html>