@font-face {
  font-family: "Saol Display";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/SaolDisplay-Regular.97c5bb7f.woff2") format("woff2"),
    url("/SaolDisplay-Regular.03cbf316.woff") format("woff");
}
:root {
  --color-black: #000;
  --color-grey-darker: #3e3f3f;
  --color-grey-dark: #3e3f3f;
  --color-grey: #f7f5f4;
  --color-white: #fff;
  --font-f-serif: "Saol Display";
  --font-f-sans-light: "neue-haas-grotesk-display";
  --font-f-sans: "neue-haas-grotesk-text";
  --font-s-heading-sm: 8.333vw;
  --lh-heading-sm: 10.556vw;
  --font-s-chapeau-md: 4.444vw;
  --lh-chapeau-md: 9.167vw;
  --font-s-chapeau-sm: 3.611vw;
  --lh-chapeau-sm: 3.611vw;
  --font-s-body: 4.444vw;
  --lh-body: 8.333vw;
  --ease-button: cubic-bezier(0.34, 0, 0.18, 1);
  --spacing-15: 4.11vw;
  --spacing-30: 8.219vw;
  --spacing-45: 12.329vw;
  --spacing-60: 16.438vw;
  --spacing-75: 20vw;
  --spacing-90: 24.658vw;
  --spacing-120: 32.877vw;
  --spacing-150: 40vw;
  --spacing-180: 49.315vw;
  --col-1: calc(100vw / 12 * 1);
  --col-2: calc(100vw / 12 * 2);
  --col-3: calc(100vw / 12 * 3);
  --col-4: calc(100vw / 12 * 4);
  --col-5: calc(100vw / 12 * 5);
  --col-6: calc(100vw / 12 * 6);
  --col-7: calc(100vw / 12 * 7);
  --col-8: calc(100vw / 12 * 8);
  --col-9: calc(100vw / 12 * 9);
  --col-10: calc(100vw / 12 * 10);
  --col-11: calc(100vw / 12 * 11);
  --col-12: calc(100vw / 12 * 12);
}
@media (min-width: 768px) {
  :root {
    --font-s-heading-sm: 3.472vw;
    --lh-heading-sm: 4.583vw;
    --font-s-chapeau-md: 1.25vw;
    --lh-chapeau-md: 1.597vw;
    --font-s-chapeau-sm: 0.903vw;
    --lh-chapeau-sm: 0.903vw;
    --font-s-body: 1.111vw;
    --lh-body: 2.083vw;
    --spacing-15: 1.042vw;
    --spacing-30: 2.083vw;
    --spacing-45: 3.125vw;
    --spacing-60: 4.167vw;
    --spacing-75: 5.208vw;
    --spacing-90: 6.25vw;
    --spacing-120: 8.333vw;
    --spacing-150: 10.417vw;
    --spacing-180: 12.5vw;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding and list styles on ul, ol elements with a class attribute */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set font smoothing */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Set core body defaults */
body {
  margin: 0;
  overflow-y: scroll;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

button {
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  appearance: none;
  outline: none;
}

a {
  color: var(--color-grey-darker);
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

select {
  background: none;
  border: none;
  -webkit-appearance: none;
}

[style*="--aspect-ratio"] > *:first-child,
.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@supports (--custom: property) {
  [style*="--aspect-ratio"] {
    position: relative;
    overflow: hidden;
  }

  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / var(--aspect-ratio));
  }
}
html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  overscroll-behavior-y: none;
}

.app {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #01083c;
  opacity: 0;
  transition: all 1s;
  /* display: none; */
}

.app.actived {
  opacity: 1;
}

.is-device main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

body {
  font-family: var(--font-f-sans);
  font-size: var(--font-s-body);
  line-height: var(--lh-body);
  font-weight: 400;
  color: var(--color-grey-darker);
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 0;
  align-items: start;
  position: relative;
}

.container.is-centered {
  align-items: center;
}

.button {
  display: flex;
  align-items: center;
  margin: 8.333vw 0 0;
  height: 11.111vw;
  font-size: var(--font-s-button);
  line-height: var(--lh-button);
  text-transform: uppercase;
  text-decoration: none;
}
.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0 0 4.167vw;
  width: 11.111vw;
  height: 11.111vw;
  overflow: hidden;
  pointer-events: none;
}
.button__circle {
  position: absolute;
  width: 11.111vw;
  height: 11.111vw;
  overflow: visible;
  background-color: var(--color-white);
  border-radius: 50%;
}
.button__svg {
  display: block;
  position: absolute;
  width: 4.278vw;
  height: 1.092vw;
  fill: none;
  stroke: var(--color-grey-darker);
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 0.5px;
}
.button__title--secondary {
  display: none;
}
@media (min-width: 768px) {
  .button {
    height: 2.778vw;
  }
  .button__icon {
    margin: 0 0 0 1.042vw;
    width: 2.778vw;
    height: 2.778vw;
  }
  .button__circle {
    width: 2.778vw;
    height: 2.778vw;
  }
  .button__svg {
    width: 1.069vw;
    height: 0.273vw;
  }
  .button__svg--clone {
    transform-origin: left center;
    transform: translateX(-2.778vw);
  }
  .button__title-mask {
    position: relative;
    padding: 0.347vw 0;
    overflow: hidden;
  }
  .button__title {
    display: block;
    transform: rotate(0deg);
    transform-origin: right center;
  }
  .button__title--secondary {
    display: block;
    position: absolute;
    left: 0;
    bottom: -2.778vw;
    transform: rotate(15deg);
    transform-origin: left center;
  }
}
@media (hover: hover) {
  .button__icon > .button__svg--clone {
    transition: transform 0.3s var(--ease-button);
  }
  .button__icon,
  .button__icon > .button__svg,
  .button__title-mask > .button__title-wrap,
  .button__title-mask > .button__title-wrap > .button__title,
  .button__title-mask > .button__title-wrap > .button__title--secondary {
    will-change: transform;
    transition: transform 0.62s var(--ease-button);
  }
  .button:hover > .button__title-mask > .button__title-wrap {
    transform: translateY(-2.778vw);
  }
  .button:hover > .button__title-mask > .button__title-wrap > .button__title {
    transform: rotate(15deg);
  }
  .button:hover
    > .button__title-mask
    > .button__title-wrap
    > .button__title--secondary {
    transform: rotate(0deg);
  }
  .button:hover > .button__icon > .button__svg {
    opacity: 0;
    transform: translateX(2.778vw);
    transition: 0.3s var(--ease-button);
    transition-property: opacity, transform;
  }
  .button:hover > .button__icon > .button__svg--clone {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.62s var(--ease-button);
  }
  .button:hover > .button__icon {
    transform: scale(1.2);
  }
}

