@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
	font-family: 'Noah Head';
	font-weight: 500;
	src: url('fonts/NoahHead-Medium.woff') format('woff');
	/* font-display: swap; */
}

/* @font-face {
	font-family: 'Noah Head';
	font-weight: 700;
	src: url('fonts/NoahHead-Bold.woff') format('woff');
	font-display: swap;
} */


@font-face {
	font-family: 'Noah Head';
	font-weight: 800;
	src: url('fonts/NoahHead-ExtraBold.woff') format('woff');
	/* font-display: swap; */
}


:root {
	--section-padding: 9rem;
	--c-f-padding: 1.87rem;

	--font4: "Noto Serif", sans-serif;

	--red: #fb3640;
	--red-light: #fc5059;
	--white: #fff;
	--gray-95: #f0f0f4;
	--dark-blue-text: #30316a;
	--blue: #171c8f;
	--hue-blue: #343adb;
	--dark-blue-bg: #020449;
	--black-50: rgba(2, 4, 73, 0.05);
	--black-250: rgba(2, 4, 73, 0.25);
}


html {
	box-sizing: border-box;
	font-size: 1.111vw;

	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
	/* font-family: 'Inter', sans-serif; */
	font-family: 'Noah Head';
	margin: 0;
}

body {
	max-width: 100rem;
	font-weight: 400;
	color: #000;
	background: var(--white);
	overscroll-behavior: none;

	/* cursor: none;*/
}

a {
	text-decoration: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*a:hover{
  cursor: none;
}*/
.body_wrap {
	position: relative;
	overflow: hidden;
}

/*////////////////////////////////*/


.container {
	max-width: 100rem;
	padding-left: var(--section-padding);
	padding-right: var(--section-padding);
	margin-left: auto;
	margin-right: auto;
}

.container-fluid {
	max-width: 100rem;
	padding-left: var(--c-f-padding);
	padding-right: var(--c-f-padding);
	margin-left: auto;
	margin-right: auto;
}

/* width */
::-webkit-scrollbar {
	width: 0.513rem;
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 0.313rem grey;
	border-radius: 0.313rem;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #383DC2 0%, #4131A8 100%);

	border-radius: 0.625rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #FFFFFF;
}


header {
	position: fixed;
	width: 100%;
	padding: 0.938rem 0;
	transition: 0.4s;
	background: var(--white);
	z-index: 99;
}

header.scrolled {
	padding: 0.625rem 0;
	border-bottom: 0.07rem solid var(--gray-95);
}

header.scrolled .logo img {
	width: 8.625rem;
}



.header_wrap {
	align-items: center;
	justify-content: space-between;
	opacity: 0;
}


.d-flex {
	display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

.logo {
	text-align: center;
}

.logo img {
	width: 10.75rem;
	transition: 0.4s;
}

.nav {
	display: flex;
	align-items: center;
	column-gap: 3.13rem;
}

.nav ul {
	padding: 0;
	margin: 0;

	display: flex;
	align-items: center;
	gap: 3rem;
}

.nav li {
	list-style: none;
}

.nav a:after {
	content: '';
	display: block;
	width: 0;
	height: 0.055rem;
	background: var(--red);
	transition: width .3s;
}

.nav a:hover {
	color: var(--red) !important;
}

.nav a:hover::after {
	width: 100%;
}

.nav a {
	display: inline-block;
	font-weight: 500;
	font-size: 1rem;
	line-height: 140%;
	color: var(--dark-blue-text) !important;
}

/*////////////////////////////*/

/*////////////////////////////*/


.languages li {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4.75rem;
	padding: 0.625rem 0rem;
	color: #000;
	background: #fff;
	/* background: linear-gradient(135deg, #383DC2 0%, #4131A8 100%); */
	cursor: pointer;
	z-index: 2;
	opacity: 0;
	transform: translateY(-2rem);
	transition: all 0.4s ease-out;
}

.languages li.current {
	background: #fff;
	color: #000;
	position: relative;
	border-radius: 1.25rem;
	opacity: 1;
	transform: translateY(0);
	z-index: 3;
}

.languages:hover li {
	opacity: 1;
	transform: translateY(0rem);
	background: var(--gray-95);
}

.languages:hover li:last-child {
	opacity: 1;
	transform: translateY(2rem);
	border-radius: 0 0 1.25rem 1.25rem;
}

.languages:hover li.current {
	border-radius: 1.25rem 1.25rem 0 0;
}

.languages:hover img {
	transform: rotate(180deg);
}

.languages li.current a {
	color: #000;
}

.languages a {
	font-weight: 500;
	font-size: 1rem;
	line-height: 140%;
	color: var(--dark-blue-text);

	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 0.625rem;
}

.languages a:hover {
	color: var(--red);
}

.languages img {
	width: 0.625rem;
	transition: all 0.4s ease-out;
}

/*////////////////////////////////*/


/*////////////////////////////////*/
.mob-btn {
	position: relative;
	background: none;
	border: none;
	display: none;
}

.mob-btn span {
	display: block;
	width: 2rem;
	height: 0.225rem;
	background: #30316A;
	margin-bottom: 0.425rem;
	border-radius: 0.2rem;
}

.mob-btn span:last-child {
	margin-bottom: 0;
}

.mob-nav ul {
	flex-direction: column;
}

.mob-nav li {
	overflow: hidden;
}

.mob_quote_wrap,
.logo-menu,
.mob_overlay_wrap {
	display: none;
}


/*//////////////////////////////////////////////*/
.banner {
	position: relative;
	padding-top: 5.63rem;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, #f0f0f4 100%);
}

.banner-row {
	padding: 6.25rem 0 19.125rem;
}

.banner_title {
	max-width: 34rem;

	font-size: 2.75rem;
	line-height: 110%;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--blue);
	margin-bottom: 2.5rem;

	position: relative;
	opacity: 0;
	transform: translateY(2.5rem);
}

.banner_title b {
	font-weight: 800;
}

.banner_title em {
	font-weight: 800;
	font-style: italic;
	color: var(--red);
}

#typewriter {
	white-space: nowrap;
	overflow: hidden;
	padding-right: 0.4rem;
	border-right: 0.1rem solid var(--blue);
}

