@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: "Poppins";
  src: url("./../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DMMono";
  src: url("./../fonts/DMMono-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./../fonts/Poppins-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
:root {
  --color-black: #0a1428;
  --color-black-dark: #0d0d0d ;
  --color-yellow: #ffd700;
  --color-blue: #00d9ff;
  --color-white: #ffffff;
  --color-gray: #9ca3af;
  --yellow-gradient: linear-gradient(90deg, #ffd700 0%, #fb0 100%);
  --blue-gradient: linear-gradient(90deg, #ffd700 2.5%, #00d9ff 100%);
  --box-shadow:
  	0 0 20px 0 rgba(255, 255, 255, 0.6) inset,
  	-20px -20px 50px 0 rgba(211, 70, 155, 0.4),
  	0 20px 60px 0 rgba(232, 205, 110, 0.2),
  	0 10px 60px 0 rgba(174, 113, 41, 0.8);
  --font-family-base: 'Inter', sans-serif;
  --font-family-header: 'Poppins', sans-serif;
  --font-family-promo-code: 'DMMono', sans-serif;
  --container-width: 78rem;
  --container-padding-x: 1rem;
  --border-radius: 0.5rem;
  --section-width: 90rem;
  --section-padding-block: 4rem;
}

.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);
}

.h1 {
  font-size: clamp(3rem, 2.5992217899rem + 1.5564202335vw, 4rem);
}

.glass-background {
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1.375rem 2.75rem rgba(0, 0, 0, 0.35), inset 1px 1px 0 rgba(255, 255, 255, 0.25), inset -1px -1px 0 rgba(0, 0, 0, 0.1);
}

.h2 {
  font-size: clamp(2rem, 1.7996108949rem + 0.7782101167vw, 2.5rem);
}

.promocode {
  font-family: var(--font-family-promo-code);
}

.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 (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

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

.pink {
  color: var(--color-pink);
}

.white {
  color: var(--color-light);
}

body {
  font-family: var(--font-family-header);
  font-weight: 700;
  background-color: #0a1428;
  color: var(--color-white);
  position: relative;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.21px;
}

.bottom-bg {
  background: linear-gradient(180deg, #0a1428 0%, #000 100%);
  width: 100%;
}

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

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

.button {
  background: var(--yellow-gradient);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  color: black;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: clamp(0.8125rem, 0.7373540856rem + 0.2918287938vw, 1rem);
  margin: 0.25rem;
  transition: padding 0.3s ease, margin 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .button:hover {
    box-shadow: var(--box-shadow);
    padding: 1.25rem 1.75rem;
    margin: 0;
  }
}
@media (any-hover: none) {
  .button:active {
    box-shadow: var(--box-shadow);
    padding: 1.25rem 1.75rem;
    margin: 0;
  }
}
.button--blue {
  background: var(--color-blue);
  width: 12.0625rem;
  height: 3.5rem;
  padding: 0;
  max-width: none;
  margin: 0.25rem 0.21875rem;
  transition: padding 0.3s ease, width 0.3s ease, height 0.3s ease, margin 0.3s ease, box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .button--blue:hover {
    box-shadow: 0 0 1.25rem 0 rgba(0, 217, 255, 0.6);
    width: 12.5rem;
    height: 4rem;
    margin: 0;
    padding: 0;
  }
}
@media (any-hover: none) {
  .button--blue:active {
    box-shadow: 0 0 1.25rem 0 rgba(0, 217, 255, 0.6);
    width: 12.5rem;
    height: 4rem;
    margin: 0;
    padding: 0;
  }
}

.header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
}
@media (width <= 31.25rem) {
  .header {
    padding-top: 1.5rem;
  }
}
@media (max-width: 499px) and (min-height: 901px) {
  .header {
    max-height: 100vh;
  }
}
.header__logo {
  margin-bottom: 2rem;
}
.header__clip {
  position: absolute;
  inset: 0;
  background-color: #0a1428;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12rem), 0 100%);
  overflow: hidden;
  z-index: -1;
}
@media (width <= 50rem) {
  .header__clip {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40vw), 0 100%);
  }
}
@media (width <= 31.25rem) {
  .header__clip {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 35vw), 0 100%);
  }
}
.header__subtitle {
  background: var(--blue-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.header__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.header__bg-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__container {
  max-width: 81.0625rem;
  display: flex;
  width: 100%;
}
.header__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 1rem;
  max-width: 37.5rem;
  width: 100%;
  flex-shrink: 0;
}
@media (width <= 50rem) {
  .header__content-top {
    line-height: 3.75rem;
  }
}
.header__players {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem;
  row-gap: 1.5rem;
  width: 100%;
}
@media (width <= 50rem) {
  .header__players {
    row-gap: 1rem;
    padding: 1rem;
  }
}
.header__players-buttons {
  width: 100%;
}
.header__players-buttons::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
}
@media (width <= 50rem) {
  .header__players-buttons::after {
    margin-top: 1rem;
  }
}
.header__players-button {
  background: transparent;
  color: var(--color-gray) !important;
  border: none;
  font-size: clamp(0.8125rem, 0.7373540856rem + 0.2918287938vw, 1rem);
  padding: 0.625rem 2rem;
}
.header__players-button--active {
  border-bottom: 2px solid var(--color-yellow);
  color: var(--color-yellow) !important;
}
.header__players-content {
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
  min-height: 8rem;
}
@media (width <= 50rem) {
  .header__players-content {
    min-height: auto;
  }
}
.header__players-title {
  color: var(--color-yellow);
  font-size: clamp(1.5rem, 1.2996108949rem + 0.7782101167vw, 2rem);
}
.header__players-subtitle {
  font-size: clamp(0.8125rem, 0.7373540856rem + 0.2918287938vw, 1rem);
  font-weight: 400;
  font-family: var(--font-family-base);
  margin-bottom: 1.5rem;
}
@media (width <= 31.25rem) {
  .header__players-subtitle {
    margin: 0;
  }
}
.header__promocode {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  row-gap: 0.25rem;
  border-radius: 0.75rem;
}
@media (width <= 50rem) {
  .header__promocode {
    padding: 1rem;
  }
}
@media (width <= 31.25rem) {
  .header__promocode {
    row-gap: 0;
  }
}
.header__promocode-title {
  font-family: var(--font-family-base);
  color: var(--color-gray);
  font-weight: 400;
}
.header__promocode-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__promocode-value {
  color: var(--color-yellow);
  font-size: clamp(1.5rem, 1.2996108949rem + 0.7782101167vw, 2rem);
  line-height: 2.75rem;
  font-weight: 400;
}
.header__promocode-copybutton {
  border: none;
  background: transparent;
  padding-block: 0.375rem;
  border-radius: 30%;
}
.header__promocode-copybutton--active {
  pointer-events: none;
}
@media (any-hover: hover) {
  .header__promocode-copybutton:hover {
    background: rgba(255, 255, 255, 0.15);
  }
}
@media (any-hover: none) {
  .header__promocode-copybutton:active {
    background: rgba(255, 255, 255, 0.15);
  }
}
.header__warning {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.header__character {
  display: flex;
  align-items: end;
}
.header__character-image {
  z-index: 3;
  transition: transform 0.3s ease-out;
  transform-origin: bottom;
  margin-bottom: 3.75rem;
}
@media (width <= 31.25rem) {
  .header__character-image {
    max-width: 9.3125rem !important;
    margin-top: 0.9375rem !important;
  }
}
@media (any-hover: hover) {
  .header__character-image:hover {
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  .header__character-image:active {
    transform: scale(1.05);
  }
}

@media (width <= 50rem) {
  .header__container {
    flex-direction: column;
    align-items: center;
  }
  .header__content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .header__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .header__players {
    text-align: left;
    align-items: flex-start;
  }
  .header__players-buttons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .header__promocode {
    width: 100%;
    text-align: left;
  }
  .header__button {
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
  .header__character {
    order: 1;
    justify-content: center;
    min-width: 9.3125rem;
  }
  .header__character-image {
    max-width: 40vw;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    margin-top: -20px;
  }
}
@media (width <= 31.25rem) {
  .header__logo-picture {
    width: 9.8125rem;
    height: auto;
  }
}
.players {
  background: #0a1428;
  width: 100%;
  overflow-x: hidden;
  padding-bottom: 0;
}
.players__container {
  margin-inline: auto;
  width: 100%;
}
.players__top {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}
.players__title {
  font-size: clamp(2rem, 1.7996108949rem + 0.7782101167vw, 2.5rem);
  font-family: var(--font-family-header);
  font-weight: 700;
  color: var(--color-white);
}
.players__subtitle {
  font-size: clamp(0.8125rem, 0.7373540856rem + 0.2918287938vw, 1rem);
  font-family: var(--font-family-base);
  font-weight: 400;
  color: var(--color-gray);
}
.players__grid {
  display: grid;
  grid-template-columns: repeat(4, 18.375rem);
  grid-template-rows: repeat(2, 29.125rem);
  gap: 1.5rem;
  margin: -2rem;
  padding: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
}
.players__grid::-webkit-scrollbar {
  display: none;
}
.players__grid.active {
  cursor: grabbing;
}
.players__card {
  width: 18.375rem;
  height: 29.125rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
@media (any-hover: hover) {
  .players__card:hover {
    box-shadow: 0 0 2rem 0 rgba(0, 217, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.02);
  }
  .players__card:hover .players__card-image-wrap {
    transform: scale(1.0162);
  }
  .players__card:hover .players__card-body::after {
    opacity: 1;
  }
}
@media (any-hover: none) {
  .players__card:active {
    box-shadow: 0 0 2rem 0 rgba(0, 217, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.02);
  }
  .players__card:active .players__card-image-wrap {
    transform: scale(1.0162);
  }
  .players__card:active .players__card-body::after {
    opacity: 1;
  }
}
.players__card-image-wrap {
  width: 15.375rem;
  height: 15.375rem;
  margin: 1.5rem auto 0;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  align-self: stretch;
  border-radius: 0.5rem;
  border: 1px solid #000;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media (any-hover: hover) {
  .players__card-image-wrap:hover .players__card-stats {
    opacity: 1;
  }
}
@media (any-hover: none) {
  .players__card-image-wrap:active .players__card-stats {
    opacity: 1;
  }
}
.players__card-stats {
  position: absolute;
  inset: 0;
  background-color: rgba(13, 13, 13, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.players__card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.players__card-stat-label {
  font-family: var(--font-family-base);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  text-transform: uppercase;
}
.players__card-stat-label--yellow {
  color: #ffd700;
}
.players__card-stat-label--orange {
  color: #f58607;
}
.players__card-stat-label--green {
  color: #00ff37;
}
.players__card-stat-label--cyan {
  color: #00d9ff;
}
.players__card-stat-label--gray {
  color: #9ca3af;
  text-transform: none;
}
.players__card-stat-value {
  color: #fff;
  font-family: var(--font-family-header);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
  text-transform: uppercase;
}
.players__card-stat-value--small {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
  margin-top: -0.25rem;
}
.players__card-divider {
  width: 14.625rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.players__card-image {
  width: 15.375rem;
  height: 15.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-user-drag: none;
}
.players__card-body {
  padding: 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex-grow: 1;
}
.players__card-body::after {
  content: "Hover for stats";
  align-self: stretch;
  color: #9ca3af;
  text-align: right;
  font-family: var(--font-family-base);
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.125rem;
  margin-top: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.players__card-name {
  font-size: 1.125rem;
  line-height: 2.75rem;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-family-header);
}
.players__card-role {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 1.5rem;
  background: rgba(255, 215, 0, 0.2);
  color: var(--color-yellow);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  font-family: var(--font-family-header);
  align-self: flex-start;
}
.players__card-nick {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-gray);
  font-family: var(--font-family-header);
  font-weight: 600;
}
.players__card-team {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-family-base);
  font-weight: 400;
}
@media (width <= 47.99875rem) {
  .players__grid {
    grid-template-columns: repeat(8, 18.375rem);
    grid-template-rows: 29.125rem;
  }
}
.players__promo {
  margin-top: 2.1875rem;
  margin-bottom: 2.1875rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 9.5rem 1.5rem 2rem;
  position: relative;
  gap: 0.625rem;
}
@media (width <= 45.625rem) {
  .players__promo {
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 0;
  }
}
.players__promo-text {
  color: #fff;
  font-family: var(--font-family-header);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
}
.players__promo-highlight {
  color: #ffd700;
  font-size: 1.25rem;
}
.players__promo-actions {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (width <= 45.625rem) {
  .players__promo-actions {
    width: 100%;
    justify-content: center;
  }
}
.players__promo-btn {
  flex-shrink: 0;
}
@media (width <= 45.625rem) {
  .players__promo-btn {
    width: 100%;
    max-width: none;
  }
}
@media (width <= 45.625rem) and (any-hover: hover) {
  .players__promo-btn:hover {
    width: 100%;
  }
}
@media (width <= 45.625rem) and (any-hover: none) {
  .players__promo-btn:active {
    width: 100%;
  }
}
.players__promo-image {
  position: absolute;
  left: calc(100% + 3.25rem);
  width: 7.6875rem;
  height: 10.875rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  animation: floatYog 1s ease-in-out infinite;
}
@media (width <= 81.25rem) {
  .players__promo-image {
    left: calc(100% + 2.3125rem);
  }
}
@media (width <= 45.625rem) {
  .players__promo-image {
    display: none;
  }
}
.players__promo-mobile-image {
  display: none;
}
@media (width <= 45.625rem) {
  .players__promo-mobile-image {
    display: flex;
    justify-content: center;
    margin-top: 0.625rem;
  }
  .players__promo-mobile-image img {
    width: 7.6875rem;
    height: auto;
    animation: floatYogMobile 1s ease-in-out infinite;
  }
}

@keyframes floatYogMobile {
  0%, 100% {
    transform: translateY(0);
  }
  45%, 55% {
    transform: translateY(-0.625rem);
  }
}
@keyframes floatYog {
  0%, 100% {
    transform: translateY(-50%);
  }
  45%, 55% {
    transform: translateY(calc(-50% - 0.625rem));
  }
}
.steps {
  overflow-x: hidden;
  max-width: 100vw;
  padding-bottom: 0;
}
.steps__top {
  padding-bottom: 4rem;
  text-align: center;
}
.steps__subtitle-block {
  padding-block: 4rem;
  text-align: center;
}
.steps__subtitle-title {
  color: var(--color-white);
  font-size: clamp(1.5rem, 1.2996108949rem + 0.7782101167vw, 2rem);
}
.steps__title {
  color: var(--color-white);
}
.steps__grid {
  display: flex;
  gap: 1.5rem;
}
@media (width <= 45.625rem) {
  .steps__grid {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.steps__card {
  flex: 1;
  max-width: 25rem;
  min-height: 13.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  transition: box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .steps__card:hover {
    box-shadow: 0 0 1.5rem 0 var(--color-yellow);
  }
}
@media (any-hover: none) {
  .steps__card:active {
    box-shadow: 0 0 1.5rem 0 var(--color-yellow);
  }
}
.steps__card-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0d0d0d;
  text-align: center;
  font-family: var(--font-family-header);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.75rem;
}
.steps__card-title {
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-family-header);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
}
.steps__card-text {
  color: var(--color-gray);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
.steps__card-text-highlight {
  color: var(--color-yellow);
  font-weight: 700;
}
.steps__pills {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.steps__pills::-webkit-scrollbar {
  display: none;
}
.steps__pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  width: 14.375rem;
  flex-shrink: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.3s ease;
}
@media (any-hover: hover) {
  .steps__pill:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%), rgba(255, 255, 255, 0.05);
  }
}
@media (any-hover: none) {
  .steps__pill:active {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%), rgba(255, 255, 255, 0.05);
  }
}
@media (width <= 43.75rem) {
  .steps__pill {
    width: auto;
    flex-shrink: 1;
  }
}
.steps__pill-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.steps__pill-text {
  color: var(--color-white);
  font-family: var(--font-family-header);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  white-space: nowrap;
}
.steps__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}
.steps__action .button {
  font-size: 1rem;
}
@media (width <= 45.625rem) {
  .steps__action .button {
    width: 100%;
    max-width: 100%;
  }
}
.steps__promo {
  margin-top: 1rem;
  color: #9ca3af;
  font-family: var(--font-family-base);
  font-size: 0.875rem;
  font-weight: 400;
}
.steps__promo-highlight {
  color: var(--color-yellow);
  font-family: var(--font-family-base);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer {
  margin-top: 1rem;
  padding-block: 4rem;
}
@media (width <= 48rem) {
  .footer {
    padding-block: 3rem;
    margin-top: 0;
  }
}
.footer {
  color: #9ca3af;
  font-family: var(--font-family-base);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5rem;
  width: 100%;
}
.footer__container {
  width: 100%;
  max-width: var(--container-width, 90rem);
  margin: 0 auto;
  padding-inline: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 48rem) {
  .footer__container {
    padding-inline: 2rem;
    flex-direction: column-reverse;
    gap: 0.625rem;
  }
}
.footer__left {
  text-align: center;
}
.footer__right {
  display: flex;
  gap: 1.5rem;
}
@media (width <= 48rem) {
  .footer__right {
    gap: 0.625rem;
  }
}
.footer__link {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .footer__link:hover {
    color: var(--color-yellow);
  }
}
@media (any-hover: none) {
  .footer__link:active {
    color: var(--color-yellow);
  }
}/*# sourceMappingURL=main.css.map */