/* === STYLE === */

@import url("https://fonts.googleapis.com/css?family=Orbitron:regular,600,700,900&display=swap");

html {
  font-size: 100%;
}

/* COLORS */

/* === GLOBAL STYLES === */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Orbitron", helvetica, sans-serif;
  line-height: 1.5;
  color: #fff;
  background: #0a626a;
  letter-spacing: 0.05em;
  background: url("../img/bg-01.jpg") center left/cover no-repeat;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  flex: 1 1 auto;
}

a {
  font-family: "Orbitron", helvetica, sans-serif;
  color: inherit;
  text-decoration: none;
}

ol > li {
  counter-increment: step;
}

.content {
  width: 100%;
  max-width: 1710px;
  margin: 0 auto;
  padding: 0 15px;
}

/* === page === */

/* === BUTTONS === */

.button {
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  padding: 0.833vw;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-align: center;
  font-size: 2.5vw;
  min-width: 25.573vw;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  -o-transition: 0.3s -o-transform;
  -moz-transition: 0.3s transform, 0.3s -moz-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform, 0.3s -moz-transform, 0.3s -o-transform;
  background: #ff7611;
  border: 2px solid #b82c00;
}

.button:active {
  position: relative;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}

.button._fw {
  width: 100%;
}

/* LOGO */

.logo {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  display: inline-block;
  overflow: hidden;
  max-width: 18.75vw;
  max-height: 5vw;
}

.logo img {
  -o-object-fit: cover;
  object-fit: cover;
}

/* BACKGROUND */

.background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #666666;
}

.background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* IMAGE */

.image {
  overflow: hidden;
  pointer-events: none;
}

.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* HEADER */

.header__content {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

/* COVER */

.cover__image {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 49.167vw;
  max-height: 48.229vw;
  z-index: -1;
}

.cover__wrapper {
  position: relative;
  text-align: center;
}

.cover__title {
  font-size: 3.333vw;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0px 10px 16px #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.cover__title:not(:last-child) {
  margin-bottom: 3.333vw;
}

.cover__title > span:nth-child(2) {
  font-size: 2.604vw;
  font-weight: 400;
}

.cover__title > span:nth-child(1),
.cover__title > span:nth-child(2) {
  color: #fff33b;
  text-shadow: 0px 10px 16px #e19428;
}

.cover__title > span:nth-child(3) {
  font-weight: 900;
  font-size: 6.667vw;
}

/* === FOOTER === */

.footer__content {
  text-align: center;
  padding-top: 27px;
  padding-bottom: 27px;
}

.footer__logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__logos li {
  text-align: center;
  height: 4.271vw;
  margin: 5px 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.footer__logos li img {
  display: inline-block;
}

.footer__logos:not(:last-child) {
  margin-bottom: 27px;
}
