.Barker {
  position: relative;
  background-color: var(--bg-color);
  background-image: var(--image);
  background-repeat: no-repeat;
  background-position: -150px -80px;
  background-size: 400px 400px;
  margin-top: calc(var(--padding-bottom) * 2);
  margin-bottom: calc(var(--padding-bottom));
  padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
  color: #fff;
}
.Barker-content {
  margin: 0 5% 0 30%;
}
.Barker-head {
  font-size: 1.3333rem;
  line-height: 1.3;
  font-family: "AvenirNextLTPro-Regular", "Avenir Next", sans-serif;
}
.Barker a:link:not(.Button) {
  color: inherit !important;
}
.Barker a:hover:not(.Button) {
  opacity: 0.75;
}
.Barker::after {
  content: " ";
  background-image: var(--image);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 400px;
  height: 400px;
  left: -150px;
  top: -80px;
  z-index: -1;
}
.Barker .Barker-link {
  color: #FFF;
}
.Barker .Barker-link:hover {
  opacity: 0.5;
}
@media all and (max-width: 50em) {
  .Barker {
    background-position: calc(100% + 90px) -60px;
    background-size: 300px 300px;
  }
  .Barker::after {
    width: 300px;
    height: 300px;
    top: -60px;
    left: calc(100% - 210px);
  }
  .Barker-content {
    margin: 0;
  }
  .Barker-head {
    margin-right: 15%;
  }
}
/* ===== CORE ===== */
.Billboard {
  position: relative;
  padding-bottom: 56%;
  background: var(--background-color);
  color: var(--text-color);
  margin-bottom: var(--padding-bottom);
}
/* --- Modifier --- */
.Billboard.Billboard--text {
  display: flex;
  padding-bottom: 0;
  height: 60vh;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--padding-top);
}
/* ===== PART ===== */
.Billboard-media {
  background-color: #CCC;
  background-image: var(--bg-image);
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.Billboard-head {
  font-size: 5.2rem;
  position: absolute;
  left: calc(var(--padding-left) * 2);
  bottom: calc(var(--padding-bottom) * 2);
  right: calc(var(--padding-right) * 0.5);
  margin: 0;
}
.Billboard-text {
  width: 12ch;
  position: relative;
  margin-top: -5vh;
  animation: loud_text 0.5s cubic-bezier(0.15, 0.7, 0.3, 0.95) forwards;
  font-size: 5.2rem;
}
.Billboard-text::after,
.Billboard-text::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  opacity: 0;
  animation: loud_shadow 1s cubic-bezier(0.15, 0.7, 0.3, 0.95) forwards;
}
.Billboard-text::before {
  bottom: -0.75em;
  clip-path: inset(70% 0 0 0);
  animation-delay: 0.2s;
}
.Billboard-text::after {
  bottom: -1.25em;
  clip-path: inset(80% 0 0 0);
  animation-delay: 0.5s;
  animation-duration: 0.9s;
}
@media all and (max-width: 37.5em) {
  .Billboard {
    height: 60vh;
  }
  .Billboard.Billboard--text {
    height: 44vh;
  }
  .Billboard-head {
    font-size: 2.25rem;
    left: calc(var(--padding-left) * 1);
    bottom: calc(var(--padding-bottom) * 1.5);
  }
  .Billboard-text {
    font-size: 10vw;
  }
}
/* ===== CORE ===== */
.Button {
  font-family: "AvenirNextLTPro-Demi";
  font-weight: 400;
  display: inline-block;
  background: #FFF;
  font-size: 1rem;
  border-radius: 5em;
  outline-offset: 5px;
  color: #222;
  padding: 0.75em 1.25em 0.8em;
  min-width: 20ch;
  text-align: center;
  text-decoration: none;
  margin: 0 -0.2em;
}
.Button:hover,
.Button:focus {
  background: rgba(255, 255, 255, 0.8);
}
.Button.Button--extra {
  padding: 0.75em 1.25rem 0.8em 2.25em;
  width: 100%;
}
/* --- Modifier --- */
.button {
  --color-canvas: transparent;
  --color-ink: var(--black);
  font-size: var(--fontSize);
}
.button.button--menu {
  --color-ink: var(--white);
}
.button.button--menu:hover {
  --color-ink: var(--root-color-orange500);
}
.button.button--contact {
  display: block;
  background: color-mix(in srgb, var(--root-color-red500) 95%, transparent);
  border: 2px solid #fff;
  font-weight: 700;
  color: #fff;
  position: relative;
  overflow: visible;
  padding: 1em 7.5em 1em 2em;
  margin: 0 0 0 auto;
}
.button.button--contact:hover {
  background: var(--root-color-red500);
}
.button.button--contact::after {
  content: " ";
  background: url(/assets/images/contact-button-faces.webp) no-repeat;
  background-size: contain;
  position: absolute;
  inset: -10px 0 0 auto;
  width: 127px;
  height: 79px;
}
.button.button--double {
  text-decoration: none;
  color: #111;
  display: inline-block;
  pointer-events: all;
  perspective: 500px;
  /* creates the 3D space */
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 1em 3em;
  border-radius: 3em;
  transition: transform 0.3s var(--spring-easing);
  text-align: center;
}
.button.button--double:hover {
  transform: scale(1.05);
}
.button.button--double .default,
.button.button--double .hover {
  display: block;
  backface-visibility: hidden;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}
