/* Typography. */

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

@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-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: 500;
	font-display: swap;
}

/* Typography. */

/* Root. */

:root {
	/* icon. */
	--icon_size: 24px;
	/* icon. */
	/* font-size. */
	--big: 18px;
	--body: 16px;
	--family: 'Gilroy', sans-serif;
	/* font-size. */
	/* color. */
	--color: var(--black);
	--bg: var(--white);
	--white: #fff;
	--black: #000;
	--primary: #015EE9;
	/* color. */
	/* btn.*/
	--btn_height: 48px;
	--btn_inner: 28px;
	--btn_color: var(--white);
	--btn_font: var(--body);
	--btn_bg: var(--primary);
	--btn_shadow: var(--primary);
	--btn__lh: 0px;
	/* btn.*/
	/* inner. */
	--inner_g: 40px;
	--bone: 16px;
	--bone_w: 1288px;
	--bone_size: max((100vw - var(--bone_w) - var(--scroll)) / 2, var(--bone));
	/* inner. */
	/* grid. */
	--grid_2: 2;
	--grid_3: 3;
	--grid_4: 4;
	/* grid. */
}

/* Root. */

/* Null. */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: var(--color);
}

html {
	display: block;
}

body {
	margin: 0;
	padding: 92px 0 0;
	color: var(--color);
	font-size: var(--body);
	font-weight: 400;
	font-style: normal;
	line-height: 1.6;
	font-family: var(--family);
	background-color: var(--bg);
}

img,
svg {
	display: block;
	width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

li {
	list-style-type: none;
}

input,
button,
textarea {
	display: block;
	font-family: var(--family);
	background-color: transparent;
	border: 0 none;
	box-shadow: none;
	appearance: none;
	outline: none;
	resize: none;
}

input::placeholder,
textarea::placeholder {
	color: var(--color);
	font-family: var(--family);
}

/* Null. */

/* Global. */

html.hidden {
	overflow: hidden;
}

.bone {
	width: 100%;
	max-width: calc(var(--bone_w) + var(--bone) * 2);
	margin: 0 auto;
	padding: 0 var(--bone);
}

h1,
h2 {
	font-size: 54px;
	font-weight: 900;
	line-height: 1.25;
}

h3 {
	font-size: 42px;
	font-weight: 900;
	line-height: 1.25;
}

h4 {
	font-size: 42px;
	font-weight: 900;
	line-height: 1.25;
}

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

h6 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
}

/* Global. */

/* 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. */

/* Icon. */

[class*=__icon-] {
	position: relative;
}

