@font-face {
	font-family: 'Gotham Pro';
	src: url('../fonts/GothamPro/GothamPro.eot');
	src: local('Gotham Pro'), local('GothamPro'),
		url('../fonts/GothamPro/GothamPro.eot?#iefix') format('embedded-opentype'),
		url('../fonts/GothamPro/GothamPro.woff') format('woff'),
		url('../fonts/GothamPro/GothamPro.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham Pro';
	src: url('../fonts/GothamPro/GothamPro-Medium.eot');
	src: local('Gotham Pro Medium'), local('GothamPro-Medium'),
		url('../fonts/GothamPro/GothamPro-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/GothamPro/GothamPro-Medium.woff') format('woff'),
		url('../fonts/GothamPro/GothamPro-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham Pro';
	src: url('../fonts/GothamPro-Bold.eot');
	src: local('Gotham Pro Bold'), local('GothamPro-Bold'),
		url('../fonts/GothamPro-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/GothamPro-Bold.woff') format('woff'),
		url('../fonts/GothamPro-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham Pro';
	src: url('../fonts/GothamPro-Light.eot');
	src: local('Gotham Pro Light'), local('GothamPro-Light'),
		url('../fonts/GothamPro-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/GothamPro-Light.woff') format('woff'),
		url('../fonts/GothamPro-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "MuseoSansCyrl";
	src: url("../fonts/MuseoSansCyrl/MuseoSansCyrl300.eot");
	src: url("../fonts/MuseoSansCyrl/MuseoSansCyrl300.eot?#iefix")format("embedded-opentype"),
		url("../fonts/MuseoSansCyrl/MuseoSansCyrl300.woff") format("woff"),
		url("../fonts/MuseoSansCyrl/MuseoSansCyrl300.ttf") format("truetype");
	font-style: normal;
	font-weight: 300;
}

@font-face {
	font-family: "MuseoSansCyrl";
	src: url("../fonts/MuseoSansCyrl/MuseoSansCyrl500.eot");
	src: url("../fonts/MuseoSansCyrl/MuseoSansCyrl500.eot?#iefix")format("embedded-opentype"),
		url("../fonts/MuseoSansCyrl/MuseoSansCyrl500.woff") format("woff"),
		url("../fonts/MuseoSansCyrl/MuseoSansCyrl500.ttf") format("truetype");
	font-style: normal;
	font-weight: 500;
}

html,
body {
	font-family: 'Gotham Pro', sans-serif;
	background-color: #f6f7f9;
	color: #373738;
	font-weight: normal;
}

.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}

@media (min-width: 576px) {
	.agent-page .container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
		.agent-page .container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
		.agent-page .container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
		.agent-page .container {
		max-width: 1140px;
	}
}

.agent-page .header {
	border-bottom: none;
	background-color: #f6f7f9;
	padding: 0;
}

/*.header.top {
	position: relative;
}*/

.header__menu {
	display: none;
}
.agent-page .header__logo{
	    width: auto;
}

.header__container {
	justify-content: space-between;
	display: flex;
	padding: 33px 0;
}

.header-agent__left {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
	width: 56.5%;
}

.header__divider {
	flex-grow: 1;
	height: 1px;
	margin: 0 20px;
	position: relative;
	/* Скрываем содержимое за пределами контейнера */
}

.header__divider::before {
	content: '';
	position: absolute;
	right: 0;
	/* Начальная позиция точки справа */
	top: -3px;
	background: #8DC63F;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	transform: scale(0);
	opacity: 0;
	animation: grow-dot 2s cubic-bezier(0.4, 0, 0.2, 1) forwards, move-dot 2.5s ease-out 2.5s forwards;
}

.header__divider::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	height: 1px;
	background-color: #8DC63F;
	animation: draw-line 2.5s ease-out 2.5s forwards;
}

/* Анимация появления точки */
@keyframes grow-dot {
	0% {
		transform: scale(0);
		/* Точка изначально невидима */
		opacity: 0;
		/* Прозрачна */
	}

	50% {
		transform: scale(0.5);
		/* Точка увеличивается наполовину */
		opacity: 0.5;
		/* Частичная видимость */
	}

	100% {
		transform: scale(1);
		/* Точка достигает полного размера */
		opacity: 1;
		/* Полная видимость */
	}
}

/* Анимация движения точки справа налево */
@keyframes move-dot {
	0% {
		right: 0;
		/* Начальная позиция точки */
	}

	100% {
		right: 100%;
		/* Точка перемещается влево */
	}
}

/* Анимация рисования линии справа налево */
@keyframes draw-line {
	0% {
		width: 0;
		/* Линия изначально невидима */
		right: 0;
		/* Начинаем с правого края */
	}

	100% {
		width: 100%;
		/* Линия растягивается на всю ширину */
		right: 0;
		/* Линия остаётся привязанной к правому краю */
	}
}


.header-agent span {
	color: #8DC63F;
	font-size: 48px;
	font-weight: 500;
	display: block;
	position: relative;
}

a.header__logo--link {
	max-width: 200px;
}

/* Контакты */
.header__contacts {
	display: flex;
	align-items: center;
	gap: 19px;
	flex-direction: row;
}

/* Социальные иконки */
.header__social {
	display: flex;
	gap: 17px;
}

.header__icon {
	width: 24px;
	height: 24px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
}


/* Горячая линия */
.header__hotline {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.header__hotline-title,
.header__callback {
	font-size: 13px;
	color: #A5A5A5;
	position: relative;
}

.header__hotline-title {
	top: -4px;
}

.header__callback {
	top: 4px;
}

.header__phone a {
	font-size: 24px;
	font-weight: 500;
	color: #373738;
	display: block !important;
}


/* Верхний баннер */

.agent-top-banner {
	padding-top: 7px;
}

.agent-top-banner__wrapper {
	background-color: #fff;
	background-image: url(../images/agent/agent-top-banner.jpg);
	background-size: contain;
	border-radius: 32px;
	background-repeat: no-repeat;
	background-position-x: right;
	min-height: 408px;
	color: #373738;
}

.agent-top-banner__content {
	max-width: 630px;
	padding: 40px 32px;
}

.agent-top-banner__content span {
	font-size: 15px;
	text-transform: uppercase;
	display: block;
}

.agent-top-banner__title {
	font-size: 40px;
	margin-top: 10px;
	margin-bottom: 21px;
	line-height: 1.2;
	font-weight: 500;
}

.agent-top-banner__content p {
	font-size: 20px;
	line-height: 146%;
}

.agent-top-banner__content .btn {
	max-width: 350px;
	font-size: 17px;
	line-height: 20px;
	border-radius: 12px;
	background: rgb(141, 198, 63);
	text-transform: capitalize;
	padding: 14px 28px;
	margin-top: 27px;
}

.agent-top-banner__content small {
	font-size: 13px;
	color: #A5A5A5;
	font-weight: normal;
	line-height: 1.4;
	margin-top: 22px;
}

/* END Верхний баннер */

.agent-top-faq {
	padding-top: 32px;
	padding-bottom: 32px;
}

.agent-top-faq__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.agent-top-faq__item {
	background-color: #fff;
	border-radius: 24px;
	padding: 45px 24px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.agent-top-faq__item .agent-top-faq__image svg {
	transition: filter 0.3s ease, transform 0.3s ease;
}

.agent-top-faq__item:hover .agent-top-faq__image svg {
	transform: scale(1.1);
}


.agent-top-faq__image {
	flex-shrink: 0;
}

.agent-top-faq__description {
	flex: 1;
}

.agent-top-faq__title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 8px;
	display: block;
}

.agent-top-faq__description p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

.agent-tg img {
	border-radius: 64px;
	max-width: none;
}

.agent-tg__media--mobile {
	display: none !important;
}



.agent {
	padding: 32px 0;
}

.agent__title {
	font-size: 40px;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 44px;
	line-height: 1.2;
}

.agent__title--center {
	text-align: center;
}

.agent__subtitle {
	font-size: 20px;
	color: #373738;
	line-height: 1.3;
}

.agent__title--sub {
	margin-bottom: 22px;
}



/* Calculator */

.agent-structure {
	border-radius: 64px;
	background: rgb(255, 255, 255);
	padding: 64px 0;
}


.calculator__content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 22px;
}

.calculator__form {
	position: relative;
}

.calculator__form .success-message,
.popup__content .success-message {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 30px;
	font-weight: 500;
}

.calculator__sliders,
.calculator__form {
	flex: 1;
	max-width: 48%;
}

.calculator__form small {
	font-size: 13px;
	color: #A5A5A5;
	margin-top: 22px;
	line-height: 1.3;
}

.calculator__form .btn {
	padding: 15px 28px;
	margin-top: 18px;
	border-radius: 8px;
	min-width: 160px;
	font-family: 'Gotham Pro', sans-serif;
	font-weight: 400;
	font-size: 16px;
}

.slider-block {
	margin-bottom: 80px;
	text-align: left;
}

.slider-block label {
	display: block;
	font-size: 15px;
	color: #595959;
	margin-bottom: 28px;
}

.slider-container {
	position: relative;
}

.slider-container input[type="range"] {
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
	background: #ddd;
	height: 4px;
	border-radius: 2px;
	outline: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #8ac540;
	cursor: pointer;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.slider-container .slider-value {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	color: #333;
	font-size: 14px;
	padding: 2px 6px;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Result styles */
.calculator__result span {
	font-size: 40px;
	font-weight: bold;
	color: #333;
	margin: 20px 0;
}

/* Form styles */
.calculator__form input[type="text"],
.calculator__form input[type="tel"] {
	width: 100%;
	padding: 16px 40px;
	margin-bottom: 20px;
	border: 1px solid rgb(213, 213, 213);
	border-radius: 8px;
	font-size: 15px;
	font-family: 'Gotham Pro', sans-serif;
}

.calculator__form input[type="text"]:hover,
.calculator__form input[type="tel"]:hover,
.calculator__form input[type="text"]:focus-visible,
.calculator__form input[type="tel"]:focus-visible {
	border: 1px solid #8dc63f;
}

.calculator__form label {
	display: flex;
	align-items: center;
	font-size: 15px;
	color: #A5A5A5;
}

.calculator__form label input[type="checkbox"] {
	margin-right: 10px;
}

.calculator__form label a {
	color: #A5A5A5;
	text-decoration: underline;
}

.policy {
	margin-top: 10px;
}

/* Скрываем стандартный чекбокс */
label input[type="checkbox"] {
	display: none;
}

/* Контейнер для пользовательского чекбокса */
label {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #aaa;
	cursor: pointer;
}

/* Пользовательский чекбокс */
label input[type="checkbox"]+span {
	width: 32px;
	height: 32px;
	border: 1px solid #ddd;
	border-radius: 8px;
	display: inline-block;
	margin-right: 10px;
	background-color: #fff;
	position: relative;
	transition: all 0.3s ease;
}

/* Состояние выбранного чекбокса */
label input[type="checkbox"]:checked+span {
	background-color: #8ac540;
	border-color: #8ac540;
}

label input[type="checkbox"]:checked+span::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 8px;
	width: 11px;
	height: 17px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Ссылка внутри текста */
label a {
	color: #aaa;
	text-decoration: underline;
	margin-left: 5px;
}

label a:hover {
	color: #8ac540;
	text-decoration: none;
}



#recommendations-slider,
#court-exits-slider {
	height: 5px;
}

#recommendations-slider .noUi-connect,
#court-exits-slider .noUi-connect {
	background: #8DC63F;
}

#recommendations-slider .noUi-target,
#court-exits-slider .noUi-target {
	border: none;
	box-shadow: none;
}

#recommendations-slider .noUi-handle,
#court-exits-slider .noUi-handle {
	height: 25px;
	width: 25px;
	top: -11px;
	right: -13px;
	border-radius: 100%;
	border: 6px solid #d3e0b4;
	background: #8DC63F;
	box-shadow: none;
	cursor: pointer;
}

