@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&display=swap");
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}

a {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
}
a img {
  border: 0;
}

li {
  list-style: none;
}

fieldset {
  border: 0;
}

button {
  border: 0;
  text-align: left;
  background: transparent;
}

*:focus {
  outline: none;
}

button, input, textarea {
  font: inherit;
}

html {
  overflow-y: scroll;
  font-size: 90%;
}
@media screen and (min-width: 750px) {
  html {
    font-size: 75%;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 80%;
  }
}
@media screen and (min-width: 1150px) {
  html {
    font-size: 85%;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 90%;
  }
}
@media screen and (min-width: 1375px) {
  html {
    font-size: 95%;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 1750px) {
  html {
    font-size: 105%;
  }
}
@media screen and (min-width: 2150px) {
  html {
    font-size: 120%;
  }
}

body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.75;
  color: #000000;
  background-color: #ffffff;
}

::-webkit-scrollbar {
  width: 0.5714285714rem;
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 0;
}

::selection {
  background-color: #000000;
  color: #ebebeb;
}

.flash-messages {
  position: fixed;
  z-index: 999999;
  bottom: 2rem;
  right: 2rem;
  left: 2rem;
  pointer-events: none;
}
@media screen and (min-width: 750px) {
  .flash-messages {
    left: auto;
    width: 50%;
  }
}
@media screen and (min-width: 1150px) {
  .flash-messages {
    width: 35%;
  }
}

.cookie-notice {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate3d(0, 100%, 0);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-delay: 0s;
}
.cookie-notice.reveal {
  transform: translate3d(0, 0, 0);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-delay: 300ms;
}

.wysiwyg {
  /*
      Config
   */
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.75;
}
.wysiwyg--large {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  font-size: 1.25rem;
}
@media screen and (min-width: 750px) {
  .wysiwyg--large {
    font-size: 1.5rem;
  }
}

.wysiwyg p, .wysiwyg ul {
  margin-bottom: 2rem;
}
.wysiwyg p:last-child, .wysiwyg ul:last-child {
  margin-bottom: 0;
}
.wysiwyg ul, .wysiwyg ol {
  margin-left: 1.3333333333rem;
}
.wysiwyg ul li,
.wysiwyg ol li {
  padding-left: 0.6666666667rem;
  list-style: square;
}
.wysiwyg ul li:last-child,
.wysiwyg ol li:last-child {
  margin-bottom: 0;
}
.wysiwyg a {
  font-weight: 500;
  text-decoration: underline;
}
.wysiwyg strong {
  font-weight: bold;
}
.wysiwyg em {
  font-style: italic;
}