[class*=__icon-]:before {
	content: '';
	position: absolute;
	top: calc(50% - var(--icon_size) / 2);
	width: var(--icon_size);
	height: var(--icon_size);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* Icon. */

/* Button. */

.__btn {
	--color: var(--btn_color);
	display: inline-block;
	position: relative;
	min-width: min(var(--btn_w), 100%);
	height: var(--btn_height);
	padding: 0 var(--btn_inner);
	font-size: var(--btn_font);
	text-align: center;
	font-weight: 700;
	line-height: calc(var(--btn_height) - var(--btn__lh));
	background-color: var(--btn_bg);
	border-radius: 12px;
	cursor: pointer;
	transition: box-shadow .43s;
}

.__btn:hover {
	box-shadow: 0 4px 32px var(--btn_shadow);
}

.__btn._black {
	--btn_shadow: var(--black);
	background-color: var(--black);
}

.__btn._light {
	--btn_shadow: #EAF3FE;
	--color: var(--primary);
	background-color: #EAF3FE;
}

/* Button. */

/* Animation. */

.__anim {
	opacity: 0;
	transition: transform .83s, opacity .83s;
}

.__anim._slide-x {
	transform: translate3d(-100%, 0px, 0px);
}

.__anim._slide-x_r {
	transform: translate3d(100%, 0px, 0px);
}

.__anim._slide-y {
	transform: translate3d(0, 50px, 0px);
}

.__anim._anim_act {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

._anim-del_23 {
	transition-delay: .43s;
}

._anim-del_43 {
	transition-delay: .43s;
}

._anim-del_83 {
	transition-delay: .83s;
}

/* Animation. */

/* Hover_line. */

[class*=__hover_line] {
	--line_l: 0px;
	--line_r: 0px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	line-height: 1.4;
	outline: 0 none !important;
	white-space: nowrap;
	transition: color .43s;
}

[class*=__hover_line]:after {
	content: '';
	position: absolute;
	left: var(--line_l);
	right: 100%;
	bottom: 0;
	border-bottom: 1px solid var(--color);
	transition: right .23s ease-out;
}

[class*=__hover_line]:hover:after,
.__hover_line-active:after {
	right: var(--line_r);
}

.__hover_line-active:hover:after {
	right: 100%;
}

/* Hover_line. */

/* Slider. */

.swiper-container {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	min-height: 100%;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
}

.swiper-arrows {
	--size: 44px;
	position: absolute;
	top: calc(50% - var(--size) / 2);
	left: 0;
	right: 0;
	z-index: 10;
}

.swiper-arrows svg {
	width: var(--size);
	height: var(--size);
	cursor: pointer;
}

.swiper-arrows rect,
.swiper-arrows path {
	transition: fill .43s;
}

.swiper-arrows svg:hover rect {
	fill: #FFD5CF;
}

.swiper-arrows svg:hover path {
	fill: var(--white);
}

/* Slider. */

/* Header. */

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

	padding: 20px 0;
	background-color: #F4F9FF;
	z-index: 10;

	transition: padding .23s ease-out, transform .23s ease-out;
}

.header.fixed {
	padding: 8px 0;
}

.header.hide {
	transform: translate3d(0, -100%, 0);
}

.header_logo {
	max-width: 76px;
}

.header_nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.header_nav a {
	color: var(--primary);
	padding: 12px 20px;
	border-radius: 12px;
	cursor: pointer;

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

.header_nav a:hover {
	background-color: #EAF3FE;
}

.header_btn {
	grid-gap: 12px;
}

/* Header. */

/* Footer. */

.footer {
	padding: 40px 0 24px;
}

.footer_net {
	gap: 16px 24px;

	margin-top: 24px;
}

.footer_hrefs {
	--color: #015EE9;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 4px 32px;
	font-weight: 700;
}

.footer_cop {
	color: #7D92B2;
	font-weight: 500;
}

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

.footer_col.full {
	flex-grow: 1;
}

.footer_col.right {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
}

.footer_logo {
	max-width: 120px;
}

.footer_logo img {

}

.footer_descr {
	margin-top: 28px;
	font-size: 12px;
}

.footer_descr strong {

}

.footer_nav {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.footer_nav a {
	color: var(--primary);
}

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

.footer_socs a {
	padding: 12px;
	background-color: #F4F9FF;
	border-radius: 12px;

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

.footer_socs a:hover {
	background-color: #EAF3FE;
}

.footer_socs a img {
	width: 28px;
}

.footer_btn {

}

/* Footer. */

/* Master. */

.master {
	--bone_w: 1304px;
	overflow: hidden;
	position: relative;
	padding-top: 80px;
	box-shadow: 0px 16px 36px rgba(143, 89, 20, 0.13);
	z-index: 2;
}

.master:before {
	--size: 1152px;
	content: '';
	position: absolute;
	left: calc(50% - var(--size) / 2);
	bottom: calc(var(--size) / -2);
	width: var(--size);
	height: var(--size);
	opacity: .6;
	background: radial-gradient(50% 50% at 50% 50%, #FFD699 0%, rgba(255, 255, 255, 0) 100%);
	z-index: -1;
}

.master_title {
	text-align: center;
}

.master_caption {
	margin-top: 20px;
	font-size: var(--big);
	opacity: 0.4;
	text-align: center;
}

.master_caption.__anim:not(._anim_act) {
	opacity: 0;
}

.master_net_wrapper {
	position: relative;
	padding: 80px 0;
	box-shadow: inset 0px 16px 36px rgba(20, 70, 143, 0.13);
	background-color: #FFF1C1;
	z-index: 1;
}

.master_net {
	grid-gap: 28px;
}

.master_line {
	display: flex;
	gap: 16px;
}

.master_line_icon {
	--size: 60px;
	width: var(--size);
	min-width: var(--size);
	height: var(--size);
	padding: 14px;
	border-radius: 16px;
}

.master_in5 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;

	margin-top: 20px;
	padding: 20px;
	color: #9D9D9C;
	line-height: 110%;
}

.master_in5 img {
	width: 40px;
}

.master_line_name {
	font-size: var(--big);
	font-weight: 700;
}

.master_line_text {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 500;
}

.master_note {
	margin-top: 8px;
	color: #7D92B2;
	font-size: 14px;
	font-style: italic;
	text-align: center;
}

.master_btn {
	justify-content: center;
	gap: 12px;

	margin-top: 32px;
	text-align: center;
}

.master_images {
	position: relative;
	margin-top: 72px;
}

.master_image {
	max-width: 600px;
	margin: 0 auto;
}

.master_img {
	--size: 120px;
	position: absolute;
	width: var(--size);
	height: var(--size);
}

.master_img {
	z-index: 1;
}

.master_img._i1 {
	top: -52px;
	left: 172px;
}

.master_img._i2 {
	top: -24px;
	left: 0;
}

.master_img._i3 {
	top: 30%;
	left: 232px;
}

.master_img._i4 {
	top: 40%;
	left: 100px;
}

.master_img._i5 {
	top: 60%;
	left: 192px;
}

.master_img._i6 {
	top: -60px;
	right: 172px;
}

.master_img._i7 {
	top: -52px;
	right: 0;
}

.master_img._i8 {
	top: 15%;
	right: 100px;
}

.master_img._i9 {
	top: 45%;
	right: 180px;
}

/* Master. */

/* Who. */

.who {
	position: relative;
	padding: 60px 0 80px;
	background-color: #FFD5CF;
	z-index: 1;
}

.who_bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.who_bg img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.who_title {
	text-align: center;
}

.who_caption {
	margin-top: 12px;
	text-align: center;
}

.who_items {
	margin-top: 48px;
}

.who_item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	grid-gap: 40px;
	padding: 40px 28px 24px;
	background-color: var(--white);
	border-radius: 24px;
}

.who_top {
	--size: 60px;
	display: flex;
	align-items: center;
	grid-gap: 24px;
}

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



/* Who. */

/* Demo. */

.demo {
	overflow: hidden;
	position: relative;

	--bone_w: 1032px;
	padding: 60px 0;
}

.demo:before {
	--size: 942px;
	content: '';
	position: absolute;
	top: calc(50% - var(--size) / 2);
	left: calc(50% - var(--size) / 2);
	width: var(--size);
	height: var(--size);
	background: radial-gradient(50% 50% at 50% 50%, #FFD699 0%, rgba(255, 255, 255, 0) 100%);
	z-index: -1;
}

.demo_title {
	text-align: center;
}

.demo_caption {
	margin-top: 12px;
	font-size: var(--big);
	text-align: center;
}

.demo_slider {
	overflow: hidden;
	position: relative;
	margin-top: 40px;
	padding: 0 76px;
}

.demo_slid {
	overflow: hidden;
	position: relative;
	border-radius: 24px;
	border: 1px solid #7D92B2;
}

.demo_slid img {
	width: 100%;
}

.demo_btn {
	justify-content: center;
	gap: 12px;

	margin-top: 40px;
	text-align: center;
}

/* Demo. */

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

.purple_rate_desc {
	font-size: var(--big);
}

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

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

.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. */



/* Contacts. */

.contacts_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;

	margin-top: 40px;
}

.contacts_block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;

	width: calc(50% - 20px);
	padding: 40px 28px 24px;
	background-color: var(--white);
	border-radius: 24px;
}

.contacts_company {
	font-size: var(--big);
	font-weight: 700;
	line-height: 1.25;
}

.contacts_address {

}

.contacts_label {
	color: #7D92B2;
	font-size: 13px;
	font-weight: 500;
}

.contacts_socs .contacts_label {
	margin-bottom: 8px;
}

.contacts_email a {
	color: var(--primary);
}

.contacts_support a {
	color: var(--primary);
}

.contacts_map {
	padding: 8px;
}

.contacts_map iframe {
	border-radius: 16px;
}

.contacts_demo {
	margin-top: 12px;
}

/* Contacts. */



/* Partner. */

.partner {
	padding: 60px 0;
}

.partner_title {
	text-align: center;
}

.partner_slider {
	overflow: hidden;
	position: relative;
	max-width: 1472px;
	margin: 44px auto 0;
	padding: 0 76px;
}

.partner_slide {
	overflow: hidden;
	position: relative;
	border-radius: 8px;
	background-color: #FAFCFF;
	border: 1px solid #7D92B2;
}

.partner_slide:after {
	content: '';
	display: block;
	padding-bottom: 100%;
}

.partner_slide img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(80px, 90%);
	height: min(80px, 90%);
	object-fit: contain;
	object-position: center;
	transform: translate3d(-50%, -50%, 0px);
}

/* Partner. */

/* Faq. */

.faq {
	position: relative;
	padding: 80px 0;
	box-shadow: inset 0px 16px 36px rgba(20, 70, 143, 0.13);
	background-color: #FFF1C1;
	z-index: 1;
}

.faq_bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.faq_bg img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.faq_block {
	grid-gap: 16px;
	padding-left: 80px;
	background-color: #015EE9;
	border-radius: 24px;
}

.faq_block_txt {
	flex-grow: 1;
}

.faq_block_title {
	color: var(--white);
	max-width: 748px;
}

.faq_block_subtitle {
	margin-top: 12px;
	color: var(--white);
}

.faq_block_btn {
	margin-top: 20px;
}

.faq_block_img {
	margin-top: 12px;
	max-width: 390px;
}

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

.faq_wrapper {
	position: relative;
	max-width: 936px;
	margin: 0 auto;
}

.faq_wrapper:not(:first-child) {
	margin-top: 108px;
}

.faq_top {
	grid-gap: 20px;
	margin-bottom: 40px;
}

.faq_img {
	--size: 186px;
	display: flex;
	align-items: center;
	height: 1px;
}

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

.faq_list {
	--inner: 36px;
	padding: 36px 40px;
	background-color: var(--white);
	box-shadow: 0px 16px 36px rgba(255, 189, 0, 0.13);
	border-radius: 24px;
}

.faq_li:not(:first-child) {
	margin-top: var(--inner);
	padding-top: var(--inner);
	border-top: 1px solid #7D92B3;
}

.faq_triger {
	cursor: pointer;
}

.faq_triger_img {
	--size: 44px;
	--icon_size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--size);
	height: var(--size);
	background-color: #FAFCFF;
	border-radius: 12px;
}