#recommendations-slider .noUi-handle:after,
#recommendations-slider .noUi-handle:before,
#court-exits-slider .noUi-handle:after,
#court-exits-slider .noUi-handle:before {
	display: none;
}

#recommendations-slider .noUi-active,
#court-exits-slider .noUi-active {
	box-shadow: none;
}

#recommendations-slider .noUi-marker,
#court-exits-slider .noUi-marker {
	display: none;
}

#recommendations-slider .noUi-connects,
#court-exits-slider .noUi-connects {
	background: #D5D5D5;
}

/* END Calculator */


/* Слайдер */

.agent-slider__slider {
	position: relative;
	overflow: hidden;
	padding-bottom: 50px;
}


.agent-slider__slider .swiper-wrapper {
	display: flex;
	align-items: center;
}

.agent-slider__slider .swiper-slide {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: width 0.5s ease, transform 0.5s ease;
	border: 1px solid rgb(211, 224, 179);
	border-radius: 32px;
	background: rgb(255, 255, 255);
	padding: 30px 36px;
	overflow: hidden;
}


.agent-slider__slider .swiper-slide.swiper-slide-active {
	background: rgb(211, 224, 180);
}

.agent-slider__slider .swiper-slide.swiper-slide-active .card__description {
	margin-bottom: 0;
}

