/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[4]!./assets/scss/main.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************/
/*Node*/
/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: 200ms transform, 200ms top;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
    &:before {
      content: "";
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

/* Flip slide shadows end */
.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/*Base*/
:root {
  --ff-base: "canada-type-gibson", sans-serif;
  --fw-extra-light: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi: 600;
  --fw-bold: 700;
  --fw-extra: 800;
  --fw-heavy: 900;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-blue: #0090c3;
  --color-medium-blue: #3b698b;
  --color-dark-blue: #313843;
  --color-lightest-grey: #f7f7f8;
  --color-red: #fe0000;
  --color-light-grey: #ebeced;
  --color-grey: #364153;
  --color-dark-grey: #a2a6a9;
  --color-off-black: #21252b;
  --gutter-xxxsmall: 8px;
  --gutter-xxsmall: 16px;
  --gutter-xsmall: 24px;
  --gutter-small: 32px;
  --gutter-medium: 64px;
  --gutter-large: 96px;
  --gutter-xlarge: 192px;
  --transition: 250ms;
  --admin-bar: 0px;
}

.bg-black {
  background: var(--color-black);
}

.fc-black {
  color: var(--color-black) !important;
}

.bg-white {
  background: var(--color-white);
}

.fc-white {
  color: var(--color-white) !important;
}

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

.fc-blue {
  color: var(--color-blue) !important;
}

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

.fc-medium-blue {
  color: var(--color-medium-blue) !important;
}

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

.fc-dark-blue {
  color: var(--color-dark-blue) !important;
}

.bg-lightest-grey {
  background: var(--color-lightest-grey);
}

.fc-lightest-grey {
  color: var(--color-lightest-grey) !important;
}

.bg-red {
  background: var(--color-red);
}

.fc-red {
  color: var(--color-red) !important;
}

.bg-light-grey {
  background: var(--color-light-grey);
}

.fc-light-grey {
  color: var(--color-light-grey) !important;
}

.bg-grey {
  background: var(--color-grey);
}

.fc-grey {
  color: var(--color-grey) !important;
}

.bg-dark-grey {
  background: var(--color-dark-grey);
}

.fc-dark-grey {
  color: var(--color-dark-grey) !important;
}

.bg-off-black {
  background: var(--color-off-black);
}

.fc-off-black {
  color: var(--color-off-black) !important;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--ff-base);
  background: var(--color-white);
  color: var(--color-off-black);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: 1.8rem;
  line-height: 28.8px;
  font-weight: var(--fw-regular);
}

button {
  font-family: var(--ff-base);
  font-size: 1.8rem;
  line-height: 28.8px;
  font-weight: var(--fw-regular);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  position: relative;
  font-variant-numeric: lining-nums proportional-nums;
}
h1 + p:first-of-type,
h2 + p:first-of-type,
h3 + p:first-of-type,
h4 + p:first-of-type,
h5 + p:first-of-type,
h6 + p:first-of-type {
  margin-top: 16px;
}

h1,
.h1 {
  font-size: 4rem;
  line-height: 50px;
  font-weight: var(--fw-light);
}
@media screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 5rem;
    line-height: 62.5px;
  }
}

h2,
.h2 {
  font-size: 3.2rem;
  line-height: 40px;
  font-weight: var(--fw-medium);
}
@media screen and (min-width: 768px) {
  h2,
  .h2 {
    font-size: 4rem;
    line-height: 50px;
  }
}

h3,
.h3 {
  font-size: 2.4rem;
  line-height: 30px;
  font-weight: var(--fw-regular);
}
@media screen and (min-width: 768px) {
  h3,
  .h3 {
    font-size: 3.2rem;
    line-height: 40px;
  }
}

h4,
.h4 {
  font-size: 2rem;
  line-height: 27.2px;
  font-weight: var(--fw-regular);
}
@media screen and (min-width: 768px) {
  h4,
  .h4 {
    font-size: 2.6rem;
    line-height: 35.36px;
  }
}

h5,
.h5 {
  font-size: 1.8rem;
  line-height: 24.48px;
  font-weight: var(--fw-regular);
}
@media screen and (min-width: 768px) {
  h5,
  .h5 {
    font-size: 2rem;
    line-height: 27.2px;
  }
}

