:root {
  font-family: 'Formular Neutral', sans-serif;
  color: #fff;
  background-color: #000;
  font-size: 0.0520833vw;
  scrollbar-width: none;
  -webkit-tap-highlight-color: transparent;
  --font-body: 'Formular Neutral', sans-serif;
  --font-mono: 'Formular Neutral Mono', 'Formular Neutral', sans-serif;
  --font-display: 'RoadRadio', var(--font-mono);
  --c-black: #000;
  --c-white: #fff;
  --c-teal: #49f2d6;
  --c-teal-soft: #77d8c0;
  --c-purple-dark: #2a0959;
  --c-purple-dark-2: #2e0566;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 350ms;
  color-scheme: dark;
}

@media (max-width: 1279px) {
  :root {
    font-size: 1px;
  }
}

main {
  background-image: url('./bg-pattern.png');
  background-position: center 0;
  background-size: 959rem auto;
  background-repeat: repeat-y;
}

@media (max-width: 1279px) {
  main {
    background-size: 400rem auto;
    background-repeat: repeat-y;
  }
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
}

@font-face {
  font-family: 'Formular Neutral';
  src: url('./formular-neutral-regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Formular Neutral';
  src: url('./formular-neutral-medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Formular Neutral Mono';
  src: url('./formular-neutral-mono.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'RoadRadio';
  src: url('./RoadRadio-Bold.woff') format('woff'), url('./RoadRadio-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--c-white);
  background-color: var(--c-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.no-scroll {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

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

::selection {
  background-color: var(--c-white);
  color: var(--c-black);
}

.container {
  width: 100%;
  max-width: 1920rem;
  margin: 0 auto;
  padding: 0 24rem;
}

@media (max-width: 1279px) {
  .container {
    padding: 0 16rem;
  }
}

section[id] {
  scroll-margin-top: 64rem;
}

.section-full {
  position: relative;
  height: 100svh;
  min-height: 960rem;
  max-height: 1080rem;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 1279px) {
  .section-full {
    height: auto;
    min-height: 0;
    max-height: none;
  }
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 14rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 432rem;
  height: 96rem;
  border-radius: 96rem;
  background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00ADDD 100%);
  box-shadow: 0 0 32rem 0 #77D8C0 inset;
  overflow: hidden;
  gap: 10rem;
  cursor: pointer;
  z-index: 0;
  user-select: none;
}

@media (max-width: 1279px) {
  .button {
    width: 100%;
    max-width: 432rem;
    height: 48rem;
    border-radius: 48rem;
  }
}

.button::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  background: radial-gradient(92.53% 119.79% at 50% 50%, #963EC6 0%, #00ADDD 100%);
  box-shadow: 0 0 32rem 0 #77D8C0 inset;
  transition-duration: var(--t);
  transition-property: opacity;
  z-index: -1;
}

.button:hover::before {
  opacity: 1;
}

.button svg {
  width: 16rem;
  flex: none;
}

.button.disabled {
  pointer-events: none;
  opacity: 0.8;
}

.button:disabled {
  pointer-events: none;
  opacity: 0.8;
}

.slider-nav {
  position: relative;
  width: 96rem;
  height: 48rem;
  border-radius: 48rem;
  background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00ADDD 100%);
  box-shadow: 0 0 16rem 0 #77D8C0 inset;
  overflow: hidden;
  flex: none;
  z-index: 0;
}

.slider-nav::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(92.53% 119.79% at 50% 50%, #963EC6 0%, #00ADDD 100%);
  box-shadow: 0 0 16rem 0 #77D8C0 inset;
  transition-duration: var(--t);
  transition-property: opacity;
  z-index: -1;
}

.slider-nav:hover::before {
  opacity: 1;
}

.slider-nav__prev,
.slider-nav__next {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-image: url('./slider-arrows-white.svg');
  background-repeat: no-repeat;
  background-size: 200% 100%;
}

.slider-nav__prev {
  left: 0;
  background-position: left center;
}

.slider-nav__next {
  right: 0;
  background-position: right center;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}

@media (max-width: 1279px) {
  .pagination {
    flex-wrap: wrap;
    row-gap: 8rem;
    padding: 0 16rem;
  }
}

.pagination__dot {
  display: block;
  width: 8rem;
  height: 8rem;
  background-color: var(--c-white);
  border-radius: 8rem;
  transition-duration: var(--t);
  transition-property: width, background-color, border-radius;
  flex: none;
  cursor: pointer;
}

.pagination__dot.active {
  background-color: var(--c-teal);
  width: 48rem;
}

.form-field {
  position: relative;
  padding-top: 28rem;
  padding-bottom: 19rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color var(--t) var(--ease);
}

.form-field__input {
  display: block;
  width: 100%;
  padding-right: 28rem;
  font-family: var(--font-body);
  font-size: 25.2rem;
  line-height: 28rem;
  letter-spacing: -0.02em;
  color: var(--c-white);
  background: none;
  border: 0;
  outline: none;
  resize: none;
}

.form-field__input::placeholder {
  color: transparent;
}

.form-field__label {
  position: absolute;
  left: 0;
  top: 28rem;
  font-family: var(--font-body);
  font-size: 25.2rem;
  line-height: 28rem;
  letter-spacing: -0.02em;
  color: var(--c-white);
  white-space: nowrap;
  pointer-events: none;
  transition: top var(--t) var(--ease), font-size var(--t) var(--ease), color var(--t) var(--ease);
}

.form-field:not(.form-field--static) .form-field__input:focus+.form-field__label,
.form-field:not(.form-field--static) .form-field__input:not(:placeholder-shown)+.form-field__label {
  top: 0;
  font-size: 14rem;
  color: rgba(255, 255, 255, 0.5);
}

.form-field__error-icon {
  display: none;
  position: absolute;
  right: 0;
  top: 28rem;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 24rem;
  color: #ff0000;
}

.form-field__error-icon svg {
  width: 100%;
}

.form-field.error {
  border-color: rgba(255, 0, 0, 0.5);
}

.form-field.error .form-field__label {
  color: #ff0000 !important;
}

.form-field.error .form-field__error-icon {
  display: flex;
}

.form-field--static {
  display: flex;
  flex-direction: column;
  gap: 24rem;
  padding-top: 0;
  padding-bottom: 0;
}

.form-field--static .form-field__label {
  position: static;
  color: var(--c-white);
}

.form-field--static .form-field__input {
  padding-right: 0;
  font-size: 15.8rem;
  line-height: 20rem;
  letter-spacing: -0.01em;
  min-height: 40rem;
}

.form-field--static .form-field__input::placeholder {
  color: white;
}

@media (max-width: 1279px) {
  .form-field {
    padding-top: 24rem;
  }

  .form-field__input,
  .form-field__label {
    font-size: 20rem;
  }

  .form-field:not(.form-field--static) .form-field__input:focus+.form-field__label,
  .form-field:not(.form-field--static) .form-field__input:not(:placeholder-shown)+.form-field__label {
    font-size: 12rem;
  }

  .form-field--static {
    gap: 16rem;
  }

  .form-field--static .form-field__input {
    font-size: 15.8rem;
  }
}

.checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12rem;
  cursor: pointer;
  user-select: none;
}

.checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkbox__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16rem;
  height: 16rem;
  flex: none;
  margin-top: 4rem;
  background: var(--c-purple-dark);
  border: 1px solid var(--c-teal);
  border-radius: 4rem;
  transition: background var(--t) var(--ease);
}

.checkbox__box svg {
  width: 10rem;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}

.checkbox__label {
  font-size: 15.8rem;
  line-height: 20rem;
  letter-spacing: -0.01em;
  color: var(--c-white);
}

.checkbox__link {
  color: var(--c-teal);
  text-decoration: underline;
  text-underline-offset: 2rem;
}

.checkbox__input:checked+.checkbox__box {
  background: var(--c-teal);
  border-color: var(--c-teal);
}

.checkbox__input:checked+.checkbox__box svg {
  opacity: 1;
}

.checkbox__input:focus-visible+.checkbox__box {
  outline: 2px solid var(--c-teal);
  outline-offset: 2px;
}

.checkbox.error .checkbox__box {
  border-color: #ff0000;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32rem;
  overflow: auto;
  scrollbar-width: none;
  -webkit-backdrop-filter: blur(10rem);
  backdrop-filter: blur(10rem);
  opacity: 0;
  visibility: hidden;
  transition-duration: var(--t);
  transition-property: opacity, visibility;
}

.contact-modal.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1279px) {
  .contact-modal {
    padding: 16rem;
  }
}

.contact-modal__wrapper {
  width: 100%;
  max-width: 912rem;
}

.contact-modal--success .contact-modal__wrapper {
  max-width: 672rem;
}

.contact-modal__panel {
  position: relative;
  background-color: var(--c-purple-dark);
  box-shadow: 0 0 64rem 0 rgba(119, 216, 192, 0.25) inset;
  border-radius: 24rem;
  padding: 20rem 36rem 36rem;
  transform: translateY(-40rem);
  transition: transform var(--t) var(--ease);
}

@media (max-width: 1279px) {
  .contact-modal__panel {
    padding: 20rem 16rem;
    border-radius: 16rem;
  }
}

.contact-modal.open .contact-modal__panel {
  transform: translateY(0);
}

.contact-modal__close {
  flex: none;
  width: 48rem;
  height: 48rem;
  cursor: pointer;
  padding: 8rem;
  position: absolute;
  top: 16rem;
  right: 16rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00ADDD 100%);
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  z-index: 0;
}

.contact-modal__close::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  background: radial-gradient(92.53% 119.79% at 50% 50%, #963EC6 0%, #00ADDD 100%);
  box-shadow: 0 0 32rem 0 #77D8C0 inset;
  transition-duration: 350ms;
  transition-property: opacity;
  z-index: -1;
}

.contact-modal__close:hover::before {
  opacity: 1;
}

.contact-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1279px) {
  .contact-modal__close {
    margin-right: 0;
  }
}

