:root {
  --size-1: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
  --size-2: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
  --size-3: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  --size-4: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  --size-5: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
  --size-6: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
  --size-7: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
  --size-8: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
  --size-9: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}

@font-face {
  font-family: "authenia";
  src: url("/fonts/authenia/font.woff2") format("woff2"), url("fonts/authenia/font.woff") format("woff");
}
:root {
  --neutral-100: white;
  --neutral-200: #F7F7F7;
  --neutral-900: black;
  --accent-400: #002654;
  --primary-400: #66C6C1;
  --white-opacity-100: rgba(255, 255, 255, 0.1);
  --white-opacity-200: rgba(255, 255, 255, 0.2);
  --white-opacity-300: rgba(255, 255, 255, 0.3);
  --white-opacity-400: rgba(255, 255, 255, 0.4);
  --white-opacity-500: rgba(255, 255, 255, 0.5);
  --white-opacity-600: rgba(255, 255, 255, 0.6);
  --white-opacity-700: rgba(255, 255, 255, 0.7);
  --white-opacity-800: rgba(255, 255, 255, 0.8);
  --white-opacity-900: rgba(255, 255, 255, 0.9);
  --black-opacity-50: rgba(0, 0, 0, 0.05);
  --black-opacity-100: rgba(0, 0, 0, 0.1);
  --black-opacity-200: rgba(0, 0, 0, 0.2);
  --black-opacity-300: rgba(0, 0, 0, 0.3);
  --black-opacity-400: rgba(0, 0, 0, 0.4);
  --black-opacity-500: rgba(0, 0, 0, 0.5);
  --black-opacity-600: rgba(0, 0, 0, 0.6);
  --black-opacity-700: rgba(0, 0, 0, 0.7);
  --black-opacity-800: rgba(0, 0, 0, 0.8);
  --black-opacity-900: rgba(0, 0, 0, 0.9);
  --danger-400: #FF1100;
  --success-400: #51cb00;
}

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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
  font-weight: unset;
  font-size: unset;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

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

svg {
  overflow: visible;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  font-family: "elza", sans-serif;
  font-weight: 400;
  font-size: clamp(1.00rem, calc(0.96rem + 0.19vw), 1.13rem);
  color: var(--neutral-900);
  background-color: var(--neutral-100);
}

main {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 80px;
}
@media screen and (min-width: 62em) {
  main {
    padding-top: 85px;
  }
  main.has-hero {
    padding-top: 0;
  }
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

p {
  line-height: 1.5;
  text-wrap: pretty;
}

a {
  display: inline-block;
  color: inherit;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul[data-type=list] {
  margin: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem) 0;
  padding-left: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
ul[data-type=list] li {
  line-height: 1.6;
  list-style: disc;
}

ol {
  margin: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem) 0;
  padding-left: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
ol li {
  line-height: 1.6;
}

#main-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0.1em);
  -webkit-backdrop-filter: blur(0.1em);
}

.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.button {
  line-height: 1.2;
  text-decoration: none;
  display: flex;
  justify-self: start;
  justify-content: start;
  align-self: start;
  cursor: pointer;
}
.button .btn-content {
  border-radius: 0.2em;
  padding: 0.8em 1em;
  position: relative;
  overflow: hidden;
}
.button .btn-content .btn-mask {
  z-index: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}
.button .btn-content .btn-mask .btn-text {
  color: #fff;
  --text-duplicate-distance: 1.5em;
  text-shadow: 0px var(--text-duplicate-distance) currentColor;
  transition: all 0.5s cubic-bezier(0.625, 0.05, 0, 1);
  font-weight: 500;
}
.button .btn-content .btn-bg {
  z-index: 0;
  width: 120%;
  height: 100%;
  position: absolute;
  bottom: 0%;
  left: -10%;
  transform: translate(0, 175%) rotate(15deg);
  transition: all 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}
.button[data-icon] .btn-content {
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.button[data-icon] .btn-content svg {
  position: relative;
  z-index: 1;
}
.button[data-icon] .btn-content svg path {
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  transition: all 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}
.button[data-type=primary] .btn-content {
  background-color: var(--primary-400);
}
.button[data-type=primary] .btn-content .btn-mask .btn-text {
  color: var(--neutral-900);
}
.button[data-type=primary] .btn-content .btn-bg {
  background-color: var(--accent-400);
}
.button[data-type=primary] .btn-content svg path {
  stroke: var(--neutral-100);
}
.button[data-type=primary-white] .btn-content {
  background-color: var(--primary-400);
}
.button[data-type=primary-white] .btn-content .btn-mask .btn-text {
  color: var(--neutral-900);
}
.button[data-type=primary-white] .btn-content .btn-bg {
  background-color: var(--neutral-100);
}
.button[data-type=primary-white] .btn-content svg path {
  stroke: var(--neutral-100);
}
.button[data-type=white] .btn-content {
  background-color: var(--neutral-100);
}
.button[data-type=white] .btn-content .btn-mask .btn-text {
  color: var(--neutral-900);
}
.button[data-type=white] .btn-content .btn-bg {
  background-color: var(--primary-400);
}
.button[data-type=white] .btn-content svg path {
  stroke: var(--neutral-900);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover .btn-content .btn-mask .btn-text {
    transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
  }
  .button:hover .btn-content .btn-bg {
    transform: translate(0px, 0%) rotate(0deg);
  }
  .button:hover[data-type=primary] .btn-content .btn-mask .btn-text {
    color: var(--neutral-100);
  }
  .button:hover[data-type=primary-white] .btn-content .btn-mask .btn-text {
    color: var(--neutral-900);
  }
}

.underline-link {
  color: inherit;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
}
.underline-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.08em;
  background-color: var(--neutral-900);
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1), background-color 0.5s cubic-bezier(0.625, 0.05, 0, 1), color 0.5s cubic-bezier(0.625, 0.05, 0, 1);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
}
.underline-link:hover::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
}
.underline-link.alt::before, .underline-link.alt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.08em;
  background-color: var(--neutral-900);
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1), background-color 0.5s cubic-bezier(0.625, 0.05, 0, 1), color 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}
.underline-link.alt::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
  transition-delay: 0.3s, 0s, 0s;
}
.underline-link.alt::after {
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
  transition-delay: 0s;
}
.underline-link.alt:hover::before {
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
  transition-delay: 0s;
}
.underline-link.alt:hover::after {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
  transition-delay: 0.3s, 0s, 0s;
}

.case-study-card {
  text-decoration: none;
}
.case-study-card a.image-link {
  width: 100%;
}
.case-study-card .image {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.case-study-card .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  display: grid;
  align-items: center;
  background-color: var(--neutral-100);
  transition: all 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}
header div.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a.logo {
  overflow: hidden;
  width: 100%;
  max-width: 10rem;
  margin-top: 5px;
  transition: 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}
header a.logo path.text {
  transition: 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}
header ul {
  display: none;
}
header button.nav-menu-toggle {
  pointer-events: auto;
  cursor: pointer;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  display: flex;
  position: relative;
  border: 0;
}
header button.nav-menu-toggle .menu-bar {
  transition: all 0.5s cubic-bezier(0.625, 0.05, 0, 1);
  background-color: #131313;
  width: 1.875em;
  height: 0.125em;
  position: absolute;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0, 1);
  transform: translateY(-0.25em) rotate(0.001deg);
}
header button.nav-menu-toggle .menu-bar:nth-child(2) {
  transform: translateY(0.15em) rotate(0.001deg);
}
header.hero ul {
  color: var(--neutral-100);
}
header.hero .underline-link::before {
  background-color: var(--neutral-100);
}
header.hero .underline-link.alt::before, header.hero .underline-link.alt::after {
  background-color: var(--neutral-100);
}
header[data-navigation-status=active] button.nav-menu-toggle .menu-bar {
  transform: translateY(0em) rotate(45deg);
}
header[data-navigation-status=active] button.nav-menu-toggle .menu-bar:nth-child(2) {
  transform: translateY(0em) rotate(-45deg);
}
@media screen and (min-width: 62em) {
  header {
    height: 85px;
  }
  header button.nav-menu-toggle {
    display: none;
  }
  header.hero {
    background-color: transparent;
  }
  header.hero a.logo path.text {
    fill: var(--neutral-100);
  }
  header a.logo {
    max-width: 11rem;
  }
  header ul {
    display: flex;
    align-items: center;
    gap: 1.2em;
    transition: 0.5s cubic-bezier(0.625, 0.05, 0, 1);
    overflow: hidden;
  }
  header ul li.btn-li {
    margin-left: 0.5em;
  }
  header .button .btn-content {
    padding: 0.7em 0.8em;
  }
}