.banner_text {
	max-width: 26.25rem;
	font-weight: 500;
	font-size: 1.12rem;
	line-height: 140%;
	color: var(--dark-blue-text);
	margin-bottom: 3rem;

	opacity: 0;
	transform: translateY(2.5rem);
}

.banner_text b {
	font-weight: 800;
}

.btn {
	position: relative;
	display: inline-block;
	border-radius: 2.5rem;
	padding: 1.62rem 2.75rem;
	box-shadow: 0 12px 32px rgba(251, 54, 64, 0.75);
	background: var(--red);

	font-weight: 800;
	font-size: 1.25rem;
	line-height: 140%;
	color: var(--white) !important;

	transition: all 0.5s ease-out;

	animation-name: attentionAnimation;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in;
}

.btn:hover {
	transform: scale(0.95);
	box-shadow: 0 8px 20px rgba(251, 54, 64, 0.5);
}

.banner .btn {
	opacity: 0;
	transform: translateY(2.5rem);
}



@keyframes attentionAnimation {
	0% {
		left: 0
	}

	1% {
		left: -0.188rem
	}

	2% {
		left: 0.313rem
	}

	3% {
		left: -0.5rem
	}

	4% {
		left: 0.5rem
	}

	5% {
		left: -0.313rem
	}

	6% {
		left: 0.188rem
	}

	7% {
		left: 0
	}
}


.banner-img {
	position: absolute;
	bottom: 0;
	right: 15.5rem;
	width: 34.25rem;
	z-index: 4;

	/* opacity: 0; */
	transform: translateX(2.5rem);
}

.overlay_wrap span {
	transform-origin: right;
	transform: scaleX(0);
}

.overlay_1 {
	width: 43.25rem;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: var(--hue-blue);
	z-index: 1;
}

.overlay_2 {
	width: 31rem;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: var(--blue);
	z-index: 2;
}

.overlay_3 {
	width: 1.5rem;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: var(--dark-blue-bg);
	z-index: 3;
}

.quote_wrap {
	position: absolute;
	max-width: 19.25rem;
	right: var(--section-padding);
	top: 7.625rem;
	z-index: 4;

	opacity: 0;
	transform: translateY(2.5rem);
}

.quote_wrap img {
	width: 4.188rem;
	margin-bottom: 1rem;

}

.quote_wrap p {
	font-family: var(--font4);
	font-style: italic;
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 145%;
	letter-spacing: 0.01em;
	color: var(--white);
	padding-left: 2.5rem;
}

/*//////////////////////////////////////////////*/

.marquee-text {
	font-weight: 700;
	font-size: 12.5rem;
	line-height: 110%;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: var(--black-50);

	/* identical to box height, or 65px */
	/* Gray/40 */
	/*-webkit-text-stroke: 0.063rem #3D4166;*/

	-moz-animation: marquee 60s linear infinite;
	-webkit-animation: marquee 60s linear infinite;
	animation: marquee 60s linear infinite;

}



.marquee {
	--space: 0rem;
	--duration: 60s;
	--gap: 4rem;

	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;

	overflow: hidden;
	user-select: none;
	gap: var(--gap);

}

.marquee_group {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: var(--gap);
	width: max-content;
	animation: scroll var(--duration) linear infinite;
}


@keyframes scroll {
	0% {
		transform: translateX(calc(0 - var(--gap)));
	}

	100% {
		transform: translateX(-100%);
	}
}

/*////////////////////////////////////////////////////////*/


/*//////////////////////about//////////////////////////////////*/

.about {
	padding: 7.5rem 0 13.12rem;
	position: relative;
	overflow: hidden;
}

.about_row {
	display: flex;
	gap: 3.75rem;
}

.about_img_wrap {
	position: relative;
}

.about_img_wrap::after {
	content: " ";
	position: absolute;
	top: 9rem;
	left: -6.25rem;
	width: 33.5rem;
	height: 27.25rem;
	background: var(--blue);
	z-index: -1;
}

.about_quote {
	width: 4.188rem;
	position: absolute;
	top: -1.5rem;
	left: 2rem;
	z-index: 1;
}

.about_gerchik {
	width: 40.25rem;
}

.title_about {
	padding-top: 4rem;
	font-weight: 500;
	font-size: 2rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--blue);
}

.title_about b {
	font-weight: 800;
}

.title_about em {
	font-weight: 800;
	font-style: italic;
	color: var(--red);
}

.about_text_wrap {
	position: absolute;
	right: 0;
	bottom: 6.2rem;
	padding: 7.5rem 9rem 2.5rem 7.5rem;
	max-width: 53.75rem;
	box-sizing: border-box;
	background: var(--white);
}

.about_text_wrap img {
	width: 8.813rem;
	position: absolute;
	top: 1.5rem;
	left: 2.75rem;
}

.about_text_wrap p {
	position: relative;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 140%;
	color: var(--dark-blue-text);
}

.about .marquee-text {
	font-weight: 800;
	font-size: 3rem;
	line-height: 120%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--gray-95);
}


/*////////////////////Slider////////////////////////////////////*/
.slider {
	padding: 12rem 0 8.75rem var(--section-padding);
}

.mob_slider_content {
	display: none;
}

.slider_top_text {
	position: relative;
	left: 50%;
	transform: translateX(-80%);
	width: max-content;
}

