@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Medium.eot');
	src: url('../fonts/Gilroy-Medium.eot?#iefix')format('embedded-opentype'),
		 url('../fonts/Gilroy-Medium.woff')format('woff'),
		 url('../fonts/Gilroy-Medium.ttf')format('truetype');
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Bold.eot');
	src: url('../fonts/Gilroy-Bold.eot?#iefix')format('embedded-opentype'),
		 url('../fonts/Gilroy-Bold.woff')format('woff'),
		 url('../fonts/Gilroy-Bold.ttf')format('truetype');
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Black.eot');
	src: url('../fonts/Gilroy-Black.eot?#iefix')format('embedded-opentype'),
		 url('../fonts/Gilroy-Black.woff')format('woff'),
		 url('../fonts/Gilroy-Black.ttf')format('truetype');
	font-style: normal;
	font-weight: 900;
	font-display: swap;
}

:root {
	--white: #FFF;
	--black: #2A3964;
	--blue: #015EE9;
	--red: #D95643;
	--light_gray: #F4F9FF;
	--boring: #7D92B2;
	--blue_opacity: rgba(1, 94, 233, .04);
	--blue_opacity_hover: rgba(1, 94, 233, .08);

	--big: 18px;
	--h2: 48px;
	--h3: 27px;
	--medium_text: 18px;

	--padding: 80px;

	--inner_g: 40px;
	--grid_2: 2;
	--grid_3: 3;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;

	-webkit-text-size-adjust: none;
	   -moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
			text-size-adjust: none;
}

html {
	display: block;
}

body {
	margin: 0;
	padding: 0;
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	font-family: 'Gilroy', sans-serif;
	line-height: 1.15;
	background-color: var(--corp);

	-webkit-font-smoothing: subpixel-antialiased;
}

body.padding {
	padding-top: 88px;
}

img {
	display: block;

	width: 100%;
	height: auto;
}

a,
a:hover {
	text-decoration: none;
	cursor: pointer;
}

h5 {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.25;
}

li {
	list-style-type: none;
}

.bone {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
}

.error {
	display: block;

	width: 100%;
	padding: 0 20px;
	text-align: left;
}

.error span {
	display: block;

	padding-top: 4px;
	color: var(--red);
	font-size: 12px;
}



/* global */

.global_header {
	padding-bottom: 40px;
}

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

.global_title {
	color: var(--black);
	font-size: var(--h2);
	font-weight: 900;
	line-height: 140%;
}

.global_descr {
	margin-top: 12px;
	color: var(--black);
	font-size: var(--medium_text);
	line-height: 160%;
}

/* global */



/* button */

.button {
	display: inline-block;
	position: relative;

	height: 48px;
	padding: 0 28px;
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
	font-family: 'Gilroy', sans-serif;
	text-align: center;
	text-decoration: none;
	line-height: 48px;
	white-space: nowrap;
	background-color: var(--blue);
	box-shadow: none;
	border-radius: 12px;
	cursor: pointer;

	transition: color .23s ease-out, background-color .23s ease-out, box-shadow .23s ease-out, transform .23s ease-out;

	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
		 -o-user-select: none;
			user-select: none;
}

.button:hover {
	box-shadow: 0 20px 20px -12px rgba(49, 94, 251, .72);
}

.button:active {
	line-height: 50px;
}

/* - - - black */

.button.black {
	background-color: #121F44;
}

.button.black:hover {
	box-shadow: 0 20px 20px -12px rgba(18, 31, 68, .72);
}

/* - - - load */

