@charset "UTF-8";
body {
	font-family: var(--font-family);
	font-weight: 500;
	line-height: 1.28;
	color: var(--color-main);
	background-color: var(--color-bg);
}
@media (max-width: 760px) {
	body {
		background-position: 25%;
	}
}

img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none; /* Отключает выделение для изображений в слайдере */
	margin: 0;
}

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

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

/* Для веб-кит браузеров */
/* Изменение цвета полосы прокрутки */
::-webkit-scrollbar {
	width: 10px; /* Ширина полосы прокрутки */
	border-radius: 5px;
}

::-webkit-scrollbar-track {
	background: var(--color-bg); /* Цвет фона трека */
	border-radius: 5px;
}

::-webkit-scrollbar-thumb {
	background: #4d4d4d; /* Цвет полосы прокрутки */
	border-radius: 5px;
}

/* Для остальных браузеров */
/* Изменение цвета полосы прокрутки */
scrollbar {
	width: 10px; /* Ширина полосы прокрутки */
	border-radius: 5px;
}

scrollbar-track {
	background: var(--color-bg); /* Цвет фона трека */
	border-radius: 5px;
}

scrollbar-thumb {
	background: #4d4d4d; /* Цвет полосы прокрутки */
	border-radius: 5px;
}

/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	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%;
	/**
      Унифицированный интерлиньяж
     */
	line-height: 1.5;
}

/**
   Приводим к единому цвету svg-элементы
  */
svg *[fill] {
	fill: currentColor;
}

svg *[stroke] {
	stroke: currentColor;
}

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

/**
   Удаляем все анимации и переходы для людей,
   которые предпочитают их не использовать
  */
@media (prefers-reduced-motion: reduce) {
	* {
		-webkit-animation-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		-webkit-transition-duration: 0.01ms !important;
		-o-transition-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
.container {
	max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
	margin-inline: auto;
	padding-inline: var(--container-padding-x);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	-webkit-clip-path: inset(100%);
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}

@media (max-width: 767px) {
	.hidden-mobile {
		display: none;
	}
}

@media (min-width: 768px) {
	.viseble-mobile {
		display: none;
	}
}

:root {
	--font-family: 'Montserrat', sans-serif;
	--color-main: #ffffff;
	--color-accent: #f7931e;
	--color-bg: #0c1417;
	--color-dark: #191a23;
	--color-light: #ffffff;
	--color-black: #000;
	--border: 1px solid var(--color-dark);
	--border-radius: 14px;
	--border-radius-small: 7px;
	--border-radius-large: 45px;
	--shadow: 0 5px 0 0 var(--color-dark);
	--container-width: 1330px;
	--container-padding-x: 20px;
	--section-padding-y: 70px;
	--input-height: 59px;
	--button-height: 68px;
	--transition-duration: 0.2s;
	--mobile-max-width: 290px;
	--tablet-max-width: 482px;
	--large-screen-max-width: 900px;
}
@media (max-width: 1280px) {
	:root {
		--section-padding-y: 50px;
	}
}
@media (max-width: 767px) {
	:root {
		--section-padding-y: 30px;
	}
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.label {
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	-webkit-transform: skew(16deg);
	-ms-transform: skew(16deg);
	transform: skew(16deg);
}
@media (max-width: 767px) {
	.label {
		font-size: 14px;
	}
}

.button {
	display: inline-block;
	text-decoration: none;
	position: relative;
	margin-top: 40px;
}

.button .bottom {
	position: absolute;
	left: 5px;
	top: 5px;
	width: 100%;
	height: 100%;
	background-color: var(--color-accent);
	display: block;
	-webkit-transition: all 0.15s ease-out;
	-o-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
	-webkit-transform: skew(-16deg);
	-ms-transform: skew(-16deg);
	transform: skew(-16deg);
}

.button .top {
	position: relative;
	left: 14px;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 20px 33px;
	border: 1px solid var(--color-light);
	-webkit-transform: skew(-16deg);
	-ms-transform: skew(-16deg);
	transform: skew(-16deg);
}

.button:hover .bottom {
	left: 14px;
	top: 0px;
	background-color: var(--color-accent);
}

.burger-checkbox {
	position: absolute;
	visibility: hidden;
}

.burger {
	z-index: 1;
	cursor: pointer;
	display: block;
	position: relative;
	border: none;
	background: transparent;
	width: 20px;
	height: 8px;
}

.burger::before,
.burger::after {
	content: '';
	left: 0;
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 10px;
	background: var(--color-light);
}

.burger::before {
	top: 0;
	-webkit-box-shadow: 0 12px 0 var(--color-light);
	box-shadow: 0 12px 0 var(--color-light);
	-webkit-transition: top 0.3s 0.15s, -webkit-box-shadow 0.3s 0.15s, -webkit-transform 0.3s;
	transition: top 0.3s 0.15s, -webkit-box-shadow 0.3s 0.15s, -webkit-transform 0.3s;
	-o-transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
	transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
	transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s, -webkit-box-shadow 0.3s 0.15s,
		-webkit-transform 0.3s;
}

.burger::after {
	bottom: 0;
	-webkit-transition: bottom 0.3s 0.15s, -webkit-transform 0.3s;
	transition: bottom 0.3s 0.15s, -webkit-transform 0.3s;
	-o-transition: bottom 0.3s 0.15s, transform 0.3s;
	transition: bottom 0.3s 0.15s, transform 0.3s;
	transition: bottom 0.3s 0.15s, transform 0.3s, -webkit-transform 0.3s;
}

.burger-checkbox:checked + .burger::before {
	top: 6px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-box-shadow: 0 6px 0 rgba(0, 0, 0, 0);
	box-shadow: 0 6px 0 rgba(0, 0, 0, 0);
	-webkit-transition: top 0.3s, -webkit-box-shadow 0.15s, -webkit-transform 0.3s 0.15s;
	transition: top 0.3s, -webkit-box-shadow 0.15s, -webkit-transform 0.3s 0.15s;
	-o-transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
	transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
	transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s, -webkit-box-shadow 0.15s, -webkit-transform 0.3s 0.15s;
}

.burger-checkbox:checked + .burger::after {
	bottom: 0px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: bottom 0.3s, -webkit-transform 0.3s 0.15s;
	transition: bottom 0.3s, -webkit-transform 0.3s 0.15s;
	-o-transition: bottom 0.3s, transform 0.3s 0.15s;
	transition: bottom 0.3s, transform 0.3s 0.15s;
	transition: bottom 0.3s, transform 0.3s 0.15s, -webkit-transform 0.3s 0.15s;
}

.menu-list {
	left: 0;
	top: 0;
	position: absolute;
	display: -ms-grid;
	display: grid;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	padding-top: 75px;
	padding-bottom: 30px;
	padding-inline: 5px;
	margin: 0;
	height: 215px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.85)));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%);
	list-style-type: none;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	width: 100vw;
}

