@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
   Убираем внутренние отступы слева тегам списков,
   у которых есть атрибут class
  */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
   Убираем внешние отступы body и двум другим тегам,
   у которых есть атрибут class
  */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
   Убираем внешние отступы вертикали нужным тегам,
   у которых есть атрибут class
  */
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
   Убираем стандартный маркер маркированному списку,
   у которого есть атрибут class
  */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
   Обнуляем вертикальные внешние отступы параграфа,
   объявляем локальную переменную для внешнего отступа вниз,
   чтобы избежать взаимодействие с более сложным селектором
  */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

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

button {
  padding: 0;
  background-color: transparent;
  border: none;
}

/**
   Внешний отступ вниз для параграфа без атрибута class,
   который расположен не последним среди своих соседних элементов
  */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
   Упрощаем работу с изображениями и видео
  */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
   Наследуем свойства шрифт для полей ввода
  */
input,
textarea,
select,
button {
  font: inherit;
  outline: none;
  border: unset;
}

html {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  height: 100%;
  /**
     Убираем скачок интерфейса по горизонтали
     при появлении / исчезновении скроллбара
    */
  scrollbar-gutter: stable;
}

/**
   Плавный скролл
  */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  min-height: 100%;
  /**
     Унифицированный интерлиньяж
    */
  line-height: 1.5;
}

/**
   Нормализация высоты элемента ссылки при его инспектировании в DevTools
  */
a:where([class]) {
  display: inline-flex;
}

/**
   Курсор-рука при наведении на элемент
  */
button,
label {
  cursor: pointer;
}

/**
   Приводим к единому цвету svg-элементы
   (за исключением тех, у которых уже указан
   атрибут fill со значением 'none' или начинается с 'url')
  */
svg:not([class]) :where([fill]:not([fill=none], [fill^=url])) {
  fill: currentColor;
}

/**
   Приводим к единому цвету svg-элементы
   (за исключением тех, у которых уже указан
   атрибут stroke со значением 'none')
  */
:where([stroke]:not([stroke=none], [stroke^=url])) {
  stroke: currentColor;
}

/**
   Чиним баг задержки смены цвета при взаимодействии с svg-элементами
  */
svg * {
  transition-property: fill, stroke;
}

/**
   Приведение рамок таблиц в классический 'collapse' вид
  */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
   Удаляем все анимации и переходы для людей,
   которые предпочитают их не использовать
  */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Динамический размер шрифта на основе ширины экрана в виде функции */
/* Динамический размер шрифта на основе ширины экрана в виде миксина */
/* Динамическая ширина на основе текста и ширины экрана */
/* Флекс-центрирование */
/* Абсолютное спозицинированное центрирование */
/* Квадратный размер блока */
/* Сокрытие с сохранением доступности и SEO */
/* Сокрытие скроллбара */
/* Корректный hover с улучшением UX на мобилках */
@font-face {
  font-family: "GrosVentre";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/GrosVentre/GrosVentre.woff2") format("woff2");
}
@font-face {
  font-family: "GrosVentre";
  font-display: swap;
  font-style: normal;
  font-weight: 600;
  src: url("../assets/fonts/GrosVentre/GrosVentre-Semibold.woff2") format("woff2");
}
@font-face {
  font-family: "GrosVentre";
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/GrosVentre/GrosVentre-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Gothic";
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/Gothic/Gothic.woff2") format("woff2");
}
:root {
  /* Палитра цветов*/
  --c-light: white;
  --c-dark: #241F21;
  --c-dark-op: rgba(26, 28, 29, 0.3);
  --c-primary: #f5ff20;
  --c-accent: #ff3470;
  --c-gray-lt: #f1eeea;
  /* Скругления */
  --br-full: 1000px;
  --br-circle: 50%;
  --br-l: 20px;
  /* Типография */
  --font-base: "GrosVentre", sans-serif;
  --font-headers: "Gothic", sans-serif;
  --fz-s-max: 16;
  --fz-s-min: 14;
  --fz-m-max: 24;
  --fz-m-min: 22;
  --fz-l-max: 32;
  --fz-l-min: 28;
  --fz-xl-max: 48;
  --fz-xl-min: 40;
  --fz-s: clamp(var(--fz-s-min) * 1px, var(--fz-s-max) / var(--screen) * 100 * 1vw, var(--fz-s-max) * 1px);
  --fz-m: clamp(var(--fz-m-min) * 1px, var(--fz-m-max) / var(--screen) * 100 * 1vw, var(--fz-m-max) * 1px);
  --fz-l: clamp(var(--fz-l-min) * 1px, var(--fz-l-max) / var(--screen) * 100 * 1vw, var(--fz-l-max) * 1px);
  --fz-xl: clamp(var(--fz-xl-min) * 1px, var(--fz-xl-max) / var(--screen) * 100 * 1vw, var(--fz-xl-max) * 1px);
  --lh-base: 1.5;
  --lh-headers: 1.2;
  /* Области блоков, контейнеров и секций */
  --screen: 1920;
  --section-padding-y: 40px;
  --container-padding-x: 90px;
  --container-width: 1680px;
  /*Границы и обводки*/
  --border-s: 1px solid var(--c-primary);
  --border-m: 5px solid var(--c-s-primary-lt);
  /*Высоты кнопок, полей ввода, блоков*/
  --btn-height: 42px;
  --input-height: clamp(50 * 1px, 70 / var(--screen) * 100 * 1vw, 70 * 1px);
  --header-height: 80px;
  /*Настройки анимированных переходов*/
  --trans-duration: 0.25s;
  /*Уровни контекста наложения*/
  --z-header: 10;
  --z-menu: 100;
  --z-popup: 200;
}
@media (max-width: 1370px) {
  :root {
    --container-padding-x: 60px;
    --screen: 1370;
  }
}
@media (max-width: 1140px) {
  :root {
    --header-height: 150px;
    --fz-m-max: 22;
    --fz-m-min: 20;
  }
}
@media (max-width: 740px) {
  :root {
    --screen: 740;
    --header-height: clamp(130 * 1px, 160 / var(--screen) * 100 * 1vw, 160 * 1px);
  }
}
@media (max-width: 620px) {
  :root {
    --container-padding-x: clamp(20 * 1px, 60 / var(--screen) * 100 * 1vw, 60 * 1px);
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  padding-inline: var(--container-padding-x);
  margin-inline: auto;
}

.header-top-offset {
  padding-top: var(--header-height);
}

.section-header:not(:last-child) {
  margin-bottom: 40px;
}

.dash-wrapper {
  border-radius: var(--br-full);
  border: 3px currentColor dashed;
}

.caption {
  font-size: var(--fz-m);
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 740px) {
  .caption {
    font-size: clamp(14 * 1px, 20 / var(--screen) * 100 * 1vw, 20 * 1px);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media (max-width: 1140px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 621px) {
  .visible-mobile {
    display: none !important;
  }
}

@media (min-width: 1141px) {
  .visible-tablet {
    display: none !important;
  }
}

body {
  font-size: var(--fz-s);
  font-family: var(--font-base);
  line-height: var(--lh-base);
  color: var(--c-dark);
  font-family: var(--font-base);
  font-weight: 400;
  overflow-x: clip;
}

.screen-scroll-disabled {
  min-height: 100vh;
  overflow-y: hidden;
}

main {
  display: flex;
  flex-direction: column;
}

section,
.footer {
  scroll-margin-top: var(--header-height);
  padding-block: var(--section-padding-y);
}

.title {
  font-family: "Gothic", sans-serif;
  line-height: 0.9;
}

.c-accent {
  color: var(--c-accent);
}

.text-stroke-primary {
  font-family: var(--font-headers);
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--c-dark);
}
.text-stroke-primary::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  width: 95%;
  height: 100%;
  content: "";
  background-color: var(--c-primary);
}
.text-stroke-primary::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: attr(data-text);
  z-index: -1;
  font-size: 1.3em;
  letter-spacing: -0.08em;
  color: var(--c-primary);
  -webkit-text-stroke: 0.12em var(--c-primary);
  paint-order: stroke fill;
  stroke-linejoin: round;
}