.slider_top_text img {
	width: 8.5rem;
	position: absolute;
	left: -5rem;
	bottom: -1rem;
	z-index: -1;
}

.slider_top_text p {
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 130%;
	color: var(--dark-blue-text);
}

.slider_top_text b {
	font-weight: 800;
}


/* //////////////////////////// */

.sliders-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	cursor: pointer
}


.ms--images {
	position: relative;
	overflow: hidden
}

.ms--images.ms-container--horizontal {
	width: 100%;
	/* height: 400px */
	height: 20rem;
	margin-left: 17rem;
	overflow: hidden;
}

.ms--images.ms-container--horizontal .ms-slide {
	display: inline-flex
}

.ms--images .ms-track {
	display: flex;
	position: absolute;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	list-style: none
}

.ms--images .ms-slide {
	align-items: center;
	/* width: 700px; */
	width: 50vw;
	/* width: 43.75rem; */
	/* height: 400px; */
	height: 25rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.ms--images .ms-slide__image-container {
	width: 80%;
	height: 80%;
	margin-left: 20%;
	/* margin-left: 40%; */
	overflow: hidden
}

.ms--images .ms-slide__image {
	width: 100%;
	height: 100%;
	background-size: cover;
	color: #020449
}

.ms--images .ms-slide__image div {
	font-size: 2.25rem;
	line-height: 115%;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--blue);

	margin-top: 12%;
	white-space: normal;
}

.ms--images .ms-slide__image div .marked {
	font-weight: 800;
	color: var(--red);
}

.ms--numbers {
	position: relative;
	overflow: hidden
}

.ms--numbers.ms-container--horizontal {
	/* width: 240px;
    height: 240px; */
	width: 25rem;
	height: 25rem;

}

.ms--numbers.ms-container--horizontal .ms-slide {
	display: inline-flex
}

.ms--numbers .ms-track {
	display: flex;
	position: absolute;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	list-style: none
}