.agent-slider__slider .swiper-slide.swiper-slide-next {
	width: 400px !important;
	transition: all 0.3s ease;
}

.agent-slider__slider .swiper-slide:not(.swiper-slide-active) .card {
	width: 360px !important;
	background-color: #fff;
	opacity: 0.8;
	transform: scale(1);
	transition: all 0.3s ease;
}

.swiper-pagination-bullet {
	width: 20px !important;
	height: 20px !important;
	border: 5px solid #f6f7f9;
}

.swiper-pagination-bullet-active {
	background: #8DC63F !important;
	border: 5px solid #d3e0b4;
	width: 20px !important;
	height: 20px !important;
}


.card__header {
	display: flex;
	align-items: center;
	gap: 35px;
}

.card__img {
	width: 90px;
	height: 90px;
	min-width: 90px;
	background: #fff;
	border-radius: 50%;
	border: 1px solid rgb(165, 165, 165);
	padding: 3px;
}

.card__img img {
	width: 82px;
	height: 82px;
	object-fit: cover;
	border-radius: 50%;
	background: linear-gradient(45.00deg, rgb(211, 224, 179) 14.645%, rgb(141, 198, 63) 85.355%);
	padding: 3px;
}


.card__fio span {
	font-size: 20px;
	font-weight: bold;
	display: block;
	margin-bottom: 8px;
}

.card__fio p {
	font-size: 15px;
}

.card__description {
	font-size: 15px;
	margin-top: 32px;
	margin-bottom: 53px;
	line-height: 1.45;
	max-height: 135px;
	overflow: hidden;
}


.card__income p {
	text-transform: uppercase;
	font-size: 15px;
	margin-bottom: 10px;
}

.card__income span {
	font-weight: bold;
	font-size: 40px;
}

.card__footer {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-top: 10px;
}

.card__video {
	width: 100px;
	height: 120px;
	position: relative;
	display: none;
	cursor: pointer;
}

/* .card__video a {
	display: block;
	height: 100%;
	width: 100%;
} */