h6,
.h6 {
  font-size: 1.4rem;
  line-height: 17.5px;
  font-weight: var(--fw-semi);
}

.subheader {
  font-size: 2rem;
  line-height: 27.2px;
  font-weight: var(--fw-regular);
}

.p1 {
  font-size: 1.8rem;
  line-height: 28.8px;
  font-weight: var(--fw-regular);
}

.p2 {
  font-size: 1.6rem;
  line-height: 25.6px;
  font-weight: var(--fw-regular);
}

.p3 {
  font-size: 1.6rem;
  line-height: 25.6px;
  font-weight: var(--fw-medium);
}

p {
  margin: 16px 0px 0px 0px;
}
p:first-child {
  margin-top: 0px;
}
p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
  margin-top: 32px;
}
p a {
  color: var(--color-blue);
  transition: var(--transition);
}
p a:hover {
  color: var(--color-dark-blue);
}

strong {
  font-weight: var(--fw-medium);
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  padding-top: 94px;
}
@media screen and (min-width: 1025px) {
  body {
    padding-top: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.admin-bar {
  --admin-bar: 32px;
}

.site-main {
  position: relative;
  z-index: 0;
}

.module {
  position: relative;
  width: 100%;
  background: var(--module-background-color);
  color: var(--module-font-color);
}

.container {
  position: relative;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 32px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0px 64px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    padding: 0px 220px;
  }
}

.button {
  display: inline-block;
}
.button.default {
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  background: unset;
  padding: 0;
  position: relative;
  overflow: hidden;
  padding: 12px 24px;
  border-radius: 5px;
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
  font-weight: var(--fw-medium);
  font-size: 1.6rem;
  line-height: 20px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .button.default {
    width: unset;
    min-width: -moz-min-content;
    min-width: min-content;
    padding: 12px 32px;
  }
}
.button.default::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--color-blue);
  transition: height var(--transition) ease;
  z-index: 0;
}
.button.default:hover {
  color: var(--color-white);
}
.button.default:hover::before {
  height: 100%;
}
.button.default span {
  position: relative;
  z-index: 1;
}
.button.read-more {
  font-size: 1.6rem;
  line-height: 20px;
  letter-spacing: 1.12px;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  position: relative;
  padding-right: 20px;
  transition: var(--transition);
  white-space: nowrap;
}
.button.read-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 11px;
  transform: translateY(-50%);
  background: url("../images/arrow-right.svg") no-repeat center;
  background-size: contain;
  transition: var(--transition);
}
.button.read-more.arrow-white::after {
  background: url("../images/arrow-right-white.svg") no-repeat center;
}
.button.read-more:hover::after {
  transform: translateY(-50%) translateX(8px);
}

.module {
  padding-top: var(--module-mobile-padding-top);
  padding-bottom: var(--module-mobile-padding-bottom);
}
@media screen and (min-width: 768px) {
  .module {
    padding-top: var(--module-tablet-padding-top);
    padding-bottom: var(--module-tablet-padding-bottom);
  }
}
@media screen and (min-width: 1025px) {
  .module {
    padding-top: var(--module-desktop-padding-top);
    padding-bottom: var(--module-desktop-padding-bottom);
  }
}

.module {
  margin-top: var(--module-mobile-margin-top);
  margin-bottom: var(--module-mobile-margin-bottom);
}
@media screen and (min-width: 768px) {
  .module {
    margin-top: var(--module-tablet-margin-top);
    margin-bottom: var(--module-tablet-margin-bottom);
  }
}
@media screen and (min-width: 1025px) {
  .module {
    margin-top: var(--module-desktop-margin-top);
    margin-bottom: var(--module-desktop-margin-bottom);
  }
}

/*Single Components*/
/*Multi Components*/
/*Modules*/
.module-flexible-content .inner {
  max-width: var(--custom-width);
  margin: 0 auto;
}