[data-scrolling-started=true] header {
  background-color: var(--neutral-100);
}
[data-scrolling-started=true] header a.logo path.text {
  fill: var(--neutral-900);
}
[data-scrolling-started=true] header ul {
  color: var(--neutral-900);
}
[data-scrolling-started=true] header .underline-link::before {
  background-color: var(--neutral-900);
}
[data-scrolling-started=true] header .underline-link.alt::before, [data-scrolling-started=true] header .underline-link.alt::after {
  background-color: var(--neutral-900);
}

:root {
  --menu-padding: 2em;
}

.nav {
  z-index: 100;
  width: 100%;
  height: 100vh;
  height: 100svh;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: fixed;
  inset: 0%;
  top: 80px;
}
.nav .overlay {
  z-index: 0;
  cursor: pointer;
  background-color: #13131366;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}
.nav nav.menu {
  display: flex;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  margin-left: auto;
  position: relative;
  overflow: auto;
}
.nav nav.menu .menu-bg {
  z-index: 0;
  position: absolute;
  inset: 0%;
}
.nav nav.menu .menu-bg .bg-panel {
  z-index: 0;
  background-color: var(--neutral-200);
  position: absolute;
  inset: 0%;
}
.nav nav.menu .menu-bg .bg-panel.first {
  background-color: var(--primary-400);
}
.nav nav.menu .menu-bg .bg-panel.second {
  background-color: var(--accent-400);
}
.nav nav.menu .menu-inner {
  padding-top: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
  padding-bottom: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
  z-index: 1;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: auto;
  margin-inline: 5%;
}
.nav nav.menu .menu-inner .menu-list {
  width: 100%;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
@media (hover: hover) and (pointer: fine) {
  .nav nav.menu .menu-inner .menu-list > li {
    transition: opacity 0.2s ease;
  }
  .nav nav.menu .menu-inner .menu-list:hover > li:not(:hover) {
    opacity: 0.2;
  }
}
.nav nav.menu .menu-inner .menu-list-item {
  position: relative;
  overflow: hidden;
}
.nav nav.menu .menu-inner .menu-list-item.active a.menu-link p.menu-link-heading {
  color: var(--primary-400);
}
.nav nav.menu .menu-link {
  padding-block: 0.5em;
  width: 100%;
  text-decoration: none;
}
.nav nav.menu .menu-link-heading {
  font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
  font-weight: 600;
  line-height: 1.2;
}

footer div.logo {
  max-width: 12rem;
}
footer h4 {
  padding-bottom: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  color: var(--white-opacity-600);
}
footer ul {
  display: grid;
  gap: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
footer ul li {
  line-height: 1.4;
}
footer a {
  text-decoration: none;
}

.input-wrapper {
  display: grid;
  margin-bottom: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.input-wrapper label {
  padding-bottom: 0.8em;
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
}
.input-wrapper input, .input-wrapper select, .input-wrapper textarea {
  background-color: var(--neutral-100);
  border: 1px solid var(--black-opacity-50);
  outline: none;
  padding: 0.8em 1em;
}
.input-wrapper input:focus, .input-wrapper select:focus, .input-wrapper textarea:focus {
  border: 1px solid var(--black-opacity-300);
}
.input-wrapper select {
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background-repeat: no-repeat;
  background-position: calc(100% - 0.75em) 50%;
  background-size: 1.8em;
}
.input-wrapper textarea {
  resize: vertical;
}
.input-wrapper.required label::after {
  content: "*";
  color: var(--danger-400);
  padding-left: 0.1em;
}
.input-wrapper.required .error-text {
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
  color: var(--danger-400);
  padding-top: 0.6em;
}
.input-wrapper.required.error input, .input-wrapper.required.error select, .input-wrapper.required.error textarea {
  border: 1px solid var(--danger-400);
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 20.5C16.0228 20.5 20.5 16.0228 20.5 10.5C20.5 4.97715 16.0228 0.5 10.5 0.5C4.97715 0.5 0.5 4.97715 0.5 10.5C0.5 16.0228 4.97715 20.5 10.5 20.5Z' fill='%23FFF2F1' stroke='%23FF1100' vector-effect='non-scaling-stroke'/%3E%3Cpath d='M10.5 5.5V12.8846' stroke='%23FF1100'/%3E%3Cpath d='M10.5 15.7314V14.1929' stroke='%23FF1100' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) 50%;
}

section.testimonial-section, section.how-we-work {
  padding: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem) 0 clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem) 0;
}
@media screen and (min-width: 75em) {
  section.testimonial-section, section.how-we-work {
    padding: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem) 0 clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem) 0;
  }
}

.title-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-grid .count {
  display: grid;
  align-items: center;
  gap: 0.5em;
  color: var(--black-opacity-300);
  user-select: none;
  padding-top: 0.2em;
  grid-column: 2/3;
  grid-row: 1/2;
}
.title-grid .count .next-button, .title-grid .count .previous-button {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0.45em 0.3em 0.3em 0.3em;
}
.title-grid .count .next-button svg, .title-grid .count .previous-button svg {
  width: 1.3rem;
}
.title-grid .count .next-button svg path, .title-grid .count .previous-button svg path {
  vector-effect: non-scaling-stroke;
  stroke-width: 1.5;
}
.title-grid .count .next-button.disabled, .title-grid .count .previous-button.disabled {
  pointer-events: none;
  opacity: 0.3;
}

#work-carousel {
  --f-carousel-slide-width: calc((100% - 15px) / 1.01);
  --f-carousel-gap: 15px;
}
#work-carousel .f-carousel__viewport {
  overflow: visible;
}
#work-carousel .f-carousel__slide {
  text-decoration: none;
  background-color: var(--neutral-100);
  padding: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--black-opacity-50);
}
#work-carousel .f-carousel__slide div.bottom {
  margin-top: auto;
  padding-top: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  justify-content: space-between;
  align-items: center;
}
#work-carousel .f-carousel__slide div.bottom p {
  line-height: 1.3;
}
#work-carousel .f-carousel__slide div.bottom svg, #work-carousel .f-carousel__slide div.bottom img {
  width: 100%;
  max-width: 7rem;
}

@media (min-width: 550px) {
  .title-grid .count {
    padding-top: 0;
    justify-items: center;
    grid-template-columns: 2rem 6ch 2rem;
  }
  .title-grid .count .next-button, .title-grid .count .previous-button {
    display: block;
  }
}
@media screen and (min-width: 48em) {
  #work-carousel {
    --f-carousel-slide-width: calc((100% - 25px) / 2);
    --f-carousel-gap: 25px;
  }
}
@media screen and (min-width: 62em) {
  #work-carousel {
    --f-carousel-slide-width: calc((100% - 50px) / 3);
  }
}
.quote-wrapper {
  display: grid;
  gap: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
  margin-top: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.quote-wrapper .quote {
  display: flex;
  flex-direction: column;
  order: 2;
}
.quote-wrapper .quote svg {
  width: 3.3em;
}
.quote-wrapper .quote p {
  padding-top: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  padding-bottom: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  line-height: 1.25;
  max-width: 45ch;
}
.quote-wrapper .quote span.who-by {
  display: block;
}
.quote-wrapper .quote a.button {
  margin-top: auto;
}
@media screen and (min-width: 62em) {
  .quote-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
  }
  .quote-wrapper .quote {
    order: unset;
  }
  .quote-wrapper .quote p {
    max-width: unset;
  }
}

a.testimonial-video {
  width: 100%;
  position: relative;
  text-decoration: none;
  height: 0;
  padding-bottom: 56.25%;
  /* 9/16 aspect ratio */
}
a.testimonial-video video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a.testimonial-video div.watch {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  margin: 1em;
}
a.testimonial-video .arrow {
  display: flex;
  align-items: end;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translate(5%, -115%);
  gap: 0.7em;
}
a.testimonial-video .arrow p {
  text-align: center;
  font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
  font-family: "authenia";
  line-height: 0.9;
  text-wrap: balance;
  transform: translateY(-0.51em);
}
a.testimonial-video .arrow svg {
  width: 4em;
  transform: scaleY(-1) rotate(20deg) translateY(-1em);
}
@media screen and (min-width: 48em) {
  a.testimonial-video .arrow {
    display: flex;
    align-items: end;
    position: absolute;
    top: unset;
    bottom: 0;
    left: unset;
    right: 0;
    z-index: 2;
    transform: translate(-5%, 130%);
    gap: 0.5em;
  }
  a.testimonial-video .arrow p {
    text-align: center;
    font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
    font-family: "authenia";
    line-height: 0.9;
    text-wrap: balance;
    transform: translateY(0.9em);
  }
  a.testimonial-video .arrow svg {
    width: unset;
    transform: unset;
    order: -1;
    transform: scaleX(-1);
  }
}
@media screen and (min-width: 62em) {
  a.testimonial-video .arrow {
    display: flex;
    align-items: end;
    position: absolute;
    top: unset;
    bottom: 0;
    left: 35%;
    z-index: 2;
    transform: translate(-15%, 115%);
    gap: 0.5em;
  }
  a.testimonial-video .arrow p {
    text-align: center;
    font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
    font-family: "authenia";
    line-height: 0.9;
    text-wrap: balance;
    transform: translateY(0.9em);
  }
  a.testimonial-video .arrow svg {
    order: unset;
    transform: unset;
  }
}
@media screen and (min-width: 75em) {
  a.testimonial-video .arrow p {
    transform: translateY(0.9em);
  }
}
@media (hover: hover) and (pointer: fine) {
  a.testimonial-video:hover div.watch {
    border: 1px solid var(--white-opacity-300);
  }
}

