:root {
	--color-black: #000;
	--color-white: #fff;
	--color-blue-1: #09122d;
}

.container {
	margin: 0 auto;
	max-width: 1310px;
	padding: 0 15px;
}

.btn {
	border-radius: 19px;
	color: var(--color-white);
	display: block;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	padding: 15px 35px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	width: -moz-max-content;
	width: max-content;
}

.btn1 {
	border-radius: 19px;
	color: var(--color-white);
	display: block;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	padding: 15px 35px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	width: -moz-max-content;
	width: max-content;
}

section {
  background-color: rgba(255, 255, 255, 0.05); /* полупрозрачная «дымка» */
  padding: 2em;
  margin-bottom: 2em; /* разделяем блоки, чтобы они не слипались */
  border-radius: 8px; /* скруглённые уголки */
}

/* Заголовки внутри секций */
section h2 {
  color: #ffdd00;        /* контрастный цвет заголовка */
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 0;         /* убираем лишний отступ сверху, если он появляется по умолчанию */
  margin-bottom: 0.5em;
  display: inline-block;
}

/* Текст в абзацах */
section p {
  line-height: 1.7;      /* увеличенный междустрочный интервал */
  margin-bottom: 1em;    /* расстояние между абзацами */
}

.btn-primary {
	border: 1px solid var(--color-white);
}

@media (max-width: 768px) {
  .btn-primary {
    font-size: 12px; /* Уменьшаем размер текста на кнопках */
    padding: 8px 12px; /* Уменьшаем отступы внутри кнопок */
  }
}

.btn-primary:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn-secondary {
	background: #ee8d39;
	color: #fff;
	box-shadow: inset 0 4px 6px 0 hsla(0, 0%, 100%, 0.31);
}

@media (max-width: 768px) {
  .btn-secondary {
    font-size: 12px; /* Уменьшаем размер текста на кнопках */
    padding: 8px 12px; /* Уменьшаем отступы внутри кнопок */
  }
}

.btn-secondary:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn-green {
	background: #6b15bb;
	color: #fff;
	box-shadow: inset 0 4px 6px 0 hsla(0, 0%, 100%, 0.31);
}

.btn-green:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn-lg {
	padding: 22px 60px;
}

.header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 25px 0;
}

.header__logo {
	position: relative;
	width: 180px;
	z-index: 2;
}

.header__logo img {
	width: 100%;
}

.header__buttons {
	align-items: center;
	gap: 20px;
}

.burger,
.header__buttons {
	display: flex;
	position: relative;
	z-index: 2;
}

.burger {
	cursor: pointer;
	display: block;
	height: 28px;
	transition: all 0.3s;
	width: 28px;
}

@media (min-width: 768px) {
	.burger {
		display: none;
	}
}

.burger span {
	background-color: var(--color-white);
	display: block;
	float: right;
	height: 2px;
	transition: all 0.3s;
	width: 100%;
}

.burger span:nth-of-type(2) {
	margin: 8px 0;
	width: 50%;
}

.burger.active {
	padding-top: 12px;
}

.burger.active span {
	float: none;
}

.burger.active span:first-of-type {
	height: 2px;
	transform: rotate(45deg);
	transition-delay: 0.3s;
}

.burger.active span:nth-of-type(2) {
	height: 0;
	margin: -2px;
	opacity: 0;
}

.burger.active span:nth-of-type(3) {
	height: 2px;
	transform: rotate(-45deg);
	transition-delay: 0.3s;
}

.faq__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.content {
	padding-bottom: 50px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Убираем горизонтальную прокрутку для body */
  box-sizing: border-box; /* Убираем лишние отступы, которые могут выйти за рамки */
}

/* Контейнеры внутри секций */
section {
  width: 100%;
  padding: 10px; /* Добавляем внутренние отступы */
  overflow-x: auto; /* Включаем горизонтальную прокрутку */
  box-sizing: border-box; /* Убираем лишние отступы, которые могут выйти за рамки */
  margin-bottom: 20px; /* Отступ снизу */
}

/* Контейнер для таблицы с горизонтальной прокруткой */
.table-wrapper {
  width: 100%; /* Устанавливаем ширину на 100% */
  overflow-x: auto; /* Включаем горизонтальную прокрутку */
  -webkit-overflow-scrolling: touch; /* Для плавной прокрутки на мобильных устройствах */
  margin-bottom: 20px; /* Отступ снизу */
}