.menu-item {
	display: block;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
}

.menu-item:hover {
	color: var(--color-accent);
}

.burger-checkbox:checked ~ .menu-list {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.mobile-overlay {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 14px 20px;
	border: none;
	background-color: transparent;
}
.mobile-overlay:modal {
	max-width: 100%;
	max-height: 215px;
}
.mobile-overlay__close-button-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
}
.mobile-overlay__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	justify-items: center;
	row-gap: 10px;
	padding-top: 35px;
	font-weight: 600;
	font-size: 14px;
}

.hero__arrow {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	height: 100%;
	width: 100%;
}

.hero__arrow-img {
	height: 50px;
	width: auto;
	cursor: pointer;
}

.hero__arrow img {
	margin-bottom: 10px;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation: bounce 3.6s ease infinite;
	animation: bounce 3.6s ease infinite;
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
}

@-webkit-keyframes bounce {
	0%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

@keyframes bounce {
	0%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}
.header {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))),
		url('../images/bg-images.jpg');
	background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
		url('../images/bg-images.jpg');
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
		url('../images/bg-images.jpg');
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
@media (max-width: 767px) {
	.header {
		height: 100vh;
	}
}
.header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 auto;
}
@media (max-width: 1023px) {
	.header__inner {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.header__inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding-inline: 15px;
		height: 95px;
	}
}
@media (max-width: 1023px) {
	.header__logo {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
}
.header__menu {
	margin-right: 25px;
}
@media (max-width: 1023px) {
	.header__menu {
		display: -ms-grid;
		display: grid;
		grid-column: 1/-1;
		justify-items: center;
	}
}
@media (max-width: 767px) {
	.header__menu {
		display: none;
	}
}
.header__menu-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-moz-column-gap: 47px;
	-webkit-column-gap: 47px;
	column-gap: 47px;
	padding-top: 40px;
}
@media (max-width: 1023px) {
	.header__menu-list {
		width: 581px;
		padding-top: 30px;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.header__menu-item {
	z-index: 2;
}
.header__menu-link {
	font-size: 16px;
}
@media (hover: hover) {
	.header__menu-link:hover {
		color: var(--color-accent);
	}
}
@media (hover: none) {
	.header__menu-link:active {
		color: var(--color-accent);
	}
}
.header__top-element {
	position: absolute;
	top: 0;
	left: 70%;
	content: url(../images/header-top-element.svg);
}
@media (min-width: 1441px) {
	.header__top-element {
		left: 66%;
	}
}
@media (min-width: 1024px) and (max-width: 1164px) {
	.header__top-element {
		display: none;
	}
}
@media (max-width: 1023px) {
	.header__top-element {
		content: url(../images/header-top-element-tablet.svg);
		height: 100px;
		left: 55%;
	}
}
@media (max-width: 767px) {
	.header__top-element {
		left: 45%;
		height: 80px;
	}
}
.header__left-element {
	position: absolute;
	width: 230px;
	bottom: -53px;
	left: 0;
	height: auto;
	content: url(../images/header-left-element.svg);
}
@media (max-width: 1023px) {
	.header__left-element {
		width: 160px;
		bottom: -5%;
	}
}
@media (min-width: 300px) and (max-width: 483px) {
	.header__left-element {
		width: 125px;
		bottom: -4%;
	}
}
.header__contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-top: 30px;
	z-index: 2;
	min-width: 106px;
}
@media (max-width: 1023px) {
	.header__contacts {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}
@media (hover: hover) {
	.header__contacts-item:hover {
		color: var(--color-accent);
	}
}
@media (hover: none) {
	.header__contacts-item:active {
		color: var(--color-accent);
	}
}

.logo {
	position: relative;
}
@media (max-width: 767px) {
	.logo__image {
		position: absolute;
		top: -50px;
		left: -22px;
		min-width: 160px;
		padding-bottom: 10px;
		z-index: 1;
	}
}

.first-screen {
	background-image: url('/images/bg-images.jpg');
	background-size: cover;
	background-position: center;
	height: 100vh;
	z-index: -4;
}

.hero {
	position: relative;
}
.hero__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 233px;
}
@media (max-width: 1023px) {
	.hero__body {
		margin-top: 170px;
	}
}
@media (max-width: 767px) {
	.hero__body {
		margin-top: 110px;
	}
}
.hero__body-title {
	margin: 0;
	font-weight: 700;
	font-size: 64px;
	line-height: 106%;
	margin-bottom: 33px;
}
@media (max-width: 1023px) {
	.hero__body-title {
		font-size: 58px;
		line-height: 117%;
		text-align: center;
	}
}
@media (max-width: 767px) {
	.hero__body-title {
		font-size: 48px;
		line-height: 142%;
		text-align: center;
	}
}
.hero__body-tagline {
	font-weight: 500;
	font-size: 28px;
	margin-bottom: 35px;
}
@media (max-width: 767px) {
	.hero__body-tagline {
		font-weight: 500;
		font-size: 20px;
		text-align: center;
	}
}
.hero__body-button {
	margin-bottom: 300px;
}
.hero__footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	min-height: calc(100vh - 690px);
}
@media (max-width: 767px) {
	.hero__footer {
		min-height: calc(100vh - 610px);
	}
}
@media (max-width: 480px) {
	.hero__footer {
		min-height: calc(100vh - 660px);
	}
}
.hero__footer-social {
	position: absolute;
	top: 90%;
	left: 97%;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
@media (max-width: 1023px) {
	.hero__footer-social {
		left: 96%;
	}
}
@media (max-width: 767px) {
	.hero__footer-social {
		top: 92%;
		left: 90%;
	}
}
@media (hover: hover) {
	.hero__footer-social:hover {
		color: #1a4b78;
	}
}
@media (hover: none) {
	.hero__footer-social:active {
		color: #1a4b78;
	}
}

.newlive {
	margin-block: 100px;
}
.newlive__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (min-width: 768px) and (max-width: 1153px) {
	.newlive__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
@media (max-width: 1023px) {
	.newlive__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
.newlive #newlive {
	margin-top: -100px;
	padding-top: 100px; /* компенсация отрицательного отступа для предотвращения перекрытия контента */
}
.newlive__body-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}
@media (max-width: 767px) {
	.newlive__body-left {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.newlive__first-img {
	-webkit-filter: drop-shadow(var(--color-black) 0rem 0rem 5px);
	filter: drop-shadow(var(--color-black) 0rem 0rem 5px);
	margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1153px) {
	.newlive__first-img {
		margin-bottom: 0;
	}
}
@media (max-width: 767px) {
	.newlive__first-img {
		margin-bottom: 0;
	}
}
.newlive__second-img {
	-webkit-filter: drop-shadow(var(--color-black) 0rem 0rem 5px);
	filter: drop-shadow(var(--color-black) 0rem 0rem 5px);
	margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 1153px) {
	.newlive__second-img {
		margin-top: 0;
	}
}
@media (max-width: 767px) {
	.newlive__second-img {
		margin-top: 0;
	}
}
.newlive__body-right {
	width: 451px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	row-gap: 50px;
}
@media (min-width: 768px) and (max-width: 1153px) {
	.newlive__body-right {
		width: 665px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
		margin-bottom: 40px;
	}
}
@media (max-width: 767px) {
	.newlive__body-right {
		max-width: 290px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom: 40px;
	}
}
.newlive__title {
	font-weight: 700;
	font-size: 30px;
	line-height: 113%;
}
@media (max-width: 767px) {
	.newlive__title {
		font-size: 25px;
	}
}
.newlive__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 162%;
}
.newlive__button {
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	border: 1px solid var(--color-light);
	padding: 20px 33px;
	-webkit-transform: skew(-16deg);
	-ms-transform: skew(-16deg);
	transform: skew(-16deg);
	-webkit-transition: all 0.15s ease-out;
	-o-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}
@media (hover: hover) {
	.newlive__button:hover {
		background-color: var(--color-accent);
	}
}
@media (hover: none) {
	.newlive__button:active {
		background-color: var(--color-accent);
	}
}

.options {
	margin-bottom: 100px;
}
.options__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 41px;
}
@media (min-width: 1009px) and (max-width: 1330px) {
	.options__list {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		row-gap: 60px;
		-moz-column-gap: 15px;
		-webkit-column-gap: 15px;
		column-gap: 15px;
	}
}
@media (max-width: 1023px) {
	.options__list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		row-gap: 60px;
		-moz-column-gap: 150px;
		-webkit-column-gap: 150px;
		column-gap: 150px;
	}
}
.options__item {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 372px;
	-moz-column-gap: 25px;
	-webkit-column-gap: 25px;
	column-gap: 25px;
}
@media (min-width: 1009px) and (max-width: 1330px) {
	.options__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
	}
}
@media (max-width: 1023px) {
	.options__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
		max-width: 223px;
	}
}
@media (hover: hover) {
	.options__item:hover::after {
		width: 100%;
	}
}
@media (hover: none) {
	.options__item:active::after {
		width: 100%;
	}
}
.options__item::after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: var(--color-accent);
	-webkit-transition: width 0.3s ease;
	-o-transition: width 0.3s ease;
	transition: width 0.3s ease;
}
@media (hover: hover) {
	.options__item-text:hover {
		color: var(--color-accent);
		cursor: pointer;
	}
}
@media (hover: none) {
	.options__item-text:active {
		color: var(--color-accent);
		cursor: pointer;
	}
}

