:root {
  --size-1: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
  --size-2: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  --size-3: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  --size-4: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  --size-5: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
  --size-6: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
  --size-7: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
  --size-8: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
  --size-9: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
  --size-10: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}

:root {
  --neutral-100: white;
  --neutral-200: #f7f7f7;
  --neutral-800: #211D1D;
  --neutral-900: black;
  --primary-400: #00AEEF;
  --white-opacity-50: rgba(255, 255, 255, 0.05);
  --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);
  --success-400: #51cb00;
  --danger-400: #FF1100;
}

/* 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;
}

/* 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: "din-2014", 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);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  min-height: 100vh;
  min-height: 100svh;
  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: block;
  color: inherit;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul[data-type=list] {
  margin: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) 0;
  padding-left: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
ul[data-type=list] li {
  line-height: 1.6;
  list-style: disc;
}

ol {
  margin: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) 0;
  padding-left: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
ol li {
  line-height: 1.6;
}

table {
  width: 100%;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-collapse: collapse;
}
table th {
  font-weight: 700;
}
table td, table th {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  padding: 10px;
  text-align: center;
  display: grid;
  place-content: center;
  min-width: 150px;
}
table tr {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

#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);
}

::selection {
  background-color: var(--primary-400);
  color: #FFF;
}

.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 {
  --btn-padding: 0.75em;
  --btn-border-radius: 0.2em;
  --btn-focus-inset: -0.125em;
  --btn-click-scale: 0.955 0.925;
  --btn-focus-scale: 1.15;
  --btn-ease-click: cubic-bezier(0.4, 0, 0.2, 1);
  --btn-ease-hover: linear(0, 0.5737 7.6%, 0.8382 11.87%, 0.9463 14.19%, 1.0292 16.54%, 1.0886 18.97%, 1.1258 21.53%, 1.137 22.97%, 1.1424 24.48%, 1.1423 26.1%, 1.1366 27.86%, 1.1165 31.01%, 1.0507 38.62%, 1.0219 42.57%, 0.9995 46.99%, 0.9872 51.63%, 0.9842 58.77%, 1.0011 81.26%, 1);
  --btn-ease-focus: cubic-bezier(0.32, 0.72, 0, 1);
  -webkit-user-select: none;
  user-select: none;
  background-color: #0000;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline-style: none;
  padding: 0;
  line-height: 1;
  text-decoration: none;
  display: inline-grid;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: scale 0.15s var(--btn-ease-click);
  text-transform: uppercase;
  font-weight: 600;
}
.button::after {
  content: "";
  display: block;
  position: absolute;
  inset: var(--btn-focus-inset);
  border-radius: var(--btn-border-radius);
  transition: box-shadow 0.2s var(--btn-ease-focus), scale 0.85s var(--btn-ease-hover);
  scale: var(--btn-focus-scale);
  pointer-events: none;
  z-index: 1;
}
.button:is(:focus-visible)::after {
  box-shadow: 0 0 0 0.125em var(--btn-color-focus);
  scale: 1 1;
}
.button:active {
  scale: var(--btn-click-scale);
}
.button[data-type=primary] {
  --btn-color: var(--neutral-100);
  --btn-color-background: var(--primary-400);
  --btn-hover-color: var(--neutral-100);
  --btn-hover-color-background: var(--primary-400);
  --btn-color-focus: var(--neutral-900);
}
.button[data-type=secondary] {
  --btn-color: var(--neutral-100);
  --btn-color-background: transparent;
  --btn-hover-color: var(--neutral-100);
  --btn-hover-color-background: var(--primary-400);
  --btn-color-focus: var(--neutral-900);
  --btn-border: 1px solid var(--primary-400);
}
.button[data-type=white] {
  --btn-color: var(--neutral-900);
  --btn-color-background: var(--neutral-100);
  --btn-hover-color: var(--neutral-100);
  --btn-hover-color-background: var(--primary-400);
  --btn-color-focus: var(--neutral-900);
}
.button[data-type=opacity] {
  --btn-color: var(--neutral-100);
  --btn-color-background: var(--white-opacity-100);
  --btn-hover-color: var(--neutral-100);
  --btn-hover-color-background: var(--primary-400);
  --btn-color-focus: var(--neutral-900);
}
.button[data-icon] .btn-default-inner,
.button[data-icon] .btn-hover-inner {
  aspect-ratio: 1;
}
.button[data-icon] .btn-icon {
  width: 1em;
  height: 1em;
}
.button .btn-inner {
  pointer-events: none;
  perspective: 15em;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  grid-area: 1/1;
  place-items: center;
  display: grid;
}
.button .btn-default {
  width: 100%;
  height: 100%;
  color: var(--btn-color);
  grid-area: 1/1;
  display: grid;
  transition: translate 0.85s 0.05s var(--btn-ease-hover), rotate 0.95s 0.05s var(--btn-ease-hover), opacity 0.15s 0.05s ease-out;
}
.button .btn-default-bg {
  background-color: var(--btn-color-background);
  border-radius: var(--btn-border-radius);
  border: var(--btn-border, none);
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  padding: 0;
}
.button .btn-default-inner {
  grid-column-gap: 0.125em;
  grid-row-gap: 0.125em;
  width: 100%;
  height: 100%;
  padding: var(--btn-padding);
  grid-area: 1/1;
  justify-content: center;
  align-items: center;
  display: flex;
}
.button .btn-hover {
  width: 100%;
  height: 100%;
  color: var(--btn-hover-color);
  z-index: 1;
  grid-area: 1/1;
  display: grid;
  transition: translate 0.85s var(--btn-ease-hover), rotate 0.95s var(--btn-ease-hover), opacity 0.15s ease-out;
  opacity: 0;
  translate: 0 0 -3.5em;
  rotate: 1 0 0 -90deg;
}
.button .btn-hover-bg {
  border-radius: var(--btn-border-radius);
  background-color: var(--btn-hover-color-background);
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  padding: 0;
}
.button .btn-hover-inner {
  grid-column-gap: 0.125em;
  grid-row-gap: 0.125em;
  width: 100%;
  height: 100%;
  padding: var(--btn-padding);
  grid-area: 1/1;
  justify-content: center;
  align-items: center;
  display: flex;
}
.button .btn-icon {
  flex: none;
  width: 0.75em;
  height: 0.75em;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .button:is(:hover, :focus-visible) .btn-default,
[data-hover]:is(:hover, :focus-visible) .button .btn-default {
    translate: 0 0 -3.5em;
    rotate: 1 0 0 90deg;
    opacity: 0;
    transition-delay: 0.05s;
  }

  .button:is(:hover, :focus-visible) .btn-hover,
[data-hover]:is(:hover, :focus-visible) .button .btn-hover {
    transition: translate 0.85s 0.1s var(--btn-ease-hover), rotate 0.95s 0.1s var(--btn-ease-hover), opacity 0.075s 0.1s ease-in;
    rotate: 1 0 0 0deg;
    translate: 0 0 0;
    opacity: 1;
  }
}
.link {
  --link-color: inherit;
  --link-hover-color: var(--primary-400);
  --link-color-focus: var(--neutral-900);
  --link-border-radius: 0.25em;
  --link-focus-inset: -0.125em;
  --link-click-scale: 0.955 0.925;
  --link-focus-scale: 1.15;
  --link-ease-click: cubic-bezier(0.4, 0, 0.2, 1);
  --link-ease-hover: linear(0, 0.5737 7.6%, 0.8382 11.87%, 0.9463 14.19%, 1.0292 16.54%, 1.0886 18.97%, 1.1258 21.53%, 1.137 22.97%, 1.1424 24.48%, 1.1423 26.1%, 1.1366 27.86%, 1.1165 31.01%, 1.0507 38.62%, 1.0219 42.57%, 0.9995 46.99%, 0.9872 51.63%, 0.9842 58.77%, 1.0011 81.26%, 1);
  --link-ease-focus: cubic-bezier(0.32, 0.72, 0, 1);
  -webkit-user-select: none;
  user-select: none;
  outline-style: none;
  line-height: 1;
  text-decoration: none;
  display: inline-grid;
  perspective: 15em;
  transform-style: preserve-3d;
  place-items: center;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: scale 0.15s var(--link-ease-click);
}
.link::after {
  content: "";
  display: block;
  position: absolute;
  inset: var(--link-focus-inset);
  border-radius: var(--link-border-radius);
  transition: box-shadow 0.2s var(--link-ease-focus), scale 0.85s var(--link-ease-hover);
  scale: var(--link-focus-scale);
  pointer-events: none;
  z-index: 1;
}
.link:is(:focus-visible)::after {
  box-shadow: 0 0 0 0.125em var(--link-color-focus);
  scale: 1 1;
}
.link:active {
  scale: var(--link-click-scale);
}
.link .link-default {
  color: var(--link-color);
  grid-area: 1/1;
  transition: translate 0.85s 0.05s var(--link-ease-hover), rotate 0.95s 0.05s var(--link-ease-hover), opacity 0.15s 0.05s ease-out;
}
.link .link-hover {
  color: var(--link-hover-color);
  z-index: 1;
  grid-area: 1/1;
  transition: translate 0.85s var(--link-ease-hover), rotate 0.95s var(--link-ease-hover), opacity 0.15s ease-out;
  opacity: 0;
  translate: 0 0 -3.5em;
  rotate: 1 0 0 -90deg;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .link:is(:hover, :focus-visible) .link-default,
[data-hover]:is(:hover, :focus-visible) .link .link-default {
    translate: 0 0 -3.5em;
    rotate: 1 0 0 90deg;
    opacity: 0;
    transition-delay: 0.05s;
  }

  .link:is(:hover, :focus-visible) .link-hover,
[data-hover]:is(:hover, :focus-visible) .link .link-hover {
    transition: translate 0.85s 0.1s var(--link-ease-hover), rotate 0.95s 0.1s var(--link-ease-hover), opacity 0.075s 0.1s ease-in;
    rotate: 1 0 0 0deg;
    translate: 0 0 0;
    opacity: 1;
  }
}
.news-card {
  text-decoration: none;
  display: block;
}
.news-card .date {
  display: block;
  color: var(--primary-400);
  padding-top: 0.8em;
}
.news-card .title {
  padding-top: 0.25em;
}

.case-study-card {
  text-decoration: none;
  display: block;
}
.case-study-card .client {
  display: block;
  color: var(--primary-400);
  padding-top: 0.8em;
}
.case-study-card .title {
  padding-top: 0.25em;
}

.recent-news-card {
  background-color: var(--neutral-100);
  padding: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  text-decoration: none;
  display: block;
}
.recent-news-card .date {
  display: block;
  color: var(--black-opacity-500);
}
.recent-news-card .title {
  padding-top: 0.25em;
}

.van-card .title-grid {
  display: grid;
  gap: 0.5em;
  grid-template-columns: 1fr auto;
}
.van-card .title-grid p, .van-card .title-grid h3 {
  line-height: 1.2;
}
.van-card .tags {
  background-color: var(--neutral-100);
  display: flex;
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
  border-radius: 0.15em;
  width: max-content;
  margin-top: 1em;
}
.van-card .tags div {
  border-right: 1px solid var(--black-opacity-200);
  padding: 0.4em 0.6em;
}
.van-card .tags div:last-of-type {
  border: 0;
}

header {
  height: 85px;
  display: grid;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.4s ease, height 0.4s ease, background-color 0.4s ease;
  background-color: var(--neutral-800);
}
[data-scrolling-started=true][data-scrolling-direction=down] header {
  transform: translateY(-100%);
}
header .header-grid {
  display: grid;
}
header .header-grid ul {
  display: none;
}
header .logo {
  width: 6rem;
  transition: 0.4s ease;
}
header.hero {
  height: 105px;
  background-color: transparent;
}
header.hero.scrolled {
  height: 85px;
  background-color: var(--neutral-800);
}
@media screen and (min-width: 48em) {
  header .header-grid {
    grid-template-columns: auto 1fr auto;
    gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  }
  header .header-grid .logo {
    order: -1;
  }
  header .header-grid ul {
    display: flex;
  }
  header .header-grid ul:first-of-type {
    justify-self: end;
  }
}
@media screen and (min-width: 62em) {
  header .header-grid {
    grid-template-columns: 1fr auto 1fr;
  }
  header .header-grid .logo {
    order: unset;
  }
  header .header-grid ul:first-of-type {
    justify-self: unset;
  }
  header .header-grid ul:last-of-type {
    justify-self: end;
  }
  header.hero .logo {
    width: 8rem;
  }
  header.hero.scrolled .logo {
    width: 6rem;
  }
}

.navigation {
  z-index: 500;
  pointer-events: none;
  position: fixed;
  inset: 0;
}
.navigation .dark-bg {
  transition: all 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
  background-color: var(--neutral-900);
  position: absolute;
  inset: 0;
}
.navigation .hamburger-nav {
  border-radius: 0.2em;
  position: absolute;
  top: 14.5px;
  right: 5%;
}
.navigation .hamburger-nav .bg {
  transition: all 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  background-color: var(--neutral-100);
  border-radius: 0.2em;
  width: 3.5em;
  height: 3.5em;
  position: absolute;
  top: 0;
  right: 0;
}
.navigation .hamburger-nav .group {
  transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1), transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  gap: 1em;
  pointer-events: auto;
  transform-origin: 100% 0;
  flex-flow: column;
  padding: 2.25em 2.5em 2em 2em;
  display: flex;
  position: relative;
  transform: scale(0.15) rotate(0.001deg);
  opacity: 0;
  visibility: hidden;
}
.navigation .hamburger-nav .group .menu-label {
  opacity: 0.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-800);
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 400;
}
.navigation .hamburger-nav .group ul {
  gap: 0.375em;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  position: relative;
}
.navigation .hamburger-nav .group ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navigation .hamburger-nav .group ul li a {
  color: var(--neutral-800);
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
}
.navigation .hamburger-nav .group ul li a p {
  white-space: nowrap;
  margin-bottom: 0;
  padding-right: 1.25em;
  font-size: 2em;
}
.navigation .hamburger-nav .group ul li a .dot {
  transition: all 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  background-color: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  width: 0.5em;
  height: 0.5em;
  transform: scale(0) rotate(0.001deg);
  opacity: 0.5;
}
.navigation .hamburger-nav .group ul li a[aria-current] {
  color: var(--primary-400);
}
.navigation .hamburger-nav .group ul li a[aria-current] .dot {
  transform: scale(1) rotate(0.001deg);
  opacity: 1;
}
.navigation .hamburger-nav:has(a:hover) .group ul li a .dot {
  transform: scale(0) rotate(0.001deg);
}
.navigation .hamburger-nav .group ul li a:hover .dot {
  transform: scale(1) rotate(0.001deg);
  opacity: 0.25;
}
.navigation .hamburger-nav .toggle {
  transition: transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  pointer-events: auto;
  cursor: pointer;
  border-radius: 0.2em;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 3.5em;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0em, 0em) rotate(0.001deg);
}
.navigation .hamburger-nav .toggle .bar {
  transition: transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  background-color: var(--neutral-800);
  width: 40%;
  height: 0.125em;
  position: absolute;
  transform: translateY(-0.15em) rotate(0.001deg);
}
.navigation .hamburger-nav .toggle .bar:nth-child(2) {
  transform: translateY(0.15em) rotate(0.001deg);
}
.navigation .hamburger-nav .toggle:hover .bar {
  transform: translateY(0.15em) rotate(0.001deg);
}
.navigation .hamburger-nav .toggle:hover .bar:nth-child(2) {
  transform: translateY(-0.15em) rotate(0.001deg);
}
.navigation.hero .hamburger-nav {
  top: 24.5px;
}
.navigation[data-navigation-status=active] .dark-bg {
  opacity: 0.33;
  visibility: visible;
}
.navigation[data-navigation-status=active] .hamburger-nav .bg {
  width: 100%;
  height: 100%;
}
.navigation[data-navigation-status=active] .hamburger-nav .group {
  transform: scale(1) rotate(0.001deg);
  opacity: 1;
  visibility: visible;
}
.navigation[data-navigation-status=active] .hamburger-nav .toggle {
  transform: translate(-1em, 1em) rotate(0.001deg);
}
.navigation[data-navigation-status=active] .hamburger-nav .toggle .bar {
  transform: translateY(0em) rotate(45deg);
}
.navigation[data-navigation-status=active] .hamburger-nav .toggle .bar:nth-child(2) {
  transform: translateY(0em) rotate(-45deg);
}
@media screen and (min-width: 48em) {
  .navigation {
    display: none;
  }
}

.footer-wrap {
  position: relative;
  overflow: hidden;
}

.footer-wrap-dark {
  opacity: 0;
  pointer-events: none;
  background-color: var(--neutral-900);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

footer {
  position: relative;
}
footer .logo {
  width: 8rem;
}
footer a {
  text-decoration: none;
}

.input-wrapper {
  display: grid;
}
.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;
  border-radius: 0.15em;
}
.input-wrapper input:focus, .input-wrapper select:focus, .input-wrapper textarea:focus {
  border: 1px solid var(--black-opacity-300);
}
.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%;
}

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

.aspect-ratio-16-9 {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.aspect-ratio-16-9 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aspect-ratio-1 {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.aspect-ratio-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.aspect-ratio-1.contain img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.aspect-ratio-portrait {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.aspect-ratio-portrait img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-blocks {
  display: grid;
  gap: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.page-blocks .block video {
  max-width: 100%;
}
.page-blocks .block.image {
  overflow: hidden;
  aspect-ratio: 3/2;
  position: relative;
}
.page-blocks .block.image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-blocks .block.image-text {
  display: grid;
  gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  align-items: start;
}
.page-blocks .block.image-text .image {
  overflow: hidden;
}
@media (min-width: 600px) {
  .page-blocks .block.image-text {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-blocks .block.image-text.reverse .image {
    order: 2;
  }
  .page-blocks .block.image-text.reverse .text {
    order: 1;
  }
}
@media screen and (min-width: 62em) {
  .page-blocks .block.image-text {
    grid-template-columns: 1fr;
  }
  .page-blocks .block.image-text[data-type=reverse] .image {
    order: unset;
  }
  .page-blocks .block.image-text[data-type=reverse] .text {
    order: unset;
  }
}
@media (min-width: 1200px) {
  .page-blocks .block.image-text {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-blocks .block.image-text[data-type=reverse] .image {
    order: 2;
  }
  .page-blocks .block.image-text[data-type=reverse] .text {
    order: 1;
  }
}
.page-blocks .block.file {
  justify-self: start;
}
.page-blocks .block.file .btn-default-inner,
.page-blocks .block.file .btn-hover-inner {
  gap: 0.5em;
}
.page-blocks .block.file .btn-icon path {
  vector-effect: non-scaling-stroke;
}
.page-blocks .block.gallery .f-carousel__slide {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.page-blocks .block.gallery .f-carousel__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-blocks .block.quote svg {
  width: 100%;
  max-width: 4rem;
}
.page-blocks .block.quote .text {
  font-size: clamp(1.20rem, calc(1.13rem + 0.31vw), 1.41rem);
  font-weight: 500;
  padding-top: 0.5em;
  padding-bottom: 0.8em;
}
.page-blocks .block.quote span {
  display: block;
  padding-top: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  padding-bottom: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.page-blocks .block.youtube {
  overflow: hidden;
}
.page-blocks .block.youtube.aspect-ratio-9by16 {
  text-align: center;
}
.page-blocks .block.youtube.aspect-ratio-9by16 iframe {
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 400px;
}
.page-blocks .block.youtube.aspect-ratio-16by9 iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.page-blocks .block.carousel .carousel-header {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.page-blocks .block.carousel .carousel-header h2 {
  margin: 0;
}
.page-blocks .block.carousel .carousel-nav {
  display: flex;
  gap: 0.5em;
  justify-content: flex-end;
}
.page-blocks .block.carousel .previous-button.disabled, .page-blocks .block.carousel .next-button.disabled {
  pointer-events: none;
  opacity: 0.3;
}
.page-blocks .block.carousel .f-carousel {
  --f-carousel-slide-width: calc((100% - 15px) / 1.01);
  --f-carousel-gap: 15px;
  clip-path: inset(0 -100vw 0 0);
}
@media screen and (min-width: 48em) {
  .page-blocks .block.carousel .f-carousel {
    --f-carousel-slide-width: calc((100% - 25px) / 2);
    --f-carousel-gap: 25px;
  }
}
@media screen and (min-width: 62em) {
  .page-blocks .block.carousel .f-carousel {
    --f-carousel-slide-width: calc((100% - 15px) / 1.5);
  }
}
@media screen and (min-width: 75em) {
  .page-blocks .block.carousel .f-carousel {
    --f-carousel-slide-width: calc((100% - 25px) / 2);
  }
}
.page-blocks .block.carousel .f-carousel__viewport {
  overflow: visible;
}
.page-blocks .block.carousel .f-carousel__slide .slide-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  margin-bottom: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.page-blocks .block.carousel .f-carousel__slide .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-blocks .f-thumbs {
  --f-thumb-clip-width: 35px;
  margin-top: calc(-1 * clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem));
}
.page-blocks .f-button {
  --f-arrow-color: #000;
  --f-arrow-hover-color: #fff;
  --f-arrow-bg: #fff;
  --f-arrow-hover-bg: var(--primary-400);
  --f-arrow-active-bg: var(--primary-400);
  --f-arrow-border-radius: 0.2em;
  --f-arrow-pos: 20px;
}

.wysiwyg {
  display: grid;
}
.wysiwyg h2 {
  font-family: "baucher-gothic-urw", sans-serif;
  font-size: clamp(3.78rem, 2.5798rem + 5.3343vw, 6.7139rem);
  line-height: 0.85;
  text-wrap: balance;
  text-transform: uppercase;
  padding-top: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.wysiwyg h3 {
  font-family: "baucher-gothic-urw", sans-serif;
  font-size: clamp(3.15rem, 2.2414rem + 4.0384vw, 5.3711rem);
  line-height: 0.85;
  text-wrap: balance;
  text-transform: uppercase;
  padding-top: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.wysiwyg h4 {
  font-family: "baucher-gothic-urw", sans-serif;
  font-size: clamp(2.625rem, 1.9411rem + 3.0398vw, 4.2969rem);
  line-height: 0.85;
  text-wrap: balance;
  text-transform: uppercase;
  padding-top: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.wysiwyg ul {
  list-style: disc;
  margin: 0;
  padding: 0;
  padding-left: 2.5rem;
  max-width: 65ch;
  display: grid;
  gap: 0.6rem;
  line-height: 1.5;
  padding-top: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.wysiwyg ol {
  margin: 0;
  padding: 0;
  padding-left: 2.5rem;
  max-width: 65ch;
  display: grid;
  gap: 0.6rem;
  line-height: 1.5;
  padding-top: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.wysiwyg strong {
  font-weight: 700;
}
.wysiwyg p {
  padding-top: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.wysiwyg a:not(.button) {
  --link-color: var(--primary-400);
  --link-hover-color: var(--primary-400);
  justify-self: start;
  color: var(--primary-400);
  line-height: 1.5;
  text-decoration: none;
}
.wysiwyg a.button {
  margin-top: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.wysiwyg p:has(> .button) {
  padding-top: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.wysiwyg > *:first-child {
  padding-top: 0;
}

.pager-wrapper ol.pager .page-no span, .pager-wrapper ol.pager a,
.pager-wrapper ol.pager .ellipses span {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.pager-wrapper {
  display: grid;
  justify-content: center;
  padding-top: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.pager-wrapper ol.pager {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.pager-wrapper ol.pager li {
  width: 35px;
  height: 35px;
  border-radius: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
@media (hover: hover) and (pointer: fine) {
  .pager-wrapper ol.pager li:has(a):hover {
    background-color: var(--black-opacity-100);
  }
}
.pager-wrapper ol.pager a,
.pager-wrapper ol.pager .ellipses span {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.05);
}
.pager-wrapper ol.pager .page-no span {
  background-color: var(--neutral-900);
  color: var(--neutral-100);
  line-height: 1;
}

section.cta-section {
  position: relative;
}
section.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
section.cta-section .container {
  position: relative;
  z-index: 3;
}

[data-modal-target] {
  cursor: pointer;
}

.modal {
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  padding: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem) clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
  transition: opacity 0.2s cubic-bezier(0.625, 0.05, 0, 1), visibility 0.2s cubic-bezier(0.625, 0.05, 0, 1);
}
.modal[data-modal-group-status=active] {
  opacity: 1;
  visibility: visible;
}
.modal .modal-backdrop {
  pointer-events: auto;
  cursor: pointer;
  background-color: var(--black-opacity-500);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.modal .modal-card {
  pointer-events: auto;
  background-color: #EAEAEA;
  border-radius: 0.5em;
  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);
  width: 100%;
  max-width: 54em;
  max-height: 100%;
  padding: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  display: none;
  position: relative;
  border: 10px solid var(--neutral-100);
}
.modal .modal-card[data-modal-status=active] {
  display: flex;
}
.modal .modal-scroll {
  width: 100%;
  max-height: 100%;
  display: flex;
  flex-flow: column;
  position: relative;
  overflow: auto;
}
.modal .modal-content {
  display: flex;
  flex-flow: column;
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  padding: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem) clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.modal .modal-content .button {
  align-self: flex-start;
}
.modal .modal-close {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
}

#standard-carousel {
  --f-carousel-slide-width: calc((100% - 15px) / 1.01);
  --f-carousel-gap: 15px;
}
#standard-carousel .f-carousel__viewport {
  overflow: visible;
}
#standard-carousel .f-carousel__slide {
  text-decoration: none;
}
@media screen and (min-width: 48em) {
  #standard-carousel {
    --f-carousel-slide-width: calc((100% - 25px) / 2);
    --f-carousel-gap: 25px;
  }
}
@media screen and (min-width: 62em) {
  #standard-carousel {
    --f-carousel-slide-width: calc((100% - 50px) / 3);
  }
}

.standard-carousel-count {
  user-select: none;
  font-size: clamp(1.20rem, calc(1.13rem + 0.31vw), 1.41rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5em;
  gap: 0.7em;
}
.standard-carousel-count .total-page {
  color: var(--black-opacity-300);
}
.standard-carousel-count.dark {
  color: var(--neutral-100);
}
.standard-carousel-count.dark .total-page {
  color: var(--white-opacity-300);
}

.breadcrumb {
  padding-bottom: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  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-500);
}
.breadcrumb span {
  color: var(--black-opacity-300);
}
.breadcrumb a {
  text-decoration: none;
  line-height: 1;
}
@media (hover) {
  .breadcrumb a:hover {
    color: var(--primary-400);
  }
}
.breadcrumb svg {
  width: 1rem;
  margin-top: 0.1rem;
}
.breadcrumb svg path {
  fill: var(--neutral-900);
}
@media (hover) {
  .breadcrumb svg:hover path {
    fill: var(--primary-400);
  }
}

/**
 * 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;
  width: fit-content;
  align-items: center;
}
.flex.justify-space-between {
  justify-content: space-between;
  width: 100%;
}
.flex.justify-center {
  justify-content: center;
}
.flex.align-items-end {
  align-items: end;
}

.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-800 {
  color: var(--neutral-800);
}

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

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

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

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

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

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

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

.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-success-400 {
  color: var(--success-400);
}

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

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

.bg-danger-400 {
  background-color: var(--danger-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(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}

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

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

.margin-1 {
  margin: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-top-1 {
  margin-block-start: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-bottom-1 {
  margin-block-end: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-block-1 {
  margin-block: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-left-1 {
  margin-inline-start: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-right-1 {
  margin-inline-end: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.margin-inline-1 {
  margin-inline: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}

.padding-1 {
  padding: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-top-1 {
  padding-block-start: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-bottom-1 {
  padding-block-end: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-block-1 {
  padding-block: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-left-1 {
  padding-inline-start: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-right-1 {
  padding-inline-end: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}
.padding-inline-1 {
  padding-inline: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}

.margin-2 {
  margin: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-top-2 {
  margin-block-start: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-bottom-2 {
  margin-block-end: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-block-2 {
  margin-block: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-left-2 {
  margin-inline-start: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-right-2 {
  margin-inline-end: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.margin-inline-2 {
  margin-inline: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.padding-2 {
  padding: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-top-2 {
  padding-block-start: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-bottom-2 {
  padding-block-end: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-block-2 {
  padding-block: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-left-2 {
  padding-inline-start: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-right-2 {
  padding-inline-end: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}
.padding-inline-2 {
  padding-inline: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.margin-3 {
  margin: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-top-3 {
  margin-block-start: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-bottom-3 {
  margin-block-end: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-block-3 {
  margin-block: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-left-3 {
  margin-inline-start: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-right-3 {
  margin-inline-end: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.margin-inline-3 {
  margin-inline: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

.padding-3 {
  padding: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-top-3 {
  padding-block-start: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-bottom-3 {
  padding-block-end: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-block-3 {
  padding-block: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-left-3 {
  padding-inline-start: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-right-3 {
  padding-inline-end: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
.padding-inline-3 {
  padding-inline: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

.margin-4 {
  margin: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-top-4 {
  margin-block-start: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-bottom-4 {
  margin-block-end: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-block-4 {
  margin-block: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-left-4 {
  margin-inline-start: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-right-4 {
  margin-inline-end: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.margin-inline-4 {
  margin-inline: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}

.padding-4 {
  padding: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-top-4 {
  padding-block-start: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-bottom-4 {
  padding-block-end: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-block-4 {
  padding-block: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-left-4 {
  padding-inline-start: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-right-4 {
  padding-inline-end: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
.padding-inline-4 {
  padding-inline: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}

.margin-5 {
  margin: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-top-5 {
  margin-block-start: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-bottom-5 {
  margin-block-end: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-block-5 {
  margin-block: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-left-5 {
  margin-inline-start: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-right-5 {
  margin-inline-end: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.margin-inline-5 {
  margin-inline: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}

.padding-5 {
  padding: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-top-5 {
  padding-block-start: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-bottom-5 {
  padding-block-end: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-block-5 {
  padding-block: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-left-5 {
  padding-inline-start: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-right-5 {
  padding-inline-end: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
.padding-inline-5 {
  padding-inline: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}

.margin-6 {
  margin: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-top-6 {
  margin-block-start: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-bottom-6 {
  margin-block-end: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-block-6 {
  margin-block: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-left-6 {
  margin-inline-start: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-right-6 {
  margin-inline-end: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.margin-inline-6 {
  margin-inline: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}

.padding-6 {
  padding: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-top-6 {
  padding-block-start: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-bottom-6 {
  padding-block-end: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-block-6 {
  padding-block: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-left-6 {
  padding-inline-start: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-right-6 {
  padding-inline-end: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}
.padding-inline-6 {
  padding-inline: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}

.margin-7 {
  margin: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-top-7 {
  margin-block-start: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-bottom-7 {
  margin-block-end: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-block-7 {
  margin-block: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-left-7 {
  margin-inline-start: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-right-7 {
  margin-inline-end: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.margin-inline-7 {
  margin-inline: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}

.padding-7 {
  padding: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-top-7 {
  padding-block-start: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-bottom-7 {
  padding-block-end: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-block-7 {
  padding-block: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-left-7 {
  padding-inline-start: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-right-7 {
  padding-inline-end: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
.padding-inline-7 {
  padding-inline: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}

.margin-8 {
  margin: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-top-8 {
  margin-block-start: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-bottom-8 {
  margin-block-end: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-block-8 {
  margin-block: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-left-8 {
  margin-inline-start: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-right-8 {
  margin-inline-end: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.margin-inline-8 {
  margin-inline: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}

.padding-8 {
  padding: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-top-8 {
  padding-block-start: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-bottom-8 {
  padding-block-end: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-block-8 {
  padding-block: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-left-8 {
  padding-inline-start: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-right-8 {
  padding-inline-end: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}
.padding-inline-8 {
  padding-inline: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}

.margin-9 {
  margin: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-top-9 {
  margin-block-start: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-bottom-9 {
  margin-block-end: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-block-9 {
  margin-block: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-left-9 {
  margin-inline-start: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-right-9 {
  margin-inline-end: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.margin-inline-9 {
  margin-inline: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}

.padding-9 {
  padding: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-top-9 {
  padding-block-start: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-bottom-9 {
  padding-block-end: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-block-9 {
  padding-block: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-left-9 {
  padding-inline-start: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-right-9 {
  padding-inline-end: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}
.padding-inline-9 {
  padding-inline: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}

.margin-10 {
  margin: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-top-10 {
  margin-block-start: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-bottom-10 {
  margin-block-end: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-block-10 {
  margin-block: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-left-10 {
  margin-inline-start: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-right-10 {
  margin-inline-end: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.margin-inline-10 {
  margin-inline: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}

.padding-10 {
  padding: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-top-10 {
  padding-block-start: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-bottom-10 {
  padding-block-end: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-block-10 {
  padding-block: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-left-10 {
  padding-inline-start: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-right-10 {
  padding-inline-end: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}
.padding-inline-10 {
  padding-inline: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}

.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.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}

.gap-2 {
  gap: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.gap-3 {
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

.gap-4 {
  gap: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}

.gap-5 {
  gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}

.gap-6 {
  gap: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}

.gap-7 {
  gap: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}

.gap-8 {
  gap: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}

.gap-9 {
  gap: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}

.gap-10 {
  gap: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}

.gap-y-1 {
  row-gap: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
}

.gap-y-2 {
  row-gap: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
}

.gap-y-3 {
  row-gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

.gap-y-4 {
  row-gap: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}

.gap-y-5 {
  row-gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}

.gap-y-6 {
  row-gap: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
}

.gap-y-7 {
  row-gap: clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}

.gap-y-8 {
  row-gap: clamp(4.38rem, calc(2.83rem + 6.57vw), 8.75rem);
}

.gap-y-9 {
  row-gap: clamp(6.56rem, calc(4.25rem + 9.86vw), 13.13rem);
}

.gap-y-10 {
  row-gap: clamp(8.75rem, calc(5.67rem + 13.15vw), 17.50rem);
}

.standard-gap {
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

:root {
  --standard-gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}

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

.ff-accent {
  font-family: "baucher-gothic-urw", sans-serif;
}

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

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

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

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

.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-family: "baucher-gothic-urw", sans-serif;
  font-size: clamp(5.4432rem, 3.3784rem + 9.1768vw, 10.4904rem);
  line-height: 0.85;
  text-wrap: balance;
  text-transform: uppercase;
}

.heading-2 {
  font-family: "baucher-gothic-urw", sans-serif;
  font-size: clamp(4.536rem, 2.9584rem + 7.0115vw, 8.3923rem);
  line-height: 0.85;
  text-wrap: balance;
  text-transform: uppercase;
}

.heading-3 {
  font-family: "baucher-gothic-urw", sans-serif;
  font-size: clamp(3.78rem, 2.5798rem + 5.3343vw, 6.7139rem);
  line-height: 0.85;
  text-wrap: balance;
  text-transform: uppercase;
}

.heading-4 {
  font-family: "baucher-gothic-urw", sans-serif;
  font-size: clamp(3.15rem, 2.2414rem + 4.0384vw, 5.3711rem);
  line-height: 0.85;
  text-wrap: balance;
  text-transform: uppercase;
}

.heading-5 {
  font-family: "baucher-gothic-urw", sans-serif;
  font-size: clamp(2.625rem, 1.9411rem + 3.0398vw, 4.2969rem);
  line-height: 0.85;
  text-wrap: balance;
  text-transform: uppercase;
}

.heading-6 {
  font-family: "baucher-gothic-urw", sans-serif;
  font-size: clamp(2.1875rem, 1.6761rem + 2.2727vw, 3.4375rem);
  line-height: 0.85;
  text-wrap: balance;
  text-transform: uppercase;
}

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

main#home-page section.hero-section {
  position: relative;
  height: 100vh;
}
main#home-page section.hero-section video {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
main#home-page section.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  pointer-events: none;
}
main#home-page section.hero-section .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}
main#home-page section.hero-section .title-grid {
  align-self: flex-end;
  justify-items: start;
  display: grid;
}
main#home-page section.hero-section .title-grid h1 {
  display: contents;
}
main#home-page section.hero-section .title-grid .handcrafted {
  grid-row: 3/4;
}
main#home-page section.hero-section .button {
  margin-top: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
main#home-page section.hero-section .video-player {
  margin-bottom: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  order: -1;
  aspect-ratio: 1;
  border-radius: 100vw;
  width: 100%;
  max-width: 8em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
main#home-page section.hero-section .video-player::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
main#home-page section.hero-section .video-player p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: var(--neutral-100);
  width: 100%;
  text-align: center;
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
}
main#home-page section.hero-section .video-player svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 80%;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
main#home-page section.hero-section .video-player svg path {
  stroke-dasharray: 0.1, 15;
  stroke-linecap: round;
  stroke-width: 1px;
  transform-origin: 50% 50%;
  animation: spin 4s infinite linear;
  animation-play-state: paused;
  rotate: 0deg;
  transition: opacity 1s ease, stroke-width 1s ease, rotate 1.2s cubic-bezier(0.34, 1.8, 0.64, 1);
}
@media (hover: hover) and (pointer: fine) {
  main#home-page section.hero-section .video-player:hover svg path {
    animation-play-state: running;
    rotate: -18deg;
    transition: opacity 1s ease, stroke-width 1s ease, rotate 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  }
}
@media screen and (min-width: 48em) {
  main#home-page section.hero-section .title-grid {
    grid-template-columns: 1fr auto;
    grid-template-rows: 1.3fr auto 1fr;
    align-self: unset;
  }
  main#home-page section.hero-section .title-grid .handcrafted {
    grid-row: unset;
  }
  main#home-page section.hero-section .title-grid h1 span {
    align-self: flex-end;
  }
  main#home-page section.hero-section .button.vans-for-sale {
    display: none;
  }
  main#home-page section.hero-section .video-player {
    justify-self: end;
    align-self: flex-end;
    order: unset;
    margin-bottom: 0;
    max-width: 10em;
  }
  main#home-page section.hero-section .button {
    align-self: end;
    margin-top: 0;
  }
}
main#home-page section.about-section .about-grid {
  display: grid;
}
main#home-page section.about-section .column {
  display: contents;
}
main#home-page section.about-section .column:first-of-type {
  display: none;
}
main#home-page section.about-section .column:last-of-type {
  display: none;
}
main#home-page section.about-section .large {
  width: 100%;
  max-width: 20em;
  margin-inline: auto;
}
main#home-page section.about-section .small {
  width: 100%;
  max-width: 12em;
  margin-inline: auto;
}
main#home-page section.about-section .text {
  text-align: center;
  position: relative;
  z-index: 5;
  margin-top: -1em;
  max-width: 70ch;
  margin-inline: auto;
}
main#home-page section.about-section .aspect-ratio-portrait .cycle-item {
  position: absolute;
  inset: 0;
}
main#home-page section.about-section .aspect-ratio-portrait [data-image-cycle-item=active] {
  transition: opacity 0.4s ease 0s, visibility 0s ease 0s;
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
main#home-page section.about-section .aspect-ratio-portrait [data-image-cycle-item=previous] {
  transition: opacity 0.4s ease 0.4s, visibility 0s ease 0.4s;
  opacity: 0;
  visibility: visible;
  z-index: 2;
}
main#home-page section.about-section .aspect-ratio-portrait [data-image-cycle-item=not-active] {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
@media screen and (min-width: 48em) {
  main#home-page section.about-section .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4em;
  }
  main#home-page section.about-section .text {
    grid-column: 1/3;
  }
  main#home-page section.about-section .column:first-of-type {
    display: contents;
  }
  main#home-page section.about-section .column:first-of-type .large {
    display: none;
  }
  main#home-page section.about-section .column:last-of-type {
    display: contents;
  }
  main#home-page section.about-section .small {
    align-self: center;
  }
}
@media screen and (min-width: 62em) {
  main#home-page section.about-section .about-grid {
    grid-template-columns: 1fr 55ch 1fr;
    gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
  }
  main#home-page section.about-section .one, main#home-page section.about-section .two {
    grid-column: 1/2;
  }
  main#home-page section.about-section .three, main#home-page section.about-section .text-center {
    grid-column: 2/3;
  }
  main#home-page section.about-section .four, main#home-page section.about-section .five {
    grid-column: 3/4;
  }
  main#home-page section.about-section .column {
    display: unset;
  }
  main#home-page section.about-section .column:first-of-type {
    display: block;
    margin-top: 4em;
  }
  main#home-page section.about-section .column:first-of-type .large {
    display: block;
    margin-top: 4em;
  }
  main#home-page section.about-section .column:last-of-type {
    display: block;
    margin-top: 12em;
  }
  main#home-page section.about-section .column:last-of-type .large {
    margin-bottom: 4em;
  }
  main#home-page section.about-section .small {
    align-self: unset;
  }
}
@media screen and (min-width: 75em) {
  main#home-page section.about-section .about-grid {
    grid-template-columns: 1fr 65ch 1fr;
  }
}
main#home-page section.why-choose-section .why-choose-grid {
  display: grid;
  gap: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem) clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
}
main#home-page section.why-choose-section .why-choose-grid .images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
main#home-page section.why-choose-section .why-choose-grid .images .aspect-ratio-3-2 {
  grid-column: 1/3;
}
main#home-page section.why-choose-section .why-choose-grid .images p.overlay-text {
  position: absolute;
  margin: 1em;
  background-color: var(--neutral-100);
  padding: 0.4em 0.6em;
  z-index: 2;
  text-transform: uppercase;
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
  border-radius: 0.2em;
  font-weight: 600;
}
main#home-page section.why-choose-section .why-choose-grid .images p.overlay-text.top-right {
  top: 0;
  right: 0;
}
main#home-page section.why-choose-section .why-choose-grid .images p.overlay-text.top-left {
  top: 0;
  left: 0;
}
main#home-page section.why-choose-section .why-choose-grid .images p.overlay-text.bottom-right {
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 62em) {
  main#home-page section.why-choose-section .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr auto;
    align-items: start;
    gap: 0 clamp(2.94rem, calc(1.90rem + 4.41vw), 5.88rem);
  }
  main#home-page section.why-choose-section .why-choose-grid .images {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  main#home-page section.why-choose-section .why-choose-grid .title {
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: stretch;
  }
  main#home-page section.why-choose-section .why-choose-grid .title .heading-2 {
    position: sticky;
    top: 25%;
  }
}
main#home-page section.icon-section .grid {
  display: grid;
  gap: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem);
  align-items: start;
  grid-template-columns: repeat(2, 1fr);
}
main#home-page section.icon-section .grid .aspect-ratio-1 {
  max-width: 6rem;
}
@media screen and (min-width: 48em) {
  main#home-page section.icon-section .grid {
    grid-template-columns: repeat(4, 1fr);
  }
  main#home-page section.icon-section .grid .aspect-ratio-1 {
    max-width: 8rem;
  }
}
main#home-page section.layered-slider-section {
  color: var(--neutral-100);
  user-select: none;
  position: relative;
  overflow: clip;
}
main#home-page section.layered-slider-section .slider-container {
  width: 100%;
  position: relative;
  cursor: grab;
}
main#home-page section.layered-slider-section .slider-container:active {
  cursor: grabbing;
}
main#home-page section.layered-slider-section .bg-collection {
  z-index: 0;
  position: absolute;
  inset: 0%;
  overflow: clip;
}
main#home-page section.layered-slider-section .bg-item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}
main#home-page section.layered-slider-section .bg-item picture {
  width: 100%;
  height: 100%;
  display: block;
}
main#home-page section.layered-slider-section .bg-item img {
  object-fit: cover;
  user-select: none;
  width: 100%;
  height: 100%;
  display: block;
}
main#home-page section.layered-slider-section .bg-dark {
  z-index: 2;
  background-color: var(--black-opacity-200);
  position: absolute;
  inset: 0%;
}
main#home-page section.layered-slider-section .text-collection {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-block: 18em;
  display: flex;
  position: relative;
}
main#home-page section.layered-slider-section .text-list {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}
main#home-page section.layered-slider-section .text-list a {
  text-decoration: none;
}
main#home-page section.layered-slider-section .text-item {
  text-align: center;
  cursor: pointer;
  max-width: 80%;
  position: absolute;
}
main#home-page section.layered-slider-section .mask-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 5;
  margin-top: -6em;
}
main#home-page section.layered-slider-section .mask-collection {
  aspect-ratio: 4/5;
  width: 100%;
  position: relative;
  overflow: hidden;
}
main#home-page section.layered-slider-section .mask-list {
  position: absolute;
  inset: 0%;
}
main#home-page section.layered-slider-section .mask-item {
  flex: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}
main#home-page section.layered-slider-section .mask-item picture {
  width: 100%;
  height: 100%;
  display: block;
}
main#home-page section.layered-slider-section .mask-item img {
  pointer-events: none;
  object-fit: cover;
  user-select: none;
  width: 100%;
  height: 100%;
  display: block;
}
main#home-page section.layered-slider-section .desc-collection {
  padding-top: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
  pointer-events: none;
  user-select: text;
  display: grid;
}
main#home-page section.layered-slider-section .desc-collection .desc-item {
  grid-area: 1/1;
}
main#home-page section.layered-slider-section .desc-collection .cta-mask {
  overflow: clip;
  width: fit-content;
  margin-top: 0.5em;
  pointer-events: auto;
}
main#home-page section.layered-slider-section .overlay {
  z-index: 4;
  pointer-events: none;
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: 120em;
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
main#home-page section.layered-slider-section .overlay-top {
  gap: 0.5em;
  pointer-events: auto;
  justify-content: center;
  align-items: center;
  display: flex;
}
main#home-page section.layered-slider-section .progress {
  background-color: var(--white-opacity-300);
  border-radius: 10em;
  width: 6em;
  height: 2px;
  overflow: hidden;
}
main#home-page section.layered-slider-section .progress-inner {
  transform-origin: 0%;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  background-color: var(--neutral-100);
  transform: scale3d(0, 1, 1);
}
main#home-page section.layered-slider-section .overlay-btm {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}
main#home-page section.layered-slider-section .nav {
  gap: 0.5em;
  pointer-events: auto;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}
@media screen and (min-width: 48em) {
  main#home-page section.layered-slider-section .text-collection {
    padding-block: 22em;
  }
  main#home-page section.layered-slider-section .overlay {
    padding: 2em;
    justify-content: space-between;
  }
  main#home-page section.layered-slider-section .overlay-btm {
    justify-content: flex-end;
  }
  main#home-page section.layered-slider-section .nav {
    justify-content: center;
    width: auto;
  }
}
main#home-page section.vans-for-sale-section {
  overflow: hidden;
}
main#home-page section.vans-for-sale-section .count {
  display: grid;
  align-items: center;
  gap: 0.5em;
  color: var(--neutral-100);
  user-select: none;
  padding-top: 0.2em;
  grid-column: 2/3;
  grid-row: 1/2;
}
main#home-page section.vans-for-sale-section .count .next-button, main#home-page section.vans-for-sale-section .count .previous-button {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0.45em 0.3em 0.3em 0.3em;
}
main#home-page section.vans-for-sale-section .count .next-button svg, main#home-page section.vans-for-sale-section .count .previous-button svg {
  width: 1.3rem;
}
main#home-page section.vans-for-sale-section .count .next-button svg path, main#home-page section.vans-for-sale-section .count .previous-button svg path {
  vector-effect: non-scaling-stroke;
  stroke-width: 1.5;
}
main#home-page section.vans-for-sale-section #work-carousel {
  --f-carousel-slide-width: calc((100% - 15px) / 1.01);
  --f-carousel-gap: 15px;
}
main#home-page section.vans-for-sale-section #work-carousel .f-carousel__viewport {
  overflow: visible;
}
main#home-page section.vans-for-sale-section #work-carousel .f-carousel__slide {
  text-decoration: none;
}
main#home-page section.vans-for-sale-section #work-carousel .f-carousel__slide .title {
  padding-top: 0.6em;
}
@media (min-width: 550px) {
  main#home-page section.vans-for-sale-section .count {
    grid-row: 2/3;
    padding-top: 0;
    justify-items: center;
    grid-template-columns: 2rem 6ch 2rem;
  }
  main#home-page section.vans-for-sale-section .count .next-button, main#home-page section.vans-for-sale-section .count .previous-button {
    display: block;
  }
}
@media screen and (min-width: 48em) {
  main#home-page section.vans-for-sale-section #work-carousel {
    --f-carousel-slide-width: calc((100% - 25px) / 2);
    --f-carousel-gap: 25px;
  }
}
@media screen and (min-width: 62em) {
  main#home-page section.vans-for-sale-section #work-carousel {
    --f-carousel-slide-width: calc((100% - 50px) / 3);
  }
  main#home-page section.vans-for-sale-section .heading-2 {
    grid-column: 2/4;
    grid-row: 1/2;
  }
  main#home-page section.vans-for-sale-section .count {
    grid-row: 1/2;
    grid-column: 3/4;
    justify-self: end;
  }
}

main#case-studies-page section.title-section .title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
main#case-studies-page section.title-section p {
  max-width: 50ch;
}
@media (min-width: 600px) {
  main#case-studies-page section.title-section .title-wrapper .title-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 0.5em;
    align-items: center;
  }
  main#case-studies-page section.title-section .title-wrapper .title-grid span.line {
    width: 0%;
    height: 1px;
    background-color: var(--black-opacity-300);
    grid-row: 1/2;
    grid-column: 2/3;
  }
  main#case-studies-page section.title-section .title-wrapper .title-grid span.further {
    grid-column: 3/4;
    grid-row: 1/2;
    justify-self: end;
    transform: translateX(-107%);
  }
}
main#case-studies-page .filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
main#case-studies-page .filters-wrapper .sub-services-wrapper {
  position: relative;
  width: 100%;
}
main#case-studies-page .filters-wrapper .sub-services-wrapper .fake-dropdown {
  cursor: pointer;
  background-color: var(--neutral-100);
  padding: 0.8em 1em;
  width: 100%;
  border-radius: 0.15em;
  border: 1px solid var(--black-opacity-50);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.423828 0.423828L29.5905 29.5905L58.7572 0.423828' stroke='black' stroke-width='1.2' stroke-miterlimit='10' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E%0A");
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) 50%;
}
main#case-studies-page .filters-wrapper .sub-services-wrapper .fake-dropdown span {
  color: var(--black-opacity-600);
}
main#case-studies-page .filters-wrapper .sub-services-wrapper .fake-dropdown.rotate {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M58.7578 30.0156L29.5911 0.848957L0.424481 30.0156' stroke='black' stroke-width='1.2' stroke-miterlimit='10' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E%0A");
  border-color: var(--black-opacity-100);
}
main#case-studies-page .filters-wrapper .sub-services-wrapper .sub-services {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.38rem, calc(0.24rem + 0.56vw), 0.75rem);
  position: absolute;
  top: calc(100% + 0.5em);
  left: 0;
  opacity: 0;
  pointer-events: none;
  background-color: var(--neutral-100);
  border-radius: 0.15em;
  border: 1px solid var(--black-opacity-100);
  width: 90vw;
  padding: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
  z-index: 10;
}
main#case-studies-page .filters-wrapper .sub-services-wrapper .sub-services.show {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 450px) {
  main#case-studies-page .filters-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: unset;
  }
  main#case-studies-page .filters-wrapper .sub-services-wrapper .fake-dropdown {
    width: 250px;
  }
}
@media screen and (min-width: 48em) {
  main#case-studies-page .filters-wrapper .sub-services-wrapper .fake-dropdown {
    display: none;
  }
  main#case-studies-page .filters-wrapper .sub-services-wrapper .sub-services {
    width: 100%;
    opacity: 1;
    position: unset;
    pointer-events: all;
    border: none;
    background-color: transparent;
    padding: 0;
  }
}
main#case-studies-page .button {
  cursor: pointer;
}
main#case-studies-page .button[data-filter-status=not-active] .btn-content {
  background-color: var(--neutral-200);
}
main#case-studies-page .button[data-filter-status=not-active] .btn-content .btn-text {
  color: var(--neutral-900);
}
main#case-studies-page .button[data-filter-status=active] .btn-content {
  background-color: var(--neutral-900);
}
main#case-studies-page .button[data-filter-status=active] .btn-content .btn-text {
  color: var(--neutral-100);
}
@media (hover: hover) and (pointer: fine) {
  main#case-studies-page .button:hover .btn-content .btn-mask .btn-text {
    transform: translate(0px, calc(-1 * var(--text-duplicate-distance)));
    color: var(--neutral-100);
  }
  main#case-studies-page .button:hover .btn-content .btn-bg {
    transform: translate(0px, 0%) rotate(0deg);
    background-color: var(--neutral-900);
  }
}
@media screen and (min-width: 48em) {
  main#case-studies-page .button[data-filter-status=not-active] .btn-content {
    background-color: var(--neutral-100);
  }
}
main#case-studies-page section.listing-section .list-header {
  display: none;
}
main#case-studies-page section.listing-section #grid-trigger, main#case-studies-page section.listing-section #list-trigger {
  cursor: pointer;
  color: var(--black-opacity-300);
}
main#case-studies-page section.listing-section #grid-trigger.active, main#case-studies-page section.listing-section #list-trigger.active {
  color: var(--neutral-900);
}
main#case-studies-page section.listing-section .listing-wrapper.grid .inner-wrapper {
  display: grid;
  gap: clamp(2.19rem, calc(1.42rem + 3.29vw), 4.38rem) clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
}
main#case-studies-page section.listing-section .listing-wrapper.grid .work-card .categories span[data-filter-status=active] {
  background-color: var(--neutral-900);
  color: var(--neutral-100);
}
main#case-studies-page section.listing-section .listing-wrapper.grid .work-card[data-filter-status=active] {
  transition: opacity 0.6s cubic-bezier(0.625, 0.05, 0, 1), transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
  transform: scale(1) rotate(0.001deg);
  opacity: 1;
  visibility: visible;
  position: relative;
}
main#case-studies-page section.listing-section .listing-wrapper.grid .work-card[data-filter-status=transition-out] {
  transition: opacity 0.45s cubic-bezier(0.625, 0.05, 0, 1), transform 0.45s cubic-bezier(0.625, 0.05, 0, 1);
  transform: scale(0.9) rotate(0.001deg);
  opacity: 0;
  visibility: visible;
}
main#case-studies-page section.listing-section .listing-wrapper.grid .work-card[data-filter-status=not-active] {
  transform: scale(0.9) rotate(0.001deg);
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
main#case-studies-page section.listing-section .listing-wrapper.list .list-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  padding-bottom: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  border-bottom: 1px solid var(--black-opacity-200);
}
main#case-studies-page section.listing-section .listing-wrapper.list .list-header span {
  display: block;
  font-weight: 600;
}
main#case-studies-page section.listing-section .listing-wrapper.list .list-header span:first-of-type {
  padding-left: 1rem;
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card {
  cursor: pointer;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  border-bottom: 1px solid var(--black-opacity-200);
  align-items: center;
  padding-block: 0.6em;
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card[data-filter-status=active] {
  transition: opacity 0.3s cubic-bezier(0.625, 0.05, 0, 1);
  opacity: 1;
  visibility: visible;
  position: relative;
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card[data-filter-status=transition-out] {
  transition: opacity 0.25s cubic-bezier(0.625, 0.05, 0, 1);
  opacity: 0;
  visibility: visible;
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card[data-filter-status=not-active] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card .title, main#case-studies-page section.listing-section .listing-wrapper.list .work-card .categories {
  padding-top: 0;
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card .title {
  order: 1;
  font-size: unset;
  font-weight: unset;
  color: var(--black-opacity-500);
  line-height: 1.5;
  padding-left: 1rem;
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card .categories {
  order: 2;
  gap: 0 0.2em;
  grid-column: 2/4;
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card .categories span {
  line-height: 1.5;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  color: var(--black-opacity-500);
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card .categories span::after {
  content: ",";
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card .categories span:last-of-type::after {
  display: none;
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card .categories span[data-filter-status=active] {
  color: var(--neutral-900);
  font-weight: 500;
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card .categories span[data-filter-status=active]::after {
  font-weight: 400;
  color: var(--black-opacity-500);
}
main#case-studies-page section.listing-section .listing-wrapper.list .work-card .image {
  display: none;
  width: 1px;
  height: 1px;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  main#case-studies-page section.listing-section .listing-wrapper.list .work-card:hover {
    background-color: var(--neutral-900);
  }
  main#case-studies-page section.listing-section .listing-wrapper.list .work-card:hover .title {
    color: var(--neutral-900);
    color: var(--neutral-100);
  }
  main#case-studies-page section.listing-section .listing-wrapper.list .work-card:hover .categories span {
    color: var(--neutral-900);
    color: var(--neutral-100);
  }
}
@media screen and (min-width: 48em) {
  main#case-studies-page section.listing-section .listing-wrapper.grid .inner-wrapper {
    gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
    grid-template-columns: repeat(2, 1fr);
  }
  main#case-studies-page section.listing-section .listing-wrapper.list .work-card .categories {
    grid-column: 2/4;
  }
}
main#case-studies-page .medias {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  main#case-studies-page .medias {
    display: block;
  }
}
@media (hover: hover) and (pointer: fine) {
  main#case-studies-page .media-container {
    position: absolute;
    width: min(35vw, 500px);
    aspect-ratio: 3/2;
    left: 0;
    top: 0;
    pointer-events: none;
    overflow: hidden;
    visibility: hidden;
    z-index: 1;
  }
  main#case-studies-page .media-container div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Hides anything overflowing during the animation */
    transform: translate(0, -100%);
    /* Starts above the mask */
  }
  main#case-studies-page .media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(0, 90%);
  }
  main#case-studies-page .media-container.on {
    visibility: visible;
  }
  main#case-studies-page .medias img {
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
    position: absolute;
    visibility: hidden;
    pointer-events: none;
  }
}

