.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;
}

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

/* ===== 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 --- */

.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 QUERY ===== */

/* Variable
=========================================== */

/* Core
=========================================== */

.Dialog {
  position: relative;
  z-index: 1000;
  overflow: auto;
  visibility: hidden;
}

.Dialog.Dialog--modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  background: #fff;
}

/* Element
=========================================== *

/* Part
=========================================== */

.Dialog.Dialog--modal .Dialog-window {
  background: #A51C4A;
  position: absolute;
  min-height: calc(100vh - 140px);
  /* min-height: calc( -webkit-fill-available - 85px - var(--padding-top) - var(--padding-bottom) ); */
  top: 85px;
  right: 0;
  left: 0;
  padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
}

.Dialog-content {
  transform: translate3d(0, 2vw, 0);
  transition: transform 1s cubic-bezier(0.15, 0.95, 0.5, 1), opacity 0.3s linear;
  opacity: 0;
}

.Dialog-title {
  padding-top: 15vw;
  font-size: 1rem;
}

.Dialog-close {
  background: #FFF;
  font-size: 1rem;
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  padding: 1.9rem;
  height: 82px;
  font-weight: 400;
}

.Dialog-close:focus {
  outline-offset: 0.5em;
}

/* Modifier
=========================================== */

/* Attribute
=========================================== */

/* Pseudo and state
=========================================== */

/* State */

.Dialog.is-visible {
  visibility: visible;
}

.Dialog.is-visible .Dialog-content {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* Pseudo */

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

.Header {
  background: #FFF;
  height: 140px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.Header-logo {
  display: block;
}

.Header-logo img {
  width: 100%;
}

.Header-wrap {
  display: flex;
  position: relative;
  margin: 0 auto;
  height: 134px;
  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;
}

.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%;
}

.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;
}

.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 {
  font-size: 1.125rem;
  vertical-align: top;
  line-height: inherit;
  text-decoration: none;
}

.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 ===== */

.Nav.Nav--narrow button,
.Nav.Nav--narrow a {
  color: #FFF;
}

/* ===== STATE ===== */

.Nav-a.is-active {
  color: var(--link-default);
  /* border-bottom: .5px solid var( --link-default ); */
}

/* ===== MEDIA QUERY ===== */

.Preamble {
  font-size: 1.3333rem;
  line-height: 130%;
}

.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 ===== */

.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;
}

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 {
  font-size: 1rem;
  border: 0;
  background: transparent;
  font-family: inherit;
  padding: 1rem 0;
}

textarea {
  height: 3.8rem;
  resize: none;
}

::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  width: 100%;
  color: #FFF;
}

input[type=text]:hover,
input[type=email]:hover,
input[type=password]:hover,
textarea:hover {
  border-color: #FFF;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: #FFF;
  box-shadow: 0 2px 0 #FFF;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  border: 5px solid #799AF0;
  background: #3466E8;
  color: #fff;
  padding: 0.5em 1.5em 0.75em;
  cursor: pointer;
  font-family: "AvenirNextLTPro-Demi";
  font-weight: 400;
}

input[type=submit]:hover {
  background: #444;
}

.is-inputMouse input[type=submit]:focus {
  outline: none;
}

input[type=submit]:focus {
  outline-offset: 0.2em;
  outline: 2px solid #799AF0;
}

input[type=submit].is-loading {
  color: transparent;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent no-repeat;
  background-image: url('data:image/svg+xml;utf-8,%3Csvg%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L6%206L11%201%22%20stroke%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E%0A');
  background-position: calc(100% - 5px) calc(50% - 1px);
  display: block;
  font-size: 16px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #555;
  padding: 0.15em 0;
  color: #ddd;
  line-height: 1.3;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

optgroup {
  text-transform: uppercase;
  font-size: 0.75em;
}

optgroup,
option {
  font-family: sans-serif;
  color: #222;
  line-height: 1.5;
  font-style: normal;
}

option {
  font-size: 1.25em;
}

select::-ms-expand {
  display: none;
}

select:hover {
  border-color: #F00;
}

select:focus {
  outline: 2px solid;
}

select::-moz-focus-inner,
select:-moz-focusring {
  outline: none;
}

.is-inputMouse select:focus {
  outline: none;
}

input[type=range] {
  -webkit-appearance: none;
  width: 80px;
  margin: 0;
  background: transparent;
  vertical-align: middle;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2.1px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #050000;
  border-radius: 0px;
  border: 0px solid #000000;
}

input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0;
  height: 15px;
  width: 15px;
  border-radius: 12px;
  background: #000;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6.45px;
}

input[type=range]:focus::-webkit-slider-thumb {
  border: 2px solid #111;
  background: #0056fd;
}

.is-inputMouse input[type=range]:focus::-webkit-slider-thumb {
  border: none;
}

input[type=range]:hover::-webkit-slider-thumb {
  background: #0056fd;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #1f0000;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 2.1px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #050000;
  border-radius: 0px;
  border: 0px solid #000000;
}

input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0;
  height: 12px;
  width: 12px;
  border-radius: 12px;
  background: #000;
  cursor: pointer;
}

input[type=range]:focus::-moz-range-thumb {
  border: 4px solid #111;
  background: #0056fd;
}

.is-inputMouse input[type=range]:focus::-moz-range-thumb {
  border: none;
}