ul[data-type=shield],
ul[data-type=shield-dark] {
  display: grid;
  gap: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
  padding-top: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
ul[data-type=shield] li,
ul[data-type=shield-dark] li {
  display: grid;
  grid-template-columns: 0.5rem 1fr;
  gap: 0.4em;
  align-items: center;
}
ul[data-type=shield] li::before,
ul[data-type=shield-dark] li::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.1em;
  background-color: var(--accent-400);
}

ul[data-type=shield-dark] li::before {
  background-color: var(--primary-400);
}

.accordion-tag {
  border-radius: 0.25rem 0.25rem 0 0;
  padding: 0.25em 1em;
  backdrop-filter: blur(10px);
  margin: 0 2rem;
  display: grid;
  justify-self: start;
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
  width: max-content;
}

.accordion {
  position: relative;
}
.accordion ul.accordion-list {
  grid-column-gap: 0.5em;
  grid-row-gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
  flex-flow: column;
  display: flex;
  position: static;
}
.accordion ul.accordion-list li.accordion-item {
  background-color: var(--neutral-100);
  border: 1px solid var(--black-opacity-50);
  list-style: none;
}
.accordion ul.accordion-list li.accordion-item .accordion-item-top {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem 1rem 1.5rem;
  display: flex;
}
.accordion ul.accordion-list li.accordion-item .accordion-item-top h3 {
  line-height: 1.3;
}
.accordion ul.accordion-list li.accordion-item .accordion-item-top .accordion-item-icon {
  transition: transform 0.5s cubic-bezier(0.625, 0.05, 0, 1);
  background-color: var(--neutral-200);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  display: flex;
  transform: rotate(180deg);
}
.accordion ul.accordion-list li.accordion-item .accordion-item-top .accordion-item-icon .accordion-item-icon-svg {
  width: 1em;
}
.accordion ul.accordion-list li.accordion-item .accordion-item-bottom {
  transition: grid-template-rows 0.5s cubic-bezier(0.625, 0.05, 0, 1);
  grid-template-rows: 0fr;
  display: grid;
  position: relative;
  overflow: hidden;
}
.accordion ul.accordion-list li.accordion-item .accordion-item-bottom .accordion-item-bottom-inner {
  flex-flow: column;
  height: 100000%;
  display: flex;
  position: relative;
  overflow: hidden;
}
.accordion ul.accordion-list li.accordion-item .accordion-item-bottom .accordion-item-bottom-inner .accordion-item-bottom-content {
  padding-bottom: 1.5em;
  padding-left: 1.5rem;
  padding-right: 1.5em;
}
.accordion ul.accordion-list li.accordion-item .accordion-item-bottom .accordion-item-bottom-inner .accordion-item-bottom-content p {
  max-width: 90%;
}
@media (hover) {
  .accordion ul.accordion-list li.accordion-item:hover .accordion-item-top .accordion-item-icon {
    background-color: var(--primary-400);
  }
  .accordion ul.accordion-list li.accordion-item:hover .accordion-item-top .accordion-item-icon .accordion-item-icon-svg path {
    stroke: var(--neutral-100);
  }
}
.accordion ul.accordion-list li.accordion-item[data-accordion-status=active] .accordion-item-top .accordion-item-icon {
  transform: rotate(0.001deg);
  background-color: var(--primary-400);
}
.accordion ul.accordion-list li.accordion-item[data-accordion-status=active] .accordion-item-top .accordion-item-icon .accordion-item-icon-svg path {
  stroke: var(--neutral-100);
}
.accordion ul.accordion-list li.accordion-item[data-accordion-status=active] .accordion-item-bottom {
  grid-template-rows: 1fr;
}

.image {
  position: relative;
  overflow: hidden;
}
.image.landscape {
  aspect-ratio: 3/2;
}
.image.portrait {
  aspect-ratio: 1.05;
}
.image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-wrapper {
  background-color: var(--accent-400);
  aspect-ratio: 1;
  width: 3em;
  display: grid;
  align-items: center;
  justify-items: center;
  border-radius: 0.2em;
}
.icon-wrapper svg {
  max-width: 50%;
  max-height: 50%;
}