.contact-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24rem;
  margin-bottom: 70rem;
}

@media (max-width: 1279px) {
  .contact-modal__head {
    margin-bottom: 40rem;
  }
}

.contact-modal__title {
  font-family: var(--font-mono);
  font-size: 25.2rem;
  line-height: 28rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--c-teal);
}

@media (max-width: 1279px) {
  .contact-modal__title {
    font-size: 20rem;
  }
}

.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.contact-modal .checkbox {
  margin-bottom: 40rem;
}

.contact-modal__submit {
  width: 100%;
  height: 48rem;
  max-width: initial;
}

.contact-modal--success .contact-modal__panel {
  text-align: center;
  padding: 40rem 24rem;
}

@media (max-width: 1279px) {
  .contact-modal--success .contact-modal__panel {
    padding: 20rem 24rem;
  }
}

.contact-modal--success .contact-modal__close {
  position: absolute;
  top: 16rem;
  right: 16rem;
  margin-right: 0;
}

.contact-modal__success-text {
  font-family: var(--font-mono);
  font-size: 25.2rem;
  line-height: 28rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 40rem;
}

@media (max-width: 1279px) {
  .contact-modal__success-text {
    margin-bottom: 16rem;
  }
}

.contact-modal__ok {
  width: 100%;
  height: 48rem;
}