.module-post-grid {
  background: var(--color-lightest-grey);
}
.module-post-grid .featured-card .featured-card-badge {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 24px;
  border-radius: 999px;
  background: var(--color-medium-blue);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.24px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .module-post-grid .featured-card .featured-card-badge {
    width: unset;
  }
}
.module-post-grid .featured-card article {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
}
.module-post-grid .featured-card .featured-card-image {
  display: block;
  width: 100%;
  height: 116px;
  overflow: hidden;
}
@media screen and (min-width: 480px) {
  .module-post-grid .featured-card .featured-card-image {
    height: 370px;
  }
}
.module-post-grid .featured-card .featured-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.module-post-grid .featured-card .featured-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .module-post-grid .featured-card .featured-card-body {
    padding: 32px;
  }
}
.module-post-grid .featured-card .featured-card-body .card-meta {
  padding-bottom: 8px;
}
.module-post-grid .featured-card .featured-card-body .card-excerpt {
  padding-top: 16px;
}
.module-post-grid .featured-card .featured-card-body .card-footer {
  padding-top: 32px;
}
.module-post-grid .featured-card .featured-card-excerpt {
  margin: 0;
}
.module-post-grid .featured-card + .grid-filters {
  margin-top: 90px;
}
.module-post-grid .featured-card + .card-grid {
  margin-top: 90px;
}
.module-post-grid .grid-filters {
  margin-bottom: 32px;
}
.module-post-grid .grid-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.module-post-grid .grid-filter {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: var(--color-white);
  color: var(--color-off-black);
  cursor: pointer;
  transition: var(--transition);
}
.module-post-grid .grid-filter:hover {
  color: var(--color-white);
  background: var(--color-dark-grey);
}
.module-post-grid .grid-filter.is-active {
  background: var(--color-off-black);
  color: var(--color-white);
}
.module-post-grid .card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .module-post-grid .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.module-post-grid .card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  transition: color var(--transition);
}
.module-post-grid .card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--color-dark-blue);
  transition: height var(--transition) ease;
  z-index: 0;
}
.module-post-grid .card:hover, .module-post-grid .card:focus, .module-post-grid .card:active {
  color: var(--color-white);
}
.module-post-grid .card:hover::before, .module-post-grid .card:focus::before, .module-post-grid .card:active::before {
  height: 100%;
}
.module-post-grid .card:hover .card-meta,
.module-post-grid .card:hover .card-category,
.module-post-grid .card:hover .card-date,
.module-post-grid .card:hover .card-excerpt,
.module-post-grid .card:hover .button.read-more, .module-post-grid .card:focus .card-meta,
.module-post-grid .card:focus .card-category,
.module-post-grid .card:focus .card-date,
.module-post-grid .card:focus .card-excerpt,
.module-post-grid .card:focus .button.read-more, .module-post-grid .card:active .card-meta,
.module-post-grid .card:active .card-category,
.module-post-grid .card:active .card-date,
.module-post-grid .card:active .card-excerpt,
.module-post-grid .card:active .button.read-more {
  color: var(--color-white);
}
.module-post-grid .card:hover .button.read-more::after, .module-post-grid .card:focus .button.read-more::after, .module-post-grid .card:active .button.read-more::after {
  background-image: url("../images/arrow-right-white.svg");
  transform: translateY(-50%) translateX(8px);
}
.module-post-grid .card:hover .card-icon svg,
.module-post-grid .card:hover .card-meta-icon svg, .module-post-grid .card:focus .card-icon svg,
.module-post-grid .card:focus .card-meta-icon svg, .module-post-grid .card:active .card-icon svg,
.module-post-grid .card:active .card-meta-icon svg {
  filter: brightness(0) invert(1);
}
.module-post-grid .card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .module-post-grid .card-inner {
    padding-right: 94px;
  }
}
.module-post-grid .card-has-image .card-inner {
  padding-right: 32px;
}
.module-post-grid .card-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.module-post-grid .card-top-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.module-post-grid .card-image {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  border-radius: 8px;
  overflow: hidden;
  display: none;
}
@media screen and (min-width: 768px) {
  .module-post-grid .card-image {
    display: block;
  }
}
.module-post-grid .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.module-post-grid .card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 25.6px;
  font-weight: var(--fw-regular);
}
.module-post-grid .card-meta span,
.module-post-grid .card-meta time {
  color: var(--color-blue);
  transition: var(--transition);
}
.module-post-grid .card-meta .card-meta-icon {
  margin-right: 4px;
}
.module-post-grid .card-meta .card-category {
  margin-right: 24px;
}
.module-post-grid .card-meta-icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.module-post-grid .card-meta-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: var(--transition);
}
.module-post-grid .card-excerpt {
  margin: 0;
  transition: var(--transition);
}
.module-post-grid .card-icon {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: none;
}
@media screen and (min-width: 768px) {
  .module-post-grid .card-icon {
    display: block;
  }
}
.module-post-grid .card-icon svg {
  width: 30px;
  height: auto;
  display: block;
  transition: filter var(--transition);
}