.video {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}
.video__button {
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
}
.video__button:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 1.1428571429rem solid #000000;
  border-bottom: 0.6666666667rem solid transparent;
  border-top: 0.6666666667rem solid transparent;
  transform: translate(-50%, -50%);
}
.video__thumb {
  position: relative;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.video__thumb:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.video:hover .video__thumb:after {
  opacity: 1;
}

.lightbox__overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  animation-fill-mode: both;
  transition: opacity 0.8s;
}
.lightbox__overlay:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  display: block;
  width: 3rem;
  height: 3rem;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(50%) translateY(50%);
  transition: opacity 0.4s;
  pointer-events: none;
  animation: spin 0.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.lightbox__overlay.hidden {
  display: none;
}
.lightbox__overlay.loading > div:after {
  animation: none;
}
.lightbox__overlay.loading:after {
  opacity: 1;
}
.lightbox__overlay > div {
  position: relative;
  display: flex;
  width: 20rem;
  height: 20rem;
  background-color: #ffffff;
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1), width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox__overlay > div > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: fadein 0.4s;
}
.lightbox__overlay > div .img-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  animation: fadein 3s;
}
.lightbox__overlay > div .video-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  animation: fadein 3s;
}
.lightbox__overlay > div .video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.lightbox__close {
  position: absolute;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -2rem;
  right: -2rem;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
  cursor: pointer;
}
.lightbox__close:before, .lightbox__close:after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 2rem;
  background-color: #000000;
  transform-origin: center;
}
.lightbox__close:before {
  transform: translateY(-50%) rotate(45deg);
}
.lightbox__close:after {
  transform: translateY(-50%) rotate(-45deg);
}
.lightbox__next {
  position: absolute;
  bottom: -3.5rem;
  right: 0;
  z-index: 9999;
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.75;
}
@media screen and (min-width: 650px) {
  .lightbox__next {
    top: 50%;
    right: -5.5rem;
    bottom: auto;
    margin-top: -2rem;
  }
}
.lightbox__next:after {
  content: "";
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url(img/check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.lightbox__prev {
  position: absolute;
  bottom: -3.5rem;
  left: 0;
  z-index: 9999;
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.75;
}
@media screen and (min-width: 650px) {
  .lightbox__prev {
    top: 50%;
    left: -5.5rem;
    bottom: auto;
    margin-top: -2rem;
  }
}
.lightbox__prev:after {
  content: "";
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url(img/check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.tnt-credit {
  /*
  	Config
   */
  display: block;
  width: 3.5rem;
}
.tnt-credit svg {
  display: block;
  width: 100%;
  height: auto;
}
.tnt-credit svg > * {
  fill: #000000;
}

.title {
  /*
      Config
   */
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
  font-size: 2.25rem;
  display: block;
}
@media screen and (min-width: 750px) {
  .title {
    font-size: 2.9rem;
  }
}
.title--secondary {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 1.25;
}
@media screen and (min-width: 750px) {
  .title--secondary {
    font-size: 1.9rem;
  }
}

.title--tertiary {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  font-size: 1.25rem;
}
@media screen and (min-width: 750px) {
  .title--tertiary {
    font-size: 1.5rem;
  }
}

.title--quaternary {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.33;
}

.title--dim {
  color: #ebebeb;
}

.select {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #000000;
  width: 100%;
}
@media screen and (min-width: 750px) {
  .select {
    width: 12rem;
  }
}
.select__selection {
  position: relative;
  padding-top: 2px;
  padding-bottom: 2px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.75;
  color: #000000;
  cursor: pointer;
  order: 0;
}
.select__selection:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.5714285714rem solid #000000;
  border-left: 0.3333333333rem solid transparent;
  border-right: 0.3333333333rem solid transparent;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.select--open .select__selection:before {
  transform: rotateX(180deg) translateY(0.3333333333rem);
}
.select__container {
  color: #000000;
  background: #ffffff;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  order: 1;
}
.select--open .select__container {
  max-height: 12rem;
  opacity: 1;
  overflow-y: scroll;
}
.select__container::-webkit-scrollbar {
  width: 2px;
  background: transparent;
  border-radius: 0;
}
.select__container::-webkit-scrollbar-thumb {
  background: #000000;
  min-height: 2rem;
  border-radius: 0;
}
.select__option {
  cursor: pointer;
}
.select__default-option {
  cursor: pointer;
  display: block;
}
.select--default .select__default-option {
  padding-top: 0;
  padding-bottom: 0;
  display: none;
}
.select__radio {
  display: none;
}
.select__label {
  padding-top: 2px;
  padding-bottom: 2px;
  cursor: pointer;
  width: 100%;
  display: block;
}

.publication-item {
  /*
      Config
   */
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  font-size: 1.25rem;
  position: relative;
  display: inline-block;
  color: #000000;
  width: 100%;
  padding: 2rem 0;
  padding-right: 3rem;
}
@media screen and (min-width: 750px) {
  .publication-item {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .publication-item {
    padding: 3rem 0;
    padding-right: 33.33%;
  }
}
.publication-item:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 1.1428571429rem solid #000000;
  border-left: 0.6666666667rem solid transparent;
  border-right: 0.6666666667rem solid transparent;
  right: 0;
}
@media screen and (min-width: 750px) {
  .publication-item:before {
    right: 8rem;
  }
}
.publication-item__comment {
  padding-top: 0.5rem;
}

.primary-nav-item {
  /*
      Config
   */
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  font-size: 1.25rem;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  color: #000000;
}
@media screen and (min-width: 750px) {
  .primary-nav-item {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .primary-nav-item {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.25;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 750px) and (min-width: 750px) {
  .primary-nav-item {
    font-size: 2.9rem;
  }
}
.primary-nav-item--active {
  border-bottom: #000000 solid 2px;
}

.primary-nav-item--dim {
  color: #ebebeb;
}

.photo {
  position: relative;
  display: block;
  width: 100%;
}
.photo img {
  display: block;
  width: 100%;
}
.photo__credit {
  position: absolute;
  bottom: -2rem;
  right: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.75;
}

.paragraph {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.75;
}
.paragraph--large {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  font-size: 1.25rem;
}
@media screen and (min-width: 750px) {
  .paragraph--large {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 750px) {
  .paragraph--pad-left {
    padding-left: 3rem;
  }
}

.paragraph__link {
  font-weight: 500;
  text-decoration: underline;
}

.logo {
  /*
      Config
   */
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.logo__icon {
  display: inline-block;
  width: 1.7rem;
  pointer-events: auto;
  transform-origin: top left;
  transform: scale(1);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 750px) {
  .logo__icon {
    width: 3.5rem;
  }
}
.logo__icon svg {
  display: block;
  width: 100%;
  fill: #000000;
}
@media screen and (min-width: 750px) {
  body.scroll .logo__icon {
    transform-origin: top left;
    transform: scale(0.5);
  }
}
@media screen and (min-width: 750px) {
  body.open-menu .logo__icon {
    transform-origin: top left;
    transform: scale(0.5);
  }
}
.logo__text {
  display: inline-block;
  padding-left: 1.1428571429rem;
  width: 9.75rem;
  pointer-events: auto;
  transition: opacity 150ms 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 650px) {
  .logo__text {
    width: 13rem;
  }
}
@media screen and (min-width: 750px) {
  .logo__text {
    width: 26rem;
  }
}
.logo__text svg {
  display: block;
  width: 100%;
  fill: #000000;
}
body.scroll .logo__text {
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
body.open-menu .logo__text {
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.language-select {
  position: relative;
}
.language-select__button {
  position: relative;
  display: block;
  padding-bottom: 2px;
  padding-right: 1rem;
  color: #000000;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.33;
  text-transform: uppercase;
  cursor: pointer;
}
.language-select__button:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.5714285714rem solid #000000;
  border-left: 0.3333333333rem solid transparent;
  border-right: 0.3333333333rem solid transparent;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.language-select--active .language-select__button:before {
  transform: rotateX(180deg) translateY(0.3333333333rem);
}
.language-select__content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(0);
  pointer-events: none;
  transition: transform 300ms 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.language-select__content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform-origin: left bottom;
}
.language-select--active .language-select__content {
  transform: translateY(-2px) translateY(100%);
  pointer-events: auto;
  transition: transform 300ms 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.language-select__item {
  width: 100%;
  color: #000000;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.33;
  text-transform: uppercase;
  margin: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms 0s cubic-bezier(0.4, 0, 1, 1);
}
.language-select__item:first-child {
  margin-top: 1rem;
}
.language-select--active .language-select__item {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 150ms 150ms cubic-bezier(0.4, 0, 1, 1);
}

.label {
  /* for reference */
}

.icon-button {
  /*
  	Config
   */
  display: inline-block;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #000000;
}
.icon-button--dim {
  border-color: #ebebeb;
}

.icon {
  /*
  	Config
   */
  display: block;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
}
@media screen and (min-width: 650px) {
  .icon {
    width: 1.1428571429rem;
    height: 1.1428571429rem;
  }
}
.icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #000000;
}
.icon--dim svg {
  fill: #ebebeb;
}

.hamburger {
  /*
      Config
   */
  position: relative;
  display: block;
  padding-bottom: 2px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.33;
  color: #000000;
  cursor: pointer;
  transition: color 150ms cubic-bezier(0.4, 0, 1, 1);
}
.hamburger:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform-origin: left bottom;
  transition: transform 150ms cubic-bezier(0.4, 0, 1, 1);
}
body.open-menu .hamburger:before {
  transform: rotate(-45deg) translateY(0.55rem);
}
.hamburger:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform-origin: right bottom;
  transition: transform 150ms cubic-bezier(0.4, 0, 1, 1);
}
body.open-menu .hamburger:after {
  transform: rotate(45deg) translateY(0.55rem);
}
body.open-menu .hamburger {
  color: transparent;
}

.field-button {
  position: relative;
  display: block;
  width: 100%;
}
.field-button__button {
  position: absolute;
  z-index: 1;
  right: -1.4166666667rem;
  top: 50%;
  height: 3.5rem;
  width: 3.5rem;
  cursor: pointer;
  transform: translateY(-50%) translateY(-2px);
}
.field-button__button:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  top: 1.75rem;
  right: 1.75rem;
  transform: translate(50%, -50%);
  width: 0;
  height: 0;
  border-top: 0.3333333333rem solid transparent;
  border-bottom: 0.3333333333rem solid transparent;
  border-left: 0.5714285714rem solid #000000;
}

.field {
  /*
      Config
   */
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.75;
  display: block;
  width: 100%;
  padding: 0.3333333333rem 0;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid #000000;
  color: #000000;
  background-color: #ffffff;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.field::-ms-expand {
  display: none;
}
.field::placeholder {
  color: #000000;
}
.field:active, .field:focus {
  border-color: #ebebeb;
}
.field--negative {
  border: none;
}

.direction-button {
  display: block;
  cursor: pointer;
}
.direction-button__text {
  position: relative;
  display: inline-block;
  padding-right: 1.3333333333rem;
}
.direction-button__text:before {
  content: "";
  position: absolute;
  display: inline-block;
  z-index: 1;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-top: 0.3333333333rem solid transparent;
  border-bottom: 0.3333333333rem solid transparent;
  border-left: 0.5714285714rem solid #000000;
}
.direction-button--reverse .direction-button__text {
  padding-right: 0;
  padding-left: 1.3333333333rem;
}
.direction-button--reverse .direction-button__text:before {
  right: auto;
  left: 0;
  transform: translate(0, -50%) scaleX(-1);
}
.direction-button__title {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 1.25;
}
@media screen and (min-width: 750px) {
  .direction-button__title {
    font-size: 1.9rem;
  }
}

.company-name {
  /*
  	Config
   */
  color: #ebebeb;
}

.checkbox {
  /*
      Config
   */
  position: relative;
  padding-left: 2rem;
  touch-callout: none;
  user-select: none;
}
.checkbox__field {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  opacity: 0;
}
.checkbox__label:before, .checkbox__label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  transform: translateY(0.3333333333rem);
}
.checkbox__label:before {
  border: 2px solid #000000;
  background-color: #ffffff;
  vertical-align: middle;
}
.checkbox__label:after {
  transform: translateY(0.3333333333rem) scale(0.01);
  background-color: #000000;
  transition: background-color 0.1s, transform 0.15s;
}
.checkbox__label a {
  border-bottom: 1px solid #000000;
}
.checkbox input:checked + label:after {
  transform: translateY(0.3333333333rem) scale(1);
}

.button {
  /*
      Config
   */
  position: relative;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.33;
  color: #000000;
}
.button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform-origin: left bottom;
  transition: transform 150ms cubic-bezier(0.4, 0, 1, 1);
}
.button--negative {
  color: #ffffff;
}
.button--negative:before {
  background-color: #ffffff;
}

.wrap {
  position: relative;
  flex-grow: 1;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (min-width: 750px) {
  .wrap {
    padding: 0 7.3333333333%;
  }
}
@media screen and (min-width: 1500px) {
  .wrap {
    padding: 0 11%;
  }
}
@media screen and (min-width: 750px) {
  .wrap--small {
    padding: 0 11.6666666667%;
  }
}
@media screen and (min-width: 1500px) {
  .wrap--small {
    padding: 0 17.5%;
  }
}

@media screen and (min-width: 750px) {
  .wrap--large {
    padding: 0 2.6666666667%;
  }
}
@media screen and (min-width: 1500px) {
  .wrap--large {
    padding: 0 4%;
  }
}

.text-block {
  display: block;
  width: 100%;
}
.text-block__header {
  margin-bottom: 2rem;
}
.text-block__header > * {
  margin: 1rem 0;
}
.text-block__header > *:first-child {
  margin-top: 0;
}
.text-block__header > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 750px) {
  .text-block__main {
    padding-left: 3rem;
  }
}
.text-block--simple .text-block__main {
  padding-left: 0;
}
.text-block__content > * {
  margin: 2rem 0;
}
.text-block__content > *:first-child {
  margin-top: 0;
}
.text-block__content > *:last-child {
  margin-bottom: 0;
}
.text-block__footer {
  margin-top: 2rem;
}
@media screen and (min-width: 750px) {
  .text-block__footer {
    padding-left: 3rem;
  }
}
.text-block--simple .text-block__footer {
  padding-left: 0;
}

.row-item-list {
  display: block;
  width: 100%;
}
.row-item-list__header {
  margin-bottom: 2rem;
}
.row-item-list__main {
  display: block;
  width: 100%;
}
.row-item-list__item {
  margin: 2rem 0;
}
.row-item-list__item:first-child {
  margin-top: 0;
}
.row-item-list__item:last-child {
  margin-bottom: 0;
}

.row-item {
  /*
      Config
   */
  color: #000000;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.row-item__title {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  font-size: 1.25rem;
  padding-right: 2rem;
  flex-basis: 50%;
}
@media screen and (min-width: 750px) {
  .row-item__title {
    font-size: 1.5rem;
  }
}
.row-item__content {
  flex-basis: 50%;
}

.publication-list {
  width: 100%;
}
.publication-list__header {
  margin-bottom: 5rem;
}
@media screen and (min-width: 750px) {
  .publication-list__main {
    padding-left: 3rem;
  }
}
.publication-list__item {
  border-bottom: 2px solid #000000;
}
.publication-list__item:first-child {
  margin-top: 0;
}
.publication-list__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.primary-nav__item {
  margin: 0 2rem;
}
.primary-nav__item:first-child {
  margin-left: 0;
}
.primary-nav__item:last-child {
  margin-right: 0;
}
.primary-nav--alternate-direction {
  text-align: center;
  flex-direction: column;
}
@media screen and (min-width: 750px) {
  .primary-nav--alternate-direction {
    text-align: left;
  }
}
.primary-nav--alternate-direction .primary-nav__item {
  margin: 0.6666666667rem 0;
}
.primary-nav--alternate-direction .primary-nav__item:first-child {
  margin-top: 0;
}
.primary-nav--alternate-direction .primary-nav__item:last-child {
  margin-bottom: 0;
}

.pagination {
  /**
  	Config
   */
  display: flex;
  align-items: center;
}
.pagination__previous {
  margin-right: 1.3333333333rem;
  cursor: pointer;
}
.pagination__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 0.2rem;
  transition: color 0.25s, background-color 0.2s;
}
.pagination__item:first-child {
  margin-left: 0;
}
.pagination__item:last-child {
  margin-right: 0;
}
.pagination__item > * {
  padding: 0.25rem;
}
.pagination__item:hover, .pagination__item:active {
  color: #ffffff;
  background-color: #ebebeb;
}
.pagination__active-item {
  color: #ffffff;
  background-color: #ebebeb;
}
.pagination__next {
  margin-left: 1.3333333333rem;
  cursor: pointer;
}

.newsletter-subscribe-prompt {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.newsletter-subscribe-prompt__content {
  display: block;
  width: 90%;
  padding: 3rem 4rem;
  color: #000000;
  background-color: #ffffff;
  animation: fadeInContent both 0.35s 0.25s ease-in;
}
@media screen and (min-width: 750px) {
  .newsletter-subscribe-prompt__content {
    width: 75%;
  }
}
@media screen and (min-width: 1150px) {
  .newsletter-subscribe-prompt__content {
    width: 45%;
  }
}
.newsletter-subscribe-prompt__title {
  display: block;
  margin-bottom: 1.3333333333rem;
  color: #000000;
}
@media screen and (min-width: 650px) {
  .newsletter-subscribe-prompt__title {
    margin-bottom: 2rem;
  }
}
.newsletter-subscribe-prompt__description {
  display: block;
  margin-bottom: 2rem;
}
.newsletter-subscribe-prompt__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.newsletter-subscribe-prompt__footer .link-button {
  color: #000000;
}
.newsletter-subscribe-prompt__overlay {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
  animation: fadeInOverlay both 0.3s ease;
}
.newsletter-subscribe-prompt__close-button {
  position: absolute;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0.6666666667rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
}
@media screen and (min-width: 750px) {
  .newsletter-subscribe-prompt__close-button {
    top: 1.6rem;
    right: 1.6rem;
    width: 5rem;
    height: 5rem;
  }
}
.newsletter-subscribe-prompt__close-button:before, .newsletter-subscribe-prompt__close-button:after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 3rem;
  background-color: #ffffff;
  transform-origin: center;
}
.newsletter-subscribe-prompt__close-button:before {
  transform: translateY(-50%) rotate(45deg);
}
.newsletter-subscribe-prompt__close-button:after {
  transform: translateY(-50%) rotate(-45deg);
}

@keyframes fadeInContent {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.newsletter-block {
  display: block;
  width: 100%;
}
.newsletter-block__header {
  margin-bottom: 2rem;
}
@media screen and (min-width: 750px) {
  .newsletter-block__main {
    padding-left: 3rem;
  }
}
.newsletter-block__main > * {
  margin: 1rem 0;
}
.newsletter-block__main > *:first-child {
  margin-top: 0;
}
.newsletter-block__main > *:last-child {
  margin-bottom: 0;
}

.news-card-grid {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}
.news-card-grid__header {
  margin-bottom: 2rem;
}
@media screen and (min-width: 750px) {
  .news-card-grid__header {
    margin-bottom: 4rem;
  }
}
.news-card-grid__main {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
}
@media screen and (min-width: 750px) {
  .news-card-grid__main {
    padding-left: 3rem;
  }
}
.news-card-grid__item {
  padding: 4.5rem;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  border-bottom: solid 2px #000000;
  border-right: solid 2px #000000;
}
.news-card-grid__item:only-child {
  border: none;
}
@media screen and (min-width: 750px) {
  .news-card-grid__item {
    width: 50%;
  }
}
@media screen and (min-width: 1150px) {
  .news-card-grid__item {
    width: 33.33%;
  }
}
.news-card-grid__footer {
  margin-top: 2rem;
}

.news-card {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}
.news-card__content {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.news-card__header {
  margin-bottom: 1.5rem;
}
.news-card__subtitle {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 0.96rem;
  letter-spacing: 0.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.news-card__title {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  font-size: 1.25rem;
}
@media screen and (min-width: 750px) {
  .news-card__title {
    font-size: 1.5rem;
  }
}
.news-card__footer {
  margin-top: 1rem;
}

.message {
  /*
  	Config
   */
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  background-color: #000000;
}
.message__text {
  color: #ffffff;
}
.message__text a {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.message__footer {
  margin-left: 2rem;
}

.media-grid {
  display: block;
  width: 100%;
}
.media-grid__item {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}
.media-grid__item:last-child {
  margin-bottom: 0;
}

.linkset {
  width: 100%;
}
.linkset__selectors {
  width: 100%;
  display: flex;
  margin-bottom: 3rem;
  flex-direction: row;
  align-items: flex-start;
}
@media screen and (min-width: 750px) {
  .linkset__selectors {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.linkset__selector-item {
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 1.25;
  line-height: 1;
  cursor: pointer;
  position: relative;
  margin: 0 1rem;
}
@media screen and (min-width: 750px) {
  .linkset__selector-item {
    font-size: 1.9rem;
  }
}
.linkset__selector-item:first-child {
  margin-left: 0;
}
.linkset__selector-item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 750px) {
  .linkset__selector-item {
    margin: 0 2rem;
  }
  .linkset__selector-item:first-child {
    margin-left: 0;
  }
  .linkset__selector-item:last-child {
    margin-right: 0;
  }
}
.linkset__selector-item--active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform-origin: left bottom;
  transition: transform 150ms cubic-bezier(0.4, 0, 1, 1);
}
.linkset__contents {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.linkset__content-item {
  display: none;
  width: 100%;
}
.linkset__content-item > * {
  margin: 3rem 0;
}
.linkset__content-item > *:first-child {
  margin-top: 0;
}
.linkset__content-item > *:last-child {
  margin-bottom: 0;
}
.linkset__content-item--active {
  display: block;
}

.icon-group {
  display: flex;
  flex-wrap: wrap;
}
.icon-group__item {
  margin: 0 0.4rem;
}
.icon-group__item:first-child {
  margin-left: 0;
}
.icon-group__item:last-child {
  margin-right: 0;
}

.form {
  display: block;
  width: 100%;
}
.form__header {
  margin-bottom: 2rem;
}
.form__content > * {
  margin-bottom: 2rem;
}
.form__content > *:last-child {
  margin-bottom: 0;
}
.form__footer {
  margin-top: 2rem;
}

.flash-message-list {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}
.flash-message-list__item {
  position: relative;
  margin-top: 1rem;
}
.flash-message-list__item:last-child {
  margin-top: 0;
}
@keyframes reveal-in {
  0% {
    transform: translateY(100%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(1) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 200ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 2700ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(200%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(2) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 400ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 2900ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(300%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(300%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(3) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 600ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 3100ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(400%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(400%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(4) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 800ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 3300ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(500%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(500%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(5) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 1000ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 3500ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(600%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(600%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(6) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 1200ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 3700ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(700%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(700%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(7) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 1400ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 3900ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(800%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(800%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(8) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 1600ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 4100ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(900%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(900%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(9) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 1800ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 4300ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(1000%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1000%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(10) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 2000ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 4500ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(1100%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1100%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(11) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 2200ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 4700ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(1200%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1200%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(12) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 2400ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 4900ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(1300%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1300%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(13) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 2600ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 5100ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(1400%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1400%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(14) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 2800ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 5300ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(1500%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1500%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(15) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 3000ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 5500ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(1600%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1600%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(16) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 3200ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 5700ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(1700%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1700%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(17) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 3400ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 5900ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(1800%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1800%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(18) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 3600ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 6100ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(1900%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1900%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(19) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 3800ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 6300ms forwards;
}
@keyframes reveal-in {
  0% {
    transform: translateY(2000%) translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(2000%) translateY(2rem);
  }
}
.flash-message-list__item:nth-child(20) {
  animation: reveal-in 1s cubic-bezier(0.4, 0, 0.2, 1) 4000ms both, reveal-out 1s cubic-bezier(0.4, 0, 0.2, 1) 6500ms forwards;
}

.flash-message {
  /*
  	Config
   */
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.6rem 2rem;
  color: #ffffff;
  background-color: #000000;
}
.fieldset-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.fieldset-group__item {
  display: flex;
  flex: 1 1 100%;
  margin-bottom: 2rem;
}
.fieldset-group__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 650px) {
  .fieldset-group__item {
    flex: 1 1 auto;
    margin: 0 1.3333333333rem;
  }
  .fieldset-group__item:first-child {
    margin-left: 0;
  }
  .fieldset-group__item:last-child {
    margin-right: 0;
  }
}

.fieldset {
  display: block;
  width: 100%;
  color: #000000;
}
.fieldset__label {
  margin-bottom: 0.5rem;
}
.fieldset--required .fieldset__label > label {
  position: relative;
}
.fieldset--required .fieldset__label > label:after {
  content: "(*)";
  position: absolute;
  right: -1.3333333333rem;
}
.fieldset__input {
  /* for reference */
}

.content-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.content-block--reverse {
  flex-direction: row-reverse;
}

@media screen and (min-width: 650px) {
  .content-block {
    padding: 0;
  }
}
.content-block__column {
  width: 100%;
  margin-bottom: 3rem;
}
.content-block__column > * {
  margin: 4rem 0;
}
.content-block__column > *:first-child {
  margin-top: 0;
}
.content-block__column > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .content-block__column {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 750px) {
  .content-block__column-left {
    width: 50%;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 750px) {
  .content-block--reverse .content-block__column-left {
    padding-left: 1rem;
    padding-right: 0;
  }
}
@media screen and (min-width: 750px) {
  .content-block__column-right {
    width: 50%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1150px) {
  .content-block__column-right {
    width: 50%;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

.contact-card-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-card-grid__header {
  margin-bottom: 3rem;
}
.contact-card-grid__main {
  display: grid;
  width: 100%;
  grid-gap: 2rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 750px) {
  .contact-card-grid__main {
    grid-gap: 6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-card-grid__footer {
  margin-top: 2rem;
}

.contact-card {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 2rem;
  border-bottom: 2px solid #000000;
}
.contact-card__header {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  font-size: 1.25rem;
}
@media screen and (min-width: 750px) {
  .contact-card__header {
    font-size: 1.5rem;
  }
}
.contact-card__footer {
  line-height: 1.75;
  padding-top: 1rem;
}
.contact-card__footer a {
  font-weight: 500;
  text-decoration: underline;
}

.column-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.column-block__column {
  width: 100%;
  padding: 2rem 0;
}
@media screen and (min-width: 750px) {
  .column-block__column {
    width: 50%;
  }
}
@media screen and (min-width: 1150px) {
  .column-block__column {
    width: 25%;
    padding: 0 3rem;
  }
}
.column-block__column:first-child {
  border-bottom: 2px solid #000000;
}
@media screen and (min-width: 750px) {
  .column-block__column:first-child {
    border-right: 2px solid #000000;
    border-bottom: none;
    padding-bottom: 2rem;
    padding-right: 3rem;
  }
}
@media screen and (min-width: 1150px) {
  .column-block__column:first-child {
    padding-left: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 750px) {
  .column-block__column:nth-child(2) {
    order: 3;
    width: 100%;
    border-top: 2px solid #000000;
    padding-top: 2rem;
  }
}
@media screen and (min-width: 1150px) {
  .column-block__column:nth-child(2) {
    order: unset;
    width: 50%;
    padding-top: 0;
    border-top: none;
  }
}
.column-block__column:nth-child(2) > * {
  margin: 3rem 0;
}
.column-block__column:nth-child(2) > *:first-child {
  margin-top: 0;
}
.column-block__column:nth-child(2) > *:last-child {
  margin-bottom: 0;
}
.column-block__column:last-child {
  border-top: 2px solid #000000;
}
@media screen and (min-width: 750px) {
  .column-block__column:last-child {
    border-top: none;
    padding-bottom: 2rem;
    padding-left: 3rem;
  }
}
@media screen and (min-width: 1150px) {
  .column-block__column:last-child {
    border-left: 2px solid #000000;
    padding-right: 0;
    padding-bottom: 0;
  }
}

.card-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.card-grid__header {
  margin-bottom: 2rem;
}
.card-grid__select {
  margin-bottom: 4rem;
}
@media screen and (min-width: 750px) {
  .card-grid__select {
    margin-bottom: 5rem;
    padding-left: 3rem;
  }
}
.card-grid__main {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
}
@media screen and (min-width: 750px) {
  .card-grid__main {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
}
.card-grid__item {
  padding: 1.5rem 0;
  flex: 1;
  width: 100%;
}
@media screen and (min-width: 750px) {
  .card-grid__item {
    padding: 3rem;
    width: 33.33%;
  }
}
.card-grid__footer {
  margin-top: 2rem;
}

.card {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}
.card__content {
  padding: 1.5rem 0;
}
@media screen and (min-width: 750px) {
  .card__content {
    padding: 3rem 0;
  }
}
.card__header {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  font-size: 1.25rem;
}
@media screen and (min-width: 750px) {
  .card__header {
    font-size: 1.5rem;
  }
}
.card__footer {
  padding-top: 1rem;
}

.button-list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 750px) {
  .button-list--align-right {
    align-items: flex-end;
  }
}

.button-list__item {
  display: flex;
  margin: 0.5rem 0;
}
.button-list__item:first-child {
  margin-top: 0;
}
.button-list__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 750px) {
  .button-list__item {
    margin: 0.3333333333rem 0;
  }
  .button-list__item:first-child {
    margin-top: 0;
  }
  .button-list__item:last-child {
    margin-bottom: 0;
  }
}
.button-list--large .button-list__item {
  margin: 2rem 0;
}
.button-list--large .button-list__item:first-child {
  margin-top: 0;
}
.button-list--large .button-list__item:last-child {
  margin-bottom: 0;
}
.button-list--compact .button-list__item {
  margin: 0 0;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
}
.button-group__item {
  display: flex;
  margin: 0 0.5rem;
}
.button-group__item:first-child {
  margin-left: 0;
}
.button-group__item:last-child {
  margin-right: 0;
}

.breadcrumbs {
  /*
  	Config
   */
  display: flex;
  align-items: center;
  color: #000000;
}
.breadcrumbs__item {
  position: relative;
  display: block;
  padding-left: 1rem;
  margin-left: 1rem;
}
.breadcrumbs__item:nth-last-child(n+3), .breadcrumbs__item:nth-last-child(n+4) {
  display: none;
}
.breadcrumbs__item:first-child {
  display: block;
  padding-left: 0;
  margin-left: 0;
}
.breadcrumbs__item:first-child:after {
  display: none;
}
.breadcrumbs__item:after {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  bottom: 0.15em;
  width: 1px;
  background-color: #000000;
}
@media screen and (min-width: 1024px) {
  .breadcrumbs__item:nth-last-child(n+3), .breadcrumbs__item:nth-last-child(n+4) {
    display: block;
  }
}

.banner {
  /*
  	Config
   */
  display: flex;
  width: 100%;
  height: 30vh;
  min-height: 20rem;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 650px) {
  .banner {
    height: 30vh;
    min-height: 35rem;
  }
}

.agenda-item-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.agenda-item-list__header {
  margin-bottom: 2rem;
}
.agenda-item-list__select {
  display: flex;
  margin-bottom: 1rem;
  flex-direction: column;
}
@media screen and (min-width: 750px) {
  .agenda-item-list__select {
    padding-left: 3rem;
    flex-direction: row;
    margin-bottom: 5rem;
  }
}
.agenda-item-list__select-item {
  margin: 0.5rem 0;
}
.agenda-item-list__select-item:first-child {
  margin-top: 0;
}
.agenda-item-list__select-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 750px) {
  .agenda-item-list__select-item {
    margin: 0 1rem;
  }
  .agenda-item-list__select-item:first-child {
    margin-left: 0;
  }
  .agenda-item-list__select-item:last-child {
    margin-right: 0;
  }
}
.agenda-item-list__main {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 750px) {
  .agenda-item-list__main {
    padding-left: 3rem;
  }
}
.agenda-item-list__item {
  padding: 2rem 0;
  border-bottom: 2px solid #000000;
}
.agenda-item-list__item:only-child {
  padding-bottom: 0;
  border-bottom: none;
}
.agenda-item-list__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.agenda-item-list__item--no-border {
  padding: 0;
  border-color: transparent;
  border: none;
}
.agenda-item-list__footer {
  margin-top: 2rem;
}

.agenda-item {
  display: grid;
  align-items: center;
  width: 100%;
  overflow: hidden;
  grid-gap: 1rem;
  grid-template-columns: 1.5fr 2.25fr;
}
@media screen and (min-width: 750px) {
  .agenda-item {
    grid-gap: 4rem;
    grid-row-gap: 1rem;
    height: 8rem;
    grid-auto-flow: column;
    grid-template-columns: minmax(10rem, 0.5fr) 10rem 2fr minmax(10rem, 1fr);
  }
}
.agenda-item--hidden {
  height: 0;
}

.agenda-item__photo {
  order: 1;
}
@media screen and (min-width: 750px) {
  .agenda-item__photo {
    order: unset;
    width: 8rem;
    grid-row: span 2;
    display: flex;
    align-items: center;
  }
}
.agenda-item__date {
  order: 2;
  padding-left: 2rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
  font-size: 2.25rem;
}
@media screen and (min-width: 750px) {
  .agenda-item__date {
    font-size: 2.9rem;
  }
}
@media screen and (min-width: 750px) {
  .agenda-item__date {
    padding: 0;
    order: unset;
    grid-row: span 2;
    display: flex;
    align-items: center;
  }
}
.agenda-item__title {
  order: 3;
  grid-column: span 2;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 1.25;
}
@media screen and (min-width: 750px) {
  .agenda-item__title {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 750px) {
  .agenda-item__title {
    order: unset;
    grid-column: unset;
  }
}
.agenda-item__location {
  order: 4;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.03rem;
  line-height: 1.3;
  font-size: 1.25rem;
  grid-column: span 2;
}
@media screen and (min-width: 750px) {
  .agenda-item__location {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 750px) {
  .agenda-item__location {
    order: unset;
    grid-column: unset;
  }
}
.agenda-item__location a {
  position: relative;
  text-decoration: underline;
  grid-column: unset;
}
.agenda-item__city {
  order: 5;
  grid-column: span 2;
}
@media screen and (min-width: 750px) {
  .agenda-item__city {
    order: unset;
    grid-column: unset;
    grid-row: span 2;
    display: flex;
    align-items: center;
  }
}

.address-item-list {
  display: block;
  width: 100%;
}
.address-item-list__item {
  margin: 2rem 0;
}
.address-item-list__item:first-child {
  margin-top: 0;
}
.address-item-list__item:last-child {
  margin-bottom: 0;
}

.address-item {
  /*
  	Config
   */
  color: #000000;
}
.address-item__link {
  display: inline-block;
  color: #ebebeb;
  border-bottom: 1px solid transparent;
}

.menu {
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
}
body.open-menu .menu {
  pointer-events: auto;
  opacity: 1;
}
.menu__wrap {
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 750px) {
  .menu__wrap {
    padding: 0 3rem;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1150px) {
  .menu__wrap {
    padding: 0 9rem;
  }
}
@media screen and (min-width: 750px) {
  .menu__navigation {
    flex-shrink: 0;
    padding-right: 8rem;
  }
}
@media screen and (min-width: 1150px) {
  .menu__navigation {
    padding-right: 10rem;
  }
}
.menu__column {
  display: none;
}
@media screen and (min-width: 750px) {
  .menu__column {
    display: block;
  }
}
.menu__column-item {
  margin: 4rem 0;
}
.menu__column-item:first-child {
  margin-top: 0;
}
.menu__column-item:last-child {
  margin-bottom: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  pointer-events: none;
  display: block;
  width: 100%;
  background-color: #ffffff;
}
@media screen and (min-width: 750px) {
  .header {
    background-color: transparent;
  }
}
.header .wrap {
  pointer-events: none;
}
.header__wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  height: 5rem;
}
@media screen and (min-width: 750px) {
  .header__wrap {
    height: 10rem;
  }
}
.header__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  pointer-events: auto !important;
}
.header__item {
  margin: 0 0.5rem;
}
.header__item:first-child {
  margin-left: 0;
}
.header__item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 750px) {
  .header__item {
    margin: 0 1rem;
  }
  .header__item:first-child {
    margin-left: 0;
  }
  .header__item:last-child {
    margin-right: 0;
  }
}

.footer {
  display: block;
  width: 100%;
  border-top: 2px solid #000000;
}
.footer__top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 6rem;
  padding-bottom: 5rem;
}
.footer__top > * {
  margin-bottom: 2rem;
}
@media screen and (min-width: 750px) {
  .footer__top > * {
    margin-bottom: 0;
  }
}
.footer__top > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 750px) {
  .footer__top {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.footer__top .column:nth-child(2) {
  display: flex;
  gap: 4rem;
}
.footer__bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1rem;
}
@media screen and (min-width: 750px) {
  .footer__bottom {
    align-items: center;
  }
}
.footer__disclaimer {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 750px) {
  .footer__disclaimer {
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
  }
}
@media screen and (min-width: 750px) {
  .footer__disclaimer-item {
    margin: 0 1.3333333333rem;
  }
  .footer__disclaimer-item:first-child {
    margin-left: 0;
  }
  .footer__disclaimer-item:last-child {
    margin-right: 0;
  }
}
.footer__credit {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 750px) {
  .footer__credit {
    margin-bottom: 0;
  }
}

.content-section {
  display: block;
  width: 100%;
  margin: 3rem 0;
}
@media screen and (min-width: 750px) {
  .content-section {
    margin: 6rem 0;
  }
}
.content-section:first-of-type {
  margin-top: 1rem;
}
@media screen and (min-width: 750px) {
  .content-section:first-of-type {
    margin-top: 6rem;
  }
}
.content-section:last-of-type {
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 750px) {
  .content-section:last-of-type {
    margin-bottom: 9rem;
  }
}
.content-section__header {
  margin-bottom: 2rem;
}
@media screen and (min-width: 750px) {
  .content-section__header {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 750px) {
  .content-section--pad-header .content-section__header {
    padding-left: 6rem;
  }
}
.content-section--center .content-section__header {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.content-section__content > * {
  margin-bottom: 2rem;
}
@media screen and (min-width: 750px) {
  .content-section__content > * {
    margin-bottom: 6rem;
  }
}
.content-section__content > *:last-child {
  margin-bottom: 0;
}
.content-section__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 4rem;
}

.carousel-section {
  display: block;
  width: 100%;
  margin: 3rem 0;
}
.carousel-section__carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin !important;
  scrollbar-color: #ffffff #ffffff !important;
}
.carousel-section__carousel::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 0;
  width: 0;
  background: transparent;
  border-radius: 0;
}
.carousel-section__carousel::-webkit-scrollbar-thumb {
  -webkit-appearance: none;
  background: #ffffff;
  border-radius: 0;
}
.carousel-section__carousel-item {
  flex: 0 0 70vw;
  margin: 0 2rem;
}
.carousel-section__carousel-item:first-child {
  margin-left: 0;
}
.carousel-section__carousel-item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 750px) {
  .carousel-section__carousel-item {
    flex: 0 0 30vw;
    margin: 0 3rem;
  }
}
@media screen and (min-width: 1150px) {
  .carousel-section__carousel-item {
    flex: 0 0 20vw;
    margin: 0 4rem;
  }
}
.carousel-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}