@media (max-width: 1279px) {
  .contact-modal__ok {
    width: auto;
    min-width: 88rem;
    margin: 0 auto;
  }
}

.header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  height: 64rem;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 100;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24rem;
  width: 100%;
}

.header__group {
  display: flex;
  align-items: center;
  gap: 24rem;
  min-width: 0;
}

@media (max-width: 1279px) {
  .header__group {
    flex: 1;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 1279px) {
  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.header__logo-mark {
  width: 32rem;
  height: 40rem;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24rem;
  flex-wrap: wrap;
}

@media (max-width: 1279px) {
  .header__nav {
    display: none;
  }
}

.header__nav-extra {
  display: none;
  align-items: center;
  gap: 16rem;
}

.header__messenger {
  width: 30rem;
  height: 30rem;
}

.header__nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14rem;
  line-height: 16rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition-duration: var(--t);
  transition-property: color;
}

@media (max-width: 1919px) {
  .header__nav-link {
    font-size: 18rem;
  }
}

.header__nav-link:hover {
  color: var(--c-teal);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 17rem;
  flex-shrink: 0;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 8rem;
  font-family: var(--font-mono);
  font-size: 14rem;
  text-transform: uppercase;
  transition-duration: var(--t);
  transition-property: color;
}

.header__lang:hover {
  color: var(--c-teal);
}

@media (max-width: 1279px) {
  .header__lang--desktop {
    display: none;
  }
}

.header__lang-icon {
  width: 16rem;
  height: 16rem;
}

.header__messenger-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 30rem;
  transition: transform var(--t) var(--ease);
}

.header__messenger-link:hover {
  transform: scale(1.08);
}

.header__messenger-link img {
  width: 100%;
  height: 100%;
}

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48rem;
  height: 40rem;
  background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00F6D5 100%);
  box-shadow: 0 0 8rem 0 #77D8C0 inset;
  border-radius: 48rem;
  flex: none;
  cursor: pointer;
}

@media (max-width: 1279px) {
  .header__burger {
    display: flex;
  }
}

.header__burger svg {
  width: 16rem;
  flex: none;
}

.mobile-menu {
  display: none;
  -webkit-backdrop-filter: blur(10rem);
  backdrop-filter: blur(10rem);
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition-duration: var(--t);
  transition-property: opacity, visibility;
  z-index: 110;
}

@media (max-width: 1279px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 488rem;
  background-color: var(--c-purple-dark);
  overflow-y: auto;
  overscroll-behavior: none;
  scrollbar-width: none;
}

.mobile-menu__top {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  padding: 12rem 16rem 0;
  background: linear-gradient(180deg, #2A0959 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 10;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48rem;
  height: 40rem;
  background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00F6D5 100%);
  box-shadow: 0 0 8rem 0 #77D8C0 inset;
  border-radius: 48rem;
  margin-right: auto;
  flex: none;
  cursor: pointer;
}

