/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
    display: none;
}
body {
  line-height: 1;
}
menu, ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}



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

*[hidden] {
  display: none !important;
}

*:focus-visible {
  outline: 4px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

@-ms-viewport {
  width: device-width;
}

html {
  display: flex;
  min-height: 100%; /* [3] */
  overflow-y: scroll; /* [2] */
/*  font-family: "Special Elite", system-ui;*/
  font-family: "Anton", system-ui;
  font-size: 100%; /* [1] */
  line-height: 1.7; /* [1] */
  font-weight: 400;
  font-style: normal;
  color: #fff;
  background: #1C1A17;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth; /* [4] */
  scroll-padding-top: 20px;
}

body {
  width: 100%;
  margin: 0;
  font-family: "Anton", system-ui;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  text-size-adjust: none;
}

a {
  color: inherit;
  text-decoration: none;

  &:hover {
    text-decoration: underline;
  }
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}





body {
/*  background: url('/background.jpg') center repeat-y;*/
/*  background-size: cover;*/
  background-color: #1C1A17;
}

.c-header {
  position: relative;
  height: 42.87vw;
  min-height: 326px;
  overflow: hidden;
  z-index: 1;
}

.c-header:after {
  content: '';
  position: absolute;
  height: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #1C1A17, #1C1A1700);
}

.c-header__background {
  position: absolute;
  width: 100%;
  min-width: 760px;
  height: auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 6px #00000055);

  @media (max-width: 719px) {
    width: 97px;
    height: 46px;
    top: 30px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    width: 145px;
    height: 69px;
    top: 35px;
  }

  @media (min-width: 1120px) {
    top: 70px;
  }
}

.c-button {
  display: inline-block;
  color: #fcc635;
  border: 2px solid #fcc635;
  border-radius: 8px;
  transition: color 0.1s ease, background-color 0.1s ease;

  @media (max-width: 719px) {
    padding-top: 8px;
    padding-right: 12px;
    padding-bottom: 8px;
    padding-left: 12px;
    font-size: 14px;
    line-height: 22px;
  }

  @media (min-width: 720px) {
    padding-top: 10px;
    padding-right: 16px;
    padding-bottom: 10px;
    padding-left: 16px;
    font-size: 16px;
    line-height: 24px;
  }
}

.c-button:hover {
  text-decoration: none;
  color: #111;
  background-color: #fcc635;
}

.c-main {
  position: relative;
  max-width: 1040px;
  margin-top: calc(-42.87vw / 4);
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  z-index: 2;
}

.c-main__section:not(:first-child) {

  @media (max-width: 719px) {
    margin-top: 40px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    margin-top: 60px;
  }

  @media (min-width: 1120px) {
    margin-top: 80px;
  }
}

.c-main__section--spaced {
  border-top: 1px solid #333;

  @media (max-width: 719px) {
    padding-top: 40px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    padding-top: 60px;
  }

  @media (min-width: 1120px) {
    padding-top: 80px;
  }
}

.c-main__title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #fff;

  @media (max-width: 719px) {
    font-size: 24px;
    line-height: 34px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    font-size: 42px;
    line-height: 52px;
  }

  @media (min-width: 1120px) {
    font-size: 60px;
    line-height: 70px;
  }
}

.c-main__title .c-main__small {
  color: #ECCFB2;

  @media (max-width: 719px) {
    font-size: 16px;
    line-height: 16px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    font-size: 22px;
    line-height: 22px;
  }

  @media (min-width: 1120px) {
    font-size: 28px;
    line-height: 28px;
  }
}

.orange {
  color: #DA8233;
}

.c-main__more {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 25px;
}

.c-main__picture {
  width: 100%;
  height: auto;
  margin-top: 40px;
  border: 1px solid #444;
}

.c-main__player {

  @media (max-width: 719px) {
    margin-top: 20px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    margin-top: 30px;
  }

  @media (min-width: 1120px) {
    margin-top: 40px;
  }
}

.c-player {
  position: relative;
  padding-top: 56.25%;
}