/* Стили для таблицы */
.table {
  width: 100%;
  table-layout: fixed; /* Фиксируем ширину столбцов */
  border-collapse: collapse; /* Убираем промежутки между ячейками */
  overflow-x: auto;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
}
.button-link {
  font-size: 20px;
  font-weight: bold;
  color: white;
  background: #32cd32;
  padding: 15px 40px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px #32cd32;
  transition: 0.3s;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Делаем кнопку на всю ширину контейнера */
  max-width: 300px;
  text-align: center;
}
.button-link:hover {
  box-shadow: 0 0 25px #32cd32;
}

.button-container-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
}

.button-link-1 {
  font-size: 20px;
  font-weight: bold;
  color: white;
  background: #32cd32;
  padding: 15px 40px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px #32cd32;
  transition: 0.3s;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Делаем кнопку на всю ширину контейнера */
  max-width: 400px;
  text-align: center;
}
.button-link-1:hover {
  box-shadow: 0 0 25px #32cd32;
}

/* Стили для ячеек таблицы */
th, td {
  padding: 10px;
  text-align: left;
  border: 1px solid #20377b;
  word-wrap: break-word; /* Перенос слов */
  white-space: normal; /* Разрешаем перенос слов */
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  section {
    padding: 5px; /* Уменьшаем внутренние отступы */
  }

  .content h2 {
    font-size: 32px;
    color: #ffcc00;
    line-height: 35px;
  }
  .table-wrapper {
    -webkit-overflow-scrolling: auto; /* Включаем прокрутку на мобильных */
  }

  th, td {
    font-size: 12px; /* Уменьшаем размер шрифта для мобильных */
    padding: 8px; /* Уменьшаем отступы */
  }
}



.quote-box {
  background-color: #1f4068; /* Фон для цитат */
  padding: 15px;
  margin: 20px 0;
  border-left: 4px solid #ffcc00; /* Линия для цитаты */
  font-style: italic;
  border-radius: 5px;
}

.content {
	margin-top: 35px;
}

.btn{
  margin-bottom: 35px;
}

.content__wrap {
	display: flex;
	flex-wrap: wrap;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-container {
  background-color: #162447; /* Фон контейнера темно-синий */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.list-container h1 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff; /* Белый текст для заголовка */
}
.list-item {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #1f4068; /* Рамка более яркого синего цвета */
  border-radius: 8px;
  background-color: #1b1f38; /* Цвет карточки чуть светлее фона */
  display: flex;
  align-items: center;
}
.list-item:hover {
  background-color: #1f4068; /* Подсветка при наведении */
}
.list-item p {
  margin: 0;
  flex: 1;
}
.list-item span {
  font-weight: bold;
  color: #ffcc00; /* Яркий акцент для заголовков секций */
}

.content-container {
  background-color: #162447; /* Фон блока */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

ul{
  list-style-type: disc;
  margin: 0px 0 20px 20px;
}

ul li {ul
  margin-bottom: 10px;
}
.highlight {
  color: #ffcc00; /* Акцентный цвет для ключевых слов */
  font-weight: bold;
}

.content .head {
	flex-shrink: 0;
	width: 50%;
}

.content .text {
	width: 48%;
}

.content p {
	margin-bottom: 20px;
	margin-top: 0;
}

.content h1 {
	font-size: 68px;
	font-weight: 800;
	line-height: 78px;
	margin-bottom: 35px;
	margin-top: 0;
	zoom: 0.7;
	-ms-zoom: 0.7;
	-webkit-zoom: 0.7;
	-moz-transform: scale(0.7, 0.7);
	-moz-transform-origin: left center;
}

.content h1 + p {
}

.content h2 {
	font-size: 32px;
  color: #ffcc00;
}

.content h2, {
  font-size: 32px;
	font-weight: 800;
	line-height: 1.1636363636;
	margin-bottom: 30px;
	margin-top: 0;
}

.content h3 {
	font-size: 18px;
  color: #ffcc00;
}

ul li a {
	text-decoration: none;
}
ul li a:hover {
	color: #ff7d02;
}

.content h3 {
	font-size: 18px;
}

.content strong {
	font-size: 16px;
}


.content tr:nth-child(odd) td {
	background: #233261;
}

.content tr:nth-child(odd) td:nth-child(odd) {
	background: #172448;
}

.content td {
	padding: 5px 16px;
}

.content td:first-child {
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
}

.content td:last-child {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

.content .img-cov {
	border-radius: 19px;
	margin-bottom: 30px;
	max-width: 605px;
}

.content .img-cov img {
	width: 100%;
}

.user .content__wrap {
}

.page {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: calc(100vh - 70px);
	padding: 100px 0;
	text-align: center;
}

.page h1 {
	font-size: 8px;
	line-height: 1;
	margin: 0;
}

@media (min-width: 768px) {
	.page h1 {
		font-size: 96px;
	}
}

.page .btn {
	margin: 0 auto;
}

.menu {
	background: var(--color-blue-1);
	display: block;
	left: 0;
	opacity: 0;
	padding: 45px 15px 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 0.3s ease;
	visibility: hidden;
	z-index: 0;
}

@media (min-width: 768px) {
	.menu {
		display: none;
	}
}
  @media (max-width: 768px) {
  .content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 48px;
    margin-bottom: 35px;
    margin-top: 0;
    zoom: 0.7;
    -ms-zoom: 0.7;
    -webkit-zoom: 0.7;
    -moz-transform: scale(0.7, 0.7);
    -moz-transform-origin: left center;
 }
}

.menu.active {
	opacity: 1;
	visibility: visible;
}

.menu__lang {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 14px;
	font-weight: 500;
	justify-content: flex-end;
	padding: 20px 0;
	text-decoration: none;
}

.content td {
	padding: 4px;
}

.menu__lang img {
	display: block;
	margin-left: 18px;
}

.menu__list {
	border-top: 1px solid #222727;
	list-style: none;
	margin: 0;
	padding: 10px 0;
}

.menu__item {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	padding: 10px 0;
	text-decoration: none;
}

.menu__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3333333333;
	margin-bottom: 20px;
	margin-top: 0;
}

ol,
ul {
	list-style-position: inside;
	padding-left: 0;
}

.anchor__menu li {
	margin-bottom: 3px;
}

.anchor__menu a {
	color: var(--color-white);
	text-decoration: none;
}
.image-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 19px;
  gap: 15px; /* Расстояние между изображениями */
}
.image-gallery a {
  display: inline-block;
  border: 2px solid #ffcc00; /* Рамка вокруг изображения */
  border-radius: 10px; /* Закруглённые углы */
  overflow: hidden; /* Обрезка изображений */
  text-decoration: none;
}
.image-gallery img {
  width: 1300px; /* Ширина изображения */
  max-height: 500px; /* Высота изображения */
  object-fit: cover; /* Изображение обрезается под размеры */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Анимация при наведении */
}
.image-gallery img:hover {
  transform: scale(1.1); /* Увеличение изображения при наведении */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Тень при наведении */
}

