@charset "UTF-8";
@import url("../fonts/Rubik/index.css"); /**
  Нормализация блочной модели
 */
*,
*::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;
}

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

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

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

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

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

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

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

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.ui-card {
  padding: 24px 32px;
  background: #1e1e1d;
  border: 1px solid rgba(192, 206, 215, 0.3019607843);
  border-radius: 40px;
}
@media only screen and (max-width: 576px) {
  .ui-card {
    padding: 16px;
  }
}

.ui-outlined-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ffbc00;
  border-radius: 30px;
}

.ui-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 80px;
  border-radius: 40px;
  background: linear-gradient(178deg, #ffdf84 0%, #ffbc00 50%, #ffdf84 100%);
  background-size: 100% 200%;
  background-position: 0 0;
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media only screen and (max-width: 576px) {
  .ui-button {
    font-size: 12px;
    height: 60px;
  }
}
.ui-button:hover {
  background-position: 0 100%;
}

.ui-text {
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.ui-text_weight-300 {
  font-weight: 300;
}
.ui-text_weight-400 {
  font-weight: 400;
}
.ui-text_weight-500 {
  font-weight: 500;
}
.ui-text_weight-600 {
  font-weight: 600;
}
.ui-text_weight-700 {
  font-weight: 700;
}
.ui-text_weight-800 {
  font-weight: 800;
}
.ui-text_weight-900 {
  font-weight: 900;
}
.ui-text_center {
  text-align: center;
}
.ui-text_uppercase {
  text-transform: uppercase;
}
.ui-text_yellow {
  color: #ffbc00;
}
.ui-text_black {
  color: #000;
}
.ui-text_white {
  color: #fff;
}
.ui-text_gray {
  color: #c0ced7;
}

@keyframes rotated_bouncing {
  0% {
    transform: translateY(0) rotateZ(19.22deg);
  }
  100% {
    transform: translateY(12px) rotateZ(19.22deg);
  }
}
@keyframes bouncing {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(12px);
  }
}
body {
  background: #000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 576px) {
  body {
    padding: 13px 10px;
    gap: 10px;
  }
}

img {
  pointer-events: none;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .background {
    display: none;
    visibility: hidden;
  }
}
.background__strokes {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  object-fit: contain;
}
.background__container {
  width: 100%;
  max-width: 1024px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.background__decor {
  position: absolute;
  filter: brightness(0.5);
  z-index: 10;
}
.background__decor-volleyball {
  top: 62px;
  right: -68px;
  width: 135px;
  object-fit: contain;
}
.background__decor-football {
  top: 255px;
  left: -86px;
  width: 191px;
  object-fit: contain;
}
.background__decor-cricket {
  top: 553px;
  right: -70px;
  width: 102px;
  object-fit: contain;
}

.header,
.main,
.footer {
  width: 100%;
  max-width: 1024px;
}

.header {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.header__wrapper {
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  gap: 12px;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 576px) {
  .header__wrapper {
    gap: 4px;
  }
}
.header__image {
  position: absolute;
  left: 4px;
  width: 120px;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .header__image {
    display: none;
    visibility: hidden;
  }
}
.header__title {
  font-size: 20px;
}
@media only screen and (max-width: 576px) {
  .header__title {
    font-size: 14px;
  }
}
.header__slogan {
  font-size: 16px;
}
@media only screen and (max-width: 576px) {
  .header__slogan {
    font-size: 13px;
  }
}
.header__flag {
  width: 32px;
  height: 24px;
  background: #fff;
}
@media only screen and (max-width: 1024px) {
  .header__link {
    display: none;
    visibility: hidden;
  }
}

.main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 576px) {
  .main {
    gap: 10px;
  }
}
.main .hero__wrapper {
  display: flex;
  flex-direction: row;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .main .hero__wrapper {
    display: flex;
    flex-direction: column;
  }
}
.main .hero__bonus {
  width: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .main .hero__bonus {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.main .hero__bonus-text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
}
.main .hero__title {
  font-size: 32px;
}
@media only screen and (max-width: 576px) {
  .main .hero__title {
    font-size: 20px;
  }
}
.main .hero__description {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .main .hero__description {
    font-size: 12px;
  }
}
.main .hero__attention {
  font-size: 12px;
}
@media only screen and (max-width: 1024px) {
  .main .hero__attention {
    text-align: center;
  }
}
.main .hero__decorations {
  position: absolute;
  top: -9px;
  right: 0px;
  width: 210px;
  height: 210px;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .main .hero__decorations {
    transform: translate(50px, -30px) scale(0.8);
  }
}
@media only screen and (max-width: 576px) {
  .main .hero__decorations {
    transform: translate(50px, -30px) scale(0.64);
  }
}
@media only screen and (max-width: 375px) {
  .main .hero__decorations {
    display: none;
    visibility: hidden;
  }
}
.main .hero__trophy-image {
  position: absolute;
  left: 20px;
  width: 165px;
  object-fit: contain;
  transform: rotateZ(19.22deg) translate(0);
  animation: rotated_bouncing 1.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) alternate infinite;
}
.main .hero__ball-image {
  position: absolute;
  top: 105px;
  left: 97px;
  right: 0;
  width: 77px;
  object-fit: contain;
  transform: translate(0);
  animation: bouncing 1.5s 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955) alternate infinite;
}
.main .hero__cards-grid {
  padding: 19px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px 24px;
  flex-grow: 1;
}
@media only screen and (max-width: 1024px) {
  .main .hero__cards-grid {
    margin-left: -32px;
    padding: 16px 32px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: calc(100% + 64px);
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .main .hero__cards-grid::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .main .hero__cards-grid {
    margin-left: -16px;
    padding: 16px;
    width: calc(100% + 32px);
  }
}
.main .hero__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .main .hero__card {
    width: 200px;
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 768px) {
  .main .hero__card {
    width: unset;
  }
}
.main .hero__card-image {
  max-width: 50px;
  max-height: 50px;
}
.main .hero__card-subling, .main .hero__card-text {
  font-size: 14px;
}
@media only screen and (max-width: 1024px) {
  .main .hero__card-subling, .main .hero__card-text {
    font-size: 12px;
  }
}
.main .hero__card:nth-child(1) {
  grid-column: span 2;
}
.main .hero__card:nth-child(2) {
  grid-column: span 2;
}
.main .hero__card:nth-child(3) {
  grid-column: span 2;
}
.main .hero__card:nth-child(4) {
  grid-column: span 3;
}
.main .hero__card:nth-child(5) {
  grid-column: span 3;
}
.main .roadmap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.main .roadmap__steps {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media only screen and (max-width: 835px) {
  .main .roadmap__steps {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.main .roadmap__title {
  font-size: 24px;
}
@media only screen and (max-width: 576px) {
  .main .roadmap__title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .main .roadmap .step {
    gap: 4px;
  }
}
.main .roadmap .step__title, .main .roadmap .step__name, .main .roadmap .step__text {
  font-size: 14px;
}
@media only screen and (max-width: 576px) {
  .main .roadmap .step__title, .main .roadmap .step__name, .main .roadmap .step__text {
    font-size: 12px;
  }
}
.main .partners {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 32px;
}
@media only screen and (max-width: 1024px) {
  .main .partners {
    display: none;
    visibility: hidden;
  }
}
.main .partners__image {
  max-height: 58px;
  object-fit: contain;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .footer {
    gap: 10px;
  }
}
.footer__text {
  font-size: 12px;
}
@media only screen and (max-width: 576px) {
  .footer__text {
    font-size: 10px;
  }
}
.footer__socials {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 4px;
  background: rgba(255, 188, 0, 0.2);
  border-radius: 100px;
}
.footer__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  transition: all 0.2s ease-in;
}
.footer__link:hover {
  background: #1e1e1d;
}

/*# sourceMappingURL=index.css.map */
