@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


/*@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
*/


:root {
	--section-padding: 5rem;
	--c-f-padding: 0rem;

	--green-light: #29e597;
	--green: #11d984;
	--green-dark: #10cc7c;
	--very-green-dark: #009958;
	--blue: #383dc2;
	--orange: #f86f57;
	--red: #fb5a62;
	--dark-blue: #020449;
	--black: #000;
	--40: #3d3f66;
	--blue-light-10: #e5edff;
	--blue-light-5: #f2f6ff;
	--white: #fff;
	--blue-light-15: #d9e4ff;
}


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;
	margin: 0;
}

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

	/* cursor: none;*/
}

a {
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 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: absolute;
	width: 100%;
	padding: 1.25rem 0;
	transition: 0.4s;
}

/* .header-show{
	position: fixed;
	top: 0;
	z-index: 999;
	background: rgba(229, 237, 255, 0.80);
	backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);;
	padding: 0.5rem 0;
	transition: 0.4s;
}

.header-show .logo img{
	width: 7.17188rem;
} */


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

/*////////////////////////////*/
/* .languages {
	position: absolute;
	top: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
} */

.languages li {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4.75rem;
	font-size: 1.25rem;

	/* border-radius: 0 0 1.25rem 1.25rem; */
	/* background: linear-gradient(135deg, #383DC2 0%, #4131A8 100%); */
	cursor: pointer;
	z-index: 1;
	opacity: 0;
	transform: translateY(-2rem);
	transition: all 0.4s ease-out;
	overflow: hidden;
}

.languages:hover li:nth-child(2) {
	opacity: 1;
	transform: translateY(2.4rem);
}

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

.languages li.current {

	/* color: #FFFFFF; */
	position: relative;
	border-radius: 1.25rem;
	opacity: 1;
	transform: translateY(0);
	z-index: 2;
}

.languages:hover li {
	opacity: 1;
	transform: translateY(0rem);
	background: #fff;
}

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

.languages:hover a,
.languages:hover li.current a {
	color: #000 !important;
}

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

/* .languages li.current a {
	color: #fff !important;
} */

.languages a {
	/* color: #fff !important; */
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	column-gap: 0.625rem;
	padding: 0.625rem 0rem;
}

.languages a:hover {
	background: #E5EDFF;
}

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

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

.banner {
	position: relative;
}

.banner_row {
	display: flex;
}

.banner-col {
	width: 50%;
	border-radius: 0 0 6.25rem 6.25rem;
}

.banner-col-left {
	border-radius: 0 0 6.25rem 6.25rem;
	padding: 1.875rem 2.125rem 3.75rem 5rem;
	background: linear-gradient(var(--blue-light-5), var(--blue-light-5)) padding-box, linear-gradient(to right, #9EBBFF, #9EBBFF) border-box;
	border: 0.07rem solid transparent;
}

.d-flex-top{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}



.logo img {
	width: 11.9375rem;
	margin-bottom: 2.5rem;
}

.banner_title {
	position: relative;
	font-weight: 700;
	font-size: 3.12rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--blue);
	margin-bottom: 0.938rem;
}