.module-content-columns .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media screen and (min-width: 1025px) {
  .module-content-columns .inner {
    grid-template-columns: 380px 510px;
    gap: 110px;
  }
}
.module-content-columns .inner .col {
  position: relative;
}
.module-content-columns .inner .col:first-child::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-dark-grey);
  position: absolute;
  bottom: -24px;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .module-content-columns .inner .col:first-child::after {
    left: unset;
    bottom: unset;
    width: 1px;
    height: calc(100% - 20px);
    right: -55px;
    top: 10px;
  }
}

.module-featured-cards .inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.module-featured-cards .featured-cards-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.module-featured-cards .featured-card {
  background: var(--color-lightest-grey);
  border-radius: 10px;
  overflow: hidden;
}
.module-featured-cards .featured-card .featured-card-image {
  display: block;
  width: 100%;
  height: 116px;
  overflow: hidden;
}
@media screen and (min-width: 480px) {
  .module-featured-cards .featured-card .featured-card-image {
    height: 370px;
  }
}
.module-featured-cards .featured-card .featured-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.module-featured-cards .featured-card .featured-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .module-featured-cards .featured-card .featured-card-body {
    padding: 32px;
  }
}
.module-featured-cards .featured-card .featured-card-body .card-excerpt {
  padding-top: 16px;
  margin: 0;
}
.module-featured-cards .featured-card .featured-card-body .card-footer {
  padding-top: 32px;
}
.module-featured-cards .featured-card .featured-card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.module-featured-cards .featured-card .featured-card-title-row h3 {
  margin: 0;
}
.module-featured-cards .featured-card .featured-card-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.module-featured-cards .featured-card .featured-card-icon svg,
.module-featured-cards .featured-card .featured-card-icon img {
  width: 22px;
  height: 22px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .module-featured-cards .featured-card .featured-card-icon svg,
  .module-featured-cards .featured-card .featured-card-icon img {
    width: 32px;
    height: 32px;
  }
}

.module-bento-grid .bento-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 10px;
  overflow: hidden;
}
.module-bento-grid .bento-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}
@media screen and (min-width: 768px) {
  .module-bento-grid .bento-row {
    grid-template-columns: minmax(0px, 590px) minmax(0px, 409px);
  }
}
.module-bento-grid .bento-row.bento-row-alt {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .module-bento-grid .bento-row.bento-row-alt {
    grid-template-columns: minmax(0px, 409px) minmax(0px, 590px);
  }
}
.module-bento-grid .bento-row.bento-row-full {
  grid-template-columns: 1fr;
}
.module-bento-grid .bento-item {
  position: relative;
  min-height: 280px;
  background-color: var(--color-dark-grey);
}
.module-bento-grid .bento-item .bento-item-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  padding: 54px;
  color: var(--color-white);
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.module-bento-grid .bento-item .bento-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.module-bento-grid .bento-item .bento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  transition: var(--transition) ease;
}
.module-bento-grid .bento-item .bento-content {
  position: relative;
  z-index: 1;
  transition: transform var(--transition) ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(38px);
  max-width: 300px;
}
.module-bento-grid .bento-item .bento-content h3 {
  font-size: 2.4rem;
  line-height: 30px;
  font-weight: var(--fw-regular);
}
@media screen and (min-width: 768px) {
  .module-bento-grid .bento-item .bento-content h3 {
    font-size: 3.2rem;
    line-height: 40px;
  }
}
.module-bento-grid .bento-item .bento-content h3 {
  margin: 0;
  color: inherit;
}
.module-bento-grid .bento-item .bento-content .bento-desc {
  font-size: 1.6rem;
  line-height: 25.6px;
  font-weight: var(--fw-regular);
  margin: 0;
}
.module-bento-grid .bento-item .bento-content .read-more {
  margin-top: 4px;
  opacity: 0;
  transform: translateY(4px);
}
.module-bento-grid .bento-item .bento-content .read-more::after {
  background-image: url("../images/arrow-right-white.svg");
}
.module-bento-grid .bento-item:hover .bento-overlay, .module-bento-grid .bento-item:focus .bento-overlay, .module-bento-grid .bento-item:active .bento-overlay {
  background: rgba(0, 0, 0, 0.7);
}
.module-bento-grid .bento-item:hover .bento-content, .module-bento-grid .bento-item:focus .bento-content, .module-bento-grid .bento-item:active .bento-content {
  transform: translateY(6px);
}
.module-bento-grid .bento-item:hover .read-more, .module-bento-grid .bento-item:focus .read-more, .module-bento-grid .bento-item:active .read-more {
  opacity: 1;
  transform: translateY(0);
}
.module-bento-grid .bento-item:hover .read-more::after, .module-bento-grid .bento-item:focus .read-more::after, .module-bento-grid .bento-item:active .read-more::after {
  transform: translateY(-50%) translateX(8px);
}

