@charset "UTF-8";
/* =================================================================
Styles for the base templates.
==================================================================== */
/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-ccw-1turn;
}
@keyframes spin-ccw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[data-whatintent=mouse] *, [data-whatintent=mouse] *:focus,
[data-whatintent=touch] *,
[data-whatintent=touch] *:focus,
[data-whatinput=mouse] *,
[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *,
[data-whatinput=touch] *:focus {
  outline: none;
}

[draggable=false] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=87.5em&xxlarge=125em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "archiamedium", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #141414;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 2px solid #eee;
  border-radius: 0;
  background-color: #eee;
  box-shadow: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #141414;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 2px solid #bbbbbb;
  background-color: #fefefe;
  box-shadow: none;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

input[type=search] {
  box-sizing: border-box;
}

::-moz-placeholder {
  color: #141414;
}

::placeholder {
  color: #141414;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  color: #0a0a0a;
}
label.middle {
  margin: 0 0 1rem;
  line-height: 1.5;
  padding: 0.625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
}
.input-group > :first-child, .input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #eee;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #eee;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #141414;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 2px solid #bbbbbb;
  background-color: #fefefe;
  box-shadow: none;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #f9ecea;
}
.is-invalid-input:not(:focus)::-moz-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "archiamedium", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #cacaca;
}

h1, .h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3, .h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 3rem;
  }
  h2, .h2 {
    font-size: 2.5rem;
  }
  h3, .h3 {
    font-size: 1.9375rem;
  }
  h4, .h4 {
    font-size: 1.5625rem;
  }
  h5, .h5 {
    font-size: 1.25rem;
  }
  h6, .h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: #2E40FF;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #000fae;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 79.75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.2;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 2rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 3px solid #141414;
}
blockquote, blockquote p {
  line-height: 1.2;
  color: #8a8a8a;
}

abbr, abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: #8a8a8a;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.cite-block, cite {
  display: block;
  color: #8a8a8a;
  font-size: 0.8125rem;
}
.cite-block:before, cite:before {
  content: "— ";
}

.code-inline, code {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 500;
  color: #0a0a0a;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

.code-block {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 500;
  color: #0a0a0a;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    -webkit-print-color-adjust: economy;
            print-color-adjust: economy;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print, .button, .button:visited,
  a.button:visited,
  a.button, .full-image, .cover-area-link, .news-box__link, .footer-bottom {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
.grid-container {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 79.75rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container.fluid {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container.fluid {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0;
}
.cell.shrink {
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  flex-basis: auto;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex-basis: auto;
  }
}
@media screen and (min-width: 64em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex-basis: auto;
  }
}
.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 {
  flex: 0 0 auto;
}

.grid-x > .small-1 {
  width: 8.3333333333%;
}

.grid-x > .small-2 {
  width: 16.6666666667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.3333333333%;
}

.grid-x > .small-5 {
  width: 41.6666666667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.3333333333%;
}

.grid-x > .small-8 {
  width: 66.6666666667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.3333333333%;
}

.grid-x > .small-11 {
  width: 91.6666666667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 1.25rem);
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 1.25rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 1.25rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 1.25rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 1.25rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 1.25rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 1.25rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 1.25rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 1.25rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 1.25rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 1.25rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 1.25rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
}
@media screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x > .cell {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.3333333333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.6666666667%;
}

.small-up-7 > .cell {
  width: 14.2857142857%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.25rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.25rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 1.25rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.25rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.25rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 1.25rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 1.25rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.25rem);
}

@media print, screen and (min-width: 40em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
@media screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 1.25rem / 2);
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 1.25rem / 2);
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 1.25rem / 2);
}

.small-offset-3 {
  margin-left: 25%;
}

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 1.25rem / 2);
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 1.25rem / 2);
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 1.25rem / 2);
}

.small-offset-6 {
  margin-left: 50%;
}

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 1.25rem / 2);
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 1.25rem / 2);
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 1.25rem / 2);
}

.small-offset-9 {
  margin-left: 75%;
}

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 1.25rem / 2);
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 1.25rem / 2);
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 1.25rem / 2);
}

@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1.875rem / 2);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1.875rem / 2);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1.875rem / 2);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1.875rem / 2);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1.875rem / 2);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1.875rem / 2);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1.875rem / 2);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1.875rem / 2);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1.875rem / 2);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1.875rem / 2);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1.875rem / 2);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1.875rem / 2);
  }
}
@media screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1.875rem / 2);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 1.875rem / 2);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 1.875rem / 2);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1.875rem / 2);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 1.875rem / 2);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 1.875rem / 2);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1.875rem / 2);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 1.875rem / 2);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 1.875rem / 2);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1.875rem / 2);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 1.875rem / 2);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 1.875rem / 2);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  height: auto;
  max-height: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
    flex-basis: auto;
  }
}
@media screen and (min-width: 64em) {
  .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
    flex-basis: auto;
  }
}
.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 {
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media screen and (min-width: 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y > .cell {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}
@media screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
  width: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}
@media screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}
@media screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
@media screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
.row {
  max-width: 79.75rem;
  margin-right: auto;
  margin-left: auto;
}
.row::before, .row::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.row::after {
  clear: both;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row .row {
  margin-right: -1rem;
  margin-left: -1rem;
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -1.75rem;
    margin-left: -1.75rem;
  }
}
@media screen and (min-width: 64em) {
  .row .row {
    margin-right: -1.75rem;
    margin-left: -1.75rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.gutter-small > .column, .row.gutter-small > .columns {
  padding-right: 1rem;
  padding-left: 1rem;
}
.row.gutter-medium > .column, .row.gutter-medium > .columns {
  padding-right: 1.75rem;
  padding-left: 1.75rem;
}

.column, .columns {
  padding-right: 1rem;
  padding-left: 1rem;
  width: 100%;
  float: left;
}
@media print, screen and (min-width: 40em) {
  .column, .columns {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
}
.column, .columns, .column:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child, .end.columns:last-child:last-child {
  float: left;
}

.column.row.row, .row.row.columns {
  float: none;
}

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  width: 8.3333333333%;
}

.small-push-1 {
  position: relative;
  left: 8.3333333333%;
}

.small-pull-1 {
  position: relative;
  left: -8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  width: 16.6666666667%;
}

.small-push-2 {
  position: relative;
  left: 16.6666666667%;
}

.small-pull-2 {
  position: relative;
  left: -16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  width: 25%;
}

.small-push-3 {
  position: relative;
  left: 25%;
}

.small-pull-3 {
  position: relative;
  left: -25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  width: 33.3333333333%;
}

.small-push-4 {
  position: relative;
  left: 33.3333333333%;
}

.small-pull-4 {
  position: relative;
  left: -33.3333333333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  width: 41.6666666667%;
}

.small-push-5 {
  position: relative;
  left: 41.6666666667%;
}

.small-pull-5 {
  position: relative;
  left: -41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  width: 50%;
}

.small-push-6 {
  position: relative;
  left: 50%;
}

.small-pull-6 {
  position: relative;
  left: -50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  width: 58.3333333333%;
}

.small-push-7 {
  position: relative;
  left: 58.3333333333%;
}

.small-pull-7 {
  position: relative;
  left: -58.3333333333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  width: 66.6666666667%;
}

.small-push-8 {
  position: relative;
  left: 66.6666666667%;
}

.small-pull-8 {
  position: relative;
  left: -66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  width: 75%;
}

.small-push-9 {
  position: relative;
  left: 75%;
}

.small-pull-9 {
  position: relative;
  left: -75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  width: 83.3333333333%;
}

.small-push-10 {
  position: relative;
  left: 83.3333333333%;
}

.small-pull-10 {
  position: relative;
  left: -83.3333333333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  width: 91.6666666667%;
}

.small-push-11 {
  position: relative;
  left: 91.6666666667%;
}

.small-pull-11 {
  position: relative;
  left: -91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.small-up-1 > .column, .small-up-1 > .columns {
  float: left;
  width: 100%;
}
.small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
  clear: both;
}
.small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
  float: left;
}

.small-up-2 > .column, .small-up-2 > .columns {
  float: left;
  width: 50%;
}
.small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
  clear: both;
}
.small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
  float: left;
}

.small-up-3 > .column, .small-up-3 > .columns {
  float: left;
  width: 33.3333333333%;
}
.small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
  clear: both;
}
.small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
  float: left;
}

.small-up-4 > .column, .small-up-4 > .columns {
  float: left;
  width: 25%;
}
.small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
  clear: both;
}
.small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
  float: left;
}

.small-up-5 > .column, .small-up-5 > .columns {
  float: left;
  width: 20%;
}
.small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
  clear: both;
}
.small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
  float: left;
}

.small-up-6 > .column, .small-up-6 > .columns {
  float: left;
  width: 16.6666666667%;
}
.small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
  clear: both;
}
.small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
  float: left;
}

.small-up-7 > .column, .small-up-7 > .columns {
  float: left;
  width: 14.2857142857%;
}
.small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
  clear: both;
}
.small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
  float: left;
}

.small-up-8 > .column, .small-up-8 > .columns {
  float: left;
  width: 12.5%;
}
.small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
  clear: both;
}
.small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
  float: left;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.small-collapse .row {
  margin-right: 0;
  margin-left: 0;
}

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 1rem;
  padding-left: 1rem;
}

.small-centered {
  margin-right: auto;
  margin-left: auto;
}
.small-centered, .small-centered:last-child:not(:first-child) {
  float: none;
  clear: both;
}

.small-uncentered, .small-push-0, .small-pull-0 {
  position: static;
  margin-right: 0;
  margin-left: 0;
}
.small-uncentered, .small-uncentered:last-child:not(:first-child), .small-push-0, .small-push-0:last-child:not(:first-child), .small-pull-0, .small-pull-0:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.small-uncentered:last-child:not(:first-child), .small-push-0:last-child:not(:first-child), .small-pull-0:last-child:not(:first-child) {
  float: right;
}