.card__video img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.card__play {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.agent-slider__slider .swiper-slide-active .card__video {
	display: block;
}

.agent-slider__slider .swiper-slide-active {
	width: 62% !important;
}

.agent-slider .btn {
	max-width: 330px;
	margin: 0 auto;
	margin-top: 30px;
	padding: 14px;
	border-radius: 12px;
}

.agent-slider .swiper-button-next,
.agent-slider .swiper-button-prev {
	height: 100%;
	top: 0;
	width: 35%;
}

.agent-slider .swiper-button-next::after,
.agent-slider .swiper-button-prev::after {
	display: none;
}


/* Слайдер */



/* Почему работать с нами выгодно? */
.agent-profitable__items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	/* gap: 20px; */
	/* border-radius: 10px; */
}

.agent-profitable__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	transition: transform 0.3s ease;
}

.agent-profitable__item:hover {
	transform: translateY(-5px) !important;
}

.agent-profitable__item span {
	font-size: 60px;
	font-weight: 300;
	color: #8DC63F;
	margin-bottom: 10px;
	display: block;
}

.agent-profitable__item p {
	font-size: 15px;
	line-height: 1.5;
	margin: 0;
	color: #373738;
}

/* END Почему работать с нами выгодно? */

.agent-structure__image svg {
	width: 100%;
	height: auto;
}

/* Вознаграждение по проекту ФЦБ АГЕНТ */


.agent-structure__image {
	margin-top: 58px;
}

.agent-payments {
	display: grid;
	grid-template-columns: 1.9fr 1fr;
	align-items: center;
	gap: 46px;
	box-sizing: border-box;
	border: 1px solid rgba(141, 198, 63, .4);
	border-radius: 32px;
	margin-top: 64px;
}