.text-stroke-accent {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--c-light);
}
.text-stroke-accent::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  width: 95%;
  height: 100%;
  content: "";
  background-color: var(--c-accent);
}
.text-stroke-accent::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: attr(data-text);
  z-index: -1;
  font-size: 1.3em;
  letter-spacing: -0.08em;
  color: var(--c-accent);
  -webkit-text-stroke: 0.12em var(--c-accent);
  paint-order: stroke fill;
  stroke-linejoin: round;
}

.text-stroke {
  -webkit-text-stroke: 5px var(--c-accent);
  font-size: 40px;
  color: transparent;
  paint-order: stroke fill;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section__header:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 1370px) {
  .section__header:not(:last-child) {
    margin-bottom: clamp(32 * 1px, 40 / var(--screen) * 100 * 1vw, 40 * 1px);
  }
}
@media (max-width: 740px) {
  .section__header:not(:last-child) {
    margin-bottom: 32px;
  }
}
.section__description {
  font-size: var(--fz-m);
}
.section__description b {
  font-weight: inherit;
  color: var(--c-s-primary);
}
@media (max-width: 1140px) {
  .section__description br {
    display: none;
  }
}
.section__btn {
  max-width: clamp(342 * 1px, 460 / var(--screen) * 100 * 1vw, 460 * 1px);
  width: 100%;
  align-self: flex-end;
}
@media (max-width: 1370px) {
  .section__btn {
    max-width: clamp(322 * 1px, 342 / var(--screen) * 100 * 1vw, 342 * 1px);
    min-width: clamp(322 * 1px, 342 / var(--screen) * 100 * 1vw, 342 * 1px);
  }
}
@media (max-width: 740px) {
  .section__btn {
    flex-shrink: 0;
    max-width: 300px;
    min-width: 300px;
  }
}
@media (max-width: 620px) {
  .section__btn {
    align-self: flex-end;
  }
}
@media (max-width: 430px) {
  .section__btn {
    max-width: 100%;
  }
}
.section__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 30px;
}
.section__footer .section__btn {
  margin-left: auto;
}
@media (max-width: 740px) {
  .section__footer {
    gap: 16px;
  }
}
@media (max-width: 620px) {
  .section__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .section__footer .section__description {
    font-size: var(--fz-s);
  }
}
.section__footer:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 1370px) {
  .section__footer:not(:first-child) {
    margin-top: clamp(32 * 1px, 40 / var(--screen) * 100 * 1vw, 40 * 1px);
  }
}

input,
button,
a,
textarea,
svg * {
  transition-duration: var(--trans-duration);
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + .checkbox-mark {
  height: 20px;
  aspect-ratio: 1;
  position: relative;
  border: 2px solid var(--c-light);
}
@media (max-width: 620px) {
  input[type=checkbox] + .checkbox-mark {
    height: 16px;
    aspect-ratio: 1;
  }
}
input[type=checkbox] + .checkbox-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  position: absolute;
  inset: 0;
}
input[type=checkbox]:checked + .checkbox-mark {
  background: url("../assets/media/icons/tick.svg") no-repeat center var(--c-light);
}

input,
textarea {
  color: inherit;
}

cite,
address {
  font-style: normal;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-headers);
  font-weight: 700;
  text-transform: uppercase;
  line-height: var(--lh-headers);
}
h1 b,
h2 b,
h3 b,
h4 b {
  box-shadow: 0 0 0 5px var(--c-s-accent);
}
@media (max-width: 930px) {
  h1 b,
  h2 b,
  h3 b,
  h4 b {
    box-shadow: 0 0 0 3px var(--c-s-accent);
  }
}
h1 b,
h2 b,
h3 b,
h4 b {
  display: inline-block;
  background-color: var(--c-light);
  background-image: linear-gradient(to right, var(--c-accent-lt) 10%, var(--c-accent) 25%, var(--c-accent));
  padding-inline: 0.6em;
  padding-top: 0.1em;
  color: var(--c-light);
  border-radius: var(--br-full);
  transform: rotateZ(-0.8deg);
  margin-block: -0.2em;
  translate: -0.15em -0.1em;
}

h1,
h2 {
  font-size: var(--fz-xl);
}

.a-spinning {
  animation: spinning 5s linear infinite;
  transform-origin: center center;
}

@keyframes spinning {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.header {
  background: url("../../assets/media/bg.svg") no-repeat;
  background-position-y: bottom;
  background-size: 100vw;
  height: var(--header-height);
  color: var(--c-light);
  position: relative;
  z-index: 10;
}
@media (max-width: 1140px) {
  .header {
    background-size: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header span {
    display: none;
  }
}
.header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 8px;
}
@media (max-width: 1140px) {
  .header__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }
}
.header__inner > * {
  flex-grow: 1;
}
@media (max-width: 1140px) {
  .header__inner > * {
    flex-grow: unset;
  }
}
.header__logo {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: clamp(164 * 1px, 383 / var(--screen) * 100 * 1vw, 383 * 1px);
}
@media (max-width: 1140px) {
  .header__logo {
    height: fit-content;
    align-self: center;
  }
  .header__logo img {
    height: 42px;
  }
}
.header__icon {
  align-self: center;
  margin-left: clamp(60 * 1px, 80 / var(--screen) * 100 * 1vw, 80 * 1px);
  min-height: 45px;
}
@media (max-width: 1140px) {
  .header__icon {
    margin-left: unset;
  }
}
.header__link {
  text-transform: uppercase;
  font-weight: 600;
  justify-self: flex-end;
  align-self: center;
}
@media (max-width: 1140px) {
  .header__link {
    justify-self: unset;
    align-self: center;
    height: fit-content;
    font-size: 12px;
    text-align: center;
  }
}

.date-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.date-item__dates {
  font-size: clamp(42 * 1px, 60 / var(--screen) * 100 * 1vw, 60 * 1px);
  display: flex;
  gap: 12px;
  align-items: center;
}
.date-item__dates svg {
  height: 0.4em;
}
@media (max-width: 1370px) {
  .date-item__dates {
    font-size: clamp(36 * 1px, 42 / var(--screen) * 100 * 1vw, 42 * 1px);
  }
}
@media (max-width: 1140px) {
  .date-item__dates {
    margin-left: 0.1em;
  }
}
@media (max-width: 740px) {
  .date-item__dates {
    font-size: clamp(26 * 1px, 42 / var(--screen) * 100 * 1vw, 42 * 1px);
  }
}
.date-item__date {
  display: inline-flex;
  line-height: 0.9;
}
.date-item__date-circle {
  position: relative;
  display: inline-block;
}
.date-item__date-circle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  height: 1.32em;
  aspect-ratio: 1;
  content: "";
  top: 45%;
  left: 45%;
  border: 3px var(--c-accent) solid;
  border-radius: var(--br-circle);
}
@media (max-width: 620px) {
  .date-item__date-circle::after {
    border: 2px var(--c-accent) solid;
  }
}

