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

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
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;
  }
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-sm";
  src: url("../fonts/Inter/Inter_18pt-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-sm";
  src: url("../fonts/Inter/Inter_18pt-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-sm";
  src: url("../fonts/Inter/Inter_18pt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-sm";
  src: url("../fonts/Inter/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-sm";
  src: url("../fonts/Inter/Inter_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-sm";
  src: url("../fonts/Inter/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-sm";
  src: url("../fonts/Inter/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-sm";
  src: url("../fonts/Inter/Inter_18pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-sm";
  src: url("../fonts/Inter/Inter_18pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-md";
  src: url("../fonts/Inter/Inter_24pt-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-md";
  src: url("../fonts/Inter/Inter_24pt-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-md";
  src: url("../fonts/Inter/Inter_24pt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-md";
  src: url("../fonts/Inter/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-md";
  src: url("../fonts/Inter/Inter_24pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-md";
  src: url("../fonts/Inter/Inter_24pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-md";
  src: url("../fonts/Inter/Inter_24pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-md";
  src: url("../fonts/Inter/Inter_24pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-md";
  src: url("../fonts/Inter/Inter_24pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-lg";
  src: url("../fonts/Inter/Inter_28pt-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-lg";
  src: url("../fonts/Inter/Inter_28pt-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-lg";
  src: url("../fonts/Inter/Inter_28pt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-lg";
  src: url("../fonts/Inter/Inter_28pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-lg";
  src: url("../fonts/Inter/Inter_28pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-lg";
  src: url("../fonts/Inter/Inter_28pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-lg";
  src: url("../fonts/Inter/Inter_28pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-lg";
  src: url("../fonts/Inter/Inter_28pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-lg";
  src: url("../fonts/Inter/Inter_28pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansSinhala";
  src: url("../fonts/NotoSansSinhala/NotoSansSinhala-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansSinhala";
  src: url("../fonts/NotoSansSinhala/NotoSansSinhala-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansSinhala";
  src: url("../fonts/NotoSansSinhala/NotoSansSinhala-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansSinhala";
  src: url("../fonts/NotoSansSinhala/NotoSansSinhala-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansSinhala";
  src: url("../fonts/NotoSansSinhala/NotoSansSinhala-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansSinhala";
  src: url("../fonts/NotoSansSinhala/NotoSansSinhala-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansSinhala";
  src: url("../fonts/NotoSansSinhala/NotoSansSinhala-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansSinhala";
  src: url("../fonts/NotoSansSinhala/NotoSansSinhala-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansSinhala";
  src: url("../fonts/NotoSansSinhala/NotoSansSinhala-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.ui-card {
  background: #1e1e1d;
  backdrop-filter: blur(2px);
  border-radius: 30px;
  border: 1px solid #ffbc00;
}

.ui-button {
  display: flex;
  flex-direction: row;
  position: relative;
  padding: 8px 24px;
  width: 100%;
  max-width: 280px;
  height: 56.4px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  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 20px 0 rgba(255, 255, 255, 0.6) inset;
  animation: shadow-pulse 0.5s ease-out alternate infinite;
}
.ui-button__text {
  color: #000;
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.ui-button::after {
  content: "";
  position: absolute;
  top: 3.6px;
  z-index: -1;
  width: 100%;
  height: 56.4px;
  border-radius: 100px;
  background: radial-gradient(56.27% 117.62% at 37.5% 100%, rgba(255, 255, 255, 0.29) 0%, rgba(255, 255, 255, 0.05) 100%), radial-gradient(112.91% 147.56% at 43.75% -31.25%, rgba(255, 198, 137, 0.92) 21.25%, rgba(238, 255, 106, 0.57) 88.62%), radial-gradient(178.09% 220.16% at 94.89% -132.81%, #c39337 67.59%, rgba(219, 255, 0, 0.38) 100%), #f6d280;
  box-shadow: 0 0 4px 0 #fff inset;
}

.ui-title {
  font-family: "NotoSansSinhala", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffbc00;
  text-align: center;
  margin-bottom: 39px;
}
@media only screen and (max-width: 576px) {
  .ui-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.ui-title_inter {
  font-family: "Inter-lg", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.ui-title_rubik {
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.ui-text {
  font-family: "NotoSansSinhala", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #fff;
}
.ui-text_inter {
  font-family: "Inter-lg", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.ui-text_weight-100 {
  font-weight: 100;
}
.ui-text_weight-200 {
  font-weight: 200;
}
.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_gray {
  color: rgba(255, 255, 255, 0.6980392157);
}

@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);
  }
}
@keyframes shadow_pulse {
  0% {
    box-shadow: rgba(75, 197, 23, 0) 0 0 16px 10px;
  }
  100% {
    box-shadow: #4bc517 0 0 16px 10px;
  }
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.6) inset;
  }
  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);
  }
}
body {
  background: url("../images/c541a87d72590144d57f7eb2f47e4d64474fe078.png") 50%/cover no-repeat fixed;
  backdrop-filter: brightness(30%);
  padding: 0 16px 64px;
}
@media only screen and (max-width: 835px) {
  body {
    padding: 87px 16px 64px;
  }
}
@media only screen and (max-width: 768px) {
  body {
    padding: 87px 0 0;
  }
}
@media only screen and (max-width: 576px) {
  body {
    padding: 72px 0 0;
  }
}

.media-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media only screen and (max-width: 425px) {
  .media-card {
    padding: 16px 0;
  }
}
.media-card__image {
  height: 100px;
  object-fit: contain;
}
@media only screen and (max-width: 576px) {
  .media-card__image {
    height: 50px;
  }
}
.media-card__text {
  font-size: 16px;
}
@media only screen and (max-width: 576px) {
  .media-card__text {
    font-size: 14px;
  }
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: grid-template-rows 0.3s ease-in;
}
@media only screen and (max-width: 835px) {
  .header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    display: grid;
    align-items: start;
    justify-content: unset;
    grid-template-columns: 1fr;
    grid-template-rows: 55px 0fr;
    background: #000;
  }
}
@media only screen and (max-width: 576px) {
  .header {
    grid-template-rows: 30px 0fr;
  }
}
.header_nav-opened {
  grid-template-rows: 55px 1fr;
}
@media only screen and (max-width: 576px) {
  .header_nav-opened {
    grid-template-rows: 30px 1fr;
  }
}
.header__left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
@media only screen and (max-width: 835px) {
  .header__left {
    height: 100%;
    padding: 0;
  }
}
.header__right {
  height: 100%;
  overflow: hidden;
}
.header__burger {
  background: transparent;
  border: none;
  display: none;
  visibility: hidden;
  cursor: pointer;
}
@media only screen and (max-width: 835px) {
  .header__burger {
    display: block;
    visibility: visible;
  }
}
.header__logo {
  width: 300px;
  aspect-ratio: 10/1;
}
@media only screen and (max-width: 1024px) {
  .header__logo {
    width: 250px;
  }
}
@media only screen and (max-width: 576px) {
  .header__logo {
    width: 131px;
  }
}
.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
}
@media only screen and (max-width: 1024px) {
  .header__nav {
    gap: 16px;
  }
}
@media only screen and (max-width: 835px) {
  .header__nav {
    display: flex;
    flex-direction: column;
    padding: 24px;
  }
}
.header__link {
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-decoration: none;
  font-size: 16px;
}

.main {
  padding: 12px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media only screen and (max-width: 768px) {
  .main {
    padding: 12px 16px 64px;
  }
}
@media only screen and (max-width: 576px) {
  .main {
    gap: 32px;
  }
}
.main .hero {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
  padding: 47px 43px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 201, 49, 0.2);
  backdrop-filter: blur(8px);
}
@media only screen and (max-width: 835px) {
  .main .hero {
    align-items: center;
    padding: 24px 16px 16px;
  }
}
.main .hero__melbet-logo {
  width: 280px;
}
@media only screen and (max-width: 576px) {
  .main .hero__melbet-logo {
    width: 200px;
  }
}
.main .hero__title {
  font-size: 30px;
  margin: 16px 0 24px;
}
@media only screen and (max-width: 835px) {
  .main .hero__title {
    text-align: center;
    margin: 16px 0 181px;
  }
}
@media only screen and (max-width: 576px) {
  .main .hero__title {
    font-size: 24px;
  }
}
.main .hero__image {
  position: absolute;
  object-fit: contain;
  z-index: -1;
}
.main .hero__image-coins {
  width: 726px;
  height: 414px;
  transform: rotate(-143.82deg);
  top: -190px;
  right: -236px;
}
@media only screen and (max-width: 835px) {
  .main .hero__image-coins {
    display: none;
    visibility: hidden;
  }
}
.main .hero__image-human {
  width: 415px;
  aspect-ratio: 1;
  bottom: 0;
  right: -6px;
}
@media only screen and (max-width: 835px) {
  .main .hero__image-human {
    width: 320px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 284px;
  }
}
.main .hero__image-flag {
  bottom: -9px;
  right: 228px;
  width: 300px;
  object-fit: contain;
  transform: rotate(8deg);
}
@media only screen and (max-width: 835px) {
  .main .hero__image-flag {
    width: 337px;
    right: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-18deg);
  }
}
.main .benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media only screen and (max-width: 768px) {
  .main .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .main .benefits__grid {
    gap: 12px;
  }
}
.main .benefits__text {
  font-size: 16px;
}
.main .work-process__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  counter-reset: process;
}
@media only screen and (max-width: 576px) {
  .main .work-process__list {
    gap: 16px;
  }
}
.main .work-process__card {
  padding: 16px 24px;
}
@media only screen and (max-width: 576px) {
  .main .work-process__card {
    padding: 16px;
  }
}
.main .work-process__name {
  counter-increment: process;
  font-size: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 576px) {
  .main .work-process__name {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.main .work-process__name::before {
  content: counter(process) ". ";
}
.main .work-process__text {
  font-size: 20px;
}
@media only screen and (max-width: 576px) {
  .main .work-process__text {
    font-size: 14px;
  }
}
.main .requirements__subtitle {
  margin-bottom: 28px;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .main .requirements__subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.main .requirements__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media only screen and (max-width: 768px) {
  .main .requirements__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .main .requirements__cards {
    gap: 12px;
  }
}
.main .presentation__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.main .presentation__video {
  width: 248px;
  height: 440px;
  object-fit: contain;
}
@media only screen and (max-width: 576px) {
  .main .presentation__video {
    width: 170px;
    height: 300px;
  }
}
.main .join-block__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.main .join-block__title {
  margin-bottom: 24px;
}

.footer {
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 576px) {
  .footer__logo {
    width: 131px;
  }
}
.footer__text {
  font-family: "Inter-sm", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
}
@media only screen and (max-width: 576px) {
  .footer__text {
    font-size: 12px;
  }
}

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