@font-face {
  font-family: "Cera Pro";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/cera-pro-400.woff2") format("woff2");
}
@font-face {
  font-family: "Cera Pro";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/cera-pro-500.woff2") format("woff2");
}
@font-face {
  font-family: "Cera Pro";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/cera-pro-700.woff2") format("woff2");
}
@font-face {
  font-family: "Cera Pro";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/cera-pro-900.woff2") format("woff2");
}
@keyframes show-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide-opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes running-line1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes running-line2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  font-size: max(0.8533333333px, 0.2666666667vw);
}
@media (min-width: 1024px) {
  html {
    font-size: 0.0520833333vw;
  }
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Cera Pro", sans-serif;
  font-size: 16rem;
  line-height: 22rem;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  word-break: break-word;
  background-color: #000000;
}

main {
  flex-grow: 1;
  flex-shrink: 0;
}

picture {
  flex-shrink: 0;
}

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

img,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
}
button:not([disabled]) {
  cursor: pointer;
}

[hidden] {
  /* stylelint-disable-next-line declaration-no-important */
  display: none !important;
}

.overlay {
  scrollbar-width: none;
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
  flex-direction: column;
  padding: 10px;
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.2);
}
.overlay::-webkit-scrollbar {
  display: none;
}
.overlay.show {
  display: flex;
}

.scroll-lock {
  overflow: hidden;
}

.visually-hidden:not(:focus, :active),
input[type=checkbox].visually-hidden,
input[type=radio].visually-hidden,
input[type=file].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
}

@media (min-width: 1024px) {
  .b-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30rem;
  }
}

.b-header__logo {
  display: block;
  flex-shrink: 0;
  width: 131rem;
  margin: 0 auto;
}
.b-header__logo img {
  width: 100%;
}
@media (min-width: 1024px) {
  .b-header__logo {
    width: 500rem;
    margin: 0;
  }
}

.b-header__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
  margin-top: 18rem;
}
@media (min-width: 1024px) {
  .b-header__list {
    gap: 100rem;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
  }
}

.b-header__link {
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: opacity;
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Cera Pro", sans-serif;
  font-size: 16rem;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
  text-transform: uppercase;
  background-color: transparent;
  border: 0;
  opacity: 0.5;
}
.b-header__link:not(.actv):hover, .b-header__link:not(.actv):focus-visible {
  opacity: 0.75;
}
.b-header__link.actv {
  font-weight: 500;
  opacity: 1;
}
@media (min-width: 1024px) {
  .b-header__link {
    font-size: 40rem;
  }
}

.b-links {
  margin-top: 50rem;
}
@media (min-width: 1024px) {
  .b-links {
    width: 100%;
    max-width: 1380rem;
    margin: 30rem auto 0 auto;
  }
}

.b-links__title {
  margin: 0;
  font-size: 30rem;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .b-links__title {
    font-size: 60rem;
  }
}

.b-links__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10rem;
  margin-top: 20rem;
}
@media (min-width: 1024px) {
  .b-links__list {
    gap: 20rem;
    width: 100%;
    max-width: 800rem;
    margin: 40rem auto 0 auto;
  }
}

.b-stains {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.b-stains__item {
  position: absolute;
}
.b-stains__item video {
  display: block;
  width: 100%;
  height: auto;
}
.b-stains__item.top-left {
  top: -2rem;
  left: -2rem;
  width: 136rem;
}
.b-stains__item.top-right {
  top: -2rem;
  right: -2rem;
  width: 122rem;
}
.b-stains__item.bottom-left {
  bottom: -2rem;
  left: -2rem;
  width: 124rem;
}
.b-stains__item.desktop {
  display: none;
}
@media (min-width: 1024px) {
  .b-stains__item.top-left {
    width: 293rem;
  }
  .b-stains__item.top-right {
    width: 515rem;
  }
  .b-stains__item.bottom-left {
    width: 326rem;
  }
  .b-stains__item.bottom-right {
    right: -2rem;
    bottom: 203rem;
    width: 196rem;
  }
  .b-stains__item.mobile {
    display: none;
  }
  .b-stains__item.desktop {
    display: block;
  }
}

.btn {
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: background-color, border;
  display: block;
  width: 100%;
  margin: 0;
  padding: 8rem 16rem;
  font-family: "Cera Pro", sans-serif;
  font-size: 16rem;
  line-height: 20rem;
  font-weight: 900;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #000000;
  border: 0;
  border: 2rem solid #e80024;
  border-radius: 40rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn:not([href]) {
  color: rgba(255, 255, 255, 0.5);
  background-color: #363636;
  border-color: #111111;
}
.btn[href]:hover, .btn[href]:focus-visible {
  background-color: #e80024;
}
.btn[href]:active {
  background-color: #ba001d;
  border-color: #ba001d;
}
@media (min-width: 1024px) {
  .btn {
    padding: 18rem 36rem;
    font-size: 40rem;
    line-height: 1;
    border-radius: 80rem;
  }
}

.p-main {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
}

.p-main__backside {
  position: absolute;
  inset: 0;
}
.p-main__backside img {
  width: 100%;
}

.p-main__video {
  position: absolute;
  top: -2rem;
  left: 0;
  display: block;
  width: 136rem;
  height: auto;
}

.p-main__ball {
  position: absolute;
  top: 643rem;
  right: -35rem;
  width: 281rem;
  transform: rotate(160rem);
  animation: spin 30s linear infinite, bounce 7s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .p-main__ball {
    top: 760rem;
    right: -56rem;
    width: 565rem;
  }
}

.p-main__player {
  display: none;
}
@media (min-width: 1024px) {
  .p-main__player {
    position: absolute;
    top: 480rem;
    left: 58rem;
    display: block;
    width: 401rem;
  }
}

.p-main__arrow {
  display: none;
}
@media (min-width: 1024px) {
  .p-main__arrow {
    position: absolute;
    top: 370rem;
    left: -7rem;
    display: block;
    width: 267rem;
    opacity: 0;
    animation: arrow 2.5s ease-in-out infinite alternate, show-opacity 0.5s ease-in-out 0.5s forwards;
  }
}

.p-main__pattern {
  position: absolute;
  inset: 0;
  background-image: url("../img/bg-pattern.png");
  background-size: auto 1094rem;
  background-position: center top;
  opacity: 0.6;
  animation: pattern 5s ease-in-out infinite alternate;
}
@media (min-width: 1024px) {
  .p-main__pattern {
    background-size: 1967rem auto;
    background-position: center -550rem;
  }
}

.p-main__frontside {
  position: relative;
  padding: 30rem 15rem;
}
@media (min-width: 1024px) {
  .p-main__frontside {
    padding: 90rem 90rem;
  }
}

@keyframes arrow {
  0% {
    transform: translateX(0) translateY(0) rotate(0);
  }
  100% {
    transform: translateX(140rem) translateY(-30rem) rotate(12deg);
  }
}
@keyframes pattern {
  0% {
    opacity: 0.6;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.7;
  }
  75% {
    opacity: 0.45;
  }
  100% {
    opacity: 0.55;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-15px);
  }
}
@keyframes spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) and (min-aspect-ratio: 210/115) {
  html {
    font-size: 0.0868vh !important;
  }
}
@media (min-width: 1024px) {
  .p-main__frontside {
    padding-top: 40rem;
    padding-bottom: 20rem;
  }
}
/*# sourceMappingURL=style.css.map */
