@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 Убираем внутренние отступы слева тегам списков,
 у которых есть атрибут class
*/
:where(ul, ol):where([class]) {
  padding-left: 0;
  list-style: none;
}

/**
 Убираем внешние отступы body и двум другим тегам,
 у которых есть атрибут class
*/
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
 Убираем внешние отступы вертикали нужным тегам,
 у которых есть атрибут class
*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl {
  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: 12px;
  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,
: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 со значением 'none' или начинается с 'url')
*/
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
 Приводим к единому цвету svg-элементы
 (за исключением тех, у которых уже указан
 атрибут stroke со значением 'none')
*/
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

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

/**
 Приведение рамок таблиц в классический 'collapse' вид
*/
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
 Удаляем все анимации и переходы для людей,
 которые предпочитают их не использовать
*/
:root {
  --font-main: "Barrio", sans-serif;
  --max-width: 1920px;
  --background: #11400E;
  --header: #213801;
  --block: #76ff8b1d;
  --block2: #00FF6233;
  --text: #E6FFF4;
  --button1: #45EAFC;
  --button2: #1DFD3F;
  --color1: #28FF82;
  --color2: #2F3530;
  --bcg-top: url("../img/hghty45fg1.png");
  --bcg-sec: url("../img/hghty45fg2.png");
  --form: url("../img/hghty45fg3.png");
  --other-pages: url("../img/hghty45fg4.png");
  --cnbvjhbd: url("../img/cnbvjhbd.png");
  --dfgdf: url("../img/dfgdf.png");
  --open: url("../img/open.png");
  --close: url("../img/sdhfjdhg.png");
  --close-modal: url("../img/x.png");
}

html {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
@media (max-width: 1010px) {
  html {
    word-break: break-all;
  }
}

h1, h2 {
  text-transform: uppercase;
  width: 100%;
}

header {
  width: 100%;
  background-color: var(--header);
  height: 200px;
  padding: 60px 7.8%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 834px) {
  header {
    height: 80px;
    padding: 10px 16px;
  }
}

a {
  text-decoration: none;
  color: var(--text);
}

body {
  display: flex;
  max-width: 1920px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  background: var(--background);
  color: var(--text);
  margin: 0;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 70px 15%;
}
@media (max-width: 1553px) {
  section {
    padding: 70px 5%;
  }
}
@media (max-width: 708px) {
  section {
    padding: 40px 15px 40px 15px;
  }
}

img {
  display: inline-block;
}

h1 {
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
}
@media (max-width: 708px) {
  h1 {
    font-size: 60px;
    line-height: 130%;
  }
}

h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: 110%;
  margin-bottom: 20px;
}
@media (max-width: 708px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-weight: 700;
  font-size: 40px;
  color: var(--color1);
  line-height: 100%;
}

h4 {
  font-weight: 700;
  font-size: 30px;
}

h5 {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 20px;
}

.x2m29 {
  font-weight: 700;
  font-size: 26px;
  color: var(--text);
}

p {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 0;
}

.xi025 {
  font-weight: 500;
  font-size: 22px;
}

.xt917 {
  font-weight: 500;
  font-size: 20px;
}

.xvo13 {
  font-weight: 500;
  font-size: 16px;
}

table {
  max-width: 496px;
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

th {
  background-color: rgb(69, 3, 93);
  color: white;
  padding: 10px;
}

td {
  padding: 10px;
}

footer {
  background-color: var(--header);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 70px 15%;
  margin-top: 150px;
  text-align: center;
}
@media (max-width: 1553px) {
  footer {
    padding: 70px 5%;
    margin-top: 80px;
  }
}
@media (max-width: 708px) {
  footer {
    padding: 40px 15px 40px 15px;
  }
}

ol {
  margin-bottom: 30px;
}

ul:where(:not([class])) {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 20px;
}

span {
  color: var(--color);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}

input {
  padding: 14px 0;
  padding-left: 37px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid var(--text);
  color: var(--text);
}
@media (max-width: 1010px) {
  input {
    padding: 8px 0;
    padding-left: 20px;
  }
}

.xqn33 {
  background-image: var(--bcg-top);
  background-repeat: no-repeat;
  background-position: right center;
  width: 100%;
}
@media (max-width: 1010px) {
  .xqn33 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 280px;
    background-position: center top;
    padding-left: 11px;
    padding-right: 11px;
    background-size: contain;
  }
}

.xhm19 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-image: var(--bcg-sec);
  background-repeat: no-repeat;
  background-position: left center;
  padding: 100px 0;
}
@media (max-width: 1010px) {
  .xhm19 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 280px;
    background-position: center top;
    padding-left: 11px;
    padding-right: 11px;
    background-size: contain;
  }
}

.xbp20 {
  background-color: var(--block);
  max-width: 817px;
  padding: 80px 68px;
  backdrop-filter: blur(50px);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1010px) {
  .xbp20 {
    padding: 40px 20px;
    max-height: none;
  }
}
.xs221 {
  gap: 20px;
  padding: 40px;
}
@media (max-width: 1010px) {
  .xs221 {
    padding: 40px 20px;
  }
}