.mobile-menu__close svg {
  width: 20rem;
  flex: none;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  padding: 84rem 16rem 16rem;
  gap: 24rem;
}

.mobile-menu__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 8rem 0 8rem 40rem;
  font-size: 18rem;
  line-height: 20rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-transform: uppercase;
  transition-duration: var(--t);
  transition-property: color;
}

.mobile-menu__item:hover {
  color: var(--c-teal);
}

.mobile-menu__item::before {
  content: '';
  display: block;
  position: absolute;
  width: 20rem;
  height: 1.5rem;
  top: 50%;
  left: 0;
  border-radius: 1.5rem;
  transform: translateY(-50%);
  background-color: var(--c-teal);
}

.mobile-menu__extra {
  display: flex;
  align-items: center;
  gap: 24rem;
  padding: 32rem 16rem;
}

.hero {
  background: var(--c-black);
}

@media (max-width: 1279px) {
  .hero {
    padding: 100rem 0 40rem;
    background: none;
  }
}

.hero__bg-images {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  user-select: none;
}

@media (max-width: 1279px) {
  .hero__bg-images {
    display: none;
  }
}

.hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920rem;
  height: auto;
  opacity: 0;
  transition: opacity 500ms var(--ease);
}

.hero__bg-image:nth-child(3) {
  width: 1600rem;
}

.hero__bg-image.active {
  opacity: 1;
}

.hero__logotype {
  position: absolute;
  left: 49rem;
  top: 22.2%;
  width: 454rem;
}

@media (max-width: 1279px) {
  .hero__logotype {
    position: static;
    width: 260rem;
    margin: 0 auto 32rem;
  }
}

.hero__date {
  position: absolute;
  left: 49rem;
  top: 41.5%;
  font-family: var(--font-body);
  font-size: 21.2rem;
  line-height: 20rem;
  letter-spacing: -0.01em;
}

@media (max-width: 1279px) {
  .hero__date {
    font-size: 15.8rem;
    position: static;
    padding: 0 16rem;
    margin-bottom: 8rem;
  }
}

.hero__title {
  position: absolute;
  left: 49rem;
  top: 46.1%;
  width: 640rem;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 49rem;
  line-height: 48rem;
  text-transform: uppercase;
}

@media (max-width: 1279px) {
  .hero__title {
    position: static;
    width: auto;
    padding: 0 16rem;
    font-size: 24rem;
    line-height: 30rem;
    margin-bottom: 24rem;
  }
}

.hero__image {
  position: absolute;
  right: 115rem;
  top: 27.5%;
  width: 978rem;
  height: 491rem;
  border-radius: 80rem;
  overflow: hidden;
}

@media (max-width: 1279px) {
  .hero__image {
    position: static;
    width: calc(100% - 32rem);
    height: auto;
    aspect-ratio: 978 / 491;
    margin: 0 16rem 24rem;
    border-radius: 32rem;
  }
}

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

.hero__button {
  position: absolute;
  right: 24rem;
  bottom: 24rem;
}

@media (max-width: 1279px) {
  .hero__button {
    position: relative;
    right: initial;
    bottom: initial;
    margin: 0 16rem;
    width: calc(100% - 32rem);
    max-width: 100%;
  }
}

.about {
  overflow: visible;
}

@media (max-width: 1279px) {
  .about {
    padding: 64rem 0;
  }
}

.about__content {
  position: sticky;
  top: 154rem;
  width: 740rem;
  margin: 154rem 0 0 24rem;
}

@media (max-width: 1279px) {
  .about__content {
    position: static;
    width: auto;
    padding: 0 16rem;
    margin: 0 0 40rem;
  }
}

.about__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 48rem;
}

@media (max-width: 1279px) {
  .about__title {
    font-size: 28rem;
    margin-bottom: 24rem;
  }
}

.about__text {
  font-family: var(--font-body);
  font-size: 17.8rem;
  line-height: 130%;
  letter-spacing: -1%;
  max-width: 530rem;
}

@media (max-width: 1919px) {
  .about__text {
    font-size: 19.8rem;
  }
}

@media (max-width: 1279px) {
  .about__text {
    max-width: none;
    font-size: 15.8rem;
  }
}

.about__text+.about__text {
  margin-top: 20rem;
}