.button.is-white {
  color: var(--color-white);
}

.button-slider-open {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: var(--spacing-15);
  right: var(--spacing-15);
  z-index: 2;
  width: 16.667vw;
  height: 16.667vw;
  background-color: var(--color-white);
  border-radius: 50%;
}
.button-slider-open__icon {
  width: 2.689vw;
  height: 3.228vw;
  fill: var(--color-grey-darker);
}
@media (hover: hover) {
  .button-slider-open {
    transform-origin: center center;
    will-change: transform;
  }
  .button-slider-open__icon {
    overflow: visible;
  }
  .button-slider-open__icon-square {
    will-change: transform;
    transition: 400ms cubic-bezier(0.8, 0.16, 0.41, 0.86);
  }
  .button-slider-open:hover .button-slider-open__icon-square:first-of-type {
    transform: translate(-0.1vw, 0.1vw);
  }
  .button-slider-open:hover .button-slider-open__icon-square:nth-of-type(2) {
    transform: translate(0, 0.1vw);
  }
  .button-slider-open:hover .button-slider-open__icon-square:nth-of-type(3) {
    transform: translate(0.1vw, 0.1vw);
  }
  .button-slider-open:hover .button-slider-open__icon-square:nth-of-type(4) {
    transform: translate(-0.1vw, 0);
  }
  .button-slider-open:hover .button-slider-open__icon-square:nth-of-type(5) {
    transform: translate(0, 0);
  }
  .button-slider-open:hover .button-slider-open__icon-square:nth-of-type(6) {
    transform: translate(0.1vw, 0);
  }
  .button-slider-open:hover .button-slider-open__icon-square:nth-of-type(7) {
    transform: translate(-0.1vw, -0.1vw);
  }
  .button-slider-open:hover .button-slider-open__icon-square:nth-of-type(8) {
    transform: translate(0, -0.1vw);
  }
  .button-slider-open:hover .button-slider-open__icon-square:nth-of-type(9) {
    transform: translate(0.1vw, -0.1vw);
  }
}
@media (min-width: 768px) {
  .button-slider-open {
    width: 4.167vw;
    height: 4.167vw;
    backface-visibility: hidden;
  }
  .button-slider-open__icon {
    width: 0.7392vw;
    height: 0.8877vw;
  }
}

.content {
  display: flex;
  align-items: center;
  min-height: calc(var(--vh, 1vh) * 100);
}
.content__subheadings {
  grid-column: 1/13;
  margin: 0 0 0 var(--spacing-15);
}
@media (min-width: 768px) {
  .content__subheadings {
    grid-column: 1/3;
    margin: 0 0 0 var(--spacing-30);
  }
}
.content__subheading {
  display: block;
  text-transform: uppercase;
}
.content__subheading.is-sm {
  margin: var(--spacing-15) 0 0;
  font-size: var(--font-s-chapeau-sm);
  line-height: var(--lh-chapeau-sm);
}
.content__subheading.is-md {
  font-size: var(--font-s-chapeau-md);
  line-height: var(--lh-chapeau-md);
}
.content__heading {
  grid-column: 1/13;
  margin: var(--spacing-30) var(--spacing-15) 0;
  font-family: var(--font-f-sans-light);
  font-size: var(--font-s-heading-sm);
  line-height: var(--lh-heading-sm);
}
@media (min-width: 768px) {
  .content__heading {
    grid-column: 5/12;
    margin: 0;
  }
}