.button.load {
	background-color: var(--blue);
	background-image: url('../images/load.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 50px;
}

/* button */



/* input */

.input {
	display: block;

	width: 100%;
	height: 48px;
	padding: 12px 20px 12px;
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	font-family: 'Gilroy', sans-serif;
	line-height: 19px;
	background-color: var(--light_gray);
	border: 1px solid var(--blue_opacity_hover);
	border-radius: 12px;
	box-shadow: none;
	outline: none;

	transition: background-color .23s ease-out, border-color .23s ease-out, box-shadow .23s ease-out;

	-webkit-appearance: none;
}

.input.err {
	background-color: var(--white);
	border-color: var(--red);
}

.input:hover {
	border-color: var(--boring);
}

.input:focus {
	background-color: var(--white);
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(50, 94, 251, .1);
}

/* - - - black */

.input.black {
	color: var(--white);
	background-color: rgba(0, 0, 0, .16);
	border-color: rgba(0, 0, 0, .24);
}

.input.black:hover {
	border-color: rgba(255, 255, 255, .8);
}

.input.black:focus {
	color: var(--black);
	background-color: var(--white);
	border-color: var(--white);
}

/* - - - placeholder */

.input:-moz-placeholder {
	color: var(--boring) !important;
	line-height: normal;
}

.input::-webkit-input-placeholder {
	color: var(--boring);
	line-height: normal;
}

::-webkit-input-placeholder {
	color: var(--boring);
	line-height: normal;
}

:-ms-input-placeholder {
	color: var(--boring);
	line-height: normal;
}

::-moz-placeholder {
	color: var(--boring);
	line-height: normal;
}

:-moz-placeholder {
	color: var(--boring);
	line-height: normal;
}

/* input */



/* checkbox */

.checkbox_label {
	display: block;
	position: relative;

	padding-left: 28px;
	color: var(--black);
	font-size: 16px;
	line-height: 140%;
	cursor: pointer;

	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
}

.checkbox_label input {
	position: absolute;

	width: 0;
	height: 0;
	cursor: pointer;
	opacity: 0;
}

.checkbox_check {
	position: absolute;
	top: 0;
	left: 0;

	width: 20px;
	height: 20px;
	background-color: var(--light_gray);
	border: 2px solid var(--boring);
	border-radius: 6px;

	transition: border-color .23s ease-out;
}

.checkbox_label:hover input ~ .checkbox_check {
	border-color: var(--blue);
}

.checkbox_label input:checked ~ .checkbox_check {
	border-color: var(--blue);
}

.checkbox_check:after {
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;

	background-color: var(--white);
	border-radius: 50%;
	z-index: 1;
}

.checkbox_label input:checked ~ .checkbox_check:before {
	content: '';
	position: absolute;
	top: 5px;
	left: 4px;
	right: 4px;
	bottom: 4px;

	background-image: url('../images/icons/check.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px auto;
	z-index: 2;
}

.checkbox_label a {
	color: var(--blue);
}

/* checkbox */



/* learn */

.learn {
	position: relative;

	padding-left: 24px;
	color: var(--blue);
	font-size: 16px;
	font-style: italic;
	line-height: 16px;
	cursor: pointer;
}

.learn:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

	width: 16px;
	height: 16px;
	background-image: url('../images/icons/learn.blue.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

/* - - - white */

.learn.white {
	color: var(--white);
}

.learn.white:before {
	background-image: url('../images/icons/learn.white.svg');
}

/* learn */



/* header */

.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;

	padding: 20px 0;
	background-color: var(--light_gray);
}

.header.fixed {
	position: fixed;

	padding: 8px 0;
	opacity: 1;
	z-index: 999;

	transition: top .23s ease-out;
}

.header.hidden {
	top: -80px;

	opacity: 0;
}

.header_group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.header_logo {
	width: 76px;
}

.header_logo img {

}

.header_nav {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;

	padding: 0 40px;
}

.header_nav a {
	display: block;

	padding: 12px 20px;
	color: var(--blue);
	font-size: 16px;
	border-radius: 12px;

	transition: background-color .23s ease-out;
}

.header_nav a:hover {
	background-color: var(--blue_opacity);
}

.header_nav a:active {
	background-color: var(--blue_opacity_hover);
}

.header_contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
}

.header_socs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.header_socs a {
	display: block;

	width: 48px;
	padding: 12px;
	background-color: var(--blue_opacity);
	border-radius: 12px;

	transition: background-color .23s ease-out;
}

.header_socs a:hover {
	background-color: var(--blue_opacity_hover);
}

.header_socs a:active {
	padding: 13px 12px 11px;
}

.header_socs a img {

}

.header_button {

}

/* header */



/* general */

.general {
	overflow: hidden;
	position: relative;

	padding: var(--padding) 0 0;
	box-shadow: 0 16px 36px rgba(143, 20, 53, .12);
}

.general_group {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.general_block {
	position: relative;

	width: calc(50% - 40px);
}

.general_circle {
	position: relative;

	z-index: 1;
}

.general_circle:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;

	width: 1000px;
	height: 1000px;
	background: radial-gradient(50% 50% at 50% 50%, #FFD699 0%, rgba(255, 255, 255, 0) 100%);

	transform: translate3d(-50%, -40%, 0);
}

.general_memoji_0 {
	pointer-events: none;
	position: absolute;
	left: -56px;
	bottom: 40px;

	width: 100px;
	z-index: 99;
}

.general_memoji_1 {
	pointer-events: none;
	position: absolute;
	top: -64px;
	right: -64px;

	width: 120px;
	z-index: 99;
}

.general_memoji_2 {
	pointer-events: none;
	position: absolute;
	top: -40px;
	right: -64px;

	width: 84px;
	z-index: 99;
}

.general_memoji_3 {
	pointer-events: none;
	position: absolute;
	right: -40px;
	bottom: 40px;

	width: 256px;
	z-index: 99;
}

.general_slider {
	background-color: var(--white);
	border: 8px solid var(--black);
	border-radius: 20px;
}

.general_slide img {
	border-radius: 12px;
}

.general_stand {
	position: relative;

	z-index: 2;
}

.general_block {
	position: relative;

	z-index: 2;
}

.general_block:last-child {
	padding-bottom: 40px;
}

.general_title {
	font-size: 32px;
	font-weight: 900;
	line-height: 140%;
}

.general_title span {
	position: relative;

	font-weight: 400;
}

.general_title span:before {
	content: '';
	position: absolute;
	top: 8px;
	left: -8px;
	right: -8px;
	bottom: 0;

	background-image: url('../images/underline.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.general_descr {
	margin-top: 12px;
	font-size: var(--medium_text);
	line-height: 160%;
}

.general_learn {
	margin-top: 12px;
}

.general_form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;

	margin-top: 20px;
}

.general_form_input {

}

.general_form_button {

}

.general_note {
	margin-top: 8px;
	color: var(--boring);
	font-size: 14px;
	font-style: italic;
}

.general_partner {
	display: inline-block;
	position: relative;

	margin-top: 20px;
	padding: 20px 12px 20px 40px;
	color: #9D9D9C;
	font-size: 12px;
	background-color: var(--white);
	border: 1px solid rgba(157, 157, 156, .4);
	border-radius: 12px;
}

.general_partner:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 12px;

	width: 16px;
	height: 28px;
	background-image: url('../images/in5.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* general */



/* who */

.who {
	padding: var(--padding) 0;
	background-color: #FFD5CF;
	background-image: url('../images/who.bg.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.who_group {

}

.who_header {

}

.who_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.who_block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 40px;

	width: calc(100% / 3 - 80px / 3);
	padding: 24px 28px;
	background-color: var(--white);
	border-radius: 20px;
	box-shadow: 0 16px 36px rgba(217, 86, 67, .12);
}

.who_block_header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.who_block_icon {
	width: 60px;
}

.who_block_icon img {

}

.who_block_title {
	min-width: 240px;
	color: var(--black);
	font-size: var(--h3);
	font-weight: 700;
}

.who_block_descr {
	flex-grow: 1;
	display: flex;
	align-items: flex-end;

	color: var(--black);
	font-size: var(--medium_text);
	line-height: 160%;
}

/* who */




/* edges */

.edges {
	position: relative;

	padding: var(--padding) 0;
	background-color: #E7D3FF;
	box-shadow: 0 16px 36px rgba(20, 70, 143, .12);
}

.edges_group {

}

.edges_header {

}

.edges_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.edges_block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 40px;

	width: calc(25% - 15px);
	padding: 28px 28px 20px;
	background-color: var(--white);
	border-radius: 20px;
	box-shadow: 0 16px 36px #D9BAFF;
}

.edges_icon {
	width: 60px;
}

.edges_icon img {

}

.edges_descr {
	flex-grow: 1;
	display: flex;
	align-items: flex-end;

	color: var(--black);
	font-size: 16px;
	line-height: 160%;
}

/* edges */



/* start */

.start {
	padding: var(--padding) 0;
	background-color: var(--light_gray);
}

.start_group {

}

.start_header {

}

.start_banner {
	padding: 60px 80px;
	background-color: var(--blue);
	background-image: url('../images/start.bg.png');
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 20px;
	box-shadow: 0 16px 36px rgba(20, 70, 143, .12);
}

.start_banner_title {
	color: var(--white);
	font-size: var(--h3);
	font-weight: 700;
	line-height: 140%;
}

.start_banner_descr {
	color: var(--white);
	margin-top: 4px;
	font-size: var(--medium_text);
	line-height: 160%;
}

.start_banner_price {
	margin-top: 20px;
	color: var(--white);
	font-size: 21px;
	font-weight: 700;
	line-height: 160%;
}

.start_banner_price span {
	font-weight: 400;
}

.start_banner_learn {
	margin-top: 4px;
}

.start_banner_form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;

	margin-top: 20px;
}

.start_banner_input {

}

.start_banner_button {

}

.start_banner_note {
	margin-top: 8px;
	color: var(--white);
	font-size: 14px;
	font-style: italic;
}

/* start */



/* footer */

.footer {
	padding: 32px 0;
}

.footer_group {

}

.footer_blocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

.footer_block {

}

.footer_logo {
	width: 76px;
}

.footer_logo img {

}

.footer_descr {
	margin-top: 12px;
	color: var(--black);
	font-size: 12px;
	line-height: 160%;
}

.footer_descr span {
	font-weight: 700;
}

.footer_partner {

}

.footer_partner {
	display: inline-block;
	position: relative;

	margin-top: 12px;
	padding-left: 28px;
	color: #9D9D9C;
	font-size: 12px;
	line-height: 28px;
}

.footer_partner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

	width: 16px;
	height: 28px;
	background-image: url('../images/in5.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.footer_socs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.footer_socs a {
	display: block;

	width: 48px;
	padding: 12px;
	background-color: var(--blue_opacity);
	border-radius: 12px;

	transition: background-color .23s ease-out;
}

.footer_socs a:hover {
	background-color: var(--blue_opacity_hover);
}

.footer_socs a:active {
	padding: 13px 12px 11px;
}

.footer_button {
	margin-top: 24px;
}

.footer_copy {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;

	padding-top: 32px;
}

.footer_copy_links {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.footer_copy_links a {
	color: var(--blue);
	font-size: 16px;
	font-weight: 700;
}

.footer_copy_label {
	color: var(--boring);
	font-size: 16px;
}

/* footer */



/* plan */

.plan {
	padding: 36px 40px 40px;
}

.plan_title {
	color: var(--black);
	font-size: var(--h3);
	font-weight: 700;
	line-height: 140%;
}

.plan_subtitle {
	margin-top: 4px;
	color: var(--black);
	font-size: var(--medium_text);
	line-height: 160%;
}

.plan_price {
	margin-top: 24px;
	color: var(--black);
	font-size: var(--medium_text);
	font-weight: 700;
	line-height: 160%;
}

.plan_price span {
	font-weight: 400;
}

.plan_try {
	display: flex;

	margin-top: 24px;
}

.plan_ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 8px;

	margin-top: 24px;
}

.plan_li {
	position: relative;

	padding-left: 20px;
	color: var(--black);
	font-size: 14px;
	line-height: 160%;
}

.plan_li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;

	width: 8px;
	height: 8px;
	background-color: #67BE31;
	border-radius: 50%;
}