main#news-article-page {
  overflow: clip;
}
main#news-article-page .news-article-grid {
  display: grid;
  gap: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem) clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  align-items: start;
}
main#news-article-page .news-article-grid .header-image {
  background-color: black;
  aspect-ratio: 16/9;
}
main#news-article-page .news-article-grid .recent-news-title, main#news-article-page .news-article-grid .recent-news-listing {
  display: none;
}
@media screen and (min-width: 62em) {
  main#news-article-page .news-article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  main#news-article-page .news-article-grid .title {
    grid-column: 2/4;
  }
  main#news-article-page .news-article-grid .header-image {
    grid-column: 2/4;
  }
  main#news-article-page .news-article-grid .recent-news-title {
    grid-row: 1/2;
    align-self: flex-end;
    display: block;
  }
  main#news-article-page .news-article-grid .recent-news-listing {
    display: grid;
    gap: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
    max-width: 85%;
    grid-row: 2/4;
    position: sticky;
    top: 15%;
  }
  main#news-article-page .news-article-grid .page-blocks {
    grid-column: 2/4;
  }
}

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;
}
main#contact-page form {
  display: grid;
  gap: 1.5em;
}
main#contact-page form button {
  cursor: pointer;
  border: 0;
  padding: 0;
  margin-top: -1.5em;
}