.ms--numbers .ms-slide {
	align-items: center;
	/* width: 240px;
    height: 240px; */

	width: 25rem;
	height: 25rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.ms--numbers {
	position: absolute;
	left: 0;
	z-index: -1;
	pointer-events: none
}

.ms--numbers .ms-slide {
	font-weight: 700;
	font-size: 20rem;
	line-height: 74%;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	text-align: center;
	color: var(--hue-blue);
}

.ms--titles {
	position: relative;
	overflow: hidden
}

.ms--titles.ms-container--vertical {
	width: 400px;
	height: 170px;
	max-height: 100%
}

.ms--titles.ms-container--vertical .ms-track {
	flex-direction: column;
	top: calc(50% - 85px)
}

.ms--titles.ms-container--vertical.ms-container--reverse .ms-track {
	flex-direction: column-reverse;
	top: auto;
	bottom: calc(50% - 85px)
}

.ms--titles.ms-container--vertical .ms-slide {
	display: flex
}

.ms--titles .ms-track {
	display: flex;
	position: absolute;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	list-style: none
}

.ms--titles .ms-slide {
	align-items: center;
	width: 400px;
	height: 170px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.ms--titles {
	position: absolute;
	left: calc(50% - 420px);
	top: calc(50% - 85px);
	z-index: 1;
	pointer-events: none
}

.ms--titles .ms-track {
	white-space: normal
}

.ms--titles .ms-slide {
	font-size: 20px;
	font-weight: 600
}

.ms--titles .ms-slide h3 {
	margin: 0;
	text-shadow: 1px 1px 2px #000
}

.ms--links {
	position: relative;
	overflow: hidden
}

.ms--links.ms-container--vertical {
	width: 120px;
	height: 60px;
	max-height: 100%
}

.ms--links.ms-container--vertical .ms-track {
	flex-direction: column;
	top: calc(50% - 30px)
}

.ms--links.ms-container--vertical .ms-slide {
	display: flex
}

.ms--links .ms-track {
	display: flex;
	position: absolute;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	list-style: none
}

.ms--links .ms-slide {
	align-items: center;
	width: 120px;
	height: 60px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.ms--links {
	position: absolute;
	left: calc(50% - 420px);
	top: calc(50% + 105px);
	z-index: 1
}

.ms--links .ms-track {
	white-space: normal
}

.ms--links .ms-slide__link {
	font-weight: 600;
	padding: 5px 0 8px;
	border-bottom: 2px solid #fff;
	cursor: pointer
}

.pagination {
	display: flex;
	position: absolute;
	/* left: calc(50% - 420px);
	top: 100%; */
	left: calc(50% - 15rem);
	top: 77%;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	z-index: 2;
}

.pagination__button {
	display: inline-block;
	position: relative;
	/* width: 36px;
	height: 20px; */
	width: 5.25rem;
	height: 0.25rem;
	margin: 0 0.313rem;
	cursor: pointer
}

.pagination__button:after,
.pagination__button:before {
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 0.063rem);
	width: 100%;
	display: flex;
	align-items: center;
}


.pagination__button:before {
	height: 0.12rem;
	background: var(--gray-95);
}

.pagination__button:after {
	top: calc(50% - 0.163rem);
	height: 0.25rem;
	background: var(--red);
	opacity: 0;
	transition: opacity .5s
}

.pagination__item--active .pagination__button:after {
	opacity: 1
}

@media screen and (max-width: 860px) {
	.ms--numbers {
		left: calc(50% - 120px)
	}

	.ms--titles {
		left: calc(50% - 200px);
		top: calc(50% - 135px);
		text-align: center
	}

	.ms--links {
		left: calc(50% - 60px);
		top: calc(50% + 80px)
	}

	.pagination {
		left: 50%;
		transform: translateX(-50%)
	}
}

@media screen and (max-width: 600px) {
	.ms--images {
		overflow: hidden
	}

	.ms--images .ms-slide {
		width: 100vw;
		height: 400px
	}

	.ms--numbers {
		left: 0
	}

	.ms--numbers.ms-container--horizontal {
		width: 100%;
		height: 240px;
		margin-left: 0
	}

	.ms--images.ms-container--horizontal {
		height: 240px
	}
}

@media screen and (max-width: 400px) {
	.ms--titles .ms-slide {
		transform: scale(.8)
	}
}


/*//////////////////////////////////////////////*/
.learn {
	position: relative;
	margin-top: 6rem;
	background: var(--blue);
	min-height: 38.38rem;
}

.learn_img {
	width: 52.5rem;
	position: absolute;
	top: -2.5rem;
	left: 0;
}

.learn_wrap {
	position: relative;
	top: -6rem;
	box-sizing: border-box;
	margin-left: auto;
	padding: 4rem 3.25rem;
	width: 35.38rem;
	background: var(--hue-blue);
	z-index: 1;
}

.title_learn {
	font-weight: 500;
	font-size: 2.75rem;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: var(--white);
	margin-bottom: 2.25rem;
}

.learn_list li {
	list-style: none;
	display: flex;
	gap: 1.25rem;
	font-weight: 500;
	font-size: 1.12rem;
	line-height: 140%;
	color: var(--white);
	margin-bottom: 1.5rem;
}

.learn_list li::before {
	content: " ";
	flex-shrink: 0;
	width: 1.875rem;
	height: 1.875rem;
	display: block;
	background-image: url(images/icon-list-light.svg);
	background-size: cover;
}

.learn_wrap_bottom {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	margin-top: 2.25rem;
}

.learn_wrap_bottom .btn {
	flex-shrink: 0;
}

.learn_wrap_bottom p {
	font-family: var(--font4);
	font-style: italic;
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 145%;
	letter-spacing: 0.01em;
	color: var(--white);
}

/* ///////////////////////////////////////////////////////// */
.problems {
	padding: 7.5rem 0;
	background: var(--gray-95);

}

.title_problem {
	position: relative;
	font-style: italic;
	font-weight: 800;
	font-size: 2.75rem;
	line-height: 110%;
	letter-spacing: -0.01em;
	color: var(--red);
	z-index: 1;
	margin-bottom: 4.5rem;
}

.title_problem span {
	position: relative;
}

.title_problem b {
	display: block;
	color: var(--blue);
}

.title_problem img {
	position: absolute;
	left: -3rem;
	bottom: 1rem;
	width: 7.188rem;
	z-index: 0;
}

.problem_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: row;
	gap: 2rem;
	margin-bottom: 4.5rem;
}

.problem_item {
	display: flex;
	gap: 0.62rem;
	width: calc(25% - 1.5rem);
}

.problem_item span {
	position: relative;
	top: -0.5rem;
	font-style: italic;
	font-weight: 700;
	font-size: 2.25rem;
	line-height: 115%;
	letter-spacing: -0.01em;
	color: var(--red);
}

.problem_item p {
	font-weight: 500;
	font-size: 1.12rem;
	line-height: 140%;
	color: var(--dark-blue-text);
}

.problem_btn_wrap {
	display: flex;
	justify-content: center;
}

/* ///////////////////////////////////////////////////////// */
.format {
	position: relative;
	padding: 7.125rem 0 17.25rem;
	background: var(--hue-blue);
	margin-bottom: 6.063rem;
}

.title_format {
	position: relative;
	font-weight: 800;
	font-size: 2.75rem;
	line-height: 110%;
	letter-spacing: -0.01em;
	color: var(--white);
	margin-bottom: 5.25rem;
}

.title_format span {
	position: relative;
}

.title_format img {
	position: absolute;
	left: -4rem;
	bottom: 50%;
	transform: translateY(50%);
	width: 9.5rem;
	z-index: 0;
}

.format_wrap {
	max-width: 50.12rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: row;
	gap: 2rem;
	margin: 0 auto 12.5rem;

}

.format_item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row;
	gap: 1rem;
	width: 24.06rem;
}

.format_item img {
	width: 6.5rem;
	flex-shrink: 0;
}

.format_item p {
	font-weight: 500;
	font-size: 1.12rem;
	line-height: 140%;
	color: var(--white);
}

.quote_format_wrap {
	position: relative;
	max-width: 23.12rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 2rem;
	z-index: 1;
}

.avatar {
	border-radius: 7.5rem;
	width: 7.5rem;
	height: 7.5rem;
}

.format_quote {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 4.188rem;
}

.quote_format_wrap p {
	font-weight: 500;
	font-size: 1.12rem;
	line-height: 140%;
	text-align: center;
	color: var(--white);
}

.benefits_format_wrap {
	padding: 0 var(--section-padding);
	position: absolute;
	left: 0;
	bottom: -6.063rem;
	z-index: 1;

	display: flex;
	gap: 1.25rem;
}

.benefits_item {
	padding: 1.75rem 1.5rem 2.5rem 1.5rem;
	width: 33.3%;
	background: var(--hue-blue);
}

.benefits_item img {
	width: 1.875rem;
	margin-bottom: 1.25rem;
}

.benefits_item p {
	font-weight: 500;
	font-size: 1.12rem;
	line-height: 140%;
	color: var(--white);
}

.format_img {
	position: absolute;
	bottom: 0;
	left: -2.5rem;
	width: 96.88rem;
	z-index: 0;
}

/* ///////////////////////////////////////////////////////// */

.form {
	padding: 21.313rem 0 7.5rem;
	position: relative;
}

.form_inner_wrap {
	position: relative;
}

.title_form {
	font-style: italic;
	font-weight: 800;
	font-size: 2.75rem;
	line-height: 110%;
	letter-spacing: -0.01em;
	color: var(--red);
	margin-bottom: 4.5rem;
}

.title_form b {
	color: var(--blue);
}

