@charset "UTF-8";
@import "../fonts/stylesheet.css";
:root {
	--blue-black: #122130;
	--blue: #1e6dff;
	--white: #fff;
	--blue-white: #e9f2ff;
	--green: #00b63e;
	--gray: #f5f5f5;
	--status-orange: #f9ca51;
	--status-green: #41c063;
	--status-red: #f44e28;
}

:root {
	--font-family: "Inter", sans-serif;
	--second-family: "Work Sans", sans-serif;
	--third-family: "Roboto", sans-serif;
}

* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

aside,
nav,
footer,
header,
section {
	display: block;
}

html,
body {
	height: 100%;
	min-width: 320px;
}

body {
	line-height: 1;
	font-family: "Inter";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: "Inter";
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

html.lock, body._lock {
	overflow: hidden;
	-ms-touch-action: none;
	    touch-action: none;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #fff;
}

.wrapper {
	width: 1165px;
	margin: 0 auto;
	overflow: hidden;
	height: 1650px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.wrapper > main {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.wrapper > * {
	min-width: 0;
}

._ibg {
	position: relative;
}
._ibg img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	   object-fit: cover;
}

body.ie ._ibg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.ie ._ibg img {
	width: 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.wrapper {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	overflow: hidden;
}
.wrapper > main {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.wrapper > * {
	min-width: 0;
}

.main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.main > *:first-child {
	padding-top: 30px !important;
}

._container {
	max-width: 1072px;
	margin: 0 auto;
	padding: 0 24px;
	padding: 0;
}
@media (max-width: 480px) {
	._container {
		padding: 0;
	}
}

.title {
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 24px;
	line-height: 128%;
	color: var(--blue-black);
}

.btn {
	position: relative;
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #fff;
	background: #122130;
	text-align: center;
	border-radius: 12px;
	padding: 16px 28px;
	height: 54px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 17px;
	line-height: 106%;
	white-space: nowrap;
}
.btn img {
	width: 11px;
	margin: 0px 10px 0px 0px;
}
@media (min-width: 1024px) {
	.btn:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #49525B;
	}
}
@media (max-width: 480px) {
	.btn {
		padding: 16px 20px;
	}
}

.btn_blue {
	background: #1e6dff;
}
@media (min-width: 1024px) {
	.btn_blue:hover {
		background: #1859D1;
	}
}

.btn_w {
	background: #fff;
	color: var(--blue-black);
	border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
	.btn_w:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #E6E6E6;
	}
}

.btn_y {
	background: #fff705;
	color: var(--blue-black);
	border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
	.btn_y:hover {
		background: #fff705;
		border: 1px solid rgba(0, 0, 0, 0.5);
	}
}

.label {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 60px;
	padding: 7px 13px;
	height: 34px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 15px;
	line-height: 106%;
	color: var(--blue-black);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	white-space: nowrap;
	background: #fff;
}
.label img {
	margin: 0px 6px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 11px;
	        flex: 0 0 11px;
	width: 11px;
}

.label_y {
	background: #fff705;
}

@media (min-width: 1024px) {
	a.label_y:hover {
		background: #eee0f7;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.text {
	position: relative;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 154%;
	color: #414d59;
}
.text > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

[data-sticky]._sticked [data-sticky-item] {
	position: fixed !important;
	bottom: auto !important;
	left: 0 !important;
	right: 0 !important;
}

.header {
	position: relative;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1072px) {
	.header {
		padding: 0px 24px;
	}
}
@media (max-width: 1024px) {
	.header {
		position: fixed;
	}
}

.header__row {
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 1024px) {
	.header__row {
		margin: 0px 55px 0px 0px;
	}
}
@media (max-width: 480px) {
	.header__row {
		margin: 0px 45px 0px 0px;
		height: 64px;
	}
}

.header__logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 162px;
	        flex: 0 0 162px;
	position: relative;
	z-index: 5;
}
.header__logo img {
	width: 100%;
}
@media (max-width: 480px) {
	.header__logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 137px;
		        flex: 0 0 137px;
	}
}

.menu {
	display: none;
}
@media (max-width: 1024px) {
	.menu {
		display: block;
	}
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 1024px) {
	.menu__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
	}
}
.menu__list > *:not(:last-child) {
	margin: 0px 0px 48px 0px;
}
@media (max-width: 480px) {
	.menu__list {
		width: 100%;
	}
}

.menu__title {
	margin: 0px 0px 32px 0px !important;
	font-size: 28px;
	-ms-flex-item-align: start;
	    -ms-grid-row-align: start;
	    align-self: start;
}

.menu__nav {
	width: 100%;
	background: #fff;
}
.menu__nav li {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	min-height: 62px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10px 24px;
}
.menu__nav li:first-child {
	border-top: 0;
}
.menu__nav li a {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	color: var(--blue-black);
}

.menu__link {
	font-size: 16px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.menu__link:hover {
		color: #E00000;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.menu__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
@media (max-width: 1024px) {
	.menu__body {
		position: fixed;
		top: 80px;
		bottom: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #f5f5f5;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
		padding: 30px 40px;
		overflow: auto;
	}
	.menu__body._active {
		right: 0;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1024px) and (max-width: 1024px) {
	.menu__body {
		padding: 40px 24px 100px 24px;
	}
}
@media (max-width: 1024px) and (max-width: 480px) {
	.menu__body {
		top: 64px;
	}
}
@media (max-width: 1024px) {
	.menu__body > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}

.menu__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	width: 100%;
}
.menu__buttons .btn {
	width: 100%;
}
.menu__buttons > *:not(:last-child) {
	margin: 0px 0px 12px 0px;
}

.icon-menu {
	display: none;
}
@media (max-width: 1024px) {
	.icon-menu {
		display: block;
		position: absolute;
		top: 50%;
		right: 0px;
		-webkit-transform: translate(0, -50%);
		    -ms-transform: translate(0, -50%);
		        transform: translate(0, -50%);
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
	}
	.icon-menu span {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		top: calc(50% - 1px);
		left: 0px;
		position: absolute;
		width: 100%;
		height: 2px;
		background: #000;
	}
	.icon-menu span:first-child {
		top: 0px;
	}
	.icon-menu span:last-child {
		top: auto;
		bottom: 0px;
	}
	.icon-menu._active span {
		-webkit-transform: scale(0);
		    -ms-transform: scale(0);
		        transform: scale(0);
	}
	.icon-menu._active span:first-child {
		-webkit-transform: rotate(-45deg);
		    -ms-transform: rotate(-45deg);
		        transform: rotate(-45deg);
		top: calc(50% - 1px);
	}
	.icon-menu._active span:last-child {
		-webkit-transform: rotate(45deg);
		    -ms-transform: rotate(45deg);
		        transform: rotate(45deg);
		bottom: calc(50% - 1px);
	}
}

.menu-test {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 16px;
	padding: 15px 18px;
	width: 100%;
	background: var(--blue-white);
}

.menu-test__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0px 0px 15px 0px;
}
.menu-test__block p {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 19px;
	line-height: 110%;
	color: var(--blue-black);
}
.menu-test__block > *:not(:last-child) {
	margin: 0px 10px 0px 0px;
}

.menu-test__imgs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.menu-test__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 80px;
	        flex: 0 1 80px;
	margin: 0px -5px;
}
.menu-test__img img {
	width: 100%;
}

.header__copy {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 120%;
	color: var(--blue-black);
	opacity: 0.7;
}
@media (max-width: 700px) {
	.header__copy {
		-ms-flex-item-align: start;
		    -ms-grid-row-align: start;
		    align-self: start;
	}
}

body::after {
	content: "";
	background-color: rgba(0, 0, 0, 0.8);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity 0.8s ease 0s;
	-o-transition: opacity 0.8s ease 0s;
	transition: opacity 0.8s ease 0s;
	pointer-events: none;
	z-index: 149;
}

.popup-show body::after {
	opacity: 1;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 30px 10px;
	-webkit-transition: visibility 0.8s ease 0s;
	-o-transition: visibility 0.8s ease 0s;
	transition: visibility 0.8s ease 0s;
	visibility: hidden;
	pointer-events: none;
}

.popup_show {
	z-index: 150;
	visibility: visible;
	overflow: auto;
	pointer-events: auto;
}

.popup_show .popup__content {
	visibility: visible;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

.popup__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 100%;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	width: 100%;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	align-items: center;
}

.popup__content {
	visibility: hidden;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	-o-transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	width: 100%;
	max-width: 900px;
	border-radius: 20px;
}
.lock .popup__content {
	visibility: visible;
}

.popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	background: url("../img/icons/close.svg") no-repeat;
	background-size: contain;
}