.step-item {
  display: flex;
  gap: 24px;
}
.step-item--highlight .step-item__number {
  background-color: var(--c-accent);
  color: var(--c-light);
  border-color: var(--c-accent);
}
.step-item--highlight .step-item__title {
  color: var(--c-accent);
}
.step-item__number {
  height: clamp(40 * 1px, 62 / var(--screen) * 100 * 1vw, 62 * 1px);
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--c-dark);
  font-size: clamp(18 * 1px, 24 / var(--screen) * 100 * 1vw, 24 * 1px);
  border-radius: var(--br-circle);
}
.step-item__number span {
  height: 1.3em;
}
@media (max-width: 1370px) {
  .step-item__number {
    height: 40px;
    aspect-ratio: 1;
    font-size: clamp(16 * 1px, 18 / var(--screen) * 100 * 1vw, 18 * 1px);
  }
}
@media (max-width: 740px) {
  .step-item__number {
    height: clamp(40 * 1px, 62 / var(--screen) * 100 * 1vw, 62 * 1px);
    aspect-ratio: 1;
  }
}
.step-item__button {
  position: relative;
  border-radius: var(--br-full);
  display: flex;
  height: clamp(61 * 1px, 72 / var(--screen) * 100 * 1vw, 72 * 1px);
  justify-content: space-between;
  color: var(--c-light);
  gap: 20px;
  font-size: clamp(40 * 1px, 44 / var(--screen) * 100 * 1vw, 44 * 1px);
  font-family: var(--font-headers);
  align-items: center;
  padding-inline: clamp(32 * 1px, 40 / var(--screen) * 100 * 1vw, 40 * 1px);
  outline: 4px dashed var(--c-accent); /* width, style, color */
  text-transform: uppercase;
  width: 100%;
  max-width: 385px;
}
@media (max-width: 1370px) {
  .step-item__button {
    font-size: clamp(30 * 1px, 40 / var(--screen) * 100 * 1vw, 40 * 1px);
    padding-inline: clamp(32 * 1px, 32 / var(--screen) * 100 * 1vw, 32 * 1px);
    height: clamp(61 * 1px, 61 / var(--screen) * 100 * 1vw, 61 * 1px);
  }
}
@media (max-width: 740px) {
  .step-item__button {
    font-size: clamp(28 * 1px, 30 / var(--screen) * 100 * 1vw, 30 * 1px);
    max-width: clamp(210 * 1px, 263 / var(--screen) * 100 * 1vw, 263 * 1px);
    height: clamp(40 * 1px, 61 / var(--screen) * 100 * 1vw, 61 * 1px);
    padding-inline: clamp(20 * 1px, 32 / var(--screen) * 100 * 1vw, 32 * 1px);
  }
}
.step-item__button svg {
  height: 0.4em;
  width: auto;
  min-height: 17px;
  min-width: 11px;
}
.step-item__button::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  border-radius: inherit;
  background-color: var(--c-accent);
  height: 100%;
  width: 100%;
}
.step-item__title {
  font-family: var(--font-headers);
  line-height: 0.9;
  text-transform: uppercase;
  font-size: clamp(40 * 1px, 60 / var(--screen) * 100 * 1vw, 60 * 1px);
}
@media (max-width: 1370px) {
  .step-item__title {
    font-size: clamp(30 * 1px, 40 / var(--screen) * 100 * 1vw, 40 * 1px);
  }
}
.step-item__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.step-item__description {
  font-size: clamp(18 * 1px, 24 / var(--screen) * 100 * 1vw, 24 * 1px);
  line-height: 1.15;
}
@media (max-width: 1370px) {
  .step-item__description {
    font-size: clamp(16 * 1px, 18 / var(--screen) * 100 * 1vw, 18 * 1px);
  }
}