@media (max-width: 1279px) {
  .about__photos {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
}

.about__photo {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .about__photo {
    transition: none;
  }
}

.about__photo.is-inview {
  opacity: 1;
  transform: none;
}

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

.about__photo--1 {
  left: 41.8%;
  top: 25.4%;
  width: 466rem;
  height: 311rem;
  border-radius: 72rem;
  transform: translateX(-120rem);
}

@media (max-width: 1279px) {
  .about__photo--1 {
    order: 2;
  }
}

.about__photo--2 {
  right: 0;
  top: 13.6%;
  width: 456rem;
  height: 304rem;
  border-radius: 62rem 0 0 62rem;
  transform: translateX(120rem);
}

@media (max-width: 1279px) {
  .about__photo--2 {
    order: 1;
    border-radius: 24rem 0 0 24rem !important;
    margin-left: auto !important;
    left: 18rem !important;
    position: relative !important;
    margin: 118px 0 78px auto !important;
  }
}

.about__photo--3 {
  right: 6.25%;
  top: 53.6%;
  width: 328rem;
  height: 410rem;
  border-radius: 62rem;
  transform: translateY(120rem);
}

.about__photo--3 img {
  object-position: left;
}

@media (max-width: 1279px) {
  .about__photo--3 {
    order: 3;
    margin-top: 84px !important;
    margin-left: auto !important;
    width: 328rem !important;
    height: 410rem !important;
  }
}

@media (max-width: 630px) {
  .about__photo--3 {
    width: 226rem !important;
    height: 311rem !important;
  }
}

@media (max-width: 1279px) {
  .about__photo {
    position: static;
    height: auto;
    margin: 0 16rem 16rem;
    border-radius: 24rem;
  }
}

@media (max-width: 630px) {
  .about__photo {
    width: 340rem;
  }
}

.stages {
  background: var(--c-black);
}

@media (max-width: 1279px) {
  .stages {
    padding: 64rem 0;
  }
}

.stages__title {
  position: absolute;
  left: 32rem;
  top: 14.2%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (max-width: 1279px) {
  .stages__title {
    position: static;
    padding: 0 16rem;
    font-size: 28rem;
    margin-bottom: 32rem;
  }
}

@media (max-width: 630px) {
  .stages__title {
    margin-bottom: 62rem;
  }
}

@media (max-width: 1279px) {
  .stages__body {
    position: relative;
    margin: 0 16rem;
    padding-left: 40rem;
  }
}

.stages__timeline {
  position: absolute;
  left: 42rem;
  top: 41%;
  width: 1189rem;
  height: 2px;
  background: #6e6e6e;
}

@media (max-width: 1279px) {
  .stages__timeline {
    left: 7rem;
    top: 10rem;
    width: 2px;
    height: auto;
  }
}

.stages__progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--c-teal);
}

@media (max-width: 1279px) {
  .stages__progress {
    width: 100%;
    height: 0;
  }
}

.stages.animate .stages__progress {
  width: 100%;
  transition: width 2400ms linear;
}

@media (max-width: 1279px) {
  .stages.animate .stages__progress {
    width: 100%;
    height: 100%;
    transition: height 2400ms linear;
  }
}

.stages.no-anim .stages__progress {
  transition: none;
}

.stages__dot {
  position: absolute;
  top: 50%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: var(--c-white);
  transform: translate(-50%, -50%);
  transition: background-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.stages__dot--1 {
  left: 0.4%;
}

.stages__dot--2 {
  left: 49.4%;
}

.stages__dot--3 {
  left: 100%;
}

@media (max-width: 1279px) {

  .stages__dot--1,
  .stages__dot--2,
  .stages__dot--3 {
    left: 50%;
    top: 0;
  }
}

.stages__dot.active {
  background: var(--c-teal);
  box-shadow: 0 0 12rem 0 rgba(73, 242, 214, 0.8);
}

.stages__list {
  position: absolute;
  left: 42rem;
  right: 106rem;
  top: 44%;
  display: flex;
  gap: 45rem;
}

@media (max-width: 1279px) {
  .stages__list {
    position: static;
    flex-direction: column;
    gap: 48rem;
  }
}

.stage {
  width: 100%;
  max-width: 542rem;
  display: flex;
  flex-direction: column;
  gap: 142rem;
}

@media (max-width: 1279px) {
  .stage {
    max-width: none;
    gap: 24rem;
  }
}

.stage__heading {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

.stage__title {
  font-family: var(--font-mono);
  font-size: 21rem;
  line-height: 24rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 500ms var(--ease);
}

.stage.active .stage__title {
  color: var(--c-teal);
}

.stage__date {
  font-family: var(--font-body);
  font-size: 15.8rem;
  line-height: 20rem;
}

.stage__icon {
  width: 100%;
  max-width: 185rem;
  aspect-ratio: 1;
}

@media (max-width: 1279px) {
  .stage__icon {
    max-width: 120rem;
  }
}

.nominations {
  background: var(--c-black);
}

.nominations__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  will-change: transform, border-radius;
  background: var(--c-black);
}

@media (max-width: 1279px) {
  .nominations__content {
    height: auto;
    padding: 64rem 0;
  }
}

.nominations__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(132deg, rgba(37, 8, 81, 0.9) 0%, rgba(37, 8, 81, 0) 36%), url('./nominations-bg-2.jpg') center / cover no-repeat;
  pointer-events: none;
}

