:root {
  --background: #000;
  --font: #fff;
  --font-inverse: #000;
  --highlight: rgb(223, 66, 153);
  --border: #fff;

  --fullHeight: 100vh;
}

/* Reset */
*,
*:before,
*:after {
  outline: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}

img {
  border: 0;
  max-width: 100%;
}

/* Fonts */
@font-face {
  font-family: 'walkway';
  src: url('/fonts/walkway_black-webfont.woff2') format('woff2'),
    url('/fonts/walkway_black-webfont.woff') format('woff'),
    url('/fonts/walkway_black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'walkway';
  src: url('/fonts/walkway_bold-webfont.woff2') format('woff2'),
    url('/fonts/walkway_bold-webfont.woff') format('woff'),
    url('/fonts/walkway_bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'walkway';
  src: url('/fonts/walkway_semibold-webfont.woff2') format('woff2'),
    url('/fonts/walkway_semibold-webfont.woff') format('woff'),
    url('/fonts/walkway_semibold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Base */
body {
  font: 400 21px/1.5 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: 'wdth' 100;
  letter-spacing: 0.06em;
  color: var(--font);
  background-color: var(--background);
}
body.fixed {
  overflow: hidden;
}

h1,
h2 {
  font-weight: 700;
}

h1 {
  font-size: 55px;
}
h2 {
  font-size: 45px;
}

@media (width < 1024px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 30px;
  }
}

/* Logo */
.logo {
  max-width: 500px;
  padding: 15px 7px;
  margin: 0 auto;
}

.logo a,
.logo img {
  display: block;
}

@media (width < 1024px) {
  .logo {
    max-width: 300px;
  }
}

/* Logo Alt */
.logo_alt {
  max-width: 918px;
}

@media (width < 1024px) {
  .logo_alt {
    max-width: 500px;
  }
}

/* Menu */
.menu {
  font-size: 30px;
  line-height: 1.2;
  text-align: right;
  background-color: var(--background);
  border-right: 1px solid var(--border);
  width: 70%;
  height: var(--fullHeight);
  padding: 30px;
  position: fixed;
  top: 0;
  left: -150px;
  z-index: 15;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.menu.active {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.menu a {
  display: block;
  transition: color 0.3s;
}
.menu a:hover {
  color: var(--highlight);
}
.menu a + a {
  margin-top: 30px;
}
.menu a strong {
  color: var(--highlight);
}

@media (width < 1024px) {
  .menu {
    font-size: 20px;
    padding: 15px;
  }
}

/* Menu trigger */
.menu-trigger {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: start;
  background-color: var(--background);
  border: 1px solid var(--border);
  width: 70px;
  padding: 15px;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 20;
}

.menu-trigger span {
  background-color: var(--font);
  width: 100%;
  height: 2px;
  transition: background-color 0.3s, width 0.3s;
  pointer-events: none;
}
.menu-trigger:hover span {
  background-color: var(--highlight);
}

.menu-trigger.active span:nth-child(1) {
  width: 30%;
}
.menu-trigger.active span:nth-child(2) {
  width: 50%;
}

@media (width < 1024px) {
  .menu-trigger {
    top: 15px;
    right: 15px;
  }
}

/* Section */
.section {
  text-align: center;
  border-top: 1px solid var(--border);
  margin-bottom: 50px;
  overflow: hidden;
}

.section a {
  display: block;
  position: relative;
  z-index: 5;
}
.section img {
  width: 100%;
  height: var(--fullHeight);
  object-fit: cover;
  object-position: center;
  transition: height 0.3s;
}
.section h2 {
  background-color: var(--background);
  width: 100%;
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.section h2:before {
  content: '';
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: -1;
}

@media (width < 768px) {
  .section img {
    height: auto;
  }
  .section h2 {
    position: relative;
  }
}

/* Article */
.article {
  max-width: 1024px;
  padding: 30px 60px 60px;
  margin: 0 auto;
}

.article h1 {
  text-align: center;
}
.article > * + * {
  margin-top: 30px;
}
.article p a {
  color: var(--highlight);
}
.article hr {
  margin: 25px 0;
}
.article figure img {
  display: block;
  margin: 0 auto;
}
.article ul {
  font-size: 30px;
}
.article ul li {
  list-style: circle inside;
}

@media (width < 1024px) {
  .article {
    padding: 15px;
  }
  .article:last-child {
    padding-bottom: 50px;
  }

  .article ul {
    font-size: 20px;
    line-height: 1.6;
  }
  .article ul li {
    list-style: none;
  }
}

/* Slider */
.slider {
  height: var(--fullHeight);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.slider + .article {
  margin-top: 100px;
}

.slider .slider_slides picture,
.slider .slider_slides img {
  width: 100%;
  height: 100%;
}

.slider .slider_slides {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  visibility: visible;
  opacity: 1;
}
.slider .slider_slides picture {
  flex: 0 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.7s;
}
.slider .slider_slides img {
  object-fit: contain;
}
.slider .slider_slides picture.active {
  visibility: visible;
  opacity: 1;
}

.slider .slider_actions {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 15;
}
.slider .slider_actions > button {
  font-size: 30px;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  color: var(--font);
  background-color: transparent;
  border: 1px solid var(--font);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  padding: 0;
  transition: color 0.5s, background-color 0.5s, border-color 0.5s;
  position: relative;
  z-index: 5;
}
.slider .slider_actions > button:hover {
  color: var(--font-inverse);
  background-color: var(--highlight);
  border-color: var(--highlight);
}
.slider .slider_actions > button span {
  position: absolute;
  top: 9px;
  left: 13px;
  pointer-events: none;
}

@media (width < 1024px) {
  .slider + .article {
    margin-top: 30px;
  }

  .slider .slider_actions {
    padding: 15px;
  }
}

/* Image */
.image {
  padding-top: 30%;
  position: relative;
  z-index: 5;
}

.image span {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

@media (width < 1024px) {
  .image {
    padding-top: 40%;
  }
}