:root {
  --c-text: #5A5A64;
  --c-text-light: #A1A1B6;
  --c-text-selection: rgb(198, 18, 42);
  --c-background-selection: rgba(198, 18, 42, 0.15);
  --c-shadow: rgba(41, 41, 86, 0.06);
  --c-shadow-active: rgba(198, 18, 42, 0.15);
}

main#login-page {
  display: grid;
  align-items: center;
}
main#login-page h1 {
  padding-bottom: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
main#login-page section.login-form .container {
  width: min(90%, 600px);
  margin-inline: auto;
}
main#login-page section.login-form .container form {
  display: grid;
  gap: clamp(1.13rem, calc(0.75rem + 1.60vw), 2.19rem);
}
main#login-page section.login-form .container form .remember-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4em;
}
main#login-page section.login-form .container form .flex {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
}
main#login-page section.login-form .container form .flex button {
  display: unset;
  padding: 0;
  background-color: transparent;
  margin: 0;
  width: 100%;
  border: 0;
  max-width: 100%;
}
main#login-page section.login-form .container form .flex button div {
  text-align: center;
  justify-content: center;
}
main#login-page section.login-form .container form .flex a {
  text-decoration: none;
}

main#package-page section.hero-section {
  position: relative;
  height: 100vh;
}
main#package-page section.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
main#package-page section.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  pointer-events: none;
}
main#package-page section.hero-section .container {
  position: relative;
  z-index: 3;
  display: grid;
  height: 100%;
  align-items: end;
}
main#package-page section.hero-section .container .auto-grid {
  align-items: end;
}
main#package-page section.hero-section .container .breadcrumb {
  padding: 0;
}
main#package-page section.hero-section .container .breadcrumb h4 {
  color: var(--white-opacity-500);
}
main#package-page section.hero-section .container .breadcrumb a {
  color: var(--neutral-100);
}
main#package-page section.hero-section .container .breadcrumb span {
  color: var(--white-opacity-300);
}
main#package-page section.hero-section .container .breadcrumb svg path {
  fill: var(--neutral-100);
}
main#package-page .sticky-steps {
  min-height: 100dvh;
  position: relative;
  overflow: clip;
}
main#package-page .sticky-steps-collection {
  min-height: 100dvh;
  display: flex;
  position: relative;
}
main#package-page .sticky-steps-list {
  grid-column-gap: 7.5em;
  grid-row-gap: 7.5em;
  flex-flow: column;
  flex: 1;
  padding-top: 10em;
  padding-bottom: 10em;
  display: flex;
}
main#package-page .sticky-steps-text {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  width: 100%;
  padding-bottom: 5em;
  display: flex;
}
main#package-page .sticky-steps-media {
  width: 100%;
  position: relative;
}
main#package-page .sticky-steps-sticky {
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}
main#package-page .sticky-steps-visual {
  aspect-ratio: 3/4;
  width: 100%;
  position: relative;
}
main#package-page .sticky-steps-cover-image {
  object-fit: cover;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 48em) {
  main#package-page .sticky-steps-text {
    grid-column-gap: 2em;
    grid-row-gap: 1.2em;
  }
}
@media screen and (min-width: 62em) {
  main#package-page .sticky-steps-list {
    grid-column-gap: 30dvh;
    grid-row-gap: 30dvh;
    padding-top: calc(50dvh - 7.5em);
    padding-bottom: calc(50dvh - 7.5em);
  }
  main#package-page .sticky-steps-text {
    width: 50%;
    padding-bottom: 0;
    padding-right: 6em;
  }
  main#package-page .sticky-steps-sticky {
    min-height: 100dvh;
    position: sticky;
    top: 0;
  }
  main#package-page .sticky-steps-media {
    width: 50%;
    height: 100%;
    padding-left: 3em;
    position: absolute;
    top: 0;
    right: 0;
  }
  main#package-page [data-sticky-steps-item-status] .sticky-steps-visual {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  main#package-page [data-sticky-steps-item-status=before] .sticky-steps-visual,