.agent-payments__green {
	background: rgba(141, 198, 63, .4);
	padding: 45px 39px;
	border-radius: 32px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.agent-payments__green--item {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.agent-payments__green--item span {
	display: block;
	font-size: 18px;
	margin-left: 15px;
}

.agent-payments__green--item .agent-payments__big-num {
	font-size: 24px;
	font-weight: 700;
	margin-left: 0;
}

.agent-payments__description p {
	margin-bottom: 9px;
	line-height: 1.3;
}

.agent-payments__description p:last-child {
	margin-bottom: 0;
}

.agent-structure__btn {
	margin-top: 64px;
}

.agent-structure__btn .btn {
	max-width: 330px;
	margin: 0 auto;
	font-size: 17px;
	border-radius: 12px;
	padding: 15px 28px;
	font-family: 'Gotham Pro', sans-serif;
	font-weight: 400;
}

/* END Вознаграждение по проекту ФЦБ АГЕНТ */

/* Преимущества  */
.agent-advantages {
	padding-top: 64px;
}

.agent-advantages__items {
	display: grid !important;
	gap: 22px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.agent-advantages__item {
	position: relative;
	border-radius: 20px;
	padding: 33px 43px;
	z-index: 1;
	min-height: 230px;
}

.agent-advantages__item span {
	font-size: 60px;
	font-weight: 500;
	color: #fff;
	display: block;
	margin-bottom: 23px;
}

.agent-advantages__item p {
	font-size: 21px;
	color: #000000;
	font-family: 'MuseoSansCyrl', sans-serif;
	max-width: 230px;
}

.agent-advantages__item::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(214.10deg, rgba(12, 138, 203, 0.6) 1.571%, rgba(33, 160, 56, 0.6) 49.046%, rgba(242, 233, 19, 0.8) 103.89%);
	opacity: 0.8;
	top: 0;
	left: 0;
	border-radius: 20px;
	z-index: -1;
}

.agent-advantages__item::after {
	content: '';
	position: absolute;
	width: 84px;
	height: 84px;
	background-color: #fff;
	border-radius: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	right: 0;
	bottom: 0;
}

.agent-advantages__item:nth-child(1)::after {
	background-image: url(../images/agent/advantages/1.svg);
}

.agent-advantages__item:nth-child(2)::after {
	background-image: url(../images/agent/advantages/2.svg);
}

.agent-advantages__item:nth-child(3)::after {
	background-image: url(../images/agent/advantages/3.svg);
}

.agent-advantages__item:nth-child(4)::after {
	background-image: url(../images/agent/advantages/4.svg);
}

.agent-advantages__item:nth-child(5)::after {
	background-image: url(../images/agent/advantages/5.svg);
}

.agent-advantages__item:nth-child(6)::after {
	background-image: url(../images/agent/advantages/6.svg);
}

/* END Преимущества  */

/* 3 простых шага! */
.agent-steps__items {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.agent-steps__item {
	border: 1px solid rgb(141, 198, 63);
	border-radius: 20px;
	background: rgb(255, 255, 255);
	padding: 30px 43px;
	position: relative;
}

.agent-steps__item span {
	font-size: 60px;
	color: #8DC63F;
	line-height: 1;
	font-weight: 500;
	display: block;
	margin-bottom: 8px;
}

.agent-steps__item p {
	font-size: 21px;
	font-family: 'MuseoSansCyrl', sans-serif;
	font-weight: 300;
	max-width: 210px;
	line-height: 1.2;
}

.agent-steps__item::after {
	content: '';
	position: absolute;
	width: 84px;
	height: 84px;
	background-color: #F6F7F8;
	border-radius: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	right: 0;
	bottom: 0;
}

.agent-steps__item:nth-child(1)::after {
	background-image: url(../images/agent/steps/1.svg);
}

.agent-steps__item:nth-child(2)::after {
	background-image: url(../images/agent/steps/2.svg);
}

.agent-steps__item:nth-child(3)::after {
	background-image: url(../images/agent/steps/3.svg);
}


/* END 3 простых шага! */


/* FAQ */

.faq {
	border-radius: 40px;
	background: rgb(255, 255, 255);
}

.faq__item {
	margin: 0px 0px 32px 0px;
	border-radius: 20px;
	padding: 27px 45px;
	background: rgb(208, 232, 176);
	transition: all 0.3s ease 0s;
	/* border: 1px solid rgb(206, 206, 206); */
}

.faq__item.open {
	border: 1px solid rgb(220, 220, 220);
	border-radius: 20px;
	background: rgb(255, 255, 255);
}

.faq__title {
	position: relative;
	cursor: pointer;
	padding-right: 25px;
}

.faq__title h3 {
	font-size: 28px;
	font-weight: 500;
	color: #222222;
	margin-bottom: 0;
	margin-top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: 'MuseoSansCyrl', sans-serif;
}

.faq__title::before,
.faq__title::after {
	content: "";
	width: 27px;
	height: 4px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.faq__title::before {
	right: 0;
}

.faq__title::after {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	right: 0;
}

.faq__title img {
	padding-right: 30px;
}

.faq__title.active::after {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	background-color: #D0E8B0;
}

.faq__text {
	display: none;
	padding: 10px 0px 0px 0px;
}

.faq__text p,
.faq__text li {
	font-size: 21px;
	font-family: 'MuseoSansCyrl', sans-serif;
	font-weight: 300;
}

.faq__text p a,
.faq__text li a {
	color: #AC2337;
}

/* END FAQ */


/* ФЦБ — это */

.agent-the {
	padding-top: 48px;
}

.agent-the__items {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.agent-the__item {
	border-radius: 20px;
	padding: 26px 27px;
	position: relative;
	z-index: 1;
}

.agent-the__item::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(214.10deg, rgba(12, 138, 203, 0.6) 2.007%, rgba(33, 160, 56, 0.6) 46.267%, rgba(242, 233, 19, 0.8) 97.397%);
	opacity: 0.8;
	top: 0;
	left: 0;
	border-radius: 20px;
	z-index: -1;
}

.agent-the__item span {
	font-size: 40px;
	color: #fff;
	line-height: 1;
	font-weight: 500;
	display: block;
	margin-bottom: 8px;
}

.agent-the__item p {
	font-size: 21px;
	font-family: 'MuseoSansCyrl', sans-serif;
	font-weight: 300;
	max-width: 240px;
	line-height: 1.2;
}

.agent-the__item::after {
	content: '';
	position: absolute;
	width: 64px;
	height: 64px;
	background-color: #F6F7F8;
	border-radius: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	right: 0;
	bottom: 0;
}

.agent-the__item:nth-child(1)::after {
	background-image: url(../images/agent/the/1.svg);
}

.agent-the__item:nth-child(2)::after {
	background-image: url(../images/agent/the/2.svg);
}

.agent-the__item:nth-child(3)::after {
	background-image: url(../images/agent/the/3.svg);
}

/* END ФЦБ — это */

/* Получайте доход за регистрацию знакомых! */
.agent-percentage {
	border-radius: 40px;
	background: rgb(255, 255, 255);
	padding-bottom: 0;
}

.agent-percentage .container {
	background-image: url(../images/agent/phone_10.jpg);
	background-repeat: no-repeat;
	background-position: right top -38%;

}

.agent-percentage__container {
	max-width: 535px;
	padding-top: 4px;
	padding-bottom: 65px;
}

.agent-percentage__description {
	font-size: 21px;
	font-family: 'MuseoSansCyrl', sans-serif;
	line-height: 25px;
	font-weight: 300;
}

.agent-percentage__description b {
	font-weight: 500;
}

.agent-percentage__item {
	margin-top: 27px;
	border-radius: 20px;
	background: rgb(208, 232, 176);
	padding: 25px;
	max-width: 350px;
	position: relative;
}

.agent-percentage__item span {
	font-size: 40px;
	font-weight: 500;
	color: #8DC63F;
	display: block;
	margin-bottom: 5px;
}

.agent-percentage__item p {
	font-size: 26px;
	font-family: 'MuseoSansCyrl', sans-serif;
	font-weight: 300;
	color: #000000;
}

.agent-percentage__item::after {
	content: '';
	position: absolute;
	width: 64px;
	height: 64px;
	background-color: #F6F7F8;
	border-radius: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	right: 0;
	bottom: 0;
}

.agent-percentage__item::after {
	background-image: url(../images/agent/guarantee.svg);
}

/* END Получайте доход за регистрацию знакомых! */

/* Остались вопросы? */
.agent-hotline {
	padding: 77px 0;
	position: relative;
}

/* .agent-hotline::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	border-radius: 64px 64px 0px 0px;
	background: rgb(246, 247, 248);
} */

.agent-hotline__link .btn {
	max-width: 530px;
	font-weight: 500;
	margin: 0 auto;
	font-size: 40px;
	padding: 15px 28px;
	border-radius: 8px;
}

/* END Остались вопросы? */


/* Видео */

.agent-video__wrapper {
	position: relative;
}

.agent-video video {
	border-radius: 40px;
	width: 100%;
}

/* .agent-video__pause {
	filter: brightness(0.7);
} */

.agent-video__poster {
	width: 100%;
	border-radius: 40px;
	position: relative;
	filter: brightness(0.7);
}



.agent-video__play {
	position: absolute;
	top: -1px;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}

.agent-video__play.hidden {
	opacity: 0;
}

.agent-video__play svg path {
	transition: all 0.3s ease;
	fill: #fff;
}


.agent-video__play:hover svg path {
	fill: #8DC63F;
}

.agent-video__volume {
	position: absolute;
	bottom: 190px;
	right: -100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	z-index: 999;
}

.volume-slider {
	-webkit-appearance: none;
	writing-mode: bt-lr;
	/* Направление сверху вниз */
	transform: rotate(270deg);
	/* Поворачиваем ползунок */
	width: 300px;
	/* Высота ползунка (визуально) */
	height: 7px;
	/* Ширина полосы */
	background: #ffffff;
	/* Цвет полосы */
	border-radius: 5px;
	outline: none;
	position: relative;
}

.volume-slider.hidden {
	opacity: 0;
	transition: all 0.3s ease;
}

.agent-video__wrapper:hover .volume-slider.hidden {
	opacity: 1;
}



.volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 17px;
	/* Размер круга */
	height: 17px;
	background: #fff;
	/* Цвет круга */
	border-radius: 50%;
	/* Круглая форма */
	cursor: pointer;
	/* border: 1px solid #8dc63f; */
	border: 1px solid #fff;
	transform: translateY(-7px);
	/* Обводка бегунка */
}

.volume-slider::-moz-range-thumb {
	width: 17px;
	height: 17px;
	background: #ffffff;
	border-radius: 50%;
	cursor: pointer;
	border: 1px solid #f6f7f9;
}

.volume-slider::-ms-thumb {
	width: 17px;
	height: 17px;
	background: #ffffff;
	border-radius: 50%;
	cursor: pointer;
	/* border: 1px solid #8dc63f; */
	border: 1px solid #fff;
	transform: translateY(-7px);
}

.volume-slider::-webkit-slider-runnable-track {
	background: #f6f7f9;
	/* Цвет полосы громкости */
	height: 4px;
	border-radius: 2px;
}

.volume-slider::-moz-range-track {
	background: #f6f7f9;
	height: 4px;
	border-radius: 2px;
}

.volume-slider::-ms-track {
	background: transparent;
	border-color: transparent;
	color: transparent;
}

.agent-video__volume-icon {
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom -2px;
	position: absolute;
	bottom: -165px;
}

/* Иконки для разных состояний громкости */
.agent-video__volume-icon.muted {
	background-image: url('../images/agent/volume/0.svg');
	/* Звук выключен */
}

.agent-video__volume-icon.low {
	background-image: url('../images/agent/volume/1.svg');
	/* Тихий звук */
}

.agent-video__volume-icon.medium {
	background-image: url('../images/agent/volume/2.svg');
	/* Средний звук */
}

.agent-video__volume-icon.high {
	background-image: url('../images/agent/volume/3.svg');
	/* Максимальный звук */
}



/* END Видео */



/* FOOTER */
.footer {
	background-color: #383838;
	padding: 50px 0;
	color: #595959;
	font-family: 'MuseoSansCyrl', sans-serif;
	font-weight: 300;
}

.footer .container {
	max-width: 1750px;
}

.footer__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 80px;
}

.footer__agent .footer__row {
	grid-template-columns: repeat(3, 1fr);
}

}

.footer__requisites {
	margin-top: 27px;
}


.footer__concordance a {
	color: #595959;
	text-decoration: underline;
}

.footer__contacts span {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer__contacts span a {
	color: #fff;
	text-decoration: underline;
}

.footer__contacts--social {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-top: 25px;
}

.footer__phone {
	text-align: right;
}

.footer__phone span {
	display: block;
	color: #95C12B;
}

.footer__phone a {
	font-size: var(--fz-24);
	color: #fff;
	display: block;
	padding: 12px 0;
	text-decoration: underline;
}


/* END FOOTER */



/* Попап */

.popup input[type="text"],
.popup input[type="tel"] {
	padding: 18px 20px;
	border-radius: 8px;
	width: 100%;
	margin-bottom: 28px;
	box-shadow: none;
	border: none;
}

.popup label,
.popup label a,
.popup small {
	color: #000000;
}

.popup small {
	font-size: 13px;
}


.popup__form .btn {
	border-radius: 8px;
	background-color: #ffffff;
	border: none;
	color: #95C12B;
	width: 238px;
	padding: 17px;
	font-size: 15px;
	cursor: pointer;
	margin: 0 auto;
	margin-top: 28px;
	font-weight: 500;
	font-family: 'Gotham Pro', sans-serif;
	box-shadow: none;
}

.popup__form .btn:disabled {
	opacity: .6;
	cursor: no-drop;
}

.popup__form .policy {
	margin-top: 0;
}


.popup {
	position: fixed;
	z-index: 99999;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	/* затемнение */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	backdrop-filter: blur(5px);
	/* эффект размытия */
}

.popup.open {
	opacity: 1;
	visibility: visible;
}

.popup__body {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 30px 10px;
}


.popup__content {
	max-width: 690px;
	/* min-height: 600px; */
	padding: 30px 70px;
	background: #cbe2ac;
	border-radius: 32px;
	position: relative;
}

.popup__title {
	font-size: 36px;
	font-weight: 500;
	display: block;
	margin-bottom: 30px;
}

.popup__close {
	position: absolute;
	top: 13px;
	right: 23px;
	width: 23px;
	height: 23px;
	cursor: pointer;
	z-index: 99;
}

@media (max-width: 576px) {
	.popup__close {
		top: -29px;
		right: 6px;
	}
}


@media (max-width: 576px) {
	.popup__content {
		padding: 25px;
		min-height: auto;
	}
}

@media (max-width: 576px) {
	.popup__title {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.popup input[type="text"],
	.popup input[type="tel"] {
		margin-bottom: 20px;
	}

	.popup label {
		flex-wrap: wrap;
		gap: 10px;
	}

	.popup label input[type="checkbox"]+span {
		margin-right: 0;
	}


}

/* END Попап */



/* Видеоотзыв */
#next-video-button,
#prev-video-button {
	top: 0;
	bottom: 0;
	cursor: pointer;
	z-index: 99;
	position: absolute;
	width: 4%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
	color: rgba(129, 129, 129, .2);
}

#next-video-button:hover,
#prev-video-button:hover {
	background-color: rgba(0, 0, 0, .1);
}

#next-video-button {
	right: 0;
}