.consult {
	position: fixed;
	z-index: 300;
	top: 30px;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	overflow: auto;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	padding: 0px 0px 60px 0px;
}
.consult._active {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.consult__close {
	position: fixed;
	z-index: 100;
	top: 30px;
	right: calc((100vw - 1072px) / 2 + 24px);
	width: 40px;
	height: 40px;
	background: #fff url("../img/icons/close.svg") no-repeat;
	background-size: 20px;
	border-radius: 50px;
	background-position: center;
}
@media (max-width: 1072px) {
	.consult__close {
		right: 20px;
	}
}
@media (max-width: 480px) {
	.consult__close {
		top: 20px;
	}
}

.consult-popup__head {
	padding: 24px;
	background: #fff;
	width: 100%;
	position: relative;
	margin-bottom: 26px;
}
@media (max-width: 480px) {
	.consult-popup__head {
		padding: 20px 24px;
	}
}

.consult-popup__logo {
	width: 162px;
}
.consult-popup__logo img {
	width: 100%;
}
@media (max-width: 480px) {
	.consult-popup__logo {
		width: 137px;
	}
}

.popup__title {
	font-size: 40px;
}
@media (max-width: 1072px) {
	.popup__title {
		font-size: calc(26px + 40 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.popup__title {
		font-size: 28px;
		margin: 0px 0px 26px 0px !important;
	}
}

.consult-popup__main {
	max-width: 572px;
	margin: 0 auto;
}
.consult-popup__main > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}

.consult-popup-card {
	background: #e2f1ec;
	border-radius: 20px;
	padding: 28px;
}
.consult-popup-card > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 480px) {
	.consult-popup-card > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 480px) {
	.consult-popup-card {
		padding: 20px;
	}
}

.consult-popup-card__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.consult-popup-card__left {
	margin: 0px 32px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 270px;
	        flex: 0 1 270px;
}
.consult-popup-card__left > *:not(:last-child) {
	margin: 0px 0px 8px 0px;
}
@media (max-width: 480px) {
	.consult-popup-card__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 200px;
		        flex: 0 1 200px;
	}
}

.consult-popup-card__name {
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 28px;
	line-height: 110%;
	color: var(--blue-black);
}
@media (max-width: 480px) {
	.consult-popup-card__name {
		font-size: 19px;
	}
}

.consult-popup-card__text {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: #65747b;
}
@media (max-width: 480px) {
	.consult-popup-card__text {
		font-size: 13px;
	}
}

.consult-popup-card__ava {
	width: 128px;
	height: 128px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 128px;
	        flex: 0 0 128px;
}
.consult-popup-card__ava img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 480px) {
	.consult-popup-card__ava {
		width: 82px;
		height: 82px;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 82px;
		        flex: 0 0 82px;
	}
}