.nomination-card {
  display: flex;
  height: clamp(550 * 1px, 610 / var(--screen) * 100 * 1vw, 610 * 1px);
  background-color: var(--c-light);
  max-width: clamp(375 * 1px, 402 / var(--screen) * 100 * 1vw, 402 * 1px);
  border-radius: var(--br-l);
  justify-content: flex-end;
  flex-direction: column;
  padding: 25px;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 1370px) {
  .nomination-card {
    max-width: clamp(350 * 1px, 375 / var(--screen) * 100 * 1vw, 375 * 1px);
    height: clamp(550 * 1px, 550 / var(--screen) * 100 * 1vw, 550 * 1px);
  }
}
@media (max-width: 1140px) {
  .nomination-card {
    max-width: 100%;
    height: 500px;
  }
}
@media (max-width: 740px) {
  .nomination-card {
    height: clamp(410 * 1px, 460 / var(--screen) * 100 * 1vw, 460 * 1px);
  }
}
.nomination-card:nth-child(1) {
  z-index: 2;
  background-image: url("../../assets/media/nominations/1_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
}
@media (max-width: 620px) {
  .nomination-card:nth-child(1) {
    background-position-y: 10%;
    background-size: 280px;
  }
}
.nomination-card:last-child {
  background-image: url("../../assets/media/nominations/2_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}
@media (max-width: 620px) {
  .nomination-card:last-child {
    background-position-y: 10%;
    background-size: 160px;
  }
}
.nomination-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: fit-content;
}
.nomination-card__title {
  height: 102px;
  max-width: fit-content;
}
@media (max-width: 740px) {
  .nomination-card__title {
    width: auto;
    height: clamp(63 * 1px, 77 / var(--screen) * 100 * 1vw, 77 * 1px);
  }
}
.nomination-card__description {
  line-height: 1.15;
  max-width: 80%;
}
@media (max-width: 740px) {
  .nomination-card__description {
    max-width: 100%;
  }
}
.nomination-card:first-child .nomination-card__priz-main {
  right: 0;
  top: 0;
  translate: 50% -50%;
}
@media (max-width: 1140px) {
  .nomination-card:first-child .nomination-card__priz-main {
    translate: 40% -50%;
  }
}
@media (max-width: 620px) {
  .nomination-card:first-child .nomination-card__priz-main {
    left: 0;
    translate: -10% 70%;
    max-width: 160px;
  }
}
.nomination-card:first-child .nomination-card__priz-other {
  bottom: 10%;
  right: 0;
  translate: 50% 0;
}
@media (max-width: 1140px) {
  .nomination-card:first-child .nomination-card__priz-other {
    translate: 20% 0;
  }
}
@media (max-width: 620px) {
  .nomination-card:first-child .nomination-card__priz-other {
    max-width: 140px;
  }
}
.nomination-card:last-child .nomination-card__priz-main {
  left: 0;
  top: 0;
  translate: -50% -50%;
}
@media (max-width: 1140px) {
  .nomination-card:last-child .nomination-card__priz-main {
    left: unset;
    right: 0;
    translate: 40% -50%;
  }
}
@media (max-width: 620px) {
  .nomination-card:last-child .nomination-card__priz-main {
    left: 0;
    translate: -10% 70%;
    max-width: 160px;
  }
}
.nomination-card__priz-main, .nomination-card__priz-other {
  position: absolute;
}
@media (max-width: 740px) {
  .nomination-card__priz-other {
    max-width: 150px;
  }
}

.nomads-card {
  padding: 25px;
  background-color: #f3f3f3;
  border-radius: var(--br-l);
  height: clamp(466 * 1px, 485 / var(--screen) * 100 * 1vw, 485 * 1px);
  max-width: fit-content;
  position: relative;
}
@media (max-width: 1370px) {
  .nomads-card {
    height: clamp(431 * 1px, 460 / var(--screen) * 100 * 1vw, 460 * 1px);
    padding: 20px;
  }
}
@media (max-width: 1140px) {
  .nomads-card {
    height: 410px;
  }
}
@media (max-width: 620px) {
  .nomads-card {
    width: 100%;
    max-width: 100%;
  }
}
.nomads-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  justify-content: space-between;
}
.nomads-card__prize {
  height: clamp(120 * 1px, 154 / var(--screen) * 100 * 1vw, 154 * 1px);
  position: absolute;
  right: 0;
  bottom: 0;
  translate: 36% 36%;
}
@media (max-width: 1370px) {
  .nomads-card__prize {
    height: 104px;
    translate: 40% -35%;
  }
}
@media (max-width: 620px) {
  .nomads-card__prize {
    translate: 15% -31%;
  }
}
.nomads-card__img {
  position: absolute;
  mix-blend-mode: multiply;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  max-width: 75%;
}
@media (max-width: 740px) {
  .nomads-card__img {
    top: 40%;
  }
}
.nomads-card__date .date-item__dates {
  font-size: clamp(24 * 1px, 32 / var(--screen) * 100 * 1vw, 32 * 1px);
}
@media (max-width: 1370px) {
  .nomads-card__date .date-item__dates {
    font-size: 24px;
  }
}
.nomads-card__date .date-item__date-circle::after {
  height: 1.6em;
  border-width: 2px;
}
.nomads-card__description {
  max-width: 80%;
  line-height: 1.15;
}
@media (max-width: 1450px) {
  .nomads-card__description {
    max-width: 100%;
  }
}
@media (max-width: 620px) {
  .nomads-card__description {
    max-width: 90%;
  }
}
.nomads-card__title {
  width: auto;
  height: clamp(80 * 1px, 90 / var(--screen) * 100 * 1vw, 90 * 1px);
  max-width: fit-content;
  align-self: flex-start;
}
.nomads-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.judge-item {
  position: relative;
  padding-top: 100px;
}
@media (max-width: 1140px) {
  .judge-item {
    width: 100%;
  }
}
@media (max-width: 740px) {
  .judge-item:first-child {
    padding-top: 0;
  }
}
.judge-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  top: unset;
  translate: -50% 0;
  bottom: 50%;
  width: 135%;
  max-width: unset;
}
@media (max-width: 1140px) {
  .judge-item img {
    right: var(--container-padding-x);
    width: 60%;
    translate: 0;
    bottom: 0;
  }
}
@media (max-width: 740px) {
  .judge-item img {
    width: 80%;
    left: unset;
    right: -15%;
  }
}
@media (max-width: 430px) {
  .judge-item img {
    width: 110%;
    right: -30%;
  }
}
.judge-item__title {
  font-size: clamp(28 * 1px, 32 / var(--screen) * 100 * 1vw, 32 * 1px);
  font-family: var(--font-headers);
  align-self: center;
  text-transform: uppercase;
  padding: 0.4em 1em;
  border-radius: var(--br-full);
  outline: 4px dashed var(--c-light); /* width, style, color */
}
@media (max-width: 1370px) {
  .judge-item__title {
    font-size: clamp(28 * 1px, 28 / var(--screen) * 100 * 1vw, 28 * 1px);
  }
}
@media (max-width: 1140px) {
  .judge-item__title {
    align-self: flex-start;
  }
}
@media (max-width: 740px) {
  .judge-item__title {
    font-size: clamp(16 * 1px, 28 / var(--screen) * 100 * 1vw, 28 * 1px);
    outline: 2px dashed var(--c-light);
  }
}
.judge-item__info {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: clamp(16 * 1px, 18 / var(--screen) * 100 * 1vw, 18 * 1px);
  gap: 24px;
}
@media (max-width: 740px) {
  .judge-item__info {
    max-width: clamp(197 * 1px, 292 / var(--screen) * 100 * 1vw, 292 * 1px);
  }
}
@media (max-width: 740px) {
  .judge-item__info {
    font-size: clamp(10 * 1px, 14 / var(--screen) * 100 * 1vw, 14 * 1px);
  }
}
.judge-item__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: clamp(375 * 1px, 410 / var(--screen) * 100 * 1vw, 410 * 1px);
  align-self: center;
}
@media (max-width: 1140px) {
  .judge-item__features {
    align-self: flex-start;
  }
}
.judge-item__features-item {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.15;
}
.judge-item__features-item span {
  height: clamp(30 * 1px, 30 / var(--screen) * 100 * 1vw, 30 * 1px);
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--c-light);
  border-radius: var(--br-circle);
  padding-top: 4px;
}

.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-popup);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility var(--trans-duration), opacity var(--trans-duration);
}
.age-verification--active {
  visibility: visible;
  opacity: 1;
}
.age-verification__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-dark-op);
  backdrop-filter: blur(4px);
}
.age-verification__modal {
  position: relative;
  background-color: var(--c-dark);
  border-radius: var(--br-l);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: var(--border-m);
  border-color: var(--c-primary);
}
@media (max-width: 620px) {
  .age-verification__modal {
    padding: 30px 20px;
    width: 90%;
  }
}
.age-verification__title {
  font-family: var(--font-headers);
  font-size: var(--fz-l);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--c-light);
  line-height: var(--lh-headers);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 620px) {
  .age-verification__title {
    font-size: var(--fz-m);
    margin-bottom: 24px;
  }
}
.age-verification__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 620px) {
  .age-verification__buttons {
    gap: 12px;
    flex-direction: column;
  }
}
.age-verification__btn {
  min-width: 120px;
  height: var(--btn-height);
  padding: 0 24px;
  font-family: var(--font-base);
  font-size: var(--fz-s);
  font-weight: 600;
  border: none;
  border-radius: var(--br-full);
  cursor: pointer;
  transition: all var(--trans-duration);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 620px) {
  .age-verification__btn {
    min-width: 100%;
    padding: 0 16px;
  }
}
.age-verification__btn--yes {
  background-color: var(--c-primary);
  color: var(--c-dark);
}
.age-verification__btn--yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 255, 32, 0.3);
  filter: brightness(1.05);
}
.age-verification__btn--yes:active {
  transform: translateY(0);
}
.age-verification__btn--no {
  background-color: var(--c-accent);
  color: var(--c-light);
}
.age-verification__btn--no:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 52, 112, 0.3);
  filter: brightness(1.05);
}
.age-verification__btn--no:active {
  transform: translateY(0);
}