@media print, screen and (min-width: 40em) {
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
  .medium-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .medium-centered, .medium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .medium-uncentered, .medium-push-0, .medium-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncentered, .medium-uncentered:last-child:not(:first-child), .medium-push-0, .medium-push-0:last-child:not(:first-child), .medium-pull-0, .medium-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .medium-uncentered:last-child:not(:first-child), .medium-push-0:last-child:not(:first-child), .medium-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
  .large-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .large-centered, .large-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .large-uncentered, .large-push-0, .large-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncentered, .large-uncentered:last-child:not(:first-child), .large-push-0, .large-push-0:last-child:not(:first-child), .large-pull-0, .large-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .large-uncentered:last-child:not(:first-child), .large-push-0:last-child:not(:first-child), .large-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
.column-block {
  margin-bottom: 2rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 3.5rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

.close-button {
  position: absolute;
  z-index: 10;
  color: #8a8a8a;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #0a0a0a;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.close-button.medium, .close-button {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.breadcrumbs {
  margin: 0 0 1.875rem 0;
  list-style: none;
}
.breadcrumbs::before, .breadcrumbs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #0a0a0a;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #cacaca;
}
.breadcrumbs a {
  color: #1779ba;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled, .breadcrumbs .search-results__load-more[disabled] {
  color: #cacaca;
  cursor: not-allowed;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: transparent;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #1779ba;
}
.tabs.primary > li > a {
  color: #fefefe;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #1673b1;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
}
[data-whatinput=mouse] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: transparent;
  color: rgba(219, 219, 219, 0.2);
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: transparent;
  color: white;
}

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: transparent;
  color: #141414;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 0;
}
.tabs-panel.is-active {
  display: block;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.vertical.icon-top li a img,
.menu.vertical.icon-top li a i,
.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img,
.menu.vertical.icon-bottom li a i,
.menu.vertical.icon-bottom li a svg {
  text-align: left;
}
.menu.expanded li {
  flex: 1 1 0px;
}
.menu.expanded.icon-top li a img,
.menu.expanded.icon-top li a i,
.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img,
.menu.expanded.icon-bottom li a i,
.menu.expanded.icon-bottom li a svg {
  text-align: left;
}
.menu.simple {
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 64em) {
  .menu.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: flex;
}
.menu.icon-left li a, .menu.nested.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg, .menu.nested.icon-left li a img,
.menu.nested.icon-left li a i,
.menu.nested.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a, .menu.nested.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg, .menu.nested.icon-right li a img,
.menu.nested.icon-right li a i,
.menu.nested.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a, .menu.nested.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg, .menu.nested.icon-top li a img,
.menu.nested.icon-top li a i,
.menu.nested.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a, .menu.nested.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img,
.menu.nested.icon-bottom li a i,
.menu.nested.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu .active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu.align-left {
  justify-content: flex-start;
}
.menu.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right.icon-top li a img,
.menu.align-right.icon-top li a i,
.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img,
.menu.align-right.icon-bottom li a i,
.menu.align-right.icon-bottom li a svg {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered > .menu {
  justify-content: center;
}
.menu-centered > .menu li {
  display: flex;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.accordion {
  margin-left: 0;
  background: #fefefe;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #e6e6e6;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fefefe;
  color: #141414;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #1779ba transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
  position: relative;
}

.has-submenu-toggle > a {
  margin-right: 40px;
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #1779ba transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

.submenu-toggle[aria-expanded=true]::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%;
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.drilldown a {
  padding: 0.7rem 1rem;
  background: #fefefe;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #1779ba;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #2E40FF;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #2E40FF transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
html.is-reveal-open body {
  overflow-y: hidden;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(0, 0, 0, 0.75);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1.875rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column, .reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 79.75rem;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 79.75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 79.75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 79.75rem;
  }
}
.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.clearfix::before, .clearfix::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.clearfix::after {
  clear: both;
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@media print, screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 87.49875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 87.5em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }
  .hide-for-dark-mode {
    display: none !important;
  }
}
.show-for-ie {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }
  .hide-for-ie {
    display: none !important;
  }
}
.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

/* ================================================================================
Mobile nav
=================================================================================== */
.top-bar-mobile {
  background: white;
  height: 64px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.3);
  transition: background-color 200ms;
  position: fixed;
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  z-index: 30;
  border-radius: 12px 0px;
}
.top-bar-mobile__menu-icon {
  width: 24px;
  position: absolute;
  top: 20px;
  right: 17px;
  margin: 0;
  cursor: pointer;
}
.top-bar-mobile__logo {
  width: 150.3px;
  height: 36px;
  position: absolute;
  top: 12px;
  left: 20px;
}
.top-nav-mobile {
  min-height: 100vh;
  background: #141414;
  transition: transform 350ms;
  z-index: 100;
  padding: 80px 32px 32px 32px;
  will-change: transform, display;
  transform: translateY(-100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.top-nav-mobile--initial {
  transition: transform 0s;
}
.top-nav-mobile--active {
  transform: none;
}
.top-nav-mobile__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.top-nav-mobile__logo {
  width: 150.3px;
  height: 36px;
  position: absolute;
  top: 14px;
  left: 34px;
}
.top-nav-mobile__close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  right: 17px;
  cursor: pointer;
}
.top-nav-mobile__close img {
  width: 100%;
}
.top-nav-mobile__bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 1.75rem 1.5rem;
}
.top-nav-mobile__bottom .button {
  width: 100%;
}
.top-nav-mobile__menu-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  margin: 0;
}
.top-nav-mobile__menu {
  padding: 0;
  margin: 0;
  width: 100%;
}
.top-nav-mobile__menu > li {
  text-align: left;
  vertical-align: top;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.top-nav-mobile__menu > li > a {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.125rem;
  padding: 20px 0;
  transition: color 200ms, opacity 200ms;
  line-height: 1.3;
  position: relative;
  display: block !important;
}
.top-nav-mobile__menu > li > a:visited {
  color: #fff;
}
.top-nav-mobile__menu > li > a:hover, .top-nav-mobile__menu > li > a:active, .top-nav-mobile__menu > li > a:focus, .top-nav-mobile__menu > li > a.is-active {
  color: #fff;
  outline: none;
  cursor: pointer;
}
.top-nav-mobile__menu li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.top-nav-mobile__menu .active > a {
  background: none;
  color: #fff !important;
}
.top-nav-mobile__menu > li.is-active > a {
  color: #fff;
}
.top-nav-mobile__menu > li.is-active > a:after {
  transform: rotate(-180deg);
}
.top-nav-mobile__menu > li.is-accordion-submenu-parent > a:after {
  content: "";
  width: 10px;
  height: 5px;
  background: url("../down-arrow-white.html") no-repeat center;
  background-size: contain;
  transform: rotate(0);
  position: absolute;
  top: 20px;
  right: 0;
  display: inline-block;
  border: 0;
  vertical-align: middle;
  transition: transform 200ms;
}
.top-nav-mobile__menu > li.is-accordion-submenu-parent[aria-expanded=true] > a:after {
  transform: rotate(-180deg);
}

.top-nav-desktop-submenu__icon-wrapper {
  display: none;
}

.top-nav-desktop {
  background-color: white;
  color: #141414;
  text-align: left;
  height: 82px;
  z-index: 30;
  position: fixed;
  top: 14px;
  left: 14px;
  width: calc(100% - 28px);
  transition: height 200ms linear, background-color 200ms;
  border-radius: 20px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 16px;
}
.top-nav-desktop__right {
  display: flex;
}
.top-nav-desktop__cta {
  margin: 0;
  position: absolute;
}
.top-nav-desktop__menu {
  list-style-type: none;
  padding: 0 14px 0 0;
  margin: 0;
  display: flex;
}
.top-nav-desktop__menu > li {
  text-align: left;
  vertical-align: top;
  display: inline-block;
}
.top-nav-desktop__menu > li > a,
.top-nav-desktop__menu > li > a:visited,
.top-nav-desktop__menu > li > span {
  color: #141414;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 6px;
  position: relative;
  border: 0;
  transition: color 200ms;
  line-height: 1.4;
  cursor: pointer;
  text-underline-offset: 0.5em;
}
@media screen and (min-width: 87.5em) {
  .top-nav-desktop__menu > li > a,
  .top-nav-desktop__menu > li > a:visited,
  .top-nav-desktop__menu > li > span {
    padding: 0 14px;
  }
}
.top-nav-desktop__menu > li > a.is-active,
.top-nav-desktop__menu > li > a:visited.is-active,
.top-nav-desktop__menu > li > span.is-active {
  color: #2E40FF;
  text-decoration: underline;
}
.top-nav-desktop__menu > li > a:hover, .top-nav-desktop__menu > li > a:active,
.top-nav-desktop__menu > li > a:visited:hover,
.top-nav-desktop__menu > li > a:visited:active,
.top-nav-desktop__menu > li > span:hover,
.top-nav-desktop__menu > li > span:active {
  color: #2E40FF;
}

.site-logo-desktop {
  width: 206.37px;
  height: 50px;
  position: absolute;
  top: 16px;
  left: 16px;
  text-align: left;
  transition: height 200ms linear, width 200ms linear, background-color 500ms;
}
.site-logo-desktop__image {
  width: 206.37px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  transition: top 200ms linear, left 200ms linear, width 200ms linear, height 200ms linear, opacity 200ms linear;
}

.top-footer {
  background: #141414;
  color: #fff;
  padding: 60px 16px 28px;
  position: relative;
}
@media screen and (min-width: 64em) {
  .top-footer {
    padding: 120px 0 50px;
  }
}
.top-footer__content {
  font-size: 1.25rem;
  color: white;
  font-weight: 500;
  margin-bottom: 28px;
  text-transform: none;
  line-height: 1.4;
}
@media screen and (min-width: 64em) {
  .top-footer__content {
    font-size: 1.625rem;
    max-width: 492px;
    margin: 0;
  }
}
.top-footer__content p {
  line-height: 1.4;
  text-wrap: balance;
}
.top-footer__privacy-logo {
  margin-top: 150px;
}
.top-footer__privacy-logo img {
  max-width: 253px;
}
.top-footer__privacy-logo a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}
@media print, screen and (max-width: 63.99875em) {
  .top-footer__privacy-logo {
    display: none;
  }
}
.top-footer__privacy-logo-mobile img {
  max-width: 253px;
}
.top-footer__privacy-logo-mobile a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
@media print, screen and (max-width: 63.99875em) {
  .top-footer__privacy-logo-mobile {
    grid-column: span 2;
    order: 4;
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .top-footer__privacy-logo-mobile {
    display: none;
  }
}
.top-footer__title {
  font-size: 1rem;
  color: #2E40FF;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: none;
  line-height: 1.4;
}
@media screen and (min-width: 64em) {
  .top-footer__title {
    font-size: 1rem;
  }
}
.top-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media screen and (min-width: 64em) {
  .top-footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
.top-footer__col {
  order: 4;
}
.top-footer__col:nth-child(1) {
  order: 1;
}
.top-footer__col:nth-child(2) {
  order: 2;
}
.top-footer__col a,
.top-footer__col a:visited {
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  color: white;
}
.top-footer__col a:hover,
.top-footer__col a:active {
  color: white;
}
.top-footer__col-last {
  grid-column: span 2;
}
@media screen and (min-width: 64em) {
  .top-footer__col-last {
    grid-column: span 3;
  }
}
@media screen and (min-width: 64em) {
  .top-footer__col-last .top-footer__links {
    -moz-columns: 3;
         columns: 3;
    -moz-column-gap: 28px;
         column-gap: 28px;
  }
}
.top-footer__sega-logo {
  width: 89px;
  margin: auto 0 0 auto;
}
.top-footer__sega-wrapper {
  display: flex;
  text-align: right;
  padding-bottom: 12px;
}
@media screen and (min-width: 64em) {
  .top-footer__social-col {
    order: 3;
  }
}
.top-footer__social-links {
  display: flex;
  gap: 12px;
}
.top-footer__social-links img {
  width: 38px;
}

.footer-bottom {
  background: #141414;
  text-align: left;
  color: white;
  padding: 27px 16px 60px;
  position: relative;
}
@media screen and (min-width: 64em) {
  .footer-bottom {
    padding: 40px 0 120px;
  }
}
.footer-bottom__content {
  position: relative;
}
.footer-bottom__hr {
  position: absolute;
  top: -27px;
  left: 16px;
  width: 100%;
  height: 1px;
  background: white;
  background: linear-gradient(90deg, rgba(46, 64, 255, 0) 0%, rgb(255, 255, 255) 62px, rgb(255, 255, 255) calc(100% - 62px), rgba(46, 64, 255, 0) 100%);
}
@media screen and (min-width: 64em) {
  .footer-bottom__hr {
    top: -40px;
    left: 28px;
    width: calc(100% - 52px);
    background: linear-gradient(90deg, rgba(46, 64, 255, 0) 0%, rgb(255, 255, 255) 100px, rgb(255, 255, 255) calc(100% - 100px), rgba(46, 64, 255, 0) 100%);
  }
}
.footer-bottom__logos {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 28px;
}
@media screen and (min-width: 64em) {
  .footer-bottom__logos {
    margin-bottom: 40px;
  }
}
.footer-bottom__si-logo {
  width: auto;
  height: 36px;
}
@media screen and (min-width: 64em) {
  .footer-bottom__si-logo {
    height: 50px;
  }
}
.footer-bottom__sega-logo {
  width: 89px;
}
.footer-bottom a,
.footer-bottom a:visited {
  text-decoration: none;
}
.footer-bottom a:hover,
.footer-bottom a:active {
  color: #fff;
}
.footer-bottom__copy {
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.4;
}
.footer-bottom p {
  margin: 0;
}

@font-face {
  font-family: "archiamedium";
  src: url("../eot/archia-medium-webfont.eot");
  src: url("../eot/archia-medium-webfontd41d.eot#iefix") format("embedded-opentype"), url("../woff2/archia-medium-webfont.woff2") format("woff2"), url("../woff/archia-medium-webfont.woff") format("woff"), url("../ttf/archia-medium-webfont.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "archiasemibold";
  src: url("../eot/archia-semibold-webfont.eot");
  src: url("../eot/archia-semibold-webfontd41d.eot#iefix") format("embedded-opentype"), url("../woff2/archia-semibold-webfont.woff2") format("woff2"), url("../woff/archia-semibold-webfont.woff") format("woff"), url("../ttf/archia-semibold-webfont.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "archiamedium", sans-serif;
  color: #141414;
  font-weight: 500;
  line-height: 1.2;
}
.wrapper--dark h1, .wrapper--darkGrey h1, .wrapper--dark h2, .wrapper--darkGrey h2, .wrapper--dark h3, .wrapper--darkGrey h3, .wrapper--dark h4, .wrapper--darkGrey h4, .wrapper--dark h5, .wrapper--darkGrey h5, .wrapper--dark h6, .wrapper--darkGrey h6 {
  color: #fff;
}

h1, h2, h3 {
  margin-bottom: 0.5em;
  font-size: 2.25rem;
  text-wrap: balance;
}
@media screen and (min-width: 64em) {
  h1, h2, h3 {
    font-size: 4rem;
  }
}
h1 a,
h1 a:visited,
h1 a:hover,
h1 a:active, h2 a,
h2 a:visited,
h2 a:hover,
h2 a:active, h3 a,
h3 a:visited,
h3 a:hover,
h3 a:active {
  text-decoration: none;
}

a,
a:visited {
  font-family: inherit;
  color: inherit;
  text-decoration: underline;
  transition: color 200ms;
}

a:not([href]) {
  cursor: default;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
}

hr {
  border-color: rgba(245, 245, 245, 0.3);
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

p {
  line-height: inherit;
}

/* ================================================
Global classes that might be used anywhere
=================================================== */
.text-center {
  text-align: center;
}

.no-margin {
  margin: 0 !important;
}

.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.cover-area-link, .news-box__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-indent: -99999px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0);
}

.cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  background-size: cover;
}

@media print, screen and (max-width: 39.99875em) {
  .fullwidth-on-small,
  .button.fullwidth-on-small {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media print, screen and (min-width: 40em) {
  .fullwidth-on-small,
  .button.fullwidth-on-small {
    min-width: 240px;
  }
}

.full-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.slide-tint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #141414;
  pointer-events: none;
}

@media screen and (min-width: 87.5em) {
  .hide-for-xlarge {
    display: none;
  }
}

@media print, screen and (max-width: 87.49875em) {
  .show-for-xlarge {
    display: none;
  }
}

/* ================================================================================
The main copy - a large bit of rich text & styles for links, lists etc
=================================================================================== */
.copy, .copy p, .copy li {
  color: #141414;
  font-family: "archiamedium", sans-serif;
  font-weight: 500;
  text-align: left;
  font-size: 1rem;
  /* =============================================================
  Different versions, eg. inside coloured wrappers
  ================================================================ */
}
@media print, screen and (min-width: 40em) {
  .copy, .copy p, .copy li {
    font-size: 1rem;
  }
}
.copy .subtitle {
  font-size: 1.5rem;
}
.copy h1, .copy h2, .copy h3 {
  font-size: 1.75rem;
  color: #2E40FF;
  margin-bottom: 10px;
  text-transform: none;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 64em) {
  .copy h1, .copy h2, .copy h3 {
    font-size: 3rem;
  }
}
.copy__title {
  margin-bottom: 1rem;
  color: #141414;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}
@media print, screen and (min-width: 40em) {
  .copy__title {
    margin-bottom: 0.75rem;
    font-size: 2.25rem;
  }
}
.copy__abstract, .copy__abstract p {
  font-size: 1.25rem;
  font-weight: 300;
}
@media print, screen and (min-width: 40em) {
  .copy__abstract, .copy__abstract p {
    font-size: 1.3125rem;
    font-weight: 500;
  }
}
.copy__abstract:last-child p, .copy__abstract p:last-child p {
  margin-bottom: 0;
}
.copy__buttons {
  margin-top: 1.5rem;
}
.copy p, .copy li {
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media print, screen and (min-width: 40em) {
  .copy p, .copy li {
    margin-bottom: 1.5rem;
  }
}
.copy p:last-child {
  margin-bottom: 0;
}
.copy ul, .copy ol {
  margin-left: 0;
}
.copy ul {
  margin-left: 0.25rem;
}
.copy li {
  margin-bottom: 0.25rem;
  text-align: left;
  margin-left: 1rem;
}
.copy a,
.copy a:visited {
  color: #2E40FF;
  font-weight: inherit;
  transition: color 200ms, border-color 200ms;
  word-wrap: break-word;
  text-decoration: underline;
}
.copy a:hover,
.copy a:active {
  color: #000fae;
}
.copy blockquote {
  font-size: 1.125rem;
  padding-top: 0;
  padding-bottom: 4px;
  margin: 1.5rem 0;
}
@media print, screen and (min-width: 40em) {
  .copy blockquote {
    font-size: 1.375rem;
    margin: 2rem 0;
  }
}
.copy img:last-child,
.copy figure:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .copy > ul:last-child, .copy p > ul:last-child, .copy li > ul:last-child,
  .copy > p:last-child,
  .copy p > p:last-child,
  .copy li > p:last-child {
    margin-bottom: 0;
  }
}
.copy iframe {
  max-width: 100%;
  max-height: 570px;
}
.copy.text-center, .copy p.text-center, .copy li.text-center {
  text-align: center;
}
.copy.text-center p, .copy p.text-center p, .copy li.text-center p {
  text-align: inherit;
}
.copy .align-center,
.copy .center-img {
  text-align: center;
}
.copy .align-center img,
.copy .center-img img {
  margin-left: auto;
  margin-right: auto;
}
.copy .bordered {
  padding: 5px;
  border: 1px solid #DBE3E3;
}
.copy iframe,
.copy img {
  margin-bottom: 1.5rem;
}
.copy .image-caption {
  font-size: 0.875rem;
  color: #737373;
  padding: 12px 24px 0;
}
.copy .medium, .copy .small {
  text-align: center;
}
.copy .medium img, .copy .small img {
  width: 300px;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.copy .small img {
  width: 300px;
}
.copy .medium img {
  width: 600px;
}
@media print, screen and (min-width: 40em) {
  .copy .left {
    float: left;
    max-width: calc(50% - 1.875rem);
    margin: 0 1.875rem 1.875rem 0;
  }
}
@media print, screen and (min-width: 40em) {
  .copy .right {
    float: right;
    max-width: calc(50% - 1.875rem);
    margin: 0 0 1.875rem 1.875rem;
  }
}
.copy ol {
  counter-reset: section;
  list-style-type: none;
  margin-left: 0;
}
.copy ol li {
  margin: 0.5rem 0 1rem;
}
.copy ol li > strong + p {
  margin-top: 0.6rem;
}
.copy ol ul {
  margin: 0.5rem 0 0 1.4rem !important;
}
.copy ol table {
  border: 0 none;
}
.copy ol table td {
  padding: 0;
}
.copy ol table td:first-child {
  width: 25%;
}
.copy ol table td img {
  margin: 0 3rem !important;
}
.copy ol table tbody {
  background: none;
  border: none;
}
.copy ol ol {
  margin-left: 1.4rem;
}
.copy ol > li:before {
  counter-increment: section;
  content: counters(section, ".") ". ";
  font-weight: bold;
}
.copy + .button, .copy p + .button, .copy li + .button {
  margin-top: 1rem;
}
@media print, screen and (min-width: 40em) {
  .copy + .button, .copy p + .button, .copy li + .button {
    margin-top: 2rem;
  }
}
.copy .bptw2021 {
  width: 80px;
  margin: 0 15px 0 0;
}
@media screen and (min-width: 64em) {
  .copy .bptw2021 {
    width: 110px;
  }
}
.copy--dark, .wrapper--dark .copy, .wrapper--dark .copy p, .copy .wrapper--dark p, .wrapper--dark .copy li, .copy .wrapper--dark li, .wrapper--darkGrey .copy, .wrapper--darkGrey .copy p, .copy .wrapper--darkGrey p, .wrapper--darkGrey .copy li, .copy .wrapper--darkGrey li, .wrapper--dark-gradient .copy, .wrapper--dark-gradient .copy p, .copy .wrapper--dark-gradient p, .wrapper--dark-gradient .copy li, .copy .wrapper--dark-gradient li {
  color: #fff;
}
.copy--dark a, .wrapper--dark .copy a, .copy .wrapper--dark p a, .copy .wrapper--dark li a, .wrapper--darkGrey .copy a, .copy .wrapper--darkGrey p a, .copy .wrapper--darkGrey li a, .wrapper--dark-gradient .copy a, .copy .wrapper--dark-gradient p a, .copy .wrapper--dark-gradient li a,
.copy--dark a:visited {
  color: #7b86ff;
}
.copy--dark a:hover, .wrapper--dark .copy a:hover, .copy .wrapper--dark p a:hover, .copy .wrapper--dark li a:hover, .wrapper--darkGrey .copy a:hover, .copy .wrapper--darkGrey p a:hover, .copy .wrapper--darkGrey li a:hover, .wrapper--dark-gradient .copy a:hover, .copy .wrapper--dark-gradient p a:hover, .copy .wrapper--dark-gradient li a:hover,
.copy--dark a:active,
.wrapper--dark .copy a:active,
.copy .wrapper--dark p a:active,
.copy .wrapper--dark li a:active,
.wrapper--darkGrey .copy a:active,
.copy .wrapper--darkGrey p a:active,
.copy .wrapper--darkGrey li a:active,
.wrapper--dark-gradient .copy a:active,
.copy .wrapper--dark-gradient p a:active,
.copy .wrapper--dark-gradient li a:active,
.copy--dark a:focus,
.wrapper--dark .copy a:focus,
.copy .wrapper--dark p a:focus,
.copy .wrapper--dark li a:focus,
.wrapper--darkGrey .copy a:focus,
.copy .wrapper--darkGrey p a:focus,
.copy .wrapper--darkGrey li a:focus,
.wrapper--dark-gradient .copy a:focus,
.copy .wrapper--dark-gradient p a:focus,
.copy .wrapper--dark-gradient li a:focus {
  color: #e1e3ff;
}
.copy--center {
  text-align: center;
}
.copy--center h1, .copy--center h2, .copy--center h3, .copy--center p, .copy--center li {
  text-align: center;
}
.copy-with-sidecol__sidecol {
  margin-top: 1.875rem;
}

.blue {
  color: #2E40FF !important;
}

html {
  height: 100%;
  min-height: 100%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: white;
}

.fp-tableCell {
  vertical-align: top !important;
  height: calc(100vh - 76px);
}

html.is-reveal-open body {
  overflow: initial;
}

/* ====================================================
Button styles
======================================================= */
.button, .button:visited,
a.button:visited,
a.button {
  cursor: pointer;
  font-size: 1rem;
  padding: 17px 28px 15px;
  transition: background 200ms, color 200ms;
  text-align: center;
  text-decoration: none !important;
  border: 0;
  border-radius: 8px 0;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "archiamedium", sans-serif;
  margin: 0;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  z-index: 1;
  letter-spacing: 0.1em;
  color: white;
}
.button::-moz-selection, .button:visited::-moz-selection, a.button::-moz-selection {
  background: transparent;
}
.button::selection, .button:visited::selection,
a.button::selection {
  background: transparent;
}
.button--wide,
a.button--wide {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .button--wide,
  a.button--wide {
    width: auto;
  }
}
.button--fullwidth,
a.button--fullwidth {
  width: 100%;
  display: block;
}
.button[disabled], .button.disabled,
a.button[disabled],
a.button.disabled {
  opacity: 0.6;
  cursor: initial;
}
.button[disabled]:hover, .button[disabled]:active, .button[disabled]:focus, .button.disabled:hover, .button.disabled:active, .button.disabled:focus,
a.button[disabled]:hover,
a.button[disabled]:active,
a.button[disabled]:focus,
a.button.disabled:hover,
a.button.disabled:active,
a.button.disabled:focus {
  opacity: 0.6;
}

/* ====================================================
Different button styles - for extending into components
======================================================= */
.button--light,
a.button--light {
  border-color: white;
  color: white;
}
.button--light:hover, .button--light:focus, .button--light:active,
a.button--light:hover,
a.button--light:focus,
a.button--light:active {
  color: #141414;
  border-color: white;
  background: white;
}

.button--red,
a.button--red {
  border-color: #FF3600;
  color: white;
  background: #FF3600;
}
.button--red:hover, .button--red:focus, .button--red:active,
a.button--red:hover,
a.button--red:focus,
a.button--red:active {
  color: white;
  border-color: #FF3600;
  background: #FF3600;
}

.button.button--blue,
a.button--blue {
  border-color: #2E40FF;
  color: white;
  background: #2E40FF;
}
.button.button--blue:hover, .button.button--blue:focus, .button.button--blue:active,
a.button--blue:hover,
a.button--blue:focus,
a.button--blue:active {
  color: white;
  border-color: #2E40FF;
  background: #2E40FF;
}

.inline-buttons {
  font-size: 0;
}
@media print, screen and (min-width: 40em) {
  .inline-buttons {
    margin-bottom: -20px;
    display: flex;
    justify-content: center;
  }
}
@media print, screen and (min-width: 40em) {
  .inline-buttons .button {
    min-width: 240px;
    margin: 0 10px;
  }
  .inline-buttons .button:first-child {
    margin-left: 0;
  }
  .inline-buttons .button:last-child {
    margin-right: 0;
  }
}

@media print, screen and (max-width: 39.99875em) {
  .stack-on-small .button {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

/* =============================================================
For the 404 template
================================================================ */
.not-found {
  min-height: 350px;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 40em) {
  .not-found {
    min-height: 540px;
  }
}
.not-found__content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.not-found__title {
  font-size: 6.25rem;
  font-weight: 600;
  position: relative;
  line-height: 1.15;
  padding: 0;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 40em) {
  .not-found__title {
    font-size: 11.25rem;
  }
}
.not-found p {
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .not-found p {
    font-size: 3rem;
  }
}
.not-found__buttons {
  margin-top: 2rem;
}

/* =============================================================
Generic forms. Basic Foundation styles are in _settings.scss
================================================================ */
@media print, screen and (max-width: 63.99875em) {
  form input[type=text],
  form input[type=email],
  form textarea {
    border-radius: 0;
    margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 40em) {
  form input[type=text],
  form input[type=email],
  form textarea {
    background: transparent;
  }
}
form label > [type=checkbox],
form label > [type=radio] {
  margin: 0 0.75em 0 0;
}
form select {
  padding-top: 10px;
  padding-bottom: 10px;
  height: auto;
}

select {
  height: auto;
  background-image: url(../svg/down-arrow-small-dark-blue.svg);
  background-size: 12px 7px;
  border: 1px solid #F5F5F5;
  transition: border-color 200ms;
}
@media print, screen and (min-width: 40em) {
  select {
    width: 290px;
  }
}
select:active, select:focus {
  border: 1px solid #cfcfcf;
}

/* =========================================================
Used for the contact form - mostly for validation.
Most form styles can be applied as variables in _settings
============================================================ */
.contact-form {
  text-align: left;
  /* ================================================================
  Different themed versions
  =================================================================== */
}
.contact-form__abstract {
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .contact-form__abstract {
    margin-bottom: 2.75rem;
  }
}
.contact-form__bottom-copy {
  font-size: 0.75rem;
}
.contact-form__heading {
  font-size: 1rem;
  font-weight: 500;
}
.contact-form__option {
  display: block;
}
.contact-form__option input {
  margin-bottom: 1rem;
}
.contact-form__option input[type=radio]:checked + label {
  font-weight: 400;
}
.contact-form__option label {
  font-size: 1rem;
}
@media screen and (min-width: 64em) {
  .contact-form__col {
    width: calc(50% - 5px);
  }
  .contact-form__col:nth-child(2n) {
    margin-left: 10px;
  }
}
@media screen and (min-width: 64em) {
  .contact-form__form-col {
    padding-right: 2rem;
  }
}
.contact-form__social-icons {
  margin-top: 1rem;
  margin-bottom: 1.75rem;
}
.contact-form__social-icons .social-link {
  display: inline-block;
  vertical-align: middle;
}
.contact-form__social-icons .social-link img {
  margin-right: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .contact-form select {
    height: 51px;
  }
}
.contact-form label {
  color: #141414;
  font-weight: 500;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea,
.contact-form select {
  font-weight: 500;
  background: #F5F5F5;
  border: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media print, screen and (min-width: 40em) {
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form textarea,
  .contact-form select {
    margin-bottom: 10px;
    background: #F5F5F5;
    border: 0;
  }
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  background: #F5F5F5;
}
@media print, screen and (min-width: 40em) {
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form textarea {
    background: #F5F5F5;
  }
}
.contact-form textarea {
  min-height: 195px;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 40em) {
  .contact-form textarea {
    margin-bottom: 1rem;
  }
}
.contact-form .form-error {
  text-align: left;
  margin-bottom: 12px;
  margin-top: 0;
}
.contact-form .file-upload-input {
  font-size: 0.75rem;
}
.contact-form .checkbox-text {
  font-size: 1.125rem;
  margin-right: 1rem;
}
.contact-form .confirm-checkbox {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  position: relative;
  padding-left: 1rem;
}
.contact-form .confirm-checkbox p {
  font-size: 0.75rem;
}
.contact-form .confirm-checkbox input {
  position: absolute;
  top: 5px;
  left: 0;
}
.contact-form .button {
  margin-bottom: 1rem;
}

/* ================================================================
A coloured area for giving consistent top & bottom padding to
components - white by default
=================================================================== */
.wrapper {
  padding: 3.75rem 0 3.75rem;
  text-align: center;
  position: relative;
  background: #fff;
}
@media print, screen and (min-width: 40em) {
  .wrapper {
    padding: 7.5rem 0 7.5rem;
  }
}
.wrapper p,
.wrapper li,
.wrapper .copy__abstract,
.wrapper .copy__abstract p {
  color: inherit;
}
@media print, screen and (min-width: 40em) {
  .wrapper--even-padding {
    padding-top: 7.5rem;
  }
}
.wrapper--dark {
  background: #212527;
  color: #fff;
}
.wrapper--dark-gradient {
  background: #212527 url(../svg/dark-gradient.svg) no-repeat center;
  background-size: cover;
  color: #fff;
}
.wrapper--blue-gradient {
  background: #212527, linear-gradient(33deg, rgba(0, 143, 249, 0.4) 0%, rgba(11, 25, 42, 0) 100%);
  color: #fff;
}
.wrapper--darkGrey {
  background: #141414;
  color: #fff;
}
.wrapper--lightGrey {
  background: #F3F3F3;
  color: #141414;
}
.wrapper--fixedBg {
  background: green url(../lake-como.html) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.wrapper:nth-child(2) {
  padding-top: 98px;
}
@media screen and (min-width: 64em) {
  .wrapper:nth-child(2) {
    padding-top: 128px;
  }
}

/* =======================================================
A component with several news boxes, an image, title,
content, and link.
========================================================== */
.news-box {
  background: transparent;
  position: relative;
  padding: 0;
  margin: 0;
  text-align: left;
  transition: color 200ms, border 200ms;
  color: #141414;
  vertical-align: top;
}
@media print {
  .news-box {
    border: 1px solid grey;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .news-box {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(20, 20, 20, 0.15);
    padding: 16px 0;
    align-items: center;
  }
  .news-box:last-child {
    border-bottom: 1px solid rgba(20, 20, 20, 0.15);
  }
}
.news-box__title {
  font-size: 1rem;
  margin-bottom: 0;
  transition: color 200ms;
  text-transform: none;
  color: #FF3600;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (min-width: 64em) {
  .news-box__title {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
}
.news-box__content-wrapper {
  padding: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .news-box__content-wrapper {
    order: 0;
    flex: 1;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .news-box__abstract {
    display: none;
    font-size: 0.875rem;
  }
}
.news-box__abstract p {
  margin-bottom: 0;
  font-size: 1rem;
}
.news-box__date {
  text-align: left;
  margin: 0;
  line-height: 1.4;
  font-size: 0.875rem;
  color: #2E40FF !important;
}
@media screen and (min-width: 64em) {
  .news-box__date {
    margin-bottom: 10px;
    font-size: 1rem;
  }
}
.news-box__image {
  width: 100%;
  height: auto;
}
.news-box__image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  border-radius: 28px 0;
  background: #F3F3F3;
  aspect-ratio: 388/217;
  border: 1px solid rgba(20, 20, 20, 0.15);
}
@media print, screen and (max-width: 63.99875em) {
  .news-box__image-wrapper {
    order: 1;
    border-radius: 6px 0;
    width: 105px;
    margin: 0 auto;
  }
}
.news-box__link {
  text-decoration: none;
}
/* =======================================================
Different version of a news box
========================================================== */
/* =======================================================
For the related news component - box styles are in "news box"
and carousel styles are in "news carousel"
========================================================== */
.related-news {
  text-align: left;
  margin-top: 40px;
}
@media screen and (min-width: 64em) {
  .related-news {
    margin-top: 80px;
  }
}
.related-news__top {
  padding-bottom: 10px;
  width: 100%;
}
@media screen and (min-width: 64em) {
  .related-news__top {
    padding-bottom: 40px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }
}
.related-news__title {
  font-size: 1.375rem;
  margin: 0;
  color: #2E40FF;
}
@media screen and (min-width: 64em) {
  .related-news__title {
    font-size: 3rem;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .related-news__button.button {
    margin-top: 20px;
  }
}
.related-news__boxes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}
@media screen and (min-width: 64em) {
  .related-news__boxes {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
.reveal-on-scroll {
  opacity: 0;
  position: relative;
  z-index: 1;
  /* ====================================================
  Set initial states
  ======================================================= */
  /* ====================================================
  ...then when in view, set final state
  ======================================================= */
  /* ====================================================
  Stagger their entrance
  ======================================================= */
}
.reveal-on-scroll.slide-in-left {
  opacity: 0;
  transition: transform 700ms, opacity 2s;
  transform: translate3d(-25px, 0px, 0px);
}
.reveal-on-scroll.slide-in-right {
  opacity: 0;
  transition: transform 700ms, opacity 700ms;
  transform: translate3d(25px, 0px, 0px);
}
.reveal-on-scroll.fade-in-up {
  opacity: 0;
  transition: transform 700ms, opacity 700ms;
  transform: translate3d(0, 2rem, 0px);
}
.reveal-on-scroll.fade-in {
  opacity: 0;
  transition: opacity 700ms;
}
.reveal-on-scroll.slide-in-left.in-view, .reveal-on-scroll.slide-in-right.in-view, .reveal-on-scroll.fade-in-up.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}
.reveal-on-scroll.fade-in.in-view {
  opacity: 1;
}
.reveal-on-scroll.zoom-in {
  opacity: 0;
  transform: scale(0.98);
  transition: transform 400ms, opacity 400ms;
}
.reveal-on-scroll.zoom-in.in-view {
  opacity: 1;
  transform: scale(1);
}
.reveal-on-scroll:nth-child(1) {
  transition-delay: 200ms !important;
}
.reveal-on-scroll:nth-child(2) {
  transition-delay: 400ms !important;
}
.reveal-on-scroll:nth-child(3) {
  transition-delay: 600ms !important;
}
.reveal-on-scroll:nth-child(4) {
  transition-delay: 800ms !important;
}
.reveal-on-scroll:nth-child(5) {
  transition-delay: 1000ms !important;
}
.reveal-on-scroll:nth-child(6) {
  transition-delay: 1200ms !important;
}
.reveal-on-scroll:nth-child(7) {
  transition-delay: 1400ms !important;
}
.reveal-on-scroll:nth-child(8) {
  transition-delay: 1600ms !important;
}

/* ====================================================
Manual staggered transitions
======================================================= */
.transition-delay-2nd {
  transition-delay: 300ms !important;
}

.transition-delay-3rd {
  transition-delay: 600ms !important;
}

.transition-delay-4th {
  transition-delay: 900ms !important;
}

/* ================================================================
A full-width image banner which loads a video in lightbox when
button is clicked
=================================================================== */
.video {
  overflow: hidden;
}
.video__wrapper {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (min-width: 64em) {
  .video__wrapper {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.video__button {
  margin: 0 auto;
  padding: 0.75rem 0 !important;
  width: 60px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 64em) {
  .video__button {
    width: 100px;
  }
}
.video__button svg {
  width: 100%;
}
.video__inner {
  background: #141414;
  border-radius: 16px 0;
  padding: 40px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-height: 100vh;
  width: 100%;
  background-size: cover;
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (min-width: 64em) {
  .video__inner {
    border-radius: 40px 0;
    padding: 120px 0;
    aspect-ratio: 16/9;
  }
}
.video__lightbox {
  text-align: center;
}
.video__lightbox .close-button {
  transition: color 200ms;
  color: #e6e6e6;
}
.video__lightbox .close-button:hover, .video__lightbox .close-button:active, .video__lightbox .close-button:focus {
  color: #fff;
}
.video__embed {
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}
.video__embed textarea {
  display: none;
}
.video__image {
  background-size: cover;
}

.search-results__load-more-wrapper {
  display: none;
}
@media print, screen and (min-width: 40em) {
  .search-results__load-more-wrapper {
    padding-top: 1rem;
  }
}

.search-result {
  text-align: left;
  border-top: 1px solid #DEDEDE;
  padding: 30px 0 10px;
}
@media print, screen and (min-width: 40em) {
  .search-result {
    padding: 40px 0 20px;
  }
}
.search-result:first-child {
  border: 0 none;
  padding-top: 0;
}
.search-result__title {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: none;
  color: #2E40FF;
}
@media print, screen and (min-width: 40em) {
  .search-result__title {
    font-size: 1.75rem;
  }
}
.search-result__snippet {
  font-size: 0.875rem;
}
@media print, screen and (min-width: 40em) {
  .search-result__snippet {
    font-size: 1rem;
  }
}

/* =======================================================
Pagination for the news list (with pagination)
========================================================== */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.pagination__pages {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0 auto;
}
.pagination__item {
  border-radius: 6px 0;
  border: 1px solid #2E40FF;
  padding: 4px 10px;
  width: -moz-fit-content;
  width: fit-content;
  color: #2E40FF;
  height: 34px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background 200ms, opacity 200ms;
}
.pagination__item:visited {
  color: #2E40FF;
}
.pagination__item:hover, .pagination__item:active, .pagination__item:focus {
  z-index: 1;
}
.pagination__item.current {
  z-index: 2;
  opacity: 0.8;
  background: #2E40FF;
  color: white;
}
.pagination__wrapper .views-field {
  display: none;
}
.pagination__prev-next {
  display: inline-block;
}
.pagination__prev, .pagination__next {
  color: #2E40FF;
  font-size: 1rem;
  line-height: 1.4;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  padding-top: 7px;
}
.pagination__prev:hover:after, .pagination__prev:active:after, .pagination__next:hover:after, .pagination__next:active:after {
  opacity: 1;
}
.user-page {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
}
body .user-page {
  background-color: #f0f0f1;
}
.user-page__box {
  align-items: center;
  background: #fff;
  border: 1px solid #c3c4c7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5625rem 3.125rem;
}
.user-page__box img {
  max-width: 100%;
  width: 300px;
}
.user-page__box label {
  font-size: 1.125rem;
}
.user-page__box input {
  background-color: #fff;
  border-radius: 0.3125rem;
  border: 1px solid #c3c4c7;
}
.user-page__box input:active, .user-page__box input:focus {
  border: 1px solid #c3c4c7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.user-page__box .form-actions {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 0.9375rem;
}
.user-page__box .description {
  display: none;
}
.user-page__box .button {
  border-color: #212527;
  background-color: #212527;
  color: white;
}
.user-page__box .button:hover, .user-page__box .button:focus, .user-page__box .button:active {
  border-color: black;
  background: black;
  color: white;
}
.user-page__box a {
  cursor: pointer;
  font-size: 1rem;
  padding: 17px 28px 15px;
  transition: background 200ms, color 200ms;
  text-align: center;
  text-decoration: none !important;
  border: 0;
  border-radius: 8px 0;
  text-transform: uppercase;
  background-color: transparent;
  font-weight: 500;
  font-family: "archiamedium", sans-serif;
  margin: 0;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  z-index: 1;
  letter-spacing: 0.1em;
  margin: 20px 0;
  border-color: #FF3600;
  color: white;
  background: #FF3600;
}
.user-page__box a:hover, .user-page__box a:focus, .user-page__box a:active {
  color: white;
  border-color: #FF3600;
  background: #FF3600;
}

/* Slider */
.slick-loading .slick-list {
  background: transparent;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  border: none;
  outline: none;
  z-index: 1;
  transition: opacity 200ms;
  padding: 0;
  width: 13px;
  height: 24px;
}
.slick-prev:hover,
.slick-next:hover {
  opacity: 0.5;
}
.slick-prev:focus, .slick-prev:active,
.slick-next:focus,
.slick-next:active {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  content: "";
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  color: white;
  background: url(../svg/arrow-right-light.svg) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.slick-prev {
  left: -1rem;
}
.slick-prev:before {
  transform: rotate(180deg);
}

.slick-next {
  right: -1rem;
}
/* Dots - original slick styles */
/* ================================================================
Custom global dot styles
=================================================================== */
.slick-dotted.slick-slider {
  margin: 1.875rem 0;
}

.slick-dots {
  margin: 1.875rem 0;
}
.slick-dots li {
  margin: 0 7px;
  padding: 0;
  list-style-type: none;
  display: inline-block;
  height: 11px;
}
.slick-dots li button {
  margin: 0;
  padding: 0;
  width: 11px;
  height: 11px;
  text-indent: -5000px;
  background: white;
  vertical-align: top;
  border: 0;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: #2E40FF;
  border-color: #2E40FF;
}

/* ====================================================
A main carousel, with slides of content, maybe buttons
and maybe a bottom bar
======================================================= */
.carousel {
  width: 100%;
  background-color: #141414;
  text-align: left;
  height: 400px;
  position: relative;
}
.carousel--full {
  height: 100vh;
  height: calc(100vh - 76px);
  min-height: 640px;
}
@media screen and (min-width: 64em) {
  .carousel--full {
    min-height: 600px;
    height: 100vh;
  }
}
.carousel__down-arrow {
  position: absolute;
  bottom: 76px;
  right: 72px;
  z-index: 1;
  cursor: pointer;
  opacity: 1;
  transition: opacity 200ms;
  width: 22px;
  height: 22px;
  transform: rotate(-45deg);
  border-left: 2px solid white;
  border-bottom: 2px solid white;
}
.carousel__down-arrow:before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  border-left: 5px solid white;
  border-bottom: 5px solid white;
  position: absolute;
  top: 0;
  left: -2px;
  animation-duration: 1.5s;
  animation-name: pulse;
  animation-iteration-count: infinite;
}
@media print, screen and (max-width: 39.99875em) {
  .carousel__down-arrow--with-logos {
    top: -55px;
    left: calc(50% - 17px);
    right: initial;
    bottom: initial;
  }
}
@media print, screen and (min-width: 40em) {
  .carousel__down-arrow--with-logos {
    display: none;
  }
}
@media screen and (min-width: 93.75em) {
  .carousel__down-arrow--with-logos {
    display: block;
  }
}
.carousel .slick-list,
.carousel .slick-track {
  height: 100%;
}
.carousel__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel .slide {
  color: #fff;
  text-align: left;
  position: relative;
  width: 100%;
  height: 100%;
  outline: none;
}
.carousel .slide-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.carousel .slide-tint {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #000;
  opacity: 0;
  z-index: 1;
}
.carousel .slide-content {
  padding: 0;
  text-align: left;
  margin: 0 auto;
  position: absolute;
  top: 130px;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 64em) {
  .carousel .slide-content {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 39.99875em) and (orientation: landscape) {
  .carousel .slide-content {
    margin-top: 1.875rem;
  }
}
.carousel .slide-content--dark-text h1, .carousel .slide-content--dark-text h2, .carousel .slide-content--dark-text p {
  color: #141414;
}
@media print, screen and (max-width: 63.99875em) {
  .carousel .slide-content--align-bottom {
    top: initial;
    bottom: 215px;
  }
}
.carousel .slide-content__abstract {
  margin-top: -1rem;
  font-weight: 400;
}
@media print, screen and (min-width: 40em) {
  .carousel .slide-content__abstract {
    margin-top: -1.75rem;
    margin-bottom: 1.75rem;
    max-width: 800px;
  }
}
.carousel .slide-content__abstract:empty {
  display: none;
}
@media screen and (min-width: 87.5em) and (min-height:801px) {
  .carousel .slide-content__title-wrapper {
    transform: scale(1.2);
    margin-bottom: 1rem;
  }
}
.carousel .slide-content__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  margin: 0 0 1.25rem 0;
}
@media print, screen and (min-width: 40em) {
  .carousel .slide-content__title {
    font-size: 4.5rem;
    margin-bottom: 1.75rem;
  }
}
@media screen and (min-width: 64em) and (min-height:801px) {
  .carousel .slide-content__title {
    font-size: 7.8125rem;
  }
}
.carousel .slide-content__title:last-child {
  margin-bottom: 0;
}
.carousel .slide-content__top-title {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
  margin-left: 0;
  padding-left: 25px;
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .carousel .slide-content__top-title {
    font-size: 1.125rem;
  }
}
.carousel .slide-content__top-title:before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: -5px;
  border-top: 1px solid white;
  width: 20px;
}
@media screen and (min-width: 64em) {
  .carousel .slide-content__top-title:before {
    top: 14px;
  }
}
.carousel .slide-content__button {
  min-width: auto;
}
@media print, screen and (min-width: 40em) {
  .carousel .slide-content__button {
    margin-right: 0.5rem;
  }
}
.carousel .slide-content__button:first-child {
  margin-left: 0;
}
.carousel .slide-content__button:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.carousel .slick-next,
.carousel .slick-prev {
  border: 1px solid #818181;
  width: 50px;
  height: 50px;
  position: absolute;
  top: calc(50% - 140px);
  left: initial;
  transition: border-color 200ms;
}
.carousel .slick-next:before,
.carousel .slick-prev:before {
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
}
.carousel .slick-next:hover, .carousel .slick-next:active,
.carousel .slick-prev:hover,
.carousel .slick-prev:active {
  opacity: 1;
}
.carousel .slick-next {
  right: 140px;
}
.carousel .slick-prev {
  right: 189px;
}

/* ====================================================
A version with light bg & dark text - don't use yet
======================================================= */
/* ====================================================
Dots
======================================================= */
.carousel .slick-dots {
  margin: 0;
  display: block;
  position: absolute;
}
@media print, screen and (max-width: 39.99875em) {
  .carousel .slick-dots {
    bottom: 1rem;
    left: 1rem;
  }
}
@media print, screen and (min-width: 40em) {
  .carousel .slick-dots {
    top: 50%;
    right: 35px;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
  }
}
.carousel .slick-dots li {
  height: 0;
  margin: 0;
}
.carousel .slick-dots li button {
  background: transparent;
  height: 31px;
  width: 50px;
  margin: 0 16px 0 0;
  border: 0;
  border-radius: 0;
  position: relative;
}
.carousel .slick-dots li button:after {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  width: 100%;
  height: 2px;
  background: white;
}
.carousel .slick-dots li.slick-active button {
  background: transparent;
}
.carousel .slick-dots li.slick-active button:after {
  background: #2E40FF;
}
@media print, screen and (max-width: 39.99875em) {
  .carousel--has-logos .slick-dots {
    bottom: 140px;
  }
}

/* ============================================================
Wrapper around carousel to add other things, like share button
Optionally make carousel "fixed", remember to remove __height
=============================================================== */
.carousel-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-wrapper--fixed {
  position: fixed;
  top: 76px;
}
@media print, screen and (min-width: 40em) {
  .carousel-wrapper--fixed {
    top: 0;
  }
}
.carousel-wrapper__height {
  height: 400px;
  height: 100vh;
  height: calc(100vh - 76px);
}
@media print, screen and (min-width: 40em) {
  .carousel-wrapper__height {
    height: 100vh;
  }
}

/* ============================================================
Bottom of the carousel with logos
=============================================================== */
.carousel-bottom {
  position: absolute;
  bottom: 0;
  border-top: 1px solid rgba(245, 245, 245, 0.3);
  padding: 1.75rem 0 0.75rem;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .carousel-bottom {
    padding: 2.75rem 0;
  }
}
.carousel-bottom__content {
  position: relative;
  overflow: hidden;
}
.carousel-bottom__title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: white;
  margin-bottom: 1rem;
  font-weight: 400;
}
.carousel-bottom__logos {
  white-space: nowrap;
}
@media print, screen and (max-width: 39.99875em) {
  .carousel-bottom__logos {
    overflow-y: hidden;
    margin: 0 -1rem;
    padding: 0 1rem;
    padding-bottom: 4.125rem;
    margin-bottom: -50px;
  }
}
.carousel-bottom__logo {
  margin-right: 2rem;
  display: inline-block;
  vertical-align: middle;
}
@media print, screen and (min-width: 40em) {
  .carousel-bottom__logo {
    margin-right: 2.5rem;
    margin-bottom: 1rem;
  }
}
.carousel-bottom__logo:last-child {
  margin-right: 0;
}
.carousel-bottom__logo img {
  height: 45px;
  width: auto;
  max-width: 148px;
  vertical-align: middle;
}
@media print, screen and (min-width: 40em) {
  .carousel-bottom__logo img {
    height: 48px;
  }
}
.carousel-bottom__bptw-container {
  bottom: 160px;
  left: 0.5rem;
  right: 0.5rem;
  position: absolute;
  display: flex;
  gap: 11px;
  justify-content: center;
}
@media print, screen and (min-width: 40em) {
  .carousel-bottom__bptw-container {
    gap: 16px;
    bottom: 140px;
  }
}
.carousel-bottom__bptw {
  width: 91px;
  height: 90px;
}
@media screen and (min-width: 64em) {
  .carousel-bottom__bptw {
    width: 110px;
    height: 110px;
  }
}

/* ============================================================
Disability confident at bottom of carousel
=============================================================== */
.dc {
  background: rgba(11, 25, 42, 0.5);
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 141px;
  padding: 20px 0;
}
@media print, screen and (min-width: 40em) {
  .dc {
    padding: 20px 20px;
  }
}
@media screen and (min-width: 64em) {
  .dc {
    min-height: 171px;
  }
}
.dc .row {
  width: 100%;
}
.dc__content {
  gap: 15px;
  width: 100%;
  display: flex;
  text-align: left;
  align-items: center;
}
@media print, screen and (min-width: 40em) {
  .dc__content {
    gap: 20px;
  }
}
@media screen and (min-width: 64em) {
  .dc__content {
    align-items: center;
    justify-content: space-between;
  }
}
.dc__title {
  color: white;
  font-weight: 600;
  line-height: 1.375;
  font-size: 1rem;
  text-transform: none;
  margin: 0;
}
@media screen and (min-width: 64em) {
  .dc__title {
    line-height: 1.4;
    font-size: 1.3125rem;
    max-width: 820px;
    font-weight: 400;
  }
}
.dc__logo {
  width: 75px;
  min-width: 75px;
  padding: 8px 8px 4px;
  background: white;
}
@media screen and (min-width: 64em) {
  .dc__logo {
    width: 168px;
  }
}
.dc__logo img {
  width: 100%;
}
.dc__logos {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media screen and (min-width: 64em) {
  .dc__logos {
    gap: 25px;
  }
}
.dc__bptw-container {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: -53px;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.dc__bptw {
  width: 100px;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .dc__bptw {
    width: 65px;
  }
}

.video-modal {
  width: 100% !important;
  max-width: none !important;
  top: 0 !important;
  bottom: 0 !important;
  position: absolute;
  padding: 30px 0;
  border: 0 none;
  overflow: hidden;
  background-color: transparent;
}
@media print, screen and (min-width: 40em) {
  .video-modal {
    padding: 50px 30px;
  }
}
@media screen and (min-width: 64em) {
  .video-modal {
    padding: 50px 60px;
  }
}
.video-modal iframe {
  width: 100%;
  height: 100%;
}
.video-modal .close-button {
  color: white !important;
}

/* ====================================================
Animated Google material design inputs.
Not using BEM just because to keep the fields free of
too many classes - although slightly slower to find.
- Input should have no placeholder
- Label should be after input
- Wrap input & label with .animated-input
======================================================= */
.animated-input {
  position: relative;
}
.animated-input input,
.animated-input textarea {
  padding-top: 18px;
  padding-bottom: 7px;
}
.animated-input textarea {
  line-height: 1.6;
}
.animated-input input:focus ~ label, .animated-input input.has-value ~ label,
.animated-input textarea:focus ~ label,
.animated-input textarea.has-value ~ label {
  top: 5px;
  font-size: 0.75rem;
  opacity: 0.6;
}
.animated-input label {
  position: absolute;
  left: 1rem;
  top: 17px;
  transition: all 200ms;
  display: block;
  font-size: 1rem;
  pointer-events: none;
  line-height: 1.2;
}

.plat-icons {
  font-size: 0;
  display: inline-block;
}
.plat-icons__icon {
  border: 1px solid black;
  width: 44px;
  height: 44px;
  display: inline-block;
  position: relative;
  margin-right: -1px;
}
@media screen and (min-width: 64em) {
  .plat-icons__icon {
    margin-bottom: -1px;
  }
}
.plat-icons--white .plat-icons__icon {
  border-color: white;
}
.plat-icons--no-border .plat-icons__icon {
  border: 0;
}
.plat-icons__icon:last-child {
  margin-right: 0;
}
.plat-icons__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52%;
  height: auto;
}
.plat-icons__icon img.large {
  width: 60%;
}

/* ================================================================================
Desktop fullscreen nav that slides in from the top
=================================================================================== */
.offcanvas-nav {
  min-height: 100vh;
  background: rgb(21, 82, 128);
  background: linear-gradient(45deg, rgb(21, 82, 128) 0%, rgb(34, 53, 64) 100%);
  transform: translateY(-100%);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  transition: transform 350ms;
  z-index: 20;
  will-change: transform, display;
  display: block;
}
@media print, screen and (max-width: 63.99875em) {
  .offcanvas-nav {
    display: none;
  }
}
.offcanvas-nav--active {
  transform: translateY(0);
}
.offcanvas-nav--hidden {
  display: none;
}
.offcanvas-nav__bottom {
  padding: 0;
}
.offcanvas-nav__menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 136px 200px 1.25rem;
  transition: padding-top 200ms;
}
.sticky-active .offcanvas-nav__menu-wrapper {
  padding-top: 136px;
}
@media screen and (min-width: 64em) and (min-height:801px) {
  .offcanvas-nav__menu-wrapper {
    padding: 176px 200px 70px;
  }
  .sticky-active .offcanvas-nav__menu-wrapper {
    padding-top: 176px;
  }
}
.offcanvas-nav__menu {
  width: 100%;
}
.offcanvas-nav .menu {
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 64em) and (min-height:801px) {
  .offcanvas-nav .menu {
    margin-bottom: 2rem;
  }
}
.offcanvas-nav .menu > li {
  text-align: left;
  vertical-align: top;
  display: block;
}
.offcanvas-nav .menu > li > a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 3.25rem;
  padding: 0;
  transition: color 200ms;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
  display: inline-block !important;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 64em) and (min-height:801px) {
  .offcanvas-nav .menu > li > a {
    font-size: 4.5rem;
  }
}
.offcanvas-nav .menu > li > a:visited {
  color: rgba(255, 255, 255, 0.85);
}
.offcanvas-nav .menu > li > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-bottom: 1px solid #2E40FF;
  width: 0;
  transition: width 200ms, left 200ms;
}
.offcanvas-nav .menu > li > a:hover, .offcanvas-nav .menu > li > a:active, .offcanvas-nav .menu > li > a:focus, .offcanvas-nav .menu > li > a.is-active {
  color: white;
  outline: none;
  cursor: pointer;
}
.offcanvas-nav .menu > li > a:hover:before, .offcanvas-nav .menu > li > a:active:before, .offcanvas-nav .menu > li > a:focus:before, .offcanvas-nav .menu > li > a.is-active:before {
  width: 100%;
  left: 0;
}
.offcanvas-nav .menu > li > a.is-active:before {
  border-color: rgba(255, 255, 255, 0.5);
}
.offcanvas-nav .menu > li > a.external-link:after {
  content: " ";
  width: 18px;
  height: 18px;
  background: url(../svg/external-link.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  vertical-align: top;
  margin-top: 0.5rem;
  margin-left: 0.5rem;
}
@media screen and (min-width: 64em) and (min-height:801px) {
  .offcanvas-nav .menu > li > a.external-link:after {
    margin-top: 0.75rem;
  }
}
.offcanvas-nav .menu .active > a {
  background: none;
  color: white !important;
}
.offcanvas-nav .menu > li.is-active > a {
  color: white;
}
.offcanvas-nav .menu > li.is-active > a:after {
  transform: rotate(-180deg);
}
.offcanvas-nav .social-link {
  text-decoration: none;
  color: white;
  margin-right: 2.75rem;
}
.offcanvas-nav .social-link:hover, .offcanvas-nav .social-link:active {
  font-weight: 400;
}

.news {
  text-align: left;
}
@media screen and (min-width: 64em) {
  .news__date-col {
    padding-right: 0;
    margin-top: 10px;
  }
}
.news__date {
  color: #2E40FF !important;
  margin: 0 0 18px;
  line-height: 1.4;
  text-transform: uppercase;
}
@media print, screen and (max-width: 63.99875em) {
  .news__share-col {
    margin-top: 20px;
  }
}
@media screen and (min-width: 64em) {
  .news__share-col {
    padding-left: 0;
    margin-top: 10px;
  }
}
.news__content-wrapper {
  position: relative;
}
.news__title {
  font-size: 1.375rem;
  text-align: left;
  font-weight: 500;
  color: #FF3600;
  line-height: 1.3;
  margin: 0;
}
@media screen and (min-width: 64em) {
  .news__title {
    font-size: 3rem;
  }
}
.news__copy {
  text-align: left;
}
.news__copy iframe {
  min-height: 315px;
}
@media print, screen and (min-width: 40em) {
  .news__copy iframe {
    min-height: 400px;
  }
}
@media screen and (min-width: 64em) {
  .news__copy iframe {
    min-height: 500px;
  }
}
.news__copy img {
  width: 100%;
}
.news__copy a.html5lightbox {
  display: inline-block;
  position: relative;
}
.news__copy a.html5lightbox img {
  margin: 0;
}
.news__copy h2, .news__copy h3 {
  font-size: 1.375rem;
  color: #2E40FF;
}
@media screen and (min-width: 64em) {
  .news__copy h2, .news__copy h3 {
    font-size: 1.625rem;
  }
}
.news__abstract {
  font-weight: 500;
  color: #2E40FF;
  font-size: 1.375rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 64em) {
  .news__abstract {
    font-size: 1.625rem;
  }
}
.news__abstract p {
  font-weight: inherit;
  font-size: inherit;
}
.news__image-wrapper {
  margin: 30px auto 34px;
  border-radius: 28px 0px;
  overflow: hidden;
}
@media screen and (min-width: 64em) {
  .news__image-wrapper {
    margin: 60px 0;
  }
}
.news__image {
  width: 100%;
}
.news__wrapper {
  padding-top: 104px;
  padding-bottom: 60px;
}
@media screen and (min-width: 64em) {
  .news__wrapper {
    padding-top: 186px;
    padding-bottom: 120px;
  }
}

#views-exposed-form-blog-listing-block-1 {
  display: none;
}

#views-exposed-form-the-byline-listing-block-1 {
  display: none;
}

.news-list {
  text-align: left;
  padding: 40px 0 60px;
}
@media print, screen and (min-width: 40em) {
  .news-list {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.news-list__wrapper {
  padding-top: 104px;
}
@media screen and (min-width: 64em) {
  .news-list__wrapper {
    padding-top: 186px;
  }
}
.news-list__top {
  margin: 0 auto 30px;
}
@media print, screen and (max-width: 63.99875em) {
  .news-list__top {
    padding: 0 14px;
  }
}
@media screen and (min-width: 64em) {
  .news-list__top {
    margin-bottom: 100px;
  }
}
.news-list__title {
  font-size: 2.25rem;
  margin: 0 auto 10px;
  line-height: 1.1;
}
@media screen and (min-width: 64em) {
  .news-list__title {
    font-size: 4.625rem;
    margin: 0;
  }
}
.news-list__copy {
  font-size: 1.125rem;
  line-height: 1.4;
}
@media screen and (min-width: 64em) {
  .news-list__copy {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}
.news-list__pagination {
  padding-bottom: 0;
  font-size: 1rem;
  padding-top: 1.75rem;
  background: white;
  text-align: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.news-list__pagination .views-field.views-field-nid {
  display: none;
}
.news-list__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
}
@media print, screen and (max-width: 63.99875em) {
  .news-list__boxes {
    padding: 0 14px;
  }
}
@media screen and (min-width: 64em) {
  .news-list__boxes {
    gap: 28px;
    grid-template-columns: repeat(6, 1fr);
  }
}
.news-list__boxes .news-box {
  grid-column: span 2;
}
@media print, screen and (max-width: 63.99875em) {
  .news-list__boxes .news-box {
    grid-column: span 2;
  }
}
.news-list__boxes .news-box:nth-child(1),
.news-list__boxes .news-box:nth-child(2) {
  display: flex;
  flex-direction: column;
  border: 0;
  padding: 0 0 20px;
  grid-column: span 1;
}
@media screen and (min-width: 64em) {
  .news-list__boxes .news-box:nth-child(1),
  .news-list__boxes .news-box:nth-child(2) {
    grid-column: span 3;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .news-list__boxes .news-box:nth-child(1) .news-box__image-wrapper,
  .news-list__boxes .news-box:nth-child(2) .news-box__image-wrapper {
    order: 0;
    width: 100%;
    border-radius: 18px 0;
  }
  .news-list__boxes .news-box:nth-child(1) .news-box__content-wrapper,
  .news-list__boxes .news-box:nth-child(2) .news-box__content-wrapper {
    order: 1;
  }
  .news-list__boxes .news-box:nth-child(1) .news-box__abstract,
  .news-list__boxes .news-box:nth-child(2) .news-box__abstract {
    display: block;
    margin-top: 10px;
  }
}

@media print, screen and (max-width: 63.99875em) {
  .top-news {
    position: relative;
    background: #141414;
    padding: 16px 16px 20px;
    border-radius: 16px 0;
    margin: 0 0 30px;
  }
}
@media screen and (min-width: 64em) {
  .top-news {
    position: relative;
    display: grid;
    gap: 28px;
    margin-bottom: 60px;
    grid-template-columns: repeat(6, 1fr);
  }
}
.top-news__date {
  color: white;
  margin: 0 0 10px;
  font-size: 0.875rem;
}
@media screen and (min-width: 64em) {
  .top-news__date {
    font-size: 1rem;
  }
}
.top-news__title {
  color: white;
  margin: 0 0 10px;
  font-size: 1.25rem;
}
@media screen and (min-width: 64em) {
  .top-news__title {
    font-size: 1.375rem;
  }
}
.top-news__abstract {
  color: white;
  display: block;
}
.top-news__abstract p {
  margin: 0;
}
.top-news__image-wrapper {
  position: relative;
  overflow: hidden;
}
@media print, screen and (max-width: 63.99875em) {
  .top-news__image-wrapper {
    aspect-ratio: 2/1;
    margin: 0 0 20px;
    border-radius: 16px 0;
  }
}
@media screen and (min-width: 64em) {
  .top-news__image-wrapper {
    border-radius: 28px 0;
    grid-column: span 4;
    aspect-ratio: 2/1;
  }
}
.top-news__content-wrapper {
  color: white;
}
@media screen and (min-width: 64em) {
  .top-news__content-wrapper {
    border-radius: 28px 0;
    background: #141414;
    padding: 30px;
    display: flex;
    flex-direction: column;
    grid-column: span 2;
    justify-content: center;
    text-align: left;
  }
}
.top-news__link {
  z-index: 1;
}

/* =======================================================
A component with several feature boxes, an image, title,
content, and link.
========================================================== */
.feature-box {
  background: #141414 no-repeat center;
  background-size: cover;
  position: relative;
  padding: 0 0 125%;
  margin-bottom: 1.875rem;
  text-align: left;
  color: #DEDEDE;
}
@media print, screen and (min-width: 40em) {
  .feature-box {
    padding-bottom: 63%;
  }
}
@media screen and (min-width: 64em) {
  .feature-box {
    margin-bottom: 0;
  }
}
.feature-box:hover, .feature-box:active {
  color: #000fae;
}
.feature-box__title {
  font-size: 2.25rem;
  margin-bottom: 0;
  font-weight: 600;
  color: white;
}
@media print, screen and (min-width: 40em) {
  .feature-box__title {
    margin-bottom: 0.5rem;
    font-size: 3rem;
  }
}
.feature-box__content {
  padding: 1.25rem;
  font-size: 0.9375rem;
  color: #DEDEDE;
  border-top: 1px solid rgba(245, 245, 245, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
@media print, screen and (min-width: 40em) {
  .feature-box__content {
    font-size: 1rem;
  }
}
@media screen and (min-width: 87.5em) {
  .feature-box__content {
    padding: 35px 80px 50px;
  }
}
.feature-box__content:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.25rem;
  border-top: 2px solid #2E40FF;
  width: 24px;
}
@media print, screen and (min-width: 40em) {
  .feature-box__content:before {
    left: 80px;
  }
}
.feature-box:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(20, 20, 20, 0.5);
  z-index: 2;
}
.feature-box__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.feature-box p {
  margin-bottom: 0.5rem;
  color: #DEDEDE;
  font-size: 1.3125rem;
  font-weight: 400;
}
@media print, screen and (min-width: 40em) {
  .feature-box p {
    margin-bottom: 1rem;
  }
}
.feature-box p:last-child {
  margin-bottom: 0;
}
.feature-box .button {
  margin: 0;
}

/* =======================================================
The surrounding component
========================================================== */
.feature-boxes__row {
  max-width: 1808px;
}
.feature-boxes .columns:last-child .feature-box {
  margin-bottom: 0;
}

.copy-with-title {
  text-align: left;
}
.copy-with-title__title {
  font-size: 2.25rem;
}
@media screen and (min-width: 64em) {
  .copy-with-title__title {
    font-size: 3.625rem;
  }
}
@media screen and (min-width: 64em) {
  .copy-with-title__title:last-child {
    margin-bottom: 0;
  }
}
.copy-with-title__title:after {
  content: "";
  display: block;
  height: 2px;
  background: #2E40FF;
  margin-top: 40px;
  margin-bottom: 35px;
  width: 25px;
}
@media print, screen and (min-width: 40em) {
  .copy-with-title__title:after {
    margin-top: 45px;
  }
}
.copy-with-title__abstract {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (min-width: 64em) {
  .copy-with-title__abstract {
    font-size: 1.5rem;
  }
}

.t-carousel {
  text-align: left;
  overflow: hidden;
}
.t-carousel__copy-wrapper {
  position: relative;
}
@media screen and (min-width: 64em) and (max-width: 87.49875em) {
  .t-carousel__copy-wrapper {
    padding-left: 2.5rem;
  }
}
@media screen and (min-width: 64em) {
  .t-carousel__copy-wrapper {
    display: flex;
    align-items: center;
    width: calc(41.66667% - 1rem);
  }
}
.t-carousel__image-col {
  margin-bottom: 90px;
  position: relative;
}
@media screen and (min-width: 64em) {
  .t-carousel__image-col {
    max-width: calc(50vw - 2rem);
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    margin-bottom: 1.5rem;
  }
}
.t-carousel__title {
  color: white;
}
.t-carousel__row {
  position: relative;
}
@media screen and (min-width: 64em) {
  .t-carousel__row {
    min-height: 660px;
    display: flex;
    align-items: center;
  }
}
.t-carousel__slide {
  outline: 0;
}
.t-carousel .slick-prev,
.t-carousel .slick-next {
  z-index: 10;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -4.25rem;
  top: initial;
  left: initial;
  transition: border-color 200ms;
  pointer-events: all;
}
@media screen and (min-width: 64em) {
  .t-carousel .slick-prev,
  .t-carousel .slick-next {
    top: 50%;
    transform: translateY(-50%);
    bottom: initial;
  }
}
@media screen and (min-width: 87.5em) {
  .t-carousel .slick-prev,
  .t-carousel .slick-next {
    border: 1px solid #818181;
    width: 50px;
    height: 50px;
  }
}
.t-carousel .slick-prev:before,
.t-carousel .slick-next:before {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 64em) {
  .t-carousel .slick-prev:before,
  .t-carousel .slick-next:before {
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
  }
}
.t-carousel .slick-prev:hover, .t-carousel .slick-prev:active,
.t-carousel .slick-next:hover,
.t-carousel .slick-next:active {
  opacity: 1;
}
.t-carousel .slick-prev {
  left: 1rem;
}
.t-carousel .slick-next {
  right: 1rem;
}
.t-carousel__dots-placeholder {
  position: absolute;
  padding: 3.75rem 1rem 0;
  top: 0;
  width: 100%;
  pointer-events: none;
}
@media print, screen and (min-width: 40em) {
  .t-carousel__dots-placeholder {
    padding-top: 7.5rem;
  }
}
@media screen and (min-width: 64em) {
  .t-carousel__dots-placeholder {
    padding: 0;
    height: 100%;
  }
}
.t-carousel__dots-placeholder:after {
  content: "";
  display: block;
  background: transparent;
  height: 0;
  width: 100%;
  padding-bottom: 62.5%;
  pointer-events: none;
}
@media screen and (min-width: 64em) {
  .t-carousel__dots-placeholder:after {
    padding: 0;
  }
}
.t-carousel .slick-dots {
  position: absolute;
  margin: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .t-carousel .slick-dots {
    left: 50%;
    top: -57px;
    transform: translateX(calc(-50% - 0.5rem));
  }
}
@media screen and (min-width: 64em) {
  .t-carousel .slick-dots {
    top: -65px;
  }
}
.t-carousel .slick-dots li {
  height: 0;
  margin: 0;
}
.t-carousel .slick-dots li button {
  background: transparent;
  height: 31px;
  width: 50px;
  margin: 0 16px 0 0;
  border: 0;
  border-radius: 0;
  position: relative;
}
.t-carousel .slick-dots li button:after {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  width: 100%;
  height: 2px;
  background: white;
}
.t-carousel .slick-dots li.slick-active button {
  background: transparent;
}
.t-carousel .slick-dots li.slick-active button:after {
  background: #2E40FF;
}
.t-carousel .slick-dots li:last-child button {
  margin-right: 0;
}

.t-image {
  position: relative;
  display: block;
}
.t-image__image {
  border: 1px solid rgba(245, 245, 245, 0.3);
}
.t-image__shadow {
  content: "";
  border-radius: 50%;
  background: rgb(0, 0, 0);
  background: radial-gradient(ellipse at center, #0B192A 0%, rgba(11, 25, 42, 0.2) 50%, rgba(11, 25, 42, 0) 90%);
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 120%;
  height: 40%;
  z-index: -1;
}
@media screen and (min-width: 64em) {
  .t-image__container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    perspective: 1100px;
    margin-right: 2rem;
    max-width: 730px;
  }
}
@media screen and (min-width: 87.5em) {
  .t-image__container {
    margin-right: 4rem;
  }
}

.game-banner {
  color: white;
  min-height: 500px;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 40em) {
  .game-banner {
    min-height: 700px;
  }
}
.game-banner--full {
  height: 100vh;
  height: calc(100vh - 76px);
}
@media screen and (min-width: 64em) {
  .game-banner--full {
    min-height: 600px;
    height: 100vh;
  }
}
.game-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.game-banner__tint {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.game-banner__top-title {
  text-transform: uppercase;
  color: white;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media print, screen and (min-width: 40em) {
  .game-banner__top-title {
    font-size: 1.125rem;
  }
}
.game-banner__title {
  text-transform: uppercase;
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 40em) {
  .game-banner__title {
    font-size: 3.625rem;
  }
}
.game-banner__content {
  position: relative;
  width: 100%;
}
.game-banner__plat-label {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25rem;
}
.game-banner__plat-icons {
  margin-bottom: 1.25rem;
}
.game-banner__plat-icon {
  display: inline-block;
  width: 16px;
  height: auto;
  margin: -1px 0.25rem 3px;
  vertical-align: bottom;
}
@media print, screen and (min-width: 40em) {
  .game-banner__plat-icon {
    width: 22px;
  }
}
.game-banner__button-row .button {
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 40em) {
  .game-banner__button-row .button {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
    margin-bottom: 0;
  }
}

.play-link svg {
  width: 20px;
  height: 20px;
  transition: transform 200ms, stroke 200ms;
  transform: scale(1);
  vertical-align: middle;
  margin-right: 0.25rem;
  margin-top: -1px;
}
.play-link:hover, .play-link:active {
  color: #2E40FF !important;
  stroke: #2E40FF;
}
.play-link:hover svg, .play-link:active svg {
  transform: scale(1.25);
}
.play-link:hover circle, .play-link:hover path, .play-link:active circle, .play-link:active path {
  stroke: #2E40FF;
}

.si-tabs {
  text-align: left;
}
.si-tabs__top {
  margin: 0 0 2rem;
  text-align: left;
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .si-tabs__top {
    display: flex;
    margin: 0 0 2rem;
    border-bottom: 1px solid rgba(245, 245, 245, 0.3);
  }
  .si-tabs__top:before, .si-tabs__top:after {
    content: "";
    height: 1px;
    position: absolute;
    bottom: -1px;
    background: rgba(245, 245, 245, 0.3);
  }
  .si-tabs__top:before {
    background: linear-gradient(to left, rgba(245, 245, 245, 0.3) 0%, rgba(245, 245, 245, 0) 100%);
    width: 100px;
    left: -100px;
  }
  .si-tabs__top:after {
    background: linear-gradient(to right, rgba(245, 245, 245, 0.3) 0%, rgba(245, 245, 245, 0) 100%);
    width: 100px;
    right: -100px;
  }
}
.si-tabs__tab {
  border-bottom: 1px solid rgba(245, 245, 245, 0.3);
  list-style-type: none;
  padding: 0;
  text-align: left;
  float: none;
}
@media print, screen and (min-width: 40em) {
  .si-tabs__tab {
    border: 0;
    margin-right: 1.5rem;
    margin-bottom: -1px;
    display: inline-block;
  }
}
@media screen and (min-width: 64em) {
  .si-tabs__tab {
    margin-right: 2.5rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .si-tabs__tab:first-child {
    border-top: 1px solid rgba(245, 245, 245, 0.3);
  }
}
.si-tabs__tab.is-active {
  color: white;
}
@media print, screen and (min-width: 40em) {
  .si-tabs__tab.is-active {
    border-bottom: 1px solid #2E40FF;
  }
}
.si-tabs__tab:hover, .si-tabs__tab:active {
  color: rgba(255, 255, 255, 0.5);
}
.si-tabs__tab-label {
  max-width: 7em;
  text-transform: uppercase;
  color: white !important;
  font-size: 2.25rem !important;
  padding: 1.25rem 0 !important;
  font-weight: 600 !important;
  line-height: 1.1;
  background: transparent;
  text-decoration: none;
  text-align: left;
  display: inline-block !important;
  opacity: 0.2;
  transition: opacity 200ms;
  cursor: pointer !important;
}
@media screen and (min-width: 64em) {
  .si-tabs__tab-label {
    font-size: 2.25rem !important;
    padding: 0 0 22px !important;
    min-height: 88px;
  }
}
.si-tabs__tab:not(.is-active):active .si-tabs__tab-label, .si-tabs__tab:not(.is-active):hover .si-tabs__tab-label {
  opacity: 0.4;
  color: white !important;
}
.si-tabs__tab-label[aria-selected=true] {
  opacity: 1;
}
.si-tabs__logo-tab {
  margin-right: 4rem;
}
@media screen and (min-width: 87.5em) {
  .si-tabs__logo-tab {
    margin-right: 8rem;
  }
}
.si-tabs__logo-tab .si-tabs__tab-label {
  padding-bottom: 30px !important;
}
.si-tabs__logo-tab img {
  height: 88px !important;
  width: auto !important;
  max-width: initial !important;
}
.si-tabs__content {
  outline: 0;
  display: none;
}
.si-tabs__content h2, .si-tabs__content h3 {
  font-size: 2.25rem;
  color: white;
  text-transform: none;
  margin: 0 0 1rem;
}
@media screen and (min-width: 64em) {
  .si-tabs__content h2, .si-tabs__content h3 {
    font-size: 3rem;
  }
}
.si-tabs__content.is-active {
  display: block;
}
.si-tabs__wrapper {
  overflow: hidden;
}
.si-tabs__wrapper + .si-tabs__wrapper {
  padding-top: 0;
}

.tabs-with-logos {
  margin: 60px 33px 46px 33px;
}
@media screen and (min-width: 900px) {
  .tabs-with-logos {
    max-width: 803px;
    margin: 120px auto 104px auto;
  }
}
@media screen and (min-width: 900px) {
  .tabs-with-logos__tabs {
    display: flex;
    gap: 20px;
  }
}
.tabs-with-logos__hidden {
  display: none;
}
.tabs-with-logos__tab {
  background: black;
  border-radius: 6px 0px 6px 0px;
  padding: 15px;
  cursor: pointer;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 900px) {
  .tabs-with-logos__tab {
    margin: 0px;
  }
}
.tabs-with-logos__tab img {
  width: 165px;
  max-height: 70px;
}
.tabs-with-logos__tab:hover {
  background: #2E40FF;
}
.tabs-with-logos__active-button {
  background: #2E40FF !important;
}
.tabs-with-logos__content-wrapper {
  margin-top: 40px;
}
.tabs-with-logos__content-large {
  display: none;
}
.tabs-with-logos__content-large p {
  font-size: 18px;
}
.tabs-with-logos__content-small {
  display: none;
}
@media screen and (min-width: 900px) {
  .tabs-with-logos__active-info-large {
    display: block !important;
  }
}
@media screen and (max-width: 900px) {
  .tabs-with-logos__active-info-small {
    display: block !important;
  }
}
@media screen and (max-width: 900px) {
  .tabs-with-logos__icon {
    width: 24px;
    pointer-events: none;
    will-change: transform;
  }
  .icon-tabs-expander .tabs-with-logos__icon {
    top: 42px;
  }
  .tabs-with-logos__icon:before, .tabs-with-logos__icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 100%;
    background: white;
    transition: transform 300ms;
  }
  .tabs-with-logos__icon:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .tabs-with-logos__icon--active .tabs-with-logos__icon:before {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .tabs-with-logos__icon--active .tabs-with-logos__icon:after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
}

.tab-expander {
  border-top: 1px solid #626F7E;
  border-bottom: 1px solid #626F7E;
  position: relative;
}
.tab-expander + .tab-expander {
  border-top: 0;
}
.tab-expander:last-child {
  margin-bottom: 1.25rem;
}
.tab-expander__button {
  min-height: 50px;
  padding: 10px 0;
  color: white;
  width: 100%;
  display: block;
  outline: none;
  text-align: left;
  text-transform: uppercase;
  font-size: 1.75rem;
  cursor: pointer;
  font-weight: 600 !important;
  font-family: "archiamedium", sans-serif;
}
.tab-expander__button img {
  height: 70px;
  width: auto;
  max-width: initial;
}
.tab-expander__icon-button {
  padding: 20px 0;
}
.tab-expander__icon {
  position: absolute;
  top: 12px;
  right: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  will-change: transform;
}
.icon-tabs-expander .tab-expander__icon {
  top: 42px;
}
.tab-expander__icon:before, .tab-expander__icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1px;
  width: 100%;
  background: #2E40FF;
  transition: transform 300ms;
}
.tab-expander__icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.tab-expander--active .tab-expander__icon:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.tab-expander--active .tab-expander__icon:after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.tab-expander__content {
  display: none;
  overflow: hidden;
  padding: 10px 20px 10px 0;
  text-align: left;
}
.tab-expander__content p {
  line-height: 1.75;
}
> .tab-expander__content p:last-child {
  margin-bottom: 0;
}
.tab-expander__content a,
.tab-expander__content a:visited {
  font-size: 1rem;
  display: block;
  color: white;
  padding: 5px 0;
}
.tab-expander__content a:first-of-type,
.tab-expander__content a:visited:first-of-type {
  padding-top: 0;
}
.tab-expander__content img + p {
  margin-top: 1rem;
}

.share-col {
  position: relative;
  text-align: left;
}
.share-col__title {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 0 auto 13px;
  color: #2E40FF !important;
}
.share-col__share-buttons {
  display: flex;
  gap: 12px;
}
.share-col__button {
  display: inline-block;
  position: relative;
  width: 38px;
  height: 38px;
}
.share-col__button img {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .two-full-images {
    display: flex;
  }
}
.two-full-images__image {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 40em) {
  .two-full-images__image {
    width: 50%;
  }
}

@media print, screen and (max-width: 39.99875em) {
  .benefit-items__button {
    margin-top: 30px !important;
  }
}

.benefit-item {
  text-align: left;
  margin-bottom: 3.75rem;
}
@media print, screen and (max-width: 39.99875em) {
  .benefit-item {
    margin-bottom: 3rem;
  }
  .benefit-item:last-child {
    margin-bottom: 0;
  }
}
.benefit-item__title {
  font-size: 1.75rem;
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: none;
}
@media print, screen and (min-width: 40em) {
  .benefit-item__title {
    margin-bottom: 15px;
  }
}
.benefit-item__image {
  display: block;
  margin-bottom: 1.75rem;
  height: 71px;
  width: auto;
}
@media print, screen and (min-width: 40em) {
  .benefit-item__image {
    width: 74px;
  }
}
.benefit-item__image.wide {
  width: 95px;
}
.timeline24 {
  overflow: auto;
  display: flex;
}
.timeline24::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 70em) {
  .timeline24 {
    flex-direction: column;
    height: 100%;
  }
}
.timeline24__data {
  display: none;
}
.timeline24__prev, .timeline24__next {
  width: 10px;
  height: 12px;
  content: url(../svg/arrow-top.svg);
  opacity: 1;
  cursor: pointer;
  z-index: 2;
}
@media screen and (min-width: 70em) {
  .timeline24__prev, .timeline24__next {
    margin: auto;
  }
}
.timeline24__prev {
  margin-right: 30px;
  transform: rotate(-90deg);
}
@media screen and (min-width: 70em) {
  .timeline24__prev {
    transform: rotate(0deg);
    margin: auto;
  }
}
.timeline24__next {
  transform: rotate(90deg);
  margin-left: 30px;
}
@media screen and (min-width: 70em) {
  .timeline24__next {
    transform: rotate(180deg);
    margin: auto;
  }
}
.timeline24__wrapper {
  position: fixed;
  z-index: 2;
  top: 87px;
  left: 12px;
  width: calc(100% - 24px);
  overflow: hidden;
  background: white;
  border-radius: 6px 0px;
  padding: 6px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 70em) {
  .timeline24__wrapper {
    display: block;
    left: 40px;
    top: 134px;
    width: 111px;
    height: calc(100vh - 82px - 104px);
    padding: 14px 14px 40px 14px;
    background: white;
  }
}
.timeline24__year {
  display: flex;
  width: 80px;
  color: #141414;
  text-align: center;
  font-size: 16px;
  position: relative;
  margin-right: 30px;
}
@media screen and (min-width: 70em) {
  .timeline24__year {
    width: auto;
    height: 100%;
    font-size: 18px;
    padding-top: 32px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 70em) {
  .timeline24__year-first {
    padding-top: 10px;
  }
}
.timeline24__year-last {
  margin-right: 0px;
}
@media screen and (min-width: 70em) {
  .timeline24__year-last {
    padding-bottom: 10px;
  }
}
.timeline24__entries {
  display: flex;
  justify-content: space-between;
  text-align: right;
  z-index: 1;
  width: 100%;
  gap: 12px;
  margin: auto;
}
@media screen and (min-width: 70em) {
  .timeline24__entries {
    flex-direction: column;
    top: 20px;
    bottom: 20px;
    right: 0;
    height: 100%;
  }
}
.timeline24__entry {
  width: 100%;
  cursor: pointer;
  min-width: 39px;
  text-align: center;
}
.timeline24__entry span {
  color: white;
}
@media screen and (min-width: 70em) {
  .timeline24__entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 17px;
  }
}
.timeline24__entry-none {
  width: 100%;
}
.timeline24__entry-none span {
  color: white;
  min-height: 24px;
}
@media screen and (min-width: 70em) {
  .timeline24__entry-none {
    height: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.timeline24__entry::after {
  display: flex;
  align-items: center;
  justify-content: center;
  content: url(../svg/arrow-down.svg);
  width: 100%;
}
@media screen and (min-width: 70em) {
  .timeline24__entry::after {
    content: url(../svg/arrow-2.svg);
    width: auto;
  }
}
.timeline24__entry:hover {
  color: #2E40FF;
}
.timeline24__entry:hover::after {
  content: url(../svg/arrow-down-hover.svg) !important;
}
@media screen and (min-width: 70em) {
  .timeline24__entry:hover::after {
    content: url(../svg/arrow-hover.svg) !important;
  }
}
.timeline24__entry--active::after {
  display: flex;
  align-items: center;
  justify-content: center;
  content: url(../svg/arrow-down-active.svg) !important;
  margin: 0px;
  background: none;
  width: 100%;
}
@media screen and (min-width: 70em) {
  .timeline24__entry--active::after {
    content: url(../svg/arrow-active.svg) !important;
    width: auto;
  }
}
.timeline24__entry--active {
  color: #2E40FF;
  border: none;
}
.timeline24__preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #22354A;
  opacity: 0;
  z-index: 1;
}
.timeline24__preloader-animation {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  animation: rotating 0.9s linear infinite;
}
.timeline24__preloader-animation .circle1, .timeline24__preloader-animation .circle2, .timeline24__preloader-animation .wedge {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  display: block;
  box-sizing: border-box;
  border-radius: 50%;
}
.timeline24__preloader-animation .circle1 {
  border: 1px solid #A7A7A7;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
}
.timeline24__preloader-animation .circle2 {
  background: #22354A;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
}
.timeline24__preloader-animation .wedge {
  height: 50px;
  border-radius: 0;
  overflow: hidden;
}
.timeline24__preloader-animation .wedge::after {
  content: "";
  display: block;
  border-radius: 100px 100px 0 0;
  height: 50px;
  width: 100px;
  background: white;
  transform-origin: 50% 100%;
  transform: rotate(-120deg);
}

.greyed-out {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.vacancy-banner {
  padding-top: 96px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}
@media screen and (min-width: 64em) {
  .vacancy-banner {
    padding-top: 116px;
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media screen and (min-width: 125em) {
  .vacancy-banner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.vacancy-banner__inner {
  background: #F3F3F3;
  border-radius: 16px 0;
  padding: 40px 0;
  overflow: hidden;
  min-height: 392px;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 64em) {
  .vacancy-banner__inner {
    border-radius: 40px 0;
    min-height: 600px;
  }
}
.vacancy-banner__row {
  width: 100%;
  position: relative;
  z-index: 1;
}
.vacancy-banner__title {
  font-size: 1.375rem;
  color: white;
  line-height: 1.3;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 64em) {
  .vacancy-banner__title {
    font-size: 3rem;
    line-height: 1.4;
  }
}
.vacancy-banner__subtitle {
  font-weight: 500;
  color: white;
  font-size: 1.125rem;
  margin: 20px auto 0;
}
@media screen and (min-width: 64em) {
  .vacancy-banner__subtitle {
    font-size: 1.125rem;
  }
}
.vacancy-banner__tint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #141414;
}
.vacancy-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vacancy-banner__back-link {
  text-transform: uppercase;
  color: #2E40FF;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0 20px;
  display: block;
  text-align: left;
  text-decoration: none;
}
.vacancy-banner__back-link:visited {
  color: #2E40FF;
}

.vacancy__wrapper {
  padding-top: 20px;
  padding-bottom: 60px;
}
@media screen and (min-width: 64em) {
  .vacancy__wrapper {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.vacancy__abstract {
  text-align: left;
}
.vacancy__copy {
  text-align: left;
  line-height: 1.4;
}
.vacancy__copy iframe {
  min-height: 315px;
}
@media print, screen and (min-width: 40em) {
  .vacancy__copy iframe {
    min-height: 400px;
  }
}
@media screen and (min-width: 64em) {
  .vacancy__copy iframe {
    min-height: 500px;
  }
}
.vacancy__copy img {
  width: 100%;
}
.vacancy__copy a.html5lightbox {
  display: inline-block;
  position: relative;
}
.vacancy__copy a.html5lightbox img {
  margin: 0;
}
.vacancy__copy h2, .vacancy__copy h3 {
  font-size: 1.375rem;
  color: #FF3600;
}
@media screen and (min-width: 64em) {
  .vacancy__copy h2, .vacancy__copy h3 {
    font-size: 1.625rem;
  }
}
.vacancy__copy *:last-child {
  margin-bottom: 0;
}
.vacancy__share {
  margin: 0 0 30px;
}
.vacancy__back-link-col {
  padding-right: 0;
}
.vacancy__share-col {
  padding-left: 0;
}
.vacancy__back-link {
  border-radius: 8px 0;
  border: 1px solid #2E40FF;
  padding: 16px 14px;
  text-decoration: none;
  line-height: 1.4;
  text-transform: uppercase;
  color: #2E40FF;
  display: block;
}
.vacancy__back-link:visited {
  color: #2E40FF;
}
.vacancy__button {
  margin: 30px 0 0 !important;
}
@media print, screen and (min-width: 40em) {
  .vacancy__button {
    margin-top: 28px !important;
  }
}

.three-images {
  margin-top: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .three-images {
    display: flex;
    margin-top: 2rem;
  }
}
@media print, screen and (min-width: 40em) {
  .three-images {
    margin-top: 50px;
  }
}
.three-images__tall-image {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 133.5%;
}
@media print, screen and (max-width: 39.99875em) {
  .three-images__tall-image {
    margin-bottom: 1.25rem;
  }
}
@media print, screen and (min-width: 40em) {
  .three-images__tall-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.three-images__images {
  flex-direction: column;
  display: flex;
  align-items: stretch;
}
.three-images__image {
  margin-bottom: 1.25rem;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
@media print, screen and (min-width: 40em) {
  .three-images__image {
    margin-bottom: 1.75rem;
  }
}
.three-images__image:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .three-images__image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.sliders {
  color: white;
}
@media screen and (min-width: 64em) {
  .sliders {
    display: flex;
    height: 1080px;
    max-height: calc(100vh - 96px);
  }
}

.slider {
  background: #141414;
  transition: max-height 550ms;
  position: relative;
  overflow: hidden;
}
@media print, screen and (max-width: 63.99875em) {
  .slider {
    height: auto;
    max-height: 140px;
  }
}
@media screen and (min-width: 64em) {
  .slider {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: calc(9% - 80px);
    align-items: center;
    justify-items: center;
    transition: width 550ms, flex-grow 550ms, min-width 550ms, padding 550ms, align-items 550ms;
    justify-content: center;
    will-change: min-width, flex-grow, padding;
    padding: 1rem;
  }
}
.slider--expanded {
  max-height: 150vh;
  align-items: flex-start;
}
@media screen and (min-width: 64em) {
  .slider--expanded {
    flex-grow: 10;
    min-width: 42vw;
    padding: 40px 5%;
    align-items: flex-start;
  }
}
.slider:nth-child(2), .slider:nth-child(5) {
  background: #1e1e1e;
}
.slider:nth-child(3), .slider:nth-child(6) {
  background: #232323;
}
.slider:nth-child(4), .slider:nth-child(7) {
  background: #191919;
}
.slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: no-repeat top;
  background-size: cover;
  opacity: 0.2;
  will-change: left, right, top, bottom, opacity;
}
@media screen and (min-width: 64em) {
  .slider__bg {
    background: no-repeat center;
    background-size: cover;
  }
}
.slider__logo-wrapper {
  margin: 0;
  text-align: center;
  transition: transform 550ms, left 550ms, top 550ms;
}
@media print, screen and (max-width: 63.99875em) {
  .slider__logo-wrapper {
    position: absolute;
    height: 140px;
    width: 96px;
    top: 70px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .slider--expanded .slider__logo-wrapper {
    left: 1rem;
    top: 1rem;
    transform: translate(0, 0);
  }
}
@media screen and (min-width: 64em) {
  .slider__logo-wrapper {
    text-align: left;
  }
  .slider--expanded .slider__logo-wrapper {
    padding-left: 20px;
  }
}
.slider__logo {
  height: auto;
  display: block;
}
@media print, screen and (max-width: 63.99875em) {
  .slider__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: calc(90% - 2.5rem);
  }
}
@media screen and (min-width: 64em) {
  .slider__logo {
    width: 100px;
  }
}
.slider__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  will-change: width, max-width;
}
@media screen and (min-width: 64em) {
  .slider__title {
    width: calc(42vw - 80px);
    max-width: 608px;
  }
}
@media screen and (min-width: 87.5em) {
  .slider__title {
    font-size: 3rem;
  }
}
.slider__content {
  width: 100%;
  max-height: 0;
  transition: opacity 550ms, max-height 500ms;
  opacity: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .slider__content {
    padding: 9.75rem 1rem 55px;
  }
}
@media screen and (min-width: 64em) {
  .slider__content {
    width: calc(45vw - 80px);
    max-width: 608px;
    padding: 20px;
    will-change: width, max-width, max-height;
    transition-delay: 0s;
    overflow: hidden;
    margin-top: 1.5rem;
  }
}
.slider--expanded .slider__content {
  color: white;
  opacity: 1;
  transition-delay: 650ms, 0s;
  max-height: 200vh;
}
@media screen and (min-width: 64em) {
  .slider--expanded .slider__content {
    max-height: 150vh;
    transition-delay: 650ms;
  }
}
.slider .button {
  margin-top: 0.5rem;
}

.tweet {
  color: #141414;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 64em) {
  .tweet {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: left;
    padding-left: 80px;
  }
}
@media screen and (min-width: 64em) {
  .tweet__content {
    display: flex;
    justify-content: center;
  }
}
@media print, screen and (min-width: 40em) {
  .tweet__wrapper {
    padding: 85px 0 85px;
  }
}
.tweet__logo {
  background: url(../svg/twitter-logo-light-blue.svg) no-repeat center;
  background-size: contain;
  width: 53px;
  height: 43px;
  margin: 0 auto 1rem;
}
@media screen and (min-width: 64em) {
  .tweet__logo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }
}
.tweet p {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.game-hero {
  height: 100vh;
  color: white;
  min-height: 650px;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  height: calc(100vh - 76px);
  background: #141414;
}
@media print, screen and (max-width: 39.99875em) {
  .game-hero {
    padding-top: 160px;
  }
}
@media screen and (min-width: 64em) {
  .game-hero {
    min-height: 600px;
    height: 100vh;
  }
}
.game-hero__released, .game-hero__plat-label {
  font-weight: 500;
  color: white;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 64em) {
  .game-hero__released, .game-hero__plat-label {
    font-size: 1.3125rem;
  }
}
.game-hero__released {
  margin-bottom: 10px;
}
@media screen and (min-width: 64em) {
  .game-hero__released {
    margin-bottom: 16px;
  }
}
.game-hero__plat-icons {
  display: flex;
  gap: 12px;
}
@media print, screen and (max-width: 39.99875em) {
  .game-hero__plat-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: -moz-fit-content;
    width: fit-content;
  }
}
.game-hero__plat-icon {
  display: inline-block;
  width: 40px;
  height: auto;
}
.game-hero__logo {
  margin-bottom: 20px;
  width: 100%;
  max-width: 502px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 64em) {
  .game-hero__logo {
    margin-bottom: 40px;
  }
}
.game-hero__content {
  position: relative;
  width: 100%;
}
@media print, screen and (max-width: 39.99875em) {
  .game-hero__content {
    display: flex;
    flex-direction: column;
  }
}
.game-hero__content > .row {
  width: 100%;
}
.game-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}
.game-hero__button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
@media screen and (min-width: 64em) {
  .game-hero__button-row {
    margin-top: 28px;
  }
}
@media screen and (min-width: 64em) {
  .body--timeline .game-hero, .body--timeline24 .game-hero {
    padding-left: 145px;
  }
}

.metacritic {
  position: relative;
  width: 88px;
  height: 54px;
  background: url(../svg/metacritic-bg.svg) no-repeat;
  background-size: contain;
  display: inline-block;
}
.metacritic__score {
  font-size: 1.25rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  position: absolute;
  top: 17px;
  left: 52px;
  color: white;
  margin: 0;
}

.banner {
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
  background: #212527 url(../svg/blue-gradient.svg) no-repeat center;
  background-size: cover;
}
@media print, screen and (min-width: 40em) {
  .banner {
    padding: 90px 0 90px;
  }
}
.banner__content-wrapper {
  position: relative;
  z-index: 1;
}
.banner__title {
  color: white;
  text-align: left;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 0.92;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 40em) {
  .banner__title {
    font-size: 3.625rem;
    margin-bottom: 0.25rem;
  }
}
.banner__title:last-child {
  margin-bottom: 0;
}
.banner__abstract {
  text-align: left;
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}
@media print, screen and (min-width: 40em) {
  .banner__abstract {
    font-size: 1.75rem;
  }
}
.banner__bg {
  pointer-events: none;
}
.banner__subtitle {
  color: white;
  text-align: left;
  font-size: 1rem;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .banner__subtitle {
    font-size: 1rem;
  }
}

.screenshots-carousel {
  position: relative;
}
.screenshots-carousel__wrapper {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
}
@media screen and (min-width: 64em) {
  .screenshots-carousel__wrapper {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
  }
}
.screenshots-carousel__inner {
  background: #141414;
  border-radius: 16px 0;
  padding: 40px 0;
  color: white;
}
@media screen and (min-width: 64em) {
  .screenshots-carousel__inner {
    border-radius: 40px 0;
    padding: 80px 0;
  }
}
.screenshots-carousel__title {
  text-align: left;
  font-size: 1.75rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  font-weight: 500;
  text-transform: none;
  color: white;
}
@media screen and (min-width: 64em) {
  .screenshots-carousel__title {
    font-size: 3rem;
  }
}
.screenshots-carousel__abstract {
  text-align: left;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  color: white;
}
.screenshots-carousel__abstract h2, .screenshots-carousel__abstract h3, .screenshots-carousel__abstract h4, .screenshots-carousel__abstract h5 {
  color: white;
  margin: 0 0 10px;
}
.screenshots-carousel__carousel-wrapper {
  position: relative;
  margin-top: 20px;
}
@media screen and (min-width: 64em) {
  .screenshots-carousel__carousel-wrapper {
    margin-top: 50px;
  }
}
.screenshots-carousel__slide {
  padding: 0 16px;
}
@media screen and (min-width: 64em) {
  .screenshots-carousel__slide {
    padding: 0 40px;
  }
}
.screenshots-carousel__slide-inner {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 16px;
  outline: 0;
  border-radius: 16px 0;
  overflow: hidden;
}
@media screen and (min-width: 87.5em) {
  .screenshots-carousel__slide-inner {
    border-radius: 28px 0;
  }
}
.screenshots-carousel__slide-inner img {
  margin: 0 auto;
  transition: transform 300ms;
  width: 100%;
}
.screenshots-carousel__slide-inner.slick-center img {
  transform: scale(1);
}
.screenshots-carousel__prev, .screenshots-carousel__next {
  position: absolute;
  top: 50%;
  z-index: 1;
}
.screenshots-carousel__next {
  right: 9%;
}
.screenshots-carousel__prev {
  left: 9%;
}
.screenshots-carousel__next-btn, .screenshots-carousel__prev-btn {
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.15em;
  line-height: 1;
  font-size: 1.125rem;
  z-index: 10;
  padding: 5px;
  transform-origin: center center;
  opacity: 0.8;
  transition: opacity 200ms;
  cursor: pointer;
  will-change: transform;
  min-width: 120px;
  pointer-events: all;
  text-shadow: rgba(0, 0, 0, 0.35) 0 0 6px;
}
.screenshots-carousel__next-btn:hover, .screenshots-carousel__next-btn:active, .screenshots-carousel__prev-btn:hover, .screenshots-carousel__prev-btn:active {
  opacity: 1;
}
.screenshots-carousel__next-btn {
  transform: rotate(90deg);
}
.screenshots-carousel__prev-btn {
  transform: rotate(-90deg);
}
@media print, screen and (min-width: 40em) {
  .screenshots-carousel .slick-arrow {
    display: none !important;
  }
}
.screenshots-carousel .slick-prev {
  left: 1rem;
}
.screenshots-carousel .slick-next {
  right: 1rem;
}

.history-hero {
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  height: 100vh;
}
.history-hero__title {
  color: white;
  font-size: 2.25rem;
}
@media print, screen and (min-width: 40em) {
  .history-hero__title {
    font-size: 6.25rem;
  }
}
.history-hero__top-title {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
  margin-left: 0;
  padding-left: 25px;
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .history-hero__top-title {
    font-size: 1.125rem !important;
  }
}
.history-hero__top-title:before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: -5px;
  border-top: 1px solid white;
  width: 20px;
}
@media screen and (min-width: 64em) {
  .history-hero__top-title:before {
    top: 14px;
  }
}
.history-hero__abstract {
  margin-top: -1rem;
  font-weight: 400;
  font-size: 1rem;
}
@media print, screen and (min-width: 40em) {
  .history-hero__abstract {
    margin-top: -1.75rem;
    margin-bottom: 1.75rem;
    max-width: 800px;
    font-size: 1.3125rem;
  }
}
.history-hero__abstract:empty {
  display: none;
}
.history-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}

.contact-links {
  text-align: center;
}
.contact-links__col {
  margin: 0 auto 2rem;
}
@media print, screen and (min-width: 40em) {
  .contact-links__col {
    margin: 0 auto 3rem;
  }
}
.contact-links__title {
  text-transform: uppercase;
  font-size: 1.625rem;
  margin: 0 auto 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .contact-links__title {
    margin-bottom: 2rem;
    font-size: 1.75rem;
  }
}
.contact-links__link {
  color: #007EC1;
}
.contact-links__link:hover, .contact-links__link:active {
  color: #2E40FF;
}
.contact-links__button-link {
  display: block;
  margin: 0 auto 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .contact-links__button-link {
    margin-bottom: 2rem;
  }
}
.contact-links__button-link img {
  width: 100%;
  height: auto;
  max-width: 100px;
  margin: 0 auto;
}
.contact-links__copy p:last-child {
  margin-bottom: 0;
}

.studio-values img {
  height: 80px;
  width: auto;
}
@media print, screen and (min-width: 40em) {
  .studio-values img {
    height: 95px;
  }
}
.studio-values .grid {
  display: grid;
  gap: 0.9375rem;
}
.studio-values .item {
  background-color: white;
  padding: 0.9375rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: background-color 200ms;
}
@media screen and (min-width: 64em) {
  .studio-values .item {
    padding: 14px 20px 15px;
  }
}
.studio-values .item .top {
  display: flex;
  position: relative;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.studio-values .item .top-icon {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: no-repeat center;
  background-size: contain;
  transition: opacity 200ms;
}
.studio-values .item .top-icon--plus {
  background-image: url(../svg/plus.svg);
}
.studio-values .item .top-icon--minus {
  background-image: url(../svg/minus.svg);
  opacity: 0;
}
.studio-values .item .top-title {
  text-transform: none;
  font-size: 1.25rem;
  line-height: 1.36;
  margin: 0;
  padding-right: 30px;
  color: #141414;
  transition: color 200ms;
}
@media print, screen and (min-width: 40em) {
  .studio-values .item .top-title {
    font-size: 1.5rem;
  }
}
.studio-values .item-copy {
  margin-top: 0.5rem;
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 200ms, visibility 200ms;
  color: white;
  display: none;
}
.studio-values .item-copy p, .studio-values .item-copy li {
  line-height: 1.75;
}
.studio-values .item.active {
  background-color: #0B192A;
}
.studio-values .item.active .top-title {
  color: white;
}
.studio-values .item.active .item-copy {
  opacity: 1;
}
.studio-values .item.active .top-icon--plus {
  opacity: 0;
}
.studio-values .item.active .top-icon--minus {
  opacity: 1;
}
.studio-values .bottom-text {
  margin-top: 1.25rem;
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .studio-values .bottom-text {
    margin-top: 1.875rem;
  }
}
.studio-values .bottom-text p {
  font-size: 1rem;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .studio-values .bottom-text p {
    font-size: 1.3125rem;
  }
}
.studio-values .bottom-text a,
.studio-values .bottom-text a:visited {
  text-transform: uppercase;
  color: #2E40FF;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 200ms, border-color 200ms;
  font-size: 1.3125rem;
}
@media print, screen and (max-width: 39.99875em) {
  .studio-values .bottom-text a,
  .studio-values .bottom-text a:visited {
    display: inline-block;
    margin-top: 0.25rem;
  }
}
.studio-values .bottom-text a:hover,
.studio-values .bottom-text a:focus,
.studio-values .bottom-text a:active {
  color: #0011c7;
  border-bottom: 1px solid #0011c7;
}

@media print, screen and (max-width: 63.99875em) {
  .carousel-wrapper.has-dc + .studio-values {
    padding-top: 80px;
  }
}

@media print, screen and (max-width: 63.99875em) {
  .carousel-wrapper.has-dc + .wrapper {
    padding-top: 80px;
  }
}

.copy-3-cols {
  text-align: left;
}
.copy-3-cols__title {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  text-transform: none;
  line-height: 1.16;
  margin: 0 0 30px;
}
@media screen and (min-width: 64em) {
  .copy-3-cols__title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 64em) {
  .copy-3-cols__copy {
    -moz-columns: 3;
         columns: 3;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    text-align: left;
  }
}

@media screen and (min-width: 64em) {
  .our-values__copy-2-cols p, .our-values__copy-2-cols li {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 64em) {
  .our-values__copy-2-cols {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.our-values__copy-2-cols ul:last-child {
  margin-bottom: 0;
}
.our-values__button {
  margin-top: 30px !important;
}
.par-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .par-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 64em) {
  .par-grid {
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
  }
}

.par-item {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 480/419;
  background: #007EC1;
}
.par-item__arrow {
  content: "";
  width: 32px;
  height: auto;
  position: absolute;
  bottom: -16px;
  z-index: 1;
  opacity: 0;
}
@media screen and (min-width: 64em) {
  .par-item__arrow {
    width: 47px;
    bottom: -22px;
  }
}
.par-item.active .par-item__arrow {
  opacity: 1;
}
.par-item__border {
  display: block;
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  transition: border-color 200ms;
  z-index: 2;
}
@media print, screen and (min-width: 40em) {
  .par-item__border {
    inset: 25px;
  }
}
.par-item.active .par-item__border {
  border-color: #2E40FF;
}
.par-item__overlay {
  position: absolute;
  inset: 0;
  background: #0B192A;
  opacity: 0.8;
  transition: opacity 200ms;
}
.par-item:active .par-item__overlay, .par-item:hover .par-item__overlay {
  opacity: 0.5;
}
.par-item.active .par-item__overlay {
  opacity: 1;
}
.par-item__image {
  width: 100%;
  transition: opacity 200ms;
}
.par-item__content-wrapper {
  background: #007EC1;
  color: white;
  grid-column-start: 1;
  grid-column-end: 3;
  display: none;
  padding: 2.5rem 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .par-item__content-wrapper {
    grid-column-end: 4;
  }
}
@media screen and (min-width: 64em) {
  .par-item__content-wrapper {
    grid-column-end: 5;
    padding: 6.25rem 0;
  }
}
.par-item__content {
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 200ms;
}
.par-item__content-wrapper.active .par-item__content {
  opacity: 1;
}
.par-item__content-overlay {
  background: rgba(11, 25, 42, 0.8);
  opacity: 0.3;
  transition: opacity 200ms;
}
.par-item__content-wrapper.active .par-item__content-overlay {
  opacity: 1;
}
.par-item__content-title {
  font-size: 2.25rem;
  margin: 0 0 10px;
  line-height: 1.16;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}
@media screen and (min-width: 64em) {
  .par-item__content-title {
    margin-bottom: 1.25rem;
  }
}
.par-item__content-copy {
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 64em) {
  .par-item__content-copy {
    margin-bottom: 0;
    font-size: 1.125rem;
  }
}
.par-item__content-copy p {
  line-height: 1.75;
}
.par-item__content-copy p:last-child {
  margin-bottom: 0;
}
.par-item__button.button {
  margin-top: 10px;
}
@media screen and (min-width: 64em) {
  .par-item__button.button {
    margin-top: 20px;
  }
}
.par-item__logo-wrapper {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 64em) {
  .par-item__logo-wrapper {
    width: clamp(25%, 25%, 175px);
    height: clamp(25%, 25%, 175px);
  }
}
.par-item__logo {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 1;
  transition: transform 200ms;
}
.par-item__logo.small {
  max-width: 50%;
  max-height: 50%;
}
.par-item__logo.medium {
  max-width: 75%;
  max-height: 75%;
}
.par-item.active .par-item__logo {
  transform: scale(1.15);
}

.awards {
  text-align: center;
}
.awards__wrapper {
  padding: 60px 0;
}
@media screen and (min-width: 64em) {
  .awards__wrapper {
    padding: 90px 0;
  }
}
.awards__title {
  margin-bottom: 20px;
}
@media screen and (min-width: 64em) {
  .awards__title {
    margin-bottom: 1rem;
  }
}
.awards__copy {
  font-weight: 400;
}
@media print, screen and (max-width: 39.99875em) {
  .awards__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
    margin-top: 15px;
  }
}
@media print, screen and (min-width: 40em) {
  .awards__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    align-items: center;
    justify-items: center;
    margin: 15px auto 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 64em) {
  .awards__logos {
    margin-top: 30px;
    gap: 50px;
  }
}
.awards__logo {
  height: auto;
}
.awards__logo.bptw2021 {
  max-width: 111px;
}
@media print, screen and (min-width: 40em) {
  .awards__logo.bptw2021 {
    max-width: 113px;
  }
}
.awards__logo.bptw2022env {
  max-width: 109px;
}
@media print, screen and (min-width: 40em) {
  .awards__logo.bptw2022env {
    max-width: 109px;
  }
}
.awards__logo.disability-confident {
  max-width: 142px;
}
@media print, screen and (min-width: 40em) {
  .awards__logo.disability-confident {
    max-width: 151px;
  }
}
.awards__logo.living-wage {
  max-width: 126px;
}
@media print, screen and (min-width: 40em) {
  .awards__logo.living-wage {
    max-width: 135px;
  }
}
.awards__logo.women-in-games {
  max-width: 142px;
}
@media print, screen and (min-width: 40em) {
  .awards__logo.women-in-games {
    max-width: 199px;
  }
}

.award-footer__title {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 15px;
}
@media screen and (min-width: 64em) {
  .award-footer__title {
    font-size: 3.625rem;
    margin-bottom: 20px;
  }
}
.award-footer__wrapper {
  background: #273B52;
  padding: 50px 0 60px;
}
@media screen and (min-width: 64em) {
  .award-footer__wrapper {
    padding: 60px 0 80px;
  }
}
.award-footer__copy {
  color: white;
}
.award-footer__copy p:last-child {
  margin-bottom: 0;
}
.award-footer__logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
  justify-items: center;
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media print, screen and (min-width: 40em) {
  .award-footer__logos {
    padding-left: 20px;
  }
}
@media screen and (min-width: 64em) {
  .award-footer__logos {
    grid-template-columns: repeat(3, 1fr);
    width: 570px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 87.5em) {
  .award-footer__logos {
    gap: 50px;
  }
}
.award-footer__logo.bptw2021 {
  max-width: 111px;
}
@media print, screen and (min-width: 40em) {
  .award-footer__logo.bptw2021 {
    max-width: 113px;
  }
}
.award-footer__logo.bptw2022env {
  max-width: 109px;
}
@media print, screen and (min-width: 40em) {
  .award-footer__logo.bptw2022env {
    max-width: 109px;
  }
}
.award-footer__logo.disability-confident {
  max-width: 142px;
}
@media print, screen and (min-width: 40em) {
  .award-footer__logo.disability-confident {
    max-width: 151px;
  }
}
.award-footer__logo.living-wage {
  max-width: 126px;
}
@media print, screen and (min-width: 40em) {
  .award-footer__logo.living-wage {
    max-width: 106px;
  }
}
.award-footer__logo.women-in-games {
  max-width: 142px;
}
@media print, screen and (min-width: 40em) {
  .award-footer__logo.women-in-games {
    max-width: 184px;
  }
}
.lang-selector {
  margin-top: 106px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: flex-start;
  max-width: 805px;
}
@media screen and (min-width: 1023px) {
  .lang-selector {
    margin-top: 126px;
    margin-bottom: 30px;
  }
}
.lang-selector__container {
  position: relative;
  z-index: 1;
}
.lang-selector select {
  border: 1px solid #DEDEDE;
  font-weight: 400;
  font-size: 1rem;
  height: 50px;
  margin: 0;
  background-image: url(../png/arrow-down-blue.png);
}

.sv-2024 {
  text-align: left;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 780px) {
  .sv-2024 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.sv-2024__title {
  color: #2E40FF;
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media screen and (min-width: 64em) {
  .sv-2024__title {
    font-size: 4rem;
    margin-bottom: 0;
  }
}
.sv-2024__copy *:last-child {
  margin-bottom: 0;
}
.sv-2024__inner {
  background: #F3F3F3;
  padding: 60px 0;
}
@media screen and (min-width: 1023px) {
  .sv-2024__inner {
    border-radius: 40px 0;
    padding: 120px 0;
  }
}
.sv-2024__boxes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media screen and (min-width: 780px) {
  .sv-2024__boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .sv-2024__boxes {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
  }
}

.sv-box {
  background: white;
  border-radius: 16px 0;
  overflow: hidden;
  position: relative;
  transition: height 200ms, background 200ms;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 14px;
  padding: 20px;
  height: 92px;
}
@media screen and (min-width: 780px) {
  .sv-box {
    border-radius: 28px 0;
    height: 260px;
    padding: 20px 40px;
  }
}
.sv-box--active {
  min-height: 220px;
}
@media screen and (min-width: 780px) {
  .sv-box--active {
    min-height: 260px;
  }
}
.sv-box__button {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 2;
}
.sv-box__title {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  font-weight: 500;
  pointer-events: none;
}
@media screen and (min-width: 1023px) {
  .sv-box__title {
    font-size: 28px;
  }
}
.sv-box__num {
  width: 30px;
}
@media screen and (min-width: 780px) {
  .sv-box__num {
    width: 40px;
  }
}
.sv-box__copy {
  color: white;
  font-size: 1rem;
  margin-bottom: 0px;
  font-weight: 500;
  line-height: 1.4;
}
.sv-box__copy p {
  margin: 0;
}
.sv-box__expander {
  padding: 20px;
  transition: opacity 200ms, height 200ms;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #FF3600;
  display: flex;
  align-items: center;
  opacity: 0;
}
@media screen and (min-width: 780px) {
  .sv-box__expander {
    padding: 57px 40px;
  }
}
.sv-box--active .sv-box__expander {
  opacity: 1;
}
.sv-box__expander-title {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.cta-2024 {
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 64em) {
  .cta-2024 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cta-2024--dark .cta-2024__inner {
  background: #141414;
}
.cta-2024--dark .cta-2024__top-title {
  color: #2E40FF;
}
.cta-2024--dark .cta-2024__title {
  color: white;
}
.cta-2024--dark .cta-2024__button {
  background: #2E40FF !important;
}
.cta-2024--dark .cta-2024__button:hover, .cta-2024--dark .cta-2024__button:active {
  background: #2E40FF;
}
.cta-2024__inner {
  background: #F3F3F3;
  border-radius: 16px 0;
  padding: 40px 0 0;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 64em) {
  .cta-2024__inner {
    border-radius: 40px 0;
    padding: 120px 0;
  }
}
@media screen and (min-width: 64em) {
  .cta-2024__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }
}
.cta-2024__content {
  text-align: center;
}
@media print, screen and (max-width: 63.99875em) {
  .cta-2024__content {
    margin-bottom: 20px;
  }
}
.cta-2024__top-title {
  line-height: 1.4;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #FF3600;
  text-transform: uppercase;
}
@media screen and (min-width: 64em) {
  .cta-2024__top-title {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
}
.cta-2024__title {
  color: #141414;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto;
}
@media screen and (min-width: 64em) {
  .cta-2024__title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 87.5em) {
  .cta-2024__title {
    font-size: 4rem;
  }
}
.cta-2024__buttons {
  margin-top: 20px;
}
@media screen and (min-width: 64em) {
  .cta-2024__buttons {
    margin-top: 32px;
  }
}
.cta-2024__button {
  background: #FF3600 !important;
  color: white;
}
.cta-2024__button:hover, .cta-2024__button:active {
  background: #FF3600;
}
@media print, screen and (max-width: 63.99875em) {
  .cta-2024__image-wrapper {
    margin-top: 20px;
  }
}
@media screen and (min-width: 64em) {
  .cta-2024__image-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    max-width: 727px;
    left: 50%;
  }
}
@media screen and (min-width: 64em) {
  .cta-2024__image {
    height: 100%;
    width: auto;
  }
}
.cta-2024__logo {
  margin: 0 auto 20px;
  width: 100%;
  max-width: 140px;
}
@media screen and (min-width: 64em) {
  .cta-2024__logo {
    margin-bottom: 30px;
    max-width: 197px;
  }
}

.hp-hero {
  width: 100%;
  background: #141414;
  height: calc(100vh - 60px);
  height: 100dvh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 0px 0px 16px 0px;
}
@media screen and (min-width: 64em) {
  .hp-hero {
    min-height: 600px;
    height: 100vh;
    border-radius: 0px 0px 40px 0px;
  }
}
.hp-hero__arrow {
  width: 40px;
  height: auto;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 20px);
}
@media screen and (min-width: 64em) {
  .hp-hero__arrow {
    bottom: 40px;
  }
}
.hp-hero__carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hp-hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.hp-hero-slide__content-wrapper {
  width: 100%;
  max-width: 600px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hp-hero-slide__number {
  position: absolute;
  z-index: 1;
  width: calc(100% - 60px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 64em) {
  .hp-hero-slide__number {
    width: 100%;
    max-width: 542px;
  }
}
.hp-hero-slide__title {
  color: white;
  font-size: 2.25rem;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 64em) {
  .hp-hero-slide__title {
    font-size: 5.25rem;
  }
}
.hp-hero-slide__copy {
  margin-top: 16px;
  color: white;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  z-index: 2;
  font-size: 1.125rem;
}
@media screen and (min-width: 64em) {
  .hp-hero-slide__copy {
    margin-top: 40px;
    font-size: 1.375rem;
  }
}
.hp-hero-slide__copy p:last-child {
  margin-bottom: 0;
}
.hp-copy {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px !important;
}
@media screen and (min-width: 64em) {
  .hp-copy {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px !important;
  }
}
.hp-copy__inner {
  background: #F3F3F3;
  border-radius: 16px 0;
  padding: 40px 0;
}
@media screen and (min-width: 64em) {
  .hp-copy__inner {
    border-radius: 40px 0;
    padding: 120px 0;
  }
}
@media screen and (min-width: 64em) {
  .hp-copy__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.hp-copy__content {
  text-align: left;
}
.hp-copy__top-title {
  line-height: 1.4;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #FF3600;
  text-transform: uppercase;
}
@media screen and (min-width: 64em) {
  .hp-copy__top-title {
    font-size: 1.125rem;
  }
}
.hp-copy__title {
  color: #FF3600;
  font-size: 2.25rem;
  font-weight: 500;
}
@media screen and (min-width: 64em) {
  .hp-copy__title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 64em) {
  .hp-copy__copy {
    font-size: 1.125rem;
  }
}
.hp-copy__copy p {
  line-height: 1.4;
}
.hp-copy__image-wrapper {
  text-align: center;
}
@media print, screen and (max-width: 63.99875em) {
  .hp-copy__image-wrapper {
    text-align: left;
    margin-bottom: 20px;
  }
}
.hp-copy__image {
  margin: 0 auto;
}
@media print, screen and (max-width: 63.99875em) {
  .hp-copy__image {
    max-width: 171px;
  }
}
.hp-copy__button {
  margin-top: 20px;
}
@media screen and (min-width: 64em) {
  .hp-copy__button {
    margin-top: 28px;
  }
}

.game-boxes {
  overflow: hidden;
}
.game-boxes__title {
  color: #2E40FF;
  font-size: 2.25rem;
  font-weight: 500;
}
@media screen and (min-width: 64em) {
  .game-boxes__title {
    font-size: 4rem;
  }
}
.game-boxes__boxes {
  position: relative;
  display: grid;
  gap: 20px;
  text-align: center;
}
@media screen and (min-width: 64em) {
  .game-boxes__boxes {
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 50px;
  }
}
@media screen and (min-width: 125em) {
  .game-boxes__boxes {
    margin: 0 auto;
  }
}
.game-boxes__tl {
  position: absolute;
  top: -64px;
  left: -64px;
  width: 208px;
}
.game-boxes__br {
  position: absolute;
  bottom: -64px;
  right: -64px;
  width: 208px;
}
.game-boxes__buttons {
  margin-top: 20px;
}
@media screen and (min-width: 64em) {
  .game-boxes__buttons {
    margin-top: 40px;
  }
}
.game-boxes__link {
  border-radius: 23px 0;
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 350/250;
}
@media screen and (min-width: 64em) {
  .game-boxes__link {
    border-radius: 23px 0;
    aspect-ratio: 596/388;
  }
}
.game-boxes__link:hover .game-boxes__tint, .game-boxes__link:active .game-boxes__tint {
  opacity: 0.4;
}
.game-boxes__link:hover .game-boxes__logo, .game-boxes__link:active .game-boxes__logo {
  transform: translate(-50%, calc(-50% - 20px));
}
.game-boxes__logo {
  width: 240px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 300ms;
}
@media screen and (min-width: 64em) {
  .game-boxes__logo {
    width: 280px;
  }
}
.game-boxes__tint {
  background: #141414;
  opacity: 0.2;
  transition: opacity 300ms;
}
.game-boxes__button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  background: white;
  padding: 10px 14px;
  color: #141414;
  transform: translateX(-50%);
  line-height: 1.4;
}
@media screen and (min-width: 64em) {
  .game-boxes__button {
    bottom: 45px;
  }
}

.copy-2-col {
  align-items: center;
  background-color: white;
  display: flex;
  justify-content: center;
  border-radius: 40px 0px 40px 0px;
  margin-left: 16px;
  margin-right: 16px;
  text-align: left;
}
@media screen and (min-width: 1023px) {
  .copy-2-col {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media all and (max-width: 768px) {
  .copy-2-col {
    flex-wrap: wrap;
  }
}
.copy-2-col__blue {
  color: #2E40FF !important;
}
.copy-2-col__blue-button {
  background-color: #2E40FF !important;
}
.copy-2-col__red {
  color: #FF3600 !important;
}
.copy-2-col__red-button {
  background-color: #FF3600 !important;
}
.copy-2-col__title {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto 20px;
}
@media screen and (min-width: 64em) {
  .copy-2-col__title {
    font-size: 4rem;
    margin: 0;
  }
}
.copy-2-col__subtitle {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4rem;
  margin-bottom: 0.625rem;
  margin-left: 1rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 639px) {
  .copy-2-col__subtitle {
    font-size: 1.125rem;
    line-height: 1.575rem;
    margin-left: 1.75rem;
    margin-bottom: 1.25rem;
  }
}
.copy-2-col__light {
  background-color: white;
}
.copy-2-col__dark {
  background-color: #141414;
  padding-top: 60px;
  padding-bottom: 60px;
}
.copy-2-col__subheading-dark {
  color: white;
}
.copy-2-col__subheading-light {
  color: #FF3600;
}
.copy-2-col__left-dark h2 {
  color: white;
}
.copy-2-col__left-light h2 {
  color: #FF3600;
}
.copy-2-col__right-dark p {
  color: white;
}
.copy-2-col__right-dark a {
  background-color: white;
  color: black;
}
.copy-2-col__right-dark a p {
  color: black;
}
.copy-2-col__right-light p {
  color: black;
}
.copy-2-col__right-light a {
  background-color: #FF3600;
}
.copy-2-col__right-light a p {
  color: white;
}
@media screen and (min-width: 64em) {
  .copy-2-col__left {
    padding-right: 0;
  }
}
.copy-2-col__right p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 639px) {
  .copy-2-col__right p {
    font-size: 1.125rem;
    line-height: 1.575rem;
  }
}
.copy-2-col__right a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.copy-2-col__right a p {
  margin: 0px !important;
  line-height: 0px;
}
@media screen and (min-width: 639px) {
  .copy-2-col__right a {
    margin-top: 1.75rem;
  }
}
.copy-2-col__right *:last-child {
  margin-bottom: 0;
}

.pb-2024 {
  text-align: left;
}
@media print, screen and (max-width: 63.99875em) {
  .pb-2024 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.pb-2024__title {
  color: #FF3600;
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (min-width: 64em) {
  .pb-2024__title {
    font-size: 4rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 64em) {
  .pb-2024__title-col {
    padding-right: 0;
  }
}
.pb-2024__copy *:last-child {
  margin-bottom: 0;
}
.pb-2024__boxes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 64em) {
  .pb-2024__boxes {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 80px;
    margin-bottom: 60px;
  }
}

.pb-box {
  background: white;
  border-radius: 28px 0;
  overflow: hidden;
  position: relative;
  transition: height 200ms, background 200ms;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 14px;
  padding: 20px;
  height: 92px;
  border: 1px solid rgba(20, 20, 20, 0.15);
}
@media screen and (min-width: 64em) {
  .pb-box {
    height: 230px;
    padding: 20px 40px;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
}
.pb-box--active {
  height: 172px;
}
@media screen and (min-width: 64em) {
  .pb-box--active {
    height: 230px;
  }
}
.pb-box__icon {
  margin: auto;
  width: auto;
}
@media print, screen and (max-width: 63.99875em) {
  .pb-box__icon {
    max-width: 100%;
    max-height: 100%;
  }
}
.pb-box__icon-wrapper {
  width: 53px;
  height: 43px;
  display: flex;
  align-items: center;
  margin: 0;
}
.pb-box__button {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 2;
}
.pb-box__title {
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 0;
  font-weight: 500;
  pointer-events: none;
}
.pb-box__num {
  width: 30px;
}
@media screen and (min-width: 64em) {
  .pb-box__num {
    width: 40px;
  }
}
.pb-box__copy {
  color: white;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.4;
}
.pb-box__copy p {
  margin: 0;
}
.pb-box__expander {
  padding: 20px;
  transition: opacity 200ms, height 200ms;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #2E40FF;
  display: flex;
  align-items: center;
  opacity: 0;
  text-align: center;
}
@media screen and (min-width: 64em) {
  .pb-box__expander {
    padding: 57px 40px;
  }
}
.pb-box--active .pb-box__expander {
  opacity: 1;
}
.pb-box__expander-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.awards-component__left h2 {
  color: #FF3600;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (min-width: 64em) {
  .awards-component__left h2 {
    font-size: 4rem;
  }
}
.awards-component__right p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4rem;
  margin-bottom: 0px;
}
@media screen and (min-width: 1030px) {
  .awards-component__right p {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 639px) {
  .awards-component__right p {
    font-size: 1.125rem;
    line-height: 1.688rem;
    padding-right: 0px;
  }
}
.awards-component__text-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 1030px) {
  .awards-component__text-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.awards-component__logo-outer-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 770px) {
  .awards-component__logo-outer-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1030px) {
  .awards-component__logo-outer-wrapper {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1090px) {
  .awards-component__logo-outer-wrapper {
    gap: 28px;
  }
}
.awards-component__logo-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 20px 0px 20px 0px;
  aspect-ratio: 1.58/1;
}
.awards-component__logo-inner-wrapper img {
  max-height: 80%;
  max-width: 80%;
}

.image-block-component {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-left: 32px;
  margin-right: 32px;
}
@media screen and (min-width: 1023px) {
  .image-block-component {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1110px) {
  .image-block-component {
    gap: 1.75rem;
  }
}
@media screen and (min-width: 1023px) {
  .image-block-component {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }
}
.image-block-component__tablet-image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  display: block;
}
@media screen and (max-width: 1023px) {
  .image-block-component__tablet-image {
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 1023px) {
  .image-block-component__tablet-image {
    display: none;
  }
}
.image-block-component__tablet-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-block-component__left {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: none;
}
@media screen and (min-width: 1023px) {
  .image-block-component__left {
    display: block;
  }
}
.image-block-component__left img {
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1023px) {
  .image-block-component__left img {
    border-top-left-radius: 1.75rem;
    border-bottom-right-radius: 1.75rem;
  }
}
.image-block-component__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 1110px) {
  .image-block-component__right {
    gap: 1.75rem;
  }
}
.image-block-component__top-image {
  position: relative;
  width: 100%;
  grid-column: 2/span 1;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .image-block-component__top-image {
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 1023px) {
  .image-block-component__top-image {
    border-top-left-radius: 1.75rem;
    border-bottom-right-radius: 1.75rem;
    grid-column: 1/span 2;
  }
}
.image-block-component__top-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-block-component__bottom-sq {
  position: relative;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2E40FF;
  padding: 0 20px;
}
@media print, screen and (max-width: 63.99875em) {
  .image-block-component__bottom-sq {
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 1023px) {
  .image-block-component__bottom-sq {
    border-top-left-radius: 1.75rem;
    border-bottom-right-radius: 1.75rem;
  }
}
.image-block-component__bottom-sq img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-block-component__bottom-sq--with-img {
  background: transparent;
}
.image-block-component__title {
  font-weight: 500;
  color: white;
  font-size: 1.25rem;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 40em) {
  .image-block-component__title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 87.5em) {
  .image-block-component__title {
    font-size: 3rem;
  }
}

.banner-component {
  display: grid;
  align-items: center;
  background-color: white;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media print, screen and (min-width: 40em) {
  .banner-component {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }
}
@media screen and (min-width: 64em) {
  .banner-component {
    grid-template-columns: repeat(3, 1fr);
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }
}
@media screen and (min-width: 1110px) {
  .banner-component {
    gap: 1.75rem;
  }
}
.banner-component__wrapper.wrapper {
  padding-top: 77px;
}
@media screen and (min-width: 64em) {
  .banner-component__wrapper.wrapper {
    padding-top: 102px;
  }
}
.banner-component__blue {
  background-color: #2E40FF;
}
.banner-component__black {
  background-color: #141414;
}
.banner-component__title {
  line-height: 1.09;
  font-size: 2.25rem;
  color: white;
  margin: 0 auto;
}
@media screen and (min-width: 64em) {
  .banner-component__title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 87.5em) {
  .banner-component__title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 125em) {
  .banner-component__title {
    font-size: 5.25rem;
  }
}
.banner-component__copy {
  font-size: 1rem;
  line-height: 1.4;
  color: white;
  margin-top: 16px;
}
@media screen and (min-width: 125em) {
  .banner-component__copy {
    font-size: 1.125rem;
    margin-top: 30px;
  }
}
.banner-component__copy p:last-child {
  margin-bottom: 0;
}
.banner-component__left {
  border-top-left-radius: 1rem;
  padding: 1rem 1rem 0;
  text-align: left;
}
@media print, screen and (min-width: 40em) {
  .banner-component__left {
    border-bottom-right-radius: 1.75rem;
    border-top-left-radius: 1.75rem;
    aspect-ratio: 0.85/1;
    height: 100%;
    padding: 2.5rem;
    min-height: 13.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.banner-component__right {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-bottom-right-radius: 1rem;
  padding: 16px;
}
@media print, screen and (min-width: 40em) {
  .banner-component__right {
    aspect-ratio: 0.85/1;
    background-color: white;
    border-bottom-right-radius: 0rem;
    padding: 0px;
  }
}
@media screen and (min-width: 64em) {
  .banner-component__right {
    aspect-ratio: 1.74/1;
  }
}
.banner-component__right img {
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media print, screen and (min-width: 40em) {
  .banner-component__right img {
    border-top-left-radius: 1.75rem;
    border-bottom-right-radius: 1.75rem;
  }
}
@media screen and (min-width: 64em) {
  .banner-component__tl-left {
    grid-column: 1/span 1;
  }
}
@media screen and (min-width: 64em) {
  .banner-component__tl-right {
    grid-column: 2/span 2;
  }
}
@media print, screen and (min-width: 40em) {
  .banner-component__tr-left {
    order: 1;
  }
}
@media screen and (min-width: 64em) {
  .banner-component__tr-left {
    grid-column: 3/span 1;
  }
}
@media print, screen and (min-width: 40em) {
  .banner-component__tr-right {
    order: 2;
  }
}
@media screen and (min-width: 64em) {
  .banner-component__tr-right {
    grid-column: 1/span 2;
  }
}

.copy-image {
  text-align: left;
}
@media screen and (min-width: 64em) {
  .copy-image {
    display: flex;
    gap: 32px;
  }
}
@media screen and (min-width: 64em) {
  .copy-image__wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.copy-image__wrapper:nth-child(2) {
  padding-top: 108px;
}
@media screen and (min-width: 64em) {
  .copy-image__wrapper:nth-child(2) {
    padding-top: 142px;
  }
}
@media screen and (min-width: 64em) {
  .copy-image__image-col-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
  }
  .copy-image--text-right .copy-image__image-col-wrapper {
    justify-content: flex-end;
  }
}
.copy-image__image-col {
  position: relative;
  padding: 37px;
}
@media print, screen and (max-width: 63.99875em) {
  .copy-image__image-col {
    margin: 0 32px 30px;
  }
}
@media print, screen and (min-width: 40em) {
  .copy-image__image-col {
    padding: 64px;
  }
}
@media screen and (min-width: 64em) {
  .copy-image__image-col {
    width: 100%;
    overflow: hidden;
    max-width: 910px;
  }
}
.copy-image__image-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 40em) {
  .copy-image__image-wrapper {
    aspect-ratio: 16/10;
  }
}
.copy-image__image {
  border-top-left-radius: 21px;
  border-bottom-right-radius: 21px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 640px) {
  .copy-image__image {
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
.copy-image__br-corner-medium, .copy-image__tl-corner-medium, .copy-image__br-corner-small, .copy-image__tl-corner-small {
  position: absolute;
  pointer-events: none;
}
.copy-image__br-corner-medium {
  bottom: 0px;
  right: 0px;
}
.copy-image__tl-corner-medium {
  top: 0px;
  left: 0px;
}
.copy-image__br-corner-small {
  bottom: 0px;
  right: 0px;
}
.copy-image__tl-corner-small {
  top: 0px;
  left: 0px;
}
.copy-image__content-wrapper {
  width: 100%;
}
@media print, screen and (max-width: 63.99875em) {
  .copy-image__content-wrapper {
    padding: 0 28px;
  }
}
@media screen and (min-width: 64em) {
  .copy-image__content-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
  }
  .copy-image--text-left .copy-image__content-wrapper {
    order: -1;
    justify-content: flex-end;
  }
}
.copy-image__title {
  font-size: 2.25rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 20px;
  color: #2E40FF;
}
@media screen and (min-width: 64em) {
  .copy-image__title {
    font-size: 3rem;
  }
}
.copy-image--red .copy-image__title {
  color: #FF3600;
}
@media screen and (min-width: 64em) {
  .copy-image--text-left .copy-image__content {
    max-width: 590px;
  }
  .copy-image--text-right .copy-image__content {
    padding-left: 22px;
    max-width: 574px;
  }
}
.copy-image__copy {
  color: #141414;
}
.copy-image__copy *:last-child {
  margin-bottom: 0;
}

.testimonials-2024 {
  text-align: left;
}
@media screen and (min-width: 64em) {
  .testimonials-2024 {
    display: flex;
    gap: 32px;
  }
}
@media screen and (min-width: 64em) {
  .testimonials-2024__wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.testimonials-2024__wrapper:nth-child(2) {
  padding-top: 108px;
}
@media screen and (min-width: 64em) {
  .testimonials-2024__wrapper:nth-child(2) {
    padding-top: 142px;
  }
}
.testimonials-2024__title {
  color: #141414;
  margin: 0 auto 10px;
}
@media screen and (min-width: 64em) {
  .testimonials-2024__title {
    margin-bottom: 20px;
  }
}
.testimonials-2024__job-title {
  margin: 0 auto 20px;
}
@media screen and (min-width: 64em) {
  .testimonials-2024__job-title {
    margin-bottom: 28px;
  }
}
.testimonials-2024__content-wrapper {
  width: 100%;
}
@media print, screen and (max-width: 63.99875em) {
  .testimonials-2024__content-wrapper {
    padding: 0 28px;
  }
}
@media screen and (min-width: 64em) {
  .testimonials-2024__content-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
  }
}
.testimonials-2024__content-carousel {
  width: 100%;
  margin: 0 !important;
}
@media screen and (min-width: 64em) {
  .testimonials-2024__content {
    max-width: 574px;
    padding-left: 22px;
  }
}
.testimonials-2024__copy {
  color: #141414;
}
.testimonials-2024__copy *:last-child {
  margin-bottom: 0;
}
.testimonials-2024__button {
  margin: 20px 0 0 !important;
}
@media screen and (min-width: 64em) {
  .testimonials-2024__image-col-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.testimonials-2024__image-col {
  position: relative;
  padding: 37px;
}
@media print, screen and (max-width: 63.99875em) {
  .testimonials-2024__image-col {
    margin: 0 32px 30px;
  }
}
@media print, screen and (min-width: 40em) {
  .testimonials-2024__image-col {
    padding: 64px;
  }
}
@media screen and (min-width: 64em) {
  .testimonials-2024__image-col {
    width: 100%;
    overflow: hidden;
    max-width: 910px;
  }
}
.testimonials-2024__image-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 40em) {
  .testimonials-2024__image-wrapper {
    aspect-ratio: 16/10;
  }
}
.testimonials-2024__image {
  border-top-left-radius: 21px;
  border-bottom-right-radius: 21px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 640px) {
  .testimonials-2024__image {
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
.testimonials-2024__br-corner-medium, .testimonials-2024__tl-corner-medium, .testimonials-2024__br-corner-small, .testimonials-2024__tl-corner-small {
  position: absolute;
  pointer-events: none;
}
.testimonials-2024__br-corner-medium {
  bottom: 0px;
  right: 0px;
}
.testimonials-2024__tl-corner-medium {
  top: 0px;
  left: 0px;
}
.testimonials-2024__br-corner-small {
  bottom: 0px;
  right: 0px;
}
.testimonials-2024__tl-corner-small {
  top: 0px;
  left: 0px;
}
.testimonials-2024 .slick-dots {
  margin: 30px 0 0;
  text-align: left;
}
@media screen and (min-width: 64em) {
  .testimonials-2024 .slick-dots {
    margin-left: 20px;
  }
}
.testimonials-2024 .slick-dots li {
  margin: 0 4px;
  padding: 0;
  list-style-type: none;
  display: inline-block;
  height: 12px;
  border: 0;
}
.testimonials-2024 .slick-dots li button {
  margin: 0;
  padding: 0;
  width: 12px;
  height: 12px;
  text-indent: -5000px;
  background: transparent;
  vertical-align: top;
  cursor: pointer;
  border: 1px solid #2E40FF;
  border-radius: 4px 0px 4px 0px;
}
.testimonials-2024 .slick-dots li button:hover {
  background: rgba(46, 64, 255, 0.5);
}
.testimonials-2024 .slick-dots li.slick-active button {
  background-color: #2E40FF;
  border-color: #2E40FF;
}
.testimonials-2024 .slick-list,
.testimonials-2024 .slick-track {
  height: 100%;
}

.grid-container {
  max-width: 100%;
  margin: 0 16px;
}
@media screen and (min-width: 1250px) {
  .grid-container {
    margin: 0 40px;
  }
}

.grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-content: center;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 750px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
}

.grid-item {
  background: #eee;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 28px 0px 28px 0px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 345/260;
  padding: 0;
}
.grid-item__image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}
.grid-item__button-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.grid-item__text {
  display: flex;
}
@media screen and (min-width: 1023px) {
  .grid-item__text {
    justify-content: end;
  }
}
@media screen and (max-width: 1023px) {
  .grid-item__text {
    order: 2;
    justify-content: center;
  }
}
.grid-item__text-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 28px;
}
@media screen and (min-width: 650px) {
  .grid-item__text-blue {
    margin: 0px 80px;
  }
}
@media screen and (min-width: 1023px) {
  .grid-item__text-blue {
    max-width: 595px;
    margin: 0px 28px;
  }
}
.grid-item__text-blue h2 {
  color: #2E40FF;
  font-size: 36px;
  line-height: 43.2px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (min-width: 650px) {
  .grid-item__text-blue h2 {
    font-size: 48px;
    line-height: 60px;
  }
}
.grid-item__text-blue p {
  color: black;
  line-height: 25.2px;
  font-size: 18px;
  font-weight: 400;
}
.grid-item__text-blue a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #2E40FF;
}
.grid-item__text-blue a p {
  margin: 0px !important;
  line-height: 0px;
  color: white;
}
.grid-item__logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-item__logo {
  max-height: 75px;
  top: 50%;
  left: 50%;
  max-width: 140px;
  height: auto;
  width: auto;
}
@media screen and (min-width: 64em) {
  .grid-item__logo {
    max-height: 140px;
  }
}
.grid-item button {
  position: absolute;
  background: none;
  width: 100%;
  height: 100%;
}
.grid-item.fullwidth {
  display: flex;
  align-items: flex-start;
  grid-column: 1/-1;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, height 0.2s ease-in-out;
  aspect-ratio: initial;
  padding: 0 28px;
}

.grid-item:nth-child(4n+1) {
  background-color: #f3f3f3;
}

.grid-item:nth-child(4n+2) {
  background-color: #f3f3f3;
}

.grid-item:nth-child(4n+3) {
  background-color: #f3f3f3;
}

.grid-item:nth-child(4n+4) {
  background-color: #f3f3f3;
}

.is-hidden {
  height: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.is-selected {
  border: solid #2E40FF 4px;
}

.grid-item-dropdown {
  text-align: left;
  padding: 40px 0;
  width: 100%;
}
@media screen and (min-width: 64em) {
  .grid-item-dropdown {
    display: flex;
    gap: 32px;
    padding: 100px 0;
  }
}
.grid-item-dropdown__title {
  font-size: 2.25rem;
  margin-bottom: 10px;
  color: #2E40FF;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (min-width: 64em) {
  .grid-item-dropdown__title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
.grid-item-dropdown__text-wrapper {
  width: 100%;
}
@media screen and (min-width: 64em) {
  .grid-item-dropdown__text-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
    order: -1;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 64em) {
  .grid-item-dropdown__text {
    max-width: 590px;
  }
}
.grid-item-dropdown__text p {
  line-height: 25.2px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 1140px) {
  .grid-item-dropdown__text p {
    font-size: 18px;
  }
}
.grid-item-dropdown__text a.button {
  background-color: #2E40FF;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.grid-item-dropdown__text a.button p {
  margin: 0px !important;
  line-height: 0px;
  color: white;
}
@media screen and (min-width: 64em) {
  .grid-item-dropdown__image-col-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
  }
}
.grid-item-dropdown__image-col {
  position: relative;
  padding: 37px;
}
@media print, screen and (max-width: 63.99875em) {
  .grid-item-dropdown__image-col {
    margin: 0 0 20px;
  }
}
@media print, screen and (min-width: 40em) {
  .grid-item-dropdown__image-col {
    padding: 64px;
  }
}
@media screen and (min-width: 64em) {
  .grid-item-dropdown__image-col {
    width: 100%;
    overflow: hidden;
    max-width: 910px;
  }
}
.grid-item-dropdown__image-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}
.grid-item-dropdown__image {
  border-top-left-radius: 21px;
  border-bottom-right-radius: 21px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 640px) {
  .grid-item-dropdown__image {
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
.grid-item-dropdown__br-corner-medium, .grid-item-dropdown__tl-corner-medium, .grid-item-dropdown__br-corner-small, .grid-item-dropdown__tl-corner-small {
  position: absolute;
  pointer-events: none;
}
.grid-item-dropdown__br-corner-medium {
  bottom: 0px;
  right: 0px;
}
.grid-item-dropdown__tl-corner-medium {
  top: 0px;
  left: 0px;
}
.grid-item-dropdown__br-corner-small {
  bottom: 0px;
  right: 0px;
}
.grid-item-dropdown__tl-corner-small {
  top: 0px;
  left: 0px;
}

.privacy {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1023px) {
  .privacy {
    margin-bottom: 120px;
  }
}
.privacy__wrapper {
  max-width: 805px;
  margin-left: 16px;
  margin-right: 16px;
}
@media screen and (min-width: 750px) {
  .privacy__wrapper {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media screen and (min-width: 840px) {
  .privacy__wrapper {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.privacy__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 46px;
  border: 1px solid #D0D0D0;
  margin-bottom: 30px;
}
@media screen and (min-width: 750px) {
  .privacy__button {
    width: 285px;
    margin-bottom: 45px;
  }
}
.privacy__button p {
  margin-bottom: 0px;
  margin-left: 14px !important;
  font-weight: 400;
}
.privacy__button img {
  margin-right: 14px;
}
.privacy h1 {
  font-size: 22px;
  line-height: 28.6px;
  color: #FF3600;
  margin-bottom: 18px;
}
@media screen and (min-width: 750px) {
  .privacy h1 {
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 840px) {
  .privacy h1 {
    font-size: 48px;
    line-height: 67.2px;
    font-weight: 500;
  }
}
.privacy p {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
}
.privacy h2 {
  color: #2E40FF;
  font-size: 22px;
  line-height: 30.8px;
  margin-bottom: 10px;
  margin-top: 12px;
}
@media screen and (min-width: 750px) {
  .privacy h2 {
    font-size: 26px;
    line-height: 36.4px;
  }
}
.privacy ul li {
  margin-top: 12px;
  margin-bottom: 12px;
}
.privacy a {
  color: #2E40FF;
}

.copy-banner {
  min-height: 382px;
  background: #2E40FF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
  border-radius: 28px 0px 28px 0px;
  padding: 0 20px;
}
@media screen and (min-width: 700px) {
  .copy-banner {
    min-height: 450px;
  }
}
@media screen and (min-width: 1250px) {
  .copy-banner {
    min-height: 600px;
    margin-left: 40px;
    margin-right: 40px;
  }
}
.copy-banner__wrapper.wrapper {
  padding-top: 82px;
}
.copy-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.copy-banner__title {
  font-size: 2.25rem;
  line-height: 1.1;
  text-align: center;
  font-weight: 500;
  color: white;
  margin-bottom: 16px;
}
@media screen and (min-width: 64em) {
  .copy-banner__title {
    font-size: 4.625rem;
    margin-bottom: 20px;
  }
}
.copy-banner__inner-wrapper {
  position: absolute;
}
.copy-banner__inner-wrapper p {
  color: white;
  text-align: center;
  max-width: 349px;
  font-size: 16px;
  line-height: 22.4px;
  margin: 0px auto;
}
@media screen and (min-width: 700px) {
  .copy-banner__inner-wrapper p {
    font-size: 22px;
    line-height: 30.8px;
    max-width: 596px;
  }
}
.copy-banner__tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
}

.contact-links__image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0px !important;
}
.contact-links__image-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-links__col {
  border-radius: 16px 0px 16px 0px;
  text-align: left;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  min-height: 400px;
}
@media screen and (min-width: 420px) {
  .contact-links__col {
    min-height: 368px;
  }
}
@media screen and (min-width: 640px) {
  .contact-links__col {
    border-radius: 30px 0px 30px 0px;
  }
}
@media screen and (min-width: 970px) {
  .contact-links__col {
    padding: 0px 30px;
  }
}
.contact-links__col h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (min-width: 640px) {
  .contact-links__col h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 970px) {
  .contact-links__col h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1030px) {
  .contact-links__col h3 {
    font-size: 28px;
  }
}
.contact-links__col p {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.2px;
}
@media screen and (min-width: 640px) {
  .contact-links__col p {
    font-size: 16px;
    line-height: 22.2px;
  }
}
@media screen and (min-width: 970px) {
  .contact-links__col p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 25.2px;
  }
}
.contact-links__grey-red {
  background-color: #F3F3F3;
}
.contact-links__grey-red h3 {
  color: #FF3600;
}
.contact-links__grey-red a {
  background-color: #FF3600;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-links__grey-red a p {
  color: white;
  margin: 0px !important;
  line-height: 0px;
}
@media screen and (min-width: 640px) {
  .contact-links__grey-red a {
    margin-top: 0px;
  }
}
@media screen and (min-width: 970px) {
  .contact-links__grey-red a {
    margin-top: 1.75rem;
  }
}
.contact-links__grey-blue {
  background-color: #F3F3F3;
}
.contact-links__grey-blue h3 {
  color: #2E40FF;
}
.contact-links__grey-blue a {
  background-color: #2E40FF;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-links__grey-blue a p {
  color: white;
  margin: 0px !important;
  line-height: 0px;
}
@media screen and (min-width: 640px) {
  .contact-links__grey-blue a {
    margin-top: 0px;
  }
}
@media screen and (min-width: 970px) {
  .contact-links__grey-blue a {
    margin-top: 1.75rem;
  }
}
.contact-links__black {
  background-color: #141414;
}
.contact-links__black h3 {
  color: white;
}
.contact-links__black p {
  color: white;
}
.contact-links__black a {
  background-color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-links__black a p {
  color: black;
  margin: 0px !important;
  line-height: 0px;
}
@media screen and (min-width: 640px) {
  .contact-links__black a {
    margin-top: 0px;
  }
}
@media screen and (min-width: 970px) {
  .contact-links__black a {
    margin-top: 1.75rem;
  }
}
.contact-links__red {
  background-color: #FF3600;
}
.contact-links__red h3 {
  color: white;
}
.contact-links__red p {
  color: white;
}
.contact-links__red a {
  background-color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-links__red a p {
  color: black;
  margin: 0px !important;
  line-height: 0px;
}
@media screen and (min-width: 640px) {
  .contact-links__red a {
    margin-top: 0px;
  }
}
@media screen and (min-width: 970px) {
  .contact-links__red a {
    margin-top: 1.75rem;
  }
}
.contact-links__blue {
  background-color: #2E40FF;
}
.contact-links__blue h3 {
  color: white;
}
.contact-links__blue p {
  color: white;
}
.contact-links__blue a {
  background-color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-links__blue a p {
  color: black;
  margin: 0px !important;
  line-height: 0px;
}
@media screen and (min-width: 640px) {
  .contact-links__blue a {
    margin-top: 0px;
  }
}
@media screen and (min-width: 970px) {
  .contact-links__blue a {
    margin-top: 1.75rem;
  }
}

.game-list {
  overflow: hidden;
}
.game-list__boxes {
  position: relative;
  display: flex;
  gap: 20px;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 39.99875em) {
  .game-list__boxes {
    padding: 0 16px;
  }
}
@media screen and (min-width: 64em) {
  .game-list__boxes {
    gap: 28px;
  }
}
@media screen and (min-width: 125em) {
  .game-list__boxes {
    margin: 0 auto;
  }
}
.game-list__link {
  border-radius: 23px 0;
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 596px;
  margin: 0 auto;
  aspect-ratio: 350/250;
}
@media print, screen and (min-width: 40em) {
  .game-list__link {
    width: calc(50% - 14px);
  }
}
@media screen and (min-width: 64em) {
  .game-list__link {
    border-radius: 23px 0;
    aspect-ratio: 596/388;
  }
}
.game-list__link:hover .game-list__tint, .game-list__link:active .game-list__tint {
  opacity: 0.4;
}
.game-list__link:hover .game-list__logo, .game-list__link:active .game-list__logo {
  transform: translate(-50%, calc(-50% - 20px));
}
.game-list__logo {
  width: 240px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 300ms;
}
@media screen and (min-width: 64em) {
  .game-list__logo {
    width: 280px;
  }
}
.game-list__hockey-logo {
  width: 176px;
}
@media screen and (min-width: 64em) {
  .game-list__hockey-logo {
    width: 200px;
  }
}
.game-list__tint {
  background: #141414;
  opacity: 0.2;
  transition: opacity 300ms;
}
.game-list__button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  background: white;
  padding: 10px 14px;
  color: #141414;
  transform: translateX(-50%);
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (min-width: 64em) {
  .game-list__button {
    bottom: 45px;
  }
}

.brand-banner {
  min-height: 382px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
  border-radius: 28px 0px 28px 0px;
}
@media screen and (min-width: 700px) {
  .brand-banner {
    min-height: 450px;
  }
}
@media screen and (min-width: 1250px) {
  .brand-banner {
    min-height: 600px;
    margin-left: 40px;
    margin-right: 40px;
  }
}
.brand-banner__wrapper.wrapper {
  padding-top: 82px;
}
@media screen and (min-width: 64em) {
  .brand-banner__wrapper.wrapper {
    padding-top: 102px;
  }
}
.brand-banner__logo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brand-banner__background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.brand-banner__image-wrapper {
  position: absolute;
}
.brand-banner__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-component__wrapper {
  max-height: 686px;
  max-width: 1220px;
  margin: auto;
  overflow: hidden;
  border-radius: 28px 0px 28px 0px;
  margin-left: 32px;
  margin-right: 32px;
  position: relative;
  cursor: pointer;
}
.video-component__background {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-component__play-wrapper {
  background: white;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  width: 54px;
  border-radius: 14px 0px 14px 0px;
}
@media screen and (min-width: 750px) {
  .video-component__play-wrapper {
    height: 72px;
    width: 72px;
  }
}
.video-component__image {
  width: 100%;
}

.featured-text__row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
  margin-right: 32px;
}
@media screen and (min-width: 1023px) {
  .featured-text__row {
    margin-left: auto;
    margin-right: auto;
  }
}
.featured-text__row p {
  margin-bottom: 0;
  max-width: 820px;
  font-size: 2.25rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (min-width: 64em) {
  .featured-text__row p {
    font-size: 3rem;
  }
}
.featured-text__row b, .featured-text__row strong {
  color: blue;
  font-weight: normal;
}
.featured-text__row i, .featured-text__row em {
  color: red;
  font-style: normal;
}

.double-image__wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 32px;
}
@media screen and (min-width: 640px) {
  .double-image__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 32px;
    max-width: 1220px;
  }
}
@media screen and (min-width: 1340px) {
  .double-image__wrapper {
    margin: 0 auto;
  }
}
.double-image__image-wrapper {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px 0px 16px 0px;
}
@media screen and (min-width: 640px) {
  .double-image__image-wrapper {
    border-radius: 30px 0px 30px 0px;
  }
}
.double-image__image-wrapper img,
.double-image__image-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.full-width-image {
  min-height: 382px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
  border-radius: 28px 0px 28px 0px;
}
@media screen and (min-width: 700px) {
  .full-width-image {
    min-height: 450px;
  }
}
@media screen and (min-width: 1250px) {
  .full-width-image {
    min-height: 600px;
    margin-left: 40px;
    margin-right: 40px;
  }
}
.full-width-image__background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.quote__tl {
  position: absolute;
  top: 0;
  left: 0;
}
.quote__br {
  position: absolute;
  bottom: 0;
  right: 0;
}
.quote__title {
  text-transform: uppercase;
  color: #FF3600;
  font-size: 18px;
  line-height: 21.6px;
  margin: 0 auto 8px;
  font-weight: 500;
}
@media screen and (min-width: 640px) {
  .quote__title {
    margin-bottom: 18px;
  }
}
.quote__wrapper {
  padding: 60px;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  margin-right: 16px;
}
@media screen and (min-width: 640px) {
  .quote__wrapper {
    padding: 100px;
  }
}
@media screen and (min-width: 1310px) {
  .quote__wrapper {
    margin: 0px auto;
  }
}
.quote__wrapper p {
  margin: auto;
  max-width: 804px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
@media screen and (min-width: 640px) {
  .quote__wrapper p {
    font-size: 26px;
    line-height: 39px;
  }
}
.quote__wrapper h4 {
  text-transform: uppercase;
  color: #FF3600;
  font-size: 18px;
  line-height: 21.6px;
  max-width: 167px;
  margin: 8px auto 0px auto;
  font-weight: 500;
}
@media screen and (min-width: 640px) {
  .quote__wrapper h4 {
    margin-top: 18px;
    max-width: 337px;
  }
}

.feature-boxes {
  max-width: 1220px;
  margin: auto;
}
.feature-boxes__wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-left: 32px;
  margin-right: 32px;
}
@media screen and (min-width: 840px) {
  .feature-boxes__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1110px) {
  .feature-boxes__wrapper {
    gap: 1.75rem;
  }
}
@media screen and (min-width: 1328px) {
  .feature-boxes__wrapper {
    margin: 0px auto;
  }
}
.feature-boxes__col {
  border-radius: 16px 0px 16px 0px;
  text-align: left;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  min-height: 255px;
}
@media screen and (min-width: 840px) {
  .feature-boxes__col {
    border-radius: 30px 0px 30px 0px;
  }
}
@media screen and (min-width: 970px) {
  .feature-boxes__col {
    padding: 0px 30px;
  }
}
.feature-boxes__col h3 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 8px;
  color: white;
}
@media screen and (min-width: 840px) {
  .feature-boxes__col h3 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1030px) {
  .feature-boxes__col h3 {
    font-size: 36px;
  }
}
.feature-boxes__col p {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.2px;
  margin-bottom: 20px;
  color: white;
}
@media screen and (min-width: 840px) {
  .feature-boxes__col p {
    font-size: 18px;
    line-height: 25.2px;
    margin-bottom: 60px;
  }
}
.feature-boxes__blue {
  background: #2E40FF;
}
.feature-boxes__red {
  background: #FF3600;
}
.feature-boxes__black {
  background: #141414;
}

.gif-2024__background {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gif-2024__video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 64em) {
  .gif-2024__container {
    border: 1px solid rgba(20, 20, 20, 0.25);
    margin: 0 20px;
  }
}

.short-copy-banner__wrapper {
  padding-top: 104px;
}
@media screen and (min-width: 64em) {
  .short-copy-banner__wrapper {
    padding-top: 186px;
  }
}
.short-copy-banner__wrapper:nth-child(2) {
  padding-top: 104px;
}
@media screen and (min-width: 64em) {
  .short-copy-banner__wrapper:nth-child(2) {
    padding-top: 186px;
  }
}
.short-copy-banner__content-wrapper {
  margin: 0 auto;
  text-align: left;
}
@media print, screen and (max-width: 63.99875em) {
  .short-copy-banner__content-wrapper {
    padding: 0 14px;
  }
}
.short-copy-banner__title {
  font-size: 2.25rem;
  margin: 0 auto 10px;
  line-height: 1.1;
  color: #FF3600;
}
@media screen and (min-width: 64em) {
  .short-copy-banner__title {
    font-size: 4.625rem;
    margin: 0;
  }
}
.short-copy-banner__copy {
  font-size: 1.125rem;
  line-height: 1.4;
}
@media screen and (min-width: 64em) {
  .short-copy-banner__copy {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.op-page {
  text-align: left;
}
.op-page__title-wrapper {
  text-align: left;
  margin: 0 auto 28px;
}
@media screen and (min-width: 64em) {
  .op-page__title-wrapper {
    text-align: center;
    margin-bottom: 40px;
  }
}
.op-page__content-wrapper {
  position: relative;
}
.op-page__top-title {
  font-size: 1rem;
  margin: 0 0 4px;
  color: #2E40FF;
}
@media screen and (min-width: 64em) {
  .op-page__top-title {
    margin-bottom: 10px;
  }
}
.op-page__title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #FF3600;
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 64em) {
  .op-page__title {
    font-size: 3rem;
  }
}
.op-page__copy {
  text-align: left;
}
.op-page__copy iframe {
  min-height: 315px;
}
@media print, screen and (min-width: 40em) {
  .op-page__copy iframe {
    min-height: 400px;
  }
}
@media screen and (min-width: 64em) {
  .op-page__copy iframe {
    min-height: 500px;
  }
}
.op-page__copy img {
  width: 100%;
}
.op-page__copy a.html5lightbox {
  display: inline-block;
  position: relative;
}
.op-page__copy a.html5lightbox img {
  margin: 0;
}
.op-page__copy h2, .op-page__copy h3 {
  font-size: 1.375rem;
  color: #2E40FF;
}
@media screen and (min-width: 64em) {
  .op-page__copy h2, .op-page__copy h3 {
    font-size: 1.625rem;
  }
}
.op-page__image-wrapper {
  margin: 0 auto 30px;
  border-radius: 28px 0;
  overflow: hidden;
}
@media screen and (min-width: 64em) {
  .op-page__image-wrapper {
    margin: 0 0 80px;
  }
}
.op-page__image {
  width: 100%;
}
.op-page__wrapper {
  padding-top: 104px;
  padding-bottom: 60px;
}
@media screen and (min-width: 64em) {
  .op-page__wrapper {
    padding-top: 186px;
    padding-bottom: 120px;
  }
}

.vacancies-2024 {
  text-align: left;
}
.vacancies-2024__num-box {
  border-radius: 16px 0px;
  text-align: left;
  background: #FF3600;
  padding: 28px;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .vacancies-2024__num-box {
    aspect-ratio: 400/220;
  }
}
@media screen and (min-width: 64em) {
  .vacancies-2024__num-box {
    padding: 45px;
  }
}
.vacancies-2024__num {
  display: flex;
  position: relative;
  width: 100%;
  gap: 16px;
  margin: 0 auto;
}
@media screen and (min-width: 64em) {
  .vacancies-2024__num {
    gap: 38px;
  }
}
.vacancies-2024__num-1, .vacancies-2024__num-2 {
  width: calc(50% - 8px);
}
@media screen and (min-width: 64em) {
  .vacancies-2024__num-1, .vacancies-2024__num-2 {
    width: calc(50% - 19px);
  }
}
.vacancies-2024__num-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  margin: 0 auto;
}
.vacancies-2024__boxes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media print, screen and (min-width: 40em) {
  .vacancies-2024__boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 64em) {
  .vacancies-2024__boxes {
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
  }
}
.vacancies-2024__button {
  position: relative;
  margin: 20px 0 0;
}
@media screen and (min-width: 64em) {
  .vacancies-2024__button {
    margin-top: 40px;
  }
}
.vacancies-2024__button-label {
  opacity: 0;
}
.vacancies-2024__button-more, .vacancies-2024__button-less {
  position: absolute;
  top: 17px;
  left: 28px;
}
.vacancies-2024__button-more {
  opacity: 1;
}
.vacancies-2024__button--active .vacancies-2024__button-more {
  opacity: 0;
}
.vacancies-2024__button-less {
  opacity: 0;
}
.vacancies-2024__button--active .vacancies-2024__button-less {
  opacity: 1;
}

.vacancy-box {
  border: 1px solid rgba(20, 20, 20, 0.25);
  border-radius: 16px 0px;
  text-align: left;
  padding: 20px;
  display: flex;
  text-decoration: none;
  transition: color 200ms, border-color 200ms;
  align-items: center;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .vacancy-box {
    aspect-ratio: 400/220;
  }
}
@media screen and (min-width: 64em) {
  .vacancy-box {
    padding: 40px;
    border-radius: 30px 0px;
  }
}
.vacancy-box:hover, .vacancy-box:active {
  border-color: #141414;
}
.vacancy-box__title {
  font-size: 1.125rem;
  color: #141414;
  margin: 0 0 8px;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}
@media screen and (min-width: 64em) {
  .vacancy-box__title {
    font-size: 1.625rem;
  }
}
.vacancy-box:hover .vacancy-box__title, .vacancy-box:active .vacancy-box__title {
  color: #141414;
}
.vacancy-box__team {
  text-transform: uppercase;
  color: #FF3600 !important;
  margin: 0 0 8px;
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 64em) {
  .vacancy-box__team {
    font-size: 1.125rem;
  }
}
.vacancy-box:hover .vacancy-box__team, .vacancy-box:active .vacancy-box__team {
  color: #FF3600 !important;
}
.vacancy-box__location {
  font-size: 1rem;
  color: #141414;
  margin: 0;
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 64em) {
  .vacancy-box__location {
    font-size: 1.125rem;
  }
}
.vacancy-box:hover .vacancy-box__location, .vacancy-box:active .vacancy-box__location {
  color: #141414;
}

.vacancies-list {
  margin: 30px 0 0;
  text-align: left;
  display: none;
}
@media screen and (min-width: 64em) {
  .vacancies-list {
    margin-top: 60px;
  }
}
.vacancies-list__entries {
  width: 100%;
  border-radius: 20px 0px;
  border: 1px solid rgba(20, 20, 20, 0.25);
  padding: 10px 20px 0;
}
@media screen and (min-width: 64em) {
  .vacancies-list__entries {
    padding: 12px 30px;
  }
}
@media print, screen and (min-width: 40em) {
  .vacancies-list__top {
    display: grid;
    grid-template-columns: 65% 35%;
    margin: 0 30px;
  }
}
@media screen and (min-width: 64em) {
  .vacancies-list__top {
    grid-template-columns: 40% 30% 30%;
  }
}
.vacancies-list__col-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  color: #FF3600;
}
@media screen and (min-width: 64em) {
  .vacancies-list__col-title {
    margin-bottom: 20px;
  }
}
.vacancies-list__entry {
  width: 100%;
  display: block;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (min-width: 64em) {
  .vacancies-list__entry {
    display: grid;
    grid-template-columns: 40% 30% 30%;
  }
}
.vacancies-list__entry:not(:last-child) {
  border-bottom: 1px solid rgba(20, 20, 20, 0.25);
}
.vacancies-list__entry:hover, .vacancies-list__entry:active {
  color: #141414;
}
.vacancies-list__col {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px 0 4px;
  text-decoration: none;
}
@media screen and (min-width: 64em) {
  .vacancies-list__col {
    padding: 16px 20px 16px 0;
  }
}
.vacancies-list__mobile-info {
  display: block;
  font-size: 0.875rem;
  margin: 0;
  padding: 0 0 16px;
  text-decoration: none;
}

.brand-res {
  text-align: left;
  margin: auto;
}
.brand-res__title {
  font-size: 1.75rem;
  font-family: 500;
  margin: 0 0 10px;
  line-height: 1.4;
  color: #2E40FF;
}
@media screen and (min-width: 64em) {
  .brand-res__title {
    margin-bottom: 20px;
  }
}
.brand-res__copy {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 64em) {
  .brand-res__copy {
    font-size: 1.125rem;
  }
}
.brand-res__copy p {
  margin: 0;
}
.brand-res__cols {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
@media screen and (min-width: 64em) {
  .brand-res__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.brand-res__label {
  font-size: 0.875rem;
  margin: 0 0 8px;
  color: #141414;
}
.brand-res__select {
  background: white;
  border: 1px solid #CACACA;
  padding: 16px;
  height: 54px;
  width: 100%;
  max-width: 540px;
}
.brand-res__inner {
  background: #F3F3F3;
  border-radius: 16px 0;
  padding: 40px 20px;
}
@media screen and (min-width: 64em) {
  .brand-res__inner {
    border-radius: 40px 0;
    padding: 60px 60px;
  }
}
.brand-res__buttons {
  margin: 20px 0 0;
}
.brand-res__button {
  display: flex !important;
  gap: 8px;
  padding: 16px 14px !important;
  width: -moz-fit-content;
  width: fit-content;
}
.brand-res__button img {
  width: 24px;
  margin-top: -4px;
}
.brand-res__checkbox {
  display: flex;
}
.brand-res__checkbox input {
  margin: 0;
}
.brand-res__terms-link {
  color: #2E40FF !important;
  text-decoration: underline;
}

.brand-res-side {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.brand-res-side--active {
  z-index: 30;
}
.brand-res-side__bg {
  background: rgba(20, 20, 20, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 300ms;
}
.brand-res-side--active .brand-res-side__bg {
  opacity: 1;
}
.brand-res-side__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 490px;
  padding: 60px 20px;
  background: white;
  border-radius: 30px 0 0 0;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  transform: translateX(100%);
  transition: transform 300ms;
}
@media screen and (min-width: 64em) {
  .brand-res-side__inner {
    padding: 60px;
  }
}
.brand-res-side--active .brand-res-side__inner {
  transform: translateX(0);
}
.brand-res-side__close {
  width: 24px;
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}
@media screen and (min-width: 64em) {
  .brand-res-side__close {
    top: 30px;
    right: 30px;
  }
}
.brand-res-side__thumb {
  width: 100%;
}
.brand-res-side__thumb-title {
  font-size: 1.125rem;
  color: #2E40FF;
  margin: 14px 0 0;
}
@media screen and (min-width: 64em) {
  .brand-res-side__thumb-title {
    font-size: 1.375rem;
    margin-top: 20px;
  }
}
.brand-res-side__download-link {
  margin: 4px 0 0;
  text-decoration: underline;
  color: #141414;
}
.brand-res-side__box {
  background: #F3F3F3;
  padding: 20px;
  margin: 20px 0 0;
}
@media screen and (min-width: 64em) {
  .brand-res-side__box {
    padding: 28px 40px 40px;
    margin-top: 60px;
  }
}
.brand-res-side__box-title {
  color: #FF3600;
  font-size: 1rem;
  margin: 0 0 10px;
}
@media screen and (min-width: 64em) {
  .brand-res-side__box-title {
    font-size: 1.125rem;
    margin-bottom: 14px;
  }
}
.brand-res-side__download {
  padding: 18px 0;
  text-align: left;
  border-bottom: 1px solid rgba(20, 20, 20, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.brand-res-side__download:first-child {
  padding-top: 0;
}
.brand-res-side__download:last-child {
  border: 0;
  padding-bottom: 0;
}
.brand-res-side__download-link {
  z-index: 1;
}
.brand-res-side__download-title {
  font-size: 1.125rem;
  margin: 0;
}
.brand-res-side__download-button {
  padding: 11px 10px;
  background: white;
  border-radius: 8px 0;
  margin: 0 0 0 auto;
}
.brand-res-side__download-icon {
  width: 24px;
}
.brand-res-side__download-small {
  font-size: 0.75rem;
  margin: 0;
  line-height: 1;
  opacity: 0.5;
}
.brand-res-side__close-link {
  font-size: 1rem;
  margin: 20px 0 0;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (min-width: 64em) {
  .brand-res-side__close-link {
    font-size: 1.125rem;
  }
}

.terms-modal {
  border: 0;
  border-radius: 16px 0 16px 0;
  background: white;
  padding: 28px 20px;
  text-align: left;
  max-width: calc(100% - 64px);
  margin: auto;
  height: auto;
  min-height: auto;
}
@media screen and (min-width: 64em) {
  .terms-modal {
    text-align: center;
    padding: 64px;
    width: 804px;
    max-width: 804px;
  }
}
.terms-modal__title {
  font-size: 1.375rem;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #FF3600;
}
@media screen and (min-width: 64em) {
  .terms-modal__title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
.terms-modal__copy p {
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (min-width: 64em) {
  .terms-modal__copy p {
    font-size: 1.125rem;
  }
}
.terms-modal__copy p:last-child {
  margin-bottom: 0;
}

.agreements-terms-list-2024 {
  padding-top: 96px !important;
}
@media print, screen and (min-width: 40em) {
  .agreements-terms-list-2024 {
    padding-top: 156px !important;
  }
}
@media screen and (min-width: 64em) {
  .agreements-terms-list-2024 {
    padding-top: 216px !important;
  }
}
.agreements-terms-list-2024__content-top {
  margin-bottom: 25px;
}
@media screen and (min-width: 64em) {
  .agreements-terms-list-2024__content-top {
    margin-bottom: 100px;
  }
}
.agreements-terms-list-2024__title {
  font-size: 2.25rem;
  text-align: left;
  margin: 0px 0px 16px 0px;
}
@media print, screen and (min-width: 40em) {
  .agreements-terms-list-2024__title {
    margin: 0px;
  }
}
@media screen and (min-width: 64em) {
  .agreements-terms-list-2024__title {
    font-size: 4.625rem;
  }
}
.agreements-terms-list-2024__copy {
  font-size: 1.125rem;
  text-align: left;
  margin: 0px;
}
@media screen and (min-width: 64em) {
  .agreements-terms-list-2024__copy {
    font-size: 1.375rem;
  }
}
.agreements-terms-list-2024__links {
  padding: 0px 16px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  max-width: 79.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (min-width: 40em) {
  .agreements-terms-list-2024__links {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 28px;
    gap: 28px;
  }
}
.agreements-terms-list-2024__link {
  border: 1px solid rgba(20, 20, 20, 0.2509803922);
  border-radius: 28px 0px 28px 0px;
  padding: 25px;
  text-align: left;
  line-height: 26.4px;
}
@media screen and (min-width: 64em) {
  .agreements-terms-list-2024__link {
    line-height: 42px;
    padding: 40px;
  }
}
.agreements-terms-list-2024__link a {
  text-decoration: none;
  font-size: 22px;
}
@media screen and (min-width: 64em) {
  .agreements-terms-list-2024__link a {
    font-size: 28px;
  }
}
.agreements-terms-list-2024__link:hover {
  color: #2E40FF;
  outline: 1px solid #141414;
  cursor: pointer;
}

.individual-agreements-2024 {
  padding-top: 96px !important;
}
@media print, screen and (min-width: 40em) {
  .individual-agreements-2024 {
    padding-top: 136px !important;
  }
}
@media screen and (min-width: 64em) {
  .individual-agreements-2024 {
    padding-top: 176px !important;
  }
}
.individual-agreements-2024__title {
  font-size: 1.375rem;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (min-width: 64em) {
  .individual-agreements-2024__title {
    font-size: 3rem;
    margin-bottom: 40px;
  }
}
.individual-agreements-2024__subtitle {
  font-size: 1.375rem;
  text-align: left;
  margin-bottom: 8px;
}
@media screen and (min-width: 64em) {
  .individual-agreements-2024__subtitle {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
}
.individual-agreements-2024__button {
  background-color: #2E40FF;
  color: white !important;
  border-radius: 8px 0px;
  padding: 16px 28px;
  width: -moz-fit-content;
  width: fit-content;
}
.individual-agreements-2024__button a {
  text-decoration: none;
}
.individual-agreements-2024__button a:hover {
  color: white !important;
}
.individual-agreements-2024__button:hover {
  background-color: #0016fa;
  color: white !important;
}
@media screen and (min-width: 64em) {
  .individual-agreements-2024__download-outer {
    display: flex;
    align-items: center;
    gap: 28px;
  }
}
.individual-agreements-2024__download-info {
  text-align: left;
  margin-bottom: 0px;
}
@media print, screen and (max-width: 63.99875em) {
  .individual-agreements-2024__download-info {
    margin-top: 12px;
  }
}
.individual-agreements-2024__available-translations {
  background-color: #F3F3F3;
  border-radius: 28px 0px;
  padding: 20px;
  text-align: left;
  margin-top: 20px;
}
.individual-agreements-2024__available-translations p {
  margin-bottom: 0px;
}
@media screen and (min-width: 64em) {
  .individual-agreements-2024__available-translations {
    padding: 28px 40px;
    margin-top: 76px;
  }
}
.individual-agreements-2024__previous-versions {
  background-color: #F3F3F3;
  border-radius: 28px 0px;
  padding: 20px;
  margin-top: 20px;
  text-align: left;
}
.individual-agreements-2024__previous-versions p {
  margin-bottom: 0px;
}
@media screen and (min-width: 64em) {
  .individual-agreements-2024__previous-versions {
    padding: 28px 40px;
    margin-top: 28px;
  }
}
.individual-agreements-2024__translation-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.individual-agreements-2024__translation-link {
  background-color: white;
  padding: 12px 18px;
  border-radius: 8px 0px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  text-decoration: none;
}
.individual-agreements-2024__translation-link:hover {
  color: #2E40FF;
  outline: 1px solid #141414;
}

/* ====================================================
How components work next to each other - collapse padding
if two components have same background
======================================================= */
.wrapper--light + .wrapper--light,
.wrapper--lightGrey + .wrapper--lightGrey {
  padding-top: 0;
}

/* Import plugin styles */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