.watch {
  text-decoration: none;
  padding: 0.5em 1em 0.5em 0.5em;
  background-color: var(--black-opacity-100);
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
  border: 1px solid var(--white-opacity-100);
  color: var(--neutral-100);
  font-size: clamp(0.69rem, calc(0.69rem + 0.04vw), 0.72rem);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  cursor: pointer;
}
.watch div.left {
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.watch div.thumbnail {
  aspect-ratio: 16/9;
  width: 60px;
}
.watch span {
  white-space: pre;
}
.watch svg {
  width: 0.6em;
}
@media screen and (min-width: 48em) {
  .watch {
    font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
  }
  .watch div.thumbnail {
    width: 80px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .watch:hover {
    border: 1px solid var(--white-opacity-300);
  }
}

.logo-wall {
  display: flex;
  justify-content: center;
  width: 100%;
}

.logo-wall__collection {
  width: 100%;
}

.logo-wall__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}

.logo-wall__item {
  position: relative;
  background-color: var(--neutral-100);
  border: 1px solid var(--black-opacity-50);
}

[data-logo-wall-list] [data-logo-wall-item]:nth-child(n+9) {
  display: none;
}

.logo-wall__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-wall__logo-before {
  padding-top: 55%;
}

.logo-wall__logo-target {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 50%;
  max-height: 50%;
  display: flex;
  position: absolute;
}

.logo-wall__logo-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

@media screen and (min-width: 48em) {
  .logo-wall__list {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  }
}
@media screen and (min-width: 62em) {
  .logo-wall__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 991px) {
  [data-logo-wall-list] [data-logo-wall-item]:nth-child(n+7) {
    display: none;
  }
}
.breadcrumb {
  padding-bottom: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6em;
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
}
.breadcrumb h4 {
  color: var(--black-opacity-600);
}
.breadcrumb a {
  text-decoration: none;
  line-height: 1;
}
@media (hover) {
  .breadcrumb a:hover {
    color: var(--accent-400);
  }
}
.breadcrumb svg {
  width: 1rem;
  margin-top: 0.1rem;
}
.breadcrumb svg path {
  fill: var(--neutral-900);
}
@media (hover) {
  .breadcrumb svg:hover path {
    fill: var(--accent-400);
  }
}

.auto-columns {
  display: grid;
  gap: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}

.even-columns {
  display: grid;
  gap: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
@media screen and (min-width: 62em) {
  .even-columns {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}

/**
 * AUTO-GRID LAYOUT
 *
 * This CSS utility creates a responsive grid layout that automatically adjusts the number of columns
 * based on the available space and specified constraints. It aims to fit as many cells as possible
 * in a single row, while respecting minimum cell width and maximum columns constraints.
 *
 * Customizable Properties:
 * --auto-grid-min-size: Sets the minimum width for each cell in the grid.
 *                       Default is 10rem.
 * --auto-grid-max-columns: Sets the maximum number of columns in the grid.
 *                          Default is 'infinity' (as many as can fit).
 * --auto-grid-gap: Sets the horizontal gap between grid cells. It also sets
 *                  the vertical gap if --auto-grid-gap-vertical is not defined.
 *                  Default is 1rem.
 * --auto-grid-gap-vertical: Specifically sets the vertical gap between rows
 *                           of cells. If not set, it falls back to the value
 *                           of '--auto-grid-gap'.
 *
 * The grid utilizes CSS 'display: grid' with the 'auto-fit' feature and the 'minmax()'
 * function to ensure that cells expand to fill available space while maintaining
 * the set minimum size.
 *
 * Example Usage:
 * <div class="auto-grid" style="--auto-grid-min-size: 10rem; --auto-grid-max-columns: 3; --auto-grid-gap: 0.5rem;">
 *   <!-- grid items here -->
 * </div>
 *
 * The above example will create a grid with a minimum cell width of 10rem, a maximum
 * of 3 columns, and a gap of 0.5rem between both rows and columns.
 */
.auto-grid {
  --auto-grid-max-column-width: 100% / var(--auto-grid-max-columns, infinity) - var(--auto-grid-gap);
  --auto-grid-column-width: max(
      var(--auto-grid-max-column-width),
      min(var(--auto-grid-min-size, 10rem), 100%)
  );
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-column-width), 1fr));
  /* vertical gap falls back to general gap then falls back to 1rem*/
  gap: var(--auto-grid-gap-vertical, var(--auto-grid-gap, 1rem)) var(--auto-grid-gap, 1rem);
}
@media screen and (min-width: 48em) {
  .auto-grid[data-type=reverse] div:last-of-type {
    order: -1;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
  width: fit-content;
  align-items: center;
}
.flex.justify-space-between {
  width: 100%;
  justify-content: space-between;
}

.grid {
  display: grid;
}

.justify-self-end {
  justify-self: end;
}

.justify-self-center {
  justify-self: center;
}

.pile {
  display: grid;
  grid-template-areas: "pile";
  place-content: center;
}
.pile > * {
  grid-area: pile;
}

.clr-neutral-100 {
  color: var(--neutral-100);
}

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

.clr-neutral-200 {
  color: var(--neutral-200);
}

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

.clr-neutral-900 {
  color: var(--neutral-900);
}

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

.clr-accent-400 {
  color: var(--accent-400);
}

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

.clr-primary-400 {
  color: var(--primary-400);
}

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

.clr-white-opacity-100 {
  color: var(--white-opacity-100);
}

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

.clr-white-opacity-200 {
  color: var(--white-opacity-200);
}

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

.clr-white-opacity-300 {
  color: var(--white-opacity-300);
}

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

.clr-white-opacity-400 {
  color: var(--white-opacity-400);
}

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

.clr-white-opacity-500 {
  color: var(--white-opacity-500);
}

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

.clr-white-opacity-600 {
  color: var(--white-opacity-600);
}

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

.clr-white-opacity-700 {
  color: var(--white-opacity-700);
}

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

.clr-white-opacity-800 {
  color: var(--white-opacity-800);
}

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

.clr-white-opacity-900 {
  color: var(--white-opacity-900);
}

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

.clr-black-opacity-50 {
  color: var(--black-opacity-50);
}

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

.clr-black-opacity-100 {
  color: var(--black-opacity-100);
}

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

.clr-black-opacity-200 {
  color: var(--black-opacity-200);
}

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

.clr-black-opacity-300 {
  color: var(--black-opacity-300);
}

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

.clr-black-opacity-400 {
  color: var(--black-opacity-400);
}

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

.clr-black-opacity-500 {
  color: var(--black-opacity-500);
}

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

.clr-black-opacity-600 {
  color: var(--black-opacity-600);
}

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

.clr-black-opacity-700 {
  color: var(--black-opacity-700);
}

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

.clr-black-opacity-800 {
  color: var(--black-opacity-800);
}

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

.clr-black-opacity-900 {
  color: var(--black-opacity-900);
}

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

.clr-danger-400 {
  color: var(--danger-400);
}

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

.clr-success-400 {
  color: var(--success-400);
}

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

.fs-200 {
  font-size: clamp(0.69rem, calc(0.69rem + 0.04vw), 0.72rem);
}

.fs-300 {
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
}

.fs-400 {
  font-size: clamp(1.00rem, calc(0.96rem + 0.19vw), 1.13rem);
}

.fs-500 {
  font-size: clamp(1.20rem, calc(1.13rem + 0.31vw), 1.41rem);
}

.fs-600 {
  font-size: clamp(1.44rem, calc(1.33rem + 0.48vw), 1.76rem);
}

.fs-700 {
  font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
  line-height: 1.2;
}

.fs-800 {
  font-size: clamp(2.07rem, calc(1.84rem + 1.01vw), 2.75rem);
  line-height: 1.2;
}

.fs-900 {
  font-size: clamp(2.49rem, calc(2.16rem + 1.42vw), 3.43rem);
  line-height: 1.2;
}

.section-padding {
  padding-block: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}

.section-padding-responsive {
  padding-block: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
@media screen and (min-width: 48em) {
  .section-padding-responsive {
    padding-block: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
  }
}

.mx-auto {
  margin-inline: auto;
}

.push-right {
  margin-left: auto;
}

.margin-1 {
  margin: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.margin-top-1 {
  margin-block-start: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.margin-bottom-1 {
  margin-block-end: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.margin-block-1 {
  margin-block: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.margin-left-1 {
  margin-inline-start: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.margin-right-1 {
  margin-inline-end: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.margin-inline-1 {
  margin-inline: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}

.padding-1 {
  padding: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.padding-top-1 {
  padding-block-start: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.padding-bottom-1 {
  padding-block-end: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.padding-block-1 {
  padding-block: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.padding-left-1 {
  padding-inline-start: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.padding-right-1 {
  padding-inline-end: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}
.padding-inline-1 {
  padding-inline: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}

.margin-2 {
  margin: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.margin-top-2 {
  margin-block-start: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.margin-bottom-2 {
  margin-block-end: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.margin-block-2 {
  margin-block: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.margin-left-2 {
  margin-inline-start: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.margin-right-2 {
  margin-inline-end: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.margin-inline-2 {
  margin-inline: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}

.padding-2 {
  padding: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.padding-top-2 {
  padding-block-start: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.padding-bottom-2 {
  padding-block-end: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.padding-block-2 {
  padding-block: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.padding-left-2 {
  padding-inline-start: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.padding-right-2 {
  padding-inline-end: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}
.padding-inline-2 {
  padding-inline: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}

.margin-3 {
  margin: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.margin-top-3 {
  margin-block-start: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.margin-bottom-3 {
  margin-block-end: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.margin-block-3 {
  margin-block: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.margin-left-3 {
  margin-inline-start: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.margin-right-3 {
  margin-inline-end: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.margin-inline-3 {
  margin-inline: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}

.padding-3 {
  padding: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.padding-top-3 {
  padding-block-start: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.padding-bottom-3 {
  padding-block-end: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.padding-block-3 {
  padding-block: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.padding-left-3 {
  padding-inline-start: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.padding-right-3 {
  padding-inline-end: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
.padding-inline-3 {
  padding-inline: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}

.margin-4 {
  margin: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.margin-top-4 {
  margin-block-start: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.margin-bottom-4 {
  margin-block-end: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.margin-block-4 {
  margin-block: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.margin-left-4 {
  margin-inline-start: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.margin-right-4 {
  margin-inline-end: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.margin-inline-4 {
  margin-inline: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}

.padding-4 {
  padding: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.padding-top-4 {
  padding-block-start: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.padding-bottom-4 {
  padding-block-end: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.padding-block-4 {
  padding-block: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.padding-left-4 {
  padding-inline-start: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.padding-right-4 {
  padding-inline-end: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}
.padding-inline-4 {
  padding-inline: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}

.margin-5 {
  margin: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.margin-top-5 {
  margin-block-start: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.margin-bottom-5 {
  margin-block-end: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.margin-block-5 {
  margin-block: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.margin-left-5 {
  margin-inline-start: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.margin-right-5 {
  margin-inline-end: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.margin-inline-5 {
  margin-inline: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}

.padding-5 {
  padding: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.padding-top-5 {
  padding-block-start: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.padding-bottom-5 {
  padding-block-end: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.padding-block-5 {
  padding-block: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.padding-left-5 {
  padding-inline-start: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.padding-right-5 {
  padding-inline-end: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
.padding-inline-5 {
  padding-inline: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}

.margin-6 {
  margin: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.margin-top-6 {
  margin-block-start: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.margin-bottom-6 {
  margin-block-end: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.margin-block-6 {
  margin-block: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.margin-left-6 {
  margin-inline-start: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.margin-right-6 {
  margin-inline-end: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.margin-inline-6 {
  margin-inline: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}

.padding-6 {
  padding: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.padding-top-6 {
  padding-block-start: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.padding-bottom-6 {
  padding-block-end: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.padding-block-6 {
  padding-block: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.padding-left-6 {
  padding-inline-start: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.padding-right-6 {
  padding-inline-end: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
.padding-inline-6 {
  padding-inline: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}

.margin-7 {
  margin: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.margin-top-7 {
  margin-block-start: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.margin-bottom-7 {
  margin-block-end: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.margin-block-7 {
  margin-block: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.margin-left-7 {
  margin-inline-start: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.margin-right-7 {
  margin-inline-end: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.margin-inline-7 {
  margin-inline: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}

.padding-7 {
  padding: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.padding-top-7 {
  padding-block-start: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.padding-bottom-7 {
  padding-block-end: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.padding-block-7 {
  padding-block: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.padding-left-7 {
  padding-inline-start: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.padding-right-7 {
  padding-inline-end: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}
.padding-inline-7 {
  padding-inline: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}

.margin-8 {
  margin: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.margin-top-8 {
  margin-block-start: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.margin-bottom-8 {
  margin-block-end: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.margin-block-8 {
  margin-block: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.margin-left-8 {
  margin-inline-start: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.margin-right-8 {
  margin-inline-end: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.margin-inline-8 {
  margin-inline: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}

.padding-8 {
  padding: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.padding-top-8 {
  padding-block-start: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.padding-bottom-8 {
  padding-block-end: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.padding-block-8 {
  padding-block: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.padding-left-8 {
  padding-inline-start: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.padding-right-8 {
  padding-inline-end: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
.padding-inline-8 {
  padding-inline: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}

.margin-9 {
  margin: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.margin-top-9 {
  margin-block-start: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.margin-bottom-9 {
  margin-block-end: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.margin-block-9 {
  margin-block: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.margin-left-9 {
  margin-inline-start: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.margin-right-9 {
  margin-inline-end: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.margin-inline-9 {
  margin-inline: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}

.padding-9 {
  padding: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.padding-top-9 {
  padding-block-start: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.padding-bottom-9 {
  padding-block-end: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.padding-block-9 {
  padding-block: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.padding-left-9 {
  padding-inline-start: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.padding-right-9 {
  padding-inline-end: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}
.padding-inline-9 {
  padding-inline: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}

.container {
  --max-width: 90rem;
  width: min(90%, var(--max-width));
  margin-inline: auto;
}

.container[data-type=small] {
  --max-width: 70rem;
}

.container[data-type=large] {
  --max-width: 90%;
}

.container[data-type=full-bleed] {
  --max-width: 100%;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.gap-1 {
  gap: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}

.gap-2 {
  gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}

.gap-3 {
  gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}

.gap-4 {
  gap: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}

.gap-5 {
  gap: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}

.gap-6 {
  gap: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}

.gap-7 {
  gap: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}

.gap-8 {
  gap: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}

.gap-9 {
  gap: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}

.gap-y-1 {
  row-gap: clamp(0.5rem, 0.4744rem + 0.1136vw, 0.5625rem);
}

.gap-y-2 {
  row-gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
}

.gap-y-3 {
  row-gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}

.gap-y-4 {
  row-gap: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
}

.gap-y-5 {
  row-gap: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}

.gap-y-6 {
  row-gap: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}

.gap-y-7 {
  row-gap: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
}

.gap-y-8 {
  row-gap: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}

.gap-y-9 {
  row-gap: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
}

.standard-gap {
  gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}

:root {
  --standard-gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}

.ff-base {
  font-family: "elza", sans-serif;
}

.ff-accent {
  font-family: "authenia";
}

.text-uppercase {
  text-transform: uppercase;
}

.text-underline {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: center;
}

span.text-accent {
  display: inline-block;
  color: var(--accent-400);
  background-color: var(--primary-400);
  padding: 0.1em 0.2em;
  transform: skewX(-10deg);
}

.box-shadow-1 {
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.012), 0px 22px 18px rgba(0, 0, 0, 0.018), 0px 100px 80px rgba(0, 0, 0, 0.03);
}

.box-shadow-2 {
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.016), 0px 22px 18px rgba(0, 0, 0, 0.024), 0px 100px 80px rgba(0, 0, 0, 0.04);
}

.box-shadow-3 {
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.02), 0px 22px 18px rgba(0, 0, 0, 0.03), 0px 100px 80px rgba(0, 0, 0, 0.05);
}

.box-shadow-4 {
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.03), 0px 22px 18px rgba(0, 0, 0, 0.042), 0px 100px 80px rgba(0, 0, 0, 0.07);
}

.box-shadow-5 {
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.04), 0px 22px 18px rgba(0, 0, 0, 0.06), 0px 100px 80px rgba(0, 0, 0, 0.1);
}

.heading-1 {
  font-size: clamp(2.49rem, calc(2.16rem + 1.42vw), 3.43rem);
  font-weight: 600;
  line-height: 1.1;
  text-wrap: balance;
}

.heading-2 {
  font-size: clamp(2.07rem, calc(1.84rem + 1.01vw), 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  text-wrap: balance;
}

.heading-25 {
  font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
  font-weight: 600;
  line-height: 1.1;
  text-wrap: balance;
}

.heading-3 {
  font-size: clamp(1.44rem, calc(1.33rem + 0.48vw), 1.76rem);
  font-weight: 600;
  line-height: 1.1;
  text-wrap: balance;
}

.heading-4 {
  font-size: clamp(1.20rem, calc(1.13rem + 0.31vw), 1.41rem);
  font-weight: 600;
  line-height: 1.3;
  text-wrap: balance;
}

.round {
  border-radius: 50%;
  aspect-ratio: 1/1;
}

main#home-page .loader {
  z-index: 100;
  color: var(--neutral-900);
  width: 100%;
  height: 100dvh;
  position: fixed;
  inset: 0% 0% auto;
}
main#home-page .loader__bg {
  background-color: var(--neutral-100);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}
main#home-page .loader__container {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}
main#home-page .loader__bg-bar {
  z-index: 1;
  transform-origin: 0%;
  transform-style: preserve-3d;
  background-color: var(--primary-400);
  width: 100%;
  height: 0.5em;
  position: absolute;
  inset: auto 0% 0%;
  transform: scale3d(0, 1, 1);
}
main#home-page .loader__logo-wrap {
  justify-content: center;
  align-items: center;
  width: 15em;
  display: flex;
  position: relative;
}
main#home-page .loader__logo-item {
  width: 100%;
  position: absolute;
}
main#home-page .loader__logo-item.is--base {
  opacity: 0.2;
}
main#home-page .loader__logo-item.is--top {
  -webkit-clip-path: inset(0% 100% 0% 0%);
  clip-path: inset(0% 100% 0% 0%);
}
main#home-page .loader__logo-img {
  width: 100%;
  display: block;
}
main#home-page .loader__text-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 3.5em;
}
main#home-page .loader__text-el {
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: -0.25em;
  padding-bottom: 0.25em;
  position: absolute;
}
main#home-page [data-load-reset] {
  opacity: 0;
}
main#home-page section.hero-section {
  position: relative;
  min-height: calc(100svh - 80px);
  color: var(--neutral-100);
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  main#home-page section.hero-section .hero-reveal {
    overflow: hidden;
  }
}
main#home-page section.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
}
main#home-page section.hero-section div.container {
  min-height: calc(100svh - 80px);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
  padding-top: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
main#home-page section.hero-section::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--black-opacity-500);
}
main#home-page section.hero-section div.hero-grid {
  align-self: flex-end;
  display: grid;
  justify-items: start;
  gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem) clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  align-items: start;
}
main#home-page section.hero-section div.hero-grid .partner-text {
  display: none;
}
main#home-page section.hero-section div.hero-grid .hero-reveal:has(a.watch) {
  order: -1;
}
main#home-page section.hero-section div.hero-grid div.line {
  display: none;
}
main#home-page section.hero-section div.hero-grid h1 {
  font-size: clamp(2.07rem, calc(1.84rem + 1.01vw), 2.75rem);
  font-weight: 700;
}
@media (min-width: 470px) {
  main#home-page section.hero-section div.hero-grid h1 {
    font-size: clamp(2.49rem, calc(2.16rem + 1.42vw), 3.43rem);
  }
}
main#home-page section.hero-section div.bottom {
  margin-bottom: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  align-self: flex-end;
  display: flex;
  gap: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: end;
}
main#home-page section.hero-section div.bottom p {
  max-width: 45ch;
}
main#home-page section.hero-section div.bottom div.link {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.5em;
}
main#home-page section.hero-section div.bottom div.link svg {
  width: 0.8em;
}
main#home-page section.hero-section div.bottom div.link svg path {
  vector-effect: non-scaling-stroke;
  stroke-width: 1.5;
}
main#home-page section.hero-section div.bottom .hero-reveal:has(div.link) {
  display: none;
}
@media screen and (min-width: 48em) {
  main#home-page section.hero-section div.container {
    gap: 0;
    min-height: calc(100svh - 85px);
    padding-top: 0;
  }
  main#home-page section.hero-section div.container {
    gap: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
  }
  main#home-page section.hero-section div.hero-grid {
    align-self: center;
    padding-top: 1.5em;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem) clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
    transform: translateY(60%);
    position: relative;
  }
  main#home-page section.hero-section div.hero-grid .partner-text {
    display: block;
  }
  main#home-page section.hero-section div.hero-grid div.line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--white-opacity-200);
    position: absolute;
    top: 0;
    left: 0;
  }
  main#home-page section.hero-section div.hero-grid .hero-reveal:has(h1) {
    grid-row: 1/2;
  }
  main#home-page section.hero-section div.hero-grid .hero-reveal:has(p), main#home-page section.hero-section div.hero-grid .hero-reveal:has(h1) {
    grid-column: 1/8;
  }
  main#home-page section.hero-section div.hero-grid .hero-reveal:has(a.watch) {
    order: unset;
    display: block;
    justify-self: end;
    grid-row: 1/2;
    grid-column: 8/13;
  }
  main#home-page section.hero-section div.bottom {
    margin-bottom: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
  }
  main#home-page section.hero-section div.bottom div.link {
    margin-left: auto;
  }
  main#home-page section.hero-section div.bottom .hero-reveal:has(div.link) {
    display: block;
  }
}
@media screen and (min-width: 62em) {
  main#home-page section.hero-section {
    min-height: 100svh;
  }
  main#home-page section.hero-section div.container {
    min-height: 100svh;
  }
}
@media screen and (min-width: 75em) {
  main#home-page section.hero-section div.hero-grid .hero-reveal:has(p) {
    grid-column: 1/4;
  }
  main#home-page section.hero-section div.hero-grid .hero-reveal:has(h1) {
    grid-column: 4/10;
  }
  main#home-page section.hero-section div.hero-grid .hero-reveal:has(a.watch) {
    grid-column: 10/13;
  }
}
main#home-page section.about-section {
  padding-block: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
main#home-page section.about-section div.grid {
  display: grid;
  gap: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem) clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
main#home-page section.about-section div.stats {
  border-top: 1px solid var(--black-opacity-200);
  margin-top: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
main#home-page section.about-section div.stats div.stat {
  padding-block: 0.5em;
  display: grid;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  grid-template-columns: 11ch 1fr;
  border-bottom: 1px solid var(--black-opacity-200);
}
main#home-page section.about-section div.stats div.stat div {
  display: flex;
}
main#home-page section.about-section div.stats div.stat span {
  font-size: clamp(2.07rem, calc(1.84rem + 1.01vw), 2.75rem);
  color: var(--primary-400);
  font-weight: 600;
}
main#home-page section.about-section div.stats div.stat p {
  max-width: 25ch;
  text-align: right;
  justify-self: end;
  line-height: 1.4;
}
main#home-page section.about-section a.video {
  position: relative;
  aspect-ratio: 16/9;
}
main#home-page section.about-section a.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 50%;
}
main#home-page section.about-section a.video div.watch {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 1em;
}
main#home-page section.about-section a.video div.arrow {
  display: flex;
  transform: translate(-15%, -85%);
  gap: 1.5em;
  position: absolute;
  top: 0;
  left: 15%;
  align-items: start;
  font-size: clamp(1.20rem, calc(1.13rem + 0.31vw), 1.41rem);
}
main#home-page section.about-section a.video div.arrow p {
  text-align: center;
  font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
  font-family: "authenia";
  line-height: 0.9;
  text-wrap: balance;
  transform: translateY(0.2em);
}
main#home-page section.about-section a.video div.arrow svg {
  transform: scaleX(-1) rotate(115deg);
}
@media (hover: hover) and (pointer: fine) {
  main#home-page section.about-section a.video:hover div.watch {
    border: 1px solid var(--white-opacity-300);
  }
}
main#home-page section.about-section div.image {
  position: relative;
  aspect-ratio: 16/9;
}
main#home-page section.about-section div.image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main#home-page section.about-section div.title {
  margin-top: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
  position: relative;
  max-width: max-content;
  margin-inline: auto;
}
main#home-page section.about-section div.title div.arrow {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 0.5em;
  align-items: start;
  transform: translate(80%, -120%);
}
main#home-page section.about-section div.title div.arrow p {
  text-align: center;
  font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
  font-family: "authenia";
  line-height: 0.9;
  text-wrap: balance;
  transform: translateY(-0.9em);
}
main#home-page section.about-section div.title div.arrow svg {
  width: 4em;
}
main#home-page section.about-section div.logos div {
  display: grid;
  justify-items: center;
  align-items: center;
}
main#home-page section.about-section div.logos div img {
  width: 100%;
  max-width: 70%;
  object-fit: contain;
}
@media (min-width: 500px) {
  main#home-page section.about-section div.title div.arrow {
    transform: translate(110%, -120%);
  }
  main#home-page section.about-section div.title div.arrow svg {
    width: unset;
  }
}
@media screen and (min-width: 48em) {
  main#home-page section.about-section div.grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
  }
  main#home-page section.about-section div.title div.arrow {
    transform: translate(180%, -70%);
  }
  main#home-page section.about-section div.title div.arrow p {
    order: -1;
  }
  main#home-page section.about-section div.title div.arrow svg {
    transform: scaleX(-1);
  }
  main#home-page section.about-section a.video {
    aspect-ratio: unset;
    order: 2;
  }
  main#home-page section.about-section a.video div.arrow {
    display: grid;
    gap: 0.5em;
    justify-items: end;
    transform: translate(-115%, -50%);
    top: 0;
    left: 0;
  }
  main#home-page section.about-section a.video div.arrow svg {
    transform: scale(1);
  }
  main#home-page section.about-section a.video div.arrow p {
    order: unset;
    transform: unset;
  }
}
@media screen and (min-width: 62em) {
  main#home-page section.about-section {
    padding: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem) 0 clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem) 0;
  }
  main#home-page section.about-section div.grid {
    gap: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
  }
  main#home-page section.about-section div.image {
    aspect-ratio: unset;
    grid-row: unset;
    grid-column: unset;
  }
  main#home-page section.about-section div.title {
    margin-top: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
  }
  main#home-page section.about-section div.title div.arrow {
    position: absolute;
    top: 0;
    left: unset;
    right: 0;
    display: flex;
    gap: 0.5em;
    align-items: start;
    transform: translate(120%, -60%);
  }
  main#home-page section.about-section div.title div.arrow p {
    order: unset;
    text-align: center;
    font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
    font-family: "authenia";
    line-height: 0.9;
    text-wrap: balance;
    transform: translateY(-0.9em);
  }
  main#home-page section.about-section div.title div.arrow svg {
    transform: unset;
  }
  main#home-page section.about-section div.logos div img {
    max-width: 50%;
  }
}
main#home-page div.list-card {
  background-color: var(--neutral-100);
  padding: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  position: relative;
}
main#home-page div.list-card h3 {
  border-bottom: 1px solid var(--black-opacity-200);
  padding-bottom: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
main#home-page div.list-card .arrow {
  position: absolute;
  bottom: 0;
  right: 10%;
  transform: translate(0%, 65%);
  display: flex;
  align-items: end;
  gap: 0.5em;
}
main#home-page div.list-card .arrow p {
  order: -1;
  text-align: center;
  color: var(--neutral-100);
  font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
  font-family: "authenia";
  transform: translateY(0.9em);
  line-height: 0.9;
  text-wrap: balance;
}
main#home-page div.list-card .arrow svg {
  transform: scaleX(-1);
}
@media screen and (min-width: 62em) {
  main#home-page div.list-card .arrow {
    right: 0;
  }
  main#home-page div.list-card .arrow p {
    order: unset;
  }
  main#home-page div.list-card .arrow svg {
    transform: unset;
  }
}
main#home-page section.section-faq div.grid {
  display: grid;
  gap: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
@media screen and (min-width: 48em) {
  main#home-page section.section-faq div.grid {
    gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  main#home-page section.section-faq div.stick {
    position: sticky;
    top: 15%;
  }
}
@media screen and (min-width: 62em) {
  main#home-page section.section-faq div.stick {
    padding-right: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
  }
  main#home-page section.section-faq div.stick h2 {
    max-width: 400px;
  }
  main#home-page section.section-faq div.stick p {
    max-width: 30ch;
  }
}

main#service-page .client-target {
  padding-bottom: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
}
@media screen and (min-width: 75em) {
  main#service-page .client-target {
    padding-bottom: clamp(11.25rem, 10.3295rem + 4.0909vw, 13.5rem);
  }
}
main#service-page section.hero-section {
  position: relative;
  height: calc(100svh - 80px);
  color: var(--neutral-100);
}
main#service-page section.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--black-opacity-500);
}
main#service-page section.hero-section video, main#service-page section.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main#service-page section.hero-section div.container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  grid-template-rows: 1fr auto;
}
main#service-page section.hero-section div.hero-grid {
  align-self: flex-end;
  display: grid;
  justify-items: start;
  gap: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem) clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  align-items: start;
}
main#service-page section.hero-section div.hero-grid h1 {
  font-size: clamp(2.49rem, calc(2.16rem + 1.42vw), 3.43rem);
  font-weight: 700;
}
main#service-page section.hero-section div.hero-grid h1 span {
  display: inline-block;
  color: var(--accent-400);
  background-color: var(--primary-400);
  padding: 0.1em 0.2em;
  transform: skewX(-10deg);
}
main#service-page section.hero-section div.hero-grid div.watch {
  padding: 0.5em 1em 0.5em 0.5em;
  background-color: var(--black-opacity-100);
  backdrop-filter: blur(1em);
  border: 1px solid var(--white-opacity-100);
  color: var(--neutral-100);
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}
main#service-page section.hero-section div.hero-grid div.watch div.left {
  display: flex;
  align-items: center;
  gap: 0.8em;
}
main#service-page section.hero-section div.hero-grid div.watch span {
  white-space: pre;
}
main#service-page section.hero-section div.hero-grid div.watch div.thumbnail {
  aspect-ratio: 16/9;
  width: 80px;
}
main#service-page section.hero-section div.hero-grid div.watch svg {
  width: 0.6em;
}
main#service-page section.hero-section div.bottom {
  margin-bottom: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
  align-self: flex-end;
  display: flex;
  gap: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: end;
}
main#service-page section.hero-section div.bottom p {
  max-width: 47ch;
}
main#service-page section.hero-section div.bottom div.link {
  display: none;
  margin-left: auto;
  cursor: pointer;
  align-items: center;
  gap: 0.5em;
}
main#service-page section.hero-section div.bottom div.link svg {
  width: 0.8em;
}
main#service-page section.hero-section div.bottom div.link svg path {
  vector-effect: non-scaling-stroke;
  stroke-width: 1.5;
}
@media screen and (min-width: 48em) {
  main#service-page section.hero-section div.hero-grid {
    border-top: 1px solid var(--white-opacity-200);
    padding-top: 1.5em;
    grid-template-columns: repeat(12, 1fr);
    align-self: center;
    gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem) clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
    transform: translateY(60%);
  }
  main#service-page section.hero-section div.hero-grid p {
    grid-column: 1/4;
  }
  main#service-page section.hero-section div.hero-grid h1 {
    grid-column: 4/13;
  }
  main#service-page section.hero-section div.bottom div.link {
    display: flex;
  }
}
@media screen and (min-width: 62em) {
  main#service-page section.hero-section {
    height: 100svh;
  }
}
main#service-page section.how-we-work a.testimonial-video div.arrow {
  display: none;
}
@media screen and (min-width: 62em) {
  main#service-page section.how-we-work a.testimonial-video div.arrow {
    display: flex;
  }
}
main#service-page section.section-help div.card {
  background-color: var(--neutral-100);
  padding: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  border: 1px solid var(--black-opacity-50);
}
main#service-page section.section-help div.image {
  display: none;
  position: relative;
}
main#service-page section.section-help div.image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
}
@media screen and (min-width: 48em) {
  main#service-page section.section-help div.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 62em) {
  main#service-page section.section-help div.grid {
    grid-template-columns: repeat(3, 1fr);
  }
  main#service-page section.section-help div.grid div.image {
    display: block;
    grid-column: 2/4;
  }
}
main#service-page section.section-services .three-block-animation {
  display: grid;
  gap: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem) clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  align-items: start;
}
main#service-page section.section-services .three-block-animation .navigation h2 {
  border-bottom: 1px solid var(--black-opacity-200);
  padding-bottom: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