.text_form {
	position: relative;
}

.text_form::after {
	content: " ";
	position: absolute;
	top: -2.25rem;
	left: -3.75rem;
	width: 39.12rem;
	height: 16.12rem;
	background: var(--gray-95);
	z-index: -1;
}

.text_form p {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 140%;
	color: var(--dark-blue-text);
	max-width: 28.125rem;
	margin-bottom: 2.75rem;
}

.text_form b {
	font-weight: 800;
}

.text_form em {
	font-weight: 800;
	font-style: italic;
	color: var(--red);
}



.form_img_wrap {
	position: absolute;
	right: 0;
	top: 1rem;
	width: 39.12rem;
	height: 46.12rem;
	z-index: -2;
}

.gerchik-form-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.form_quote_wrap {
	position: absolute;
	right: 1rem;
	top: -2rem;
}

.form_quote_wrap img {
	width: 4.188rem;
	margin-bottom: 1rem;
}

.form_quote_wrap p {
	font-style: italic;
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 145%;
	letter-spacing: 0.01em;
	color: var(--blue);
}

.form .marquee {
	top: 4rem;
	bottom: auto;
}

/* //////////////////////////////////////////////// */

.form_flexible_wrap {
	position: relative;
	z-index: 1;
	display: flex;
	width: 32.938rem;
	/* height: 34rem; */
	/*padding: 2.8125rem 2.5rem 3.75rem 2.5rem;*/
	flex-direction: column;
	align-items: flex-start;
	gap: 1.875rem;

	overflow: hidden;
	/* background: #E4E7EC; */
	background: var(--blue);
	/* background: linear-gradient(#E4E7EC, #E4E7EC) padding-box,
		linear-gradient(to right, #9EBBFF, #728EF5) border-box; */

	border: 0.163rem solid transparent;
}

.form_flexible_wrap .flex-register-form,
#flexible-registration {
	width: 100% !important;
	background: var(--blue) !important;
}

.form_flexible_wrap .flex-register-form .flex-container {
	padding: 1.563rem 2.5rem 2.5rem !important;

}

.flex-register-form .flex-container .field {
	padding-bottom: 0.625rem !important;
	padding-top: 0.625rem !important;

	opacity: 1;
	position: relative;
}


.form_flexible_wrap .flex-register-form .flex-container .field .input input {
	border-radius: 2.5rem !important;
	padding: 0.938rem 1.25rem !important;
	height: 3.75rem !important;
	font-size: 1.38rem !important;
}



.flex-register-form .flex-container .field .select input {
	border-radius: 2.5rem !important;
	padding-left: 7rem !important;
	height: 3.75rem !important;
	font-size: 1.38rem !important;
}

.flex-register-form .flex-container .field .select .select-phone {
	width: 6.5rem !important;
}

.flex-register-form .flex-container .field .select .select-phone .select-default__in__control .select-default__in__indicators .select-default__in__indicator:before {
	font-size: 1.2rem !important;
}

.flex-register-form .flex-container .field .select .label-select-phone {
	margin-top: 0.188rem !important;
	padding-left: 0.313rem !important;
	font-size: 1.38rem !important;
	text-align: left !important;
}

.flex-register-form .flex-container .field .label {
	font-size: 1.12rem !important;
	height: 1.5rem !important;
	color: var(--white) !important;
	margin-bottom: 0.5rem;
}

.form_flexible_wrap .reg-btn {
	border-radius: 1.88rem !important;
	font-weight: 700 !important;
	color: var(--dark-blue) !important;
	font-size: 1.375rem !important;
	height: 3.75rem !important;
	background-color: #10E088 !important;
	text-transform: uppercase;
}

.flex-register-form .flex-container .field .checkbox .checkbox-text {
	color: var(--gray-95) !important;
	font-weight: 500;
	padding-left: 1rem !important;
	padding-top: 0.313rem !important;
	font-size: 1.1rem !important;
}

.flex-register-form .flex-container .field .checkbox a {
	color: var(--gray-95) !important;
	text-decoration: underline !important;
}




.flex-register-form .flex-container .field .checkbox .checkbox__input+.fa {
	color: var(--gray-95) !important;
	font-size: 1.563rem !important;
}

.flex-register-form .flex-container .field .select .select-phone .select-default__in__control {
	height: 3.5rem !important;
	position: relative;
}

.flex-register-form .flex-container .field .select .select-phone .select-default__in__control .select-default__in__value-container {
	height: 2.25rem !important;
	top: 0.313rem !important;
}

.flex-register-form .flex-container .field .select .select-phone .select-default__in__control .select-default__in__indicators {
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 0.625rem !important;
	margin-right: -1rem !important;
	padding-bottom: 0.25rem !important;
}

.icon-flag {
	flex-shrink: 0;
	width: 1.25rem !important;
	height: 1.25rem !important;
	min-width: auto !important;
	min-height: auto !important;
}

.flex-register-form .flex-container .field .reg-btn {
	position: relative;
	box-shadow: 0 8px 20px rgba(251, 54, 64, 0.5);
	background: var(--red) !important;

	font-weight: 700 !important;
	font-size: 1.25rem !important;
	line-height: 140%;
	text-transform: none !important;
	text-align: center;
	color: var(--white) !important;
	transition: 0.3s;
}

.flex-register-form .flex-container .field .reg-btn:hover {
	transform: scale(0.95);
}

/* .flex-register-form .flex-container .field .reg-btn::before {
	content: "Хочу стать клиентом";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: -webkit-fill-available;
	height: auto;
	background: linear-gradient(180deg, #40e5ad 0%, #10e088 100%);
	border-radius: 0.5rem;
	padding: 0.75rem 1.25rem;

	font-weight: 700;
	font-size: 1.38rem;
	line-height: 164%;
	text-align: center;
	color: var(--black);
} */