.banner_title span {
	background: var(--blue);
	color: var(--white);
	border-radius: 1rem;
	padding: 0.2rem;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.banner_title span::before {
	content: '';
	position: absolute;
	top: 7.2rem;
	left: 0;
	width: 14.57rem;
	height: 1.3rem;
	background: var(--blue);
}


.banner_text {
	transform: rotate(-1deg);
	width: -webkit-fill-available;

	max-width: 34.12rem;

	border-radius: 1.25rem;
	padding: 0.62rem 1.56rem 0.94rem 1.56rem;

	font-weight: 600;
	font-size: 1.69rem;
	line-height: 120%;
	color: var(--dark-blue);

	margin-bottom: 2.813rem;


	background: linear-gradient(var(--blue-light-15), var(--blue-light-15)) padding-box, linear-gradient(to right, #9EBBFF, #9EBBFF) border-box;
	border: 0.07rem solid transparent;
}

.banner_text span {
	font-weight: 700;
	color: var(--blue);
}


.banner_list ul {
	max-width: 27.25rem;
	border: 0.07rem solid transparent;
	border-radius: 1.56rem;
	padding: 1.25rem 1.88rem;
	/* background: linear-gradient(135deg, #383dc2 0%, #4131a8 100%); */

	background: linear-gradient(135deg, #fff 0%, #fff 100%) padding-box, linear-gradient(to right, #9EBBFF, #9EBBFF) border-box;

	font-size: 1.25rem;
	line-height: 130%;
	font-weight: 400;
	color: var(--40);

	display: flex;
	flex-direction: column;
	gap: 0.92rem;

	margin: 0 0 1.875rem;
}

.banner_list li {
	list-style: none;
	display: flex;
	gap: 0.94rem;
}

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

.banner_list span {
	display: block;
	font-weight: 700;
	color: var(--dark-blue);
}

.banner_btn {
	position: relative;
}

.btn {
	position: relative;
	display: inline-flex;
	padding: 1.56rem 2.19rem;
	align-items: center;
	gap: 1.25rem;
	border-radius: 2.81rem;
	background: var(--green-light);


	color: var(--dark-blue);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 120%;
	letter-spacing: 0.01em;
	text-transform: uppercase;



	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.9);
}

/* .btn span {
	display: flex;
	width: 3.75rem;
	height: 3.75rem;
	justify-content: center;
	align-items: center;
	border-radius: 1.875rem;
	background: #FFF;
	flex-shrink: 0;
} */

.btn img {
	width: 2.188rem;
}

@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
	}
}

.arrow_btn {
	position: absolute;
	top: -2rem;
	left: 31rem;
	width: 7.563rem;

	animation: bounce 0.6s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
}

@keyframes bounce {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(0, 1rem, 0);
	}
}



.banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0 0 6.25rem 6.25rem;
}

.circle_blur {
	position: absolute;
	width: 106.25rem;
	z-index: -1;
}

.circle_blur_1 {
	left: 37.188rem;
	top: -10.438rem;
}

.circle_blur_2 {
	top: 71.25rem;
	right: 8.75rem;
}

.circle_blur_3 {
	top: 74.25rem;
	left: 18.75rem;
}

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


.marquee {
	--space: 0rem;
	--duration: 110s;
	--gap: var(--space);

	position: absolute;
	bottom: -4.25rem;
	left: 0;
	display: flex;
	align-items: center;
	/* transform: rotate(6deg); */
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	z-index: 2;
}

.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;
	padding: 0.5rem 0rem;
	background: #fb3640;
}

.marquee-text {

	display: flex;
	align-items: center;
	/* gap: 1rem; */
	/* identical to box height, or 65px */
	/* Gray/40 */
	/*-webkit-text-stroke: 0.063rem #3D4166;*/

	/* -moz-animation: marquee 55s linear infinite;
	-webkit-animation: marquee 55s linear infinite;
	animation: marquee 55s linear infinite; */

}

.marquee-text p {
	font-weight: 600;
	font-size: 1.69rem;
	line-height: 120%;
	color: var(--white);
}


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

	0% {
		transform: translateX(0);
	}
}


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

.about {
	/* padding: 7.5rem 0 5rem; */
	padding: 3.125rem 0 5rem;
	position: relative;
}

.about-row-text {
	display: flex;
	align-items: center;
	gap: 10.375rem;
}


.title {
	font-weight: 700;
	font-size: 2.62rem;
	line-height: 110%;
	letter-spacing: -0.01em;
	color: var(--dark-blue);
	margin-bottom: 1.875rem;
}

.title span {
	color: var(--blue);
}

.about-text {
	max-width: 40.625rem;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 130%;
	color: var(--40);
	margin-bottom: 1.875rem;
}

.about-text strong {
	font-weight: 700;
	color: var(--dark-blue);
}

.about-text span {
	font-weight: 700;
	color: var(--blue);
}

.about-bottom-text {
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 130%;
	color: var(--dark-blue);
}

.big-question {
	width: 15.625rem;
}

.about-row {
	display: flex;
	gap: 1.25rem;
	padding: 1.25rem 0;
}

.about_col {
	width: 50%;
}

