@font-face {
  font-family: Thunder;
  src: url('../fonts/Thunder-VF.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --white-smoke: #f0f0f0;
}

body {
  background-color: var(--black);
  color: var(--white-smoke);
  font-family: Thunder, sans-serif;
  font-size: 1vw;
  line-height: 1.6;
  overflow: hidden;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 9em;
  font-weight: 700;
  line-height: .7;
}

h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: .17em;
  font-size: 8em;
  font-weight: 700;
  line-height: .7;
}

h3 {
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.9em;
  font-weight: 700;
  line-height: .8;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: .85em;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
}

a {
  font-size: 1em;
  text-decoration: none;
}

blockquote {
  border-left: .4em solid #e2e2e2;
  margin-bottom: 1em;
  padding: 1em 2em;
  font-size: 140%;
  line-height: 1.6;
}

.link {
  z-index: 2;
  box-sizing: border-box;
  background-image: linear-gradient(#0000 49%, #000000b0 73%);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 1.5em 2em;
  transition: opacity .2s;
  display: flex;
  position: relative;
}

.link.is--hero {
  z-index: 2;
  background-image: linear-gradient(#0000 49%, #000000b0 73%);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  display: flex;
  position: relative;
  inset: 0%;
}

.link.is--hero.is--playing, .link.is--playing {
  opacity: 0;
}

.style_item {
  border-bottom: .1em solid #bdbdbd;
  padding: 2em 0;
}

.html {
  width: 0;
  height: 0;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.c-rich-text p {
  margin-top: .5em;
  margin-bottom: 2em;
}

.c-rich-text h1, .c-rich-text h2, .c-rich-text h3 {
  margin-top: .2em;
  margin-bottom: .2em;
}

.c-rich-text h4 {
  margin-top: .2em;
  margin-bottom: .6em;
}

.c-rich-text h5 {
  margin-top: .2em;
  margin-bottom: 1em;
}

.c-rich-text h6 {
  margin-top: .2em;
  margin-bottom: .2em;
}

.section.is--hero {
  justify-content: center;
  align-items: center;
  height: 100vh;
  transition: height .2s;
  display: flex;
  position: relative;
}

.card {
  z-index: 1;
  white-space: nowrap;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 33.3333%;
  height: 100%;
  transition: height .6s, width .6s;
  display: flex;
  position: relative;
  inset: 0% auto 0% 0%;
  overflow: hidden;
}

.card.is--center {
  top: auto;
  bottom: auto;
  left: auto;
}

.card.is--right {
  inset: 0% 0% 0% auto;
}

.card.is--open {
  z-index: 2;
  width: 100%;
}

.card.is--closed {
  width: 0%;
}

.card_media {
  z-index: 1;
  width: 100%;
  min-height: 100%;
  padding-top: 38%;
  transition: all .8s;
  position: absolute;
}

.card_media.is--playing {
  width: 90%;
  min-height: 0%;
}

.card_photo {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  inset: 0%;
}

.card_video {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.link_heading {
  transition: all .6s;
}

.link_heading.is--open {
  font-size: 14em;
}

.link_sub {
  white-space: normal;
  max-width: 100%;
  font-size: 2.5em;
  line-height: .9;
  transition: all .6s;
  display: block;
}

.link_sub.is--open {
  font-size: 2.4em;
  transform: translate(.8em);
}

.play_button {
  z-index: 3;
  background-color: var(--black);
  opacity: 0;
  background-image: url('../images/Play.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100vw;
  width: 6em;
  height: 6em;
  font-size: .5em;
  transition: all .2s;
}

.play_button.is--open {
  opacity: 1;
  font-size: 1em;
}

.play_button.is--open:hover {
  transform: scale(.9);
}

.play_button.is--open.is--playing {
  opacity: 0;
  transform-style: preserve-3d;
  background-image: url('../images/pause.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: .5em;
}

.play_button.is--open.is--playing:hover {
  opacity: 1;
  font-size: 1em;
  transform: scale(1);
}

.play_contain {
  z-index: 4;
  padding: 1.2em;
  position: absolute;
}

.play {
  justify-content: center;
  align-items: center;
  width: 6em;
  height: 6em;
  display: flex;
}

.overflow {
  width: 100%;
  overflow: hidden;
}

.video-vertical {
  grid-column-gap: 1.3em;
  grid-row-gap: 1.3em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 1.5em 2em;
  display: flex;
  position: absolute;
  inset: auto 0% 10%;
  transform: rotate(-90deg);
}

@media screen and (max-width: 991px) {
  .link {
    padding-left: 3em;
    padding-right: 3em;
  }

  .play_button.is--open.is--playing {
    transform: scale3d(1none, 1none, 1none);
  }

  .play_button.is--open.is--playing:hover {
    opacity: 0;
    font-size: .5em;
  }

  .video-vertical {
    padding-left: 3em;
    padding-right: 3em;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 2vw;
  }

  .section.is--hero {
    flex-direction: column;
  }

  .card {
    width: 100%;
    height: 33.3333%;
    transition-duration: .4s, .4s;
  }

  .card.is--open {
    height: 100%;
  }

  .card.is--closed {
    width: 100%;
    height: 0%;
  }

  .link_heading {
    transition-duration: .4s;
  }

  .link_heading.is--open {
    font-size: 12em;
  }

  .link_sub {
    font-size: 1.9em;
    transition-duration: .4s;
  }

  .link_sub.is--open {
    font-size: 1.9em;
    transform: translate(.6em);
  }

  .play_contain {
    font-size: 16px;
  }

  .video-vertical {
    padding: 1.5em 3em;
    bottom: auto;
    transform: rotate(0);
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 2.5vw;
  }

  .link_heading.is--open {
    font-size: 9em;
  }
}


@font-face {
  font-family: 'Thunder';
  src: url('../fonts/Thunder-VF.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}