/* ////////////////////////////////////////////////// */

.tariffs {
	padding: 8.125rem 0;
	background: var(--gray-95);
}

.tariffs_title_wrap {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 3.75rem;

}

.title_tariff {
	flex-shrink: 0;
	position: relative;
	width: 50%;
}

.title_tariff img {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 7rem;
}

.title_tariff span {
	padding-left: 3.25rem;
	display: block;

	position: relative;
	font-weight: 500;
	font-size: 2rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--blue);
}

.title_tariff b,
.text_tariff b {
	font-weight: 800;
}

.title_tariff em,
.text_tariff em {
	font-weight: 800;
	font-style: italic;
	color: var(--red);
}

.text_tariff {
	font-weight: 500;
	font-size: 1.12rem;
	line-height: 140%;
	color: var(--dark-blue-text);
}

.tariffs__wrap {
	display: flex;
	gap: 1.25rem;
}

.tariffs_item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 3.25rem 3.25rem 3.75rem;
	width: 50%;
	background: var(--white);
}

.tariffs_item span {
	font-weight: 500;
	font-size: 2rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--black-250);
}

.tariffs_item h3 {
	font-weight: 800;
	font-size: 2.75rem;
	line-height: 110%;
	letter-spacing: -0.01em;
	color: var(--blue);
	margin-bottom: 1.5rem;
}

.tariffs_item h3.comfort {
	color: var(--hue-blue);
}

.tariffs_list li {
	display: flex;
	gap: 1.25rem;
	list-style: none;
	font-weight: 500;
	font-size: 1.12rem;
	line-height: 140%;
	color: var(--dark-blue-text);
	margin-bottom: 1.688rem;
}

.tariffs_list li b {
	font-weight: 800;
}

.tariffs_list li::before {
	content: " ";
	flex-shrink: 0;
	width: 1.875rem;
	height: 1.875rem;
	display: block;
	background-image: url(images/icon-list-dark.svg);
	background-size: cover;
}

.tariffs_item .btn {
	width: max-content;
}

.tariffs_btn_wrap {
	display: none;
}

/*//////////////////////////////////////////////*/
footer {
	padding-bottom: 1.25rem;
	background: var(--hue-blue);
}

footer .container {
	background: var(--blue);
}