@media (max-width: 1279px) {
  .nominations__bg {
    height: var(--nominations-bg-height, 100%);
  }
}

.nominations__title {
  position: absolute;
  left: 24rem;
  top: 7.4%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (max-width: 1279px) {
  .nominations__title {
    position: static;
    padding: 0 16rem;
    font-size: 28rem;
    margin-bottom: 32rem;
  }
}

.nominations__col {
  position: absolute;
  width: 384rem;
  display: flex;
  flex-direction: column;
  gap: 19rem;
}

.nominations__col--1 {
  left: 36.25%;
  top: 18.8%;
}

.nominations__col--2 {
  left: 57.5%;
  top: 7.4%;
}

.nominations__col--3 {
  left: 78.7%;
  top: 18.8%;
}

@media (max-width: 1279px) {
  .nominations__col {
    position: static;
    width: auto;
    padding: 0 16rem;
    margin-bottom: 19rem;
  }
}

.nomination-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 132rem;
  overflow: hidden;
  padding: 24rem;
  border-radius: 24rem;
  background-color: #2A0959;
  isolation: isolate;
  cursor: pointer;
  transition-duration: var(--t);
  transition-property: height;
  user-select: none;
}

@media (max-width: 1279px) {
  .nomination-card {
    height: 116rem;
  }
}

.nomination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24rem;
  box-shadow: 0 0 48rem 0 rgba(119, 216, 192, 0.4) inset;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  transition: box-shadow var(--t) var(--ease);
}

.nomination-card:hover,
.nomination-card.open {
  height: auto;
  min-height: 132rem;
}

@media (max-width: 1279px) {

  .nomination-card:hover,
  .nomination-card.open {
    height: auto;
    min-height: 116rem;
  }
}

.nomination-card:hover::after,
.nomination-card.open::after {
  box-shadow: 0 0 48rem 0 rgba(119, 216, 192, 0.6) inset;
}

.nomination-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16rem;
}

.nomination-card__title {
  font-family: var(--font-mono);
  font-size: 16rem;
  line-height: 24rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-teal-soft);
}

.nomination-card__icon {
  width: 24rem;
  height: 24rem;
  flex: none;
}

.nomination-card__desc {
  font-family: var(--font-body);
  font-size: 16rem;
  line-height: 20rem;
  letter-spacing: -0.01em;
  max-height: 0;
  opacity: 0.001;
  filter: blur(10rem);
  overflow: hidden;
  transition-duration: var(--t);
  transition-property: max-height, opacity, filter, margin;
}

.nomination-card:hover .nomination-card__desc {
  max-height: 120rem;
  opacity: 1;
  filter: blur(0);
  margin-top: 16rem;
}

.experts {
  background: var(--c-black);
}

@media (max-width: 1279px) {
  .experts {
    padding: 64rem 0;
  }
}

.experts__header {
  position: absolute;
  left: 24rem;
  right: 24rem;
  top: 12.6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1279px) {
  .experts__header {
    position: static;
    padding: 0 16rem;
    margin-bottom: 32rem;
  }
}

.experts__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (max-width: 1279px) {
  .experts__title {
    font-size: 28rem;
  }
}

.experts__viewport {
  position: absolute;
  left: 24rem;
  right: 24rem;
  top: 22%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.experts__viewport:active {
  cursor: grabbing;
}

@media (max-width: 1279px) {
  .experts__viewport {
    position: static;
    overflow-x: auto;
    touch-action: pan-x pan-y;
    cursor: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: 0 16rem;
  }
}

.experts__track {
  display: flex;
  transition: transform 500ms var(--ease);
}

@media (max-width: 1279px) {
  .experts__track {
    width: max-content;
    gap: 24rem;
  }
}

.experts__page {
  width: 100%;
  flex: none;
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 100rem;
}

@media (max-width: 1279px) {
  .experts__page {
    width: auto;
    grid-template-columns: none;
    grid-auto-columns: 300rem;
    column-gap: 24rem;
    row-gap: 24rem;
  }
}

.experts__cell {
  padding: 0 28rem 0 0;
}

.experts__cell:not(:nth-last-child(-n + 2)) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.experts__cell:nth-child(n + 3) {
  padding-left: 28rem;
}

@media (max-width: 1279px) {
  .experts__cell {
    padding: 0 !important;
    scroll-snap-align: center;
  }
}

.experts__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20.6%;
}

@media (max-width: 1279px) {
  .experts__pagination {
    position: static;
    margin-top: 24rem;
  }
}

.expert-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16rem;
}

@media (max-width: 1279px) {
  .expert-card {
    width: 284rem;
    flex: none;
  }
}

.expert-card__photo {
  width: 148rem;
  height: 185rem;
  flex: none;
  border-radius: 20rem;
  overflow: hidden;
  /*background: #7417e5;*/
}

