@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;
}

/**
  Внешний отступ вниз для параграфа без атрибута 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;
}

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] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

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

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@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;
  }
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
:root {
  --font-family-base: 'Roboto', sans-serif;
  --color-black: #000;
  --color-white: #fff;
  --transition-duration: 0.2s;
}

.container {
  max-width: var(--container-width);
  margin-inline: auto;
}
.container--no-padding {
  padding-inline: 0;
}

.section {
  max-width: var(--section-width);
  padding-block: var(--section-padding-block);
  padding-inline: var(--container-padding-x);
}

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

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

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

body {
  font-family: var(--font-family-base);
  font-weight: 900;
  background-color: var(--color-black);
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
}

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

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

@media (max-width: 62.5rem) {
  br {
    display: none;
  }
}

@keyframes blink {
  0%, 100% {
    box-shadow: 0 8px 0 0 #f3f786;
  }
  50% {
    box-shadow: 0 8px 0 0 #d6b569, 0px 0px 20px 0px rgba(255, 255, 255, 0.6) inset, -20px -20px 50px 0px rgba(211, 70, 155, 0.4), 0px 20px 60px 0px rgba(232, 205, 110, 0.2), 0px 10px 60px 0px rgba(174, 113, 41, 0.8);
  }
}
.button {
  width: 100%;
  height: 100%;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.5rem, 2.2996108949rem + 0.7782101167vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  max-width: 28.4375rem;
  min-height: 7.875rem;
  border-radius: 6.25rem;
  background: radial-gradient(238.39% 44.19% at 96.59% 31.25%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(182.56% 55.34% at 5.68% 100%, #fbf8b4 0%, rgba(189, 143, 53, 0) 100%), radial-gradient(137.51% 118.3% at 32.95% 0%, #d7a645 21.25%, rgba(255, 223, 106, 0.57) 88.62%), radial-gradient(178.09% 220.16% at 94.89% -132.81%, #c29336 67.59%, rgba(255, 199, 0, 0.38) 100%), #f6d280;
  box-shadow: 0 0.5rem 0 0 #f3f786;
  animation: blink 0.9s infinite;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding-inline: 1.375rem;
}
@media (max-width: 31.25rem) {
  .button {
    min-height: 6.625rem;
  }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100svh;
  max-height: 64rem;
  max-width: 90rem;
  margin-inline: auto;
  overflow: hidden;
  padding-top: 2.375rem;
}
@media (max-width: 62.5rem) {
  .hero {
    padding: 2rem 1rem;
    max-height: 100svh;
  }
}
.hero__logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
  z-index: 1;
}
@media (max-width: 62.5rem) {
  .hero__logo {
    max-height: 2.625rem;
  }
}
.hero__logo-img {
  width: auto;
  height: 100%;
}
.hero__logo-flag {
  width: auto;
  height: 100%;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 11.25rem;
  z-index: 1;
}
@media (max-width: 62.5rem) {
  .hero__content {
    margin-top: 4rem;
    flex-grow: 1;
    width: 100%;
  }
}
.hero__text-wrap {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 1.25rem;
  padding: 0.75rem 2.625rem;
  text-align: center;
  max-width: 35.75rem;
}
@media (max-width: 62.5rem) {
  .hero__text-wrap {
    padding: 0.75rem;
  }
}
.hero__title {
  font-size: clamp(2.5rem, 1.8988326848rem + 2.3346303502vw, 4rem);
  font-style: italic;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1875;
  text-transform: uppercase;
}
.hero__button-wrap {
  margin-top: 2.875rem;
}
@media (max-width: 62.5rem) {
  .hero__button-wrap {
    margin-top: auto;
  }
}
.hero__char {
  position: absolute;
  bottom: 0;
  height: 90%;
  width: auto;
}
.hero__char--left {
  left: 0;
}
.hero__char--right {
  right: 0;
}
.hero__char--mobile {
  display: none;
  left: 50%;
  translate: -50%;
  height: auto;
  width: 100%;
}
@media (max-width: 62.5rem) {
  .hero__char--right {
    display: none;
  }
  .hero__char--left {
    left: 50%;
    translate: -50%;
    height: 60%;
  }
}
@media (max-width: 25.75rem) {
  .hero__char--left {
    display: none;
  }
  .hero__char--mobile {
    display: block;
  }
}/*# sourceMappingURL=main.css.map */