.promo {
  min-height: calc(100vh - var(--header-height));
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: hidden;
  overflow-x: hidden;
  background: url("../../assets/media/promo/bg.jpg") no-repeat center/cover;
}
@media (max-width: 1140px) {
  .promo {
    padding-top: 40px;
  }
}
@media (max-width: 740px) {
  .promo {
    padding-top: 20px;
  }
}
.promo__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  flex-grow: 1;
  width: 100%;
  position: relative;
}
@media (max-width: 1140px) {
  .promo__inner {
    display: block;
  }
}
.promo__content {
  grid-column: 5/-1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 1450px) {
  .promo__content {
    grid-column: 5/-1;
  }
}
@media (max-width: 1140px) {
  .promo__content {
    grid-column: unset;
    gap: 100px;
  }
}
@media (max-width: 740px) {
  .promo__content {
    gap: clamp(25 * 1px, 100 / var(--screen) * 100 * 1vw, 100 * 1px);
  }
}
.promo-shifted {
  margin-left: calc(clamp(200 * 1px, 300 / var(--screen) * 100 * 1vw, 300 * 1px) * -1);
}
@media (max-width: 1370px) {
  .promo-shifted {
    margin-left: calc(clamp(200 * 1px, 200 / var(--screen) * 100 * 1vw, 200 * 1px) * -1);
  }
}
@media (max-width: 1140px) {
  .promo-shifted {
    margin-left: 0;
  }
}
.promo__title {
  font-size: clamp(120 * 1px, 168 / var(--screen) * 100 * 1vw, 168 * 1px);
  position: relative;
}
@media (max-width: 1370px) {
  .promo__title {
    font-size: clamp(85 * 1px, 120 / var(--screen) * 100 * 1vw, 120 * 1px);
  }
}
@media (max-width: 1140px) {
  .promo__title {
    font-size: clamp(120 * 1px, 120 / var(--screen) * 100 * 1vw, 120 * 1px);
  }
}
@media (max-width: 740px) {
  .promo__title {
    font-size: clamp(50 * 1px, 132 / var(--screen) * 100 * 1vw, 132 * 1px);
  }
}
.promo__title-year {
  position: absolute;
  right: -24%;
  rotate: 5deg;
  translate: 0 -10%;
  font-size: 1.1em;
  -webkit-text-stroke: 0.12em var(--c-primary);
  paint-order: stroke fill;
  top: 0;
}
@media (max-width: 740px) {
  .promo__title-year {
    top: -176%;
    font-size: 1.7em;
    right: -2%;
  }
}
.promo__img {
  position: absolute;
  rotate: -4.5deg;
  left: -1%;
  height: clamp(844 * 1px, 1004 / var(--screen) * 100 * 1vw, 1004 * 1px);
  width: auto;
  bottom: -25%;
}
@media (max-width: 1450px) {
  .promo__img {
    bottom: -35%;
    height: 860px;
  }
}
@media (max-width: 1370px) {
  .promo__img {
    height: 850px;
    bottom: -30%;
    left: -2%;
    height: clamp(690 * 1px, 844 / var(--screen) * 100 * 1vw, 844 * 1px);
  }
}
@media (max-width: 1140px) {
  .promo__img {
    height: 860px;
    rotate: unset;
    left: unset;
    right: 0;
    translate: 41% 18%;
    bottom: 0;
  }
}
@media (max-width: 740px) {
  .promo__img {
    height: clamp(920 * 1px, 1400 / var(--screen) * 100 * 1vw, 1400 * 1px);
    translate: 60% 30%;
  }
}
.promo__caption {
  font-size: var(--fz-m);
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 740px) {
  .promo__caption {
    font-size: clamp(12 * 1px, 26 / var(--screen) * 100 * 1vw, 26 * 1px);
  }
}
@media (max-width: 1140px) {
  .promo__caption-top {
    margin-bottom: 150px;
    text-align: center;
  }
}
@media (max-width: 740px) {
  .promo__caption-top {
    margin-bottom: clamp(80 * 1px, 150 / var(--screen) * 100 * 1vw, 150 * 1px);
  }
}
.promo__button {
  font-size: clamp(32 * 1px, 44 / var(--screen) * 100 * 1vw, 44 * 1px);
  font-family: "Gothic", sans-serif;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  gap: 16px;
  max-width: fit-content;
  line-height: 0.9;
  height: fit-content;
  color: var(--c-dark-op);
  padding: 0.4em 0.7em;
  border-color: var(--c-dark);
  border-radius: var(--br-full);
}
@media (max-width: 1370px) {
  .promo__button {
    font-size: clamp(32 * 1px, 32 / var(--screen) * 100 * 1vw, 32 * 1px);
  }
}
@media (max-width: 740px) {
  .promo__button {
    font-size: clamp(24 * 1px, 42 / var(--screen) * 100 * 1vw, 42 * 1px);
    gap: 10px;
  }
}
.promo__main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promo__main-top {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1140px) {
  .promo__main-top {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
  }
}
.promo__main-info {
  position: relative;
}
.promo__dates {
  font-size: clamp(42 * 1px, 60 / var(--screen) * 100 * 1vw, 60 * 1px);
  display: flex;
  gap: 12px;
  align-items: center;
}
.promo__dates svg {
  height: 0.4em;
}
@media (max-width: 1370px) {
  .promo__dates {
    font-size: clamp(42 * 1px, 42 / var(--screen) * 100 * 1vw, 42 * 1px);
  }
}
@media (max-width: 1140px) {
  .promo__dates {
    margin-left: 0.4em;
  }
}
@media (max-width: 740px) {
  .promo__dates {
    font-size: clamp(24 * 1px, 42 / var(--screen) * 100 * 1vw, 42 * 1px);
  }
}
.promo__dates-item {
  display: inline-flex;
  line-height: 0.9;
}
.promo__dates-item-circle {
  position: relative;
  display: inline-block;
}
.promo__dates-item-circle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  height: 1.37em;
  aspect-ratio: 1;
  content: "";
  top: 40%;
  left: 45%;
  border: 3px var(--c-accent) solid;
  border-radius: var(--br-circle);
}
.promo__action {
  display: grid;
  grid-template-columns: repeat(2, auto);
  max-width: fit-content;
  column-gap: 0;
  margin-top: -20px;
}
@media (max-width: 1140px) {
  .promo__action {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.promo__action-img {
  max-width: clamp(416 * 1px, 555 / var(--screen) * 100 * 1vw, 555 * 1px);
  grid-column: 2/3;
  grid-row: 1/3;
}
@media (max-width: 1370px) {
  .promo__action-img {
    max-width: clamp(320 * 1px, 416 / var(--screen) * 100 * 1vw, 416 * 1px);
  }
}
@media (max-width: 740px) {
  .promo__action-img {
    max-width: 100%;
    margin-left: -10%;
  }
}
.promo__button, .promo__slogan {
  align-self: flex-end;
}
@media (max-width: 1140px) {
  .promo__button, .promo__slogan {
    align-self: unset;
  }
}
.promo__slogan {
  font-size: clamp(42 * 1px, 60 / var(--screen) * 100 * 1vw, 60 * 1px);
  font-family: "Gothic", sans-serif;
  text-transform: uppercase;
  text-align: center;
  justify-self: flex-end;
  line-height: 1;
  height: fit-content;
}
@media (max-width: 1370px) {
  .promo__slogan {
    font-size: clamp(42 * 1px, 42 / var(--screen) * 100 * 1vw, 42 * 1px);
  }
}
@media (max-width: 740px) {
  .promo__slogan {
    font-size: clamp(29 * 1px, 64 / var(--screen) * 100 * 1vw, 64 * 1px);
  }
}
@media (max-width: 1140px) {
  .promo__slogan {
    max-width: fit-content;
  }
}
.promo__slogan span {
  display: inline-block;
}
.promo__slogan span:nth-child(1),
.promo__slogan span:last-child {
  rotate: -3deg;
}
.promo__slogan span:nth-child(2) {
  position: relative;
  z-index: 2;
  rotate: 3deg;
}

.hero {
  padding-top: 70px;
  padding-bottom: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: -4px;
  overflow-y: hidden;
  overflow-x: hidden;
  background: url("../../assets/media/promo/bg.jpg") no-repeat center/cover;
}
@media (max-width: 1140px) {
  .hero {
    padding-top: 90px;
  }
}
@media (max-width: 620px) {
  .hero {
    padding-top: 40px;
  }
}
.hero__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  flex-grow: 1;
  width: 100%;
  position: relative;
}
@media (max-width: 1140px) {
  .hero__inner {
    display: block;
  }
}
.hero--festival .hero__content {
  grid-column-start: 1;
  position: relative;
  padding-bottom: 40px;
}
.hero--festival .hero__header-mark {
  right: 47%;
  bottom: -84%;
}
@media (max-width: 620px) {
  .hero--festival .hero__header-mark {
    right: -6%;
    bottom: -76%;
  }
}
@media (max-width: 930px) {
  .hero--festival .hero__slogan {
    display: none;
  }
}
.hero--festival .hero__decoration {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: clamp(500 * 1px, 750 / var(--screen) * 100 * 1vw, 750 * 1px);
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1370px) {
  .hero--festival .hero__decoration {
    max-width: 580px;
    right: -20%;
  }
}
@media (max-width: 930px) {
  .hero--festival .hero__decoration {
    bottom: -8%;
    max-width: 450px;
    right: -20%;
  }
}
@media (max-width: 740px) {
  .hero--festival .hero__decoration {
    width: unset;
  }
}
.hero--festival .hero__bottom {
  gap: 220px;
}
.hero--festival .hero__decoration-img {
  width: 95%;
  max-width: unset;
}
@media (max-width: 430px) {
  .hero--festival .hero__decoration-img {
    width: 100%;
    translate: 20%;
  }
}
.hero--festival .hero__button {
  z-index: 3;
  position: relative;
}
@media (max-width: 930px) {
  .hero--festival .hero__button {
    margin-block: 20px;
  }
}
.hero__bottle {
  position: absolute;
  left: 2%;
  bottom: -21%;
}
@media (max-width: 1140px) {
  .hero__bottle {
    right: 0;
    left: unset;
  }
}
@media (max-width: 740px) {
  .hero__bottle {
    right: -17%;
  }
}
@media (max-width: 620px) {
  .hero__bottle {
    bottom: -20%;
  }
}
.hero__bottle-body {
  position: relative;
}
.hero__bottle-slogan {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  top: 70%;
  min-width: clamp(275 * 1px, 336 / var(--screen) * 100 * 1vw, 336 * 1px);
}
@media (max-width: 1370px) {
  .hero__bottle-slogan {
    min-width: clamp(230 * 1px, 275 / var(--screen) * 100 * 1vw, 275 * 1px);
  }
}
@media (max-width: 1140px) {
  .hero__bottle-slogan {
    display: none;
  }
}
.hero__bottle-img {
  height: clamp(840 * 1px, 890 / var(--screen) * 100 * 1vw, 890 * 1px);
}
@media (max-width: 1370px) {
  .hero__bottle-img {
    height: clamp(790 * 1px, 840 / var(--screen) * 100 * 1vw, 840 * 1px);
  }
}
@media (max-width: 1140px) {
  .hero__bottle-img {
    height: 1100px;
    translate: 20% 0;
  }
}
@media (max-width: 740px) {
  .hero__bottle-img {
    height: clamp(950 * 1px, 1100 / var(--screen) * 100 * 1vw, 1100 * 1px);
  }
}
@media (max-width: 620px) {
  .hero__bottle-img {
    height: clamp(750 * 1px, 950 / var(--screen) * 100 * 1vw, 950 * 1px);
  }
}
.hero__bottom {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
}
@media (max-width: 740px) {
  .hero__bottom {
    gap: clamp(20 * 1px, 50 / var(--screen) * 100 * 1vw, 50 * 1px);
  }
}
.hero__bottom-slogan {
  display: none;
  width: clamp(165 * 1px, 291 / var(--screen) * 100 * 1vw, 291 * 1px);
  transform: translateZ(0);
}
@media (max-width: 740px) {
  .hero__bottom-slogan {
    display: block;
    position: relative;
    z-index: 3;
  }
}
@media (max-width: 620px) {
  .hero__bottom-slogan {
    max-width: 180px;
    height: auto;
    width: 180px;
  }
}
@media (max-width: 1140px) {
  .hero__bottom {
    flex-direction: column;
  }
}
.hero__title {
  font-size: clamp(140 * 1px, 168 / var(--screen) * 100 * 1vw, 168 * 1px);
  position: relative;
}
@media (max-width: 1370px) {
  .hero__title {
    font-size: clamp(90 * 1px, 140 / var(--screen) * 100 * 1vw, 140 * 1px);
  }
}
@media (max-width: 740px) {
  .hero__title {
    font-size: clamp(50 * 1px, 100 / var(--screen) * 100 * 1vw, 100 * 1px);
  }
}
.hero__title span.caption {
  font-family: var(--font-base);
  max-width: 200px;
  display: inline-block;
  letter-spacing: unset;
  margin-left: -2%;
  top: 30%;
}
@media (max-width: 1370px) {
  .hero__title span.caption {
    font-size: 12px;
    max-width: 105px;
  }
}
@media (max-width: 740px) {
  .hero__title span.caption {
    position: absolute;
    top: calc(100% + 1em);
    max-width: 100%;
    left: 0;
  }
  .hero__title span.caption br {
    display: none;
  }
}
.hero__title b {
  position: relative;
}
.hero__title b span {
  position: relative;
  z-index: 2;
  color: var(--c-light);
}
.hero__title b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  z-index: 1;
  width: 110%;
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  height: 80%;
  background-color: var(--c-accent);
}
.hero__decoration {
  align-self: flex-end;
  flex-grow: 0.9;
  max-width: 490px;
}
@media (max-width: 1140px) {
  .hero__decoration {
    align-self: flex-start;
    flex-grow: unset;
  }
}
.hero__decoration-img {
  margin-block: -1%;
  height: auto;
  width: 87%;
  right: 0;
  bottom: 0;
}
@media (max-width: 1140px) {
  .hero__decoration-img {
    margin-left: -15%;
  }
}
@media (max-width: 430px) {
  .hero__decoration-img {
    max-width: 300px;
  }
}
.hero__button {
  font-size: clamp(42 * 1px, 60 / var(--screen) * 100 * 1vw, 60 * 1px);
  font-family: "Gothic", sans-serif;
  display: inline-flex;
  text-transform: uppercase;
  align-items: center;
  max-width: fit-content;
  height: fit-content;
  flex-shrink: 0;
  gap: clamp(20 * 1px, 48 / var(--screen) * 100 * 1vw, 48 * 1px);
  margin-left: -2%;
  text-align: center;
  background-color: var(--c-light);
  color: var(--c-dark-op);
  padding: 0 1em;
  border-radius: var(--br-full);
  color: var(--c-accent);
}
.hero__button svg {
  height: 0.5em;
}
.hero__button {
  transition: var(--trans-duration) background, var(--trans-duration) color;
}
@media (hover: hover) {
  .hero__button:hover {
    background-color: var(--c-accent);
    color: var(--c-light);
  }
}
@media (hover: none) {
  .hero__button:active {
    background-color: var(--c-accent);
    color: var(--c-light);
  }
}
@media (max-width: 1370px) {
  .hero__button {
    font-size: clamp(32 * 1px, 42 / var(--screen) * 100 * 1vw, 42 * 1px);
  }
}
@media (max-width: 1140px) {
  .hero__button {
    font-size: clamp(42 * 1px, 50 / var(--screen) * 100 * 1vw, 50 * 1px);
    margin-block: 80px;
  }
}
@media (max-width: 740px) {
  .hero__button {
    font-size: clamp(24 * 1px, 42 / var(--screen) * 100 * 1vw, 42 * 1px);
    gap: 10px;
    margin-block: clamp(30 * 1px, 80 / var(--screen) * 100 * 1vw, 80 * 1px);
  }
}
.hero__content {
  grid-column: 4/-1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
@media (max-width: 1140px) {
  .hero__content {
    gap: 40px;
  }
}
@media (max-width: 740px) {
  .hero__content {
    gap: 0;
  }
}
.hero__dates {
  display: flex;
  justify-content: space-between;
  max-width: clamp(715 * 1px, 1000 / var(--screen) * 100 * 1vw, 1000 * 1px);
  gap: 20px;
}
@media (max-width: 1370px) {
  .hero__dates {
    max-width: clamp(600 * 1px, 715 / var(--screen) * 100 * 1vw, 715 * 1px);
  }
}
@media (max-width: 1140px) {
  .hero__dates {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 740px) {
  .hero__dates {
    margin-top: 50px;
    gap: 30px;
  }
}
.hero__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.hero__header-mark {
  width: clamp(179 * 1px, 286 / var(--screen) * 100 * 1vw, 286 * 1px);
  height: auto;
  position: absolute;
  display: block;
  z-index: 3;
  right: 1%;
  bottom: -25%;
}
@media (max-width: 1450px) {
  .hero__header-mark {
    right: -5%;
  }
}
@media (max-width: 1370px) {
  .hero__header-mark {
    max-width: clamp(120 * 1px, 179 / var(--screen) * 100 * 1vw, 179 * 1px);
    right: 5%;
    bottom: -50%;
  }
}
@media (max-width: 1140px) {
  .hero__header-mark {
    max-width: 240px;
    bottom: -101%;
    right: unset;
    left: clamp(320 * 1px, 467 / var(--screen) * 100 * 1vw, 467 * 1px);
  }
}
@media (max-width: 740px) {
  .hero__header-mark {
    bottom: -77%;
    max-width: clamp(112 * 1px, 179 / var(--screen) * 100 * 1vw, 179 * 1px);
  }
}
@media (max-width: 620px) {
  .hero__header-mark {
    right: 4%;
    left: unset;
    bottom: -82%;
    right: 1%;
  }
}

.about {
  background-color: var(--c-dark);
  color: var(--c-light);
  padding-block: 0;
  position: relative;
}
.about::before, .about::after {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  right: 0;
  height: 16px;
  background: url("../../assets/media/dark-decor.svg") no-repeat;
  background-size: cover;
}
.about::before {
  top: -16px;
}
.about::after {
  bottom: -16px;
  scale: -1;
}
@media (max-width: 930px) {
  .about {
    padding-block: var(--section-padding-y);
  }
}
.about__inner {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}
@media (max-width: 930px) {
  .about__inner {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.about__decoration {
  max-width: clamp(300 * 1px, 356 / var(--screen) * 100 * 1vw, 356 * 1px);
  height: auto;
  padding-block: 20px;
}
@media (max-width: 1370px) {
  .about__decoration {
    max-width: clamp(237 * 1px, 300 / var(--screen) * 100 * 1vw, 300 * 1px);
  }
}
@media (max-width: 930px) {
  .about__decoration {
    max-width: clamp(237 * 1px, 237 / var(--screen) * 100 * 1vw, 237 * 1px);
  }
}
@media (max-width: 620px) {
  .about__decoration {
    display: none;
  }
}
.about__description {
  font-size: clamp(18 * 1px, 22 / var(--screen) * 100 * 1vw, 22 * 1px);
  max-width: clamp(786 * 1px, 1074 / var(--screen) * 100 * 1vw, 1074 * 1px);
}
@media (max-width: 1370px) {
  .about__description {
    font-size: clamp(16 * 1px, 18 / var(--screen) * 100 * 1vw, 18 * 1px);
  }
}
.about__description-stroked {
  display: inline-block;
  height: 1.6em;
  margin-bottom: -0.3em;
  margin-top: -0.4em;
  margin-inline: -0.1em;
}
@media (max-width: 930px) {
  .about__description {
    text-align: center;
    font-size: clamp(12 * 1px, 18 / var(--screen) * 100 * 1vw, 18 * 1px);
  }
}

.steps {
  padding-top: clamp(40 * 1px, 90 / var(--screen) * 100 * 1vw, 90 * 1px);
  padding-bottom: 48px;
}
@media (max-width: 1370px) {
  .steps {
    padding-top: 40px;
  }
}
.steps__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40 * 1px, 90 / var(--screen) * 100 * 1vw, 90 * 1px);
}
@media (max-width: 1370px) {
  .steps__inner {
    gap: 40px;
  }
}
.steps__header {
  position: relative;
}
.steps__header-decoration {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: clamp(70 * 1px, 130 / var(--screen) * 100 * 1vw, 130 * 1px);
}
@media (max-width: 1370px) {
  .steps__header-decoration {
    width: clamp(70 * 1px, 70 / var(--screen) * 100 * 1vw, 70 * 1px);
  }
}
@media (max-width: 740px) {
  .steps__header-decoration {
    width: clamp(45 * 1px, 70 / var(--screen) * 100 * 1vw, 70 * 1px);
    top: 20%;
  }
}
.steps__navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.steps__navigation-next {
  scale: -1;
}
.steps__slide {
  width: 100%;
  margin-top: 0 !important;
}
@media (max-width: 930px) {
  .steps__slide {
    width: unset;
    justify-self: flex-start;
    height: fit-content;
    margin-bottom: 40px;
  }
}
@media (max-width: 620px) {
  .steps__slide {
    margin-bottom: 20px;
  }
}
@media (max-width: 930px) {
  .steps__slide:nth-child(1) {
    order: -1 !important;
  }
}
@media (max-width: 930px) {
  .steps__slide:nth-child(2) {
    order: 5 !important;
  }
}
@media (max-width: 930px) {
  .steps__slide:nth-child(3) {
    order: 6;
  }
}
@media (max-width: 930px) {
  .steps__slide:nth-child(4) {
    order: 4;
  }
}
@media (max-width: 930px) {
  .steps__slide:nth-child(5) {
    order: 5;
  }
}
@media (max-width: 930px) {
  .steps__slide:nth-child(6) {
    order: 6;
  }
}
.steps__title {
  font-size: clamp(140 * 1px, 200 / var(--screen) * 100 * 1vw, 200 * 1px);
}
@media (max-width: 1370px) {
  .steps__title {
    font-size: clamp(100 * 1px, 140 / var(--screen) * 100 * 1vw, 140 * 1px);
  }
}
@media (max-width: 740px) {
  .steps__title {
    font-size: clamp(65 * 1px, 100 / var(--screen) * 100 * 1vw, 100 * 1px);
  }
}
.steps__slider {
  display: flex !important;
}
.steps__slider-nav-button {
  color: var(--c-dark);
}
@media (max-width: 930px) {
  .steps__slider {
    display: block !important;
  }
}
.steps__slider-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 25px;
  flex-grow: 1;
}
@media (max-width: 1140px) {
  .steps__slider-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 930px) {
  .steps__slider-wrapper {
    align-content: flex-start;
    gap: unset;
    flex-grow: unset;
  }
}

.nominations {
  overflow-x: clip;
  padding-block: 0;
}
.nominations__marquee {
  display: flex;
  width: max-content;
  max-width: max-content;
  animation: marquee 10s infinite linear;
}
.nominations__marquee-part {
  background-color: var(--c-primary);
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: clamp(18 * 1px, 24 / var(--screen) * 100 * 1vw, 24 * 1px);
  padding-block: 25px;
  padding-right: 40px;
  text-transform: uppercase;
  width: 100%;
}
.nominations__marquee-part svg {
  min-width: 39px;
}
@media (max-width: 1370px) {
  .nominations__marquee-part {
    font-size: clamp(18 * 1px, 18 / var(--screen) * 100 * 1vw, 18 * 1px);
  }
}
.nominations__main {
  padding-block: 96px;
  background-color: var(--c-dark);
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
.nominations__main-inner {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 1140px) {
  .nominations__main-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .nominations__main-inner {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1370px) {
  .nominations__main {
    padding-block: 40px;
  }
}
.nominations__title {
  max-width: clamp(280 * 1px, 670 / var(--screen) * 100 * 1vw, 670 * 1px);
  height: auto;
}
@media (max-width: 1450px) {
  .nominations__title {
    max-width: clamp(280 * 1px, 450 / var(--screen) * 100 * 1vw, 450 * 1px);
  }
}
@media (max-width: 1370px) {
  .nominations__title {
    max-width: 250px;
  }
}
@media (max-width: 1140px) {
  .nominations__title {
    grid-column: 1/-1;
    grid-row: 1/2;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
@media (max-width: 620px) {
  .nominations__title {
    order: -1;
  }
}
.nominations--festival .nominations__marquee {
  padding-top: var(--section-padding-y);
  background-color: var(--c-dark);
}

.nomads-title {
  max-width: clamp(215 * 1px, 378 / var(--screen) * 100 * 1vw, 378 * 1px);
  display: block;
  justify-self: flex-end;
  align-self: center;
}
@media (max-width: 1450px) {
  .nomads-title {
    max-width: clamp(200 * 1px, 215 / var(--screen) * 100 * 1vw, 215 * 1px);
  }
}
@media (max-width: 1370px) {
  .nomads-title {
    max-width: 180px;
  }
}
.nomads__slider-nav-button {
  color: var(--c-dark);
}
.nomads__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 1370px) {
  .nomads__grid {
    gap: 20px;
  }
}
@media (max-width: 1140px) {
  .nomads__grid {
    display: none;
  }
}
.nomads__navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.nomads__navigation-next {
  scale: -1;
}
.nomads__mb {
  overflow-x: clip;
  display: none;
}
@media (max-width: 1140px) {
  .nomads__mb {
    display: block;
  }
}
.nomads__mb-slider {
  margin-bottom: 20px;
}
.nomads__mb-title {
  margin: 0 auto;
  margin-bottom: 40px;
  margin-inline: auto;
  display: block;
  max-width: 80%;
  height: auto;
  align-self: center;
}

.judges {
  padding-top: 96px;
  background-color: var(--c-dark);
  color: var(--c-light);
  overflow-x: clip;
  position: relative;
}
.judges::before {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  right: 0;
  height: 16px;
  background: url("../../assets/media/dark-decor.svg") no-repeat;
  background-size: cover;
}
.judges::before {
  top: -5px;
}
@media (max-width: 740px) {
  .judges {
    padding-top: 40px;
  }
}
.judges__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1140px) {
  .judges__list {
    display: flex;
    gap: 50px;
    flex-direction: column;
  }
}
@media (max-width: 740px) {
  .judges__list {
    gap: 20px;
  }
}

.footer {
  background-color: var(--c-dark);
  color: var(--c-light);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.footer__decoration {
  max-width: 350px;
}
@media (max-width: 740px) {
  .footer__decoration {
    height: auto;
    max-width: 140px;
  }
}
.footer__dates {
  font-size: clamp(18 * 1px, 24 / var(--screen) * 100 * 1vw, 24 * 1px);
  line-height: 1.05;
  text-align: center;
}
@media (max-width: 1370px) {
  .footer__dates {
    font-size: clamp(16 * 1px, 20 / var(--screen) * 100 * 1vw, 20 * 1px);
  }
}
.footer__description {
  font-size: clamp(18 * 1px, 24 / var(--screen) * 100 * 1vw, 24 * 1px);
  max-width: clamp(800 * 1px, 1100 / var(--screen) * 100 * 1vw, 1100 * 1px);
  text-align: center;
}
@media (max-width: 1370px) {
  .footer__description {
    font-size: clamp(16 * 1px, 20 / var(--screen) * 100 * 1vw, 20 * 1px);
  }
}
.footer__description-stroked {
  display: inline-block;
  height: 1.6em;
  margin-bottom: -0.5em;
  margin-top: -0.4em;
}
.footer__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
@media (max-width: 620px) {
  .footer__buttons {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 430px) {
  .footer__buttons {
    width: 100%;
  }
}
.footer__button {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: clamp(20 * 1px, 24 / var(--screen) * 100 * 1vw, 24 * 1px);
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--br-full);
  gap: 10px;
  outline: 3px dashed var(--c-primary);
  color: var(--c-primary);
  transition: var(--trans-duration) background, var(--trans-duration) color;
}
@media (hover: hover) {
  .footer__button:hover {
    background-color: var(--c-primary);
    color: var(--c-dark);
  }
}
@media (hover: none) {
  .footer__button:active {
    background-color: var(--c-primary);
    color: var(--c-dark);
  }
}
@media (max-width: 1370px) {
  .footer__button {
    font-size: clamp(14 * 1px, 18 / var(--screen) * 100 * 1vw, 18 * 1px);
  }
}
@media (max-width: 930px) {
  .footer__button {
    font-size: clamp(12 * 1px, 14 / var(--screen) * 100 * 1vw, 14 * 1px);
  }
}
@media (max-width: 620px) {
  .footer__button {
    padding: 12px;
  }
}
.footer__button--light {
  outline: 3px dashed var(--c-light);
  color: var(--c-light);
  justify-content: space-between;
}
@media (hover: hover) {
  .footer__button--light:hover {
    background-color: var(--c-light);
    color: var(--c-accent);
  }
}
@media (hover: none) {
  .footer__button--light:active {
    background-color: var(--c-light);
    color: var(--c-accent);
  }
}
.footer__button svg {
  height: 1.5em;
  width: auto;
}
.footer__button:first-child {
  grid-column: 1/-1;
  width: 100%;
}
.footer__docs {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  max-width: clamp(572 * 1px, 653 / var(--screen) * 100 * 1vw, 653 * 1px);
  width: 100%;
}
@media (max-width: 930px) {
  .footer__docs {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .footer__docs {
    gap: 10px;
  }
}
.footer__docs-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 14px;
  font-size: clamp(12 * 1px, 16 / var(--screen) * 100 * 1vw, 16 * 1px);
  background-color: var(--c-light);
  color: var(--c-dark);
  text-transform: uppercase;
  text-align: center;
  transition: var(--trans-duration) background, var(--trans-duration) color;
}
@media (hover: hover) {
  .footer__docs-link:hover {
    background-color: var(--c-primary);
    color: var(--c-dark);
  }
}
@media (hover: none) {
  .footer__docs-link:active {
    background-color: var(--c-primary);
    color: var(--c-dark);
  }
}
.footer__caption {
  font-size: clamp(12 * 1px, 14 / var(--screen) * 100 * 1vw, 14 * 1px);
  text-transform: uppercase;
  text-align: center;
  max-width: clamp(604 * 1px, 705 / var(--screen) * 100 * 1vw, 705 * 1px);
}/*# sourceMappingURL=styles.css.map */