@media (max-width: 1010px) {
  .xfc18 {
    padding-left: 0;
    padding-right: 0;
  }
}

.xei34 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 40px;
}
@media (max-width: 1010px) {
  .xei34 {
    grid-template-columns: 1fr;
  }
}

.xr035 {
  display: flex;
  flex-direction: column;
  background-color: var(--block);
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 236px;
  padding: 40px 32px;
  gap: 30px;
}

.xh636 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1010px) {
  .xh636 {
    grid-template-columns: 1fr;
  }
}

.xdx37 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.x8z38 {
  background-color: var(--block);
  padding: 40px;
}
@media (max-width: 1010px) {
  .x8z38 {
    padding: 20px;
  }
}

.x7b14 {
  background-image: var(--form);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-repeat: no-repeat;
}
.xax15 {
  background-image: var(--other-pages);
  background-position: center top;
  padding-top: 547px;
  margin-top: 150px;
}
@media (max-width: 1010px) {
  .xax15 {
    background-size: cover;
    background-size: auto 476px;
    margin-top: 80px;
    padding-top: 396px;
  }
}

.xn855 {
  background-color: var(--block);
  backdrop-filter: blur(50px);
  max-width: 700px;
  text-align: center;
  padding: 40px;
}
@media (max-width: 1010px) {
  .xn855 {
    padding: 20px;
  }
}

.xmj16 {
  background-color: var(--block);
  padding: 40px;
  backdrop-filter: blur(20px);
}
@media (max-width: 1010px) {
  .xmj16 {
    padding: 20px;
  }
}

.xqb22 {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(50px);
}

.xzf23 {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 40px;
  text-align: center;
  max-width: 722px;
  box-shadow: 2px 0px 10px 0px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  margin: 0;
  position: fixed;
  border: 2px solid var(--lines);
  z-index: 999;
  backdrop-filter: blur(50px);
}
@media (max-width: 708px) {
  .xzf23 {
    padding: 30px 24px;
    font-weight: 600;
    font-size: 20px;
    line-height: 31.8px;
    text-align: center;
    margin: 0;
    width: 100%;
    right: 0;
  }
}
.xsa32 {
  bottom: 20px;
  right: 20px;
}
@media (max-width: 708px) {
  .xsa32 {
    margin: 0;
    width: 100%;
    right: 0;
    bottom: 0;
  }
}

.xl624 {
  margin-bottom: 30px;
  padding: 0;
}

.xw467 {
  font-weight: 600;
  font-size: 40px;
  line-height: 63.6px;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding: 0;
}
@media (max-width: 708px) {
  .xw467 {
    font-weight: 600;
    font-size: 20px;
    line-height: 31.8px;
    text-align: center;
  }
}

.xhx68 {
  padding: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-align: start;
  margin-bottom: 10px;
  padding-top: 10px;
}
@media (max-width: 708px) {
  .xhx68 {
    font-weight: 400;
    font-size: 18px;
    line-height: 28.62px;
    text-align: center;
  }
}

.xop69 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 708px) {
  .xop69 {
    flex-direction: column;
  }
}

.xte70 {
  align-self: flex-end;
  height: 50px;
  width: 50px;
  background-image: var(--close-modal);
  background-color: var(--header);
  border: 1px solid var(--lines);
  border-radius: 50px;
  background-repeat: no-repeat;
  background-position: center;
}

.x1p27 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  flex-direction: column;
  margin-top: 40px;
}
.x1p27 .xpi71 {
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: var(--lines);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.xt630 {
  width: 100%;
}

.xuv31 {
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0);
  border: 3px solid var(--color1);
  color: var(--color1);
}
@media (max-width: 1010px) {
  .xuv31 {
    height: 60px;
  }
}

.xeo26 {
  color: var(--color1);
  text-decoration: underline;
}

.x9u1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
}

.x0v8 {
  display: none;
}
@media (max-width: 1300px) {
  .x0v8 {
    display: block;
  }
}

.x8a5 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
}

@media (max-width: 1300px) {
  .x8a5 {
    display: none;
  }
}
.xp212 {
  display: none;
}
@media (max-width: 1300px) {
  .xp212 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.x219 {
  position: fixed; /* fixed для того чтобы меню было видно при скролле */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--header);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 75px;
  z-index: 2; /* z-index поменьше */
}

.x9j10 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.xxy11 {
  width: 30px;
  height: 30px;
}

.x0x6 {
  padding: 15px 5px;
  border: 1px solid var(--lines);
  text-decoration: none;
}

.xvf3 {
  width: 77px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 834px) {
  .xvf3 {
    width: 58px;
    height: 60px;
  }
}

.xl67 {
  font-size: 24px;
  font-weight: 500;
}
.xvy56 { /* модификатор active */
  color: var(--button1);
  border-bottom: 2px solid var(--button1);
}