.gallery-content {
	position: relative;
}

.gallery-content-img {
	position: absolute;
	left: 0;
	bottom: -135px;
}
@media (max-width: 767px) {
	.gallery-content-img {
		height: 200px;
		width: 166px;
		bottom: -102px;
		left: -68px;
		z-index: -1;
	}
}

.gallery__title {
	margin-bottom: 80px;
	font-weight: 700;
	font-size: 30px;
	line-height: 113%;
	text-align: center;
}
.gallery__slider-top {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	margin-bottom: 60px;
}
.gallery__swiper-prev,
.gallery__swiper-next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	width: 35px;
	height: 22px;
	cursor: pointer;
}
.gallery__swiper-prev:hover,
.gallery__swiper-next:hover {
	color: var(--color-accent);
}
.gallery__swiper-prev {
	left: 10px;
}
.gallery__swiper-next {
	right: 10px;
	rotate: 180deg;
}

.swiper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 1162px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
	.swiper {
		max-width: var(--large-screen-max-width);
	}
}
@media (max-width: 1023px) {
	.swiper {
		max-width: var(--tablet-max-width);
	}
}

.swiper-wrapper {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
}

.swiper-slide-top-img,
.swiper-slide-bottom-img {
	margin: 0 auto;
}

.swiper-scrollbar {
	position: relative;
	background-color: var(--color-light);
	border-radius: 0;
	max-width: 1000px;
	margin: 0 auto;
	left: 0;
	right: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
	.swiper-scrollbar {
		max-width: var(--tablet-max-width);
	}
}
@media (max-width: 1023px) {
	.swiper-scrollbar {
		max-width: var(--tablet-max-width);
	}
}
@media (max-width: 767px) {
	.swiper-scrollbar {
		max-width: var(--mobile-max-width);
	}
}