.about_item {
	height: 100%;
    box-sizing: border-box;
	border-radius: 3.75rem;
	padding: 1.88rem;
	background: linear-gradient(var(--blue-light-5), var(--blue-light-5)) padding-box, linear-gradient(to right, #9EBBFF, #9EBBFF) border-box;
	border: 0.07rem solid transparent;
}

.faza {
	border-radius: 1.25rem;
	padding: 0.31rem 0.94rem;
	background: var(--blue);
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--white);
	width: max-content;
	margin-bottom: 0.625rem;
}

.about_item h4 {
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 130%;
	color: var(--dark-blue);
	margin-bottom: 1.25rem;
}

.about_item_text {
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 130%;
	color: var(--40);
	margin-bottom: 1.25rem;
}

.mb-46 {
	margin-bottom: 2.875rem;
}

.about_item_img {
	width: 100%;
	border-radius: 3.75rem;
}

.about_item_bottom {
	border-radius: 3.75rem;
	padding: 1.88rem 1.88rem 3.12rem 1.88rem;
	background: linear-gradient(var(--blue-light-5), var(--blue-light-5)) padding-box, linear-gradient(to right, #9EBBFF, #9EBBFF) border-box;
	border: 0.07rem solid transparent;
}

.about_item_bottom_img {
	width: 100%;
	border-radius: 2.5rem;
	margin-bottom: 1.875rem;
}

.about_item_bottom h3 {
	font-weight: 700;
	font-size: 2.62rem;
	line-height: 110%;
	letter-spacing: -0.01em;
	color: var(--dark-blue);
	margin-bottom: 1.25rem;
}

.about_item_bottom h3 span {
	color: var(--blue);
}

.about_item_bottom p {
	font-size: 1.25rem;
	line-height: 130%;
	font-weight: 400;
	color: var(--40);
}

.about_item_bottom p b {
	font-weight: 700;
	color: var(--dark-blue);
}

.about_item_bottom p span {
	color: var(--blue);
	font-weight: 700;
	display: block;
}

.about_btn_wrap {
	display: flex;
	justify-content: space-between;
}

.arrow_btn_2 {
	width: 8.813rem;
	position: absolute;
	top: 0rem;
	left: -9rem;
	animation: bounce 0.6s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
}


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



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


.work-row {
	position: relative;
	border-radius: 6.25rem;
	background: linear-gradient(var(--blue-light-5), var(--blue-light-5)) padding-box, linear-gradient(to right, #9EBBFF, #9EBBFF) border-box;
	border: 0.07rem solid transparent;

	padding: 3.125rem 5.063rem 4.375rem;
	overflow: hidden;
}

.work .title {
	text-align: center;
	margin-bottom: 2.5rem;
}

.work-wrap {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.work_item {
	width: calc(33% - 3.3rem);
	border-radius: 2.5rem;
	position: relative;
	padding: 1.25rem;
	background: linear-gradient(var(--white), var(--white)) padding-box,
		linear-gradient(to right, #9EBBFF, #9EBBFF) border-box;
	border: 0.07rem solid transparent;
}

.num {
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 3.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue);
	margin-bottom: 0.625rem;
}

.num img {
	width: 2.5rem;
}

.work-title {
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--dark-blue);
	margin-bottom: 1.25rem;
}

.work_text {
	font-size: 1.25rem;
	line-height: 130%;
	color: var(--40);
}

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

.work_item_100 .arrow_btn_2 {
	top: -2rem;
	left: -10rem;
}

/*//////////////////////////////////////////////*/
.quote_wrap {
	position: relative;
	border-radius: 6.25rem;
	padding: 5.563rem 5rem 8.25rem;
	background: var(--blue);
	background-image: url(images/Image-3.webp);
	background-position: right;
	background-size: contain;
	background-repeat: no-repeat;
	overflow: hidden;
}

.quote_icon {
	width: 4.313rem;
	margin-bottom: 1.563rem;
}

.quote_text {
	max-width: 44.688rem;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--white);
	margin-bottom: 3.125rem;
}

.quote_text span {
	color: var(--green-light);
}

.quote_text_bottom {
	max-width: 40rem;
	opacity: 0.7;
	font-size: 1.25rem;
	line-height: 130%;
	color: var(--white);
}

.gerchik_img {
	position: absolute;
	width: 35.31rem;
	right: 3.125rem;
	bottom: 0;
}



/*//////////////////////////////////////////////*/
.advantages {
	padding: 5rem 0;
	/* padding: 5rem 0 9.375rem; */
	position: relative;
}

.advantages .marquee {
	bottom: 1.25rem;
}

.advantages .title {
	margin-bottom: 2.5rem;
}

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

.ad_col {
	width: 50%;
}

.ad_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 3.75rem;
}