#prev-video-button {
	left: 0;
}


#popup-video .popup__content {
	max-width: inherit;
	width: inherit;
	background: transparent;
	box-shadow: none;
}

#popup-video .popup__body {
	backdrop-filter: blur(5px);
}

#popup-video .popup__close {
	top: 1%;
	right: 5%;
	background-color: transparent;
}

/* .mute-button {
	position: absolute;
	right: -52px;
	cursor: pointer;
}

.mute-button:hover svg path,
.popup__close:hover svg path {
	fill-opacity: 1;
} */



.popup__close-body {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.progress-container {
	width: 95%;
	height: 4px;
	background-color: rgba(255, 255, 255, 20%);
	border-radius: 2px;
	position: relative;
	top: 20px;
	left: 12px;
}

.progress-bar {
	height: 100%;
	background-color: rgba(255, 255, 255, 60%);
	width: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.video-container {
	position: relative;
	height: 92vh;
}

/* END Видеоотзыв */


.invite-client {
	position: fixed;
	top: 50%;
	right: -10px;
	background: #8DC63F;
	border-radius: 12px 0 0 12px;
	width: 212px;
	transition: all 0.3s ease;
		z-index: 999;
}

.invite-client:hover {
	right: 0;
}

.invite-client a {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	padding: 9px;
	display: block;
	text-align: center;
}



/* Media запросы */

@media (max-width: 1024px) {

	.header-agent .header__logo {
		flex-basis: auto;
	}

	.agent-top-faq__grid {
		grid-template-columns: 1fr;
	}

	.header__phone {
		display: block;
	}

	.header__phone a {
		font-size: 22px;
	}
}

@media (max-width: 992px) {

	.header__container {
		/* flex-wrap: wrap; */
		padding: 20px 0;
	}

	.header-agent__left {
		width: 100%;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.header-agent .header__logo--link svg {
		max-width: 200px;
		height: auto;
		width: 200px;
	}

	.header-agent .header__contacts {
		width: 100%;
		justify-content: end;
		align-items: end;
	}


	.header__container {
		gap: 15px;
		align-items: flex-start;
	}

	.header-agent__left {
		flex-wrap: wrap;
		flex-direction: column;
	}

	.header__hotline-title,
	.header__callback,
	.header__social {
		display: none;
	}

	.header__phone {
		background: rgb(141, 198, 63);
		color: #fff;
		border-radius: 12px;
		padding: 0 5px;
	}

	.header__phone a::before {
		content: "Позвонить";
		display: inline-block;
		font-size: 14px;
			text-transform: lowercase;
	}

	.header__phone a {
		color: inherit;
		font-size: 0;
				line-height: 1;
		padding: 9px 10px;
	}

	.header__phone a:hover {
		color: #fff;
	}


	.header__divider {
		display: none;
	}


	.agent-top-banner__content {
		padding: 20px 0;
	}

	.agent-top-banner__wrapper {
		/* background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/agent/agent-top-banner.jpg); */
		background: transparent;
	}

	.agent-top-banner__title {
		font-size: 30px;
	}

	.agent__title {
		font-size: 30px;
	}

	.calculator__content {
		flex-direction: column;
	}

	.calculator__sliders,
	.calculator__form {
		width: 100%;
		max-width: 100%;
	}

	.agent-slider__slider .swiper-slide-active {
		width: 100% !important;
	}

	.agent-payments {
		grid-template-columns: 1fr;
	}

	.agent-payments__green {
		padding: 35px 20px;
	}

	.agent-payments__description {
		padding: 0 20px 20px 20px;
		text-align: center;
	}

	.faq__title h3 {
		font-size: 20px;
	}

	.faq__text p,
	.faq__text li {
		font-size: 16px;
	}

	.agent-percentage .container {
		background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../images/agent/phone.jpg);
	}

	.agent-percentage__container {
		max-width: 100%;
	}

	.agent-hotline__link .btn {
		max-width: 370px;
		font-size: 30px;
	}

	.agent-hotline__link .btn {
		font-size: 26px;
	}

	.footer__row {
		grid-template-columns: repeat(2, 1fr);
	}

	.swiper.agent-profitable__slider,
	.swiper.agent-advantages__slider {
		padding-bottom: 45px;
	}

	.agent-slider .swiper-button-next,
	.agent-slider .swiper-button-prev {
		display: none;
	}

	.agent-advantages__items {
		display: flex !important;
		gap: 0;
	}


}


@media (max-width: 768px) {
	.agent-top-faq__grid {
		grid-template-columns: 1fr;
	}
}


@media (max-width: 576px) {


	.header-agent span {
		font-size: 24px;
		text-transform: uppercase;
	}

	.header-agent .header__contacts {
		flex-direction: column;
		text-align: center;
	}

	.header__hotline {
		order: 1;
	}

	.header__social {
		order: 2;
	}


	.agent-top-banner__title {
		font-size: 25px;
	}

	.agent-top-banner__content p {
		font-size: 18px;
	}



	.agent-top-faq {
		padding-top: 0;
		padding-bottom: 20;
	}

	.agent-top-faq__title {
		font-size: 20px;
	}

	.agent-top-faq__item {
		padding: 24px;
	}

	.agent-top-faq__grid {
		gap: 15px;
	}

	.agent-tg img {
		border-radius: 20px;
	}

	.agent-tg .swiper-slide {
		padding: 0;
	}

	.agent-tg__media--desc {
		display: none !important;
	}

	.agent-tg__media--mobile {
		display: block !important;
		border-radius: 24px;
	}

	.agent {
		padding: 25px 0;
	}

	.agent__title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.calculator__form label {
		flex-wrap: wrap;
		gap: 10px;
	}

	.calculator__result span {
		font-size: 24px;
	}

	.agent-slider__slider .swiper-slide {
		border-radius: 20px;
	}

	.agent-slider__slider .swiper-slide.swiper-slide-active .card__description {
		margin-bottom: 0;
		max-height: 100%;
	}

	.swiper-slide {
		padding: 20px;
	}

	.agent-slider__slider .swiper-slide-active {
		width: 100% !important;
	}

	.card__income span {
		font-size: 24px;
	}

	.agent-video__volume {
		display: none;
	}

	.agent-video video {
		border-radius: 20px;
	}

	.agent-video__play svg {
		width: 40px;
		height: auto;
	}

	.agent-steps__items {
		gap: 15px;
	}

	.agent-advantages__item {
		min-height: 200px;
		padding: 25px 30px;
	}

	.agent-advantages__item span {
		font-size: 45px;
		margin-bottom: 15px;
	}

	.agent-steps__item {
		padding: 25px 30px;
	}

	.agent-steps__item span {
		font-size: 45px;
	}

	.card__video {
		display: block;
	}

	.agent__subtitle {
		font-size: 16px;
	}

	.agent-structure {
		border-radius: 20px;
		padding: 30px 0;
	}

	.agent-payments {
		margin-top: 35px;
		gap: 35px;
		border-radius: 20px;
	}

	.agent-payments__green {
		/* grid-template-columns: repeat(1, 1fr); */
		gap: 8px;
		padding: 25px 5px;
		border-radius: 20px;
	}

	.agent-payments__green--item .agent-payments__big-num,
	.agent-payments__green--item span {
		font-size: 15px;
	}

	.agent-payments__green--item {
		align-items: center;
		gap: 10px;
	}

	.faq__item {
		padding: 27px 25px;
		margin: 0px 0px 20px 0px;
	}

	.faq__title h3 {
		font-size: 18px;
	}

	.agent-the__item {
		padding: 25px 30px;
	}

	.agent-percentage {
		border-radius: 40px 40px 0 0;
		padding-bottom: 0;
	}

	.agent-percentage .container {
		background-image: url(../images/agent/phone.jpg);
		background-position: right top 5rem;
		background-size: cover;
		min-height: 580px;
		position: relative;
	}

	.agent-percentage__container {
		position: absolute;
		left: 0px;
		bottom: -9%;
		width: 100%;
		right: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.agent-percentage__item {
		min-width: 330px;
	}

	.agent-percentage__description {
		display: none;
	}

	.footer__row {
		grid-template-columns: 1fr;
		gap: 20px;
		text-align: center;
	}

	.footer__logo {
		margin-bottom: 0;
	}

	.footer__requisites {
		margin-top: 20px;
	}

	.footer__contacts span {
		justify-content: center;
	}

	.footer__phone {
		text-align: center;
	}


	.invite-client {
		bottom: 0;
		top: auto;
		left: 0;
		right: 0;
		width: 100%;
		border-radius: 8px;
		padding: 12px;
		background: #FFFFFF;
		-webkit-box-shadow: 0px -5px 8px 0px rgba(34, 60, 80, 0.2);
		-moz-box-shadow: 0px -5px 8px 0px rgba(34, 60, 80, 0.2);
		box-shadow: 0px -5px 8px 0px rgba(34, 60, 80, 0.2);
	}

	.invite-client a {
		background: #8DC63F;
		border-radius: 6px;
		padding: 14px;
		font-size: 16px;
	}

}


/* END Media запросы */