main#service-page section.section-services .three-block-animation .navigation ul {
  padding: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem) 0 0 0;
  list-style: none;
  counter-reset: item;
  display: grid;
  gap: 0.5rem;
}
main#service-page section.section-services .three-block-animation .navigation ul li.list-item {
  color: var(--black-opacity-500);
  border-radius: 0.2em;
  padding: 0.8em 1em;
  font-weight: 500;
  cursor: pointer;
  background-color: var(--black-opacity-50);
}
main#service-page section.section-services .three-block-animation .navigation ul li.list-item[data-three-block-status=active] {
  background-color: var(--primary-400);
  color: var(--neutral-900);
}
main#service-page section.section-services .three-block-animation .text {
  display: grid;
  grid-template-areas: "pile";
}
main#service-page section.section-services .three-block-animation .text .text-item {
  grid-area: pile;
  pointer-events: none;
}
main#service-page section.section-services .three-block-animation .text .text-item a {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  main#service-page section.section-services .three-block-animation .text .text-item a:hover .btn-bubble-arrow__arrow {
    transform: scale(1) rotate(0.001deg);
  }
  main#service-page section.section-services .three-block-animation .text .text-item a:hover .btn-bubble-arrow__arrow.is--duplicate {
    transform: scale(0) rotate(0.001deg);
  }
  main#service-page section.section-services .three-block-animation .text .text-item a:hover .btn-bubble-arrow__arrow-svg {
    transform: rotate(-45deg);
  }
}
main#service-page section.section-services .three-block-animation .text .btn-group {
  opacity: 0;
  pointer-events: none;
}
main#service-page section.section-services .three-block-animation .text .line {
  height: 1px;
  background-color: var(--black-opacity-200);
  width: 100%;
  opacity: 0;
  margin-top: 1.4em;
}
main#service-page section.section-services .three-block-animation .text span, main#service-page section.section-services .three-block-animation .text p, main#service-page section.section-services .three-block-animation .text ul {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}
main#service-page section.section-services .three-block-animation .text h3 {
  overflow: hidden;
  font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
  font-weight: 600;
  display: flex;
  gap: 0.2em 0.35em;
  align-items: center;
  flex-wrap: wrap;
}
main#service-page section.section-services .three-block-animation .text h3 span {
  display: inline-block;
  line-height: 1.3;
}
main#service-page section.section-services .three-block-animation .text h3 span {
  transform: translateY(40px) rotate(8deg);
}
main#service-page section.section-services .three-block-animation .text p {
  color: var(--black-opacity-900);
}
main#service-page section.section-services .three-block-animation .text .text-item {
  height: 0;
}
main#service-page section.section-services .three-block-animation .text .text-item[data-three-block-status=active] {
  height: auto;
  pointer-events: all;
}
main#service-page section.section-services .three-block-animation .text .text-item[data-three-block-status=active] .btn-group {
  pointer-events: all;
  opacity: 1;
}
main#service-page section.section-services .three-block-animation .text .text-item[data-three-block-status=active] a {
  pointer-events: all;
}
main#service-page section.section-services .three-block-animation .text .text-item[data-three-block-status=active] h3, main#service-page section.section-services .three-block-animation .text .text-item[data-three-block-status=active] p, main#service-page section.section-services .three-block-animation .text .text-item[data-three-block-status=active] span, main#service-page section.section-services .three-block-animation .text .text-item[data-three-block-status=active] ul {
  opacity: 1;
  transform: none;
}
main#service-page section.section-services .three-block-animation .text .text-item[data-three-block-status=active] .line {
  opacity: 1;
}
@media (min-width: 500px) {
  main#service-page section.section-services .three-block-animation .navigation ul {
    grid-template-columns: repeat(2, 1fr);
  }
  main#service-page section.section-services .three-block-animation .navigation ul li {
    text-align: center;
  }
}
@media screen and (min-width: 48em) {
  main#service-page section.section-services .three-block-animation {
    grid-template-columns: repeat(2, 1fr);
  }
  main#service-page section.section-services .three-block-animation .navigation {
    grid-column: 1/3;
  }
  main#service-page section.section-services .three-block-animation .navigation ol {
    grid-template-columns: repeat(3, 1fr);
  }
  main#service-page section.section-services .three-block-animation .text {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 62em) {
  main#service-page section.section-services .three-block-animation {
    gap: clamp(7.5rem, 6.8864rem + 2.7273vw, 9rem);
  }
  main#service-page section.section-services .three-block-animation .navigation {
    grid-column: 1/2;
  }
  main#service-page section.section-services .three-block-animation .navigation ul {
    grid-template-columns: 1fr;
  }
  main#service-page section.section-services .three-block-animation .navigation ul li {
    text-align: left;
  }
  main#service-page section.section-services .three-block-animation .text {
    grid-column: unset;
  }
}
main#service-page section.section-case-studies div.title {
  position: relative;
}
main#service-page section.section-case-studies div.title div.arrow {
  display: grid;
  position: absolute;
  top: 0;
  left: 65%;
  gap: 0.5em;
  align-items: start;
  transform: translate(0%, -50%);
}
main#service-page section.section-case-studies div.title div.arrow p {
  text-align: center;
  color: var(--neutral-100);
  font-size: clamp(1.73rem, calc(1.56rem + 0.71vw), 2.20rem);
  font-family: "authenia";
  line-height: 0.9;
  text-wrap: balance;
  order: -1;
}
main#service-page section.section-case-studies div.title div.arrow svg {
  width: 4em;
  transform: scaleX(-1) rotate(-60deg);
}
@media screen and (min-width: 48em) {
  main#service-page section.section-case-studies div.title div.arrow {
    display: flex;
  }
  main#service-page section.section-case-studies div.title div.arrow p {
    order: unset;
    transform: translateY(-0.9em);
  }
  main#service-page section.section-case-studies div.title div.arrow svg {
    width: unset;
    transform: unset;
  }
}
@media screen and (min-width: 62em) {
  main#service-page section.section-case-studies div.title div.arrow {
    left: 50%;
  }
}
main#service-page section.section-quote form input, main#service-page section.section-quote form textarea, main#service-page section.section-quote form select {
  background-color: var(--white-opacity-100);
  color: var(--neutral-100);
  border: 1px solid transparent;
}
main#service-page section.section-quote form input:focus, main#service-page section.section-quote form textarea:focus, main#service-page section.section-quote form select:focus {
  border: 1px solid var(--white-opacity-200);
}
main#service-page section.section-faq div.grid {
  display: grid;
  gap: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