main#package-page [data-sticky-steps-item-status=active] .sticky-steps-visual {
    opacity: 1;
    visibility: visible;
  }
  main#package-page [data-sticky-steps-item-status] .sticky-steps-text {
    transition: opacity 0.5s ease-in-out;
    opacity: 0.25;
  }
  main#package-page [data-sticky-steps-item-status=active] .sticky-steps-text {
    opacity: 1;
  }
}

main#packages-page .package-gallery {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  height: 80vh;
}
main#packages-page .package-gallery .package-gallery__item {
  position: relative;
  overflow: hidden;
  flex: 1;
  cursor: pointer;
  transition: flex-grow 0.6s cubic-bezier(0.45, 0.02, 0.09, 0.98);
}
main#packages-page .package-gallery .package-gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}
main#packages-page .package-gallery .package-gallery__item.is-active {
  flex-grow: 4;
}
main#packages-page .package-gallery .package-gallery__item.is-active .package-gallery__label {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 250ms;
}
main#packages-page .package-gallery .package-gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 1em;
  z-index: 2;
  background-color: var(--neutral-100);
  padding: 0.4em 0.6em;
  text-transform: uppercase;
  border-radius: 0.2em;
  font-weight: 600;
  opacity: 0;
  transform: translate(0, 0.3em);
  transition: all 0.3s cubic-bezier(0.45, 0.02, 0.09, 0.98);
  transition-delay: 0ms;
}
@media screen and (min-width: 48em) {
  main#packages-page .package-gallery {
    flex-direction: row;
    height: min(35em, 60vh);
  }
}