.xut65 {
  max-width: 26%;
  padding: 16px 16px 0;
  background-color: var(--background);
  border-top-right-radius: 20px;
}
@media (max-width: 708px) {
  .xut65 {
    max-width: 68%;
    padding: 0 0 15px;
  }
}

.x9266 {
  max-width: 57%;
}
@media (max-width: 708px) {
  .x9266 {
    max-width: 68%;
  }
}

.xyo2 {
  flex-wrap: nowrap;
}

.x3s51 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 550px) {
  .x3s51 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.xpd49 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
}
.x7g50 {
  background-color: var(--block);
  padding: 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.xcs52 {
  display: flex;
  gap: 25px;
  align-items: center;
}
@media (max-width: 550px) {
  .xcs52 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.x9153 {
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--cnbvjhbd);
  flex-shrink: 0;
}
.xzt57 {
  background-image: var(--dfgdf);
}

.xy754 {
  display: none;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--text);
}

.xpy40 {
  display: flex;
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.x6541 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.xtx42 {
  width: 900px;
  box-sizing: border-box;
  padding: 40px;
  color: white;
  margin-right: 40px;
}

.xjl43 {
  background: var(--block);
  border-radius: 8px;
  padding: 40px;
  color: white;
  width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media (max-width: 1050px) {
  .xjl43 {
    width: auto;
    padding: 40px 20px;
  }
}
.xtp44 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1050px) {
  .xtp44 {
    flex-direction: column;
    gap: 30px;
  }
}
.xtp44 li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.xjl43 h2 {
  color: #f7a723;
}

.x9f28 {
  background: linear-gradient(to right, var(--button1), var(--button2));
  border: none;
  border-radius: 5px;
  cursor: pointer;
  height: 80px;
}
@media (max-width: 1010px) {
  .x9f28 {
    height: 60px;
  }
}

.x9f45 {
  width: 100%;
  display: flex;
  text-align: center;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}

.x6k46 {
  height: 8px;
  width: 30px;
  margin: 0 4px;
  background-color: #f7a723;
  border-radius: 5px;
  display: inline-block;
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: pointer;
}

.x6k46.x8f47 {
  opacity: 1;
}

.xnh39 {
  padding-right: 0;
}
@media (max-width: 1050px) {
  .xnh39 {
    display: none;
  }
}

.xor48 {
  display: none;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 1050px) {
  .xor48 {
    display: flex;
  }
}

.x7q58 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 1400px) {
  .x7q58 {
    grid-template-columns: 1fr;
  }
  .x7q58 img {
    justify-self: center;
  }
}

.x7b14 h3 {
  text-transform: uppercase;
}

.x7559 {
  max-width: 662px;
  justify-self: flex-end;
}
@media (max-width: 1400px) {
  .x7559 {
    justify-self: center;
  }
}

.x7t60 {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 16px;
  border: 0;
  background-color: var(--card);
  color: var(--text);
  border-radius: 50px;
}

.xvy61 {
  color: #E10000;
}

.xzu62 {
  display: flex;
  align-items: center; /* Выравнивание по центру по вертикали */
}

.x0663 {
  display: none; /* Скрываем стандартный чекбокс */
}

/* Стиль для кастомного чекбокса */
.xzu62 label {
  position: relative;
  padding-left: 50px; /* Отступ слева для метки, чтобы оставить место для кастомного чекбокса */
  cursor: pointer; /* Указатель при наведении на метку */
  margin-bottom: 40px;
  margin-top: 10px;
}

/* Кастомный чекбокс */
.xzu62 label::before {
  content: ""; /* Пустое содержимое для псевдоэлемента */
  position: absolute;
  left: 0; /* Позиция по оси X */
  top: 50%; /* Позиция по оси Y */
  transform: translateY(-50%); /* Центрирование по вертикали */
  width: 40px; /* Ширина чекбокса */
  height: 40px; /* Высота чекбокса */
  border: 1px solid var(--lines2); /* Зеленая рамка */
  border-radius: 50px;
  background-color: transparent; /* Прозрачный фон */
}

/* Стили когда чекбокс отмечен */
.x0663:checked + label::before {
  background-color: transparent; /* Оставляем фон прозрачным */
}

/* Стандартная галочка */
.x0663:checked + label::after {
  content: ""; /* Символ галочки */
  position: absolute;
  left: 4px; /* Позиция по оси X */
  bottom: -4px; /* Позиция по оси Y */
  background-color: var(--lines2);
  border-radius: 50px;
  width: 32px;
  height: 32px;
  font-size: 20px; /* Размер галочки */
  line-height: 40px; /* Центрирование галочки внутри чекбокса */
}
@media (max-width: 900px) {
  .x0663:checked + label::after {
    bottom: -5px;
  }
}

.x9d64 {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 4px;
  background-color: var(--lines2);
  width: 100%;
  height: 60px;
  padding: 2px;
  border-radius: 100px;
  border: 1px solid var(--button);
}
.x7k72 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: var(--text2);
  background-color: var(--button);
  height: 100%;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}
.x9d64 img {
  background-color: var(--button);
  width: 45px;
  padding: 11px;
  border-radius: 50px;
}

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