* {
	box-sizing: border-box;
}

html {
	font-size: 2.5vw;
}

@media screen and (min-width: 600px) {
	html {
		font-size: 1.5vw;
	}
}

@media screen and (min-width: 768px) {
	html {
		font-size: 0.625vw;
	}
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--ff-inter);
	font-size: 1.6rem;
	line-height: 100%;
	font-style: normal;
	font-weight: normal;
	background: #FBFEFF;
	color: var(--black);
	overflow-x: hidden;
}

body._overflow {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

p {
	padding: 0;
	margin: 0;
	font-family: var(--ff-inter);
	font-weight: normal;
	font-size: 2.4rem;
	line-height: 140%;
	color: var(--black);
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

ol {
	margin: 0;
	padding: 0;
	padding-left: 2.2rem;
}

li {
	font-family: var(--ff-inter);
	font-weight: normal;
	font-size: 2.4rem;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 1rem;
}

button {
	margin: 0;
	padding: 0;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
	line-height: normal;
}

input {
	padding: 0;
	margin: 0;
	outline: none;
	border: 0;
}

:root {
	--ff-inter: 'Inter', sans-serif;
	--ff-roboto: 'Roboto', sans-serif;
	--black: #232323;
	--blue: #036195;
	--orange: #FF9700;
	--dark-orange: #ED8D01;
}

.hidden {
	display: none !important;
}

a {
	font-family: var(--ff-inter);
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 100%;
	color: var(--blue);
	text-decoration: none;
}

h1 {
	font-family: var(--ff-inter);
	font-weight: 700;
	font-size: 4.4rem;
	line-height: 100%;
	color: var(--blue);
	margin: 1.2rem 0 4rem;
}

h2 {
	font-family: var(--ff-inter);
	font-weight: 500;
	font-size: 3.2rem;
	line-height: 120%;
	color: var(--black);
	margin: 0 0 4rem;
}

h3 {
	font-family: var(--ff-inter);
	font-weight: 500;
	font-size: 3.2rem;
	line-height: 110%;
	color: var(--black);
	margin: 0 0 4rem;
}

.btn {
	display: inline-block;
	font-family: var(--ff-inter);
	font-weight: normal;
	font-size: 1.6rem;
	line-height: 100%;
	text-align: center;
	color: #FFFFFF;
	background: var(--orange);
	padding: 1.6rem 5.8rem;
	border-radius: 3rem;
	-webkit-border-radius: 3rem;
	-moz-border-radius: 3rem;
	-ms-border-radius: 3rem;
	-o-border-radius: 3rem;
	cursor: pointer;
	transition: 150ms;
}

.btn:hover {
	background: var(--dark-orange);
}

.plus {
	position: relative;
}

.plus::before {
	content: "+ ";
}

.wrapper {
	padding: 0 2rem;
}

.col-start-1 {
	grid-column-start: 1;
}

.col-start-2 {
	grid-column-start: 2;
}

.col-start-3 {
	grid-column-start: 3;
}

.col-start-4 {
	grid-column-start: 4;
}

.col-start-5 {
	grid-column-start: 5;
}

.col-start-6 {
	grid-column-start: 6;
}

.col-start-7 {
	grid-column-start: 7;
}

.col-start-8 {
	grid-column-start: 8;
}

.col-start-9 {
	grid-column-start: 9;
}

.col-start-10 {
	grid-column-start: 10;
}

.col-start-11 {
	grid-column-start: 11;
}

.col-end-1 {
	grid-column-end: 1;
}

.col-end-2 {
	grid-column-end: 2;
}

.col-end-2 {
	grid-column-end: 3;
}

.col-end-4 {
	grid-column-end: 4;
}

.col-end-5 {
	grid-column-end: 5;
}

.col-end-6 {
	grid-column-end: 6;
}

.col-end-7 {
	grid-column-end: 7;
}

.col-end-8 {
	grid-column-end: 8;
}

.col-end-9 {
	grid-column-end: 9;
}

.col-end-10 {
	grid-column-end: 10;
}

.col-end-11 {
	grid-column-end: 11;
}

.col-end-12 {
	grid-column-end: 12;
}

.col-end-13 {
	grid-column-end: 13;
}

@media screen and (min-width: 768px) {
	h1 {
		font-size: 7.2rem;
		line-height: 95%;
		margin: 2.4rem 0 12rem;
	}

	h2 {
		font-size: 6.4rem;
		line-height: 120%;
		margin-bottom: 8rem;
	}

	h3 {
		font-size: 5.6rem;
		line-height: 110%;
	}

	a.link {
		border-bottom: 1px solid transparent;
		transition: border 150ms ease-out;
		-webkit-transition: border 150ms ease-out;
		-moz-transition: border 150ms ease-out;
		-ms-transition: border 150ms ease-out;
		-o-transition: border 150ms ease-out;
	}

	a.link:hover {
		border-bottom: 1px solid var(--blue);
		transition: border 150ms ease-out;
		-webkit-transition: border 150ms ease-out;
		-moz-transition: border 150ms ease-out;
		-ms-transition: border 150ms ease-out;
		-o-transition: border 150ms ease-out;
	}

	.btn {
		font-size: 1.8rem;
		line-height: 100%;
	}

	.wrapper {
		padding: 0 8rem;
	}
}



/* ----------------- form --------------- */
.form-line {
	position: relative;
	margin-bottom: 2.4rem;
	background-color: #fff;
	border-radius: 3rem;
	-webkit-border-radius: 3rem;
	-moz-border-radius: 3rem;
	-ms-border-radius: 3rem;
	-o-border-radius: 3rem;
	border: 1px solid transparent;
	transition: border 150ms ease-out;
}

.form-group.has-error .form-line {
	border: 1px solid #ff0000;
}

.form-group.has-success .form-line {
	border-color: forestgreen;
}

.form-line .info_inp {
	display: none;
}

.form-label {
	font-size: 2rem;
	line-height: 100%;
	color: var(--black);
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	padding: 0 3rem;
}

.form-label span {
	color: #ff0000;
}

.form-line._active .form-label {
	font-size: 1.2rem;
	line-height: 100%;
	top: 1rem;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}


.form-input {
	display: block;
	width: 100%;
	height: 2.3rem;
	padding: 0 3rem;
	font-size: max(16px, 1.8rem);
	line-height: 100%;
	color: var(--black);
	background-color: transparent;
	position: absolute;
	bottom: 0.7rem;
}

.form-politics {
	font-family: var(--ff-inter);
	font-weight: normal;
	font-size: 1rem;
	line-height: 100%;
	color: #FFFFFF;
	/* position: fixed;
	bottom: 4rem;
	left: 5rem; */
}

.form-politics a {
	color: #fff;
	font-size: 1rem;
	line-height: 100%;
	border-bottom: 1px solid #fff;
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
}

.form-politics a:hover {
	border-bottom: 1px solid transparent;
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
}

/* ----------------- form END --------------- */


/* ---------------------------------- HEADER ------------------------------------ */

.header {
	display: block;
	background: #FBFEFF;
	box-shadow: 0px 0px 5rem rgba(0, 0, 0, 0.15);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 8.8rem;
	z-index: 200;
	transition: background 300ms ease-out;
	-webkit-transition: background 300ms ease-out;
	-moz-transition: background 300ms ease-out;
	-ms-transition: background 300ms ease-out;
	-o-transition: background 300ms ease-out;
}

.header._active {
	box-shadow: unset;
	background: var(--blue);
	transition: background 300ms ease-out;
	-webkit-transition: background 300ms ease-out;
	-moz-transition: background 300ms ease-out;
	-ms-transition: background 300ms ease-out;
	-o-transition: background 300ms ease-out;
}

.header__container {
	padding: 1.8rem 0 1.8rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__burger-menu {}

.burger-menu.desktop {
	display: none;
}

.burger-menu__box {
	width: 4rem;
	height: 4rem;
	position: relative;
}

.burger-menu__line {
	background: var(--blue);
	border-radius: .2rem;
	-webkit-border-radius: .2rem;
	-moz-border-radius: .2rem;
	-ms-border-radius: .2rem;
	-o-border-radius: .2rem;
	width: 4rem;
	height: .4rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	-webkit-transform: translateY(-50%) rotate(0deg);
	-moz-transform: translateY(-50%) rotate(0deg);
	-ms-transform: translateY(-50%) rotate(0deg);
	-o-transform: translateY(-50%) rotate(0deg);
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

.burger-menu__line.line-1 {
	transform: translateY(calc(-50% - 1rem)) rotate(0deg);
	-webkit-transform: translateY(calc(-50% - 1rem)) rotate(0deg);
	-moz-transform: translateY(calc(-50% - 1rem)) rotate(0deg);
	-ms-transform: translateY(calc(-50% - 1rem)) rotate(0deg);
	-o-transform: translateY(calc(-50% - 1rem)) rotate(0deg);
}

.burger-menu__line.line-3 {
	transform: translateY(calc(-50% + 1rem)) rotate(0deg);
	-webkit-transform: translateY(calc(-50% + 1rem)) rotate(0deg);
	-moz-transform: translateY(calc(-50% + 1rem)) rotate(0deg);
	-ms-transform: translateY(calc(-50% + 1rem)) rotate(0deg);
	-o-transform: translateY(calc(-50% + 1rem)) rotate(0deg);
}

.header__burger-menu._active .burger-menu__line {
	background: #fff;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

.header__burger-menu._active .burger-menu__line.line-1 {
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-moz-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%) rotate(-45deg);
	-o-transform: translateY(-50%) rotate(-45deg);
}

.header__burger-menu._active .burger-menu__line.line-2 {
	transform: translateY(-50%) rotate(0deg);
	-webkit-transform: translateY(-50%) rotate(0deg);
	-moz-transform: translateY(-50%) rotate(0deg);
	-ms-transform: translateY(-50%) rotate(0deg);
	-o-transform: translateY(-50%) rotate(0deg);
	opacity: 0;
}

.header__burger-menu._active .burger-menu__line.line-3 {
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	-o-transform: translateY(-50%) rotate(45deg);
}

.header__logo {
	/* height: 4rem; */
	width: 14rem;
}

.header__logo svg {
	width: 14rem;
	height: 4rem;
}

.header._active .header__logo .white {
	fill: #fff;
}

.header__logo__text {
	display: none;
}

.header__menu {
	display: none;
}

.header__req-call__block {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--blue);
	color: #fff;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

.header__req-call._active .header__req-call__block {
	opacity: 1;
	visibility: visible;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}


.header__req-call__phone a {
	color: #fff;
}

.header__req-call__btn {
	background: var(--orange);
	font-size: 1.4rem;
	line-height: 100%;
	padding: 1.2rem 1.6rem;
	border-radius: 3rem;
	-webkit-border-radius: 3rem;
	-moz-border-radius: 3rem;
	-ms-border-radius: 3rem;
	-o-border-radius: 3rem;
}


.header__req-call__phone {
	margin-bottom: .4rem;
}

.header__req-call__phone a {
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 100%;
	color: #FFFFFF;
}

.header__req-call__worktime {
	font-size: 1rem;
	line-height: 100%;
	text-align: right;
}

.header__req-call__icon {
	background: var(--blue);
	border-radius: 3rem 0px 0px 3rem;
	-webkit-border-radius: 3rem 0px 0px 3rem;
	-moz-border-radius: 3rem 0px 0px 3rem;
	-ms-border-radius: 3rem 0px 0px 3rem;
	-o-border-radius: 3rem 0px 0px 3rem;
}

.header._active .header__req-call__icon {
	background: var(--orange);
}

.header__req-call__icon {
	padding: 1.4rem 1.4rem 1.4rem 2.2rem;
}

.header__req-call svg {
	width: 2.4rem;
	height: 2.4rem;
}

.header__req-call span {
	display: none;
}

/* ---------------------- mob-menu --------------------------- */
.mob-header {
	position: fixed;
	top: 8.8rem;
	left: 0;
	width: 100%;
	height: calc(100vh - 8.8rem);
	background: var(--blue);
	border: 2px solid var(--blue);
	z-index: 190;
	transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transition: transform 300ms ease-out;
	-webkit-transition: transform 300ms ease-out;
	-moz-transition: transform 300ms ease-out;
	-ms-transition: transform 300ms ease-out;
	-o-transition: transform 300ms ease-out;
	overflow-y: auto;
}

.mob-header._active {
	transform: translateX(0%);
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transition: transform 300ms ease-out;
	-webkit-transition: transform 300ms ease-out;
	-moz-transition: transform 300ms ease-out;
	-ms-transition: transform 300ms ease-out;
	-o-transition: transform 300ms ease-out;
}

.mob-header__container {
	padding: 7.2rem 6rem;
}

.mob-header__list li {
	margin-bottom: 3.2rem;
}

.mob-header__list a {
	color: #fff;
	font-weight: 500;
	font-size: 4rem;
	line-height: 100%;
}

/* ---------------------- mob-menu END --------------------------- */
.header__menu__item {
	position: relative;
}

.header__req-call__icon-close svg {
	width: 2.6rem;
	height: 2.6rem;
}

@media screen and (min-width: 768px) {
	.header {
		height: 12rem;
	}

	.header__container {
		padding: 0 8rem;
		justify-content: flex-start;
	}

	.header__burger-menu.mobile {
		display: none;
	}

	.header__burger-menu.desktop {
		display: block;
		margin-left: 7rem;
	}

	.header__logo__icon {
		margin-bottom: 0.6rem;
	}

	.header__logo {
		padding: 3rem 0 2rem;
		position: relative;
		margin-right: 8rem;
		width: unset;
	}

	.header__logo__text {
		display: block;
		width: 16.1rem;
		font-size: 1.2rem;
		line-height: 100%;
		color: var(--blue);
		/* position: absolute;
		left: 0;
		top: 4.6rem; */
	}

	.header__menu {
		display: block;
		flex-grow: 1;
		/* align-self: flex-start;
		padding-top: 2.2rem; */
	}

	.header__menu>ul {
		display: flex;
	}

	.header__menu__item:not(:last-child) {
		margin-right: 3.2rem;
	}

	.header__req-call__icon {
		display: none;
	}

	.header__req-call__block {
		background: transparent;
	}

	.header__req-call__block {
		position: relative;
		top: 0;
		left: 0;
		opacity: 1;
		visibility: visible;
		padding: 0;
	}

	.header__req-call__phone {
		margin-bottom: 0.8rem;
	}

	.header__req-call__phone a {
		color: var(--blue);
		font-size: 2rem;
		line-height: 100%;
		transition: color 150ms ease-out;
	}

	.header__req-call__phone a:hover {
		color: var(--orange);
	}

	.header__req-call__worktime {
		color: var(--blue);
	}

	.header__req-call__btn {
		background: var(--blue);
		cursor: pointer;
		margin-left: 4rem;
		font-size: 1.6rem;
		line-height: 100%;
		padding: 1.6rem 3.2rem;
		transition: background 150ms linear;
	}

	.header__req-call__btn:hover {
		background: var(--orange);
	}

	.header__req-call__icon-close {
		display: none;
	}

	.header__req-call__worktime {
		font-size: 1.2rem;
		line-height: 100%;
	}

	.header__req-call__btn {
		padding: 1.6rem 3.2rem;
		font-size: 1.6rem;
		line-height: 100%;
	}

	/* .header__req-call span {
		display: block;
		font-size: 1.6rem;
		line-height: 100%;
		color: #FFFFFF;
		background: var(--blue);
		padding: 1.6rem 3.2rem;
		border-radius: 3rem;
		-webkit-border-radius: 3rem;
		-moz-border-radius: 3rem;
		-ms-border-radius: 3rem;
		-o-border-radius: 3rem;
	} */
}


/* ---------------------------------- HEADER END ------------------------------------ */

.main {
	margin-top: 11.2rem;
}

@media screen and (min-width: 768px) {
	.main {
		margin-top: 13.5rem;
	}
}

/* ------------------------- breadcrumbs --------------------------- */

.breadcrumbs-block__container {
	padding-bottom: 8.4rem;
	display: flex;
	flex-wrap: wrap;
}

.articles-page .breadcrumbs-block__container {
	padding-bottom: 0;
}

.default_content .breadcrumbs-block__container {
	padding-bottom: 0;
}

.breadcrumbs-block__container a {
	font-size: 1.2rem;
	line-height: 100%;
	display: inline-flex;
	align-items: center;
	margin-right: 0.8rem;
}

.breadcrumbs-block__container a::after {
	content: "";
	display: block;
	width: 0.8rem;
	height: 0.8rem;
	background: url(../img/icons/plus.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-left: 0.6rem;
}

.breadcrumbs-block__container span {
	font-size: 1.2rem;
	line-height: 100%;
}

@media screen and (min-width: 768px) {
	.breadcrumbs-block__container {
		padding-bottom: 3.3rem;
	}
}

/* ------------------------- breadcrumbs END --------------------------- */

/* ------------------------- MAIN-PAGE --------------------------------- */

/* ------------------------- first-screen ------------------------------- */

.main-page {
	margin-top: 20.8rem;
}

.first-screen__label {
	font-size: 1.6rem;
	line-height: 100%;
	color: var(--orange);
}

.features-page .first-screen {
	margin-bottom: 8rem;
}

.articles-page .first-screen {
	margin-bottom: 8rem;
}

.articles-page .first-screen__content {
	padding-top: 8.4rem;
}

.default_content .first-screen__content {
	display: block;
	padding-top: 8.4rem;
}

.default_content .first-screen__content h1 {
	margin-bottom: 8rem;
	margin-top: 0;
}

.first-screen {
	margin-bottom: 12rem;
}

.first-screen__container h1 {
	margin-bottom: 8rem;
}

.articles-page .first-screen__container h1 {
	margin-bottom: 4rem;
}

.first-screen__banner {
	margin-top: 12rem;
	position: relative;
}

.first-screen__banner__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.first-screen__banner__bg::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--blue);
	opacity: 0.5;
}

.first-screen__banner__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.first-screen__banner__img.desktop {
	display: none;
}

.first-screen__banner__content {
	position: relative;
	z-index: 2;
	padding-top: 4rem;
	padding-bottom: 4rem;
	color: #FFFFFF;
}

.banner__content__list {}

.banner__content__item:nth-child(1) {
	margin-bottom: 4.8rem;
}

.banner__content__item:nth-child(2) {
	margin-bottom: 3.9rem;
}

.banner__content__label {
	font-size: 2rem;
	line-height: 100%;
	margin-bottom: .8rem;
}

.banner__content__row {
	display: flex;
}

.banner__content__count {
	font-weight: 500;
	font-size: 8rem;
	line-height: 100%;
	margin-right: 0.8rem;
}

.banner__content__text {
	font-weight: 700;
	font-size: 2rem;
	line-height: 120%;
	margin-top: 2.8rem;
}

.first-screen__btn__ .btn {
	text-transform: uppercase;
}

.first-screen__btn {
	width: 100%;
	height: 36rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	/* background-color: red; */
	overflow: hidden;
}


.first-screen__btn__circle {
	display: block;
	width: 24rem;
	height: 24rem;
	color: var(--blue);
	cursor: default;
	display: flex;
	align-items: center;
	justify-content: center;
}

.first-screen__btn._hover .first-screen__btn__circle {
	width: 36rem;
	height: 36rem;
}

.first-screen__btn__text {
	position: absolute;
	width: 24rem;
	height: 24rem;
	animation: anim-text 10000ms linear 0s infinite normal forwards;
	-webkit-animation: anim-text 10000ms linear 0s infinite normal forwards;
	pointer-events: none;
}

.features-page .first-screen__btn .btn.btn-1,
.verification-page .first-screen__btn .btn.btn-1 {
	display: none;
}

.features-page .first-screen__btn .btn.btn-3,
.verification-page .first-screen__btn .btn.btn-3 {
	display: none;
}


/* .first-screen__btn._hover .first-screen__btn__text {
	animation-play-state: paused;
} */

@keyframes anim-text {
	0% {
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
	}

	25% {
		transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
	}

	50% {
		transform: rotate(-180deg);
		-webkit-transform: rotate(-180deg);
		-moz-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		-o-transform: rotate(-180deg);
	}

	75% {
		transform: rotate(-270deg);
		-webkit-transform: rotate(-270deg);
		-moz-transform: rotate(-270deg);
		-ms-transform: rotate(-270deg);
		-o-transform: rotate(-270deg);
	}

	100% {
		transform: rotate(-360deg);
		-webkit-transform: rotate(-360deg);
		-moz-transform: rotate(-360deg);
		-ms-transform: rotate(-360deg);
		-o-transform: rotate(-360deg);
	}
}

.first-screen__btn._hover .first-screen__btn__text svg {
	transform: scale(1.4);
	-webkit-transform: scale(1.4);
	-moz-transform: scale(1.4);
	-ms-transform: scale(1.4);
	-o-transform: scale(1.4);
	transition: transform 300ms ease-out;
	-webkit-transition: transform 300ms ease-out;
	-moz-transition: transform 300ms ease-out;
	-ms-transition: transform 300ms ease-out;
	-o-transition: transform 300ms ease-out;
}

.first-screen__btn__text svg {
	width: 100%;
	height: 100%;
	transition: transform 300ms ease-out;
	-webkit-transition: transform 300ms ease-out;
	-moz-transition: transform 300ms ease-out;
	-ms-transition: transform 300ms ease-out;
	-o-transition: transform 300ms ease-out;
}

.first-screen__btn__icon {
	position: absolute;
	width: 4.8rem;
	height: 4.8rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	opacity: 1;
	transition: opacity 150ms ease-out;
	-webkit-transition: opacity 150ms ease-out;
	-moz-transition: opacity 150ms ease-out;
	-ms-transition: opacity 150ms ease-out;
	-o-transition: opacity 150ms ease-out;
	pointer-events: none;
}

.first-screen__btn._hover .first-screen__btn__icon {
	opacity: 0;
	transition: opacity 150ms ease-out;
	-webkit-transition: opacity 150ms ease-out;
	-moz-transition: opacity 150ms ease-out;
	-ms-transition: opacity 150ms ease-out;
	-o-transition: opacity 150ms ease-out;
}

.first-screen__btn__icon svg {
	width: 100%;
	height: 100%;
}

.first-screen__btn__ {}

.first-screen__btn__ .btn:not(:first-child) {
	display: block;
}


.first-screen__btn .btn {
	font-size: 1.6rem;
	line-height: 100%;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	background: var(--orange);
	padding: 1.6rem 0;
	opacity: 0;
	visibility: hidden;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	width: 20rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.first-screen__btn__.count-btn-1 .btn.btn-1 {
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.first-screen__btn .btn.btn-1 {
	transform: translate(-50%, calc(-50% - 5.5rem));
	-webkit-transform: translate(-50%, calc(-50% - 5.5rem));
	-moz-transform: translate(-50%, calc(-50% - 5.5rem));
	-ms-transform: translate(-50%, calc(-50% - 5.5rem));
	-o-transform: translate(-50%, calc(-50% - 5.5rem));
}

.main-page .first-screen__btn .btn.btn-1 {
	transform: translate(-50%, calc(-50% - 3rem));
	-webkit-transform: translate(-50%, calc(-50% - 3rem));
	-moz-transform: translate(-50%, calc(-50% - 3rem));
	-ms-transform: translate(-50%, calc(-50% - 3rem));
	-o-transform: translate(-50%, calc(-50% - 3rem));
}

.main-page .first-screen__btn .btn.btn-2 {
	transform: translate(-50%, calc(-50% + 3rem));
	-webkit-transform: translate(-50%, calc(-50% + 3rem));
	-moz-transform: translate(-50%, calc(-50% + 3rem));
	-ms-transform: translate(-50%, calc(-50% + 3rem));
	-o-transform: translate(-50%, calc(-50% + 3rem));
}

.main-page .first-screen__btn .btn.btn-3 {
	display: none;
}

.first-screen__btn .btn.btn-3 {
	transform: translate(-50%, calc(-50% + 5.5rem));
	-webkit-transform: translate(-50%, calc(-50% + 5.5rem));
	-moz-transform: translate(-50%, calc(-50% + 5.5rem));
	-ms-transform: translate(-50%, calc(-50% + 5.5rem));
	-o-transform: translate(-50%, calc(-50% + 5.5rem));
}


.first-screen__btn._hover .btn {
	opacity: 1;
	visibility: visible;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

.default_content .first-screen__text p {
	font-family: var(--ff-inter);
	font-size: 2rem;
	line-height: 160%;
	color: var(--black);
	margin-bottom: 3.2rem;
}

.default_content .first-screen__text ul li {
	font-size: 2rem;
	line-height: 160%;
	color: var(--black);
}

.default_content .first-screen__text ol li {
	font-size: 2rem;
	line-height: 160%;
	color: var(--black);
}

.default_content .first-screen__text p a {
	font-family: var(--ff-inter);
	font-size: 2rem;
	line-height: 160%;
}

.default_content .first-screen h2 {
	margin: 8rem 0 4rem;
}

@media screen and (min-width: 768px) {
	.main-page {
		margin-top: 18rem;
	}

	.features-page .first-screen {
		margin-bottom: 16rem;
	}


	.first-screen {
		margin-bottom: 16rem;
	}

	.articles-page .first-screen {
		margin-bottom: 12rem;
	}


	.first-screen__container h1 {
		margin-bottom: 0;
	}

	.default_content .first-screen h2 {
		margin: 8rem 0 6rem;
	}

	.first-screen__content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.default_content .first-screen__content {
		padding-top: 12rem;
	}

	.articles-page .first-screen__content {
		display: block;
		padding-top: 12rem;
	}

	.first-screen__label {
		font-size: 2.4rem;
		line-height: 100%;
	}

	.first-screen__box {
		width: 90rem;
	}

	.first-screen__btn {
		/* width: ; */
		width: 36rem;
	}

	.first-screen__btn .btn {
		color: var(--blue);
		background-color: transparent;
	}

	.first-screen__btn__ a._hover {
		background: var(--orange);
		color: #fff;
	}

	.first-screen__btn .btn.btn-1 {
		transform: translate(-50%, calc(-50% - 4rem));
		-webkit-transform: translate(-50%, calc(-50% - 4rem));
		-moz-transform: translate(-50%, calc(-50% - 4rem));
		-ms-transform: translate(-50%, calc(-50% - 4rem));
		-o-transform: translate(-50%, calc(-50% - 4rem));
	}

	.first-screen__btn .btn.btn-3 {
		transform: translate(-50%, calc(-50% + 4rem));
		-webkit-transform: translate(-50%, calc(-50% + 4rem));
		-moz-transform: translate(-50%, calc(-50% + 4rem));
		-ms-transform: translate(-50%, calc(-50% + 4rem));
		-o-transform: translate(-50%, calc(-50% + 4rem));
	}

	.main-page .first-screen__btn .btn.btn-1 {
		transform: translate(-50%, calc(-50% - 2.2rem));
		-webkit-transform: translate(-50%, calc(-50% - 2.2rem));
		-moz-transform: translate(-50%, calc(-50% - 2.2rem));
		-ms-transform: translate(-50%, calc(-50% - 2.2rem));
		-o-transform: translate(-50%, calc(-50% - 2.2rem));
	}

	.main-page .first-screen__btn .btn.btn-2 {
		transform: translate(-50%, calc(-50% + 2.2rem));
		-webkit-transform: translate(-50%, calc(-50% + 2.2rem));
		-moz-transform: translate(-50%, calc(-50% + 2.2rem));
		-ms-transform: translate(-50%, calc(-50% + 2.2rem));
		-o-transform: translate(-50%, calc(-50% + 2.2rem));
	}


	.first-screen__banner {
		margin-top: 7.2rem;
	}

	/* .first-screen__banner__bg {
		background-image: url(../img/banner-desktop.jpg);
	} */

	.first-screen__banner__img.mobile {
		display: none;
	}

	.first-screen__banner__img.desktop {
		display: block;
	}

	.first-screen__banner__content {
		padding-top: 7.4rem;
		padding-bottom: 4.1rem;
	}

	.banner__content__list {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
	}

	.banner__content__item:not(:last-child) {
		margin-bottom: 0;
	}

	.banner__content__item:nth-child(1) {
		grid-column: 1/4;
	}

	.banner__content__item:nth-child(2) {
		grid-column: 5/8;
	}

	.banner__content__item:nth-child(3) {
		grid-column: 9/13;
	}

	/* .about-page .first-screen__text{
		width: 96rem;
		margin: 0 auto;
	} */

	.default_content .first-screen__text {
		width: 96rem;
		margin: 0 auto;
	}
}

/* ------------------------- first-screen END ------------------------------- */

/* ------------------------- our-benefits ---------------------------------- */

.our-benefits {
	margin-bottom: 16rem;
}

.our-benefits__item {
	background: #FFFFFF;
	box-shadow: 0px 0px 5rem rgba(0, 0, 0, 0.15);
	border-radius: 4rem;
	-webkit-border-radius: 4rem;
	-moz-border-radius: 4rem;
	-ms-border-radius: 4rem;
	-o-border-radius: 4rem;
	padding: 4rem 2rem;
}

.our-benefits__item:not(:last-child) {
	margin-bottom: 8rem;
}

.our-benefits__box {
	margin-bottom: 6rem;
}

.our-benefits__main-info {
	margin-bottom: 6rem;
}

.our-benefits__desc p {
	font-size: 1.8rem;
	line-height: 140%;
	color: var(--black);
}

.our-benefits__desc a {
	border-bottom: 1px solid transparent;
	font-size: 1.8rem;
	line-height: 140%;
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
}

.our-benefits__desc a:hover {
	border-bottom: 1px solid var(--blue);

}

.our-benefits__example {
	margin-top: 3.2rem;
	color: var(--blue);
}

.our-benefits__example a {
	font-size: 2rem;
	line-height: 100%;
	font-weight: normal;
	border-bottom: 1px solid transparent;
}

.our-benefits__example a:hover {
	border-bottom: 1px solid var(--blue);
}

.our-benefits__label {
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 100%;
	color: var(--black);
	margin-bottom: 4rem;
}

.our-benefits__item__list li:not(:last-child) {
	margin-bottom: 1.6rem;
}

.our-benefits__item__list li {
	font-size: 1.8rem;
	line-height: 140%;
	color: var(--black);
	display: flex;
}

.our-benefits__item__list li::before {
	content: "";
	display: block;
	width: 1.3rem;
	height: 1.3rem;
	background: url(../img/icons/plusli.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 1.6rem;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 1.3rem;
	position: relative;
	top: 0.6rem;
}

.our-benefits__btns {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.our-benefits__btns a {
	text-align: center;
	font-size: 2rem;
	line-height: 100%;
}

.our-benefits__btns a:last-child {
	align-self: center;
}

.our-benefits__main-info .our-benefits__btns {
	display: none;
}

.our-benefits__btn-order {
	padding: 2.4rem 5rem;
	border-radius: 4rem;
	-webkit-border-radius: 4rem;
	-moz-border-radius: 4rem;
	-ms-border-radius: 4rem;
	-o-border-radius: 4rem;
	margin-bottom: 3.2rem;
	font-weight: 500;
}

.our-benefits__btn-more {
	font-weight: normal;
	font-size: 1.8rem;
	line-height: 100%;
	font-weight: normal;
	border-bottom: 1px solid transparent;
}

.our-benefits__btn-more:hover {
	border-bottom: 1px solid var(--blue);
}

@media screen and (min-width: 768px) {
	.our-benefits {
		margin-bottom: 22rem;
	}

	.our-benefits__item {
		padding: 4rem;
	}

	.our-benefits__item:not(:last-child) {
		margin-bottom: 12rem;
	}

	.our-benefits__box {
		display: flex;
		justify-content: space-between;
		margin-bottom: 2rem;
	}

	.our-benefits__main-info {
		width: 68rem;
		margin-bottom: 0;
	}

	.our-benefits__desc p {
		font-size: 2rem;
		line-height: 140%;
	}

	.our-benefits__column {
		padding-top: 2rem;
		width: 53rem;
	}

	.our-benefits__item__list {
		width: 48rem;
	}

	.our-benefits__btns {
		display: flex;
		justify-content: flex-start;
		flex-direction: row;
		align-items: center;
	}

	.our-benefits__btn-order {
		margin-right: 3.2rem;
		padding: 2.4rem 8rem;
		margin-bottom: 0;
	}


}

/* ------------------------- our-benefits END ---------------------------------- */

/* ------------------------- our-articles ---------------------------------- */

.our-articles {
	overflow: hidden;
	margin-bottom: 16rem;
}

.our-articles__container {}

.our-articles__row {
	margin-bottom: 6rem;
}

.our-articles__text p {
	font-size: 2rem;
	line-height: 140%;
	color: var(--black);
}

.our-articles__btn {
	display: flex;
	justify-content: center;
}

.our-articles__btn .btn {
	padding: 2.4rem 0;
	width: 32rem;
	font-weight: 500;
	font-size: 2rem;
	line-height: 100%;
	border-radius: 4rem;
	-webkit-border-radius: 4rem;
	-moz-border-radius: 4rem;
	-ms-border-radius: 4rem;
	-o-border-radius: 4rem;
}

.our-articles__row .our-articles__btn {
	display: none;
}

.our-articles__slider {
	margin-bottom: 4rem;
	/* overflow: hidden; */
	position: relative;
}

.our-articles__slider .swiper-wrapper {
	margin-bottom: 6rem;
}

.our-articles__slide {
	max-width: 32rem;
	transition: color 150ms ease-out;
	-webkit-transition: color 150ms ease-out;
	-moz-transition: color 150ms ease-out;
	-ms-transition: color 150ms ease-out;
	-o-transition: color 150ms ease-out;
	margin-right: 2.4rem;
}

.swiper-slide {}

.our-articles__slide__image {
	border-radius: 1.6rem;
	-webkit-border-radius: 1.6rem;
	-moz-border-radius: 1.6rem;
	-ms-border-radius: 1.6rem;
	-o-border-radius: 1.6rem;
	overflow: hidden;
	margin-bottom: 1.6rem;
	height: 30rem;
	position: relative;
	z-index: 10;
}

.our-articles__slide__image img {
	display: block;
	width: auto;
	height: 30rem;
	object-fit: cover;
	position: relative;
	z-index: -10;
}

.our-articles__slide__hashtag {
	font-size: 1.6rem;
	line-height: 100%;
	color: var(--black);
	margin-bottom: 1.6rem;
	opacity: 0.6;
}

.our-articles__slide__text {
	font-size: 2rem;
	line-height: 120%;
	color: var(--black);
}

.our-articles__slider__controls {}

.our-articles__slider__arrow {
	background: var(--blue);
	position: absolute;
	width: 8rem;
	height: 8rem;
	top: 13rem;
	z-index: 2;
	border-radius: 6rem;
	-webkit-border-radius: 6rem;
	-moz-border-radius: 6rem;
	-ms-border-radius: 6rem;
	-o-border-radius: 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	visibility: visible;
	opacity: 1;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

.our-articles__slider__arrow.swiper-button-disabled {
	visibility: hidden;
	opacity: 0;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

.our-articles__slider__arrow svg {
	width: 3rem;
	height: 2rem;
}

.our-articles__slider__arrow.left {
	left: -1rem;
}

.our-articles__slider__arrow.right {
	right: -1rem;
}

.swiper-pagination {
	position: relative;
	bottom: 0;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0;
	left: 0px;
	width: 100%;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet .swiper-pagination-bullet-active {
	margin-left: 0;
	margin-right: 0.8rem;
}

.swiper-pagination-bullet {
	width: 1.6rem;
	height: 1.6rem;
	margin-left: 0;
	margin-right: 0.8rem;
	background: #232323;
	opacity: 0.2;
}

.our-articles__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--blue);
	opacity: 1;
}

.block-reviews__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--orange);
	opacity: 1;
}




@media screen and (min-width: 768px) {
	.our-articles {
		margin-bottom: 24rem;
	}

	.our-articles__container {
		padding: 0;
	}

	.our-articles__container h2 {
		padding: 0 8rem;
	}

	.our-articles__row {
		margin-bottom: 8rem;
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		padding: 0 8rem;
	}

	.our-articles__text {
		width: 72rem;
	}

	.our-articles__slider {
		margin-left: 8rem;
	}

	.our-articles__btn {
		display: none;
	}

	.our-articles__row .our-articles__btn {
		display: block;
	}

	.our-articles__slider .swiper-pagination {
		display: none;
	}

	.our-articles__slider .swiper-wrapper {
		margin-bottom: 0;
	}

	.our-articles__slide {
		margin-right: 4rem;
	}

	.our-articles__slide:hover .our-articles__slide__text {
		color: var(--blue);
		transition: color 150ms ease-out;
		-webkit-transition: color 150ms ease-out;
		-moz-transition: color 150ms ease-out;
		-ms-transition: color 150ms ease-out;
		-o-transition: color 150ms ease-out;
	}

	.our-articles__slide img {
		transition: transform 300ms ease-out;
		-webkit-transition: transform 300ms ease-out;
		-moz-transition: transform 300ms ease-out;
		-ms-transition: transform 300ms ease-out;
		-o-transition: transform 300ms ease-out;
	}

	.our-articles__slide:hover img {
		transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
	}

	.our-articles__slider__arrow.left {
		left: 0;
	}

	.our-articles__slider__arrow.right {
		right: 7rem;
	}

	.our-articles__btn .btn {
		width: 27rem;
	}


}


/* ------------------------- our-articles END ---------------------------------- */

/* ------------------------- block-faq ------------------------------------------ */

.main-page__faq {}

.block-faq {
	margin-bottom: 16rem;
}

.block-faq__container {}

.block-faq__container h2 {
	margin-bottom: 6rem;
}

.block-faq__content {}

.block-faq__list {
	margin-bottom: 8rem;
}

.block-faq__item:not(:last-child) {
	margin-bottom: 4.8rem;
}

.block-faq__item__label {
	font-size: 2.4rem;
	line-height: 100%;
	color: var(--blue);
	cursor: pointer;
}

.block-faq__item._visited .block-faq__item__label {
	color: var(--black);
	opacity: 0.5;
}

.block-faq__item._active .block-faq__item__label {
	color: var(--black);
	opacity: 1;
}

.block-faq__item__body {
	height: 0;
	overflow: hidden;
	transition: height 300ms ease-out;
	-webkit-transition: height 300ms ease-out;
	-moz-transition: height 300ms ease-out;
	-ms-transition: height 300ms ease-out;
	-o-transition: height 300ms ease-out;
}



.block-faq__item__body__content {
	padding-top: 4.8rem;
}

.block-faq__item__text {
	color: var(--black);
}

.block-faq__item__text p,
.block-faq__item__text li {
	font-size: 2rem;
	line-height: 140%;
	margin-bottom: 0.8rem;
}

.block-faq__item__text li{
	list-style: none;
}

.block-faq__item__text a {
	font-size: 2rem;
	line-height: 140%;
}

.block-faq__item__text {
	margin-bottom: 4rem;
}

.block-faq__item__btn {
	display: flex;
	justify-content: center;
}

.block-faq__item__btn a {
	padding: 1.6rem 3.9rem;
	font-size: 1.8rem;
	line-height: 100%;
}

.block-faq__link a {
	font-weight: 500;
	font-size: 2rem;
	line-height: 100%;
	color: #fff;
	padding: 2.4rem 0;
	border-bottom: 1px solid var(--orange);
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
	width: 100%;
	border-radius: 4rem;
	-webkit-border-radius: 4rem;
	-moz-border-radius: 4rem;
	-ms-border-radius: 4rem;
	-o-border-radius: 4rem;
}

@media screen and (min-width: 768px) {
	.block-faq {
		margin-bottom: 24rem;
	}

	.block-faq__container {
		display: flex;
		justify-content: center;
	}

	.block-faq__container h2 {
		font-size: 6.4rem;
		line-height: 120%;
		text-align: center;
		margin-bottom: 8rem;
	}

	.block-faq__content {
		width: 91.4rem;
	}

	.block-faq__list {
		width: 72rem;
		margin: 0 auto 16rem;
	}

	.block-faq__item__label {
		text-align: center;
	}

	.block-faq__item__body__content {
		padding-top: 4rem;
	}

	.block-faq__link {
		text-align: center;
	}

	.block-faq__link a:hover {
		border-bottom: 1px solid transparent;
		transition: border 150ms ease-out;
		-webkit-transition: border 150ms ease-out;
		-moz-transition: border 150ms ease-out;
		-ms-transition: border 150ms ease-out;
		-o-transition: border 150ms ease-out;
	}

	.block-faq__item__text {
		text-align: center;
	}

	.block-faq__item:not(:last-child) {
		margin-bottom: 8rem;
	}

	.block-faq__link a {
		width: unset;
		padding: 2.4rem 8rem;
	}

}

/* ------------------------- block-faq END ------------------------------------------ */

/* ------------------------- block-reviews ------------------------------------------ */

.main-page__reviews {}

.block-reviews {
	overflow: hidden;
	margin-bottom: 16rem;
}

.block-reviews__container h2 {
	margin-bottom: 6rem;
	padding: 0 2rem;
}

.block-reviews__slider {
	margin-bottom: 8rem;
}

.block-reviews__slider .swiper-wrapper {
	margin-bottom: 4rem;
}

.block-reviews__slide {
	background-color: var(--blue);
	padding: 6rem 4rem;
	/* box-shadow: 0px 0px 5rem rgba(0, 0, 0, 0.15); */
	color: #fff;
}

.swiper-slide {}

.block-reviews__slide__text {
	margin-bottom: 9.6rem;
}

.block-reviews__slide__text p {
	font-size: 2rem;
	line-height: 140%;
	color: #fff;
}



.block-reviews__slide__autor {
	font-size: 2rem;
	line-height: 100%;
	margin-bottom: 2.4rem;
}

.block-reviews__slide__image {
	display: inline-block;
	position: relative;
}

.block-reviews__slide__image span {
	font-family: var(--ff-inter);
	font-size: 2rem;
	line-height: 100%;
	border-bottom: 1px solid #fff;
	color: #FFFFFF;
	cursor: pointer;
}

.block-reviews__write-review {
	text-align: center;
}

.block-reviews__write-review a {
	display: inline-block;
	font-size: 2rem;
	line-height: 100%;
	color: #fff;
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
	padding: 2.4rem 0;
	width: 32rem;
	border-radius: 4rem;
	-webkit-border-radius: 4rem;
	-moz-border-radius: 4rem;
	-ms-border-radius: 4rem;
	-o-border-radius: 4rem;
}

@media screen and (min-width: 768px) {
	.block-reviews {
		margin-bottom: 24rem;
	}

	.block-reviews__container h2 {
		padding: 0 8rem;
	}

	.block-reviews__content {
		width: 108rem;
		margin-left: calc((100% - 108rem) / 2);
	}

	.block-reviews__slider {
		margin-bottom: 12rem;
	}

	.block-reviews__slide {
		padding: 6rem 8rem;
		box-shadow: 0px 0px 5rem rgba(0, 0, 0, 0.15);
		border-radius: 4rem;
		-webkit-border-radius: 4rem;
		-moz-border-radius: 4rem;
		-ms-border-radius: 4rem;
		-o-border-radius: 4rem;
	}

	.block-reviews__slider .swiper-pagination-bullet:hover {
		background: #232323;
		opacity: 0.5;
	}

	.block-reviews__slide__text {
		margin-bottom: 4rem;
	}

	.block-reviews__slide__text p {
		font-size: 2.4rem;
		line-height: 140%;
	}

	.block-reviews__slide__row {
		display: flex;
		/* align-items: flex-end; */
	}

	.block-reviews__slide__autor {
		margin-bottom: 0;
		margin-right: 5.4rem;
	}

	.block-reviews__slide__image span {
		transition: border 150ms ease-out;
		-webkit-transition: border 150ms ease-out;
		-moz-transition: border 150ms ease-out;
		-ms-transition: border 150ms ease-out;
		-o-transition: border 150ms ease-out;
	}

	.block-reviews__slide__image span:hover {
		border-bottom: 1px solid transparent;
	}
}

.original-review {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 222;
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease-out;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	padding: 5rem 0;
}

.original-review._active {
	opacity: 1;
	visibility: visible;
}

.original-review__container {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.original-review__content {
	position: relative;
	margin: 0 2rem;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.original-review__close {
	width: 2rem;
	height: 2rem;
	position: absolute;
	top: -3rem;
	right: 0;
	background: url(../img/icons/close.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.original-review__img {
	max-height: 100%;
	position: relative;
	opacity: 0;
	visibility: hidden;
}

.original-review__img img {
	max-width: 100%;
	max-height: 100%;
}

.original-review._active .original-review__img {
	opacity: 1;
	visibility: visible;
	transition: all 400ms ease-out 200ms;
	-webkit-transition: all 400ms ease-out 200ms;
	-moz-transition: all 400ms ease-out 200ms;
	-ms-transition: all 400ms ease-out 200ms;
	-o-transition: all 400ms ease-out 200ms;
}


/* ------------------------- block-reviews END ------------------------------------------ */



/* ------------------------- online-consultation -------------------------------- */
.main-page__online-consultation {}

.online-consultation {
	background: var(--blue);
}

.online-consultation__container {
	padding-top: 6rem;
	padding-bottom: 8rem;
}

.online-consultation__container h2 {
	color: #fff;
	font-size: 3.2rem;
	line-height: 120%;
}

.online-consultation__text {
	margin-bottom: 6rem;
}

.online-consultation__text p {
	font-size: 1.8rem;
	line-height: 140%;
	color: #FFFFFF;
}

.online-consultation__text p:not(:last-child) {
	margin-bottom: 1.6rem;
}

.online-consultation__form {}

.online-consultation__form__label {
	font-size: 1.6rem;
	line-height: 100%;
	color: #FFFFFF;
	margin-bottom: 2rem;
}

.consultation-form {}

.consultation-form__box {
	margin-bottom: 4rem;
}

.form-box {}

.consultation-form__line {
	border-radius: .5rem;
	-webkit-border-radius: .5rem;
	-moz-border-radius: .5rem;
	-ms-border-radius: .5rem;
	-o-border-radius: .5rem;
	height: 6rem;
	cursor: text;
}

.consultation-form__label {
	padding: 0 2rem;
	color: var(--black);
	opacity: 0.5;
	font-size: 2rem;
	line-height: 100%;
}

.consultation-form__input {
	padding: 0 2rem;
	font-size: max(16px, 2rem);
	line-height: 100%;
}

.form-input {}

.consultation-form__btn {
	margin-bottom: 2.4rem;
}

.consultation-form__btn .form-btn {
	width: 100%;
	border-radius: .5rem;
	-webkit-border-radius: .5rem;
	-moz-border-radius: .5rem;
	-ms-border-radius: .5rem;
	-o-border-radius: .5rem;
	font-weight: 500;
	font-size: 2rem;
	line-height: 100%;
	padding: 0;
	height: 6rem;
}

.consultation-form__politicts {
	font-size: 1.4rem;
	line-height: 120%;
}

.consultation-form__politicts a {
	font-size: 1.4rem;
	line-height: 120%;
}

@media screen and (min-width: 768px) {
	.online-consultation__container {
		padding: 12rem 8rem;
	}

	.online-consultation__container h2 {
		font-weight: 600;
		font-size: 4.8rem;
		line-height: 100%;
		margin-bottom: 6rem;
	}

	.online-consultation__content {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
	}

	.online-consultation__column {
		grid-column: 1/7;
	}

	.online-consultation__form {
		grid-column: 8/12;
	}

	.online-consultation__text {
		margin-bottom: 0;
		max-width: 60rem;
	}

	.online-consultation__text p {
		font-size: 2rem;
		line-height: 140%;
	}

	.online-consultation__form__label {
		margin-bottom: 2.4rem;
	}

	.consultation-form__politicts {
		font-size: 1.4rem;
		line-height: 120%;
	}
}

/* ------------------------- online-consultation END -------------------------------- */


/* ------------------------- FOOTER ------------------------------------------------ */
.footer {
	/* margin-top: 16rem; */
}

.footer__container {
	padding-top: 4rem;
	padding-bottom: 2rem;
	display: grid;
	grid-template-columns: 1fr;
}

.footer__column.first,
.footer__column.contacts {
	margin-bottom: 4rem;
}

.footer__logo {
	height: 6rem;
	margin-bottom: 1.6rem;
}

.footer__logo svg {
	width: 8rem;
	height: 6rem;
}

.footer__copy {
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 100%;
	color: var(--blue);
}

.footer__column.contacts {
	grid-row-start: 2;
}

.footer__contact:not(:last-child) {
	margin-bottom: 1.6rem;
}

.footer__contact a {
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 100%;
}

.footer__socials {
	margin-bottom: 1.6rem;
	display: flex;
	height: 3.2rem;
	position: relative;
}

.footer__social__icon {
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.footer__social {
	width: 3.2rem;
	position: absolute;
	top: 0;
	left: 0;
	transition: left 300ms ease-out;
	-webkit-transition: left 300ms ease-out;
	-moz-transition: left 300ms ease-out;
	-ms-transition: left 300ms ease-out;
	-o-transition: left 300ms ease-out;
}

.footer__socials._active .footer__social {
	transition: left 300ms ease-out;
	-webkit-transition: left 300ms ease-out;
	-moz-transition: left 300ms ease-out;
	-ms-transition: left 300ms ease-out;
	-o-transition: left 300ms ease-out;
}

/* .footer__social:not(:first-child) {
	margin-left: 4.4rem;
} */


.footer__social svg,
.footer__social__icon svg {
	width: 3.2rem;
	height: 3.2rem;
}

/* .footer__social:hover path:first-child {
	fill: var(--blue);
} */

.footer__info {
	font-size: 1.2rem;
	line-height: 100%;
	color: var(--black);
	opacity: 0.3;
}

.footer__contract-offers {
	margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
	.footer__container {
		padding-top: 4rem;
		padding-bottom: 4rem;
		display: flex;
		align-items: flex-end;
	}

	.footer__column.first,
	.footer__column.contacts {
		margin-bottom: 0;
	}

	.footer__column.second {
		width: 77.8rem;
		margin-left: 8.8rem;
	}

	.footer__column.contacts {
		margin-left: auto;
	}

	.footer__contact {
		text-align: right;
	}

	.footer__socials {
		display: inline-flex;
	}

	.footer__contact a {
		font-size: 1.6rem;
	}

	.footer__row {
		display: flex;
	}

	.footer__contract-offers {
		margin-bottom: 0;
		margin-right: 3rem;
	}
}

/* ------------------------- FOOTER END ------------------------------------------------ */
/* ------------------------- MAIN-PAGE END --------------------------------- */


/* ------------------------- FEATURES-PAGE --------------------------------- */

/* ------------------------- block-desc ---------------------------------------- */
.features-page__desc {}

.block-desc {
	margin-bottom: 16rem;
}

.block-desc__text p {
	font-weight: normal;
	font-size: 2rem;
	line-height: 140%;
	margin-bottom: 4rem;
}

.block-desc__text a {
	font-weight: normal;
	font-size: 2rem;
	line-height: 140%;
}

.block-desc__link a {
	font-weight: normal;
	font-size: 2rem;
	line-height: 160%;
	color: var(--blue);
	border-bottom: 1px solid transparent;
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
}

.block-desc__link a:hover {
	border-bottom: 1px solid var(--blue);
}

@media screen and (min-width: 768px) {
	.block-desc {
		margin-bottom: 24rem;
	}

	.block-desc__container {
		width: 90rem;
		margin: 0 auto;
		padding: 0;
	}

	.block-desc__text p {
		font-size: 2.4rem;
		line-height: 140%;
	}

	.block-desc__text a {
		font-size: 2.4rem;
		line-height: 140%;
	}

	.block-desc__link a {
		font-size: 2.4rem;
		line-height: 100%;
	}
}

/* ------------------------- block-desc END ---------------------------------------- */

/* ------------------------- calculator-price ---------------------------- */
.features-page__calculator-price {}

.calculator-price {
	background: var(--blue);
	margin-bottom: 16rem;
}

.calculator-price__container h2 {
	color: #fff;
}

.calculator-price__content {
	padding-top: 4rem;
	padding-bottom: 26.6rem;
	position: relative;
}


.calculator-price__box {}

.calculator-price__block {
	margin-bottom: 4.8rem;
}

.calculator-price__input__label {
	font-size: 1.6rem;
	line-height: 100%;
	color: #FFFFFF;
	margin-bottom: .8rem;
}

.calculator-price__input__ input {
	width: 100%;
	height: 6.8rem;
	background: #CDDFEA;
	border-radius: .5rem;
	-webkit-border-radius: .5rem;
	-moz-border-radius: .5rem;
	-ms-border-radius: .5rem;
	-o-border-radius: .5rem;
	padding: 0 1.7rem;
	font-size: max(16px, 2rem);
	line-height: 100%;
	color: var(--black);
}

.calculator-price__packages {}

.packages-list {}

.packages-list__item:not(:last-child) {
	margin-bottom: 4.8rem;
}

.packages-list__item__label {
	font-weight: 600;
	font-size: 2rem;
	line-height: 100%;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 1.6rem;
}

.packages-list__item__price {
	font-weight: 700;
	font-size: 4rem;
	line-height: 100%;
	color: #FFFFFF;
	margin-bottom: 2.4rem;
}

.packages-list__item__features-list {}

.packages-list__item__features-item {
	font-size: 1.6rem;
	line-height: 100%;
	color: #FFFFFF;
}

.packages-list__item__features-item:not(:last-child) {
	margin-bottom: 1.2rem;
}

.calculator-price__row {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4rem;
}

.calculator-price__btn {
	font-family: var(--ff-inter);
	width: 100%;
	margin: 0 auto 2.4rem;
	padding: 0;
	height: 6.8rem;
	font-weight: 500;
	font-size: 2rem;
	line-height: 100%;
	color: #FFFFFF;
	border-radius: .6rem;
	-webkit-border-radius: .6rem;
	-moz-border-radius: .6rem;
	-ms-border-radius: .6rem;
	-o-border-radius: .6rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.calculator-price__text {
	font-family: var(--ff-inter);
	font-size: 1.6rem;
	line-height: 140%;
	color: #FFFFFF;
	font-weight: normal;
	text-align: center;
}

.calculator-price__text a {
	font-family: var(--ff-inter);
	font-size: 1.6rem;
	line-height: 140%;
	color: #FFFFFF;
	font-weight: normal;
	border-bottom: 1px solid #fff;
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
}

.calculator-price__text a:hover {
	border-bottom: 1px solid transparent;
}

@media screen and (min-width: 768px) {
	.calculator-price {
		background: transparent;
		margin-bottom: 24rem;
	}

	.calculator-price__content {
		background: var(--blue);
		padding: 6rem;
		border-radius: 4rem;
		-webkit-border-radius: 4rem;
		-moz-border-radius: 4rem;
		-ms-border-radius: 4rem;
		-o-border-radius: 4rem;
	}

	.calculator-price__box {
		display: flex;
	}

	.calculator-price__block {
		margin-bottom: 0;
		width: 42rem;
		margin-right: 12rem;
	}

	.calculator-price__input {
		margin-bottom: 2.3rem;
	}

	.packages-list {
		display: flex;
	}

	.packages-list__item {
		margin-bottom: 0;
	}

	.packages-list__item:not(:last-child) {
		margin-right: 11rem;
		margin-bottom: 0;
	}

	.calculator-price__row {
		position: relative;
		bottom: unset;
		left: unset;
		right: unset;

	}

	.calculator-price__btn {
		margin-bottom: 3.2rem;
	}

	.calculator-price__text {
		text-align: left;
	}


}

/* ------------------------- calculator-price END ---------------------------- */

/* ------------------------- verification-block ------------------------------ */

.features-page__verification {}

.verification-block {
	margin-bottom: 16rem;
}

.verification-block__container {}

.verification-block__content {}

.verification-block__content h2 {
	margin-bottom: 6rem;
}

.verification-block__item:not(:last-child) {
	margin-bottom: 12rem;
}

.verification-block__item__img {
	margin-bottom: 6rem;
}

.verification-block__item__img img {
	width: 100%;
}

.verification-block__item__column {}

.verification-block__item__label {
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 120%;
	color: var(--black);
	margin-bottom: 3.2rem;
}

.verification-block__item__list {
	margin-bottom: 6rem;
}

.verification-block__item__list li:not(:last-child) {
	margin-bottom: 2.4rem;
}

.verification-block__item__list li {
	font-size: 2rem;
	line-height: 140%;
	color: var(--black);
}

.plus-li {
	position: relative;
	padding-left: 3.4rem;
}

.verification-block__item__list li a {
	font-weight: normal;
	font-size: 2rem;
	line-height: 140%;
	color: var(--blue);
	border-bottom: 1px solid var(--blue);
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
}

.verification-block__item__list li a:hover {
	border-bottom: 1px solid transparent;
}

.plus-li::before {
	content: "";
	display: block;
	width: 1.8rem;
	height: 1.8rem;
	position: absolute;
	top: .4rem;
	left: 0;
	background-image: url(../img/icons/plusli.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.verification-block__item__btn {
	width: 100%;
	padding: 2.4rem 0;
	font-weight: 500;
	font-size: 2rem;
	line-height: 100%;
	color: #FFFFFF;
	border-radius: 4rem;
	-webkit-border-radius: 4rem;
	-moz-border-radius: 4rem;
	-ms-border-radius: 4rem;
	-o-border-radius: 4rem;
}

@media screen and (min-width: 768px) {
	.verification-block__content h2 {
		width: 120rem;
		margin-bottom: 8rem;
	}

	.verification-block__item {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.verification-block__item__img {
		margin-bottom: 0;
	}

	.verification-block__item__img img {
		max-width: 60rem;
	}

	.verification-block__item:not(:last-child) {
		margin-bottom: 16rem;
	}

	.verification-block__item:nth-child(even) .verification-block__item__img {
		order: 1;
		text-align: right;
	}

	.verification-block__item__label {
		font-size: 3.2rem;
		line-height: 140%;
		width: 63rem;
	}

	.verification-block__item__list li {
		font-size: 2.4rem;
		line-height: 140%;
	}

	.plus-li::before {
		top: 0.7rem;
	}

	.verification-block__item__list li a {
		font-size: 2.4rem;
		line-height: 140%;
	}

	.verification-block__item__list li:not(:last-child) {
		margin-bottom: 1.6rem;
	}

	.verification-block__item__btn {
		width: unset;
		padding: 2.4rem 8rem;
	}
}


/* ------------------------- verification-block END ------------------------------ */

/* ------------------------- .our-partners --------------------------------------------- */

.our-partners__container {
	background: var(--black);
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.our-partners__content {}

.our-partners__text {
	font-size: 1.6rem;
	line-height: 160%;
	color: #FFFFFF;
	margin-bottom: 6rem;
}

.our-partners__category__label {
	font-family: var(--ff-inter);
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 160%;
	color: #FFFFFF;
	margin-bottom: 4rem;
}

.our-partners__category__images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 4rem;
}

.our-partners__category:not(:last-child) {
	margin-bottom: 8rem;
}

.our-partners__image {
	height: 12rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2.2rem;
}

.our-partners__image {}

@media screen and (min-width: 768px) {
	.our-partners__container {
		padding-top: 12rem;
		padding-bottom: 12rem;
	}

	.our-partners__text {
		width: 65rem;
		margin-bottom: 8rem;
	}

	.our-partners__category__label {
		font-size: 2.4rem;
		line-height: 160%;
	}

	.our-partners__category:not(:last-child) {
		margin-bottom: 12rem;
	}

	.our-partners__category__images {
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 0;
	}

	.our-partners__image {
		height: 24rem;
		padding: 0 5rem;
	}

	.our-partners__image img {
		max-width: 16.7rem;
	}
}

/* ------------------------- .our-partners END --------------------------------------------- */

/* ------------------------- our-features --------------------------------------------- */

.our-features__container {
	margin-bottom: 16rem;
}

.our-features__container h2 {
	font-size: 2.4rem;
	line-height: 100%;
	margin-bottom: 8rem;
}

.our-features__content {}

.our-features__list {
	/* height: 100vh; */
}

.our-features__item:not(:last-child) {
	margin-bottom: 8rem;
}

.our-features__label {
	font-weight: 600;
	font-size: 4.8rem;
	line-height: 100%;
	color: var(--black);
	margin-bottom: 4rem;
}

.our-features__item__list li {
	font-size: 2rem;
	line-height: 140%;
	color: var(--black);
}

.our-features__item__list li:not(:last-child) {
	margin-bottom: 1.6rem;
}

@media screen and (min-width: 768px) {
	.our-features {
		/* margin-bottom: 24rem; */
		/* overflow: hidden; */
		position: relative;
		margin-top: 32rem;
		margin-bottom: 32rem;
	}

	.our-features__container {
		padding: 0;
		height: 100%;
		margin-bottom: 0;

	}


	.our-features__content {

		position: sticky;
		top: 30%;
		left: 0;
	}


	.our-features__container h2 {
		font-size: 2.4rem;
		line-height: 100%;
		padding-left: 8rem;
		margin-bottom: 12rem;
	}

	.our-features__content {}

	.our-features__list {
		min-height: 30.8rem;
		padding-left: 8rem;
		overflow: hidden;
	}

	.our-features__list__wrapper {
		display: flex;
		width: max-content;
	}

	.our-features__item:not(:last-child) {
		margin-bottom: 0;
	}

	.our-features__item {
		min-width: 43.4rem;
		margin-right: 16rem;
	}

	.our-features__label {
		font-weight: 600;
		font-size: 8rem;
		line-height: 100%;
		margin-bottom: 6rem;
	}
}

/* ------------------------- our-features END --------------------------------------------- */


/* ------------------------- FEATURES-PAGE END --------------------------------- */


/* ------------------------- VERIFICATION-PAGE ---------------------------------- */

/* ------------------------- benefits-verification --------------------------- */

.verification-page__benefits {}

.benefits-verification {
	margin-bottom: 16rem;
}

.benefits-verification__container {}

.benefits-verification__content h2 {
	margin-bottom: 6rem;
}

.benefits-verification__box {
	margin-bottom: 12rem;
}

.benefits-verification__img {
	border-radius: .8rem;
	-webkit-border-radius: .8rem;
	-moz-border-radius: .8rem;
	-ms-border-radius: .8rem;
	-o-border-radius: .8rem;
	overflow: hidden;
	margin-bottom: 6rem;
}

.benefits-verification__img img {
	width: 100%;
}

.benefits-verification__list {}

.benefits-verification__item:not(:last-child) {
	margin-bottom: 8rem;
}

.benefits-verification__item__label {
	font-weight: 500;
	font-size: 3.2rem;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 4rem;
}

.benefits-verification__item__list li {
	font-size: 2.4rem;
	line-height: 140%;
	color: var(--black);
	padding-left: 3.4rem;
}

.benefits-verification__item__list li::before {
	top: 0.7rem;
}

.benefits-verification__item__list li:not(:last-child) {
	margin-bottom: 2.4rem;
}

.benefits-verification__stages {}

.benefits-verification__stages__label {
	display: none;
}



.benefits-verification__stages__row {}

.benefits-verification__stage__item {
	margin-bottom: 6rem;
	box-shadow: 0px 0px 5rem rgba(0, 0, 0, 0.15);
	border-radius: 4rem;
	-webkit-border-radius: 4rem;
	-moz-border-radius: 4rem;
	-ms-border-radius: 4rem;
	-o-border-radius: 4rem;
	padding: 4rem 2rem 4rem 3rem;
	background: #fff;
}

.stage__item__label {
	font-size: 3.2rem;
	line-height: 100%;
	margin-bottom: 3.2rem;
}

.stage__item__desc {
	font-size: 2rem;
	line-height: 140%;
}

.stage__item__document {
	margin-top: 3.2rem;
}

.stage__item__document a {
	font-weight: normal;
	font-size: 2rem;
	line-height: 100%;
}

@media screen and (min-width: 768px) {
	.benefits-verification {
		margin-bottom: -14rem;
	}

	.benefits-verification__content h2 {
		width: 120rem;
		margin-bottom: 8rem;
	}

	.benefits-verification__box {
		display: grid;
		grid-template-columns: 1fr 1fr;
		margin-bottom: 24rem;
	}

	.benefits-verification__stages__list {
		padding-top: 36rem;
	}

	.benefits-verification__img {
		margin-bottom: 0;
	}

	.benefits-verification__img img {
		max-width: 60rem;
	}

	.benefits-verification__stages {
		position: relative;
	}

	.benefits-verification__stages__label {
		display: block;
		position: sticky;
		top: 50%;
		left: 0;
		right: 0;
		white-space: nowrap;
		font-size: 12rem;
		line-height: 110%;
		color: #fff;
		text-shadow: -1px 0 var(--black), 0 1px var(--black), 1px 0 var(--black), 0 -1px var(--black);
		margin-bottom: -36rem;
		z-index: 2;
	}

	.benefits-verification__stages__label span {}

	.benefits-verification__stages__row {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		align-items: end;
	}

	.benefits-verification__stages__row:nth-child(2) {
		margin-top: 0.4rem;
	}

	.benefits-verification__stage__item {
		width: 48rem;
		padding: 8rem 5rem;
		position: relative;
		z-index: 2;
		transform: translateY(30rem);
		-webkit-transform: translateY(30rem);
		-moz-transform: translateY(30rem);
		-ms-transform: translateY(30rem);
		-o-transform: translateY(30rem);
	}

	.stage__item__label {
		font-size: 4.4rem;
		line-height: 100%;
		margin-bottom: 4.8rem;
	}

	.stage__item__desc {
		font-size: 2rem;
		line-height: 140%;
	}

	.benefits-verification__stage__item {
		margin-bottom: 0;
	}

	.benefits-verification__stages__row:not(:last-child) .benefits-verification__stage__item:first-child {
		margin-bottom: 16rem;
	}

	.benefits-verification__stages__row:last-child .benefits-verification__stage__item {
		margin-top: 8rem;
	}
}

/* ------------------------- benefits-verification END --------------------------- */

/* ------------------------- example-documents -------------------------- */

.verification-page__example-documents {}

.example-documents {
	margin-bottom: 16rem;
}

.example-documents__content h2 {
	margin-bottom: 6rem;
}

.example-documents__box {}

.example-documents__images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 3rem;
	grid-row-gap: 2.4rem;
	margin-bottom: 8rem;
}

.example-documents__img img {
	width: 100%;
}

.example-documents__text {
	font-size: 2rem;
	line-height: 160%;
	margin-bottom: 6rem;
}

.example-documents__btn {
	font-weight: 500;
	font-size: 2rem;
	line-height: 100%;
	border-radius: 4rem;
	-webkit-border-radius: 4rem;
	-moz-border-radius: 4rem;
	-ms-border-radius: 4rem;
	-o-border-radius: 4rem;
	width: 100%;
	padding: 2.4rem 0;
}

@media screen and (min-width: 768px) {
	.example-documents__content h2 {
		margin-bottom: 8rem;
	}

	.example-documents__box {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
	}

	.example-documents__images {
		padding-right: 4rem;
		grid-template-columns: repeat(6, 1fr);
		grid-gap: 1.6rem;
	}

	.example-documents__text {
		font-size: 2rem;
		line-height: 140%;
	}

	.example-documents__btn {
		width: unset;
		padding: 2.4rem 8rem;
	}
}

/* ------------------------- example-documents END -------------------------- */

/* ------------------------- order-verification ----------------------------- */

.verification-page__order-verification {}

.order-verification {
	background: var(--blue);
	margin-bottom: 20rem;
	position: relative;
	z-index: 2;
}

.order-verification__container {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.order-verification__content h2 {
	color: #fff;
}

.form-order__column {
	margin-bottom: 12rem;
}

.form-order__row:not(:last-child) {
	margin-bottom: 4rem;
}

.form-order__group.additional-checks {
	display: none;
}

.form-order__group.person-data {
	display: none;
}

.form-order.second-step .form-order__group.additional-checks {
	display: block;
}

.form-order.third-step .form-order__group.person-data {
	display: block;
}

.form-order__group.additional-checks .form-order__row:not(:last-child) {
	margin-bottom: 2.4rem;
}

.form-order__group.person-data .form-order__row:not(:last-child) {
	margin-bottom: 2.4rem;
}

.form-order__item__label {
	font-size: 1.6rem;
	line-height: 140%;
	color: #fff;
	margin-bottom: 2.4rem;
}

.form-order__line {
	border-radius: .8rem;
	-webkit-border-radius: .8rem;
	-moz-border-radius: .8rem;
	-ms-border-radius: .8rem;
	-o-border-radius: .8rem;
	height: 6rem;
	cursor: text;
}

.form-order.third-step .form-line.error {
	border: 1px solid #ff0000;
}

.form-order.third-step .form-line.correct {
	border-color: forestgreen;
}

.select-arrow-icon {
	position: relative;
}

.select-arrow-icon::after {
	content: "";
	display: block;
	width: 2.2rem;
	height: 1.4rem;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	background-image: url(../img/icons/arrow-down.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	z-index: 2;
	pointer-events: none;
}

.form-order .form-label {
	padding: 0 0 0 2rem;
	font-size: 1.4rem;
	line-height: 100%;
	opacity: 0.5;
}

.form-order .form-line._active .form-label {
	top: 1rem;
	font-size: 1.2rem;
	line-height: 100%;
}

.form-order .form-line._added .form-label {
	opacity: 1;
}

.form-select {
	width: 100%;
	outline: none;
	height: 5rem;
	font-size: max(16px, 2rem);
	line-height: 100%;
	background: transparent;
	padding: 0 2rem;
	color: var(--black);
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none !important;
	outline: none;
	border: 0;
	position: absolute;
	top: 1rem;
}

.form-select option:first-of-type {
	display: none
}

.form-line.file {
	height: 6rem;
	cursor: unset;
}

.form-line.selectbox {
	cursor: unset;
}

.form-line.file input {
	height: 6rem;
	position: relative;
	/* opacity: 0;
	visibility: hidden; */
	display: none;
}

.form-order__file__btn {
	position: absolute;
	top: -1px;
	right: -1px;
	width: 13.8rem;
	height: 6rem;
	background: #FF9700;
	z-index: 1;
	border-radius: 0px .5rem .5rem 0px;
	-webkit-border-radius: 0px .5rem .5rem 0px;
	-moz-border-radius: 0px .5rem .5rem 0px;
	-ms-border-radius: 0px .5rem .5rem 0px;
	-o-border-radius: 0px .5rem .5rem 0px;
	cursor: pointer;
	transition: width 150ms ease-out;
	-webkit-transition: width 150ms ease-out;
	-moz-transition: width 150ms ease-out;
	-ms-transition: width 150ms ease-out;
	-o-transition: width 150ms ease-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-order__file__btn span {
	font-size: 1.8rem;
	line-height: 100%;
	color: #FFFFFF;
	opacity: 1;
	transition: opacity 150ms ease-out 100ms;
	-webkit-transition: opacity 150ms ease-out 100ms;
	-moz-transition: opacity 150ms ease-out 100ms;
	-ms-transition: opacity 150ms ease-out 100ms;
	-o-transition: opacity 150ms ease-out 100ms;
}

.form-line._added .form-order__file__btn span {
	opacity: 0;
	transition: opacity 0ms ease-out 0ms;
	-webkit-transition: opacity 0ms ease-out 0ms;
	-moz-transition: opacity 0ms ease-out 0ms;
	-ms-transition: opacity 0ms ease-out 0ms;
	-o-transition: opacity 0ms ease-out 0ms;
}

.form-line._added .form-order__file__btn {
	background: #d87171;
	width: 6rem;
}

.form-line._added .form-order__file__btn::after {
	content: "";
	width: 2.8rem;
	height: 2.8rem;
	background-image: url(../img/icons/close.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.form-order .form-input {
	padding: 0 2rem;
}

.block-services {
	position: sticky;
	top: 13rem;
	height: fit-content;
}

.block-services__list {
	padding-bottom: 4rem;
	border-bottom: 1px solid #D9D9D9;
	margin-bottom: 1.6rem;
}

.block-services__item:not(:last-child) {
	margin-bottom: 4rem;
}

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

.block-services__item__name-service {
	width: 25.5rem;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 120%;
	color: #FFFFFF;
}



.block-services__item__price {
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 120%;
	color: #FFFFFF;
	align-self: flex-start;
	display: flex;
	align-items: center;
}

.block-services__item__price span {
	white-space: nowrap;
}

.info-icon {
	display: inline-flex;
	align-items: center;
	width: 2rem;
	height: 2rem;
	background: url(../img/icons/info.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.block-services__item__info {
	transform: translateY(0.3rem);
	-webkit-transform: translateY(0.3rem);
	-moz-transform: translateY(0.3rem);
	-ms-transform: translateY(0.3rem);
	-o-transform: translateY(0.3rem);
}

.block-services__item__list {
	display: none;
}

.form-order.second-step .block-services__item__list,
.form-order.third-step .block-services__item__list {
	display: block;
}

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

.block-services__item__list__item:first-child {
	margin-top: 2.4rem;
}

.block-services__item__list__item:not(:last-child) {
	margin-bottom: 2.4rem;
}

.item__list__item__name-service {
	font-size: 1.4rem;
	line-height: 120%;
	color: #FFFFFF;
	width: 25.5rem;
}

.item__list__item__price {
	font-size: 1.4rem;
	line-height: 120%;
	color: #FFFFFF;
	white-space: nowrap;
}

.block-services__total {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6rem;
}

.block-services__total__label {
	font-weight: 600;
	font-size: 4rem;
	line-height: 100%;
	color: #FFFFFF;
}

.block-services__total__price {
	font-weight: 600;
	font-size: 4rem;
	line-height: 100%;
	color: #fff;
}


.block-services__block-steps {
	display: none;
}

.form-order.first-step .block-services__block-steps,
.form-order.second-step .block-services__block-steps,
.form-order.third-step .block-services__block-steps {
	display: block;
}

.form-order.second-step .form-order__group.city,
.form-order.third-step .form-order__group.city {
	display: none;
}

.form-order__add-city {
	display: none;
}

.form-order.add-city .form-order__add-city {
	display: block;
}

.block-services__btns {
	margin-bottom: 2.4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.block-services__btn {
	cursor: pointer;
}

.block-services__btn.further {
	width: 100%;
	font-weight: 500;
	font-size: 2rem;
	line-height: 100%;
	color: #FFFFFF;
	border-radius: .8rem;
	-webkit-border-radius: .8rem;
	-moz-border-radius: .8rem;
	-ms-border-radius: .8rem;
	-o-border-radius: .8rem;
	padding: 2.4rem 0;
}

.block-services__btn.buy {
	width: 100%;
	color: #FFFFFF;
	border-radius: .8rem;
	-webkit-border-radius: .8rem;
	-moz-border-radius: .8rem;
	-ms-border-radius: .8rem;
	-o-border-radius: .8rem;
	display: none;
	padding: 0;
}

.block-services__btn.buy button {
	width: 100%;
	padding: 2.4rem 0;
	font-weight: 500;
	font-size: 2rem;
	line-height: 100%;
	outline: none;
}

.form-order.third-step .block-services__btn.further {
	display: none;
}

.form-order.third-step .block-services__btn.buy {
	display: block;
}

.block-services__btn.back {
	display: none;
	font-weight: 500;
	font-size: 2rem;
	line-height: 100%;
	color: #FFFFFF;
	margin-top: 4rem;
}

.form-order.second-step .block-services__btn.back,
.form-order.third-step .block-services__btn.back {
	display: inline-flex;
}

.block-services__steps {
	text-align: center;
	font-size: 1.6rem;
	line-height: 140%;
	color: #FFFFFF;
	opacity: 0.5;
}

.form-order__text {
	display: none;
}

.form-order__group__label {
	font-size: 1.6rem;
	line-height: 120%;
	color: #FFFFFF;
	margin-bottom: 4rem;
}

.form-line.checkbox {
	background: transparent;
	display: flex;
	height: unset;
	cursor: pointer;
}

.form-line.checkbox .info-icon {
	margin-right: 0;
	flex-shrink: 0;
	transform: translateY(0.5rem);
	-webkit-transform: translateY(0.5rem);
	-moz-transform: translateY(0.5rem);
	-ms-transform: translateY(0.5rem);
	-o-transform: translateY(0.5rem);
}

.form-line.checkbox .form-order__label {
	position: relative;
	cursor: pointer;
}

.form-line.checkbox .form-order__label span {
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 120%;
	color: #FFFFFF;
	opacity: 0.5;
	transition: opacity 150ms ease-out;
	-webkit-transition: opacity 150ms ease-out;
	-moz-transition: opacity 150ms ease-out;
	-ms-transition: opacity 150ms ease-out;
	-o-transition: opacity 150ms ease-out;
	cursor: pointer;
}

.form-line.checkbox .form-order__label:hover span {
	opacity: 1;
}

.form-line.checkbox._active .form-order__label span {
	opacity: 1;
}

.icon-checkbox {
	width: 2.5rem;
	height: 2.5rem;
	background: #F1F1F1;
	opacity: 0.5;
	border-radius: .4rem;
	-webkit-border-radius: .4rem;
	-moz-border-radius: .4rem;
	-ms-border-radius: .4rem;
	-o-border-radius: .4rem;
	cursor: pointer;
	margin-right: 0.8rem;
	position: relative;
	transition: opacity 150ms ease-out;
	-webkit-transition: opacity 150ms ease-out;
	-moz-transition: opacity 150ms ease-out;
	-ms-transition: opacity 150ms ease-out;
	-o-transition: opacity 150ms ease-out;
	flex-shrink: 0;
}

.icon-checkbox::before {
	content: "";
	display: block;
	width: 1.7rem;
	height: 1.5rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	background-image: url(../img/icons/check.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	opacity: 0;
	transition: opacity 150ms ease-out;
	-webkit-transition: opacity 150ms ease-out;
	-moz-transition: opacity 150ms ease-out;
	-ms-transition: opacity 150ms ease-out;
	-o-transition: opacity 150ms ease-out;
}


.form-line.checkbox .form-order__checkbox {
	/* display: none; */
	position: absolute;
	top: 0;
	left: 0;
	width: 2.5rem;
	height: 2.5rem;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
}

.form-line.checkbox .form-order__checkbox:checked+.icon-checkbox {
	opacity: 1;
}

.form-line.checkbox .form-order__checkbox:checked+.icon-checkbox::before {
	opacity: 1;
}

.form-order__block:not(:last-child) {
	margin-bottom: 8rem;
}

.form-order__block__label {
	font-size: 1.6rem;
	line-height: 100%;
	color: #FFFFFF;
	margin-bottom: 2.4rem;
}

.form-order__group.person-data .form-line {
	margin-bottom: 0;
}

.form-order__item {
	margin-bottom: 2.4rem
}

.form-order__item__info {
	display: inline-block;
	margin-top: 1rem;
	cursor: pointer;
	font-size: 1.6rem;
	line-height: 100%;
	color: #FFFFFF;
	border-bottom: 1px solid #fff;
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
}

.form-order__item__info:hover {
	border-bottom: 1px solid transparent;
}

.form-textarea {
	display: block;
	background: transparent;
	min-height: 17rem;
	width: 100%;
	padding: 2rem;
	font-size: max(16px, 1.8rem);
	resize: none;
	outline: none;
	border: 0;
	position: absolute;
	top: 1rem;
}

.form-line.textarea {
	height: 18rem;
}

.form-line.textarea .form-label {
	top: 2rem;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
}

.data_salesman,
.hide_files,
.js_hide_order,
.js_hide_ejd,
.js_hide_brak,
.js_hide_bki {
	display: none;
}

.data_salesman.active,
.hide_files.active,
.js_hide_order.active,
.js_hide_ejd.active,
.js_hide_brak.active,
.js_hide_bki.active {
	display: block;
}

@media screen and (min-width: 768px) {
	.order-verification__container {
		padding-top: 10rem;
		padding-bottom: 22rem;
	}

	.order-verification__content h2 {
		margin-bottom: 12rem;
	}

	.form-order__box {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
	}

	.form-order__column {
		margin-bottom: 0;
	}

	.form-order__text {
		display: block;
		font-size: 2rem;
		line-height: 140%;
		color: #FFFFFF;
		margin-top: 8rem;
	}

	.form-order .form-label {
		font-size: 2rem;
		line-height: 100%;
		padding: 0 2rem;
	}

	.form-order .form-input {
		font-size: max(16px, 2rem);
		line-height: 100%;

	}

	.form-order__row {
		width: 48rem;
	}

	.form-order.first-step .block-services__block-steps,
	.form-order.second-step .block-services__block-steps,
	.form-order.third-step .block-services__block-steps {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.form-order__group__label {
		font-size: 2rem;
		line-height: 120%;
		width: 39.4rem;
	}

	.form-order__group.person-data .form-order__group__label {
		width: 100%;
		margin-bottom: 8rem;
	}

	.form-order__block__label {
		margin-bottom: 3.2rem;
	}

	.form-order__group.additional-checks .form-order__row,
	.form-order__group.person-data .form-order__row {
		width: 100%;
	}

	.form-line.checkbox .form-order__label span {
		font-size: 2.4rem;
		line-height: 120%;
	}

	.form-line.checkbox .form-order__label::before {
		top: -0.6rem;
	}

	.form-line.checkbox .form-order__label::after {
		top: -0.1rem;
	}

	.icon-checkbox {
		margin-right: 1.5rem;
	}

	.form-line.checkbox .form-order__checkbox:hover+.icon-checkbox::before {
		opacity: 1;
	}

	.form-line.checkbox .info-icon {
		transform: translateY(0.3rem);
		-webkit-transform: translateY(0.3rem);
		-moz-transform: translateY(0.3rem);
		-ms-transform: translateY(0.3rem);
		-o-transform: translateY(0.3rem);
	}

	.block-services__btns {
		margin-bottom: 0;
		flex-direction: row;
	}

	.block-services__btn.further {
		width: 24rem;
		margin-right: 4rem;
	}

	.block-services__btn.buy {
		margin-right: 4rem;
	}

	.block-services__btn.buy button {
		width: 24rem;

	}

	.block-services__btn.back {
		margin-top: 0;
	}

	.block-services__item__name-service {
		width: 36rem;
		font-weight: 600;
		font-size: 2.4rem;
		line-height: 120%;
	}

	.block-services__item__price {
		font-size: 2.4rem;
		line-height: 120%;
	}

	.item__list__item__name-service {
		font-size: 1.6rem;
		line-height: 120%;
		width: 36rem;
	}

	.item__list__item__price {
		font-size: 1.6rem;
		line-height: 120%;
	}

	.form-row.col-2 {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 2.4rem;
	}

	.form-row.col-2 .form-order__item {
		margin-bottom: 0;
	}

	.form-order__item__info {
		margin-top: 1.6rem;
	}

	.form-order__file__btn {
		width: 15.8rem;
	}

	.form-order__file__btn span {
		font-size: 2rem;
		line-height: 100%;
	}
}

/* ------------------------- order-verification ----------------------------- */

/* ------------------------- VERIFICATION-PAGE END ---------------------------------- */































/* ------------------------------------ POPUPS ------------------------------ */
/* ---------------------------- req-call -------------------------------- */
.req-call {
	position: fixed;
	top: 0;
	right: 0;
	background: var(--blue);
	z-index: 201;
	height: 100vh;
	width: 100%;
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transition: transform 300ms ease-out;
	-webkit-transition: transform 300ms ease-out;
	-moz-transition: transform 300ms ease-out;
	-ms-transition: transform 300ms ease-out;
	-o-transition: transform 300ms ease-out;
}

.req-call._active {
	transform: translateX(0%);
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transition: transform 300ms ease-out;
	-webkit-transition: transform 300ms ease-out;
	-moz-transition: transform 300ms ease-out;
	-ms-transition: transform 300ms ease-out;
	-o-transition: transform 300ms ease-out;
}

.req-call__container {
	height: 100%;
	display: flex;
	/* align-items: center; */
	justify-content: center;
	overflow-y: auto;
}

.req-call__close {
	position: absolute;
	top: 1.6rem;
	left: 1.6rem;
	background: #fff;
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 3rem;
	-webkit-border-radius: 3rem;
	-moz-border-radius: 3rem;
	-ms-border-radius: 3rem;
	-o-border-radius: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 6;
}

.req-call__close svg {
	width: 1.9rem;
	height: 1.9rem;
}

.req-call__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.req-call__bg img {
	max-width: 30rem;
}

.req-call__content {
	width: 32rem;
	position: relative;
	z-index: 2;
	padding: 16rem 0 4rem;
	display: flex;
	align-items: center;
	justify-content: center;

}

.req-call__title {
	font-size: 4rem;
	line-height: 100%;
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 4.5rem;
}

.reqcall-form {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.reqcall-form__line {
	height: 6.4rem;
}

.reqcall-form__line._active .reqcall-form__label.form-label {
	top: 0.7rem;
	font-size: 1rem;
	line-height: 100%;
}

.reqcall-form__input {
	position: relative;
	top: 0;
	bottom: 0;
	height: 6.4rem;
}

.reqcall-form__btn {
	flex-grow: 1;
	margin-bottom: 4rem;
}

.reqcall-form__btn button {
	width: 100%;
	padding: 2.3rem 0;
}





@media screen and (min-width: 768px) {
	.req-call {
		width: 42rem;
		border-radius: 2rem 0px 0px 2rem;
		-webkit-border-radius: 2rem 0px 0px 2rem;
		-moz-border-radius: 2rem 0px 0px 2rem;
		-ms-border-radius: 2rem 0px 0px 2rem;
		-o-border-radius: 2rem 0px 0px 2rem;
	}

	.req-call__close {
		top: 3.6rem;
		left: 3.6rem;
		cursor: pointer;
	}
}


/* ---------------------------- req-call END -------------------------------- */

/* ------------------ more-info ---------------------- */

.popup {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 300;
	width: 100%;
	height: 100vh;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

.popup._active {
	opacity: 1;
	visibility: visible;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

.more-info._active {}

.popup__container {
	width: 100%;
	height: 100%;
	padding: 6rem 2rem 0;
	display: flex;

}

.more-info__close {}

.popup__close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	border-radius: 3rem;
	background: var(--blue);
	-webkit-border-radius: 3rem;
	-moz-border-radius: 3rem;
	-ms-border-radius: 3rem;
	-o-border-radius: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.popup__close svg {
	width: 1.3rem;
	height: 1.3rem;
}

.more-info__content {}

.popup__content {
	width: 100%;
	/* padding: 4rem 2rem; */
	background: #FFFFFF;
	box-shadow: 0 0 5rem rgba(0, 0, 0, 0.15);
	border-radius: 4rem 4rem 0 0;
	-webkit-border-radius: 4rem 4rem 0 0;
	-moz-border-radius: 4rem 4rem 0 0;
	-ms-border-radius: 4rem 4rem 0 0;
	-o-border-radius: 4rem 4rem 0 0;
	position: relative;
	overflow: hidden;
}

.more-info__item {
	position: relative;
	height: 100%;
	overflow-y: auto;
}

.more-info__item::-webkit-scrollbar {
	cursor: grab !important;
	width: 0px;
	background-color: rgba(0, 0, 0, 0);
}

.more-info__item::-webkit-scrollbar-thumb {
	cursor: grab !important;
	border-radius: 10px;
	border: 6px solid rgba(0, 0, 0, 0);
}

.more-info__head {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	padding: 3rem 2rem 2rem;
	border-radius: 4rem 4rem 0 0;
	-webkit-border-radius: 4rem 4rem 0 0;
	-moz-border-radius: 4rem 4rem 0 0;
	-ms-border-radius: 4rem 4rem 0 0;
	-o-border-radius: 4rem 4rem 0 0;
	overflow: hidden;
	background: #fff;
}


.more-info__text.popup__text {
	overflow-y: auto;
}

.more-info__text.popup__text h3 {
	font-size: 2rem;
	line-height: 100%;
	margin: 3rem 0;
}

.more-info__text.popup__text h3:first-child {
	margin-top: 0;
}

.more-info__text.popup__text li {
	font-size: 1.6rem;
	line-height: 140%;
}

.more-info__item._active {
	display: block;
}

.more-info__title {
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 120%;
	color: var(--black);
	padding-bottom: 1.4rem;
	margin-bottom: 1.4rem;
	border-bottom: 2px solid var(--black);
}

.more-info__box {
	/* margin-bottom: 4rem; */
}

.more-info__price {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 100%;
	color: var(--black);
}

.more-info__btn {
	margin-top: 1.6rem;
	width: 100%;
	font-weight: 500;
	padding: 2rem 0;
	font-size: 1.6rem;
	line-height: 100%;
	border-radius: 4rem;
	-webkit-border-radius: 4rem;
	-moz-border-radius: 4rem;
	-ms-border-radius: 4rem;
	-o-border-radius: 4rem;
}

.more-info__btn.added span:first-child {
	display: none;
}

.more-info__btn.added span:last-child {
	display: block;
}

.more-info__btn.added {
	opacity: 0.7;
}

.popup__text {
	padding: 0 2rem 5rem;
}

.popup__text p {
	font-size: 1.6rem;
	line-height: 160%;
	color: var(--black);
	margin-bottom: 1.6rem;
}

@media screen and (min-width: 768px) {
	.popup__container {
		padding: 12rem 2rem 0;
	}

	.more-info__container {
		padding: 12rem 32rem 0;
	}

	.more-info__text.popup__text h3 {
		font-size: 3.6rem;
		margin: 5rem 0;
	}

	.popup__close {
		top: 6rem;
		right: 26rem;
		width: 6rem;
		height: 6rem;
	}

	.popup__close svg {
		width: 2.6rem;
		height: 2.6rem;
	}

	.popup__content {
		padding: 6rem;
	}

	.more-info__content {
		padding: 0;
	}

	.more-info__head {
		padding: 6rem 6rem 8rem;
	}

	.more-info__text {
		padding: 0 6rem 6rem;
	}

	.more-info__title {
		font-weight: 500;
		font-size: 4rem;
		line-height: 100%;
		padding-bottom: 2.4rem;
		margin-bottom: 2.4rem;
	}

	.more-info__box {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.more-info__price {
		font-size: 2.4rem;
		line-height: 100%;
	}

	.popup__text p {
		font-size: 2.4rem;
		line-height: 160%;
		margin-bottom: 2rem;
	}

	.more-info__text.popup__text ol {
		padding-left: 2.8rem;
	}

	.more-info__text.popup__text li {
		font-size: 2.4rem;
		line-height: 140%;
		margin-bottom: 2rem;
	}

	.more-info__btn {
		margin-top: 0;
		width: 33.5rem;
		padding: 2.4rem 0;
		font-size: 2rem;
		line-height: 100%;

	}
}

/* ------------------ more-info END ---------------------- */

/* ------------------ ques-block ---------------------- */

.ques-block._active {
	display: block;
}

.ques-block__container {
	height: auto;
}

.ques-block__content {
	box-shadow: 0px 0px 5rem rgba(0, 0, 0, 0.15);
	border-radius: 4rem;
	-webkit-border-radius: 4rem;
	-moz-border-radius: 4rem;
	-ms-border-radius: 4rem;
	-o-border-radius: 4rem;
	padding: 4rem 2rem;
}

.ques-block__text {
	margin-bottom: 4rem;
}

.ques-block__info {
	margin-bottom: 6rem;
}

.ques-block__info a {
	font-size: 2rem;
	line-height: 100%;
	color: var(--blue);
	border-bottom: 1px solid var(--blue);
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
}

.ques-block__info a:hover {
	border-bottom: 1px solid transparent;
}

.ques-block__ques {
	font-size: 2.4rem;
	line-height: 140%;
	text-align: center;
	margin-bottom: 3.2rem;
}

.ques-block__btns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 1.6rem;
}

.ques-block__btn {
	text-align: center;
	padding: 1.8rem 0;
	font-weight: 500;
	font-size: 2rem;
	line-height: 100%;
	color: #000000;
	border-radius: 3.6rem;
	-webkit-border-radius: 3.6rem;
	-moz-border-radius: 3.6rem;
	-ms-border-radius: 3.6rem;
	-o-border-radius: 3.6rem;
	cursor: pointer;
}

.ques-block__btn.true {
	background: var(--blue);
	color: #fff;
}

.ques-block__btn.false {
	background: #D9D9D9;
}

.form-line.add-file {
	background: transparent;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	height: unset;
}

.form-line.add-file input {
	cursor: pointer;
	display: none;
}

.form-line.add-file label {
	font-size: 2rem;
	line-height: 100%;
	color: #FFFFFF;
	opacity: 1;
	padding: 0;

	position: relative;
	top: 0;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	cursor: pointer;
	pointer-events: unset;
	padding-left: 1.6rem;
}

.form-line.add-file label span {
	color: #fff;
	border-bottom: 1px solid #fff;
	transition: border 150ms ease-out;
	-webkit-transition: border 150ms ease-out;
	-moz-transition: border 150ms ease-out;
	-ms-transition: border 150ms ease-out;
	-o-transition: border 150ms ease-out;
}

.form-line.add-file:hover label span {
	border-bottom: 1px solid transparent;
}

.form-order__btn {}

.form-order__btn__add-file,
.form-order__btn__remove-file {
	background: var(--orange);
	width: 4rem;
	height: 4rem;
	border-radius: .5rem;
	-webkit-border-radius: .5rem;
	-moz-border-radius: .5rem;
	-ms-border-radius: .5rem;
	-o-border-radius: .5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

.form-order__btn__add-file::before,
.form-order__btn__remove-file::before {
	content: "";
	display: block;
	width: 2rem;
	height: 2rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	background-image: url(../img/icons/file.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 150ms ease-out;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
}

.form-order__btn__remove-file,
.form-line.add-file._added .form-order__btn__add-file {
	background: #D87171;
}

.form-order__btn__remove-file::before,
.form-line.add-file._added .form-order__btn__add-file::before {
	background-image: url(../img/icons/minus.svg);
}

@media screen and (min-width: 768px) {
	.ques-block__container {
		padding: 0;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.ques-block__content {
		width: 80rem;
		padding: 6rem;
	}

	.ques-block__text {
		margin-bottom: 4rem;
	}

	.ques-block__text p {
		font-size: 2.4rem;
		line-height: 140%;
	}

	.ques-block__btns {
		width: 40.8rem;
		margin: 0 auto;
		grid-column-gap: 2.4rem;
	}

	.ques-block__btn {
		padding: 2.4rem 0;
		font-size: 2.4rem;
		line-height: 100%;
	}
}

/* ------------------ ques-block END ---------------------- */

.info-block__content {
	padding: 0;
}

.info-block__item__label {
	font-weight: 500;
	font-size: 2rem;
	line-height: 160%;
	color: var(--black);
	padding: 4rem 2rem 2rem;
	background: #fff;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 4rem 4rem 0 0;
	-webkit-border-radius: 4rem 4rem 0 0;
	-moz-border-radius: 4rem 4rem 0 0;
	-ms-border-radius: 4rem 4rem 0 0;
	-o-border-radius: 4rem 4rem 0 0;
	overflow: hidden;
}

.info-block__item {
	height: 100%;
	overflow-y: auto;
}

.info-block__item::-webkit-scrollbar {
	cursor: grab !important;
	width: 0px;
	background-color: rgba(0, 0, 0, 0);
}

.info-block__item::-webkit-scrollbar-thumb {
	cursor: grab !important;
	border-radius: 10px;
	border: 6px solid rgba(0, 0, 0, 0);
}

.info-block__item__text {
	padding: 0 2rem 6rem;
}

.info-block__item__text p {
	font-size: 1.8rem;
	line-height: 160%;
	color: var(--black);
}

@media screen and (min-width: 768px) {
	.info-block__container {
		padding: 12rem 0 0;
	}

	.info-block__content {
		width: 96rem;
		margin: 0 auto;
	}

	.info-block__item__text {
		padding: 0 6rem 10rem;

	}

	.info-block__item__label {
		font-size: 2.4rem;
		line-height: 160%;
		padding: 6rem 6rem 2rem;
	}

	.info-block__item__text p {
		font-size: 2.4rem;
		line-height: 160%;
		color: var(--black);
	}
}

/* --------------------- block-articles ---------------- */

.block-articles {
	margin-bottom: 16rem;
}

.block-articles__container {}

.block-articles__item {
	display: block;
}

.block-articles__item:not(:last-child) {
	margin-bottom: 8rem;
}

.block-articles__img {
	position: relative;
	z-index: 10;
	border-radius: 1.6rem;
	-webkit-border-radius: 1.6rem;
	-moz-border-radius: 1.6rem;
	-ms-border-radius: 1.6rem;
	-o-border-radius: 1.6rem;
	margin-bottom: 1.6rem;
	overflow: hidden;
}

.block-articles__img img {
	display: block;
	width: 100%;
	position: relative;
	z-index: -10;
	height: 30rem;
	object-fit: cover;
}

.block-articles__hashtag {
	font-family: var(--ff-inter);
	font-size: 1.6rem;
	line-height: 100%;
	color: rgba(35, 35, 35, 0.6);
	margin-bottom: 1.6rem;
}

.block-articles__text {
	font-family: var(--ff-inter);
	font-size: 2rem;
	line-height: 140%;
	color: var(--black);
}



@media screen and (min-width: 768px) {
	.block-articles__list {
		display: flex;
		flex-wrap: wrap;
	}

	.block-articles__item {
		width: calc((100% - 60rem - 12rem) / 2);
		margin-left: 6rem;
		margin-bottom: 8rem;
	}

	.block-articles__item:not(:last-child) {
		/* margin-bottom: 0; */
	}

	.block-articles__item:nth-child(3n + 1) {
		margin-left: 0;
	}
}

/* --------------------- block-articles END ---------------- */

/* -------------------- current-article ---------------- */

.current-article {
	margin-bottom: 16rem;
}

.current-article__container {}

.current-article__content h2:not(:first-child) {
	margin-top: 8rem;
}

.current-article__content p {
	margin-bottom: 2.4rem;
	font-size: 2rem;
	line-height: 160%;
}

.current-article__content p a {
	font-size: 2rem;
	line-height: 160%;
}

.current-article__content i {
	display: block;
	margin: 3.2rem 0;
	font-family: var(--ff-inter);
	font-style: italic;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 160%;
	color: #036195;
}

.current-article__content ul {
	padding-left: 2.2rem;
	margin-top: -0.8rem;
	margin-bottom: 2.4rem;
}

.current-article__content ol {
	margin-top: -0.8rem;
	margin-bottom: 2.4rem;
	padding-left: 2.6rem;
}

.current-article__content li {
	font-family: var(--ff-inter);
	font-size: 2rem;
	line-height: 160%;
	color: var(--black);
	margin-bottom: 1.2rem;
	position: relative;
}

.current-article__content ul li {
	padding-left: 0.7rem;
}

.current-article__content ul li::before {
	content: '\2014';
	position: absolute;
	top: 0;
	left: -2rem;
}

@media screen and (min-width: 768px) {
	.current-article__container {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
	}

	.current-article__content h2 {
		margin-bottom: 6rem;
		font-size: 5.6rem;
		line-height: 120%;
	}
}

/* -------------------- current-article END ---------------- */