.swiper-scrollbar-drag {
	background-color: var(--color-accent);
	border-radius: 0;
	height: 10px;
	top: -3px;
}

.gallery {
	position: relative;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.gallery {
		margin-bottom: 80px;
	}
}
.gallery__slider-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}
.gallery__swiper-prev-bottom,
.gallery__swiper-next-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	width: 35px;
	height: 22px;
	cursor: pointer;
}
.gallery__swiper-prev-bottom:hover,
.gallery__swiper-next-bottom:hover {
	color: var(--color-accent);
}
.gallery__swiper-prev-bottom {
	left: 30px;
}
.gallery__swiper-next-bottom {
	right: 30px;
	rotate: 180deg;
}

.subscription-content {
	background-color: var(--color-light);
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}
.subscription-content__right {
	position: absolute;
	top: 18%;
	right: 0;
}
@media (max-width: 1280px) {
	.subscription-content__right {
		top: 30%;
		width: 100px;
	}
}
@media (max-width: 1023px) {
	.subscription-content__right {
		top: 22%;
		width: 80px;
	}
}
@media (max-width: 767px) {
	.subscription-content__right {
		top: 20%;
		width: 50px;
	}
}
.subscription-content__left {
	position: absolute;
	top: 50%;
	left: 0;
}
@media (max-width: 1280px) {
	.subscription-content__left {
		top: 55%;
		width: 100px;
	}
}
@media (max-width: 1023px) {
	.subscription-content__left {
		top: 39%;
		width: 110px;
	}
}
@media (max-width: 767px) {
	.subscription-content__left {
		top: 39%;
		width: 56px;
	}
}