@media screen and (min-width: 48em) {
  main#service-page section.section-faq div.grid {
    gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  main#service-page section.section-faq div.stick {
    position: sticky;
    top: 15%;
  }
}
@media screen and (min-width: 62em) {
  main#service-page section.section-faq div.stick {
    padding-right: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
  }
  main#service-page section.section-faq div.stick h2 {
    max-width: 400px;
  }
  main#service-page section.section-faq div.stick p {
    max-width: 30ch;
  }
}
main#service-page select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 10L12 14L16 10' stroke='%23fff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
main#service-page select option {
  background-color: var(--neutral-100);
  color: var(--neutral-900);
}
main#service-page button {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
}

main#contact-page .confirmation {
  font-weight: 500;
  color: white;
  background: var(--success-400);
  padding: 0.8em 3em 0.8em 1em;
  border-radius: 0.15em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.75 20.75C16.2728 20.75 20.75 16.2728 20.75 10.75C20.75 5.22715 16.2728 0.75 10.75 0.75C5.22715 0.75 0.75 5.22715 0.75 10.75C0.75 16.2728 5.22715 20.75 10.75 20.75Z' stroke='white' stroke-width='1.5' vector-effect='non-scaling-stroke'/%3E%3Cpath d='M6.75 10.75L9.75 13.75L14.75 8.75' stroke='white' stroke-width='1.5' stroke-miterlimit='10' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) 50%;
  background-size: 1.5em;
  margin-bottom: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