.faq_triger_img img {
	width: var(--icon_size);
	min-width: var(--icon_size);
	height: var(--icon_size);
	object-fit: contain;
	object-position: center;
	transition: transform .43s;
}

.faq_li.active img {
	transform: rotate(200grad);
}

.faq_content {
	display: none;
	margin-top: 20px;
}

.faq_content p + p {
	margin-top: 1em;
}

/* Faq. */

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

	.purple_rate {
		padding: 36px 20px 24px;
	}

	/* Purple. */
}

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

	.partner_slider .swiper-arrows svg {
		filter: drop-shadow(0 0 16px #00000032);
	}

	/* Partner. */
}

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

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

	/* Root. */

	/* Master. */

	.master_net {
		flex-direction: column;
		align-items: stretch;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}

	.master_line {
		padding: 20px;
		background-color: var(--white);
		border-radius: 24px;
		box-shadow: 0 16px 36px #00000032;
	}

	/* Master. */

	/* Purple. */

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

	/* Purple. */
}

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

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

	/* Root. */

	/* Global. */

	h1,
	h2 {
		font-size: 44px;
	}

	h3 {
		font-size: 36px;
	}

	h4 {
		font-size: 28px;
	}

	h6 {
		font-size: 20px;
	}

	/* Global. */

	/* Demo. */

	.demo_slider {
		padding: 0 20px;
	}

	.demo_top {
		--size: 80px;
	}

	/* Demo. */

	/* Purple. */

	.purple_title {
		max-width: 560px;
	}

	/* Purple. */

	/* Faq. */

	.faq_block_img {
		max-width: 300px;
	}

	/* Faq. */
}

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

	.who_items {
		--grid_3: 1;
	}

	/* Who. */
}