.subscription__wrapper::-webkit-scrollbar {
	width: 12px;
	height: 5px;
}

.subscription__wrapper::-webkit-scrollbar-thumb {
	background-color: var(--color-accent);
	border-radius: 0px;
}

.focus {
	color: var(--color-accent);
}
@media (max-width: 767px) {
	.focus {
		color: var(--color-dark);
	}
}
@media (max-width: 1023px) {
	.focus {
		color: var(--color-dark);
	}
}

.subscription__wrapper {
	overflow-x: auto;
}
.subscription__top {
	margin-bottom: 80px;
}
.subscription__top-title,
.subscription__middle-title {
	color: var(--color-dark);
	text-align: center;
	margin-bottom: 80px;
}
@media (max-width: 1023px) {
	.subscription__top-title,
	.subscription__middle-title {
		margin-bottom: 60px;
	}
}
.subscription__top-title {
	font-weight: 700;
	font-size: 25px;
	line-height: 136%;
}
.subscription__middle-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 150%;
}

.table {
	color: var(--color-dark);
	min-width: 1095px;
	margin: 0 auto;
	border-spacing: 0;
}
@media screen and (min-width: 950px) and (max-width: 1150px) {
	.table {
		min-width: 900px;
	}
}
@media (max-width: 1023px) {
	.table {
		min-width: 900px;
	}
}
@media (max-width: 767px) {
	.table {
		min-width: 730px;
	}
}
@media screen and (min-width: 374px) and (max-width: 425px) {
	.table {
		min-width: 975px;
	}
}

th {
	border-bottom: 1px solid rgba(12, 20, 23, 0.5);
	width: 157px;
	padding-bottom: 10px;
}

th:first-child,
td:first-child {
	text-align: left;
	padding-bottom: 10px;
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	min-width: 230px;
}
@media (max-width: 767px) {
	th:first-child,
	td:first-child {
		font-size: 14px;
		min-width: 120px;
		padding-bottom: 10px;
	}
}

th:first-child {
	font-weight: 500;
	font-size: 18px;
	line-height: 133%;
}
@media (max-width: 767px) {
	th:first-child {
		font-size: 16px;
	}
}

td {
	text-align: center;
	padding: 20px 0 30px;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	max-width: 157px;
}
@media (max-width: 767px) {
	td {
		padding: 10px 0;
	}
}