.placeholders {
  position: fixed;
  top: 40%;
  right: calc(var(--col-2) * -1.5);
  z-index: 1;
  width: var(--col-9);
  overflow: unset;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
.placeholders__img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--col-9);
  transform-origin: left bottom;
  will-change: transform;
}
.placeholders__img-wrap:first-child {
  top: 10px;
  left: -20px;
  z-index: 2;
}
.placeholders__img-wrap:nth-child(2) {
  top: -30px;
  left: 10px;
  z-index: 1;
}
.placeholders__img-wrap:nth-child(3) {
  top: 30px;
  z-index: 0;
}
@media (min-width: 768px) {
  .placeholders {
    top: 10%;
    width: var(--col-4);
  }
  .placeholders__img-wrap {
    width: var(--col-4);
  }
  .placeholders__img {
    max-width: unset;
    width: calc(100% + var(--col-3)) !important;
    will-change: transform;
  }
}

.slider {
  --slidesTotal: 8;
  position: sticky;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9;
  height: calc(var(--vh, 1vh) * 100);
  visibility: hidden;
  opacity: 0;
  will-change: transform;
}

.slider * {
  user-select: none !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
}

.slider__button-close {
  position: fixed;
  top: -11.11111vw;
  left: calc(100vw - 43.056vw);
  z-index: 1001;
  width: 56.944vw;
  height: 56.944vw;
  will-change: transform;
}
.slider__button-close-icon {
  width: 56.944vw;
  height: 56.944vw;
  overflow: visible;
}
.slider__container {
  display: grid;
  grid-template-columns: repeat(var(--slidesTotal), var(--col-9));
  grid-column-gap: 4.167vw;
  align-items: center;
  padding: 0 4.167vw;
  height: calc(var(--vh, 1vh) * 100);
}
.slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}
.slider__item-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  user-select: none;
}
.slider__item-heading-wrap,
.slider__item-button-wrap {
  display: flex;
  overflow: hidden;
}
.slider__item-button-wrap {
  pointer-events: all;
}
.slider__item-heading {
  pointer-events: none;
  /* font-family: var(--font-f-serif); */
  font-family: 'Modern Antiqua', cursive;
  /* font-family: "Work Sans",sans-serif; */
  font-size: 16.667vw;
  line-height: 15.278vw;
  color: var(--color-white);
  text-transform: uppercase;
  transform-origin: left bottom;
  will-change: transform;
  padding-top: 1rem;
}
.slider__item-button {
  margin: 4.167vw auto 0;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .slider {
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow-x: unset;
  }
  .slider__button-close {
    position: absolute;
    top: 1.042vw;
    left: calc(100vw - 14.23611vw - 2.083vw);
    right: unset;
  }
  .slider__button-close,
  .slider__button-close-icon {
    width: 14.236vw;
    height: 14.236vw;
  }
  .slider__button-close-icon {
    position: absolute;
    top: 0;
    left: 0;
  }
  .slider__container {
    grid-template-columns: repeat(var(--slidesTotal), var(--col-4));
    grid-column-gap: 4.167vw;
    padding: 0 var(--col-1);
    height: unset;
    cursor: grab;
  }
  .slider__item-heading {
    font-size: 4.5vw;
    text-align: center;
    line-height: 6.944vw;
  }
  .slider__item-button {
    margin: 1.389vw auto;
  }
  .slider__item-img {
    max-width: unset;
    pointer-events: none;
    user-select: none;
    transform-origin: left center;
    transform: scale(1.75);
    will-change: transform;
  }
  .slider__progress-wrap {
    display: block;
    position: absolute;
    left: var(--col-2);
    bottom: 3.125vw;
    width: var(--col-8);
    height: 1px;
    overflow: hidden;
    background-color: #d6d6d6;
    transform-origin: left center;
    will-change: transform;
  }
  .slider__progress {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #02517a;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
  }
}

.is-dragging .slider__container {
  cursor: grabbing;
}

.is-device .slider {
  position: sticky;
  top: 0;
  left: 0;
  bottom: 0;
  height: calc(var(--vh, 1vh) * 100);
}

.is-device .slider__container {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  overflow-x: scroll;
}

.is-device .slider .nav__button-close {
  position: fixed;
}

.is-device .slider .slider__progress-wrap {
  display: none;
}

.button-slider-open {
  margin-right: 6rem;
  width: fit-content;
  border-radius: 0;
  padding: 1rem 1rem;
  background: transparent;
  color: white;
  height: fit-content;

  transition: all .35s;
}

.button-slider-open:hover {
  /* opacity: .75; */
  transform: translateY(-10%);
}

.deactive {
  opacity: .35 !important;
  transition: all .5s !important;
}

/*# sourceMappingURL=/src.e31bb0bc.css.map */