@media only screen and (max-width: 770px) {
	.header_nav,
	.header_btn .footer_socs {
		display: none;
	}

	.footer_descr br,
	.purple_title br,
	.demo_title br,
	.master_title br,
	.master_caption br {
		display: none;
	}

	/* Footer. */

	.footer_net {
		flex-direction: column;
	}

	/* Footer. */

	/* Master. */

	.master {
		padding-top: 40px;
	}

	.master_img {
		display: none;
	}

	.master_net {
		margin-top: 32px;
	}

	.master_images {
		margin-top: 40px;
	}

	/* Master. */

	/* Faq. */

	.faq {
		padding: 40px 0;
	}

	.faq_block_title {
		max-width: 400px !important;
	}

	.faq_block_img {
		max-width: 280px !important;
	}

	.faq_wrapper:not(:first-child) {
		margin-top: 48px;
	}

	.faq_top {
		margin-bottom: 20px;
	}

	.faq_img {
		--size: 140px;
	}

	.faq_list {
		--inner: 24px;
	}

	.faq_content {
		margin-top: 4px;
	}

	/* Faq. */
}

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

	.purple {
		padding: 40px 0;
	}

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

	.purple_list {
		margin-top: 28px;
	}

	.purple_rate {
		grid-gap: 16px;
	}

	/* Purple. */



	/* Contacts. */

	.contacts_block {
		width: 100%;
	}

	.contacts_map iframe {
		height: 400px;
	}

	/* Contacts. */
}

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

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

	/* Root. */

	/* Slider. */

	.swiper-arrows {
		--size: 32px;
		left: 8px;
		right: 8px;
	}

	/* Slider. */

	/* Header. */

	.header_btn {
		--btn_inner: 20px;
		grid-gap: 16px;
	}

	/* Header. */

	/* Demo. */

	.demo_slider {
		padding: 0;
		margin-left: calc(var(--bone_size) * -1 + 8px);
		margin-right: calc(var(--bone_size) * -1 + 8px);
	}

	.demo_top {
		--size: 80px;
	}

	/* Demo. */

	/* Purple. */

	.purple_li {
		--size: 40px;
		grid-gap: 16px;
		align-items: center;
		flex-direction: row;
		justify-content: flex-start;
		padding: 16px 20px;
	}

	/* Purple. */

	/* Faq. */

	.faq_block_img {
		display: none;
	}

	.faq_block {
		padding: 24px 20px !important;
	}

	.faq_img {
		--size: 100px;
	}

	.faq_list {
		--inner: 16px;
		padding: 16px 20px;
	}

	/* Faq. */
}

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

	h1,
	h2 {
		font-size: 40px;
	}

	h3 {
		font-size: 32px;
	}

	h4 {
		font-size: 24px;
	}

	h5 {
		font-size: 22px;
	}

	h6 {
		/*		font-size: 24px;*/
	}

	/* Global. */

	/* Header. */

	.header_btn {
		--btn_inner: 16px;
		grid-gap: 12px;
	}

	/* Header. */

	/* Demo. */

	.demo_top {
		--size: 60px;
	}

	/* Demo. */

	/* Faq. */

	.faq_img {
		--size: 80px;
	}

	/* Faq. */
}

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



	/* Block_name. */
}

@media only screen and (max-width: 1400px) and (min-width: 1201px),
only screen and (max-width: 600px) {
	/* Master. */

	.master_line_name {
		font-size: 15px;
	}

	.master_line {
		font-size: 14px;
	}

	/* Master. */
}

@media only screen and (max-width: 1030px) and (min-width: 771px) {
	/* Who. */

	.who_items {
		--grid_3: 2;
	}

	.who_item:nth-child(odd):last-child {
		transform: translate3d(calc(50% + var(--inner_g) / 2), 0px, 0px);
	}

	/* Who. */
}

@media only screen and (max-width: 1030px) and (min-width: 901px), 
only screen and (max-width: 770px) {
	/* Faq. */

	.faq_block {
		position: relative;
		padding: 20px 40px 80px;
	}

	.faq_block_title {
		max-width: 508px;
	}

	.faq_block_img {
		position: absolute;
		right: 0;
		bottom: 0;
	}

	.faq_block_img {
		max-width: 300px;
	}

	/* Faq. */
}