.subscription__bottom-title {
	color: var(--color-dark);
	font-weight: 700;
	font-size: 24px;
	line-height: 125%;
	text-align: center;
	margin-top: 90px;
	margin-bottom: 80px;
}
.subscription__bottom-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media (max-width: 1023px) {
	.subscription__bottom-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.subscription__bottom-cards {
	-webkit-box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.08);
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 308px;
	max-height: 372px;
	width: 100%;
}
.subscription__card-title {
	color: var(--color-dark);
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	margin-top: 32px;
	margin-bottom: 20px;
	padding-inline: 20px;
}
.subscription__card-time {
	font-weight: 400;
	font-size: 15px;
	line-height: 133%;
	text-align: center;
	color: rgba(12, 20, 23, 0.5);
	margin-bottom: 30px;
}
.subscription__card-img {
	height: 34px;
	width: 34px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.subscription__card-price {
	color: var(--color-dark);
	font-weight: 700;
	font-size: 24px;
	line-height: 125%;
	text-align: center;
	margin-bottom: 15px;
}
.subscription__card-text {
	font-weight: 400;
	font-size: 15px;
	line-height: 133%;
	text-align: center;
	color: rgba(12, 20, 23, 0.5);
	margin-bottom: 30px;
}
.subscription__card-button {
	width: 220px;
	margin: 0 auto;
	margin-bottom: 30px;
	color: var(--color-accent);
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	text-align: center;
	border: 1px solid var(--color-accent);
	padding: 15px 33px;
	-webkit-transform: skew(-16deg);
	-ms-transform: skew(-16deg);
	transform: skew(-16deg);
	-webkit-transition: all 0.15s ease-out;
	-o-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
	cursor: default;
}
.subscription__card-button:hover {
	background-color: var(--color-accent);
	color: var(--color-light);
}
.subscription .time-fix {
	margin-bottom: 10px;
}

.coaches {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 55px;
	position: relative;
}
.coaches__content-decoration {
	position: absolute;
	top: 0;
	left: 0;
}
@media (max-width: 1023px) {
	.coaches {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
	}
}
@media screen and (min-width: 1024px) and (max-width: 1400px) {
	.coaches {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
	}
}
.coaches__title {
	font-weight: 700;
	font-size: 30px;
	line-height: 113%;
	text-align: center;
	margin-top: 90px;
}
@media (max-width: 767px) {
	.coaches__title {
		margin-top: 80px;
		font-weight: 700;
		font-size: 25px;
		line-height: 136%;
		text-align: center;
	}
}
.coaches__card {
	margin-top: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	max-width: 300px;
}
@media (max-width: 1280px) {
	.coaches__card {
		margin-top: 60px;
	}
}
.coaches__card-img {
	margin-bottom: 20px;
	width: 100%;
	height: 430px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	display: block;
}
.coaches__card-title {
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 15px;
}
.coaches__card-position,
.coaches__card-specialization,
.coaches__card-experience {
	font-weight: 400;
	font-size: 15px;
	line-height: 133%;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 10px;
}
.coaches__swiper-controls {
	margin-top: 20px;
	margin-bottom: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 40px;
	-webkit-transform: translate(-8%, -50%);
	-ms-transform: translate(-8%, -50%);
	transform: translate(-8%, -50%);
}
@media screen and (min-width: 1024px) and (max-width: 1400px) {
	.coaches__swiper-controls {
		-webkit-transform: translate(0%, -50%);
		-ms-transform: translate(0%, -50%);
		transform: translate(0%, -50%);
	}
}
@media (max-width: 1023px) {
	.coaches__swiper-controls {
		display: none;
	}
}
@media (max-width: 767px) {
	.coaches__swiper-controls {
		display: none;
	}
}
.coaches__swiper-button-prev {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 26px;
}
.coaches__swiper-button-prev svg {
	display: block;
	height: 100%;
	width: auto;
	margin: 0 auto;
}
.coaches__swiper-button-prev svg:hover {
	cursor: pointer;
	color: var(--color-accent);
}
.coaches__swiper-button-next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 26px;
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	transform: scaleX(-1);
}
.coaches__swiper-button-next svg {
	display: block;
	height: 100%;
	width: auto;
	margin: 0 auto;
}
.coaches__swiper-button-next svg:hover {
	cursor: pointer;
	color: var(--color-accent);
}

@media (max-width: 1023px) {
	.swiper {
		max-width: 650px;
	}
}
@media (max-width: 767px) {
	.swiper {
		max-width: 250px;
	}
}

.swiper-slide {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%; /* Фиксируем ширину слайда */
	-webkit-box-sizing: border-box;
	box-sizing: border-box; /* Учитываем padding и border в общей ширине */
}

@media screen and (min-width: 1024px) and (max-width: 2400px) {
	.coaches-scrollbar {
		display: none;
	}
}