.anchor__menu a:hover {
	color: #7a74fb;
}

.image-gallery1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 19px;
  gap: 15px; /* Расстояние между изображениями */
}
.image-gallery1 a {
  display: inline-block;
  border: 2px solid #ffcc00; /* Рамка вокруг изображения */
  border-radius: 10px; /* Закруглённые углы */
  overflow: hidden; /* Обрезка изображений */
  text-decoration: none;
}
.image-gallery1 img {
  width: 1300px; /* Ширина изображения */
  max-height: 500px; /* Высота изображения */
  object-fit: cover; /* Изображение обрезается под размеры */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Анимация при наведении */
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1300px; /* Максимальная ширина видео */
  margin: 0 auto;
  padding-top: 56.25%; /* Соотношение 16:9 */
  border-radius: 15px; /* Скруглённые углы */
  overflow: hidden; /* Обрезка краёв */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Тень */
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none; /* Убираем рамки */

.anchor__menu a:hover {
	color: #7a74fb;
}

@media (max-width: 1024px) {
	.faq__item {
		display: block;
	}

	.content {
	}

	.content__wrap {
		display: block;
		padding-top: 30px;
	}

	.content .head,
	.content .text {
		width: 100%;
	}

	.content h1 {
		font-size: 40px;
		line-height: 41px;
		margin-bottom: 20px;
	}

	.content h2 {
		font-size: 32px;
		line-height: 28px;
    color: #ffcc00;
	}

  .quote-box {
    background-color: #1f4068; /* Фон для цитат */
    padding: 15px;
    margin: 20px 0;
    border-left: 4px solid #ffcc00; /* Линия для цитаты */
    font-style: italic;
    border-radius: 5px;
}

	.content h3 {
		font-size: 18px;
		line-height: 27px;
	}

	.user .content__wrap {
	}

	.btn {
		border-radius: 8px;
		font-size: 12px;
		line-height: 18px;
		padding: 5px 8px;
	}

	.btn-lg {
		font-size: 14px;
		padding: 17px;
		width: 100%;
	}

	.header__logo {
		width: 75px;
	}

	.header {
		padding: 20px 0;
	}

	.content .btn {
		margin-top: 20px;
	}

	.content strong {
		font-size: 16px;
	}
}