.module-hero .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.module-hero .tagline {
  color: var(--color-blue);
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: var(--fw-medium);
  line-height: 27.2px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.module-hero h1 {
  font-size: 4rem;
  line-height: 50px;
  font-weight: var(--fw-light);
}
@media screen and (min-width: 768px) {
  .module-hero h1 {
    font-size: 5rem;
    line-height: 62.5px;
  }
}
.module-hero h1 {
  margin-bottom: 28px;
}
.module-hero .hero-visual {
  position: relative;
  width: 100%;
}
.module-hero .hero-img-wrap {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
  height: 315px;
  display: block;
}
@media screen and (min-width: 768px) {
  .module-hero .hero-img-wrap {
    height: 600px;
  }
}
.module-hero .hero-img-wrap .hero-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.module-hero .hero-wave {
  position: absolute;
  display: block;
  pointer-events: none;
}
.module-hero .hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.module-hero .hero-wave-left {
  width: 182px;
  left: -182px;
  bottom: -30%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .module-hero .hero-wave-left {
    width: 364px;
    left: -364px;
    bottom: -25%;
  }
}
.module-hero .hero-wave-right {
  width: 475px;
  right: -225px;
  bottom: -18.4%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .module-hero .hero-wave-right {
    right: -464px;
    bottom: -21%;
    width: 1035px;
  }
}

.module-timeline {
  position: relative;
  z-index: 0;
  background: var(--color-lightest-grey);
}
@media screen and (min-width: 1280px) {
  .module-timeline .container {
    padding: 0 110px;
  }
}
.module-timeline .module-body {
  position: relative;
}
.module-timeline .module-body:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
  top: 317px;
  height: 2px;
  background: var(--color-off-black);
  z-index: 0;
  pointer-events: none;
  display: none;
}
@media screen and (min-width: 1025px) {
  .module-timeline .module-body:before {
    display: block;
  }
}
.module-timeline .container {
  position: relative;
  z-index: 1;
}
.module-timeline .swiper-tabs-controls {
  margin-bottom: 60px;
  width: 100%;
}
.module-timeline .swiper-tabs-select-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-off-black);
}
@media screen and (min-width: 1025px) {
  .module-timeline .swiper-tabs-select-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
.module-timeline .swiper-tabs-select {
  display: block;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 14px;
  font: inherit;
  color: var(--color-off-black);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: 5px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a1a1a' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  transition: var(--transition);
  text-overflow: ellipsis;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.module-timeline .swiper-tabs-select:hover, .module-timeline .swiper-tabs-select:focus {
  outline: none;
}
@media screen and (min-width: 1025px) {
  .module-timeline .swiper-tabs-select {
    display: none;
  }
}
.module-timeline .swiper-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  justify-content: center;
  gap: 32px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .module-timeline .swiper-tabs {
    display: flex;
  }
}
.module-timeline .swiper-tabs .swiper-tab-button {
  position: relative;
  border: 0px;
  background: unset;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: var(--color-off-black);
  opacity: 0.5;
  transition: var(--transition);
  cursor: pointer;
}
.module-timeline .swiper-tabs .swiper-tab-button::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.module-timeline .swiper-tabs .swiper-tab-button:hover {
  opacity: 1;
  color: var(--color-blue);
}
.module-timeline .swiper-tabs .swiper-tab-button:hover::after {
  transform: scaleX(1);
}
.module-timeline .swiper-tabs .swiper-tab-button.is-active {
  opacity: 1;
}
.module-timeline .swiper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.module-timeline .swiper > .swiper-wrapper > .swiper-slide {
  height: auto;
}
.module-timeline .swiper .slide-inner {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-columns: 100%;
  gap: 24px;
  align-items: start;
}
@media screen and (min-width: 1025px) {
  .module-timeline .swiper .slide-inner {
    grid-template-columns: minmax(0px, 525px) 600px;
    gap: 100px;
  }
}
.module-timeline .swiper .slide-inner .slide-col--media {
  order: 1;
}
.module-timeline .swiper .slide-inner .slide-col--text {
  order: 2;
}
.module-timeline .swiper .swiper-slide.slide--even .slide-inner {
  grid-template-columns: 100%;
}
@media screen and (min-width: 1025px) {
  .module-timeline .swiper .swiper-slide.slide--even .slide-inner {
    grid-template-columns: 600px minmax(0px, 525px);
  }
  .module-timeline .swiper .swiper-slide.slide--even .slide-inner .slide-col--media {
    order: 2;
  }
  .module-timeline .swiper .swiper-slide.slide--even .slide-inner .slide-col--text {
    order: 1;
  }
}
.module-timeline .swiper .slide-col {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .module-timeline .swiper .slide-col--media {
    padding-top: 89px;
  }
}
.module-timeline .swiper .slide-col--media .slide-images {
  width: 100%;
  position: relative;
  z-index: 2;
}
.module-timeline .swiper .slide-grid {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .module-timeline .swiper .slide-grid {
    gap: 145px;
  }
}
.module-timeline .swiper .slide-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .module-timeline .swiper .slide-head {
    height: 252px;
  }
}
.module-timeline .swiper .slide-body {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .module-timeline .swiper .slide-body:before {
    content: "";
    top: -112px;
    left: 150px;
    position: absolute;
    height: 68px;
    width: 2px;
    background: var(--color-off-black);
  }
}
.module-timeline .swiper .slide-impact-title {
  font-size: 1.6rem;
  line-height: 25.6px;
  font-weight: var(--fw-regular);
  letter-spacing: 1.92px;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.module-timeline .swiper .slide-tagline {
  font-size: 2rem;
  line-height: 25px;
  font-style: italic;
  color: var(--color-off-black);
}
@media screen and (min-width: 768px) {
  .module-timeline .swiper .slide-tagline {
    font-size: 2.4rem;
    line-height: 30px;
  }
}
.module-timeline .swiper .slide-era {
  align-self: flex-start;
  font-size: 1.6rem;
  line-height: 25.6px;
  font-weight: var(--fw-regular);
  display: inline-block;
  padding: 4px 24px;
  border: 2px solid var(--color-off-black);
  border-radius: 10px;
  color: var(--color-off-black);
  font-weight: var(--fw-medium);
  letter-spacing: 1.92px;
}
.module-timeline .swiper .slide-title {
  font-size: 5rem;
  font-weight: var(--fw-extra-light);
  line-height: 55px;
  color: var(--color-off-black);
  letter-spacing: -1.1px;
}
@media screen and (min-width: 768px) {
  .module-timeline .swiper .slide-title {
    font-size: 7rem;
    line-height: 77px;
    letter-spacing: -1.4px;
  }
}
.module-timeline .swiper .slide-text {
  font-size: 1.6rem;
  line-height: 25.6px;
  font-weight: var(--fw-regular);
  color: var(--color-off-black);
}
.module-timeline .swiper .slide-text p {
  margin: 0 0 1em;
}
.module-timeline .swiper .slide-text p:last-child {
  margin-bottom: 0;
}
.module-timeline .swiper .slide-impact {
  margin-top: 0px;
  padding: 24px;
  border-radius: 10px;
  background: var(--color-dark-blue);
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: 22.4px;
  font-weight: var(--fw-regular);
}
.module-timeline .swiper .slide-impact.mobile {
  display: block;
}
.module-timeline .swiper .slide-impact.desktop {
  display: none;
}
@media screen and (min-width: 1025px) {
  .module-timeline .swiper .slide-impact {
    margin-top: 60px;
  }
  .module-timeline .swiper .slide-impact.mobile {
    display: none;
  }
  .module-timeline .swiper .slide-impact.desktop {
    display: block;
  }
}
.module-timeline .swiper .slide-impact p {
  margin: 0 0 0.75em;
}
.module-timeline .swiper .slide-impact p:last-child {
  margin-bottom: 0;
}
.module-timeline .swiper .slide-impact strong {
  display: block;
  font-size: 1.2rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.module-timeline .swiper .swiper-nested {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 2;
}
.module-timeline .swiper .swiper-nested .swiper-slide {
  height: 100%;
}
.module-timeline .swiper .swiper-nested .slide-img {
  display: block;
  width: 100%;
  height: 236px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 640px) {
  .module-timeline .swiper .swiper-nested .slide-img {
    height: 393px;
  }
}
.module-timeline .swiper .swiper-nested .swiper-pagination-nested {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 3;
}

/*Layout*/
footer {
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 70px 0;
  }
}
footer.has-divider {
  padding: 0px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  footer.has-divider {
    padding-bottom: 70px;
  }
}
footer.has-divider .inner {
  border-top: 2px solid var(--color-light-grey);
  padding-top: 48px;
}
@media screen and (min-width: 768px) {
  footer.has-divider .inner {
    padding-top: 70px;
  }
}
footer .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  footer .inner {
    grid-template-columns: 280px auto;
    gap: 140px;
    align-items: start;
  }
}
footer .brand {
  display: flex;
  flex-direction: column;
}
footer .project-of {
  display: block;
  text-transform: uppercase;
  color: var(--color-dark-blue);
  font-weight: var(--fw-medium);
  font-size: 1.4rem;
  line-height: 17.5px;
  margin-bottom: 8px;
  letter-spacing: 1.4px;
}
footer .logo-img {
  display: block;
  width: 240px;
  height: auto;
  max-width: 100%;
}
footer .copyright {
  font-size: 1.6rem;
  line-height: 25.6px;
  font-weight: var(--fw-regular);
  color: var(--color-dark-blue);
  margin: 0;
  margin-top: 32px;
}
footer .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .text p {
  font-size: 1.4rem;
  line-height: 22.4px;
  font-weight: var(--fw-regular);
  margin: 0;
}
footer .label {
  display: block;
  font-size: 1.6rem;
  line-height: 25.6px;
  font-weight: var(--fw-regular);
  margin-bottom: 8px;
}
footer .support .button {
  display: inline-block;
}