input[type=range]:hover::-moz-range-thumb {
  background: #0056fd;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 2.1px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #000000;
  border: 0px solid #000000;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range]::-ms-fill-upper {
  background: #050000;
  border: 0px solid #000000;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 2.1px solid #000000;
  height: 15px;
  width: 15px;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  height: 2.1px;
}

input[type=range]:focus::-ms-thumb {
  border: 2px solid #111;
  background: #0056fd;
}

.is-inputMouse input[type=range]:focus::-ms-thumb {
  border: none;
}

input[type=range]:hover::-ms-thumb {
  background: #0056fd;
}

input[type=range]:focus::-ms-fill-lower {
  background: #050000;
}

input[type=range]:focus::-ms-fill-upper {
  background: #1f0000;
}

* {
  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');
}

html {
  background: #F7F7F7;
  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-bottom: 1rem;
}

hr {
  border: 0;
  border-bottom: 0.5px solid transparent;
  margin: 2rem 0;
}

img,
video {
  vertical-align: bottom;
  max-width: 100%;
}

button {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}

button:hover {
  cursor: pointer;
}

a:not( [class] ) {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 0.15em;
}

a:not( [class] ):link,
a:not( [class] ):visited {
  color: var(--link-default);
}

a:not( [class] ):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";
  font-weight: 400;
  color: inherit;
  line-height: 1;
}

p,
li {
  font-size: inherit;
  color: inherit;
  letter-spacing: 0.02em;
}

strong {
  font-family: "AvenirNextLTPro-Demi";
  font-weight: 400;
}

figure {
  margin: 0;
}

footer {
  margin: 10vw 0 5vw;
  font-size: 0.75rem;
}

footer p {
  font-size: inherit;
  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:not( [ class ] ) {
  color: var(--link-default) !important;
}

a:hover:not( [ class ] ) {
  color: var(--link-hover) !important;
}

/* ===== MEDIA QUERIES ===== */

/* --- Viewport --- */

/* --- Pixel ration --- */

/* --- Other --- */

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

.u-icon {
  margin-left: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
}

.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-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 ( -webkit-min-device-pixel-ratio: 2 ), ( min-resolution: 192dpi ) {
	.u-rule {
		border-width: .5px;
	}
} */

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

  .Dialog.Dialog--modal {
    background: transparent;
  }

  .Dialog.Dialog--modal .Dialog-window {
    top: 140px;
  }

  .Dialog-close {
    height: 135px;
  }

  .Dialog-content {
    max-width: 40em;
  }

  .Header {
    margin-bottom: var(--padding-top);
  }

  .Header-logo {
    width: 68px;
    height: 62px;
  }

  .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%;
  }

  .Nav-a {
    font-size: 2rem;
    color: var(--text-default);
  }

  .Nav-a:hover {
    color: var(--link-default);
  }

  .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;
    color: #FFF;
  }

  .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;
  }

  .Teaser-content {
    width: 66%;
    margin-left: auto;
  }

  .Toggle-handle {
    margin-left: calc(var(--padding-left) * -1);
  }

  .u-narrow {
    display: none;
  }

  .u-max {
    padding-left: var(--padding-left);
    padding-right: var(--padding-right);
  }
}

@media all and (max-width: 56em) {
  html {
    font-size: 100%;
  }
}

@media all and (max-width: 54em) {
  .u-themeAffair {
    height: auto;
  }
}

@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%;
  }
}

@media all and (max-width: 45em) {
  .u-themeAffair .u-hsuper {
    font-size: 8vw;
  }
}

@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;
  }

  .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 {
    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);
  }

  .Dialog.Dialog--modal .Dialog-window {
    min-height: calc(100vh - 85px);
  }

  .Form-label,
  .Form-textinput {
    font-size: 1.125rem !important;
  }

  .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.List--grid .List-item {
    width: 100%;
    margin-bottom: calc(var(--padding-bottom) * 0.5);
  }

  .List.with-CTA {
    margin: 0;
  }

  .List.with-CTA .List-item {
    margin: auto;
  }

  .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;
  }

  .Preamble {
    font-size: 1.125rem;
  }

  .Teaser.Teaser--image {
    padding-bottom: 50%;
  }

  .Teaser {
    background-size: 100% auto;
    margin-left: var(--padding-left);
    margin-right: var(--padding-right);
  }

  .Toggle.is-expanded .Toggle-handle > svg {
    transform: rotate(180deg) translate3d(10px, -6px, 0);
  }

  input[type=range] {
    width: 60px;
  }

  input[type=text] {
    font-size: 16px;
    border-radius: 0;
  }

  h1 {
    font-size: 3rem;
  }

  hr {
    margin: 1rem 0;
  }

  body {
    --padding-top: 8vw;
    --padding-right: 7.5vw;
    --padding-bottom: 9vw;
    --padding-left: 7.5vw;
  }

  .u-regular {
    display: none;
  }

  .u-hsuper {
    font-size: 2.25rem;
  }

  .u-space {
    display: block;
    margin: 1rem auto 0;
  }

  .u-meta {
    font-size: 0.8rem !important;
  }

  .u-themeAffair {
    height: 60vh;
  }
}

@media (max-width: 37.5em) {
  .u-h5 {
    font-size: 0.8rem;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  hr {
    border-width: 0.5px;
  }
}

@media print {
  body > *:not( main ) {
    display: none;
  }
}