.consulting {
	position: relative;
	background-image: url(../images/consulting-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
.consulting__content {
	position: relative;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
@media (max-width: 1023px) {
	.consulting__content {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.consulting__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.consulting__title {
	padding-top: 110px;
	margin-bottom: 25px;
	font-weight: 700;
	font-size: 24px;
	line-height: 125%;
	text-align: center;
}
@media (max-width: 680px) {
	.consulting__title {
		font-weight: 700;
		font-size: 20px;
		line-height: 150%;
	}
}
.consulting__text {
	font-weight: 500;
	font-size: 18px;
	line-height: 133%;
	text-align: center;
	max-width: 351px;
	margin-bottom: 25px;
}
@media (max-width: 680px) {
	.consulting__text {
		font-weight: 500;
		font-size: 16px;
		line-height: 150%;
	}
}
.consulting__button {
	display: block;
	margin: 30px auto;
	font-size: 16px;
	line-height: 125%;
	border: 1px solid var(--color-light);
	padding: 20px 33px;
	-webkit-transform: skew(-16deg);
	-ms-transform: skew(-16deg);
	transform: skew(-16deg);
	-webkit-transition: all 0.15s ease-out;
	-o-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: transparent;
	color: white;
}
.consulting__button span {
	-webkit-transform: skew(-16deg);
	-ms-transform: skew(-16deg);
	transform: skew(-16deg);
}
.consulting__button:hover {
	background-color: var(--color-accent);
}
.consulting__description {
	padding-bottom: 100px;
	max-width: 280px;
	font-weight: 400;
	font-size: 14px;
	line-height: 143%;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}

.form {
	max-width: 351px;
	width: 100%;
}
.form__input-box:not(:last-child) {
	margin-bottom: 20px;
}
.form__input-area {
	width: 100%;
}
.form input[type='text'],
.form input[type='tel'] {
	font-size: 16px;
	padding-bottom: 12px;
	margin-bottom: 10px;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	background-color: transparent;
	width: 100%;
	max-width: 351px;
	color: white;
}
.form input:focus {
	outline: none;
	border-color: #f7931e;
	background-color: transparent;
}

.color-accent {
	color: #f7931e;
}

.consulting::after {
	content: '';
	position: absolute; /* Абсолютное позиционирование относительно родителя */
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5); /* Черный цвет с 50% прозрачностью */
	z-index: 1;
}

.contacts {
	position: relative;
}
.contacts__map {
	height: 567px;
	width: 100%;
}
@media (max-width: 680px) {
	.contacts__map {
		height: 234px;
	}
}
.contacts__content {
	position: absolute;
	top: 60px;
	left: 15%;
	z-index: 2;
	background-color: var(--color-bg);
	max-width: 396px;
	padding: 50px 38px;
}
@media (max-width: 680px) {
	.contacts__content {
		position: static;
		top: auto;
		left: auto;
		max-width: 274px;
		margin: 0 auto;
		padding: 50px 0px;
	}
}
@media (max-width: 767px) {
	.contacts__content {
		left: 10%;
	}
}
.contacts__title {
	font-weight: 700;
	font-size: 30px;
	line-height: 113%;
	margin-bottom: 50px;
}
@media (max-width: 680px) {
	.contacts__title {
		font-weight: 700;
		font-size: 25px;
		text-align: center;
	}
}
.contacts__street {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 26px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
}
@media (max-width: 680px) {
	.contacts__street {
		font-weight: 400;
		font-size: 14px;
		line-height: 171%;
	}
}
.contacts__time {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 27px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
}
@media (max-width: 680px) {
	.contacts__time {
		font-weight: 400;
		font-size: 14px;
		line-height: 171%;
	}
}
.contacts__phone {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
}
@media (max-width: 680px) {
	.contacts__phone {
		font-weight: 400;
		font-size: 14px;
		line-height: 214%;
	}
}
.contacts__text {
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 37px;
}
@media (max-width: 680px) {
	.contacts__text {
		font-weight: 500;
		font-size: 14px;
		line-height: 171%;
	}
}
.contacts__social-img {
	fill: var(--color-accent);
	-webkit-transition: fill 0.3s ease;
	-o-transition: fill 0.3s ease;
	transition: fill 0.3s ease;
}
.contacts__social-img:hover {
	fill: #1a4b78;
}

[class*='copyrights-pane'] {
	display: none !important;
}

.popup {
	display: none; /* Скрыть попап по умолчанию */
	position: fixed; /* Оставить попап видимым при прокрутке страницы */
	z-index: 99999; /* Поместить на верхний слой */
	left: 0;
	top: 0;
	width: 100%; /* Полная ширина */
	height: 100%; /* Полная высота */
	background-color: rgba(0, 0, 0, 0.5); /* Черный фон с непрозрачностью */
}
.popup__content {
	position: absolute;
	background-color: #0c1417;
	margin: 10% auto; /* Центрировать попап */
	padding: 20px;
	width: 100%; /* Ширина попапа */
	max-width: 900px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media (max-width: 767px) {
	.popup__content {
		max-width: 360px;
		margin: 15% auto;
	}
}
.popup__content-decoration {
	position: absolute;
	bottom: 80px;
	left: 0;
}
@media (max-width: 767px) {
	.popup__content-decoration {
		width: 50px;
		bottom: -8px;
	}
}
.popup__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 35px;
}
@media (max-width: 767px) {
	.popup__top {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin: 0;
		margin-bottom: 20px;
	}
}
.popup__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 110px;
}
@media (max-width: 767px) {
	.popup__body {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-bottom: 30px;
	}
}
.popup__approved {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.popup__approved {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.popup__approved-title {
	font-weight: 700;
	font-size: 30px;
	line-height: 113%;
	text-align: center;
}
@media (max-width: 767px) {
	.popup__approved-title {
		font-weight: 700;
		font-size: 20px;
		line-height: 170%;
		text-align: left;
	}
}
.popup__text {
	font-weight: 700;
	font-size: 20px;
	line-height: 170%;
	text-align: center;
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.popup__text {
		font-weight: 700;
		font-size: 18px;
		line-height: 189%;
		text-align: left;
	}
}
.popup__contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
}
@media (max-width: 767px) {
	.popup__contacts {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		font-weight: 400;
		font-size: 14px;
		line-height: 171%;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 15px;
	}
	.popup__contacts p {
		margin: 0;
	}
}
.popup__social {
	margin-bottom: 15px;
}
@media (max-width: 767px) {
	.popup__social {
		font-weight: 500;
		font-size: 14px;
		line-height: 171%;
		width: 100%;
		text-align: left;
	}
}

.close-btn {
	position: absolute;
	top: 50px;
	right: 50px;
	cursor: pointer;
	width: 40px;
	height: 40px;
}
@media (max-width: 767px) {
	.close-btn {
		width: 20px;
		height: 20px;
		top: 20px;
		right: 20px;
	}
}

.close-btn:hover,
.close-btn:focus {
	color: var(--color-accent);
	text-decoration: none;
	cursor: pointer;
}

.close-btn::before,
.close-btn::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 40px;
	background-color: #fff;
}
@media (max-width: 767px) {
	.close-btn::before,
	.close-btn::after {
		height: 20px;
	}
}

.close-btn::before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 18px;
}
@media (max-width: 767px) {
	.close-btn::before {
		right: 9px;
	}
}

.close-btn::after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	right: 18px;
}
@media (max-width: 767px) {
	.close-btn::after {
		right: 9px;
	}
}

.footer {
	background: #000;
	border: 1px solid black;
}
.footer__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 50px;
	padding-bottom: 50px;
	position: relative;
}
@media (max-width: 767px) {
	.footer__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.footer__tablet-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 70px;
}
@media (min-width: 1024px) and (max-width: 1200px) {
	.footer__tablet-left {
		gap: 40px;
	}
}
@media (max-width: 1023px) {
	.footer__tablet-left {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
	}
}
.footer__tablet-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 110px;
}
@media (min-width: 1024px) and (max-width: 1200px) {
	.footer__tablet-right {
		gap: 40px;
	}
}
@media (max-width: 1023px) {
	.footer__tablet-right {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		gap: 0;
	}
}
@media (max-width: 767px) {
	.footer__tablet-right {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		gap: 10px;
		margin-top: 80px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.footer__section p {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 171%;
	color: rgba(255, 255, 255, 0.7);
}
.footer__left {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 60px;
	gap: 16px;
}
@media (max-width: 767px) {
	.footer__left {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
}
.footer__right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
}
@media (max-width: 1023px) {
	.footer__right {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}
@media (max-width: 767px) {
	.footer__right {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}
.footer__logo {
	position: absolute;
	top: -100px;
	left: -25px;
}
@media (max-width: 767px) {
	.footer__logo {
		top: -390px;
		left: 0;
	}
}
.footer__link {
	font-weight: 400;
	font-size: 14px;
	line-height: 171%;
	color: rgba(255, 255, 255, 0.7);
}
.footer__link:hover {
	color: var(--color-accent);
}
.footer__middle-social {
	font-weight: 400;
	font-size: 14px;
	line-height: 171%;
	color: rgba(255, 255, 255, 0.7);
}
.footer__middle-social svg {
	margin-top: 15px;
}
.footer__social {
	fill: rgba(255, 255, 255, 0.7);
}
.footer__social:hover {
	fill: var(--color-accent);
}

@media (max-width: 1023px) {
	.social-mobile {
		text-align: right;
	}
}
@media (max-width: 767px) {
	.social-mobile {
		text-align: center;
	}
}