.footer-wrap {
	padding: 1.25rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.copy {
	font-weight: 500;
	font-size: 1rem;
	line-height: 140%;
	color: var(--gray-95);
}

.footer-wrap a {
	font-weight: 500;
	font-size: 1rem;
	line-height: 140%;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-align: right;
	color: var(--gray-95) !important;
	transition: 0.3s;
}

.social_wrap {
	display: flex;
	gap: 1.25rem;
}

.social_wrap img {
	width: 2rem;
}

.social_wrap a {
	transition: 0.3s;
}

.social_wrap a:hover,
.footer-wrap a:hover {
	transform: scale(0.9);
}

/*////////////////////////Succes page////////////////////////////////*/


.header_succes {
	justify-content: center;
}

.banner_succes {
	padding: 13.75rem 0 6.25rem;
}

.banner_succes_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.banner_succes_title {
	background: var(--blue);
	padding: 1.88rem 2.5rem;

	font-weight: 500;
	font-size: 2.75rem;
	line-height: 110%;
	letter-spacing: -0.02em;
	text-align: center;
	color: var(--white);
	margin-bottom: 1.875rem;
}

.banner_succes_title b {
	font-style: italic;
	font-weight: 800;
	letter-spacing: -0.01em;
	display: block;
}

.banner_succes_text {
	font-weight: 800;
	font-size: 2.75rem;
	line-height: 110%;
	letter-spacing: -0.01em;
	text-align: center;
	color: var(--blue);
}

.banner_succes_text b {
	color: var(--red);
}

.banner_succes .marquee {
	bottom: auto;
	top: 5.75rem;
}

.succes_footer {
	padding: 0;
	background: white;
}

.succes_footer .container {
	background: white;
}

.succes_footer .copy,
.succes_footer .policity a {
	font-weight: 500;
	font-size: 1rem;
	line-height: 140%;
	color: var(--dark-blue-text) !important;
	opacity: 0.6;
}




/*///////////////////////Succes page end/////////////////////////////////*/
@media (max-width: 850px) {
	html {
		font-size: 2.083vw;
	}

	:root {
		--section-padding: 1.25rem;
		--c-f-padding: 0rem;
	}

	.header {
		padding: 0.625rem 0;
	}

	.logo img,
	.logo-menu img {
		width: 8.625rem;
	}

	.logo-menu {
		display: block;
		padding: 0.938rem 1rem;
	}

	.languages.open li.current a {
		color: white;
	}

	.languages.open img {
		filter: invert(1);
	}

	.languages li.current {
		background: transparent;
		color: white;
	}

	.languages:hover li.current {
		background: var(--gray-95);

	}

	.languages:hover li.current a {
		color: black !important;
	}

	.languages:hover img {
		filter: invert(0);
	}

	.mob_btn_wrap {
		display: flex;
		gap: 0.5rem;
		align-items: center;
	}

	.mob-btn {
		display: block;
		z-index: 2;
	}

	.nav {
		column-gap: 1.13rem;
	}

	.mob_wrap_nav {
		position: fixed;
		left: 0;
		top: 0rem;
		opacity: 0;
		background: #E5EDFF;
		width: 100%;
		height: 100vh;
		z-index: -1;
		pointer-events: none;
	}

	.mob_overlay_wrap {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		display: block;
	}

	.mob_overlay_wrap .overlay_1 {
		width: 100%;
	}

	.mob_overlay_wrap .overlay_2 {
		width: 40%;
	}


	.mob_wrap_nav ul {
		flex-direction: column;
		padding: 6.25rem 1rem 5rem;
		gap: 0;
		align-items: flex-start;
	}

	.decs-nav a.link {
		font-weight: 500;
		font-size: 1rem;
		line-height: 140%;
		color: var(--white) !important;
		margin-bottom: 1.75rem;
	}

	.mob_quote_wrap {
		display: block;
		padding: 0 1rem;
	}

	.mob_quote_wrap img {
		width: 4.188rem;
		margin-bottom: 1rem;
	}

	.mob_quote_wrap p {
		font-family: var(--font4);
		font-style: italic;
		font-weight: 400;
		font-size: 1.06rem;
		line-height: 145%;
		letter-spacing: 0.01em;
		color: var(--white);
		max-width: 13.5rem;
	}

	/* //////////////////////////////////////////////// */

	.banner {
		padding-top: 6rem;
	}

	.banner-row {
		padding: 0;
	}

	.overlay_wrap,
	.quote_wrap {
		display: none;
	}

	.banner_title {
		max-width: 22.75rem;
		font-size: 1.88rem;
		line-height: 115%;
		margin-bottom: 1.5rem;
	}

	.banner_text {
		font-size: 1.06rem;
		line-height: 140%;
		margin-bottom: 1.75rem;
	}

	.btn {
		border-radius: 2.5rem;
		padding: 0.75rem 2.75rem 0.81rem 2.75rem;
	}

	.banner-img {
		margin-top: 3.25rem;
		position: relative;
		width: 17.75rem;
		right: auto;
		left: 50%;
		transform: translateX(-50%) !important;
		bottom: -1rem;
	}

	.banner .marquee {
		bottom: 13.313rem;
	}

	.marquee-text {
		font-size: 6.25rem;
		line-height: 110%;
		letter-spacing: -0.04em;
	}

	/* //////////////////////////////////////////////// */

	.about {
		padding: 3.25rem 0 6.813rem;
	}

	.about_row {
		flex-direction: column-reverse;
		gap: 4.25rem;
	}

	.title_about {
		font-size: 1.5rem;
		line-height: 120%;
		padding: 0;
	}

	.about_gerchik {
		width: calc(100% + 3rem);
		margin-left: -1.5rem;
		margin-bottom: -1rem;
	}

	.about_img_wrap::after {
		width: 12.25rem;
		height: 9.94rem;
		left: auto;
		top: auto;
		bottom: -3rem;
		right: -1.25rem;
	}


	.about_text_wrap {
		position: relative;
		padding: 4.62rem 1.25rem 0rem;
		z-index: -2;
		bottom: 0;
	}

	.about_text_wrap img {
		width: 8.813rem;
		top: 1.25rem;
		left: -2rem;
	}

	.about_text_wrap p {
		font-size: 1.06rem;
		line-height: 140%;
	}

	.about .marquee {
		bottom: 1.938rem;
	}

	.about .marquee-text {
		font-size: 2rem;
	}

	/* //////////////////////////////////////////////// */

	.slider {
		padding: 1.75rem 0 2.063rem;
	}

	.slider_top_text {
		left: var(--section-padding);
		transform: none;
		margin-bottom: 2.25rem;
	}

	.slider_top_text img {
		left: -3rem;
		bottom: -6rem;
	}

	.sliders-container {
		visibility: hidden;
		height: 0;
		width: 0;
	}

	.mob_slider_content {
		position: relative;
		display: block;
		padding: 0 var(--section-padding)
	}

	.mob_slider_item {
		display: flex;
		gap: 0.75rem;
		align-items: center;
		margin-bottom: 1.625rem;
	}

	.num {
		font-weight: 700;
		font-size: 2.5rem;
		line-height: 94%;
		letter-spacing: -0.04em;
		text-transform: uppercase;
		text-align: center;
		color: var(--hue-blue);
	}

	.mob_slider_item p {
		font-weight: 500;
		font-size: 1.12rem;
		line-height: 140%;
		color: var(--blue);
	}

	.mob_slider_item em {
		font-style: normal;
		font-weight: 800;
		color: var(--red);
	}

	.mob_slider_item b {
		font-weight: 800;
	}


	/* /////////////////////////////////////////////////////// */

	.learn {
		margin-top: 0;
		min-height: auto;
	}

	.learn_img {
		position: relative;
		width: calc(100% + 5rem);
		top: -1.5rem;
		left: -1.25rem;
	}

	.learn_wrap {
		padding: 2.75rem 1.25rem 3.25rem;
		margin: 0;
		top: 0;
		position: relative;
		width: calc(100% + 3rem);
		left: -1.5rem;
	}

	.title_learn {
		font-size: 1.88rem;
		line-height: 115%;
	}

	.learn_list li {
		font-size: 1.06rem;
		line-height: 140%;
		gap: 1.313rem;
		margin-bottom: 1rem;
	}

	.learn_wrap_bottom {
		gap: 1rem;
	}

	.learn_wrap_bottom p {
		flex-shrink: 0;
		font-size: 0.88rem;
		max-width: 10.875rem;
	}

	.learn_wrap_bottom .btn {
		padding: 0.75rem 1.5rem 0.81rem;
	}

	/* /////////////////////////////////////////////////////////////////////// */
	.problems {
		padding: 4.375rem 0;
	}

	.title_problem {
		font-size: 1.88rem;
		line-height: 115%;
		margin-bottom: 2rem;
	}

	.title_problem b {
		display: inline;
	}

	.title_problem img {
		bottom: -1rem;
	}

	.problem_wrap {
		flex-direction: column;
		gap: 0.188rem;
		margin-bottom: 1.25rem;
	}

	.problem_item {
		width: 100%;
		padding-bottom: 0.75rem;
		border-bottom: 0.07rem solid white;
		margin-bottom: 0.75rem;
	}

	.problem_item:last-child {
		border-bottom: none;
	}

	.problem_item p {
		font-size: 1.06rem;
		line-height: 140%;
	}

	.problem_btn_wrap {
		justify-content: flex-start;
	}

	/* /////////////////////////////////////////////////////////////// */

	.format {
		padding: 5rem 0 17.25rem;
		margin-bottom: 14.063rem;
	}

	.title_format {
		font-size: 1.88rem;
		line-height: 115%;
		margin-bottom: 2.5rem;
	}

	.format_wrap {
		gap: 1.25rem;
		position: relative;
		margin: 0 auto 7.75rem;
	}

	.format_item {
		width: calc(50% - 0.7rem);
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.format_item img {
		width: 4rem;
	}

	.format_item p {
		font-size: 1.06rem;
		line-height: 140%;
	}

	.format_item br {
		display: none;
	}

	.quote_format_wrap p {
		font-size: 1.06rem;
	}

	.format_img {
		width: 110%;
		bottom: 10rem;
		left: -2.5rem;
	}

	.benefits_format_wrap {
		position: absolute;
		flex-direction: column;
		gap: 0.75rem;
		bottom: -13.063rem;
	}

	.benefits_format_wrap::before {
		content: " ";
		position: absolute;
		left: -1.5rem;
		top: 5rem;
		width: calc(100% + 3rem);
		height: calc(100% - 5rem);
		background: white;
		z-index: -1;
	}

	.benefits_item {
		box-sizing: border-box;
		width: 100%;
		padding: 1.25rem 1.25rem 1.75rem;
		flex-direction: column;
		gap: 1rem;
	}

	.benefits_item p {
		font-size: 1.06rem;
		line-height: 140%;
	}

	/* ////////////////////////////////////////////////////// */
	.form {
		padding: 10.375rem 0 3.75rem;
	}

	.form .marquee {
		top: 1rem;
	}

	.title_form {
		font-size: 1.88rem;
		line-height: 115%;
		margin-bottom: 2rem;
	}

	.form_img_wrap {
		position: relative;
		top: 0;
		width: calc(100% + 3rem);
		left: -1.5rem;
		height: auto;
	}

	.form_quote_wrap {
		position: relative;
		right: auto;
		left: 1.5rem;
		padding-right: 3rem;
		top: -2rem;
		margin-bottom: 1.75rem;
	}

	.form_quote_wrap br {
		display: none;
	}

	.text_form p {
		font-size: 1.06rem;
		line-height: 140%;
		max-width: 100%;
	}

	.text_form::after {
		width: calc(100% + 3rem);
		left: -1.5rem;
		height: 12.12rem;
	}

	.form_flexible_wrap {
		margin: 0 auto;
	}


	/* ////////////////////////////////////////////////////// */

	.tariffs {
		padding: 4rem 0 4.5rem;
	}

	.tariffs_title_wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		margin-bottom: 2.5rem;
	}

	.title_tariff span {
		padding: 0;
		font-size: 1.88rem;
		line-height: 115%;
		letter-spacing: -0.01em;

	}

	.title_tariff {
		width: 100%;
		margin-bottom: 2.5rem;
	}

	.title_tariff img {
		left: -1rem;
		bottom: -2rem;
	}

	.tariffs_item span,
	.tariffs_item h3 {
		display: none;
	}

	.tariffs_item {
		width: 100%;
		padding: 2.25rem 1.25rem 2.75rem;
	}

	.tariffs_item.hide {
		display: none;
	}

	.tariffs_btn_wrap {
		background: var(--black-50);
		border: 0.07rem solid var(--black-250);
		border-radius: 8.75rem;
		padding: 0.38rem;
		display: flex;
		align-items: center;
		margin-bottom: 2rem;
	}


	.tariffs_btn {
		width: 50%;
		border-radius: 3.12rem;
		padding: 0.25rem 1rem;
		font-weight: 500;
		font-size: 1.06rem;
		line-height: 140%;
		text-align: center;
		color: var(--dark-blue-text) !important;
	}

	.tariffs_btn.active {
		background: var(--hue-blue);
		color: var(--white) !important;
	}


	/* ////////////////////////////////////////////////////// */

	.footer-wrap {
		flex-direction: column;
		align-items: flex-start;

	}

	.social_wrap {
		order: 1;
		margin-bottom: 1.75rem;
	}

	.copy {
		order: 2;
		margin-bottom: 0.75rem;
	}

	.policity {
		order: 3;
	}

	/* //////////////////////////////////////////////////// */
	.banner_succes {
		padding: 14.5rem 0 9.188rem;
	}

	.banner_succes_title {
		padding: 1.25rem 0.75rem;
		font-size: 1.25rem;
		line-height: 140%;
		margin-bottom: 1.5rem;
	}

	.banner_succes_text {
		font-size: 1.5rem;
		line-height: 130%;
	}
	.banner_succes_text b {
		display: block;
	}
	.banner_succes .marquee{
		top: 10rem;
	}

	.succes_footer .footer-wrap{
		align-items: center;
	}

}



@media (max-width: 480px) {

	html {
		font-size: 3.951vw;
	}

	.format {
		margin-bottom: 11.063rem;
	}

	.format_wrap {
		margin: 0 auto 9.75rem;
	}

	.quote_format_wrap {
		margin-bottom: 12.938rem;
	}

	.format_img {
		width: 115%;
		bottom: 19rem;
		left: -1.5rem;
	}

	.benefits_format_wrap {
		bottom: -10.063rem;
	}

	.text_form::after {
		height: 17.12rem;
	}

	.form_flexible_wrap {
		width: 100%;
	}

	.form_flexible_wrap .flex-register-form .flex-container {
		padding: 2.25rem 1.25rem 3rem 1.25rem !important;
	}

	.text_tariff br {
		display: none;
	}

}