main#van-page section.hero-section {
  position: relative;
  height: 100vh;
}
main#van-page section.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
main#van-page section.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  pointer-events: none;
}
main#van-page section.hero-section .container {
  position: relative;
  z-index: 3;
  display: grid;
  height: 100%;
  align-items: end;
}
main#van-page section.hero-section .container .auto-grid {
  align-items: end;
}
main#van-page section.hero-section .container .breadcrumb {
  padding: 0;
}
main#van-page section.hero-section .container .breadcrumb h4 {
  color: var(--white-opacity-500);
}
main#van-page section.hero-section .container .breadcrumb a {
  color: var(--neutral-100);
}
main#van-page section.hero-section .container .breadcrumb span {
  color: var(--white-opacity-300);
}
main#van-page section.hero-section .container .breadcrumb svg path {
  fill: var(--neutral-100);
}
main#van-page section.hero-section .container .tags {
  background-color: var(--neutral-100);
  display: flex;
  font-size: clamp(0.83rem, calc(0.81rem + 0.10vw), 0.90rem);
  border-radius: 0.15em;
  width: max-content;
  margin-bottom: 1.5em;
}
main#van-page section.hero-section .container .tags div {
  border-right: 1px solid var(--black-opacity-200);
  padding: 0.4em 0.6em;
}
main#van-page section.hero-section .container .tags div:last-of-type {
  border: 0;
}
main#van-page section.hero-section .container .enquire-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 0.2em;
}
main#van-page section.hero-section .container .enquire-bar .text {
  background-color: var(--neutral-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 0.8em;
  border-radius: 0.2em 0 0 0.2em;
  font-weight: 600;
}
main#van-page section.hero-section .container .enquire-bar .button {
  --btn-border-radius: 0 0.2em 0.2em 0;
}
main#van-page section.specification-section .grid {
  display: grid;
}
main#van-page section.specification-section .grid .table .row {
  border-bottom: 1px solid var(--black-opacity-200);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 0.6em;
}
main#van-page section.specification-section .grid .table .row h3 {
  line-height: 1.5;
}
main#van-page section.specification-section .grid .table .row p {
  color: var(--primary-400);
}
@media screen and (min-width: 62em) {
  main#van-page section.specification-section .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  }
  main#van-page section.specification-section .grid .table {
    grid-column: 2/4;
  }
}
main#van-page section.gallery-section {
  overflow: hidden;
}
main#van-page section.gallery-section .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;
}
main#van-page section.gallery-section .count .next-button, main#van-page section.gallery-section .count .previous-button {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0.45em 0.3em 0.3em 0.3em;
}
main#van-page section.gallery-section .count .next-button svg, main#van-page section.gallery-section .count .previous-button svg {
  width: 1.3rem;
}
main#van-page section.gallery-section .count .next-button svg path, main#van-page section.gallery-section .count .previous-button svg path {
  vector-effect: non-scaling-stroke;
  stroke-width: 1.5;
}
main#van-page section.gallery-section .count .next-button.disabled, main#van-page section.gallery-section .count .previous-button.disabled {
  pointer-events: none;
  opacity: 0.3;
}
main#van-page section.gallery-section #work-carousel {
  --f-carousel-slide-width: calc((100% - 15px) / 1.01);
  --f-carousel-gap: 15px;
}
main#van-page section.gallery-section #work-carousel .f-carousel__viewport {
  overflow: visible;
}
main#van-page section.gallery-section #work-carousel .f-carousel__slide {
  text-decoration: none;
}
@media (min-width: 550px) {
  main#van-page section.gallery-section .title-grid .count {
    padding-top: 0;
    justify-items: center;
    grid-template-columns: 2rem 6ch 2rem;
  }
  main#van-page section.gallery-section .title-grid .count .next-button, main#van-page section.gallery-section .title-grid .count .previous-button {
    display: block;
  }
}
@media screen and (min-width: 48em) {
  main#van-page section.gallery-section #work-carousel {
    --f-carousel-slide-width: calc((100% - 25px) / 2);
    --f-carousel-gap: 25px;
  }
}
@media screen and (min-width: 62em) {
  main#van-page section.gallery-section #work-carousel {
    --f-carousel-slide-width: calc((100% - 50px) / 3);
  }
}
main#van-page section.van-text-section .grid {
  display: grid;
}
@media screen and (min-width: 62em) {
  main#van-page section.van-text-section .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
  }
  main#van-page section.van-text-section .grid .wysiwyg {
    grid-column: 2/4;
  }
}
main#van-page section.features-section .grid {
  display: grid;
}
main#van-page section.features-section .list h3 {
  border-bottom: 1px solid var(--black-opacity-200);
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
}
main#van-page section.features-section .section:last-of-type ul.features-wrapper {
  margin-bottom: 0;
}
main#van-page section.features-section ul.features-wrapper {
  display: grid;
  gap: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  grid-auto-rows: 1fr;
  margin-bottom: clamp(1.44rem, calc(0.91rem + 2.25vw), 2.94rem);
}
main#van-page section.features-section li.feature {
  display: grid;
  align-items: center;
  gap: 1em;
  grid-template-columns: 7em auto;
}
main#van-page section.features-section li.feature h4 {
  grid-column: 2/3;
}
main#van-page section.features-section li.feature .aspect-ratio-3-2 .button {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0.4em;
  --btn-padding: 0.5em;
  --btn-border-radius: 0.1em;
}
main#van-page section.features-section li.feature .aspect-ratio-3-2 .button .btn-icon {
  width: 0.6em;
  height: 0.6em;
}
main#van-page section.features-section .title-nav ul.features-nav {
  padding-top: clamp(0.56rem, calc(0.36rem + 0.85vw), 1.13rem);
  display: none;
  gap: 0.5em;
  position: relative;
}
@media screen and (min-width: 62em) {
  main#van-page section.features-section .title-nav ul.features-nav {
    display: grid;
  }
}
main#van-page section.features-section .title-nav ul.features-nav .nav-indicator {
  position: absolute;
  left: 0;
  width: 3px;
  background-color: var(--primary-400);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
main#van-page section.features-section .title-nav ul.features-nav li {
  color: var(--black-opacity-400);
  font-weight: 600;
  font-size: clamp(1.20rem, calc(1.13rem + 0.31vw), 1.41rem);
  padding-left: 0.75em;
  cursor: pointer;
}
main#van-page section.features-section .title-nav ul.features-nav li.active {
  color: var(--primary-400);
}
@media screen and (min-width: 62em) {
  main#van-page section.features-section .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, calc(0.51rem + 1.03vw), 1.44rem);
    align-items: start;
  }
  main#van-page section.features-section .grid .title-nav {
    grid-column: 1/2;
    position: sticky;
    top: 15%;
  }
  main#van-page section.features-section .grid .list {
    grid-column: 2/4;
  }
}

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