.ad_item {
	border-radius: 2.5rem;
	padding: 1.25rem;
	background: linear-gradient(#fff, #fff) padding-box,
		linear-gradient(to right, #9EBBFF, #728EF5) border-box;
	border: 0.07rem solid transparent;
	margin-bottom: 1.25rem;
}

.ad_item:last-child {
	margin-bottom: 0;
}

.step {
	background: var(--blue);
	border-radius: 1.25rem;
	padding: 0.31rem 0.94rem;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--white);
	margin-bottom: 0.938rem;
	width: max-content;
}


.ad_text h5 {
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--dark-blue);
}

.ad_text h5 span {
	color: var(--blue);
}

.ad_text p {
	margin-top: 1.25rem;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 130%;
	color: var(--40);
}

/*//////////////////////////////////////////////*/
.form-row {
	background: var(--blue);
	border-radius: 6.25rem;
	padding: 3.125rem 5rem;
	display: flex;
	gap: 7rem;
}

.form_text {
	position: relative;
}

.arrow-form {
	position: absolute;
	left: 35rem;
	top: 7rem;
	width: 8.563rem;
	animation: bounce 0.6s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
}

.form_title {
	position: relative;
	max-width: 36.875rem;
	font-weight: 700;
	font-size: 3.12rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--white);
	margin-bottom: 2.5rem;
}

.form_title span {
	color: var(--dark-blue);
	background: var(--green-light);
	padding: 0.2rem;
	border-radius: 1rem;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.form_title::after {
	content: '';
	position: absolute;
	top: 10.4rem;
	left: 0;
	width: 1rem;
	height: 2rem;
	background: var(--green-light);
}

.form_title::before {
	content: '';
	position: absolute;
	top: 15rem;
	left: 0;
	width: 1rem;
	height: 2rem;
	background: var(--green-light);
}

.form_text .banner_text {
	max-width: 37.88rem;
}



.form_wrap {
	position: relative;
	z-index: 1;
	display: flex;
	width: 27.8125rem;
	/* height: 34rem; */
	/*padding: 2.8125rem 2.5rem 3.75rem 2.5rem;*/
	flex-direction: column;
	align-items: flex-start;
	gap: 1.875rem;
	border-radius: 3.12rem;
	overflow: hidden;
	/* background: #E4E7EC; */

	background: linear-gradient(#E4E7EC, #E4E7EC) padding-box,
		linear-gradient(to right, #9EBBFF, #728EF5) border-box;

	border: 0.163rem solid transparent;
}

.form_wrap .flex-register-form,
#flexible-registration {
	width: 100% !important;
}

.form_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_wrap .flex-register-form .flex-container .field .input input {
	padding: 0.938rem 1.25rem !important;
	height: 3.75rem !important;
	font-size: 1.38rem !important;
}



.flex-register-form .flex-container .field .select input {
	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;
}

.form_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 {
	padding-left: 1rem !important;
	padding-top: 0.313rem !important;
	font-size: 1.1rem !important;
}




.flex-register-form .flex-container .field .checkbox .checkbox__input+.fa {
	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;

	/* display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem; */

}

/* .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);
} */

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



/* ////////////////////////////////////////////////// */
footer {
	padding: 1.88rem 0;

}

/* /////////////////////////////////////////////// */
.f-top-wrap {
	padding: 3.125rem 0;
}

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

.f-col {
	width: 50%;
}

.f_title {
	font-weight: 700;
	font-size: 1.12rem;
	line-height: 130%;
	color: var(--dark-blue);
	padding-bottom: 1.25rem;
	margin-bottom: 1.25rem;
	border-bottom: 0.07rem solid #728EF5;
}

.f-top-wrap p,
.f-center-wrap p {
	font-weight: 300;
	font-size: 1rem;
	line-height: 130%;
	color: var(--40);
}

.f-mb-05 {
	margin-bottom: 0.5rem;
}

.f-mb-1 {
	margin-bottom: 1rem;
}

.f-center-wrap {
	padding-bottom: 5rem;
}

.f-center-wrap a {
	font-weight: 500;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: var(--blue) !important;
}

/* ///////////////////////////////////////////////////// */
.footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--blue-light-5);
	border-radius: 2.5rem;
	padding: 1.25rem 1.88rem;
	border: 0.07rem solid #728EF5;
}

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