.c-player__iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-main__subtitle {
  text-transform: uppercase;

  @media (max-width: 719px) {
    font-size: 20px;
    line-height: 28px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    font-size: 26px;
    line-height: 34px;
  }

  @media (min-width: 1120px) {
    font-size: 32px;
    line-height: 40px;
  }
}

.c-main__subtitle strong {
  font-weight: 400;
  color: #e4d0bc;
}


.c-merch {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.c-merch__item {
  flex: 0 0 50%;
  width: 50%;

  @media (max-width: 719px) {
    padding: 10px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    padding: 20px;
  }

  @media (min-width: 1120px) {
    padding: 30px;
  }
}

.c-merch__link {

}

.c-merch__picture {
  width: 100%;
  height: auto;
}



.c-main__dates {

  @media (max-width: 719px) {
    margin-top: 20px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    margin-top: 30px;
  }

  @media (min-width: 1120px) {
    margin-top: 40px;
  }
}

.c-dates {}

.c-dates__item {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #686665;

  @media (max-width: 559px) {
    font-size: 14px;
    line-height: 22px;
  }

  @media (min-width: 560px) {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  @media (min-width: 560px) and (max-width: 719px) {
    min-height: 82px;
  }

  @media (min-width: 720px) {
    min-height: 88px;
  }

  @media (min-width: 560px) and (max-width: 1119px) {
    font-size: 18px;
    line-height: 26px;
  }

  @media (min-width: 1120px) {
    font-size: 20px;
    line-height: 28px;
  }
}

.c-dates__item:first-child {
  border-top: 1px solid #686665;
}

.c-dates__text {
  text-transform: uppercase;
}

.c-dates__label {
  color: #e4d0bc;
}

.c-dates__suffix {
  font-family: "Barlow Condensed", system-ui;
  font-size: 14px;
  font-weight: 400;
}

.c-dates__button {

  @media (max-width: 559px) {
    margin-top: 12px;
  }
}

.c-main__poster {
  width: 100%;
  height: auto;

  @media (max-width: 719px) {
    margin-top: 40px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    margin-top: 60px;
  }

  @media (min-width: 1120px) {
    margin-top: 80px;
  }
}

.c-main__moon {
  font-size: 60px;
  line-height: 70px;
  text-align: center;
}

.c-main__moon:not(:first-child) {

  @media (max-width: 719px) {
    margin-top: 80px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    margin-top: 120px;
  }

  @media (min-width: 1120px) {
    margin-top: 160px;
  }
}

.c-main__diary {
  margin-top: 40px;
}

.c-main__box {

  @media (max-width: 719px) {
    margin-top: 40px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    margin-top: 60px;
  }

  @media (min-width: 1120px) {
    margin-top: 80px;
  }
}

.c-diary {

  @media (min-width: 720px) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  @media (max-width: 1119px) {
    margin-right: -24px;
    margin-left: -24px;
  }

  @media (min-width: 1120px) {
    margin-right: -40px;
    margin-left: -40px;
  }
}

.c-diary__item {

  @media (max-width: 719px) {
    padding-right: 24px;
    padding-left: 24px;
  }

  @media (min-width: 720px) {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.c-diary__item:first-child {
  flex: 0 0 100%;
  width: 100%;
  text-align: center;

  @media (max-width: 719px) {
    padding-bottom: 40px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    padding-bottom: 60px;
  }

  @media (min-width: 1120px) {
    padding-bottom: 80px;
  }
}

.c-diary__item:not(:first-child) {

  @media (max-width: 719px) {
    margin-top: 40px;
  }

  @media (min-width: 720px) {
    flex: 0 0 50%;
    width: 50%;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  @media (min-width: 1120px) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.c-diary__label {
  color: #e4d0bc;
}

.c-diary__item:first-child .c-diary__label {

  @media (max-width: 719px) {
    font-size: 16px;
    line-height: 24px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    font-size: 18px;
    line-height: 26px;
  }

  @media (min-width: 1120px) {
    font-size: 20px;
    line-height: 28px;
  }
}

.c-diary__item:not(:first-child) .c-diary__label {

  @media (max-width: 1119px) {
    font-size: 12px;
    line-height: 20px;
  }

  @media (min-width: 1120px) {
    font-size: 14px;
    line-height: 22px;
  }
}

.c-diary__text {}

.c-diary__item:first-child .c-diary__text {

  @media (max-width: 719px) {
    font-size: 20px;
    line-height: 28px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    font-size: 26px;
    line-height: 34px;
  }

  @media (min-width: 1120px) {
    font-size: 32px;
    line-height: 40px;
  }
}

.c-diary__item:first-child .c-diary__text:not(:first-child) {
  margin-top: 12px;
}

.c-diary__item:not(:first-child) .c-diary__text {

  @media (max-width: 719px) {
    font-size: 14px;
    line-height: 22px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    font-size: 16px;
    line-height: 24px;
  }

  @media (min-width: 1120px) {
    font-size: 20px;
    line-height: 28px;
  }
}

.c-diary__item:not(:first-child) .c-diary__text:not(:first-child) {
  margin-top: 6px;
}

.c-diary__text a {
  color: #fcc635;
  text-decoration: underline;
}

.c-diary__text a:hover {
  text-decoration: none;
}

.c-box {
  text-align: center;
  background-color: #060606;
  border-radius: 24px;

  @media (max-width: 719px) {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
  }

  @media (min-width: 1120px) {
    padding-top: 56px;
    padding-right: 56px;
    padding-bottom: 56px;
    padding-left: 56px;
  }
}

.c-box__text {

  @media (max-width: 719px) {
    font-size: 14px;
    line-height: 22px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    font-size: 18px;
    line-height: 26px;
  }

  @media (min-width: 1120px) {
    font-size: 20px;
    line-height: 28px;
  }
}

.c-box__text a {
  text-decoration: underline;
  color: #fcc635;
}

.c-box__text a:hover {
  text-decoration: none;
}

.c-box__button {

  @media (max-width: 719px) {
    margin-top: 12px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    margin-top: 16px;
  }

  @media (min-width: 1120px) {
    margin-top: 24px;
  }
}

.s-richtext {
  font-family: "Barlow Condensed", system-ui;
  font-weight: 400;
  text-align: justify;

  @media (max-width: 479px) {
    font-size: 16px;
    line-height: 24px;
  }

  @media (min-width: 480px) {
    font-size: 20px;
    line-height: 28px;
  }
}

.s-richtext strong {
  font-weight: 600;
}

.s-richtext > *:not(:first-child) {
  margin-top: 20px;
}

.s-richtext h2 {
  font-family: "Anton", system-ui;
  text-align: center;
  text-transform: uppercase;

  @media (max-width: 719px) {
    font-size: 20px;
    line-height: 28px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    font-size: 26px;
    line-height: 34px;
  }

  @media (min-width: 1120px) {
    font-size: 32px;
    line-height: 40px;
  }
}

.s-richtext h2 strong {
  font-weight: 400;
  color: #e4d0bc;
}

.c-footer {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  font-size: 16px;
  line-height: 24px;

  @media (min-width: 480px) {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  @media (max-width: 719px) {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  @media (min-width: 720px) and (max-width: 1119px) {
    margin-top: 60px;
    padding-bottom: 60px;
  }

  @media (min-width: 1120px) {
    margin-top: 80px;
    padding-bottom: 80px;
  }
}

.c-footer__side {

  @media (max-width: 479px) {
    text-align: center;
  }
}

.c-footer__side:first-child {

  @media (min-width: 480px) {
    flex: 0 1 auto;
    max-width: 720px;
    margin-right: 80px;
  }
}

.c-footer__side:not(:first-child) {

  @media (max-width: 479px) {
    margin-top: 40px;
  }

  @media (min-width: 480px) {
    flex: 0 0 auto;
  }
}

.c-footer__text {
  font-family: "Barlow Condensed", system-ui;
  font-weight: 400;

  @media (max-width: 479px) {
    text-align: center;
  }

  @media (min-width: 480px) {
    text-align: justify;
  }
}

.c-footer__list {}

.c-footer__item {}

.c-footer__link {
  text-decoration: underline;
  color: #fcc635;
}

.c-footer__link:hover {
  text-decoration: none;
}

.u-visually-hidden {
  display: block;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(1px);
  visibility: hidden;
  white-space: nowrap;
  position: absolute;
}