main#contact-page div.line {
  width: 100%;
  height: 1px;
  background-color: var(--black-opacity-200);
}
main#contact-page ul.contact-links {
  display: grid;
  justify-items: start;
  gap: clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
}
main#contact-page ul.contact-links a {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  main#contact-page ul.contact-links a:hover {
    color: var(--primary-400);
  }
}
main#contact-page ul.contact-links svg {
  width: 1.5rem;
}
@media (hover: hover) and (pointer: fine) {
  main#contact-page ul.contact-links svg:hover path {
    fill: var(--primary-400);
  }
}
main#contact-page button {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
}
main#contact-page select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 10L12 14L16 10' stroke='%23000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
main#contact-page select option {
  background-color: var(--neutral-100);
  color: var(--neutral-900);
}

main#about-page section.hero-section {
  position: relative;
  min-height: calc(100svh - 80px);
  color: var(--neutral-100);
}
main#about-page section.hero-section .hero-reveal {
  overflow: hidden;
}
main#about-page section.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main#about-page section.hero-section div.container {
  min-height: calc(100svh - 80px);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem);
  padding-top: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
}
main#about-page section.hero-section::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--black-opacity-500);
}
main#about-page section.hero-section div.hero-grid {
  align-self: flex-end;
  display: grid;
  justify-items: start;
  gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem) clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
  align-items: start;
}
main#about-page section.hero-section div.hero-grid .partner-text {
  display: none;
}
main#about-page section.hero-section div.hero-grid .hero-reveal:has(a.watch) {
  display: none;
}
main#about-page section.hero-section div.hero-grid div.line {
  display: none;
}
main#about-page section.hero-section div.hero-grid h1 {
  font-size: clamp(2.49rem, calc(2.16rem + 1.42vw), 3.43rem);
  font-weight: 700;
}
main#about-page section.hero-section div.hero-grid a.watch {
  order: -1;
}
main#about-page section.hero-section div.bottom {
  margin-bottom: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  align-self: flex-end;
  display: flex;
  gap: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: end;
}
main#about-page section.hero-section div.bottom p {
  max-width: 50ch;
}
main#about-page section.hero-section div.bottom div.link {
  display: none;
  cursor: pointer;
  align-items: center;
  gap: 0.5em;
}
main#about-page section.hero-section div.bottom div.link svg {
  width: 0.8em;
}
main#about-page section.hero-section div.bottom div.link svg path {
  vector-effect: non-scaling-stroke;
  stroke-width: 1.5;
}
@media screen and (min-width: 48em) {
  main#about-page section.hero-section div.container {
    gap: 0;
    min-height: calc(100svh - 85px);
    padding-top: 0;
  }
  main#about-page section.hero-section div.container {
    gap: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
  }
  main#about-page section.hero-section div.hero-grid {
    align-self: center;
    padding-top: 1.5em;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(0.9375rem, 0.8608rem + 0.3409vw, 1.125rem) clamp(1.4375rem, 1.3352rem + 0.4545vw, 1.6875rem);
    transform: translateY(60%);
    position: relative;
  }
  main#about-page section.hero-section div.hero-grid .partner-text {
    display: block;
  }
  main#about-page section.hero-section div.hero-grid div.line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--white-opacity-200);
    position: absolute;
    top: 0;
    left: 0;
  }
  main#about-page section.hero-section div.hero-grid h1 {
    grid-row: 1/2;
  }
  main#about-page section.hero-section div.hero-grid p, main#about-page section.hero-section div.hero-grid h1 {
    grid-column: 1/8;
  }
  main#about-page section.hero-section div.hero-grid a.watch {
    order: unset;
    display: flex;
    justify-self: end;
    grid-row: 1/2;
    grid-column: 8/13;
  }
  main#about-page section.hero-section div.bottom {
    margin-bottom: clamp(2.8125rem, 2.5824rem + 1.0227vw, 3.375rem);
  }
  main#about-page section.hero-section div.bottom div.link {
    margin-left: auto;
    display: flex;
  }
}
@media screen and (min-width: 62em) {
  main#about-page section.hero-section {
    min-height: 100svh;
  }
  main#about-page section.hero-section div.container {
    min-height: 100svh;
  }
}
@media screen and (min-width: 75em) {
  main#about-page section.hero-section div.hero-grid p {
    grid-column: 1/4;
  }
  main#about-page section.hero-section div.hero-grid h1 {
    grid-column: 4/10;
  }
  main#about-page section.hero-section div.hero-grid a.watch {
    grid-column: 10/13;
  }
}
@media screen and (min-width: 75em) {
  main#about-page .break-heading {
    max-width: 15ch;
  }
}

