@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: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family-base: 'Roboto', sans-serif;
  --color-black: #000;
  --color-white: #fff;
  --transition-duration: 0.2s;
  --color-yellow: #ffd800;
  --color-btn: #0b91ef;
  --text-shadow: 0 0.024em 0.186em rgba(0, 0, 0, 0.82);
  --container-width: 93.75rem;
  --container-padding-x: 1.25rem;
  --section-width: 100%;
  --section-padding-block: 0;
}

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

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

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

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  background-color: var(--color-black);
  color: var(--color-white);
}

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

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

@media (max-width: 31.25rem) {
  br {
    display: none;
  }
}

.button {
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: clamp(1.5rem, 1.1426104972rem + 1.3812154696vw, 2.4375rem);
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-btn);
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
}
@media (any-hover: hover) {
  .button:hover {
    filter: brightness(1.12);
  }
}
@media (any-hover: none) {
  .button:active {
    filter: brightness(1.12);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-black);
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.hero__char {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.hero__char img {
  display: block;
  height: 100%;
  max-height: 56.25rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}
@media (max-width: 81.25rem) {
  .hero__char {
    max-width: calc(100% - 300px);
  }
  .hero__char img {
    width: 100%;
  }
}
@media (max-width: 50rem) {
  .hero__char {
    display: none;
  }
}
.hero__inner {
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 93.75rem;
  max-height: 56.25rem;
  padding-inline: 3rem;
  padding-block: 1.75rem 4.0625rem;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
}
@media (max-width: 50rem) {
  .hero__inner {
    padding: 0.625rem 1.875rem 0.9375rem;
  }
}
.hero__logo {
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
  margin-bottom: 4.0625rem;
  flex-shrink: 0;
}
@media (max-width: 50rem) {
  .hero__logo {
    margin-bottom: 0.8125rem;
  }
}
.hero__logo-wrap {
  height: 4.0625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 50rem) {
  .hero__logo-wrap {
    height: 1.875rem;
  }
}
.hero__logo-img {
  height: 4.0625rem;
  width: auto;
}
@media (max-width: 50rem) {
  .hero__logo-img {
    height: 1.875rem;
  }
}
.hero__logo-country {
  height: 3rem;
  width: auto;
}
@media (max-width: 50rem) {
  .hero__logo-country {
    height: 1.375rem;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  max-width: 51.875rem;
  height: calc(100vh - 150px);
  justify-content: center;
}
@media (max-width: 50rem) {
  .hero__content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
}
.hero__promo-text {
  font-size: clamp(1.3125rem, 0.7168508287rem + 2.3020257827vw, 2.875rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: var(--text-shadow);
  color: var(--color-white);
  margin-bottom: 2.625rem;
}
@media (max-width: 50rem) {
  .hero__promo-text {
    margin-bottom: 0.3125rem;
  }
}
.hero__accent {
  color: var(--color-yellow);
}
.hero__btn {
  align-self: flex-start;
  margin-bottom: 2.625rem;
}
@media (max-width: 50rem) {
  .hero__btn {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: transparent;
    max-width: 22.5rem;
  }
}
.hero__btn-char {
  display: none;
}
@media (max-width: 50rem) {
  .hero__btn-char {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 31.25rem) {
  .hero__btn-char {
    max-width: 23.75rem;
  }
}
.hero__btn-text {
  border-radius: 0.75rem;
}
@media (max-width: 50rem) {
  .hero__btn-text {
    display: block;
    width: 100%;
    max-width: 21.875rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-btn);
    text-align: center;
  }
}
@media (max-width: 31.25rem) {
  .hero__btn-text {
    max-width: 13.5rem;
  }
}
.hero__trust-pic-text {
  display: flex;
  margin-bottom: 0.625rem;
}
.hero__trust-picture {
  width: 100%;
  height: auto;
}
@media (max-width: 71.875rem) {
  .hero__trust-picture {
    max-width: 34.375rem;
  }
}
@media (max-width: 31.25rem) {
  .hero__trust-picture {
    display: none;
  }
}
.hero__trust-picture--mobile {
  display: none;
  width: 100%;
  height: auto;
}
@media (max-width: 31.25rem) {
  .hero__trust-picture--mobile {
    display: block;
  }
}
.hero__trust-bold {
  font-size: clamp(0.8125rem, 0.5742403315rem + 0.9208103131vw, 1.4375rem);
  font-weight: 700;
  text-shadow: var(--text-shadow);
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  max-width: 45rem;
}
@media (max-width: 1300px) {
  .hero__trust-bold {
    max-width: 25rem;
  }
}
@media (max-width: 800px) {
  .hero__trust-bold {
    max-width: 100%;
    text-align: left;
    align-self: flex-start;
    margin-bottom: 0.5rem;
  }
}
.hero__trust-text {
  font-size: clamp(0.8125rem, 0.5742403315rem + 0.9208103131vw, 1.4375rem);
  font-weight: 400;
  text-shadow: var(--text-shadow);
  color: var(--color-white);
  line-height: 1.4;
  max-width: 45rem;
  padding-right: 3.125rem;
  align-self: flex-start;
}
@media (max-width: 1300px) {
  .hero__trust-text {
    max-width: 25rem;
  }
}
@media (max-width: 800px) {
  .hero__trust-text {
    max-width: 100%;
    text-align: left;
    align-self: flex-start;
    margin-bottom: 0.625rem;
    padding-right: 0;
  }
}
.hero__bottom {
  align-self: center;
  margin-top: auto;
  z-index: 2;
  width: 100%;
  max-width: 41.1875rem;
  padding-inline: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.3125rem;
}
@media (max-width: 50rem) {
  .hero__bottom {
    max-width: 100%;
    padding-inline: 0;
    margin-top: auto;
    gap: 0.5rem;
  }
}
.hero__support {
  background-color: rgba(0, 0, 0, 0.72);
  padding: 0.75rem;
  text-align: center;
  font-size: clamp(0.625rem, 0.4343922652rem + 0.7366482505vw, 1.125rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
}
.hero__support p {
  margin: 0;
}
@media (max-width: 31.25rem) {
  .hero__support {
    padding: 0.375rem;
  }
}
.hero__payments {
  background-color: rgba(0, 0, 0, 0.72);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5625rem;
}
@media (max-width: 50rem) {
  .hero__payments {
    padding: 0.25rem 0.5rem;
    gap: 0.75rem;
  }
}
.hero__pay-logo {
  max-height: 2.75rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  flex-shrink: 1;
  min-width: 0;
}
@media (max-width: 50rem) {
  .hero__pay-logo {
    max-height: 1.875rem;
  }
}/*# sourceMappingURL=main.css.map */