@media (max-width: 767px) {
  .expert-card__photo {
    width: 120rem;
  }
}

.expert-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-card__name {
  font-family: var(--font-mono);
  font-size: 18rem;
  line-height: 1.03;
  color: var(--c-teal);
  margin-bottom: 18rem;
}

@media (max-width: 767px) {
  .expert-card__name {
    font-size: 17rem;
  }
}

.expert-card__role {
  font-family: var(--font-mono);
  font-size: 10.8rem;
  line-height: 1.14;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 210rem;
}

.expert-card__role b {
  font-weight: 900;
}

@media (max-width: 1279px) {
  .winners {
    padding: 64rem 0;
  }
}

.winners__header {
  position: absolute;
  left: 24rem;
  right: 24rem;
  top: 9.7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1279px) {
  .winners__header {
    position: static;
    padding: 0 16rem;
    margin-bottom: 32rem;
  }
}

.winners__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (max-width: 1279px) {
  .winners__title {
    font-size: 28rem;
  }
}

.winners__viewport {
  position: absolute;
  left: 24rem;
  right: 24rem;
  top: 32.7%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.winners__viewport:active {
  cursor: grabbing;
}

@media (max-width: 1279px) {
  .winners__viewport {
    position: static;
    overflow-x: auto;
    touch-action: pan-x pan-y;
    cursor: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: 0 16rem;
  }
}

.winners__track {
  display: flex;
  transition: transform 500ms var(--ease);
}

@media (max-width: 1279px) {
  .winners__track {
    width: max-content;
    gap: 24rem;
  }
}

.winners__page {
  width: 100%;
  flex: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1279px) {
  .winners__page {
    width: auto;
    display: flex;
    gap: 24rem;
  }
}

.winners__pagination {
  position: absolute;
  left: 0;
  right: 0;
  top: 64.7%;
}

@media (max-width: 1279px) {
  .winners__pagination {
    position: static;
    margin-top: 24rem;
  }
}

.winners__cta {
  position: absolute;
  left: 50%;
  top: 72.9%;
  transform: translateX(-50%);
}

@media (max-width: 1279px) {
  .winners__cta {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    padding: 0 16rem;
    margin-top: 32rem;
  }
}

@media (max-width: 630px) {
  .winners__cta .button {
    width: 100%;
    max-width: 100%;
  }
}

.winner-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24rem;
  min-height: 318rem;
  padding: 12rem 24rem;
}

.winner-card:not(:nth-child(5n)) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1279px) {
  .winner-card {
    width: 280rem;
    min-height: 0;
    flex: none;
    border-right: 0 !important;
    padding: 0;
    scroll-snap-align: center;
  }
}

.winner-card__category {
  font-family: var(--font-mono);
  font-size: 14rem;
  line-height: 16rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 18rem;
}

.winner-card__project {
  font-family: var(--font-body);
  font-size: 14rem;
  line-height: 1.26;
  letter-spacing: -0.01em;
  max-width: 245rem;
}

.winner-card__image {
  width: 100%;
  max-width: 310rem;
  height: auto;
}

@media (max-width: 1279px) {
  .gallery {
    padding: 64rem 0;
  }
}

.gallery__header {
  position: absolute;
  left: 24rem;
  right: 24rem;
  top: 9.9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

@media (max-width: 1279px) {
  .gallery__header {
    position: static;
    align-items: center;
    gap: 16rem;
    padding: 0 16rem;
    margin-bottom: 32rem;
  }
}

.gallery__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (max-width: 1279px) {
  .gallery__title {
    font-size: 28rem;
  }
}

.gallery__rows {
  position: absolute;
  left: 0;
  right: 0;
  top: 26.7%;
  display: flex;
  flex-direction: column;
  gap: 43rem;
}

@media (max-width: 1279px) {
  .gallery__rows {
    position: static;
    gap: 16rem;
  }
}

.gallery__row {
  overflow: visible;
}

.gallery__track {
  display: flex;
  gap: 50rem;
  width: max-content;
  will-change: transform;
}

@media (max-width: 1279px) {
  .gallery__track {
    gap: 16rem;
  }
}

.gallery__item {
  width: 431rem;
  height: 287rem;
  flex: none;
  border-radius: 25rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t) var(--ease);
}

@media (max-width: 1279px) {
  .gallery__item {
    width: 280rem;
    height: 187rem;
    border-radius: 16rem;
  }
}

.gallery__item:hover {
  transform: scale(1.11);
  z-index: 2;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  background: var(--c-purple-dark);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition-duration: var(--t);
  transition-property: opacity, visibility;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 86rem;
  transform: translateY(-50%);
  transition: transform 500ms var(--ease);
  touch-action: pan-y;
  user-select: none;
}