header {
  padding: 32px 0;
  background: var(--color-white);
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 2;
  transition: var(--transition);
  padding-bottom: 0px;
}
@media screen and (min-width: 1025px) {
  header {
    padding: 32px 0;
    position: relative;
    left: unset;
    top: unset;
  }
}
@media screen and (max-width: 1024px) {
  header.is-nav-open {
    height: 100vh;
    overflow-y: auto;
  }
}
header .header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
header .nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0px;
  border: 0;
  background: transparent;
  color: var(--color-off-black);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
@media screen and (min-width: 1025px) {
  header .nav-toggle {
    display: none;
  }
}
header .nav-toggle:hover, header .nav-toggle:focus-visible {
  color: var(--color-blue);
}
header .nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
header .nav-toggle__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}
header .nav-toggle__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.25s ease, top 0.3s ease;
}
header .nav-toggle__line--top {
  top: 0;
  transform-origin: center;
}
header .nav-toggle__line--mid {
  top: 8px;
  transform-origin: center;
}
header .nav-toggle__line--bot {
  top: 16px;
  transform-origin: center;
}
header .nav-toggle[aria-expanded=true] .nav-toggle__line--top {
  top: 8px;
  transform: rotate(45deg);
}
header .nav-toggle[aria-expanded=true] .nav-toggle__line--mid {
  opacity: 0;
  transform: scaleX(0);
}
header .nav-toggle[aria-expanded=true] .nav-toggle__line--bot {
  top: 8px;
  transform: rotate(-45deg);
}
header .header-col--nav {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
@media screen and (min-width: 1025px) {
  header .header-col--nav {
    width: unset;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transition: none;
  }
}
@media screen and (max-width: 1024px) {
  header.is-nav-open .header-col--nav {
    max-height: min(80vh, 36rem);
    opacity: 1;
  }
}
header .col {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  header .col {
    width: unset;
  }
}
header .logo .logo-link {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  position: relative;
  height: 45px;
  gap: 36px;
}
@media screen and (min-width: 1025px) {
  header .logo .logo-link {
    gap: 64px;
    height: 65px;
  }
}
header .logo .logo-link img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .logo .logo-link .ier-logo {
  position: relative;
  max-width: 137px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  header .logo .logo-link .ier-logo {
    max-width: 240px;
  }
}
header .logo .logo-link .ier-logo:before {
  content: "";
  position: absolute;
  top: 7px;
  right: -18px;
  width: 2px;
  height: calc(100% - 14px);
  background: var(--color-dark-grey);
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  header .logo .logo-link .ier-logo:before {
    right: -32px;
  }
}
header .logo .logo-link .ier-logo img {
  max-height: 35px;
}
header .logo .logo-link .fueling-logo {
  height: 45px;
}
@media screen and (min-width: 1025px) {
  header .logo .logo-link .fueling-logo {
    height: 65px;
  }
}
header .inner {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr;
  align-items: flex-start;
  gap: 32px;
}
@media screen and (min-width: 1025px) {
  header .inner {
    align-items: center;
    grid-template-columns: auto auto;
  }
}
header .inner nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 1025px) {
  header .inner nav ul {
    display: flex;
    flex-flow: row nowrap;
    gap: 32px;
  }
}
header .inner nav li.current-menu-item a {
  color: var(--color-blue);
}
header .inner nav li.current-menu-item a::after {
  transform: scaleX(1);
}
header .inner nav li a {
  position: relative;
  font-weight: var(--fw-medium);
  transition: var(--transition);
}
header .inner nav li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
header .inner nav li a:hover, header .inner nav li a:focus, header .inner nav li a:active {
  color: var(--color-blue);
}
header .inner nav li a:hover::after, header .inner nav li a:focus::after, header .inner nav li a:active::after {
  transform: scaleX(1);
}

