@charset "UTF-8";
/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */
: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-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.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 */
: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-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);
    }
  }
}

@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/HelveticaNowDisplay-Light.woff2") format("woff2"), url("../fonts/HelveticaNowDisplay-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/HelveticaNowDisplay-Regular.woff2") format("woff2"), url("../fonts/HelveticaNowDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/HelveticaNowDisplay-Bold.woff2") format("woff2"), url("../fonts/HelveticaNowDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IvyOraDisplay";
  src: url("../fonts/IvyOraDisplay-Regular.woff2") format("woff2"), url("../fonts/IvyOraDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IvyOraDisplay";
  src: url("../fonts/IvyOraDisplay-Light.woff2") format("woff2"), url("../fonts/IvyOraDisplay-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.footer__wrapper, .education, .nav-bar__content, .grid {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.education, .nav-bar__content, .grid {
  padding-left: 1rem;
  padding-right: 1rem;
  --content-h-padding: 1rem;
}
@media (min-width: 768px) {
  .education, .nav-bar__content, .grid {
    padding-left: 2rem;
    padding-right: 2rem;
    --content-h-padding: 2rem;
  }
}

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

main {
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "HelveticaNowDisplay", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: 300;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
}

h1 {
  font-family: "HelveticaNowDisplay", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 6rem;
  line-height: 6rem;
  margin: 0 0 0.75rem;
  font-weight: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h1 {
    font-size: 4rem;
    line-height: 4.125rem;
  }
}
@media (max-width: 479px) {
  h1 {
    font-size: 3rem;
    line-height: 3.375rem;
  }
}
h1 em {
  font-family: "IvyOraDisplay", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  line-height: 4.125rem;
  text-transform: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  h1 em {
    font-size: 2.625rem;
    line-height: 3rem;
  }
}
@media (max-width: 479px) {
  h1 em {
    font-size: 2rem;
    line-height: 2.0625rem;
  }
}

h2 {
  font-family: "IvyOraDisplay", serif;
  font-weight: 300;
  font-size: 4rem;
  line-height: 4.125rem;
  margin: 0 0 1.125rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  h2 {
    font-size: 2.625rem;
    line-height: 3rem;
  }
}
@media (max-width: 479px) {
  h2 {
    font-size: 2rem;
    line-height: 2.0625rem;
  }
}

h3 {
  font-family: "HelveticaNowDisplay", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.875rem;
  margin: 0 0 0.75rem;
  font-weight: bold;
}

p {
  margin: 1.125rem 0;
  font-size: 1.5rem;
  line-height: 2.25rem;
  font-weight: 300;
  hyphens: auto;
}
@media (max-width: 479px) {
  p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

.section:not(:has(.education)) {
  overflow: hidden;
}
.section {
  --section-bg-color: #ffffff;
}
.section--white h1, .section--white h2, .section--white h3 {
  color: #bdaa6e;
}
.section--black {
  color: #fff;
  background-color: #000;
  --section-bg-color: #000;
}

.spacer {
  flex-shrink: 0;
  flex-grow: 0;
}
.spacer--lines-1 {
  height: 1.5rem;
}
@media (max-width: 480px) {
  .spacer--lines-1 {
    height: 0.75rem;
  }
}
.spacer--lines-2 {
  height: 3rem;
}
@media (max-width: 480px) {
  .spacer--lines-2 {
    height: 1.5rem;
  }
}
.spacer--lines-3 {
  height: 4.5rem;
}
@media (max-width: 480px) {
  .spacer--lines-3 {
    height: 2.25rem;
  }
}
.spacer--lines-4 {
  height: 6rem;
}
@media (max-width: 480px) {
  .spacer--lines-4 {
    height: 3rem;
  }
}
.spacer--lines-5 {
  height: 7.5rem;
}
@media (max-width: 480px) {
  .spacer--lines-5 {
    height: 3.75rem;
  }
}
.spacer--lines-6 {
  height: 9rem;
}
@media (max-width: 480px) {
  .spacer--lines-6 {
    height: 4.5rem;
  }
}
.spacer--lines-7 {
  height: 10.5rem;
}
@media (max-width: 480px) {
  .spacer--lines-7 {
    height: 5.25rem;
  }
}
.spacer--lines-8 {
  height: 12rem;
}
@media (max-width: 480px) {
  .spacer--lines-8 {
    height: 6rem;
  }
}
.spacer--lines-9 {
  height: 13.5rem;
}
@media (max-width: 480px) {
  .spacer--lines-9 {
    height: 6.75rem;
  }
}
.spacer--lines-10 {
  height: 15rem;
}
@media (max-width: 480px) {
  .spacer--lines-10 {
    height: 7.5rem;
  }
}

.alignment--left {
  text-align: left;
}
.alignment--center {
  text-align: center;
}
.alignment--right {
  text-align: right;
}
.alignment--justify {
  text-align: justify;
}

img {
  width: 100%;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  vertical-align: top;
  height: auto;
}
img.fixed-height {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  height: var(--height);
}

figure {
  margin: 0;
}

iframe {
  width: 100%;
  border: 0;
  aspect-ratio: 16/9;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

@media (max-width: 480px) {
  .hidden-mobile {
    display: none;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 480px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid--with-gap {
  gap: 1.5rem 3rem;
}
@media (max-width: 480px) {
  .grid--with-gap {
    gap: 0;
  }
}
.grid--full-width {
  max-width: none;
  padding: 0;
}
.grid--bottom-spacing {
  margin-bottom: 4.5rem;
}
.grid--extra-h-padding {
  padding-left: 2rem;
  padding-right: 2rem;
  --content-h-padding: 2rem;
}
@media (min-width: 768px) {
  .grid--extra-h-padding {
    padding-left: 6rem;
    padding-right: 6rem;
    --content-h-padding: 6rem;
  }
}
.grid--vertical-middle {
  align-items: center;
}
.grid--vertical-bottom {
  align-items: flex-end;
}
.grid .column {
  grid-column: span var(--span);
}
@media (max-width: 480px) {
  .grid .column {
    grid-column: span 4;
  }
}

.marquee {
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.marquee__content {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  transition: none;
  white-space: pre;
  display: flex;
}

.block {
  width: 100%;
  position: relative;
}

@keyframes slideInLeft {
  0% {
    transform: translate(-100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translate(200%);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideInBottom {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.333);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate {
  animation-duration: var(--animation-duration, 1s);
  animation-timing-function: cubic-bezier(0.3, 0.7, 0.3, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-delay: var(--animation-delay, 0s);
}
.animate--slide-in-left {
  --animation-name: slideInLeft;
}
.animate--slide-in-right {
  --animation-name: slideInRight;
}
.animate--slide-in-bottom {
  --animation-name: slideInBottom;
}
.animate--pop-in {
  --animation-name: popIn;
}
.animate--zoom-in {
  --animation-name: zoomIn;
}
.animate--fade-in {
  --animation-name: fadeIn;
}
.animate--idle {
  visibility: hidden;
}
.animate--play {
  animation-name: var(--animation-name);
  visibility: visible;
}

.divider {
  border: 0;
  height: 1px;
  background: #000;
  margin: 1.5rem 0;
}

.hero {
  position: relative;
  --top-shift: 1.5rem;
}
@media (min-width: 768px) {
  .hero {
    --top-shift: 4.5rem;
  }
}
@media (min-width: 1100px) {
  .hero {
    --top-shift: max(4.5rem, calc(50vh - 500px));
  }
}
@media (max-aspect-ratio: 1) {
  .hero {
    --top-shift: max(1.5rem, calc(50vh - 50vw - 1.5rem - (var(--content-h-padding) * 2)));
  }
}
.hero__title {
  position: relative;
  z-index: 2;
  padding-top: var(--top-shift, 0px);
  margin-bottom: 40vw;
}
@media (min-width: 1100px) {
  .hero__title {
    margin-bottom: max(500px, 100vh - 4rem - 12rem);
  }
}
@media (max-aspect-ratio: 1) {
  .hero__title {
    margin-bottom: min(1000px, 100vh);
  }
}
.hero__text {
  position: relative;
  z-index: 2;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 2.625rem;
}
@media (max-width: 479px) {
  .hero__text {
    font-size: 1.375rem;
    line-height: 1.6875rem;
  }
  .hero__text > br {
    display: none;
  }
}
.hero__text em {
  font-style: normal;
  font-family: "IvyOraDisplay", serif;
  font-size: 4rem;
  line-height: 4.125rem;
  font-weight: 300;
  display: block;
}
@media (max-width: 767px) {
  .hero__text em {
    font-size: 2.625rem;
    line-height: 3rem;
  }
}
@media (max-width: 479px) {
  .hero__text em {
    font-size: 2rem;
    line-height: 2.0625rem;
  }
}
.hero__main-image {
  border-radius: 100%;
  overflow: hidden;
  width: 85%;
  margin: 0 auto;
  position: absolute;
  top: calc(8.25rem + var(--top-shift, 0px));
  left: 7.5%;
  z-index: 1;
  display: flex;
}
.hero__main-image img {
  width: 100%;
}
@media (max-width: 479px) {
  .hero__main-image {
    left: 0%;
    width: 100%;
  }
}
.hero__secondary-image {
  border-radius: 100%;
  overflow: hidden;
  width: 42%;
  display: flex;
  position: relative;
  z-index: 2;
  left: 18%;
  bottom: 0rem;
}
@media (min-width: 480px) {
  .hero__secondary-image {
    bottom: -7.5rem;
  }
}
.hero__secondary-image img {
  width: 100%;
}
.hero__marquee {
  font-size: 5.75rem;
  line-height: 6rem;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  left: calc(var(--content-h-padding, 0) * -1);
  top: calc(100dvh - 4rem);
  transform: translateY(-100%);
  z-index: 3;
  width: 100vw;
}
@media (min-width: 1100px) {
  .hero__marquee {
    left: calc(550px - 50vw - var(--content-h-padding, 0));
  }
}
@media (max-width: 479px) {
  .hero__marquee {
    font-size: 3rem;
    line-height: 3.375rem;
  }
}

.menu {
  pointer-events: all;
  padding: 0;
  align-self: flex-end;
}
@media (max-width: 768px) {
  .menu {
    position: absolute;
    overflow: hidden;
    background-color: #000;
    padding: 0 1rem;
    bottom: 100%;
    right: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
    z-index: 9999;
  }
}
.menu--down {
  top: 100%;
  bottom: auto;
  transform: translateY(-1rem);
}
.menu--open {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.menu a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.menu a:hover, .menu a:focus-visible {
  opacity: 0.7;
}
.menu ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-weight: 300;
  font-family: "HelveticaNowDisplay", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 768px) {
  .menu ul {
    flex-direction: column;
    gap: 0;
  }
}
.menu ul a {
  display: block;
  padding: 0.75rem 0;
  margin: 0;
}

.nav-bar {
  position: sticky;
  top: 0;
  background-color: #000;
  color: #fff;
  z-index: 999;
}
.nav-bar__content {
  max-width: 1300px;
  font-family: "IvyOraDisplay", serif;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-bar__logo {
  display: block;
}
.nav-bar__logo img {
  height: 2.25rem;
  width: auto;
  transition: all 0.3s ease-out;
}
@media (min-width: 769px) {
  body:not(.scrolled) .nav-bar__logo img {
    height: 4.5rem;
    transform: translateY(2.25rem);
  }
}
.nav-bar__menu-toggle {
  background: transparent;
  border-radius: 100%;
  outline: 0;
  border: 0;
  margin: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-out;
  color: #fff;
  overflow: hidden;
  position: relative;
}
@media (min-width: 769px) {
  .nav-bar__menu-toggle {
    display: none;
  }
}
.nav-bar__menu-toggle:focus-visible, .nav-bar__menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.nav-bar__menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 7px;
  stroke-linecap: round;
  transition: all 0.3s cubic-bezier(0.55, 1.45, 0.58, 1);
}
.nav-bar__menu-toggle span {
  font-size: 0;
  text-indent: -9999px;
  position: absolute;
  top: 0;
}
.nav-bar__menu-toggle--open svg {
  transform: rotate(225deg);
}
.nav-bar__menu-toggle--open svg polygon {
  transition: all 0.3s ease-out;
}
.nav-bar__menu-toggle--open svg polygon:nth-child(1) {
  transform: translateY(25px);
}
.nav-bar__menu-toggle--open svg polygon:nth-child(2) {
  transform: rotate(90deg);
  transform-origin: center;
}
.nav-bar__menu-toggle--open svg polygon:nth-child(3) {
  transform: translateY(-25px);
  opacity: 0;
}

.button {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  color: #000;
  background-color: #fff;
  font-size: size(24);
  padding: rhythm(0.5) 1rem;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "IvyOraDisplay", serif;
  text-decoration: none;
  transition: all 0.3s ease-out;
  align-items: center;
}
.button:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.button--color-black {
  background-color: #000;
  color: #fff;
}
.button--color-black:hover {
  background-color: rgb(25.5, 25.5, 25.5);
}

.bigtext {
  font-size: 3rem;
  line-height: 3.75rem;
  padding: 0 6rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .bigtext {
    font-size: 2rem;
    line-height: 2.625rem;
  }
}
@media (max-width: 479px) {
  .bigtext {
    padding: 0;
    hyphens: auto;
  }
}

.service {
  position: relative;
  padding-top: 5.25rem;
  padding-bottom: 4.5rem;
}
@media (max-width: 479px) {
  .service {
    margin: 0 auto;
    padding-bottom: 1.5rem;
    max-width: 260px;
  }
}
.service__title {
  font-family: "HelveticaNowDisplay", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.875rem;
  margin: 0 0 0.75rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 260px;
  z-index: 2;
}
.service__image {
  border-radius: 100%;
  max-width: 220px;
  width: 100%;
  overflow: hidden;
  display: flex;
}
.service__image img {
  width: 100%;
}
.service__image img.animate--done {
  transform: scale(1.333);
  animation: none !important;
  transition: all 0.75s ease-out;
}
.service:hover .service__image img.animate--done {
  transform: scale(1);
  animation: none;
}

.education {
  color: #000;
  position: relative;
}
.education__title {
  color: #000 !important;
  display: inline-block;
}
.education__title strong {
  font-weight: bold;
  font-family: "HelveticaNowDisplay", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .education__title--stuck {
    position: fixed;
    top: 30dvh;
  }
  .education__title--bottom {
    position: absolute;
    top: initial;
    bottom: calc(3rem + var(--education-list-height, 12.75rem));
  }
}
.education__list {
  list-style: none;
  width: 100vw;
  margin: 0 0 0 -2rem;
  padding: 3rem 2rem 3rem 2rem;
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .education__list {
    overflow: hidden;
  }
  .education__list--stuck {
    position: fixed;
    top: calc(30dvh + var(--education-title-height, 9.75rem));
  }
  .education__list--bottom {
    position: absolute;
    top: initial;
    bottom: 3rem;
  }
}
@media (min-width: 1100px) {
  .education__list {
    padding-left: calc(50vw - 550px + 2rem);
    margin-left: calc(550px - 50vw - 2rem);
  }
}
.education__item {
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
}
.education__item__title {
  color: #000 !important;
  margin: 0;
  font-family: "IvyOraDisplay", serif;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.6875rem;
}
.education__item__text {
  font-size: 1.125rem;
  line-height: 1.6875rem;
  font-weight: 300;
}
.education__item .education__item__next {
  display: none;
}
.education__item:not(:last-child) .education__item__next {
  transform: scaleX(0.4) rotate(45deg);
  display: block;
  position: absolute;
  top: 1.875rem;
  right: -3.5rem;
  font-size: 0;
  color: transparent;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-top: 3px solid #bdaa6e;
  border-right: 3px solid #bdaa6e;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  cursor: pointer;
}

.fact {
  width: 50%;
}
@media (max-width: 767px) {
  .fact {
    margin-bottom: 3rem;
  }
}
@media (max-width: 479px) {
  .fact {
    width: 75%;
  }
}
.fact--right {
  transform: translateX(100%);
}
@media (max-width: 479px) {
  .fact--right {
    transform: translateX(33.33%);
  }
}
.fact__title {
  font-family: "IvyOraDisplay", serif;
  font-size: 5.25rem;
  line-height: 5.625rem;
  font-weight: 300;
  white-space: nowrap;
}
.fact__title strong {
  font-family: "HelveticaNowDisplay", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: bold;
}
@media (max-width: 767px) {
  .fact__title {
    font-size: 3rem;
    line-height: 3.375rem;
  }
}
@media (max-width: 479px) {
  .fact__title {
    font-size: 2.25rem;
    line-height: 2.625rem;
  }
}
.fact__text {
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 2.0625rem;
  padding-left: 10%;
}
@media (max-width: 479px) {
  .fact__text {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 2rem;
}
.contact__title {
  grid-column: 2/span 2;
  margin: 0;
}
@media (max-width: 479px) {
  .contact__title {
    grid-column: 1/-1;
  }
}
.contact__text {
  font-size: 1.5rem;
  line-height: 2.25rem;
  font-weight: 300;
  hyphens: auto;
  grid-column: 2/span 2;
}
@media (max-width: 479px) {
  .contact__text {
    grid-column: 1/-1;
  }
}
.contact__phone {
  font-size: 12.5vw;
  line-height: 1.25em;
  font-weight: bold;
  grid-column: 1/-1;
  padding: 3rem 0;
  margin: 0 calc(var(--content-h-padding, 0) * -1);
}
@media (min-width: 1100px) {
  .contact__phone {
    font-size: 8.875rem;
    line-height: 7.5rem;
    text-align: center;
  }
}
.contact__address {
  grid-column: 1/span 1;
}
@media (max-width: 479px) {
  .contact__address {
    grid-column: 1/-1;
    margin-bottom: 1.5rem;
  }
}
.contact__emails {
  grid-column: 2/span 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 479px) {
  .contact__emails {
    grid-column: 1/-1;
  }
}
.contact__emails li {
  display: block;
}
.contact__emails li::after {
  content: " ";
}

.horizontal-gallery {
  width: 100vw;
  position: relative;
  margin-left: calc(var(--content-h-padding, 0) * -1);
}
@media (min-width: 1100px) {
  .horizontal-gallery {
    margin-left: calc(550px - 50vw - var(--content-h-padding, 0));
  }
}
.horizontal-gallery__images {
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
  width: 100%;
}
.horizontal-gallery__image {
  width: 40vw;
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 479px) {
  .horizontal-gallery__image {
    width: 80vw;
  }
}
.horizontal-gallery__image img {
  width: 100%;
}
.horizontal-gallery__marquee {
  font-size: 5.75rem;
  line-height: 6rem;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 479px) {
  .horizontal-gallery__marquee {
    font-size: 3rem;
    line-height: 3.375rem;
  }
}

.scroll-zoom {
  overflow: hidden;
}
.scroll-zoom > * {
  transform-origin: 40% 50%;
}

.form {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0;
}
.form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form abbr {
  outline: 0;
  text-decoration: none;
}
.form .honeypot {
  position: absolute;
  left: -9999px;
}
.form__success {
  color: #090;
  border: 1px solid #090;
  background: rgba(0, 153, 0, 0.1);
  padding: 0.75rem 1rem;
  text-align: center;
}
.form__error {
  color: #c00;
  border: 1px solid #c00;
  background: rgba(204, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  text-align: center;
}
.form__info {
  font-size: 0.875rem;
  color: #999;
}
.form__field {
  display: flex;
  flex-direction: column;
}
.form__field__error {
  color: #c00;
}
.form input, .form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-family: "HelveticaNowDisplay", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: size(16);
  font-weight: 300;
  line-height: 1.5rem;
  appearance: none;
  border: 1px solid currentColor;
  transition: all 0.3s ease-in-out;
  padding: 0.375rem 0.5rem;
  outline: 0;
}
.form input:focus, .form textarea:focus {
  border: 1px solid currentColor;
}
.form textarea {
  resize: vertical;
}
.form input[type=submit] {
  display: block;
  width: 100%;
  max-width: 200px;
  text-align: center;
  color: #fff;
  border: 0;
  background-color: #000;
  font-size: size(24);
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "IvyOraDisplay", serif;
  text-decoration: none;
  margin: 0 auto;
  cursor: pointer;
}

.footer {
  background-color: #000;
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "HelveticaNowDisplay", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: 300;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
@media (max-width: 479px) {
  .footer {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}
.footer p {
  font-size: inherit;
  line-height: inherit;
}
.footer__wrapper {
  padding-left: 2rem;
  padding-right: 2rem;
  --content-h-padding: 2rem;
}
.footer__logo {
  width: auto;
  opacity: 0.8;
  margin-top: 0.375em;
  margin-bottom: 1.5rem;
  height: 4.5rem;
}
.footer a {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-out;
  align-items: center;
  gap: 0.25em;
}
.footer a:hover {
  opacity: 0.5;
}
.footer__nav {
  font-weight: 300;
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  -moz-columns: 2;
  columns: 2;
  -moz-column-gap: 1.5rem 3rem;
  column-gap: 1.5rem 3rem;
}
.footer__links {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  list-style: none;
}