@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-button {
  width: 185px;
  padding: 4px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 100px;
  text-decoration: none;
  position: relative;
  border: none;
  cursor: pointer;
}
.ui-button_green {
  background: #4bc517;
}
.ui-button_green::after {
  animation: green_shadow_pulse 1.3s cubic-bezier(0.89, 0, 0.13, 0.99) alternate infinite;
}
.ui-button_red {
  background: #e86b7d;
}
.ui-button_red::after {
  animation: red_shadow_pulse 1.3s cubic-bezier(0.89, 0, 0.13, 0.99) alternate infinite;
}
.ui-button__icon {
  width: 40px;
  height: 40px;
}
.ui-button__text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
.ui-button::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%);
  width: 69%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  box-shadow: rgba(75, 197, 23, 0) 0 0 16px 10px;
  z-index: -1;
}

.ui-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  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", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.ui-title::after {
  content: "";
  background: url("../images/b782f44e013901e97c23885884044ba9c93a76d6.png") center/contain no-repeat;
  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, .form-dialog__submit-button {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
}
.ui-text_inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.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 green_shadow_pulse {
  0% {
    box-shadow: rgba(75, 197, 23, 0) 0 0 16px 10px;
  }
  100% {
    box-shadow: #4bc517 0 0 16px 10px;
  }
}
@keyframes red_shadow_pulse {
  0% {
    box-shadow: rgba(232, 107, 125, 0) 0 0 16px 10px;
  }
  100% {
    box-shadow: #e86b7d 0 0 16px 10px;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body {
  background: url("../images/36c649b0e1712c93474bea663e8686a2ee050516.jpg") 50%/cover no-repeat fixed;
}
@media only screen and (max-width: 576px) {
  body {
    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;
  }
}

.form-dialog {
  max-width: 800px;
  width: 100%;
  position: fixed;
  border: none;
  overflow: visible;
  padding: 24px;
}
.form-dialog.loading .form-dialog__form, .form-dialog.fulfilled .form-dialog__form {
  opacity: 0;
  visibility: hidden;
}
.form-dialog.loading .form-dialog__status, .form-dialog.fulfilled .form-dialog__status {
  opacity: 1;
  visibility: visible;
  display: block;
}
.form-dialog.loading .form-dialog__loader {
  display: inline-block;
}
.form-dialog.fulfilled .form-dialog__message {
  display: block;
}
.form-dialog__status {
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-dialog__message {
  display: none;
}
.form-dialog__loader {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: none;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@media only screen and (max-width: 835px) {
  .form-dialog {
    max-width: 600px;
    width: calc(100% - 32px);
  }
}
@media only screen and (max-width: 576px) {
  .form-dialog {
    width: 100%;
    height: 100%;
    max-height: unset;
    inset: 0;
    border-radius: 0;
  }
}
.form-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.form-dialog__form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media only screen and (max-width: 835px) {
  .form-dialog__form {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 576px) {
  .form-dialog__form {
    margin-top: 100px;
  }
}
.form-dialog__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px;
  border: none;
  border-radius: 100px;
  color: #13213e;
  background: #1c4367;
  transition: background 0.3s ease-out;
}
.form-dialog__button:hover {
  background: #13213e;
}
.form-dialog__modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
}
@media only screen and (max-width: 576px) {
  .form-dialog__modal-close {
    top: 24px;
    right: 24px;
  }
}
.form-dialog__modal-close-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
}
.form-dialog__input, .form-dialog__select, .form-dialog__textarea {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 24px;
  border: none;
  color: #1e324e;
}
.form-dialog__select {
  appearance: none;
  position: relative;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NDAgNjQwIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIHY3LjIuMCBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIENvcHlyaWdodCAyMDI2IEZvbnRpY29ucywgSW5jLi0tPjxwYXRoIGQ9Ik0yOTcuNCA0NzAuNkMzMDkuOSA0ODMuMSAzMzAuMiA0ODMuMSAzNDIuNyA0NzAuNkw1MzQuNyAyNzguNkM1NDcuMiAyNjYuMSA1NDcuMiAyNDUuOCA1MzQuNyAyMzMuM0M1MjIuMiAyMjAuOCA1MDEuOSAyMjAuOCA0ODkuNCAyMzMuM0wzMjAgNDAyLjdMMTUwLjYgMjMzLjRDMTM4LjEgMjIwLjkgMTE3LjggMjIwLjkgMTA1LjMgMjMzLjRDOTIuOCAyNDUuOSA5Mi44IDI2Ni4yIDEwNS4zIDI3OC43TDI5Ny4zIDQ3MC43eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 16px;
}
.form-dialog__textarea {
  grid-column: span 2;
}
@media only screen and (max-width: 835px) {
  .form-dialog__textarea {
    grid-column: unset;
  }
}
.form-dialog__submit {
  display: flex;
  flex-direction: row;
  justify-content: center;
  grid-column: span 2;
}
@media only screen and (max-width: 835px) {
  .form-dialog__submit {
    grid-column: unset;
  }
}
.form-dialog__submit-button {
  width: 185px;
  padding: 16px 24px;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (max-width: 835px) {
  .container {
    padding: 87px 16px 0;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    padding: 87px 0 0;
  }
}
@media only screen and (max-width: 576px) {
  .container {
    padding: 73px 0 0;
  }
}

.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", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease-out;
}
@media (hover: hover) {
  .header__link:hover {
    color: #fff;
  }
}
@media only screen and (max-width: 835px) {
  .header__link {
    color: #fff;
  }
}

.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;
  padding: 18.5px 42px;
  position: relative;
  overflow: hidden;
}
@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.ui-card {
  background: linear-gradient(90deg, rgba(75, 197, 23, 0.3) 0%, rgba(232, 107, 125, 0.3) 100%);
  backdrop-filter: blur(4px);
}
.main .hero__title {
  font-size: 36px;
  font-style: italic;
}
@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%;
  pointer-events: none;
}
.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: -140px;
  right: -253px;
  max-height: unset;
  max-width: unset;
  width: 1024px;
}
@media only screen and (max-width: 835px) {
  .main .hero__image-human {
    display: none;
    visibility: hidden;
  }
}
.main .hero__image-flag {
  top: 35px;
  left: 52%;
  width: 300px;
  object-fit: contain;
}
@media only screen and (max-width: 835px) {
  .main .hero__image-flag {
    position: static;
    transform: none;
    filter: drop-shadow(0 0 14px #b8ffb9);
  }
}
@media only screen and (max-width: 576px) {
  .main .hero__image-flag {
    width: 158px;
  }
}
.main .hero__links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 17px 0 23px;
}
@media only screen and (max-width: 576px) {
  .main .hero__links {
    display: flex;
    flex-direction: column;
  }
}
.main .hero__complete-button-text {
  text-align: center;
  font-size: 20px;
}
.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: 24px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .main .requirements__subtitle {
    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__links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 17px 0 23px;
}
@media only screen and (max-width: 576px) {
  .main .join-block__links {
    display: flex;
    flex-direction: column;
  }
}
.main .join-block__complete-button-text {
  font-size: 20px;
  text-align: center;
}
.main .join-block__contacts {
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .main .join-block__contacts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .main .join-block__contacts {
    max-width: 348px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.main .join-block__manager-link {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 6px;
  background: #1c4367;
  transition: background 0.3s ease-out;
}
@media (hover: hover) {
  .main .join-block__manager-link:hover {
    background: #1e324e;
  }
}
.main .join-block__manager-link-icon {
  flex-shrink: 0;
  width: 40px;
  aspect-ratio: 1;
}

.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", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
}
@media only screen and (max-width: 576px) {
  .footer__text {
    font-size: 12px;
  }
}

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