@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: "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: linear-gradient(90deg, rgba(28, 67, 103, 0.3) 0%, rgba(56, 133, 205, 0.3) 100%);
  backdrop-filter: blur(2px);
  border-radius: 24px;
}

.ui-telegram-link {
  padding: 4px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  background: #4bc517;
  border-radius: 100px;
  text-decoration: none;
  position: relative;
}
.ui-telegram-link__icon {
  width: 40px;
  height: 40px;
}
.ui-telegram-link__text {
  font-family: "Inter-lg", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
.ui-telegram-link::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%);
  width: 130px;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  box-shadow: rgba(75, 197, 23, 0) 0 0 16px 10px;
  z-index: -1;
  animation: shadow_pulse 1.3s cubic-bezier(0.89, 0, 0.13, 0.99) alternate infinite;
}

.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: #fff;
  text-align: center;
}
@media only screen and (max-width: 576px) {
  .ui-title {
    font-size: 20px;
  }
}
.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::after {
  content: url("../images/b782f44e013901e97c23885884044ba9c93a76d6.png");
  position: relative;
  z-index: -1;
  display: block;
  width: 361px;
  height: 77px;
  margin: -38px auto 0;
}
@media only screen and (max-width: 576px) {
  .ui-title::after {
    width: 100%;
  }
}

.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;
  }
}
body {
  background: url("../images/36c649b0e1712c93474bea663e8686a2ee050516.jpg") 50%/cover no-repeat fixed;
  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;
    background: url("../images/34e9bfa5b4f89c66f397ac03de7d4db5578cc10d.jpg") 50%/cover no-repeat fixed;
  }
}

.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: #13213e;
  }
}
@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;
}
.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;
  }
}
@media only screen and (max-width: 1024px) {
  .header__logo-image {
    width: 240px;
    height: 71px;
    object-fit: contain;
  }
}
@media only screen and (max-width: 835px) {
  .header__logo-image {
    height: unset;
  }
}
@media only screen and (max-width: 576px) {
  .header__logo-image {
    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: "Inter-sm", 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: 18.5px 43px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
@media only screen and (max-width: 835px) {
  .main .hero {
    align-items: center;
  }
}
@media only screen and (max-width: 576px) {
  .main .hero__1x-image {
    width: 200px;
  }
}
.main .hero__title {
  font-size: 30px;
}
@media only screen and (max-width: 835px) {
  .main .hero__title {
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .main .hero__title {
    font-size: 24px;
  }
}
.main .hero__image {
  position: absolute;
  max-height: 100%;
}
.main .hero__image-coins {
  right: 0;
  top: 0;
}
@media only screen and (max-width: 835px) {
  .main .hero__image-coins {
    display: none;
    visibility: hidden;
  }
}
.main .hero__image-human {
  top: 0;
  right: 135px;
}
@media only screen and (max-width: 835px) {
  .main .hero__image-human {
    display: none;
    visibility: hidden;
  }
}
.main .hero__image-flag {
  top: 50px;
  right: 70px;
  width: 300px;
  object-fit: contain;
  transform: rotate(8deg);
}
@media only screen and (max-width: 835px) {
  .main .hero__image-flag {
    position: static;
    transform: none;
  }
}
@media only screen and (max-width: 576px) {
  .main .hero__image-flag {
    width: 158px;
  }
}
.main .hero__link {
  margin: 17px 0 23px;
}
.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__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;
}
.main .join-block__link {
  margin: 17px 0 23px;
}

.footer {
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: #1c4367;
}
@media only screen and (max-width: 576px) {
  .footer__logo-image {
    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 */