.consult-popup-card__bot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 480px) {
	.consult-popup-card__bot {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.consult-popup-card__price {
	white-space: nowrap;
	margin: 0px 32px 0px 0px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.consult-popup-card__price p {
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 32px;
	line-height: 102%;
	color: var(--blue-black);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.consult-popup-card__price p .label {
	border: 0;
	margin: 0px 0px 0px 8px;
}
.consult-popup-card__price > span {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 24px;
	line-height: 110%;
	text-decoration: line-through;
	color: #898989;
	margin: 6px 0px 0px 0px;
	display: block;
}
@media (max-width: 480px) {
	.consult-popup-card__price {
		margin: 0px 0px 20px 0px;
	}
}

.consult-popup-card__labels {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 8px;
}
@media (max-width: 480px) {
	.consult-popup-card__labels {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}
}

.consult-popup-block__title {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 19px;
	line-height: 110%;
	color: var(--blue-black);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0px 0px 20px 0px;
}
.consult-popup-block__title span {
	margin: -6px 12px 0px 0px;
	width: 30px;
	height: 30px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 30px;
	        flex: 0 0 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #1e6dff;
	font-family: var(--font-family);
	font-weight: 800;
	font-size: 18px;
	line-height: 108%;
	color: var(--white);
	border-radius: 50%;
}

.consult-popup-block__inner {
	background: #f5f5f5;
	min-height: 100px;
}

.expect {
	background: #e9f2ff;
	border-radius: 20px;
	padding: 24px;
}

.expect__title {
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 28px;
	line-height: 110%;
	color: var(--blue-black);
	margin: 0px 0px 24px 0px;
}

.expect__text {
	margin: 0px 0px 32px 0px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	color: var(--blue-black);
}
.expect__text > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.expect__list {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	color: var(--blue-black);
}
.expect__list h3 {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	line-height: 110%;
	color: var(--blue-black);
	margin: 0px 0px 18px 0px;
}
.expect__list ul > *:not(:last-child) {
	margin: 0px 0px 16px 0px;
}
.expect__list li {
	position: relative;
	padding: 0px 0px 0px 36px;
}
.expect__list li::before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	width: 26px;
	height: 26px;
	background: url("../img/icons/ok.svg") no-repeat;
	background-size: contain;
}

footer {
	padding: 40px 20px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
footer > ._container {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}

.footer__wrap {
	background: #f5f5f5;
	border-radius: 20px;
	padding: 50px 24px;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.footer__row {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.footer__row > *:not(:last-child) {
	margin: 0px 30px 0px 0px;
}
@media (max-width: 700px) {
	.footer__row > *:not(:last-child) {
		margin: 0px 0px 48px 0px;
	}
}
@media (max-width: 700px) {
	.footer__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.footer__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 337px;
	        flex: 0 1 337px;
}
@media (max-width: 820px) {
	.footer__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 250px;
		        flex: 0 0 250px;
	}
}
@media (max-width: 700px) {
	.footer__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.footer__logo {
	width: 191px;
	margin: 0px 0px 46px 0px;
}
.footer__logo img {
	width: 100%;
}

.footer__buttons .btn {
	width: 100%;
}
.footer__buttons .btn img {
	width: 27px;
}
.footer__buttons > *:not(:last-child) {
	margin: 0px 0px 12px 0px;
}
@media (max-width: 700px) {
	.footer__buttons {
		max-width: 340px;
	}
}

.footer__list h3 {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	line-height: 110%;
	color: var(--blue-black);
}
.footer__list ul > *:not(:last-child) {
	margin: 0px 0px 14px 0px;
}
.footer__list li a {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	color: #56616b;
}
@media (min-width: 1024px) {
	.footer__list li a:hover {
		text-decoration: underline;
	}
}
.footer__list > *:not(:last-child) {
	margin: 0px 0px 16px 0px;
}

.footer-bot {
	margin: 100px 0px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 700px) {
	.footer-bot {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}
@media (max-width: 480px) {
	.footer-bot {
		margin: 48px 0px 0px 0px;
	}
}

.footer-bot__copy {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 337px;
	        flex: 0 1 337px;
	margin-right: 138px;
}
@media (max-width: 1072px) {
	.footer-bot__copy {
		margin-right: calc(-240px + 740 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.footer-bot__copy {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 250px;
		        flex: 0 0 250px;
		margin-right: 30px;
	}
}
@media (max-width: 700px) {
	.footer-bot__copy {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 48px 0px 0px 0px;
	}
}

.footer-bot__block {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
}
.footer-bot__block a {
	color: #56616b;
}
@media (min-width: 1024px) {
	.footer-bot__block a:hover {
		text-decoration: underline;
	}
}
.footer-bot__block > *:not(:last-child) {
	margin: 0px 24px 0px 0px;
}
@media (max-width: 700px) {
	.footer-bot__block > *:not(:last-child) {
		margin: 0px 0px 14px 0px;
	}
}
@media (max-width: 700px) {
	.footer-bot__block {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

input {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input::-webkit-input-placeholder {
	opacity: 1;
}

input::-moz-placeholder {
	opacity: 1;
}

input:-moz-placeholder {
	opacity: 1;
}

input:-ms-input-placeholder {
	opacity: 1;
}

input:focus::-webkit-input-placeholder {
	opacity: 0;
}

input:focus::-moz-placeholder {
	opacity: 0;
}

input:focus:-moz-placeholder {
	opacity: 0;
}

input:focus:-ms-input-placeholder {
	opacity: 0;
}

.input, textarea {
	width: 100%;
	height: 60px;
	padding: 10px 20px;
	border: 1px solid var(--blue);
	border-radius: 50px;
	font-size: 16px;
}
.input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #A3A3A3;
}
.input::-moz-placeholder, textarea::-moz-placeholder {
	color: #A3A3A3;
}
.input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #A3A3A3;
}
.input::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #A3A3A3;
}
.input::placeholder, textarea::placeholder {
	color: #A3A3A3;
}
.input._form-error, textarea._form-error {
	border: 1px solid red;
}
@media (max-width: 480px) {
	.input, textarea {
		height: 50px;
		border-radius: 8px;
	}
}

textarea {
	resize: none;
	border: 1px solid #858c94;
	border-radius: 8px;
	padding: 12px;
	height: 180px;
}

.form__item {
	width: 100%;
	position: relative;
}
.form__item .form__error {
	position: absolute;
	top: 50%;
	left: 20px;
	right: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	background: #fff;
	color: red;
	pointer-events: none;
}
.form__item > *:not(:last-child) {
	margin: 0px 0px 8px 0px;
}

.form__label {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 154%;
	color: #09101d;
	display: block;
}

.form-sent-msg {
	position: fixed;
	z-index: 5;
	top: -100px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	padding: 15px;
	background: #06CF27;
	border-radius: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 5px 32px 5px rgba(146, 146, 146, 0.5);
	box-shadow: 0px 5px 32px 5px rgba(146, 146, 146, 0.5);
}
.form-sent-msg p {
	color: #fff;
	font-size: 20px;
	text-align: center;
}
.form-sent-msg._active {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 20px;
}

.feedback-form {
	border-radius: 20px;
	padding: 40px 54px;
	background: #fff;
	max-width: 632px;
}
.feedback-form > *:not(:last-child) {
	margin: 0px 0px 32px 0px;
}
.feedback-form .btn {
	width: 100%;
}
@media (max-width: 480px) {
	.feedback-form {
		padding: 28px;
	}
}

.form__label_r {
	margin: 0px 0px 10px 0px !important;
}

.feedback-form__note {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 13px;
	line-height: 130%;
	color: var(--blue-black);
	opacity: 0.6;
	margin: 0px 0px -12px 0px;
}

.checkbox {
	position: relative;
}
.checkbox:not(:last-child) {
	margin-bottom: em(5);
}
.checkbox__input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}
.checkbox__input:checked + .checkbox__label:before {
	background: #000;
	background: #1e6dff url("../img/icons/check.svg") no-repeat;
	background-size: 24px;
	background-position: center;
}
.checkbox__label {
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	gap: 10px;
}
.checkbox__label:before {
	content: "";
	-ms-flex-item-align: start;
	    align-self: flex-start;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 18px;
	        flex: 0 0 18px;
	width: 18px;
	height: 18px;
	background: #EFEFEF;
	border-radius: 4px;
}
.checkbox a {
	color: #000;
	text-decoration: underline;
}
@media (min-width: 1024px) {
	.checkbox a:hover {
		text-decoration: none;
	}
}

.rating-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 4px;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}

.rating-area:not(:checked) > input {
	display: none;
}

.rating-area:not(:checked) > label {
	float: right;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 58px;
	        flex: 0 0 58px;
	padding: 0;
	cursor: pointer;
}
@media (max-width: 480px) {
	.rating-area:not(:checked) > label {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 48px;
		        flex: 0 0 48px;
	}
}

.rating-area > label:before {
	display: block;
	content: "";
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 58px;
	        flex: 0 0 58px;
	height: 58px;
	background: url("../img/feedb/s1.svg") no-repeat;
	background-size: contain;
	cursor: pointer;
}
@media (max-width: 480px) {
	.rating-area > label:before {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 48px;
		        flex: 0 0 48px;
		height: 48px;
	}
}

.rating-area:not(:checked) > label:before {
	content: "";
	background: url("../img/feedb/s2.svg") no-repeat;
	background-size: contain;
}

.rating-area > input:checked ~ label:before {
	content: "";
	background: url("../img/feedb/s1.svg") no-repeat;
	background-size: contain;
}

.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label:before,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label:before,
.rating-area > label:hover ~ input:checked ~ label:before {
	content: "";
	background: url("../img/feedb/s1.svg") no-repeat;
	background-size: contain;
}

.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label:before,
.rating-area > label:hover > label:before {
	z-index: 10;
	content: "";
	background: url("../img/feedb/s1.svg") no-repeat;
	background-size: contain;
}

.rating-area:not(:checked) > label:hover:before {
	content: "";
	background: url("../img/feedb/s1.svg") no-repeat;
	background-size: contain;
}

.select {
	position: relative;
}
.select__body {
	position: relative;
}
.select__title {
	color: inherit;
	text-align: left;
	border: 1px solid #d9d9d9;
	background-color: #fff;
	cursor: pointer;
	width: 100%;
	border-radius: 4px;
}
.select__value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: rem(30);
	padding: 0 rem(15);
	gap: rem(10);
}
.select__value > * {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.select__value:after {
	content: "";
	-ms-flex-item-align: stretch;
	    align-self: stretch;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 10px;
	        flex: 0 0 10px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
._select-open .select__value:after {
	-webkit-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}
.select__value._select-pseudo-label::before {
	content: attr(data-pseudo-label);
	opacity: 0.5;
}
.select__text {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.select__input {
	width: 100%;
	background-color: transparent;
	height: 100%;
}
.select__options {
	color: #000;
	position: absolute;
	z-index: 1;
	top: 29px;
	border-radius: 0 0 4px 4px;
	min-width: 100%;
	left: 0;
	background-color: #fff;
	border-top: 0;
	border: 1px solid #d9d9d9;
	border-top: 0;
	padding: 10px 0px 5px 0px;
	overflow: hidden;
}
.select__scroll {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 200px;
}
.select__option {
	width: 100%;
	display: block;
	text-align: left;
	cursor: pointer;
	padding: 5px 15px;
	color: inherit;
	background: none;
}
.select__option._select-selected {
	background-color: #eee;
}
.select__option[hidden] {
	display: none;
}
@media (any-hover: hover) {
	.select__option:hover {
		background: #d9d9d9;
	}
}
.select__row {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.select._select-open::after {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	    -ms-transform: translate(0, -50%) rotate(-180deg);
	        transform: translate(0, -50%) rotate(-180deg);
}
.select::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 18px;
	height: 18px;
	background: url("../img/icons/select.svg") no-repeat;
	background-size: contain;
	background-position: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	pointer-events: none;
}
.select._form-error .select__title {
	border: 1px solid red;
}

._select-tag {
	cursor: pointer;
}

.hero__row {
	position: relative;
	background: #f9eda4;
	border-radius: 20px;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	bottom: -80px;
	right: -80px;
	width: 520px;
}
.hero__bg img {
	width: 100%;
}
@media (max-width: 700px) {
	.hero__bg {
		bottom: unset;
		top: 50%;
		left: 50%;
		right: unset;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
		width: 100%;
	}
}
@media (max-width: 480px) {
	.hero__bg {
		top: 70%;
	}
}

.hero_2 .hero__bg {
	width: 650px;
	bottom: -240px;
	right: -130px;
}
.hero_2 .hero__row {
	background: #e9e1ff;
}

.hero_3 .hero__bg {
	width: 650px;
	bottom: -180px;
	right: -130px;
}
.hero_3 .hero__row {
	background: #e4fccc;
}

@media (max-width: 480px) {
	.hero__row {
		min-height: 590px;
	}
}

.hero__content {
	position: relative;
	padding: 32px;
	max-width: 670px;
	min-height: 360px;
}
.hero__content ul {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	color: var(--blue-black);
}
.hero__content ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.hero__content ul li img {
	width: 23px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 23px;
	        flex: 0 0 23px;
	margin: 0px 16px 0px 0px;
}
.hero__content ul > *:not(:last-child) {
	margin: 0px 0px 16px 0px;
}
@media (max-width: 820px) {
	.hero__content ul {
		font-size: 16px;
	}
}
.hero__content > *:not(:last-child) {
	margin: 0px 0px 28px 0px;
}
@media (max-width: 820px) {
	.hero__content {
		padding: 32px 24px;
	}
}
@media (max-width: 480px) {
	.hero__content {
		padding: 32px 24px;
	}
}

.hero__title {
	font-size: 44px;
	line-height: 108%;
}

.hero__btn {
	margin: 13px 0px 0px 0px;
}

.stickypanel .select::after {
	right: -30px;
}
.stickypanel .select__title {
	border: 0;
	padding: 0px 0px 0px 24px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	color: var(--blue-black);
	white-space: nowrap;
}
.stickypanel .select__options {
	z-index: 2;
	top: 60px;
	padding: 0;
	-webkit-box-shadow: 0 4px 19px 0 rgba(166, 166, 166, 0.25);
	        box-shadow: 0 4px 19px 0 rgba(166, 166, 166, 0.25);
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	width: 1072px;
}
@media (max-width: 1072px) {
	.stickypanel .select__options {
		width: 100vw;
	}
}
.stickypanel .select__option {
	height: 64px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0px 24px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	color: var(--blue-black);
}
.stickypanel .select__option:first-child {
	border-top: 0;
}
@media (min-width: 1024px) {
	.stickypanel .select__option:hover {
		background: #f6f6f7;
	}
}
.stickypanel._sticked .stickypanel__row {
	border-radius: 0;
}
.stickypanel._sticked .select__options {
	width: 100vw;
	border-radius: 0;
	top: 54px;
}
@media (max-width: 1024px) {
	.stickypanel {
		display: none;
	}
}

.stickypanel__row {
	-webkit-box-shadow: 0 4px 19px 0 rgba(166, 166, 166, 0.25);
	        box-shadow: 0 4px 19px 0 rgba(166, 166, 166, 0.25);
	border-radius: 20px;
	padding: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	position: relative;
	min-height: 84px;
	z-index: 2;
	background: #fff;
}

.stickypanel__buttons {
	position: absolute;
	top: 50%;
	right: 24px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 14px;
}
.stickypanel__buttons .btn {
	height: 44px;
}

.blocktitle {
	padding: 40px 0px 0px 0px;
	scroll-margin-top: 60px;
}

.blocktitle_5 .blocktitle__img {
	margin: 0px 56px -29px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 200px;
	        flex: 0 0 200px;
}

._container {
	position: relative;
}

.blocktitle__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.blocktitle__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 20px;
}

.blocktitle__row {
	position: relative;
	padding: 32px 64px;
}
.blocktitle__row > *:not(:last-child) {
	margin: 0px 0px 28px 0px;
}
@media (max-width: 820px) {
	.blocktitle__row > *:not(:last-child) {
		margin: 0px 0px 24px 0px;
	}
}
@media (max-width: 760px) {
	.blocktitle__row > *:not(:last-child) {
		margin: 24px 0px 0px 0px;
	}
}
@media (max-width: 1072px) {
	.blocktitle__row {
		padding: 32px;
	}
}
@media (max-width: 820px) {
	.blocktitle__row {
		padding: 24px;
	}
}
@media (max-width: 760px) {
	.blocktitle__row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}

.blocktitle__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 40px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0px 0px 30px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 820px) {
	.blocktitle__top {
		padding: 0px 0px 24px 0px;
	}
}
@media (max-width: 760px) {
	.blocktitle__top {
		padding: 0;
		border: 0;
	}
}

.blocktitle__name {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 114px;
	        flex: 0 0 114px;
}
.blocktitle__name img {
	width: 100%;
}
@media (max-width: 1024px) {
	.blocktitle__name {
		display: none;
	}
}

.blocktitle__links {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 456px;
	        flex: 0 1 456px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 20px;
}
.blocktitle__links a {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 154%;
	text-decoration: underline;
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap;
}
@media (min-width: 1024px) {
	.blocktitle__links a:hover {
		text-decoration: none;
	}
}
@media (max-width: 760px) {
	.blocktitle__links {
		display: none;
	}
}

.blocktitle__btn {
	background: none;
	height: 44px;
	margin: 0px -28px;
	background: rgba(255, 255, 255, 0.24);
	border: 1px solid rgba(255, 255, 255, 0);
}
@media (min-width: 1024px) {
	.blocktitle__btn:hover {
		background: none;
		border: 1px solid rgba(255, 255, 255, 0.24);
	}
}
@media (max-width: 1024px) {
	.blocktitle__btn {
		background: rgba(255, 255, 255, 0.24);
		margin: 0;
	}
}
@media (max-width: 480px) {
	.blocktitle__btn {
		width: 100%;
	}
}

.blocktitle__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
}

.blocktitle__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 24px;
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 28px;
	line-height: 108%;
	color: var(--white);
}
@media (max-width: 820px) {
	.blocktitle__title {
		font-size: 20px;
	}
}
.blocktitle__title span {
	font-weight: 600;
	font-size: 44px;
}
@media (max-width: 820px) {
	.blocktitle__title span {
		font-size: 44px;
	}
}
@media (max-width: 820px) {
	.blocktitle__title {
		gap: 16px;
	}
}

.blocktitle__img {
	position: relative;
	margin: 0px 100px -30px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 146px;
	        flex: 0 0 146px;
}
.blocktitle__img img {
	width: 100%;
}
@media (max-width: 1024px) {
	.blocktitle__img {
		margin: 0px 0px -30px 0px;
	}
}
@media (max-width: 820px) {
	.blocktitle__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 90px;
		        flex: 0 0 90px;
		margin: -5px 0px -25px 0px;
	}
}
@media (max-width: 820px) {
	.blocktitle__img {
		margin: -5px -25px -25px 0px;
	}
}

.block {
	padding: 20px 0px 0px 0px;
}
.block._fill {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.block._fill ._container,
.block._fill .block__row {
	height: 100%;
}

.block__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px 32px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	background: #f1f5f9;
	border-radius: 20px;
	padding: 32px;
}
@media (max-width: 820px) {
	.block__row {
		padding: 24px;
		gap: 24px;
	}
}

.block__col {
	border-radius: 6px;
	background: #fff;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 calc(50% - 16px);
	        flex: 0 1 calc(50% - 16px);
	padding: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.block__col > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
.block__col._full {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100%;
	        flex: 0 0 100%;
}
.block__col._full:last-child {
	margin: 0;
}
.block__col.block__col_orange .tests-graph._low .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #97969E));
	background: -o-linear-gradient(left, #F1F5F9 0%, #97969E 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #97969E 50%);
}
.block__col.block__col_orange .tests-graph._mid .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #1E6DFF));
	background: -o-linear-gradient(left, #F1F5F9 0%, #1E6DFF 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #1E6DFF 50%);
}
.block__col.block__col_orange .tests-graph._hi .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #FBD500), to(#FF7700));
	background: -o-linear-gradient(left, #F1F5F9 0%, #FBD500 50%, #FF7700 100%);
	background: linear-gradient(90deg, #F1F5F9 0%, #FBD500 50%, #FF7700 100%);
}
.block__col.block__col_orange .tests-graph._hi .tests-graph__value {
	color: #ff9001;
}
.block__col.block__col_green .tests-graph._low .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #97969E));
	background: -o-linear-gradient(left, #F1F5F9 0%, #97969E 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #97969E 50%);
}
.block__col.block__col_green .tests-graph._mid .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #1E6DFF));
	background: -o-linear-gradient(left, #F1F5F9 0%, #1E6DFF 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #1E6DFF 50%);
}
.block__col.block__col_green .tests-graph._hi .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), to(#00C726));
	background: -o-linear-gradient(left, #F1F5F9 0%, #00C726 100%);
	background: linear-gradient(90deg, #F1F5F9 0%, #00C726 100%);
}
.block__col.block__col_green .tests-graph._hi .tests-graph__value {
	color: #13b80c;
}
.block__col.block__col_blue .tests-graph._low .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #97969E));
	background: -o-linear-gradient(left, #F1F5F9 0%, #97969E 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #97969E 50%);
}
.block__col.block__col_blue .tests-graph._mid .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #1E6DFF));
	background: -o-linear-gradient(left, #F1F5F9 0%, #1E6DFF 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #1E6DFF 50%);
}
.block__col.block__col_blue .tests-graph._hi .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #1E6DFF));
	background: -o-linear-gradient(left, #F1F5F9 0%, #1E6DFF 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #1E6DFF 50%);
}
.block__col.block__col_blue .tests-graph._hi .tests-graph__value {
	color: #326ef2;
}
@media (max-width: 820px) {
	.block__col {
		border-radius: 10px;
		padding: 24px;
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 calc(50% - 12px);
		        flex: 0 1 calc(50% - 12px);
	}
}

._line {
	width: 100%;
	height: 1px;
	background: #d9dce0;
}

.block__heart {
	position: relative;
	z-index: -1;
	right: -32px;
	width: 100%;
	margin: -130px 0px -32px 0px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
._full > .block__heart {
	height: 190px;
}
.block__heart img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: right bottom;
	   object-position: right bottom;
	border-radius: 0 0 6px 6px;
}
@media (max-width: 820px) {
	.block__heart img {
		border-radius: 0 0 10px 10px;
	}
}
@media (max-width: 480px) {
	.block__heart img {
		-o-object-position: center;
		   object-position: center;
	}
}
@media (max-width: 820px) {
	.block__heart {
		right: -24px;
		margin: -130px 0px -24px 0px;
	}
}
@media (max-width: 480px) {
	.block__heart {
		right: unset;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
		margin: 30px 0px -24px 0px;
		width: calc(100% + 48px);
	}
}

.block__split {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px 32px;
}
.block__split .tests__item {
	padding-top: 24px;
}
.block__split .tests__item:first-child {
	padding-top: 0;
}

.block__splitcol {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.block__splitcol > *:not(:last-child) {
	margin: 0px 0px 24px 0px;
}

.block__colname {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	color: var(--blue-black);
}
.block__colname img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 34px;
	        flex: 0 0 34px;
	width: 34px;
	margin: 0px 10px 0px 0px;
}

.result > *:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.result__block {
	padding: 20px 0px;
}
.result__block:first-child {
	padding-top: 0;
}
.result__block:last-child {
	padding-bottom: 0;
}
.result__block > *:not(:last-child) {
	margin: 0px 0px 8px 0px;
}

.result__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	color: var(--blue-black);
	position: relative;
}
.result__title::before {
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0px 8px 0px 0px;
}
.result__title img {
	width: 11px;
	margin: 0px 8px 0px -4px;
}
.result__title._type1::before {
	background: -o-linear-gradient(45deg, #97969e 0%, #c3c3c3 100%);
	background: linear-gradient(45deg, #97969e 0%, #c3c3c3 100%);
}
.result__title._type2::before {
	background: -o-linear-gradient(45deg, #4f00ac 0%, #a660ff 100%);
	background: linear-gradient(45deg, #4f00ac 0%, #a660ff 100%);
}
.result__title._type3::before {
	background: -o-linear-gradient(45deg, #1e6dff 0%, #a8d3ff 100%);
	background: linear-gradient(45deg, #1e6dff 0%, #a8d3ff 100%);
}
.result__title._type4::before {
	background: -o-linear-gradient(45deg, #00ac21 0%, #60ff7e 100%);
	background: linear-gradient(45deg, #00ac21 0%, #60ff7e 100%);
}
.result__title._type5::before {
	background: -o-linear-gradient(45deg, #ff6726 0%, #fbd500 100%);
	background: linear-gradient(45deg, #ff6726 0%, #fbd500 100%);
}
.result__title._type6::before {
	background: -o-linear-gradient(45deg, #f60000 0%, #ffc29c 100%);
	background: linear-gradient(45deg, #f60000 0%, #ffc29c 100%);
}
.result__title._type7::before {
	background: -o-linear-gradient(45deg, #8c0000 0%, #d4a3a3 100%);
	background: linear-gradient(45deg, #8c0000 0%, #d4a3a3 100%);
}

.result__text {
	font-size: 14px;
	line-height: 154%;
}

.tests > *:not(:last-child) {
	margin: 0px 0px 24px 0px;
}

.tests__head {
	background: #f8f8f8;
	padding: 10px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 15px;
}
.tests__head span {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.tests__head span::before {
	content: "";
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 12px;
	        flex: 0 0 12px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0px 8px 0px 0px;
}
.tests__head span._low::before {
	background: -o-linear-gradient(45deg, #97969e 0%, #c3c3c3 100%);
	background: linear-gradient(45deg, #97969e 0%, #c3c3c3 100%);
}
.tests__head span._mid::before {
	background: -o-linear-gradient(45deg, #1e6dff 0%, #a8d3ff 100%);
	background: linear-gradient(45deg, #1e6dff 0%, #a8d3ff 100%);
}
.tests__head span._hi::before {
	background: -o-linear-gradient(45deg, #00ac21 0%, #60ff7e 100%);
	background: linear-gradient(45deg, #00ac21 0%, #60ff7e 100%);
}

.tests__headblock {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px 15px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 154%;
	color: #57626c;
}
.tests__headblock > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 480px) {
	.tests__headblock {
		gap: 5px 12px;
	}
}
@media (max-width: 370px) {
	.tests__headblock {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.tests__items > *:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tests__head_health span._low::before {
	background: -o-linear-gradient(45deg, #00ac21 0%, #60ff7e 100%);
	background: linear-gradient(45deg, #00ac21 0%, #60ff7e 100%);
}
.tests__head_health span._mid::before {
	background: -o-linear-gradient(45deg, #ff6726 0%, #fbd500 100%);
	background: linear-gradient(45deg, #ff6726 0%, #fbd500 100%);
}
.tests__head_health span._hi::before {
	background: -o-linear-gradient(45deg, #f60000 0%, #ffc29c 100%);
	background: linear-gradient(45deg, #f60000 0%, #ffc29c 100%);
}
.tests__head_health span._top::before {
	background: -o-linear-gradient(45deg, #8c0000 0%, #d4a3a3 100%);
	background: linear-gradient(45deg, #8c0000 0%, #d4a3a3 100%);
}

.tests__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 10px 40px;
	padding: 14px 0px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.tests__item p {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 18px;
	line-height: 124%;
	color: var(--blue-black);
}
.tests__item._col {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.tests__item._col .tests-graph {
	-webkit-box-flex: 0;
	    -ms-flex: 0;
	        flex: 0;
}
.tests__item:last-child {
	padding-bottom: 0;
}

.tests__itemblock {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
}
.tests__itemblock p {
	line-height: 124%;
	color: var(--blue-black);
}
.tests__itemblock span {
	line-height: 154%;
	color: var(--blue-black);
	opacity: 0.8;
}
.tests__itemblock > *:not(:last-child) {
	margin: 0px 0px 8px 0px;
}

.tests-graph {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 380px;
	        flex: 0 0 380px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.tests-graph._low .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #97969E));
	background: -o-linear-gradient(left, #F1F5F9 0%, #97969E 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #97969E 50%);
}
.tests-graph._low .tests-graph__value {
	color: #98979f;
}
.tests-graph._mid .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #1E6DFF));
	background: -o-linear-gradient(left, #F1F5F9 0%, #1E6DFF 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #1E6DFF 50%);
}
.tests-graph._mid .tests-graph__value {
	color: #326ef2;
}
.tests-graph._hi .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #00C726));
	background: -o-linear-gradient(left, #F1F5F9 0%, #00C726 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #00C726 50%);
}
.tests-graph._hi .tests-graph__value {
	color: #13b80c;
}
.tests-graph._top .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#ff6726), color-stop(50%, #fbd500));
	background: -o-linear-gradient(left, #ff6726 0%, #fbd500 50%);
	background: linear-gradient(45deg, #ff6726 0%, #fbd500 100%);
}
.tests-graph._top .tests-graph__value {
	color: #ff6726;
}
.tests-graph._zone .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#ff6726), color-stop(50%, #fbd500));
	background: -o-linear-gradient(left, #ff6726 0%, #fbd500 50%);
	background: linear-gradient(45deg, #4f00ac 0%, #a660ff 100%);
}
.tests-graph._zone .tests-graph__value {
	color: #4f00ac;
}

.tests-graph_health._low .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #00C726));
	background: -o-linear-gradient(left, #F1F5F9 0%, #00C726 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #00C726 50%);
}
.tests-graph_health._low .tests-graph__value {
	color: #13b80c;
}
.tests-graph_health._mid .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #FF6A00));
	background: -o-linear-gradient(left, #F1F5F9 0%, #FF6A00 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #FF6A00 50%);
}
.tests-graph_health._mid .tests-graph__value {
	color: #ff6a00;
}
.tests-graph_health._hi .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #FF1E1E));
	background: -o-linear-gradient(left, #F1F5F9 0%, #FF1E1E 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #FF1E1E 50%);
}
.tests-graph_health._hi .tests-graph__value {
	color: #ff1e1e;
}
.tests-graph_health._top .tests-graph__line {
	background: -webkit-gradient(linear, left top, right top, from(#F1F5F9), color-stop(50%, #AD0000));
	background: -o-linear-gradient(left, #F1F5F9 0%, #AD0000 50%);
	background: linear-gradient(90deg, #F1F5F9 0%, #AD0000 50%);
}
.tests-graph_health._top .tests-graph__value {
	color: #8c0000;
}

.tests-graph__value {
	font-weight: 600;
	font-size: 18px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 58px;
	        flex: 0 0 58px;
}
.tests-graph__value._up::before {
	content: "";
	width: 11px;
	height: 14px;
	background: url("../img/icons/arrow.svg") no-repeat;
	background-size: contain;
	margin: 0px 2px 0px 0px;
}
@media (max-width: 820px) {
	.tests-graph__value {
		font-size: 16px;
	}
}

.tests-graph__block {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	height: 15px;
	position: relative;
	background: #f5f5f5;
	border-radius: 30px;
	overflow: hidden;
}
@media (max-width: 820px) {
	.tests-graph__block {
		height: 13px;
	}
}

.tests-graph__line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 30px;
}

.block-total {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.block-totalchart {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	background: #fff;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.block-totalchart._col {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 30px;
}
.block-totalchart._col .block-totalchart__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 500px;
	        flex: 0 0 500px;
}

.block-totalchart__row {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	background: #f1f5f9;
}
.block-totalchart__row .block-totalchart__item {
	padding: 32px;
	min-height: 278px;
}
@media (max-width: 820px) {
	.block-totalchart__row .block-totalchart__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 100%;
	}
}
.block-totalchart__row .block-total__sub {
	font-size: 16px;
}
.block-totalchart__row .block-total__title {
	font-size: 24px;
}

.block-totalchart__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	padding: 32px;
}
.block-totalchart__left > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 820px) {
	.block-totalchart__left {
		padding: 24px;
	}
}

.block-totalchart__right {
	border-radius: 4px;
	padding: 40px 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	overflow: hidden;
	gap: 40px;
	position: relative;
	-ms-flex-preferred-size: calc(50% - 16px);
	    flex-basis: calc(50% - 16px);
	min-height: 278px;
}
.block-totalchart__right._low {
	background: -o-linear-gradient(45deg, #97969e 0%, #c3c3c3 100%);
	background: linear-gradient(45deg, #97969e 0%, #c3c3c3 100%);
}
.block-totalchart__right._low .block-total__t::after {
	background: #a2a1a7;
}
.block-totalchart__right._mid {
	background: -o-linear-gradient(45deg, #1e6dff 0%, #a8d3ff 100%);
	background: linear-gradient(45deg, #1e6dff 0%, #a8d3ff 100%);
}
.block-totalchart__right._mid .block-total__t::after {
	background: #468aff;
}
.block-totalchart__right._hi {
	background: -o-linear-gradient(45deg, #00ac21 0%, #60ff7e 100%);
	background: linear-gradient(45deg, #00ac21 0%, #60ff7e 100%);
}
.block-totalchart__right._zone {
	background: linear-gradient(45deg, #4f00ac 0%, #a660ff 100%);
}
.block-totalchart__right._zone .block-total__t::after {
	background: #6c3fcc;
}
.block-totalchart__right._hi .block-total__t::after {
	background: #19c239;
}
.block-totalchart__right._top {
	background: -o-linear-gradient(45deg, #ff6726 0%, #fbd500 100%);
	background: linear-gradient(45deg, #ff6726 0%, #fbd500 100%);
}
.block-totalchart__right._top .block-total__t::after {
	background: #fe7322;
}
.block-totalchart__right._grow {
	background: -o-linear-gradient(45deg, #667a9c 0%, #b0bdd4 100%);
	background: linear-gradient(45deg, #667a9c 0%, #b0bdd4 100%);
}
.block-totalchart__right._grow .block-total__t::after {
	background: #7588a7;
}
.block-totalchart__right._grow .chart span::before {
	position: relative;
	top: -12px;
	content: "↑";
	font-size: 54px;
	margin: 0px 3px 0px 0px;
}
@media (max-width: 480px) {
	.block-totalchart__right._grow .chart span::before {
		font-size: 42px;
	}
}
@media (max-width: 1024px) {
	.block-totalchart__right {
		padding: 32px;
	}
}
@media (max-width: 480px) {
	.block-totalchart__right {
		padding: 24px 32px;
	}
}

.block-total__head {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.block-total__head > *:not(:last-child) {
	margin: 0px 0px 14px 0px;
}

.block-total__sub {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	color: var(--white);
}

.block-total__title {
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 44px;
	line-height: 108%;
	color: var(--white);
}
@media (max-width: 1919px) {
	.block-total__title {
		font-size: calc(24px + 20 * ((100vw - 320px) / 1600));
	}
}

.block-total__value {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 68px;
	line-height: 108%;
	color: var(--white);
}
@media (max-width: 1919px) {
	.block-total__value {
		font-size: calc(56px + 12 * ((100vw - 320px) / 1600));
	}
}

@media (max-width: 760px) {
	.block__splitcol.block-total {
		margin: 0;
		min-height: 345px;
	}
}

.block-total__t {
	position: absolute;
	z-index: 1;
	bottom: 32px;
	left: 32px;
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 24px;
	line-height: 128%;
	color: var(--white);
	width: 50%;
	height: 25%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.block-total__t::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: -20px;
	left: 0;
	width: 100%;
	height: 140%;
	-webkit-filter: blur(17px);
	        filter: blur(17px);
}
@media (max-width: 480px) {
	.block-total__t::after {
		top: -30px;
	}
}
@media (max-width: 480px) {
	.block-total__t {
		bottom: 24px;
	}
}

.chart {
	margin: 0 !important;
	height: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.chart span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 68px;
	line-height: 108%;
	text-align: center;
	color: var(--white);
}
@media (max-width: 480px) {
	.chart span {
		font-size: 56px;
	}
}
@media (max-width: 480px) {
	.chart canvas {
		width: 230px !important;
		height: 230px !important;
	}
}

.block-styles > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.block-styles__item {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 154%;
}
.block-styles__item b {
	color: #122130;
	font-weight: 500;
	font-size: 18px;
}
.block-styles__item p {
	color: #414d59;
}

.block-totalchart__title,
.feedback__title {
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 28px;
	line-height: 108%;
	color: var(--blue-black);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 14px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.block-totalchart__title img,
.feedback__title img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 40px;
	        flex: 0 0 40px;
	width: 40px;
}
.block-totalchart__title span,
.feedback__title span {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 40px;
	        flex: 0 0 40px;
	width: 40px;
	height: 40px;
	font-family: var(--font-family);
	font-weight: 900;
	font-size: 24px;
	text-align: center;
	color: var(--white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 10px;
	background: url("../img/block/1.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 480px) {
	.block-totalchart__title,
.feedback__title {
		font-size: 24px;
	}
}

.feedback__title1 {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 68px;
	line-height: 108%;
	text-align: center;
	color: var(--blue-black);
}

.feedback__stars {
	width: 356px;
}
.feedback__stars img {
	width: 100%;
}

.bgtext {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 154%;
	color: #53606e;
	background: #e9f2ff;
	padding: 14px;
	border-radius: 4px;
}

.block-list {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 154%;
	color: var(--blue-black);
	opacity: 0.8;
}
.block-list ul li {
	list-style: disc;
}
.block-list ol > *:not(:last-child) {
	margin-bottom: 5px;
}
.block-list li {
	margin: 0px 0px 0px 20px;
}

.block-expert {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
.block-expert::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 75%;
	height: 75%;
	background: url("../img/block/bg-exp.webp") no-repeat;
	background-size: contain;
	background-position: left bottom;
}
@media (max-width: 480px) {
	.block-expert::before {
		width: 85%;
		height: 85%;
	}
}
.block-expert p {
	position: absolute;
	bottom: 25px;
	left: 25px;
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 24px;
	line-height: 128%;
	color: var(--white);
	max-width: 250px;
}

.block-expert__img {
	width: 100%;
	height: 300px;
}
.block-expert__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.block-list_icon ul > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
.block-list_icon li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 14px;
	margin: 0;
}
.block-list_icon li::before {
	content: "";
	width: 24px;
	height: 24px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 24px;
	        flex: 0 0 24px;
	background: url("../img/icons/ok.svg") no-repeat;
	background-size: contain;
}

.feedback > ._container {
	position: relative;
}

.feedback__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #e9f2ff;
	border-radius: 20px;
	overflow: hidden;
}
.feedback__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center bottom;
	   object-position: center bottom;
}

.feedback__content {
	position: relative;
	padding: 65px 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 40px;
	height: 800px;
}
@media (max-width: 480px) {
	.feedback__content {
		padding: 30px 14px;
		gap: 32px;
	}
}

.feedback__title {
	text-align: center;
}
@media (max-width: 480px) {
	.feedback__title {
		text-align: left;
	}
}

.feedback__btn {
	width: 280px;
}

.test {
	padding: 100px 0px 0px 0px;
}
.test > ._container {
	max-width: 750px;
	padding: 0px 24px;
}
@media (max-width: 480px) {
	.test {
		padding: 80px 0px 0px 0px;
	}
}

.test__title,
.feedb__title {
	text-align: center;
	font-size: 44px;
	margin: 0px 0px 32px 0px;
}
@media (max-width: 1919px) {
	.test__title,
.feedb__title {
		font-size: calc(32px + 12 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.test__title,
.feedb__title {
		margin: 0px 0px 18px 0px;
	}
}

.test__row {
	min-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -10px;
}

.test-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	padding: 10px;
}
@media (max-width: 700px) {
	.test-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.test-item_1 .test-item__row {
	background: #eee0f7;
}

.test-item_2 .test-item__row {
	background: #f7edae;
}

.test-item_3 .test-item__row {
	background: #e4fccc;
}
.test-item_3 .test-item__img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.test-item_4 .test-item__row {
	background: #e9f2ff;
}

.test-item_5 .test-item__row {
	background: #e2f1ec;
}
.test-item_5 .test-item__img {
	margin: 0;
}

.test-item__row {
	padding: 20px;
	border-radius: 20px;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border: 1px solid rgba(0, 0, 0, 0);
}
.test-item__row a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (min-width: 1024px) {
	.test-item__row:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		border: 1px solid rgba(0, 0, 0, 0.2);
	}
}

.test-item__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.test-item__block h3 {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	line-height: 110%;
	color: var(--blue-black);
}
@media (max-width: 480px) {
	.test-item__block h3 {
		font-size: 19px;
	}
}
.test-item__block p {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 15px;
	line-height: 106%;
	color: #6e7362;
}
@media (max-width: 480px) {
	.test-item__block p {
		font-size: 13px;
	}
}

.test-item__left {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	padding: 0px 10px 0px 0px;
}
.test-item__left > *:not(:last-child) {
	margin: 0px 0px 8px 0px;
}

.test-item__img {
	width: 82px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 82px;
	        flex: 0 0 82px;
	margin: -5px 0px 0px 0px;
}
.test-item__img img {
	width: 100%;
}

.test-item__bot {
	margin: 15px 0px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.test-item__bot > *:not(:last-child) {
	margin: 0px 8px 0px 0px;
}

.test-item__labels {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.test-item__labels > *:not(:last-child) {
	margin: 0px 8px 0px 0px;
}

.test-item__time {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 15px;
	line-height: 106%;
	color: var(--blue-black);
	text-align: right;
}

.feedb {
	padding: 80px 0px 0px 0px;
}
@media (max-width: 820px) {
	.feedb {
		padding: 50px 0px 0px 0px;
	}
}

.feedb__title {
	text-align: center;
	margin: 0px 0px 48px 0px;
	padding: 0px 24px;
}
@media (max-width: 480px) {
	.feedb__title {
		margin: 0px 0px 32px 0px;
	}
}

.needhelp {
	padding: 100px 0px 0px 0px;
}
@media (max-width: 480px) {
	.needhelp {
		padding: 80px 0px 0px 0px;
	}
}

.needhelp__row {
	border-radius: 20px;
	background: #e9f2ff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 380px;
	padding: 24px 20px;
}
@media (max-width: 480px) {
	.needhelp__row {
		min-height: auto;
	}
}

.needhelp__img {
	width: 68px;
	margin: 0px 0px 12px 0px;
}
.needhelp__img img {
	width: 100%;
}
@media (max-width: 480px) {
	.needhelp__img {
		width: 62px;
	}
}

.needhelp__title {
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 32px;
	line-height: 110%;
	text-align: center;
	color: var(--blue-black);
	margin: 0px 0px 14px 0px;
}
@media (max-width: 480px) {
	.needhelp__title {
		font-size: 28px;
	}
}

.needhelp__text {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	text-align: center;
	color: #53606e;
	margin: 0px 0px 24px 0px;
}
@media (max-width: 480px) {
	.needhelp__text br {
		display: none;
	}
}

@media (max-width: 480px) {
	.needhelp__btn {
		width: 100%;
	}
}

.feedb-slider {
	position: relative;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}
.feedb-slider .swiper-slide {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 calc(50% - 7.5px);
	        flex: 0 1 calc(50% - 7.5px);
	background: #f5f5f5;
	border-radius: 20px;
	padding: 20px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	color: var(--blue-black);
}
.feedb-slider .swiper-slide > *:not(:last-child) {
	margin: 0px 0px 18px 0px;
}
@media (max-width: 1024px) {
	.feedb-slider .swiper-slide {
		font-size: 16px;
	}
}
@media (max-width: 1024px) {
	.feedb-slider .slider-controls {
		display: none;
	}
}

.feedb-slider__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.feedb-slider__ava {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 60px;
	        flex: 0 0 60px;
	width: 60px;
	height: 60px;
	margin: 0px 14px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: var(--second-family);
	font-weight: 500;
	font-size: 28px;
	line-height: 102%;
	color: var(--blue-black);
	background: #e9e9f5;
	border-radius: 100px;
	overflow: hidden;
}
.feedb-slider__ava img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.feedb-slider__block > *:not(:last-child) {
	margin: 0px 0px 8px 0px;
}

.feedb-slider__name {
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 18px;
	line-height: 102%;
	color: var(--blue-black);
}

.feedb-slider__rating {
	width: 108px;
}
.feedb-slider__rating img {
	width: 100%;
}

.feedb-slider__link a {
	color: #1e6dff;
	text-decoration: underline;
}
@media (min-width: 1024px) {
	.feedb-slider__link a:hover {
		text-decoration: none;
	}
}

.feedb-slider__text > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.learn-slider {
	max-width: 900px;
	margin: 0 auto;
}
@media (max-width: 700px) {
	.learn-slider {
		margin: 0px -24px;
	}
}

@media (max-width: 1023px) {
	.comm-slider {
		margin: 0px -24px;
	}
}

.bottom {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	position: relative;
	padding: 30px;
}

.bottom__logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 170px;
	        flex: 0 0 170px;
}
.bottom__logo img {
	width: 100%;
}

.bottom__num {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.bottom__block {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 335px;
	        flex: 0 0 335px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 120%;
	text-align: right;
	color: var(--blue-black);
	opacity: 0.7;
}

.bottom__site {
	color: var(--blue-black);
}

.block-table {
	overflow-x: scroll;
}
@media (max-width: 1072px) {
	.block-table {
		margin: 0px -32px;
		padding: 0px 32px;
	}
}
@media (max-width: 820px) {
	.block-table {
		margin: 0px -24px;
		padding: 0px 24px;
	}
}

.block-table__row {
	border: 1px solid #e4e4e4;
	background: #f8f8f8;
	border-radius: 4px;
	width: 942px;
}
.block-table__row > *:not(:last-child) {
	border-bottom: 1px solid #e4e4e4;
}

.block-table__line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 138%;
	color: var(--blue-black);
}
.block-table__line > * {
	padding: 10px 14px;
	min-height: 100px;
}
.block-table__line > *:not(:last-child) {
	border-right: 1px solid #e4e4e4;
}

.block-table__line_head {
	background: #e9f2ff;
}
.block-table__line_head .block-table__work {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 138%;
	color: var(--blue-black);
	background: #e5f4d9;
}

.block-table__name {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 20%;
	        flex: 0 0 20%;
}

.block-table__value {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 17%;
	        flex: 0 1 17%;
}

.block-table__why,
.block-table__how,
.block-table__work {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 22%;
	        flex: 0 0 22%;
}

.block-table__work {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 10px;
	line-height: 138%;
	color: #cacdd0;
}

.imgblock {
	background: #fff;
	border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.imgblock > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
@media (max-width: 820px) {
	.imgblock > * {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
.imgblock .block__title {
	margin: 0px 0px 20px 0px !important;
}
.imgblock .block-expert {
	height: 100%;
	border-radius: 4px;
}
@media (max-width: 820px) {
	.imgblock .block-expert {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 500px;
		        flex: 0 0 500px;
		width: 100%;
	}
}
@media (max-width: 480px) {
	.imgblock .block-expert {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 300px;
		        flex: 0 0 300px;
	}
}
.imgblock .block-expert__img {
	height: 100%;
}
@media (max-width: 480px) {
	.imgblock .btn {
		width: 100%;
	}
}
@media (max-width: 820px) {
	.imgblock {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.imgblock__left {
	padding: 32px;
}
.imgblock__left > *:not(:last-child) {
	margin: 0px 0px 32px 0px;
}
@media (max-width: 820px) {
	.imgblock__left {
		padding: 24px;
	}
}

@media print {
	@page {
		size: 210mm 297mm;
		margin: 2mm;
	}
	* {
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
		color-adjust: exact !important;
	}

	body {
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
		color-adjust: exact !important;
	}

	a[href^=http]:after {
		content: " (" attr(href) ")";
	}
}

.consult-popup__head {
	padding: 24px;
	background: #fff;
	width: 100%;
	position: relative;
	margin-bottom: 26px;
}
@media (max-width: 480px) {
	.consult-popup__head {
		padding: 20px 24px;
	}
}

.consult-popup__logo {
	width: 162px;
}
.consult-popup__logo img {
	width: 100%;
}
@media (max-width: 480px) {
	.consult-popup__logo {
		width: 137px;
	}
}

.popup__title {
	font-size: 40px;
}
@media (max-width: 1120px) {
	.popup__title {
		font-size: calc(26px + 40 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.popup__title {
		font-size: 28px;
		margin: 0px 0px 26px 0px !important;
	}
}

.consult-popup__main {
	max-width: 572px;
	margin: 0 auto;
}
.consult-popup__main > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}

.consult-popup-card {
	background: #e2f1ec;
	border-radius: 20px;
	padding: 28px;
}
.consult-popup-card > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 480px) {
	.consult-popup-card > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 480px) {
	.consult-popup-card {
		padding: 20px;
	}
}

.consult-popup-card__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.consult-popup-card__left {
	margin: 0px 32px 0px 0px;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 270px;
	flex: 0 1 270px;
}
.consult-popup-card__left > *:not(:last-child) {
	margin: 0px 0px 8px 0px;
}
@media (max-width: 480px) {
	.consult-popup-card__left {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 200px;
		flex: 0 1 200px;
	}
}

.consult-popup-card__name {
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 28px;
	line-height: 110%;
	color: var(--blue-black);
}
@media (max-width: 480px) {
	.consult-popup-card__name {
		font-size: 19px;
	}
}

.consult-popup-card__text {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: #65747b;
}
@media (max-width: 480px) {
	.consult-popup-card__text {
		font-size: 13px;
	}
}

.consult-popup-card__ava {
	width: 128px;
	height: 128px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 128px;
	flex: 0 0 128px;
}
.consult-popup-card__ava img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
@media (max-width: 480px) {
	.consult-popup-card__ava {
		width: 82px;
		height: 82px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 82px;
		flex: 0 0 82px;
	}
}

.consult-popup-card__bot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 480px) {
	.consult-popup-card__bot {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.consult-popup-card__price {
	white-space: nowrap;
	margin: 0px 32px 0px 0px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.consult-popup-card__price p {
	font-family: var(--second-family);
	font-weight: 900;
	font-size: 32px;
	line-height: 102%;
	color: var(--blue-black);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.consult-popup-card__price p .label {
	border: 0;
	margin: 0px 0px 0px 8px;
}
.consult-popup-card__price > span {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 24px;
	line-height: 110%;
	text-decoration: line-through;
	color: #898989;
	margin: 6px 0px 0px 0px;
	display: block;
}
@media (max-width: 480px) {
	.consult-popup-card__price {
		margin: 0px 0px 20px 0px;
	}
}

.consult-popup-card__labels {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
}
@media (max-width: 480px) {
	.consult-popup-card__labels {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.consult-popup-block__title {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 19px;
	line-height: 110%;
	color: var(--blue-black);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0px 0px 20px 0px;
}
.consult-popup-block__title span {
	margin: -6px 12px 0px 0px;
	width: 30px;
	height: 30px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 30px;
	flex: 0 0 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #1e6dff;
	font-family: var(--font-family);
	font-weight: 800;
	font-size: 18px;
	line-height: 108%;
	color: var(--white);
	border-radius: 50%;
}

.consult-popup-block__inner {
	background: #f5f5f5;
	min-height: 100px;
}

input {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input::-webkit-input-placeholder {
	opacity: 1;
}

input::-moz-placeholder {
	opacity: 1;
}

input:-moz-placeholder {
	opacity: 1;
}

input:-ms-input-placeholder {
	opacity: 1;
}

input:focus::-webkit-input-placeholder {
	opacity: 0;
}

input:focus::-moz-placeholder {
	opacity: 0;
}

input:focus:-moz-placeholder {
	opacity: 0;
}

input:focus:-ms-input-placeholder {
	opacity: 0;
}

.input, textarea {
	width: 100%;
	height: 60px;
	border: 1px solid rgba(133, 140, 148, 0.68);
	border-radius: 50px;
	font-size: 16px;
	border-radius: 8px;
	padding: 14px 16px;
	height: 52px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
}
.input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #889097;
}
.input::-moz-placeholder, textarea::-moz-placeholder {
	color: #889097;
}
.input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #889097;
}
.input::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #889097;
}
.input::placeholder, textarea::placeholder {
	color: #889097;
}
.input._form-error, textarea._form-error {
	background: #fff2f4;
	border: 1px solid #e30000;
}
.input._form-error::-webkit-input-placeholder, textarea._form-error::-webkit-input-placeholder {
	color: #f1797a;
}
.input._form-error::-moz-placeholder, textarea._form-error::-moz-placeholder {
	color: #f1797a;
}
.input._form-error:-ms-input-placeholder, textarea._form-error:-ms-input-placeholder {
	color: #f1797a;
}
.input._form-error::-ms-input-placeholder, textarea._form-error::-ms-input-placeholder {
	color: #f1797a;
}
.input._form-error::placeholder, textarea._form-error::placeholder {
	color: #f1797a;
}
@media (max-width: 480px) {
	.input, textarea {
		height: 50px;
	}
}

textarea {
	resize: none;
	height: 180px;
	border-radius: 8px;
}

.form__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.form__row > *:not(:last-child) {
	margin: 0px 16px 0px 0px;
}

.form__item {
	width: 100%;
	position: relative;
}
.form__item p {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 13px;
	line-height: 130%;
	color: #717a83;
	margin: 8px 0px 0px 0px;
}
.form__item .form__error {
	position: absolute;
	left: 0;
	top: calc(100% + 4px);
	pointer-events: none;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
	color: #e30000;
	padding: 0px 0px 0px 15px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}
.form__item .form__error::before {
	content: "";
	position: absolute;
	top: 1px;
	left: 0;
	width: 11px;
	height: 11px;
	background: url("../img/icons/i.svg") no-repeat;
	background-size: contain;
}

.form__label {
	display: block;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: var(--blue-black);
	margin: 0px 0px 8px 0px;
}
.form__label span {
	color: #da1414;
}

.form-sent-msg {
	position: fixed;
	z-index: 5;
	top: -100px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	padding: 15px;
	background: #06CF27;
	border-radius: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 5px 32px 5px rgba(146, 146, 146, 0.5);
	box-shadow: 0px 5px 32px 5px rgba(146, 146, 146, 0.5);
}
.form-sent-msg p {
	color: #fff;
	font-size: 20px;
	text-align: center;
}
.form-sent-msg._active {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 20px;
}

.form__item_age {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100px;
	flex: 0 0 100px;
}

.consult-form > *:not(:last-child) {
	margin: 0px 0px 18px 0px;
}
.consult-form .form__btn {
	width: 100%;
}

.file-input {
	position: relative;
	border: 1px solid rgba(133, 140, 148, 0.68);
	border-radius: 8px;
	padding: 0px 16px;
	min-height: 52px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
}
.file-input._active .file-input__button {
	display: none;
}

.file-input__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
}

.file-input__item {
	padding: 18px 0px;
	height: 40px;
}

.file-input__input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.file-input__button {
	position: relative;
	padding: 0px 0px 0px 34px;
	pointer-events: none;
}
.file-input__button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 29px;
	height: 29px;
	background: url("../img/icons/file.svg") no-repeat;
	background-size: contain;
	background-position: center;
}

.file-input__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding: 0px 0px 0px 34px;
	pointer-events: none;
}
.file-input__item span {
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	padding: 0px 30px 0px 0px;
	height: 18px;
}
.file-input__item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 29px;
	height: 29px;
	background: url("../img/icons/file.svg") no-repeat;
	background-size: contain;
	background-position: center;
}

.file-input__close {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 20px;
	height: 20px;
	background: url("../img/icons/close.svg") no-repeat;
	background-size: contain;
	cursor: pointer;
	pointer-events: auto;
}

.checkbox {
	position: relative;
}
.checkbox:not(:last-child) {
	margin-bottom: em(5);
}
.checkbox__input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}
.checkbox__input:checked + .checkbox__label:before {
	background: #000;
	background: #1e6dff url("../img/icons/check.svg") no-repeat;
	background-size: 26px;
	background-position: center;
	border: 2px solid #1e6dff;
}
.checkbox__label {
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	gap: 10px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 13px;
	line-height: 130%;
	color: #717a83;
}
.checkbox__label:before {
	content: "";
	-ms-flex-item-align: start;
	align-self: flex-start;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 18px;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	background: #fff;
	border: 2px solid #535353;
	border-radius: 4px;
}
.checkbox a {
	color: #000;
	text-decoration: underline;
}
@media (min-width: 1024px) {
	.checkbox a:hover {
		text-decoration: none;
	}
}

.swiper {
	overflow: hidden;
	position: relative;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.swiper-vertical .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

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

.swiper-initialized .swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.swiper-button-lock,
.swiper-pagination-lock {
	display: none !important;
}

.swiper-pagination-bullets {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0px 20px;
}

.swiper-pagination-bullet {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 10px;
	flex: 0 0 10px;
	height: 10px;
	background: #969696;
	border-radius: 50%;
	margin: 0px 10px 0px 0px;
}
.swiper-pagination-bullet:last-child {
	margin: 0;
}

.swiper-pagination-bullet-active {
	background: #292929;
}

.slider-controls {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #f5f5f5;
	position: relative;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	border-radius: 100px;
	padding: 7px;
	margin: 30px 0px 0px 0px;
}
.slider-controls .button-prev,
.slider-controls .button-next {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transform: translate(0);
	-ms-transform: translate(0);
	transform: translate(0);
	border: 1px solid #f5f5f5;
	border-radius: 100px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.slider-controls .button-prev:hover,
	.slider-controls .button-next:hover {
		border: 1px solid #DCDCDC;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
.slider-controls .button-prev {
	margin: 0px 8px 0px 0px;
}

.button-prev {
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 48px;
	height: 48px;
	background: url("../img/icons/p-left.svg") no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.button-next {
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 48px;
	height: 48px;
	background: url("../img/icons/p-right.svg") no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: #D9D8D8;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: #F29BAB;
	border-radius: 10px;
	left: 0;
	top: 0;
}

.slot-grid { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.slot-grid button { padding: 8px 12px; }

.label.disabled{
	background-color: #d9d9d9;
	cursor: not-allowed;
}
.label.free{
	cursor: pointer;
}
.label.selected{
	background-color: #e2f1ec;
}
.consult-popup-card-buy > *:not(:last-child){
	margin: 0px 0px 5px 0px;
}
.consult-popup-card-buy {
	padding: 15px 28px;
}
.consult-popup-card-buy .consult-popup-card__name {
	margin-top: 30px;
}
.consult-popup-card-buy .consult-popup-card__price {
	margin: 0px 20px 0px 0px;
}
