@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&display=swap");
:root {
  --primary-blue: #2f3857;
  --primary-orange: #e47553;
  --primary-yellow: #fdde8e;
  --primary-white: #ffffff;
  --primary-yellow-light: #fef1d0;
  --primary-orange-hover: #e85b1e;
  --primary-blue-hover: rgba(47, 56, 87, 0.1);
  --link: #48a2da;
  --link-hover: #1d8fd7;
  --primary-yellow-40: rgba(254, 241, 208, 0.7);
  --secondary-color: rgb(34, 34, 34);
  --secondary-color-faded: rgba(34, 34, 34, 0.25);
  --highlight-color: hsla(214, 86%, 94%, 100%);
  --difference-color: rgba(90, 108, 118, 0.33);
  --difference-color-ring: #dd9446;
  --highlight-color: rgb(218, 233, 255);
  --highlight-hover: rgba(255, 255, 255, 0.5);
  --primary-text-color: #5a6c76;
  --primary-text-hover: #d06b00;
  --body: rgb(241, 241, 241);
  --body-transparent: rgba(241, 241, 241, 0.82);
  --separator: rgb(214, 214, 214);
  --grey-100: hsl(210, 14%, 95%);
  --grey-200: hsl(210, 14%, 87%);
  --grey-300: hsl(210, 14%, 80%);
  --grey-400: hsl(210, 13%, 65%);
  --grey-500: hsl(211, 10%, 55%);
  --grey-600: hsl(210, 8%, 45%);
  --grey-900: hsl(210, 14%, 87%);
  --svg-dark: rgb(34, 34, 34);
  --svg-light: rgb(131, 136, 142);
  --svg-body: rgb(241, 241, 241);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

video.flipped {
  transform: rotateY(180deg);
}

a {
  color: var(--link);
  text-decoration: underline;
}
a:hover {
  color: var(--link-hover);
}

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

html {
  height: -webkit-fill-available;
}

body {
  font: 1rem Helvetica, arial, sans-serif;
  color: var(--primary-blue);
  height: -webkit-fill-available;
  background-color: var(--primary-white);
  -webkit-font-smootshing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  position: relative;
  top: 0;
  z-index: 0;
}

.container {
  font: 1.2em Helvetica, arial, sans-serif;
  padding: 0;
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: [full-start] minmax(5vw, 1fr) [wide-start] minmax(5vw, 40px) [normal-start] minmax(auto, 1440px) [normal-end] minmax(5vw, 40px) [wide-end] minmax(5vw, 1fr) [full-end];
  grid-auto-rows: auto;
}

/* CTAs */
.button {
  cursor: pointer;
  border-radius: 20rem;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: var(--primary-white);
  background-color: var(--primary-orange);
  padding: 1.25rem 3rem;
  transition: all 0.175s ease;
  height: auto;
  line-height: 1;
  font-weight: normal;
  border: none;
}
@media only screen and (min-width: 800px) {
  .button {
    padding: 1.25rem 3rem;
    width: -moz-max-content;
    width: max-content;
  }
}
.button a {
  color: inherit !important;
  text-decoration: initial !important;
  font-size: inherit !important;
}
.button:hover {
  color: var(--primary-white);
  background-color: var(--primary-orange-hover);
}
.button.secondary, .button .secondary {
  color: var(--primary-blue);
  background-color: transparent;
  border: 1px solid var(--primary-blue);
}
.button.secondary:hover, .button .secondary:hover {
  background-color: var(--primary-blue-hover);
}

.page .myLogo {
  margin-top: 1rem;
  transform-origin: bottom left;
  transform: scale(1.25);
  transition: all 0.2s ease-out;
}
.page .myLogo .myColor {
  fill: var(--primary-blue);
}
.page .myLogo.active {
  margin-top: 2rem;
  margin-left: -0.75rem;
  transform: scale(0.75) rotate(-90deg);
}
.page .myLogo.active .myColor {
  fill: var(--primary-yellow);
}

.home .myLogo {
  margin-top: 1rem;
  transform-origin: bottom left;
  transform: scale(1.25);
  transition: all 0.2s ease-out;
}
.home .myLogo .myColor {
  fill: var(--primary-yellow);
}
.home .myLogo.active {
  margin-top: 2rem;
  transform: scale(0.75) rotate(-90deg);
}
.home .myLogo.active .myColor {
  fill: var(--primary-yellow);
}

/* Intersection observer fade */
.fade-up {
  opacity: 0;
  transform: translate3d(0, 5rem, 0);
  transition: transform 1s cubic-bezier(0, 0.5, 0.25, 1), opacity 0.8s cubic-bezier(0, 0.5, 0.25, 1);
}
.fade-up.faded {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.slideFromRight {
  transform: translate3d(50%, 0, 0);
  transition: transform 1s cubic-bezier(0, 0.5, 0.25, 1);
}
.slideFromRight.inView {
  transform: translate3d(0, 0, 0);
}

.slideFromRightSoft {
  opacity: 0;
  transform: translate3d(5%, 0, 0);
  transition: transform 1s cubic-bezier(0, 0.5, 0.25, 1), opacity 0.8s cubic-bezier(0, 0.5, 0.25, 1);
}
.slideFromRightSoft.inView {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.slideFromLeftSoft {
  opacity: 0;
  transform: translate3d(-5%, 0, 0);
  transition: transform 1s cubic-bezier(0, 0.5, 0.25, 1), opacity 0.8s cubic-bezier(0, 0.5, 0.25, 1);
}
.slideFromLeftSoft.inView {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.goleft {
  text-align: left;
}

.goright {
  text-align: right;
}

/* Nav - lists - footer */
nav {
  z-index: 20;
  grid-column: full;
  position: absolute;
  justify-items: center;
}
@media only screen and (min-width: 800px) {
  nav {
    position: relative;
    margin: 3rem 0;
    grid-column: wide;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
nav ul {
  height: auto;
  background-color: var(--primary-white);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  list-style-type: none;
  margin: 0;
  padding: 6rem 0 0 0;
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 800px) {
  nav ul {
    padding: 0;
    height: auto;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
  }
  nav ul.nav-ul {
    background: rgba(240, 242, 244, 0.75);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    padding: 0.25rem;
    border-radius: 1rem;
    transition: background-color 0.2s linear;
  }
  nav ul.nav-ul.active {
    background: rgba(240, 242, 244, 0.75);
  }
  nav ul.nav-ul.active li.selected {
    background: rgba(255, 255, 255, 0.5);
  }
}
nav ul li {
  display: inline-block;
  width: 100vw;
  background: var(--primary-white);
}
nav ul li.selected a {
  color: var(--primary-orange);
}
nav ul li.selected a:hover {
  color: var(--primary-orange);
  border-bottom: 1px solid transparent;
}
@media only screen and (min-width: 800px) {
  nav ul li {
    width: auto;
    background: transparent;
    padding: 0.8rem 0.8rem 0.8rem 0.8rem;
    margin: 0.25rem 0.5rem 0.25rem 0.25rem;
  }
  nav ul li.selected {
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.5);
  }
  nav ul li.selected a {
    color: var(--primary-orange);
  }
  nav ul li.selected a:hover {
    color: var(--primary-orange);
    border-bottom: 1px solid transparent;
  }
}
nav ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--primary-blue);
  padding: 5vh;
  border-bottom: 1px solid transparent;
}
@media only screen and (min-width: 800px) {
  nav ul li a {
    width: auto;
    background: transparent;
    padding: 0.2rem 0rem 0.2rem;
    color: var(--grey-500);
    font-size: 90%;
  }
}
nav ul li a:hover {
  color: var(--link);
  background-color: var(--primary-yellow-40);
}
@media only screen and (min-width: 800px) {
  nav ul li a:hover {
    background: transparent;
    border-bottom: 1px solid var(--link-hover);
  }
}
nav ul li a.active {
  color: var(--primary-white);
  border-bottom: 1px solid transparent;
  background-color: var(--primary-orange);
  top: 0;
  position: relative;
}
@media only screen and (min-width: 800px) {
  nav ul li a.active {
    border-radius: 0.5rem;
  }
}
nav ul li a i {
  opacity: 0.3;
}

.home .nav-ul li.selected {
  background: transparent;
}
.sidebar__trigger {
  display: none;
}
.sidebar__trigger:checked + label > .sidebar__button-open {
  display: block;
}
.sidebar__trigger:checked ~ nav.sidebar .brand {
  top: 1.75rem;
  left: 2rem;
}
.sidebar__trigger:checked ~ nav.sidebar .myColor {
  fill: var(--primary-blue);
}
@media only screen and (min-width: 800px) {
  .sidebar__trigger:checked ~ nav.sidebar .brand {
    top: 0rem;
    left: 0rem;
  }
  .sidebar__trigger:checked ~ nav.sidebar .myColor {
    fill: var(--primary-white);
  }
}
.sidebar__trigger:checked + label > .target-menu ul.menu-wrap li.menu-items {
  transform: rotate(45deg) translateZ(0);
  background-color: var(--primary-blue);
}
.sidebar__trigger:checked + label > .target-menu ul.menu-wrap li.menu-items:last-child {
  transform: rotate(-45deg) translateZ(0);
}
.sidebar__trigger:not(:checked) ~ nav.sidebar {
  transform: translateY(-110%);
}
.sidebar__trigger:not(:checked) ~ nav.sidebar .brand {
  top: calc(107% + 2.5rem);
  left: 2rem;
}
@media only screen and (min-width: 800px) {
  .sidebar__trigger:not(:checked) ~ nav.sidebar .brand {
    top: 0;
    left: 0;
  }
}

@media only screen and (min-width: 800px) {
  .sidebar__trigger:not(:checked) ~ nav.sidebar,
  .sidebar__trigger:checked ~ nav.sidebar {
    transform: translateX(0%);
    top: 0;
  }
}
/* hamburger menu */
.target-menu {
  display: block;
  position: absolute;
  display: block;
  transition: 0.25s;
  color: var(--primary-blue);
  top: 2.5rem;
  right: 2.5rem;
  z-index: 999;
}
@media only screen and (min-width: 800px) {
  .target-menu {
    display: none;
  }
}

.menu-wrap {
  width: 1.625em;
  height: 1.625em;
  list-style: none;
  padding: 0;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateZ(0);
  color: var(--primary-blue);
}
.menu-wrap .menu-items {
  width: 100%;
  height: 2px;
  background-color: var(--primary-blue);
  position: absolute;
  top: 50%;
  margin-top: -0.75px;
  transform: translateY(-3.75px) translateZ(0);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-wrap .menu-items:last-child {
  transform: translateY(3.75px) translateZ(0);
}

.page .target-menu .menu-items {
  background-color: var(--primary-blue);
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
header {
  grid-column: full;
  display: grid;
  grid-template-columns: [full-start] minmax(5vw, 1fr) [wide-start] minmax(5vw, 40px) [normal-start] minmax(auto, 100vw) [normal-end] minmax(5vw, 40px) [wide-end] minmax(5vw, 1fr) [full-end];
  position: relative;
  z-index: 999;
}
header .brand {
  z-index: 21;
  position: absolute;
}
@media only screen and (min-width: 800px) {
  header .brand {
    position: relative;
  }
}
header .brand .nav-logo {
  width: 25%;
  max-width: 200px;
  min-width: 160px;
  z-index: 222;
}
@media only screen and (min-width: 800px) {
  header {
    position: fixed;
  }
}

.hero {
  contain: paint;
  display: grid;
  grid-column: full;
  grid-template-columns: [full-start] minmax(5vw, 1fr) [wide-start] minmax(5vw, 40px) [normal-start] minmax(auto, 1440px) [normal-end] minmax(5vw, 40px) [wide-end] minmax(5vw, 1fr) [full-end];
}
.hero.home .title {
  font: clamp(4rem, 16vw, 16rem) "Manrope", Helvetica, arial, sans-serif;
  line-height: 1.25;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 90%;
  margin: 10vh 0 0 0;
}
.hero.home .title span {
  margin-left: 7.5vw;
  color: var(--primary-yellow);
}
.hero.home .description {
  max-width: 85%;
}
@media only screen and (min-width: 800px) {
  .hero.home .description {
    max-width: 60%;
  }
}
.hero .hero-content {
  grid-column: wide;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2rem 0rem 4rem;
  min-height: 65vh;
}
.hero .hero-content.home {
  grid-column: wide;
  margin: 0 auto;
  min-height: 100vh;
  justify-content: space-between;
}
@media only screen and (min-width: 800px) {
  .hero .hero-content {
    padding: 4rem 0rem 8rem;
    grid-column: normal;
  }
}
.hero .hero-content .hero-item-logo img {
  width: 150px;
}
.hero .hero-content .hero-item-content {
  grid-column: wide;
  position: relative;
  max-width: 100%;
  margin-top: 0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80%;
}
.hero .hero-content .hero-item-content.home {
  color: var(--primary-blue);
  justify-content: space-between;
}
@media only screen and (min-width: 800px) {
  .hero .hero-content .hero-item-content.home {
    height: 85vh;
    margin-top: 0rem;
  }
}
@media only screen and (min-width: 800px) {
  .hero .hero-content .hero-item-content {
    margin-top: 4rem;
    justify-content: end;
  }
}
.hero .hero-image {
  overflow: hidden;
}
.hero .hero-image img {
  mix-blend-mode: color-burn;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  max-width: 1100px;
  height: auto;
}
@media only screen and (min-width: 800px) {
  .hero .hero-image img {
    width: 80vw;
  }
}

.pre-footer {
  grid-column: wide;
  display: grid;
  grid-template-columns: [normal-start] repeat(4, 1fr) [normal-end];
  grid-template-rows: [row-start] auto 1fr [row-end];
}
@media only screen and (min-width: 800px) {
  .pre-footer {
    grid-column: normal;
  }
}
.pre-footer .content {
  grid-column: normal;
  grid-row: row-start;
  margin-right: 0rem;
  margin-bottom: 5vh;
}
@media only screen and (min-width: 800px) {
  .pre-footer .content {
    grid-column: normal/3;
    grid-row: row-start/2;
    margin-right: 4rem;
  }
}
.pre-footer .shape-1 {
  z-index: 2;
  grid-column: normal/3;
  grid-row: 2/row-end;
  align-self: end;
}
.pre-footer .shape-1 img {
  max-width: 65%;
  transform: translateY(2px);
}
.pre-footer .shape-2 {
  z-index: 1;
  grid-column: 3/3;
  grid-row: 2/row-end;
  align-self: end;
  position: relative;
  left: -60%;
}
.pre-footer .shape-2 img {
  max-width: 100%;
  transform: translateY(2px);
}
.pre-footer .shape-3 {
  z-index: 2;
  grid-column: 3/normal;
  grid-row: 2/row-end;
  align-self: end;
  justify-self: end;
}
.pre-footer .shape-3 img {
  max-width: 100%;
  transform: translateY(2px);
}
@media only screen and (min-width: 800px) {
  .pre-footer .shape-3 {
    grid-row: row-start/row-end;
  }
}
.pre-footer .shape-4 {
  z-index: 2;
  grid-column: 4/normal;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  position: relative;
  left: 75%;
  top: 15%;
  animation: 16s ease-in-out infinite float;
}
.pre-footer .shape-4 img {
  max-width: 100%;
}
@media only screen and (min-width: 800px) {
  .pre-footer .shape-4 {
    grid-row: row;
  }
}

footer {
  z-index: 4;
  margin-top: -5.35vh;
  color: var(--primary-white);
  background-color: var(--primary-blue);
  padding: 5vh 0;
  grid-column: full;
  display: grid;
  grid-template-columns: [full-start] minmax(2rem, 1fr) [wide-start] minmax(2rem, 40px) [normal-start] repeat(4, 2fr) [normal-end] minmax(2rem, 40px) [wide-end] minmax(2rem, 1fr) [full-end];
}
@media only screen and (min-width: 800px) {
  footer {
    padding: 10vh 0;
  }
}
footer .content {
  grid-column: normal;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 800px) {
  footer .content {
    flex-direction: row;
  }
}
footer .content p {
  opacity: 0.66;
  margin-right: 0rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 800px) {
  footer .content p {
    margin-bottom: 0rem;
    margin-right: 4rem;
  }
}
footer .content .logo img {
  max-width: clamp(15rem, 20vw, 20rem);
}

.align-right {
  float: right;
  width: 100%;
  margin: 0 0 2rem 0;
}
@media only screen and (min-width: 768px) {
  .align-right {
    width: 50%;
    margin: 0 0 2rem 4rem;
  }
}

.align-left {
  float: left;
  width: 100%;
  margin: 0 0 2rem 0;
}
@media only screen and (min-width: 768px) {
  .align-left {
    width: 50%;
    margin: 0 4rem 2rem 0;
  }
}

:root {
  --primary-blue: #2f3857;
  --primary-orange: #e47553;
  --primary-yellow: #fdde8e;
  --primary-white: #ffffff;
  --primary-yellow-light: #fef1d0;
  --primary-orange-hover: #e85b1e;
  --primary-blue-hover: rgba(47, 56, 87, 0.1);
  --link: #48a2da;
  --link-hover: #1d8fd7;
  --primary-yellow-40: rgba(254, 241, 208, 0.7);
  --secondary-color: rgb(34, 34, 34);
  --secondary-color-faded: rgba(34, 34, 34, 0.25);
  --highlight-color: hsla(214, 86%, 94%, 100%);
  --difference-color: rgba(90, 108, 118, 0.33);
  --difference-color-ring: #dd9446;
  --highlight-color: rgb(218, 233, 255);
  --highlight-hover: rgba(255, 255, 255, 0.5);
  --primary-text-color: #5a6c76;
  --primary-text-hover: #d06b00;
  --body: rgb(241, 241, 241);
  --body-transparent: rgba(241, 241, 241, 0.82);
  --separator: rgb(214, 214, 214);
  --grey-100: hsl(210, 14%, 95%);
  --grey-200: hsl(210, 14%, 87%);
  --grey-300: hsl(210, 14%, 80%);
  --grey-400: hsl(210, 13%, 65%);
  --grey-500: hsl(211, 10%, 55%);
  --grey-600: hsl(210, 8%, 45%);
  --grey-900: hsl(210, 14%, 87%);
  --svg-dark: rgb(34, 34, 34);
  --svg-light: rgb(131, 136, 142);
  --svg-body: rgb(241, 241, 241);
}

h1 {
  font: clamp(2.75rem, 4vw, 6rem) "Manrope", Helvetica, arial, sans-serif;
  line-height: 1.25;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 125%;
  padding-bottom: 5%;
}

h2 {
  font: clamp(2.35rem, 2.75vw, 3.75rem) "Manrope", Helvetica, arial, sans-serif;
  line-height: 1.25;
  letter-spacing: 0.01rem;
  font-weight: 500;
  padding-bottom: 0;
}
h2.faded {
  opacity: 0.5;
}
h2 span {
  color: var(--primary-orange);
}

h3 {
  font: 1em "Manrope", Helvetica, arial, sans-serif;
  line-height: 1.25;
  font-weight: 500;
  padding-bottom: 1em;
}

h4 {
  font: clamp(1.5rem, 1vw, 1.75rem) "Manrope", Helvetica, arial, sans-serif;
  line-height: 1.25;
  display: inline-block;
  letter-spacing: 0.01rem;
  font-weight: 600;
  margin: 0;
}
@media only screen and (min-width: 800px) {
  h4 {
    margin: 2rem 0 0.75rem;
  }
}

p {
  line-height: 150%;
  letter-spacing: 0.015em;
  font: clamp(1rem, 1.5vw, 1.25rem) "Manrope", Helvetica, arial, sans-serif;
}
p.small {
  font-size: 90%;
}
p.large {
  font: clamp(1.25rem, 1.75vw, 2rem) "Manrope", Helvetica, arial, sans-serif;
  font-weight: 300;
}

.tag {
  font: clamp(1rem, 1vw, 1.5rem) "Manrope", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.25;
  display: inline-block;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  color: var(--primary-white);
  background-color: var(--primary-blue);
}

.item {
  grid-column: normal;
}
.item:last-of-type {
  padding-bottom: 5vh;
}

.item-flex {
  z-index: 2;
  grid-column: wide;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0vw;
  margin: 3rem 0 4rem 0;
  overflow: visible;
}
.item-flex.wide {
  grid-column: wide;
}
@media only screen and (min-width: 800px) {
  .item-flex {
    margin: 7rem 0 8rem 0;
    flex-direction: row;
    align-items: center;
    grid-column: normal;
    gap: 5vw;
  }
}
.item-flex.flipped {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 800px) {
  .item-flex.flipped {
    flex-direction: row-reverse;
  }
}
.item-flex.mobileFlipped {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 800px) {
  .item-flex.mobileFlipped {
    flex-direction: row;
  }
}
.item-flex .image {
  flex-grow: 1;
  flex-basis: 0;
}
.item-flex .image.right {
  margin: 2rem 1.5rem 0 0;
}
.item-flex .image.image40 {
  max-width: 100%;
  margin: 0 0 2rem 0rem;
}
@media only screen and (min-width: 800px) {
  .item-flex .image.image40 {
    max-width: 40%;
    margin: 0;
  }
}
@media only screen and (min-width: 800px) {
  .item-flex .image.right {
    margin: 0;
  }
}
.item-flex .image img {
  max-width: 100%;
}
.item-flex .image video {
  max-width: 100%;
}
.item-flex .content {
  flex-grow: 1;
  flex-basis: 0;
}
.item-flex .content.sticky {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.item-flex .content.sticky .sticky-container {
  height: 100%;
}
.item-flex .content.sticky .sticky-container .sticky-item {
  position: sticky;
  top: 3.5rem;
  margin-bottom: 2rem;
}
.item-flex .content.sticky .sticky-container .sticky-item.right {
  top: 7.5rem;
}
.item-flex .content.max30 {
  max-width: 100%;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 800px) {
  .item-flex .content.max30 {
    max-width: 30%;
    margin-bottom: 0rem;
  }
}
.item-flex .content h2 {
  margin-bottom: 1rem;
}
.item-flex .content .ctas {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
}
.item-flex .content .ctas .button:first-of-type {
  margin-right: 0rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 800px) {
  .item-flex .content .ctas .button:first-of-type {
    margin-right: 2rem;
    margin-bottom: 0rem;
  }
}
@media only screen and (min-width: 800px) {
  .item-flex .content .ctas {
    flex-direction: row;
  }
}
.item-flex.banner {
  flex-direction: column;
  background-color: var(--primary-yellow-40);
  border-radius: 3rem;
  padding: 5vh 2.5vh;
  margin: 0 auto 15vh;
  gap: 2.5vw;
}
@media only screen and (min-width: 800px) {
  .item-flex.banner {
    padding: 10vh 10vh;
  }
}
.item-flex.banner h1 {
  line-height: 100%;
  margin: 0;
  padding: 0;
}
.item-flex.banner p {
  text-align: left;
}
@media only screen and (min-width: 800px) {
  .item-flex.banner p {
    text-align: center;
  }
}
.item-flex.banner.dark {
  background-color: var(--primary-blue);
}
.item-flex.banner.dark h1 {
  color: var(--primary-white);
  line-height: 100%;
  margin: 0;
  padding: 0;
}
.item-flex.banner.dark p {
  color: var(--primary-white);
  text-align: center;
}
.item-flex .card {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: stretch;
  align-self: stretch;
  padding: 10vw;
  background-color: var(--primary-yellow-40);
  border-radius: 1rem;
  margin: 0 0 5vw 0;
  gap: 10vw;
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.item-flex .card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 32px 48px -16px rgba(0, 0, 0, 0.3);
}
.item-flex .card .content h2 {
  color: var(--primary-blue);
  padding: 4rem 0 1rem;
}
.item-flex .card .content img {
  margin: 0 0 1.5rem 0;
}
.item-flex .card:nth-child(2) {
  background-color: var(--primary-blue);
  color: var(--primary-white);
}
.item-flex .card:nth-child(2) h2 {
  color: var(--primary-white);
}
@media only screen and (min-width: 800px) {
  .item-flex .card {
    padding: 5vw;
    gap: 5vw;
  }
}

.item-full {
  grid-column: full;
  display: grid;
  grid-template-columns: [full-start] minmax(5vw, 1fr) [wide-start] minmax(5vw, 40px) [normal-start] minmax(auto, 1440px) [normal-end] minmax(5vw, 40px) [wide-end] minmax(5vw, 1fr) [full-end];
  gap: 0;
  padding: 4rem 0;
  background: var(--primary-yellow-light);
}
@media only screen and (min-width: 800px) {
  .item-full {
    padding: 8rem 0;
  }
}
.item-full.withBgBlue {
  background-color: var(--primary-blue);
  color: var(--primary-white);
  margin: 0rem 0 4rem 0;
}
@media only screen and (min-width: 800px) {
  .item-full.withBgBlue {
    margin: 0rem 0 8rem 0;
  }
}
.item-full .item-flex {
  margin: 0rem 0 0rem 0;
}

.item-row {
  grid-column: wide;
  display: flex;
  flex-direction: column;
  gap: 0vw;
}
@media only screen and (min-width: 800px) {
  .item-row {
    grid-column: normal;
  }
}
.item-row.title {
  max-width: 100%;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 800px) {
  .item-row.title {
    max-width: 70%;
    margin-bottom: 6rem;
  }
}

.item-flex-3 {
  grid-column: wide;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0vw;
  margin: 0;
}
@media only screen and (min-width: 800px) {
  .item-flex-3 {
    align-items: stretch;
    flex-direction: row;
    grid-column: normal;
    gap: 5vw;
  }
}
.item-flex-3 .item-in-flex {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  margin: 0 0 2rem;
  background: var(--primary-white);
  border-radius: 0.35rem;
  padding: 2rem;
}
@media only screen and (min-width: 800px) {
  .item-flex-3 .item-in-flex {
    flex-direction: column;
    max-width: 30%;
    margin: 0;
  }
}
.item-flex-3 .item-in-flex .image {
  flex-grow: 1;
  flex-basis: 0;
  padding: 0 2rem 0rem 0rem;
}
@media only screen and (min-width: 800px) {
  .item-flex-3 .item-in-flex .image {
    padding: 0 4rem 4rem 1rem;
  }
}
.item-flex-3 .item-in-flex .image img {
  width: 10vw;
}
@media only screen and (min-width: 800px) {
  .item-flex-3 .item-in-flex .image img {
    width: 5vw;
  }
}
.item-flex-3 .item-in-flex .image video {
  max-width: 100%;
}
.item-flex-3 .item-in-flex .content {
  flex-grow: 10;
  flex-basis: 0;
}
.item-flex-70-30 {
  z-index: 2;
  grid-column: wide;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0vw;
  margin: 0;
}
@media only screen and (min-width: 800px) {
  .item-flex-70-30 {
    align-items: center;
    flex-direction: row;
    grid-column: normal;
    gap: 5vw;
  }
}
.item-flex-70-30.flipped {
  flex-direction: column;
}
@media only screen and (min-width: 800px) {
  .item-flex-70-30.flipped {
    flex-direction: row-reverse;
  }
}
.item-flex-70-30 .image {
  flex-grow: 10;
  flex-basis: 0;
  padding-bottom: 2.5vh;
}
@media only screen and (min-width: 800px) {
  .item-flex-70-30 .image {
    padding-bottom: 0vh;
  }
}
.item-flex-70-30 .image img {
  width: 100%;
}
.item-flex-70-30 .image video {
  max-width: 100%;
}
.item-flex-70-30 .content {
  flex-grow: 2;
  flex-basis: 0;
}
.merci {
  opacity: 1;
  z-index: 2;
  grid-column: wide;
  display: grid;
  grid-template-columns: [normal-start] repeat(4, 2fr) [normal-end];
  grid-template-rows: auto;
}
@media only screen and (min-width: 800px) {
  .merci {
    grid-template-rows: [row-start] repeat(2, 1fr) [row-end];
    grid-column: normal;
  }
}
.merci .illustration {
  grid-column: normal;
  grid-row: 2/3;
  position: relative;
  mix-blend-mode: darken;
}
@media only screen and (min-width: 800px) {
  .merci .illustration {
    grid-column: wide;
    grid-row: row-start/row-end;
  }
}
.merci .illustration video {
  bottom: 0;
  height: 25vh;
  width: 100%;
}
@media only screen and (min-width: 800px) {
  .merci .illustration video {
    height: 100%;
    width: 40vw;
    padding-right: 7.5vw;
  }
}
.merci .content {
  grid-column: normal;
  grid-row: 1/3;
  padding: 5vh 0 7.5vh;
}
@media only screen and (min-width: 800px) {
  .merci .content {
    grid-column: wide;
    grid-row: 1/3;
    padding: 15vh 0 0;
  }
}
.merci .content .content-text {
  display: flex;
  margin-left: 0%;
  margin-bottom: 23vh;
  flex-direction: column;
}
@media only screen and (min-width: 800px) {
  .merci .content .content-text {
    margin-left: 55%;
    margin-bottom: 5vh;
  }
}