.button.button--double .default {
  transform-origin: center top;
  position: relative;
  transition: transform 0.5s var(--spring-easing) 0.15s;
  transform: rotateX(0deg) translateZ(0);
}
.button.button--double .hover {
  transform-origin: center bottom;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transform: rotateX(-90deg) translateZ(0.75em);
  transition: transform 0.5s var(--spring-easing) 0s;
}
.button.button--double:hover .default {
  transform: rotateX(90deg) translateZ(1.25em);
  transition: transform 0.5s var(--spring-easing) 0s;
}
.button.button--double:hover .hover {
  transform: rotateX(0deg) translateZ(0);
  transition: transform 0.5s var(--spring-easing) 0.15s;
}
.button.button--double .sizer {
  visibility: hidden;
  display: block;
  pointer-events: none;
  height: 1px;
  text-transform: uppercase;
}
.button.button--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
}
.button.button--icon .button-icon {
  --color-ink: var(--root-color-violetPink500);
}
.button.button--icon:hover,
.button.button--icon:hover .button-icon {
  --color-ink: var(--root-color-redViolet500);
}
@media all and (max-width: 37.5em) {
  .Button {
    display: block;
    width: 80%;
    margin: 0 auto;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .Button.Button--extra {
    width: 80%;
    margin-left: 0;
  }
}
.Col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
/* ===== PART ===== */
.Col-item {
  flex-basis: 100%;
  max-width: 100%;
}
/* ===== MODIFIER ===== */
/* --- 2 columns left, 4 columns right --- */
.Col.Col--layoutA .Col-item:nth-child( 1 ) {
  grid-column: 1 / span 2;
  grid-row: 1;
}
.Col.Col--layoutA .Col-item:nth-child( 2 ) {
  grid-column: 3 / span 4;
  grid-row: 1;
}
/* --- 4 columns right --- */
.Col.Col--layoutB .Col-item:nth-child( 1 ) {
  grid-column: 3 / span 4;
  grid-row: 1;
}
/* --- 2 columns times 3 --- */
.Col.Col--layoutC .Col-item:nth-child( 1 ) {
  grid-column: 1 / span 2;
  grid-row: 1;
}
.Col.Col--layoutC .Col-item:nth-child( 2 ) {
  grid-column: 3 / span 2;
  grid-row: 1;
}
.Col.Col--layoutC .Col-item:nth-child( 3 ) {
  grid-column: 5 / span 2;
  grid-row: 1;
}
/* --- Modifier + part  --- */
@media all and (min-width: 37.51em) {
  .Col {
    grid-column-gap: 40px;
  }
  .Col--padding .Col-item {
    padding-top: calc(var(--padding-top) * 2);
    padding-bottom: calc(var(--padding-bottom) * 2);
  }
  .Col--padding .Col-item:first-child {
    padding-left: calc(var(--padding-left) * 2);
  }
  .Col--padding .Col-item:last-child {
    padding-right: calc(var(--padding-right) * 2);
  }
}
/* ===== MEDIA QUERY ===== */
@media all and (max-width: 37.5em) {
  .Col {
    grid-template-columns: 1fr 1fr;
  }
  .Col.Col--padding {
    padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
  }
  .Col.Col--layoutA.Col--reverse .Col-item:nth-child( 2 ),
  .Col.Col--layoutA .Col-item:nth-child( 1 ) {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
  .Col.Col--layoutA.Col--reverse .Col-item:nth-child( 1 ),
  .Col.Col--layoutA .Col-item:nth-child( 2 ),
  .Col.Col--layoutB .Col-item:nth-child( 1 ) {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .Col.Col--layoutC {
    row-gap: calc(var(--padding-top) * 0.5);
  }
  .Col.Col--layoutC .Col-item:nth-child( 1 ) {
    grid-column: 1;
    grid-row: 1;
  }
  .Col.Col--layoutC .Col-item:nth-child( 2 ) {
    grid-column: 2;
    grid-row: 1;
  }
  .Col.Col--layoutC .Col-item:nth-child( 3 ) {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
  .Col.Col--padding\@narrow {
    padding-right: var(--padding-right);
    padding-left: var(--padding-left);
  }
}
/* ===== CORE ===== */
/* ===== PART ===== */
.Form-label {
  display: block;
  font-size: 1.333rem;
  max-width: 40ch;
  line-height: 1.2;
}
.Form-item {
  margin-bottom: calc(var(--padding-bottom) * 0.5);
}
.Form-textinput {
  font-size: 1.333rem;
}
/* --- Part modifier --- */
.Form-item.Form-item--honeypot {
  display: none;
}
@media all and (max-width: 37.5em) {
  .Form-label,
  .Form-textinput {
    font-size: 1.125rem !important;
  }
}
body:has(dialog[open]) .Header {
  padding-right: var(--scrollbar-width);
}
.Header {
  --color-ink: #fc0;
}
.Header {
  background: #FFF;
  height: 100px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1), 0 10px 99px rgba(0, 0, 0, 0.05);
}
.Header-logo {
  display: block;
}
.Header-logo img {
  width: 100%;
}
.Header-wrap {
  display: flex;
  position: relative;
  margin: 0 auto;
  height: 100px;
  align-items: center;
}
.Header-item + .Header-item {
  margin-left: auto;
}
.Header-logo {
  color: inherit !important;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
}
@media all and (min-width: 37.51em) {
  .Header {
    margin-bottom: var(--padding-top);
  }
  .Header-logo {
    width: 68px;
    height: 62px;
  }
}
@media all and (max-width: 37.5em) {
  .Header {
    height: 85px;
    padding-left: var(--padding-left);
    padding-right: var(--padding-right);
  }
  .Header-logo {
    width: 45px;
    height: 41px;
  }
  .Header-wrap {
    height: 82px;
  }
  .Header-item {
    line-height: 1.2;
  }
}
.List {
  text-align: left;
  margin-bottom: 2rem !important;
}
.List.List--inline,
.List.List--grid {
  display: flex;
}
.List.List--center {
  justify-content: center;
}
.List.List--grid {
  flex-wrap: wrap;
  justify-content: space-between;
}
.List.List--inline .List-item {
  flex-basis: 25%;
}
@media all and (min-width: 37.51em) {
  .List.List--grid .List-item {
    flex-basis: 47.5%;
    margin-bottom: calc(var(--padding-bottom) * 0.5);
  }
  .List.List--grid .List-item:nth-last-child( 1 ),
  .List.List--grid .List-item:nth-last-child( 2 ) {
    margin-bottom: 0;
  }
  .List.List--grid .List-item:only-child {
    flex-basis: 100%;
  }
}
@media all and (max-width: 37.5em) {
  .List.List--grid .List-item {
    width: 100%;
    margin-bottom: calc(var(--padding-bottom) * 0.5);
  }
}
.List.with-CTA {
  margin: 0 -1vw;
}
.List.List--divider > .List-item {
  padding-bottom: 1.5vw;
}
.List.List--divider > .List-item + .List-item {
  border-top: 1px solid #EEE;
  padding: 1.5vw 0;
}
.List.List--meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.List.List--meta > .List-item {
  margin-bottom: 1.5rem;
}
.List.List--inline > .List-item:not( :first-child ) {
  margin-left: 0.5vw;
}
.List-item {
  margin: 0;
}
.List-item.List-item--separate {
  margin-left: auto !important;
}
.List-item.with-Dialog {
  transition: transform 0.5s cubic-bezier(0.15, 0.95, 0.5, 1), opacity 0.3s linear;
  transform: translate3d(0, 8vw, 0);
  opacity: 0;
}
.is-visible .List-item.with-Dialog {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.is-visible .List-item.with-Dialog:nth-child( 2 ) {
  transition-delay: 0.05s;
}
.is-visible .List-item.with-Dialog:nth-child( 3 ) {
  transition-delay: 0.1s;
}
.List--col {
  display: flex;
  flex-wrap: wrap ;
}
.List--col .List-item {
  flex-basis: 50%;
}
.List-item.List-item--l {
  width: 100%;
}
.List-item.List-item--m {
  width: calc(50% - 22px);
}
.List.List--cols > .List-item {
  display: inline-block;
}
.List.List--stripped .List-item {
  margin: 0;
  list-style-type: none;
}
@media all and (max-width: 37.5em) {
  .List.with-CTA {
    margin: 0;
  }
  .List.with-CTA .List-item {
    margin: auto;
  }
}
.list.list--inline {
  display: flex;
  flex-direction: row;
  gap: 1vw;
}
.list.list--cols {
  columns: 2;
}
@container (width > 600px) {
  .list.list--cols {
    columns: 3;
  }
}
/*.has-js .list.list--sub {
	display: none;
}
.list-item.is-open > .list.list--sub {
	display: block;
}*/
.list.list--divider {
  overflow: hidden;
  clip-path: polygon(0 1px, 100% 1px, 100% 100%, 0% 100%);
}
.list.list--divider .list-item {
  border-top: var(--divider, 1px solid #f00);
  padding: 0.3em 0;
}
.list.list--sub {
  padding: 0.5em 0 0.75em 1.5em;
}
.list-item:not( .list-item--major ) + .list-item.list-item--major,
.list-item.list-item--major + .list-item:not( .list-item--major ) {
  margin-top: 1.5em;
}
.list.list--menu .list-item {
  padding: 0.1em 0;
}
.Nav {
  display: flex;
}
.Nav-item {
  list-style: none;
  margin: 0;
  line-height: 1.5;
}
.Nav-item + .Nav-item {
  padding-left: var(--padding-left);
}
.Nav.Nav--narrow,
.Nav.Nav--sub {
  flex-wrap: wrap;
  color: #FFF;
}
/* ===== PART ===== */
.Nav-panel {
  background: #A51C4A;
  width: 24em;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 120%;
  padding: var(--padding-top) var(--padding-right) var(--padding-bottom) calc(var(--padding-left) * 2);
  border: 0.5px solid rgba(255, 255, 255, 0.33);
}
.Nav-a {
  --link-hover: var(--root-color-orange500);
  color: inherit;
  font-size: 1.125rem;
  vertical-align: top;
  line-height: inherit;
  text-decoration: none;
}
.Nav-a:hover {
  color: var(--link-hover);
}
.Nav.Nav--narrow .Nav-a.is-active,
.Nav.Nav--sub .Nav-a.is-active {
  font-family: "AvenirNextLTPro-Demi";
  font-weight: 400;
}
.Nav.Nav--narrow .Nav-a {
  font-size: 1.5rem;
  text-decoration: none;
}
.Nav.Nav--narrow .Nav-item {
  width: 100%;
  padding-left: var(--padding-left);
}
.Nav.Nav--narrow .Nav-item .Nav-item {
  padding-left: calc(var(--padding-left) * 0.5);
}
/* ===== ELEMENT ===== */
/* ===== STATE ===== */
.Nav-a.is-active {
  color: var(--link-default);
  /* border-bottom: .5px solid var( --link-default ); */
}
/* ===== MEDIA QUERY ===== */
@media all and (min-width: 37.51em) {
  .Nav-a {
    font-size: 2rem;
  }
  .Nav.Nav--sub {
    margin: calc(var(--padding-left) * 0.5);
  }
  .Nav.Nav--sub .Nav-item {
    width: 100%;
    padding: 0;
  }
  .Nav.Nav--sub .Nav-a {
    font-size: 1.33333rem;
  }
  .Nav.Nav--narrow .Nav-a {
    font-size: 2rem;
  }
  .Nav.Nav--narrow .Nav-item .Nav-item .Nav-a {
    font-size: 1.3333rem;
  }
  .Nav.Nav--narrow .Nav-item .Nav-item {
    padding-left: var(--padding-left);
  }
  .Nav svg path {
    fill: #fff;
  }
}
@media all and (max-width: 37.5em) {
  .Nav.Nav--sub {
    padding-top: calc(var(--padding-top) * 0.25);
    padding-bottom: calc(var(--padding-bottom) * 0.25);
  }
  .Nav.Nav--sub .Nav-a {
    font-size: 1.125rem;
  }
  .Nav svg {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate3d(-10px, 40%, 0);
  }
  .Nav svg path {
    fill: #fff;
  }
}
.Notice {
  background: var(--color-canvas, var(--root-color-orange500));
  color: var(--color-ink, #222);
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Preamble {
  font-size: 1.3333rem;
  line-height: 130%;
}
@media all and (max-width: 37.5em) {
  .Preamble {
    font-size: 1.125rem;
  }
}
.Teaser {
  background-color: var(--bg-color);
  background-image: var(--image);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 33% auto;
  padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
  color: #FFF;
}
/* ===== PART ===== */
/* ===== CONTEXTUAL ===== */
.Teaser + .Teaser {
  margin-top: calc(var(--padding-left) * 0.5);
}
/* ===== MEDIA QUERY ===== */
@media all and (max-width: 37.5em) {
  .Teaser.Teaser--image {
    padding-bottom: 50%;
  }
  .Teaser {
    background-size: 100% auto;
    margin-left: var(--padding-left);
    margin-right: var(--padding-right);
  }
}
@media all and (min-width: 37.51em) {
  .Teaser-content {
    width: 66%;
    margin-left: auto;
  }
}
.Toggle {
  position: relative;
}
.Toggle-head {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.Toggle-handle {
  text-align: left;
}
.Toggle.is-expanded .Toggle-handle > svg {
  transform: rotate(180deg) translateY(2px);
}
.Toggle.is-collapsed .Toggle-panel {
  display: none;
}
.Toggle.is-expanded .Toggle-panel {
  display: block;
}
@media all and (max-width: 37.5em) {
  .Toggle.is-expanded .Toggle-handle > svg {
    transform: rotate(180deg) translate3d(10px, -6px, 0);
  }
}
@media all and (min-width: 37.51em) {
  .Toggle-handle {
    margin-left: calc(var(--padding-left) * -1);
  }
}
.card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.card-media {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}
.card-img {
  width: 100%;
  aspect-ratio: 1.33333333;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 0.875rem 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.card-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-primary);
}
.card-link {
  color: var(--accent);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: auto;
}
.card-link:hover {
  text-decoration-thickness: 2px;
}
legend {
  font-size: 2rem;
  margin: 0 0 2rem;
  text-indent: -0.1em;
  display: block;
  padding: 0;
}
fieldset {
  border: 0;
  padding: 0;
}
label {
  display: block;
}
input + label {
  padding-top: 1em;
}
input,
textarea {
  background: transparent;
  border: 0;
  font-size: 1rem;
  font-family: inherit;
  padding: 0.5rem 0;
  width: 100%;
}
textarea {
  resize: none;
  overflow: hidden;
  border-bottom: 2px solid #909090;
}
input {
  border-bottom: 2px solid #909090;
}
input:hover,
textarea:hover {
  border-color: #333;
}
input::placeholder,
textarea::placeholder {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  color: #ccc;
  font-weight: 100;
  font-style: italic;
  letter-spacing: 0.02em;
}
button {
  border: none;
  color: var(--color-ink);
  background: var(--color-canvas, var(--root-color-violet500));
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}
button:hover {
  --color-ink: #f00;
  cursor: pointer;
}
* {
  box-sizing: border-box;
}
@font-face {
  font-family: "AvenirNextLTPro-Demi";
  src: url('../fonts/AvenirNextLTProDemi/font.woff2') format('woff2'), url('../fonts/AvenirNextLTProDemi/font.woff') format('woff');
}
@font-face {
  font-family: "MetronicSlabProRegular";
  src: url('../fonts/MetronicSlabProRegular/font.woff2') format('woff2'), url('../fonts/MetronicSlabProRegular/font.woff') format('woff');
}
@font-face {
  font-family: "AvenirNextLTPro-Regular";
  src: url('../fonts/AvenirNextLTProRegular/font.woff2') format('woff2'), url('../fonts/AvenirNextLTProRegular/font.woff') format('woff');
}
@font-face {
  font-family: "AvenirNextLTPro-Demi";
  src: url('../fonts/AvenirNextLTProDemi/font.woff2') format('woff2'), url('../fonts/AvenirNextLTProDemi/font.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
:root {
  --root-color-red500: #DE2B26;
  --root-color-violet500: #81498E;
  --root-color-violetPink500: #E33682;
  --root-color-redViolet500: #A51C4A;
  --root-color-blue500: #0073B6;
  --root-color-orange500: #DFA726;
  --white: #fff;
  --black: #000;
}
:root {
  --root-fontSize-xsmall: 0.66667rem;
  --root-fontSize-small: 0.77778rem;
  --root-fontSize-default: 1rem;
  --root-fontSize-medium: 1.33334rem;
  --root-fontSize-large: 2rem;
  --root-fontSize-xlarge: 2.77778rem;
  --root-fontSize-xxlarge: 3.77778rem;
}
:root {
  --root-width-max: 1280px;
  --spring-easing: linear(0, 0.0018, 0.007 1.16%, 0.0332, 0.0753, 0.1297 5.52%, 0.2489 8.13%, 0.6447 15.97%, 0.7592, 0.8569 21.19%, 0.9284 23.52%, 0.9917 26.13%, 1.0335 28.45%, 1.066 31.06%, 1.082, 1.0911 35.13%, 1.0948, 1.0927 39.77%, 1.0874, 1.0798 43.84%, 1.0346 53.42%, 1.0162 58.06%, 1.0018, 0.9939 68.52%, 0.9914 72.58%, 0.9912 77.51%, 0.9996 99.87%);
}
html {
  background: #fff;
  scroll-behavior: smooth;
  font-size: 112.5%;
  line-height: 1.5;
  height: 100vh;
}
html,
body {
  min-height: 100vh;
  padding: 0;
  margin: 0;
  font-family: "AvenirNextLTPro-Regular", "Avenir Next", sans-serif;
  color: #222;
}
body {
  --text-default: #222;
  --text-headline: #111;
  --link-default: #D71E6F;
  --link-hover: #A8064D;
  --padding-top: 2rem;
  --padding-right: 2rem;
  --padding-bottom: 3rem;
  --padding-left: 2rem;
  hyphens: auto;
  padding-top: 100px;
}
hr {
  border: 0;
  border-bottom: 0.5px solid transparent;
  margin: 2rem 0;
}
img,
video {
  vertical-align: bottom;
  max-width: 100%;
}
svg {
  vertical-align: middle;
}
a {
  text-decoration: var(--link-decoration-default, inherit);
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.15em;
}
a:hover {
  color: var(--link-hover);
}
:focus {
  outline: 2px solid;
  outline-offset: 3px;
}
.is-inputMouse :focus {
  outline: none;
}
h2:first-child,
h3:first-child,
h4:first-child {
  margin-top: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "MetronicSlabProRegular";
  color: inherit;
  line-height: 1;
  text-wrap: var(--text-wrap, unset);
  text-align: var(--text-align, left);
}
h1 {
  font-size: var(--fontSize-h1, var(--fontSize, var(--root-fontSize-xlarge)));
  font-weight: var(--font-weight, 400);
}
h2 {
  font-size: var(--fontSize-h2, var(--fontSize, var(--root-fontSize-large)));
  font-weight: var(--font-weight, 400);
}
h3 {
  font-size: var(--fontSize-h3, var(--fontSize, var(--root-fontSize-medium)));
  font-weight: var(--font-weight, 400);
}
h4 {
  font-family: AvenirNextLTPro-Demi;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: var(--fontSize-h4, var(--fontSize, var(--root-fontSize-default)));
  font-weight: var(--font-weight, 400);
}
h5,
h6 {
  font-family: AvenirNextLTPro-Demi;
  font-weight: 700;
  font-size: var(--fontSize-h5, var(--fontSize-h6, var(--fontSize, var(--root-fontSize-default))));
  font-weight: var(--font-weight, 400);
}
p,
li {
  font-size: var(--fontSize, var(--root-fontSize-default, inherit));
  color: inherit;
  letter-spacing: 0.02em;
}
strong {
  font-family: "AvenirNextLTPro-Demi";
  font-weight: 400;
}
figure {
  margin: 0;
}
address {
  font-style: normal;
}
footer {
  --divider: 1px solid #e3e3e3;
  margin: 4vw 0 0;
  padding: 4vw 4vw 6vw;
  background: #f7f7f7;
}
footer p {
  margin: 0;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
ul[class] {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav {
  margin-left: auto;
}
[href="#main"] {
  position: fixed;
  top: 4.5vw;
  left: -100vw;
  background: #111;
  padding: 0.6em 1.2em 0.8em;
  z-index: 999;
}
[href="#main"]:focus {
  outline: none;
  left: 4.5vw;
  color: #fff;
}
table {
  font-size: 0.7rem;
  border-collapse: collapse;
  width: 100%;
}
caption {
  text-align: left;
  font-family: "AvenirNextLTPro-Demi";
  font-weight: 400;
}
th,
td {
  vertical-align: baseline;
}
th {
  font-family: "AvenirNextLTPro-Demi";
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 75%;
  text-align: left;
}
tbody td {
  padding: 0.25em 0;
}
thead th,
thead td {
  padding: 0.75em 0;
  border-bottom: 2px solid #111;
}
tfoot th {
  text-align: right;
}
tfoot td {
  text-align: right;
}
tbody td:nth-child( 2 ),
tbody td:nth-child( 3 ) {
  text-align: right;
}
a {
  font-size: var(--fontSize, inherit);
  font-weight: var(--weight, inherit);
  text-decoration: var(--link-decoration-default, inherit);
  color: var(--link-color-default, inherit);
}
a:not( [ class ] ) {
  color: var(--link-default) !important;
}
a:hover:not( [ class ] ) {
  color: var(--link-hover) !important;
}
/* ===== MEDIA QUERIES ===== */
/* --- Viewport --- */
@media all and (max-width: 56em) {
  html {
    font-size: 100%;
  }
}
@media all and (max-width: 37.5em) {
  h1 {
    font-size: 3rem;
  }
  hr {
    margin: 1rem 0;
  }
}
/* --- Pixel ration --- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  hr {
    border-width: 0.5px;
  }
}
/* --- Other --- */
@media print {
  body > *:not( main ) {
    display: none;
  }
}
@media all and (max-width: 37.5em) {
  body {
    --padding-top: 8vw;
    --padding-right: 7.5vw;
    --padding-bottom: 9vw;
    --padding-left: 7.5vw;
  }
}
.dialog {
  --surface-dialog: #fff;
  --ink: #333;
}
.dialog.dialog--menu {
  --surface-dialog: var(--root-color-violet500);
  --ink: #fff;
  --link-hover: var(--root-color-orange500);
}
.dialog-header,
.dialog-body,
.dialog-footer {
  width: 100%;
}
.dialog-header {
  --fontSize: var(--root-fontSize-default);
  font-feature-settings: "c2sc", "smcp";
  font-weight: 300;
  padding: 2vw;
  display: flex;
  justify-content: space-between;
}
.dialog-body {
  padding: 0 4vw 6vw;
  flex: 1;
}
@media (max-width: 60em) {
  .dialog--menu .dialog-body {
    padding: 0 16vw 6vw;
  }
}
@media (min-width: 60em) {
  .dialog--menu .dialog-body {
    padding: 0 8vw 6vw;
  }
}
/* Move? */
html:has(dialog[open]) {
  overflow: hidden;
}
body:has(dialog[open]) {
  padding-right: var(--scrollbar-width);
}
/* or */
/*html {
	scrollbar-gutter: stable;
}*/
dialog {
  background: var(--surface-dialog, #fff);
  color: var(--ink, #333);
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 50vw;
  inset: 0 0 0 auto;
  max-height: none;
  height: 100dvh;
  margin: 0;
  padding: 0;
  border: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  translate: 100% 0;
  z-index: 1000;
  transition: translate 0.35s cubic-bezier(0.32, 0.72, 0, 1), overlay 0.35s allow-discrete, display 0.35s allow-discrete;
}
@media (max-width: 60em) {
  dialog {
    width: 94vw;
  }
}
dialog[open] {
  translate: 0 0;
}
@starting-style {
  dialog[open] {
    translate: 100% 0;
  }
}
dialog::backdrop {
  background: rgba(30, 6, 16, 0.3);
  transition: background 0.35s ease, overlay 0.35s allow-discrete, display 0.35s allow-discrete;
}
@starting-style {
  dialog[open]::backdrop {
    background: rgba(30, 6, 16, 0);
  }
}
.feature-mediaDecor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.feature-mediaDecor > * {
  width: 100%;
  height: 100%;
}
.feature {
  background-color: var(--feature-bg);
  color: var(--color, #fff);
}
.feature-media {
  position: relative;
}
.feature-content {
  padding: 4vw 6vw;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  z-index: 2;
}
@media (max-width: 60em) {
  .feature {
    display: flex;
    flex-direction: column;
    margin: 0 4vw;
  }
}
@media (min-width: 60em) {
  .feature {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .feature-media {
    grid-column: 1 / span 4;
    grid-row: 1 / span 3;
  }
  .feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feature-content {
    --fontSize: 2em;
    grid-column: 4 / span 5;
    grid-row: 1 / span 3;
  }
}
.footer {
  max-width: var(--root-width-max, 1200px);
  margin: auto;
}
@media (min-width: 60em) {
  .footer {
    display: grid;
    column-gap: var(--col-gap, 2vw);
    row-gap: var(--row-gap, 4vw);
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "logo address address address . . menu menu menu menu menu menu" ". . partners partners partners partners partners partners partners partners . ." "legal legal legal legal legal legal legal legal legal legal legal legal";
  }
  .footer-logo {
    grid-area: logo;
  }
  .footer-company {
    grid-area: address;
  }
  .footer-menu {
    grid-area: menu;
  }
  .footer-partners {
    container-type: inline-size;
    grid-area: partners;
  }
  .footer-legal {
    grid-area: legal;
  }
}
.footer-company {
  --fontSize: var(--root-fontSize-small);
}
.footer-menu {
  --fontSize: var(--root-fontSize-medium);
}
.footer-partners {
  --link-default: #222;
  --link-decoration-default: none;
}
.footer-legal {
  --fontSize: var(--root-fontSize-small);
  border-top: var(--divider);
  border-top-width: 3px;
  padding-top: 1.5vw;
  text-align: center;
}
@keyframes loud_text {
  0% {
    opacity: 0;
    transform: translate3d(0, 0.5em, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes loud_shadow {
  0% {
    opacity: 0;
    transform: translate3d(0, -1em, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.logos {
  display: flex;
  flex-wrap: wrap;
  margin: 5vw 0 !important;
}
.logo-item {
  width: 25%;
  height: 1em;
  position: relative;
}
.u-partner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  mix-blend-mode: multiply;
}
.u-partner img {
  transform: translateY(-50%) translateX(-50%);
}
.logo-item:nth-child( 1 ) .u-partner {
  animation: logoIn 6s linear infinite;
  animation-delay: 0s;
}
.logo-item:nth-child( 2 ) .u-partner {
  animation: logoIn 6s linear infinite;
  animation-delay: -0.2s;
}
.logo-item:nth-child( 3 ) .u-partner {
  animation: logoIn 6s linear infinite;
  animation-delay: -0.4s;
}
.logo-item:nth-child( 4 ) .u-partner {
  animation: logoIn 6s linear infinite;
  animation-delay: -0.6s;
}
.logo-item:nth-child( 5 ) .u-partner {
  animation: logoOut 6s linear infinite;
  animation-delay: -6.2s;
}
.logo-item:nth-child( 6 ) .u-partner {
  animation: logoOut 6s linear infinite;
  animation-delay: -6.4s;
}
.logo-item:nth-child( 7 ) .u-partner {
  animation: logoOut 6s linear infinite;
  animation-delay: -6.6s;
}
.logo-item:nth-child( 8 ) .u-partner {
  animation: logoOut 6s linear infinite;
  animation-delay: -6.8s;
}
@keyframes logoIn {
  0% {
    transform: translateY(3em);
    animation-timing-function: cubic-bezier(0.46, 0.84, 0.48, 1);
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(0);
    opacity: 1;
    animation-timing-function: cubic-bezier(0.46, 0.84, 0.48, 1);
  }
  50% {
    transform: translateY(-3em);
    opacity: 0;
  }
  100% {
    transform: translateY(-3em);
    opacity: 0;
  }
}
@keyframes logoOut {
  0% {
    transform: translateY(3em);
    opacity: 0;
  }
  50% {
    transform: translateY(3em);
    opacity: 0;
    animation-timing-function: cubic-bezier(0.46, 0.84, 0.48, 1);
  }
  60% {
    transform: translateY(0);
    opacity: 1;
  }
  90% {
    transform: translateY(0);
    opacity: 1;
    animation-timing-function: cubic-bezier(0.46, 0.84, 0.48, 1);
  }
  100% {
    transform: translateY(-3em);
    opacity: 0;
  }
}
.onoff {
  position: relative;
}
.onoff-icon {
  position: absolute;
  inset: 0 calc(100% + 10px) auto auto;
  transition: transform 0.5s var(--spring-easing);
}
.onoff-icon.onoff-icon--major {
  top: 0;
}
@media (min-width: 60em) {
  .onoff-icon.onoff-icon--major {
    top: 5px;
  }
}
.is-open .onoff-icon {
  transform: rotate(45deg);
}
.onoff-handle {
  position: relative;
}
.onoff-handle::after {
  content: " ";
  width: 34px;
  height: 24px;
  position: absolute;
  inset: 0 100% 0 auto;
}
.pagesplit {
  --accent: #c0185f;
  --dot-off: #e8b0c8;
  --radius: 4px;
  --max-w: 1200px;
  font-family: var(--font-sans);
  padding: 2rem 0;
}
.pagesplit-title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 1.5rem;
  color: var(--color-text-primary);
}
.pagesplit-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.pagesplit-viewport::-webkit-scrollbar {
  display: none;
}
.pagesplit-pages {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagesplit-page {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
}
.pagesplit-inner {
  width: 100%;
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
}
@media (max-width: 60em) {
  .pagesplit-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 4vw;
  }
}
.pagesplit-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.pagesplit-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--dot-off);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.pagesplit-dot[aria-selected="true"] {
  background: var(--accent);
  transform: scale(1.15);
}
/* .showcase */
.showcase,
.showcase-cell {
  background: #000;
}
.showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: object-position 0.5s ease-out, scale 0.5s ease-out;
  scale: 1;
}
@media (max-width: 60em) {
  .showcase {
    aspect-ratio: 0.66666667;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
  }
  .showcase-media {
    position: absolute;
    inset: 0;
  }
  .showcase-media::after {
    content: " ";
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22400%22%20height%3D%22300%22%20fill%3D%22none%22%3E%3Cg%20stroke%3D%22%23fff%22%20%20vector-effect%3D%22non-scaling-stroke%22%20stroke-width%3D%22.5%22%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22M100%200v300M0%20100h200M300%20100.25h100M0%20200h400M200%200v300M300%20100v200M100%20.25h100%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h400v300H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
    position: absolute;
    inset: auto 0 0 0;
    aspect-ratio: 1.33333333;
  }
  .showcase-section {
    margin-bottom: 2vw;
  }
  .showcase-sectionHeading,
  .showcase-sectionMedia,
  .showcase-section:not([data-section="1"]) .showcase-cells {
    display: none;
  }
}
@media (min-width: 60em) {
  .showcase {
    max-width: 1800px;
    aspect-ratio: 2;
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    grid-template-columns: repeat(9, 1fr);
    margin: 0 auto;
  }
  .showcase[data-sections="2"] {
    grid-template-columns: repeat(8, 1fr);
  }
  .showcase[data-sections="3"] {
    grid-template-columns: repeat(9, 1fr);
  }
  /* .showcase-heading */
  .showcase-heading,
  .showcase-sectionHeading {
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 10;
    --fontSize: clamp(28px, 3vw, 60px);
    --text-wrap: balance;
    --text-align: center;
  }
  .showcase-sectionHeading {
    opacity: 0;
  }
  .showcase[data-sections="2"] .showcase-heading,
  .showcase[data-sections="2"] .showcase-sectionHeading {
    grid-column: 2 / span 6;
    grid-row: 1 / span 3;
    align-content: center;
    justify-self: center;
  }
  .showcase[data-sections="3"] .showcase-heading,
  .showcase[data-sections="3"] .showcase-sectionHeading {
    grid-column: 2 / span 7;
    grid-row: 1 / span 3;
    align-content: center;
    justify-self: center;
  }
  .showcase[data-sections="3"] .showcase-section[data-section="1"]:not(.showcase-section--cover) .showcase-sectionHeading,
  .showcase[data-sections="3"] .showcase-section[data-section="2"]:not(.showcase-section--cover) .showcase-sectionHeading,
  .showcase[data-sections="3"] .showcase-section[data-section="3"]:not(.showcase-section--cover) .showcase-sectionHeading {
    grid-column: 1 / span 3;
  }
  /*.showcase[ data-sections="3" ] .showcase-section[ data-section="3" ]:not(.showcase-section--cover) .showcase-sectionHeading { grid-column-start: 7 }
	.showcase[ data-sections="3" ] .showcase-section[ data-section="2" ]:not(.showcase-section--cover) .showcase-sectionHeading { grid-column-start: 4 }*/
  /* .showcase-media */
  .showcase .showcase-media,
  .showcase .showcase-sectionMedia {
    position: relative;
    overflow: hidden;
  }
  .showcase .showcase-media::after,
  .showcase .showcase-sectionMedia::after {
    content: "";
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }
  .showcase[data-sections="2"] .showcase-media {
    grid-column: 1 / span 8;
    grid-row: 1 / span 6;
  }
  .showcase[data-sections="3"] .showcase-media {
    grid-column: 1 / span 9;
    grid-row: 1 / span 6;
  }
  /* .showcase-sectionMedia */
  .showcase-sectionMedia {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s cubic-bezier(0.46, 0.84, 0.48, 1);
  }
  @starting-style {
    .showcase-sectionMedia {
      opacity: 0;
    }
  }
  .showcase[data-sections="2"] .showcase-sectionMedia {
    grid-column: 1 / span 4;
    grid-row: 1 / span 6;
  }
  .showcase[data-sections="3"] .showcase-sectionMedia {
    grid-column: 1 / span 3;
    grid-row: 1 / span 6;
  }
  /* .showcase-section */
  .showcase-section,
  .showcase-cells {
    display: grid;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
    grid-row: 1 / span 6;
    grid-column: 1 / span 9;
    position: relative;
  }
  .showcase[data-sections="1"] .showcase-section {
    grid-column: 1 / span 9;
  }
  .showcase[data-sections="1"] .showcase-section.showcase-section--cover {
    grid-column: 1 / span 9;
  }
  .showcase[data-sections="2"] .showcase-section.showcase-section--cover[data-section="1"],
  .showcase[data-sections="2"] .showcase-section.showcase-section--cover[data-section="2"] {
    grid-column: 1 / span 8;
  }
  .showcase[data-sections="2"] .showcase-section.showcase-section--cover[data-section="1"],
  .showcase[data-sections="2"] .showcase-section.showcase-section--cover[data-section="2"] {
    grid-column: 1 / span 8;
  }
  .showcase[data-sections="2"] .showcase-section.showcase-section--cover[data-section="2"] .showcase-cta,
  .showcase[data-sections="2"] .showcase-section.showcase-section--cover[data-section="2"] .showcase-cells,
  .showcase[data-sections="2"] .showcase-section.showcase-section--cover[data-section="2"] .showcase-heading {
    grid-column-start: 5;
  }
  .showcase[data-sections="2"] .showcase-section.showcase-section--cover[data-section="2"] .showcase-sectionMedia {
    grid-column-end: 8;
  }
  .showcase[data-sections="3"] .showcase-section {
    grid-column: 1 / span 3;
  }
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="1"],
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="2"],
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="3"] {
    grid-column: 1 / span 9;
  }
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="2"] .showcase-cta,
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="2"] .showcase-cells,
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="2"] .showcase-heading,
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="3"] .showcase-cta,
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="3"] .showcase-cells,
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="3"] .showcase-heading {
    grid-column-start: 4;
    grid-column-end: 7;
  }
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="3"] .showcase-cta,
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="3"] .showcase-cells,
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="3"] .showcase-heading {
    grid-column-start: 7;
    grid-column-end: 10;
  }
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="2"] .showcase-sectionMedia,
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="3"] .showcase-sectionMedia {
    grid-column-end: 10;
  }
  .showcase-section[data-section="2"] {
    grid-column: 5 / span 4;
  }
  .showcase[data-sections="2"] .showcase-section[data-section="1"] {
    grid-column: 1 / span 4;
  }
  .showcase[data-sections="2"] .showcase-section[data-section="2"] {
    grid-column: 5 / span 8;
  }
  .showcase[data-sections="3"] .showcase-section[data-section="2"] {
    grid-column: 4 / span 3;
  }
  .showcase[data-sections="3"] .showcase-section[data-section="3"] {
    grid-column: 7 / span 3;
  }
  .showcase-section:not(:first-child)::after {
    content: " ";
    position: absolute;
    inset: -0.25px;
    border-left: 0.5px solid #fff;
    pointer-events: none;
  }
  .showcase[data-sections="2"] .showcase-section.showcase-section--cover[data-section="2"]::after {
    left: 50%;
  }
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="2"]::after {
    left: 33.33334%;
    bottom: 66.66667%;
  }
  .showcase[data-sections="3"] .showcase-section.showcase-section--cover[data-section="3"]::after {
    left: 66.66667%;
    bottom: 50%;
  }
  /* .showcase-cells */
  .showcase-cells {
    z-index: 1;
  }
  /* .showcase-cell */
  .showcase-cell {
    position: relative;
    background: transparent;
    transition: background 0.3s cubic-bezier(0.42, 0.82, 0.42, 1);
  }
  .showcase-cell:hover {
    background: color-mix(in srgb, var(--root-color-red500) 90%, transparent);
  }
  .showcase-cell::after {
    content: " ";
    position: absolute;
    inset: -0.25px;
    border: 0.5px solid #fff;
    pointer-events: none;
  }
  .showcase-cell:nth-child(1) {
    grid-column: 1;
    grid-row: 4;
    transition-delay: 0.05s;
  }
  .showcase-cell:nth-child(2) {
    grid-column: 1;
    grid-row: 6;
    transition-delay: 0.1s;
  }
  .showcase-cell:nth-child(3) {
    grid-column: 2;
    grid-row: 5;
    transition-delay: 0.15s;
  }
  .showcase-cell:nth-child(4) {
    grid-column: 2;
    grid-row: 6;
    transition-delay: 0.05s;
  }
  .showcase-cell:nth-child(5) {
    grid-column: 3;
    grid-row: 5;
    transition-delay: 0.15s;
  }
  .showcase-cell:nth-child(6) {
    grid-column: 3;
    grid-row: 6;
    transition-delay: 0.05s;
  }
  .showcase-cell:nth-child(7) {
    grid-column: 4;
    grid-row: 4;
    transition-delay: 0.1s;
  }
  .showcase-cell:nth-child(8) {
    grid-column: 4;
    grid-row: 5;
    transition-delay: 0.15s;
  }
  .showcase-cell:nth-child(9) {
    grid-column: 5;
    grid-row: 4;
    transition-delay: 0.05s;
  }
  .showcase-cell:nth-child(10) {
    grid-column: 5;
    grid-row: 6;
    transition-delay: 0.1s;
  }
  .showcase-cell:nth-child(11) {
    grid-column: 6;
    grid-row: 5;
    transition-delay: 0.15s;
  }
  .showcase-cell:nth-child(12) {
    grid-column: 6;
    grid-row: 6;
    transition-delay: 0.05s;
  }
  .showcase-cell:nth-child(13) {
    grid-column: 7;
    grid-row: 5;
    transition-delay: 0.15s;
  }
  .showcase-cell:nth-child(14) {
    grid-column: 7;
    grid-row: 6;
    transition-delay: 0.05s;
  }
  .showcase-cell:nth-child(15) {
    grid-column: 8;
    grid-row: 4;
    transition-delay: 0.1s;
  }
  .showcase-cell:nth-child(16) {
    grid-column: 9;
    grid-row: 6;
    transition-delay: 0.15s;
  }
  .showcase-section[data-section="2"] .showcase-cell:nth-child(1) {
    grid-column: 1;
    grid-row: 5;
  }
  .showcase-section[data-section="2"] .showcase-cell:nth-child(1) {
    grid-column: 2;
    grid-row: 4;
  }
  .showcase-section[data-section="2"] .showcase-cell:nth-child(7) {
    grid-column: 1;
    grid-row: 3;
  }
  /* .showcase-cta */
  .showcase-cta {
    z-index: 10;
    grid-row: 5 / span 2;
    grid-column: 1 / span 4;
    pointer-events: none;
    align-content: center;
    justify-self: center;
  }
  .showcase[data-sections="1"] .showcase-cta {
    grid-column: 3 / span 5;
  }
  .showcase[data-sections="3"] .showcase-cta {
    grid-column: 1 / span 3;
  }
  /* interactions */
  .showcase:has(.showcase-cta .with-showcase:hover) .showcase-heading {
    opacity: 0;
  }
  .showcase-section:has(.showcase-cta .with-showcase:hover) .showcase-sectionHeading {
    opacity: 1;
  }
  .showcase-cta:has(.with-showcase:hover) ~ .showcase-cells .showcase-cell {
    background: color-mix(in srgb, #f00 var(--a), transparent);
  }
  .showcase-cta:has(.with-showcase:hover) ~ .showcase-cells .showcase-cell:nth-child(4n+4) {
    --a: 90%;
  }
  .showcase-cta:has(.with-showcase:hover) ~ .showcase-cells .showcase-cell:nth-child(4n+3) {
    --a: 80%;
  }
  .showcase-cta:has(.with-showcase:hover) ~ .showcase-cells .showcase-cell:nth-child(4n+2) {
    --a: 100%;
  }
  .showcase-cta:has(.with-showcase:hover) ~ .showcase-cells .showcase-cell:nth-child(4n+1) {
    --a: 70%;
  }
  .showcase[data-sections="3"] .showcase-cta:has(.with-showcase:hover) ~ .showcase-cells .showcase-cell:nth-child(7) {
    --a: 0;
  }
  .showcase[data-sections="3"] .showcase-cta:has(.with-showcase:hover) ~ .showcase-cells .showcase-cell:nth-child(8) {
    --a: 0;
  }
  .showcase-cta:has(.with-showcase:hover) ~ .showcase-sectionMedia {
    opacity: 1;
  }
  .showcase-cta:has(.with-showcase:hover) ~ .showcase-sectionMedia img {
    object-position: top;
    scale: 1.05;
  }
}
.uniform__potty {
  position: absolute;
  left: -9999px;
}
.u-menuMajor {
  --fontSize: var(--root-fontSize-medium);
  font-weight: 700;
}
.u-menuDefault {
  --fontSize: var(--root-fontSize-default);
  font-weight: 700;
}
@media (min-width: 60em) {
  .u-menuMajor {
    --fontSize: var(--root-fontSize-large);
  }
}
.u-icon {
  margin-left: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
}
.u-alignCenter {
  text-align: center;
  justify-content: center;
}
.u-max {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.u-space {
  display: block;
  margin-top: 1rem;
}
.u-hide {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.u-remove {
  display: none;
}
.u-halfsize {
  width: 50%;
}
.u-sticky {
  position: sticky;
  bottom: 0;
  padding: 3vw 2vw;
  pointer-events: none;
}
.u-sticky > * {
  pointer-events: all;
}
.u-themeAffair {
  background-color: #81498E;
  color: #FFF;
  max-height: 676px;
  height: 56vw;
  margin-bottom: var(--padding-bottom);
}
.u-button {
  line-height: 20px;
}
.u-hrSmall {
  border: 1px solid transparent;
  margin: 1rem 0;
}
.u-hrLarge {
  border: 1px solid transparent;
  margin: 3rem 0;
}
.u-hsuper {
  font-size: 5.2rem;
}
@media all and (max-width: 37.5em) {
  .u-regular {
    display: none;
  }
  .u-hsuper {
    font-size: 2.25rem;
  }
  .u-space {
    display: block;
    margin: 1rem auto 0;
  }
}
@media all and (min-width: 37.51em) {
  .u-narrow {
    display: none;
  }
  .u-max {
    padding-left: var(--padding-left);
    padding-right: var(--padding-right);
  }
}
@media all and (max-width: 37.5em) {
  .u-meta {
    font-size: 0.8rem !important;
  }
  .u-themeAffair {
    height: 60vh;
  }
}
@media all and (max-width: 54em) {
  .u-themeAffair {
    height: auto;
  }
}
@media all and (max-width: 45em) {
  .u-themeAffair .u-hsuper {
    font-size: 8vw;
  }
}
/* @media ( -webkit-min-device-pixel-ratio: 2 ), ( min-resolution: 192dpi ) {
	.u-rule {
		border-width: .5px;
	}
} */
@media (max-width: 37.5em) {
  .u-h5 {
    font-size: 0.8rem;
  }
}