@media (max-width: 1279px) {
  .lightbox__track {
    gap: 16rem;
  }
}

.lightbox__slide {
  width: 1632rem;
  height: 87.3vh;
  max-height: 943rem;
  flex: none;
  border-radius: 25rem;
  overflow: hidden;
  transition: opacity 500ms var(--ease), height 500ms var(--ease);
}

@media (max-width: 1279px) {
  .lightbox__slide {
    width: calc(100vw - 64rem);
    height: auto;
    aspect-ratio: 1632 / 943;
    border-radius: 16rem;
  }
}

.lightbox__slide:not(.active) {
  opacity: 0.55;
  height: 60vh;
}

@media (max-width: 1279px) {
  .lightbox__slide:not(.active) {
    height: auto;
  }
}

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

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48rem;
  height: 48rem;
  z-index: 2;
  transition: transform 200ms var(--ease);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00ADDD 100%);
  cursor: pointer;
  overflow: hidden;
}

.lightbox__arrow:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  background: radial-gradient(92.53% 119.79% at 50% 50%, #963EC6 0%, #00ADDD 100%);
  box-shadow: 0 0 32rem 0 #77D8C0 inset;
  transition-duration: 350ms;
  transition-property: opacity;
  z-index: 1;
}

.lightbox__arrow:hover::before {
  opacity: 1;
}

.lightbox__arrow svg {
  width: 16rem;
  position: relative;
  z-index: 2;
}

.lightbox__arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.lightbox__arrow--prev {
  left: 77rem;
}

@media (max-width: 1279px) {
  .lightbox__arrow--prev {
    left: 8rem;
  }
}

.lightbox__arrow--next {
  right: 77rem;
}

@media (max-width: 1279px) {
  .lightbox__arrow--next {
    right: 8rem;
  }
}

.lightbox__close {
  position: absolute;
  top: 22rem;
  right: 24rem;
  width: 48rem;
  height: 48rem;
  z-index: 2;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(50% 50% at 50% 50%, #963EC6 0%, #00ADDD 100%);
  cursor: pointer;
  overflow: hidden;
}

.lightbox__close:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  background: radial-gradient(92.53% 119.79% at 50% 50%, #963EC6 0%, #00ADDD 100%);
  box-shadow: 0 0 32rem 0 #77D8C0 inset;
  transition-duration: 350ms;
  transition-property: opacity;
  z-index: 1;
}

.lightbox__close:hover::before {
  opacity: 1;
}

.lightbox__close svg {
  width: 16rem;
  position: relative;
  z-index: 2;
}

.lightbox__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30rem;
  z-index: 2;
}

.footer {
  position: relative;
  height: 357rem;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 1279px) {
  .footer {
    height: auto;
    padding: 48rem 0;
    display: flex;
    flex-direction: column;
    background: none;
  }
}

.footer__bg {
  position: absolute;
  left: 0;
  top: -641rem;
  width: 1116rem;
  height: 960rem;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 1279px) {
  .footer__bg {
    display: none;
  }
}

.footer__bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 960rem;
  height: 12152rem;
  background-image: url('./bg-pattern.svg');
  background-size: 100% auto;
  transform-origin: 0 0;
  transform: translate(-11044rem, 960rem) rotate(-90deg);
  display: none;
}

.footer__buttons {
  position: absolute;
  top: 61rem;
  right: 24rem;
  display: flex;
  gap: 48rem;
}

@media (max-width: 1279px) {
  .footer__buttons {
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 16rem;
    padding: 0 16rem;
    margin-bottom: 40rem;
  }
}

@media (max-width: 630px) {
  .footer__buttons .button {
    width: 100%;
    max-width: 100%;
  }
}

.footer__meta {
  position: absolute;
  left: 24rem;
  bottom: 42rem;
  display: flex;
  align-items: center;
  gap: 90rem;
  font-family: var(--font-mono);
  font-size: 14rem;
  line-height: 16rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1279px) {
  .footer__meta {
    position: static;
    justify-content: space-between;
    gap: 24rem;
    padding: 0 16rem;
    order: 1;
  }
}

.footer__link {
  transition-duration: var(--t);
  transition-property: color;
  text-decoration: underline;
}

.footer__link:hover {
  color: var(--c-teal);
}

.footer__logos {
  position: absolute;
  right: 24rem;
  bottom: 28rem;
  display: flex;
  align-items: center;
  gap: 48rem;
}

@media (max-width: 1279px) {
  .footer__logos {
    position: static;
    justify-content: center;
    padding: 0 16rem;
    margin-bottom: 32rem;
  }
}

.footer__logos a:nth-child(1) {
  width: 73rem;
}

.footer__logos a:nth-child(2) {
  width: 144rem;
}

.footer__logos a {
  transition: .3s;
  display: block;
}

.footer__logos a:hover {
  opacity: .7;
}