main#case-study-page .case-study-grid {
  display: grid;
  gap: clamp(3.75rem, 3.4432rem + 1.3636vw, 4.5rem);
}
main#case-study-page .case-study-grid .sticky {
  background-color: var(--neutral-100);
  padding: clamp(1.875rem, 1.7216rem + 0.6818vw, 2.25rem);
  border: 1px solid var(--black-opacity-50);
}
main#case-study-page .case-study-grid .content h1 {
  display: none;
}
@media screen and (min-width: 62em) {
  main#case-study-page .case-study-grid {
    gap: clamp(5.625rem, 5.1648rem + 2.0455vw, 6.75rem);
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
  main#case-study-page .case-study-grid h1.mobile {
    display: none;
  }
  main#case-study-page .case-study-grid .sticky {
    position: sticky;
    top: 15%;
  }
  main#case-study-page .case-study-grid .content h1 {
    display: block;
  }
}
main#case-study-page .table-wrapper {
  overflow: scroll;
  background-color: #F9F9F9;
}
main#case-study-page .table-wrapper table {
  border-collapse: collapse;
  width: max(20rem, 100%);
  table-layout: fixed;
}
main#case-study-page .table-wrapper table th {
  background: var(--accent-400) !important;
  color: var(--neutral-100);
  font-weight: 600;
}
main#case-study-page .table-wrapper table tbody tr:nth-child(even) {
  background: #EEEEEE;
}
main#case-study-page .table-wrapper table tbody tr:nth-child(even) th {
  background: #EEEEEE;
}
main#case-study-page .table-wrapper table tbody th {
  background: #F9F9F9;
}
main#case-study-page .table-wrapper table th,
main#case-study-page .table-wrapper table caption {
  text-align: start;
}
main#case-study-page .table-wrapper table th,
main#case-study-page .table-wrapper table td {
  padding: 0.75rem;
  vertical-align: baseline;
}
main#case-study-page .table-wrapper table th:first-child {
  border-inline-end: none;
}
main#case-study-page .table-wrapper table td:first-of-type {
  border-inline-start: none;
}
main#case-study-page .table-wrapper table td:where(thead, tfoot) th:nth-child(2) {
  border-inline-start: none;
}
main#case-study-page .table-wrapper table span.fraction {
  padding-left: 0.3em;
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
}

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