.footer-wrap a {
	font-weight: 500;
	font-size: 1rem;
	line-height: 130%;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-align: right;
	color: var(--blue);
}
a:visited{
	color: var(--blue) !important;
}

.m-db {
	display: none;
}

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

.succes_body {
	background: var(--blue-light-5);
}

.succes_header {
	position: relative;
}

.succes_header .logo {
	text-align: center;
}
.succes_header .logo img{
	margin-bottom: 0;
}



.succes-row {
	padding: 6.25rem 0 6.875rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.title_s {
	border-radius: 1.25rem;
	padding: 0.62rem 1.56rem 0.94rem 1.56rem;

	background: linear-gradient(var(--blue-light-15), var(--blue-light-15)) padding-box, linear-gradient(to right, #9EBBFF, #9EBBFF) border-box;
	border: 0.07rem solid transparent;

	transform: rotate(-1deg);
	font-size: 1.69rem;
	line-height: 120%;
	font-weight: 600;
	color: var(--dark-blue);
	margin-bottom: 0.938rem;
}

.title_s span {
	font-weight: 700;
	color: var(--blue);
}

.text_s {
	max-width: 59.688rem;
	font-weight: 700;
	font-size: 3.12rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	text-align: center;
	color: var(--blue);
}

.text_s span {
	background: var(--blue);
    color: var(--white);
    border-radius: 1rem;
    padding: 0.2rem;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.s-footer-wrap {
	margin-top: 0;
	padding-bottom: 1.875rem;
}

.s-footer-wrap a,
.s-footer-wrap .copy {
	color: var(--30) !important;
}


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

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

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

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

	.logo {
		text-align: center;
	}

	.logo img {
		margin-bottom: 1.563rem;
	}

	/* //////////////////////////////// */
	.banner_row {
		flex-direction: column;
	}

	.banner-col {
		width: 100%;
	}

	.arrow_btn {
		display: none;
	}

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

	.banner_text,
	.banner_list ul {
		margin: 0 auto 1.938rem;
	}

	.banner-img {
		border-radius: 6.25rem;
	}

	.marquee-text p {
		font-weight: 600;
		font-size: 1.31rem;
		line-height: 130%;
	}

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

	.about {
		/* padding: 6.875rem 0 2.813rem; */
		padding: 2.813rem 0;
	}

	.big-question {
		display: none;
	}

	.about-row {
		flex-direction: column;
	}

	.about_col {
		width: 100%;
	}

	.about_item_bottom h3 br,
	.arrow_btn_2 {
		display: none;
	}

	.about_btn_wrap {
		flex-direction: column;
		gap: 1.563rem;
	}


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

	.work-row {
		padding: 2.188rem 1rem 2.813rem;
	}

	.work-wrap {
		gap: 0.625rem;
	}

	.work_item {
		width: 100%;
	}

	.work_item_100 {
		flex-direction: column;
		align-items: normal;
		gap: 1rem;
	}

	/* /////////////////////////////////////////////// */
	.quote_wrap {
		padding: 4.188rem 1rem 0;
		background-image: url(images/Image-3-m.webp);
		background-position: bottom;
	}

	.quote_text_bottom {
		max-width: max-content;
		margin-bottom: 1.563rem;
	}

	.gerchik_img {
		position: relative;
		right: -50%;
		transform: translateX(-50%);
		bottom: -1rem;
	}


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

	.advantages {
		/* padding:2.813rem 0 6.875rem; */
		padding: 2.813rem 0;
	}

	.ad_row {
		flex-direction: column;
	}

	.ad_col {
		width: 100%;
	}



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

	.form-row {
		flex-direction: column;
		gap: 2.5rem;
	}

	.arrow-form {
		display: none;
	}

	.form_wrap {
		margin: 0 auto;
	}



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

	.banner_title span::before{
		content: none;
	}

}



@media (max-width: 480px) {

	html {
		font-size: 3.951vw;
	}

	.logo img {
		width: 9.563rem;
	}

	.btn {
		width: -webkit-fill-available;
	}

	.banner-col-left {
		padding: 1.25rem 1rem 2.813rem;
	}

	.banner_title {
		font-size: 1.88rem;
	}

	.banner_title span::before {
		top: 4.2rem;
		width: 1rem;
		height: 1rem;
	}

	.banner_text {
		font-size: 1.31rem;
		margin: 0 0 1.938rem;
		max-width: 18.81rem;
	}

	.banner_text span {
		display: block;
	}

	.banner_list ul {
		padding: 1.25rem 0.88rem;
		font-size: 1.19rem;
	}

	.banner_list li::before {
		width: 1.875rem;
		height: 1.875rem;
	}

	.banner_list span {
		display: inline;
	}


	.banner_btn {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		font-size: 1.38rem;
		padding: 1.69rem 0rem;
		justify-content: center;
	}

	.btn span {
		display: none;
	}

	.title {
		font-size: 1.69rem;
	}

	.about-row-text .title {
		max-width: 20rem;
	}

	.about-text,
	.about-bottom-text {
		font-size: 1.19rem;
	}

	.about_item,
	.about_item_bottom {
		border-radius: 2.5rem;
		padding: 1.25rem 0.94rem;
	}

	.faza {
		font-size: 1.19rem;
		padding: 0.31rem 0.94rem;
	}

	.about_item h4,
	.about_item_text,
	.about_item_bottom p {
		font-size: 1.19rem;
	}

	.about_item_img {
		border-radius: 2.5rem;
	}

	.about_item_bottom h3 {
		font-size: 1.69rem;
	}

	.work-row {
		border-radius: 2.5rem;
	}

	.work_item {
		border-radius: 1.88rem;
		padding: 1.25rem 0.94rem 1.56rem;
	}

	.work-title {
		font-size: 1.25rem;
	}

	.work_text {
		font-size: 1.19rem;
	}

	.quote_wrap {
		border-radius: 2.5rem;
		padding: 2.188rem 1rem 0;
	}

	.quote_text {
		font-size: 1.25rem;
		margin-bottom: 1.563rem;
	}

	.quote_text br {
		display: none;
	}

	.quote_text_bottom {
		font-size: 1.19rem;
	}

	.gerchik_img {
		width: 100%;
	}

	.ad_item {
		border-radius: 1.88rem;
		padding: 1.25rem 0.94rem;
	}

	.step {
		border-radius: 1.25rem;
		padding: 0.31rem 0.94rem;
		font-size: 1.19rem;
		margin-bottom: 0.625rem;
	}

	.ad_text h5,
	.ad_text p {
		font-size: 1.19rem;
	}

	.form-row {
		padding: 2.188rem 1rem;
		border-radius: 3.75rem;
	}

	.form_title {
		font-size: 1.88rem;
		margin-bottom: 1.563rem;
	}

	.form_title::after {
		top: 6.4rem;
		height: 1.1rem;
	}

	.form_title::before {
		top: 8.9rem;
		height: 1.1rem;

	}

	.form_text .banner_text {
		border-radius: 1.56rem;
		padding: 0.94rem 1.12rem 1.25rem 1.12rem;
		font-size: 1.25rem;
		margin-bottom: 0;
	}
/* 
	/////////////////////////////// */
	.f-top-wrap{
		padding: 0.938rem 0 2.813rem;
	}
	.f__inner_row{
		flex-direction: column;
	}
	.f-col{
		width: 100%;
	}
	.f-center-wrap{
		padding-bottom: 2.813rem;
	}
	.copy{
		text-align: center;
	}
	.form_wrap {
		width: 100%;
	}

	.footer-wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: column;
		gap: 1rem;
	}


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


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


	.title_s {
		font-size: 1.31rem;
		text-align: center;
	}

	.text_s {
		font-size: 1.88rem;
	}



}