.banner {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 16px 32px;
  box-shadow: 0 -2px 23px 0 rgba(0, 0, 0, 0.05), 0 3px 23px 0 rgba(0, 0, 0, 0.1);
}
.banner .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-flow: column nowrap;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .banner .inner {
    flex-flow: row nowrap;
    text-align: left;
  }
}

/*Vendor*/
.gform_required_legend {
  display: none;
}

.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_validation_errors {
  display: none;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework form {
  display: flex;
  gap: 16px;
  flex-flow: column nowrap;
}
@media screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework form {
    flex-flow: row nowrap;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_body {
  display: inline-block;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gform_body {
    flex-basis: 305px;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_footer {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield .validation_message {
  background: none;
  padding: 0;
  margin: 0;
  border: 0px;
  margin-top: 4px;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield input[type=email] {
  border-radius: 5px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  outline: none;
  color: var(--color-dark-blue);
  font-family: var(--ff-base);
  font-size: 1.6rem;
  line-height: 24px;
  font-weight: var(--fw-regular);
  padding: 11px 14px;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme.gform-theme--no-framework .gfield input[type=email] {
    max-width: 305px;
  }
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield input[type=email]::-moz-placeholder {
  color: #a2a6a9;
}
.gform_wrapper.gravity-theme.gform-theme--no-framework .gfield input[type=email]::placeholder {
  color: #a2a6a9;
}

.swiper-actions {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

/*# sourceMappingURL=main.min.css.map*/