.plan_form {
	margin-top: 24px;
}

.plan_input {

}

.plan_button {
	margin-top: 12px;
}

.plan_note {
	margin-top: 8px;
	color: var(--boring);
	font-size: 14px;
	font-style: italic;
	text-align: center;
}

/* plan */



/* final */

.final {
	padding: 36px 40px 40px;
}

.final_pretitle {
	color: var(--black);
	font-size: var(--medium_text);
}

.final_title {
	margin-top: 4px;
	color: var(--black);
	font-size: var(--h3);
	font-weight: 700;
	line-height: 140%;
}

.final_form {
	margin-top: 24px;
}

.final_inputs {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.final_input {
	width: calc(50% - 8px);
}

.final_tel {
	margin-top: 16px;
}

.final_checkbox {
	margin-top: 16px;
}

.final_button {
	margin-top: 16px;
}

/* final */



/* thanks */

.thanks {
	padding: 36px 40px 40px;
}

.thanks_icon {
	width: 156px;
	margin: 0 auto;
}

.thanks_icon img {

}

.thanks_title {
	margin-top: 24px;
	color: var(--blue);
	font-size: var(--h3);
	font-weight: 700;
	text-align: center;
	line-height: 140%;
}

.thanks_subtitle {
	margin-top: 4px;
	color: var(--black);
	font-size: 21px;
	font-weight: 700;
	text-align: center;
	line-height: 160%;
}

.thanks_descr {
	margin-top: 24px;
	color: var(--black);
	font-size: var(--medium_text);
	text-align: center;
	line-height: 160%;
}

.thanks_note {
	margin-top: 24px;
	color: var(--boring);
	font-size: var(--medium_text);
	font-style: italic;
	text-align: center;
	line-height: 160%;
}

.thanks_note a {
	color: var(--blue);
	font-weight: 700;
}

/* thanks */



/* texter */

.texter {
	padding: var(--padding) 0;
}

.texter_group {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;

	max-width: 800px;
	margin: 0 auto;
}

.texter_button {
	display: flex;
}

.texter_group h1 {
	font-size: var(--h2);
	font-weight: 700;
}

.texter_group h2 {
	font-size: var(--h3);
	font-weight: 700;
}

.texter_group p {
	font-size: var(--medium_text);
	line-height: 160%;
}

.texter_group p a {
	color: var(--blue);
}

.texter_group ul {
	padding-left: 20px;
	font-size: var(--medium_text);
	line-height: 160%;
}

.texter_group li {
	color: var(--blue);
}

.texter_group li span {
	color: var(--black);
}

/* texter */



/* animation */

.animation_opacity {
	opacity: 0;

	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_opacity.active {
	opacity: 1;
}

.animation_top {
	opacity: 0;

	transform: translate3d(0, 40px, 0);
	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_top.active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_right {
	opacity: 0;

	transform: translate3d(-40px, 0, 0);
	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_right.active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

/* animation */



/* Purple. */

.purple {
	overflow: hidden;
	padding: 80px 0;
	background-color: #E7D3FF;
}

.purple_title {
	max-width: 760px;
	line-height: 1.4;
}

.purple_title:not(:first-child) {
	margin-top: 80px;
}

.purple_caption {
	margin-top: 12px;
}

.purple_list {
	margin-top: 48px;
}

.purple_li {
	--size: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	grid-gap: 28px;
	padding: 28px;
	background-color: var(--white);
	border-radius: 24px;
	box-shadow: 0px 16px 36px #D9BAFF;
}

.purple_li img {
	width: var(--size);
	min-width: var(--size);
	height: var(--size);
	object-fit: contain;
	object-position: center;
}

.purple_caption {
	margin-top: 12px;
	font-size: var(--big);
}

.purple_rates {
	align-items: flex-start;

	margin-top: 48px;
}

.purple_rate {
	display: grid;
	grid-gap: 24px;
	position: relative;
	padding: 36px 40px 40px;
	background-color: var(--white);
	border-radius: 24px;
	box-shadow: 0px 16px 36px #D9BAFF;
}

.purple_rate._ex {
	border: 4px solid #015EE9;
}

.purple_rate_icon {
	pointer-events: none;
	--size: 140px;
	position: absolute;
	top: -32px;
	right: -44px;
	width: var(--size);
	height: var(--size);
}

.purple_rate_caption {
	font-size: var(--medium_text);
}

.purple_rate_desc {
	font-size: var(--medium_text);
	line-height: 180%;
}

.purple_rate_name {
	margin: 0 0 12px 0;
}

.purple_rate_list {
	display: grid;
	grid-gap: 8px;
}

.purple_rate_list li {
	--size: 8px;
	position: relative;
	padding-left: 20px;
	font-size: 15px;
	line-height: 160%;
}

.purple_rate_list li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;

	width: var(--size);
	height: var(--size);
	background: rgba(103, 190, 49, 1);
	border-radius: 50%;
}

/* Purple. */


/* Grid. Flex. */

[class*=__grid] {
	display: grid;
	grid-gap: var(--inner_g);
}

.__grid-twoo {
	grid-template-columns: repeat(var(--grid_2), 1fr);
}

.__grid-three {
	grid-template-columns: repeat(var(--grid_3), 1fr);
}

.__grid-four {
	grid-template-columns: repeat(var(--grid_4), 1fr);
}

[class*=__flex] {
	display: flex;
}

.__flex-align {
	align-items: center;
}

.__flex-start {
	align-items: flex-start;
	justify-content: space-between;
}

.__flex-end {
	align-items: flex-end;
	justify-content: space-between;
}

.__flex-center {
	align-items: center;
	justify-content: space-between;
}

/* Grid. Flex. */



@media only screen and (max-width: 1340px) {
	.general_title br {
		display: none;
	}
}

@media only screen and (max-width: 1240px) {
	:root {
		--h2: 38px;
		--h3: 21px;
		--medium_text: 16px;
	}

	.who_blocks {
		gap: 20px;
	}

	.who_block {
		width: calc(100% / 3 - 40px / 3);
	}

	.edges_block {
		width: calc(100% / 3 - 40px / 3);
	}

	.general_memoji_0,
	.general_memoji_1,
	.general_memoji_2,
	.general_memoji_3 {
		display: none;
	}
}

@media only screen and (max-width: 1140px) {
	.who_block_title {
		min-width: 100%;
	}
}

@media only screen and (max-width: 940px) {
	:root {
		--padding: 40px;
	}

	.bone {
		max-width: 648px;
		padding: 0 24px;
	}

	.header_nav {
		display: none;
	}

	.header_socs {
		display: none;
	}

	.general_group {
		gap: 0;
	}

	.general_block {
		width: 100%;
	}

	.general_circle {
		order: 1;
	}

	.general_circle:before {
		transform: translate3d(-50%, -20%, 0);
	}

	.who_block {
		width: 100%;
	}

	.edges_block {
		width: 100%;
	}

	.start_banner {
		padding: 60px 80px 360px;
	}

	.footer_descr br {
		display: none;
	}
}

@media only screen and (max-width: 960px) {
	:root {
		--h2: 32px;
	}

	.general_block:last-child {
		text-align: center;
	}

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

	.general_form_input {
		width: 100%;
	}

	.general_form_button {
		width: 100%;
	}

	.who_block {
		gap: 24px;

		padding: 20px 24px;
	}

	.who_block_icon {
		width: 44px;
	}

	.who_block_title {
		width: calc(100% - 60px);
		min-width: 0;
	}

	.edges_block {
		gap: 20px;

		padding: 24px 24px 20px;
	}

	.edges_icon {
		width: 44px;
	}

	.start_banner {
		padding: 40px 24px 280px;
		text-align: center;
	}

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

	.start_banner_input {
		width: 100%;
	}

	.start_banner_button {
		width: 100%;
	}

	.footer_copy_links {
		gap: 12px;
	}

	.plan {
		padding: 40px 24px 24px;
	}

	.final {
		padding: 40px 24px 24px;
	}

	.final_input {
		width: 100%;
	}

	.thanks {
		padding: 40px 24px 24px;
	}
}


@media only screen and (max-width: 1200px) {
    .purple_rates {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .purple_rate_list {
        display: grid;
        align-items: center;
        grid-template-columns: repeat(var(--grid_2), 1fr);
        grid-gap: 12px;
    }
}

@media only screen and (max-width: 900px) {
	/* Root. */

	:root {
		/* grid. */
		/*--grid_3: var(--grid_2);*/
		/* grid. */
	}
}

@media only screen and (max-width: 600px) {
	/* Root. */

	:root {
		/* grid. */
		--grid_2: 1;
		/* grid. */
		--inner_g: 20px;
	}
}