* {
	box-sizing: border-box;
}
html {
	overflow-x: hidden;
}
body {
    overflow-x: hidden;
    padding-right: 0 !important;
    background: #fff;
    position: relative;
    font-family: "Manrope", sans-serif;
    color: #252525;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}
textarea, input {
	font-family: "Manrope", sans-serif;
}
a {
	text-decoration: none;
	outline: none !important;
	font-size: inherit;
	color: inherit;
}
strong {
	font-weight: 700;
}
p {
	margin-bottom: 20px;
	line-height: 140%;
}
p:last-child {
	margin-bottom: 0;
}
i {
	font-style: italic;
}

@media (max-width: 1240px) {
	body {
		font-size: 15px;
	}
}
@media (max-width: 768px) {
    body {
    	font-size: 14px;
    }
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 11;
	background: rgba(0,0,0,.5);
	opacity: 0;
	backdrop-filter: blur(10px);
	pointer-events: none;
	transition: .4s;
}
.header-open .overlay {
    opacity: 1;
    pointer-events: initial;
}

/* reviews */

#reviews {
	background: #F1F5FF;
}
#reviews.reviews-in {
	background: transparent;
}
.reviews-top {
	margin-bottom: 28px;
}
.reviews-top .h2 {
	margin: 0;
}
.reviews-nav {
	gap: 20px;
}
.reviews-nav-prev,
.reviews-nav-next {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.reviews {
	border-radius: 20px;
}
.reviews-item {
	width: 405px;
	height: auto;
	background: #fff;
	border: 2px solid #DBE2F3;
}
.reviews-item-img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
}
.reviews-item-date {
	font-size: 14px;
	opacity: .5;
}

@media (max-width: 1400px) {
	.reviews {
		overflow: visible;
	}
	.reviews-top {
		margin-bottom: 24px;
	}
}
@media (max-width: 768px) {
	.reviews-top {
		margin-bottom: 20px;
	}
	.reviews-item-img {
		width: 60px;
		height: 60px;
		margin-bottom: 12px;
	}
	.reviews-item {
		width: 80vw;
	}
	.reviews-nav {
		display: none;
	}
	.reviews-progressbar {
		display: block;
	}
}

/* partners */

#partners {
	position: relative;
}
#partners:before {
    content: "";
    width: calc(100vw - 1280px - (100vw - 1280px) / 2);
    left: 0;
    top: 0;
    position: absolute;
    height: 100%;
    z-index: 2;
    background: #FFF;
}
#partners .h2 {
	width: 300px;
	height: 100px;
	position: relative;
	z-index: 3;
	margin: 0;
}
#partners .h2 span {
	color: #252525;
	position: relative;
	z-index: 3;
}
#partners .h2:before {
	content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, .0) 100%);
    position: absolute;
    right: 0;
    bottom: 0;
}
.partners {
	width: calc(100% - 300px);
	overflow: visible;
}
.partners-item {
	width: 175px;
	height: 107px;
}
.partners-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

@media (max-width: 1400px) {
	#partners:before {
		width: 60px;
	}
}
@media (max-width: 1024px) {
	#partners .h2 {
		width: 245px;
	}
	.partners-item {
	    width: 142px;
	    height: 86px;
	}
}
@media (max-width: 768px) {
	#partners .h2 {
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	#partners:before {
		display: none;
	}
	.partners {
		width: 100%;
	}
	.partners-item {
		width: 100px;
		height: 60px;
	}
	.partners-progressbar {
		display: block;
	}
}

/* etap */

.etap-top {
	margin-bottom: 28px;
}
.etap-top .h2 {
	margin: 0;
}
.etap-nav {
	gap: 20px;
}
.etap-nav-prev,
.etap-nav-next {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.etap {
	overflow: visible;
}
.etap-item {
	width: 405px;
	height: auto;
    border-radius: 28px;
    background: #F1F5FF;
    position: relative;
}
.etap-item-num {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #231B82;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 105%;
}
.etap-item-link {
	position: absolute;
	top: 44px;
	right: 32px;
	color: #231B82;
	font-weight: 700;
}

@media (max-width: 1024px) {
	.etap-progressbar {
		display: block;
	}
	.etap-item-link {
		top: 35px;
	}
}
@media (max-width: 768px) {
	.etap-top {
		margin-bottom: 20px;
	}
	.etap-nav {
		display: none;
	}
	.etap-item {
		width: calc(100vw - 80px);
	}
	.etap-item-num {
		width: 36px;
		height: 36px;
		font-size: 20px;
		margin-bottom: 16px;
	}
	.etap-item-link {
		top: 28px;
		right: 16px;
	}
}

/* consult */

.consult-info {
	width: 579px;
}
.consult-info-text {
	font-size: 20px;
}
.consult-info strong {
	font-weight: 700;
}
.consult-info-phone {
	color: #4334EE;
	font-size: 20px;
	display: block;
	width: max-content;
	margin-bottom: 12px;
	font-weight: 700;
}
.consult-info-email {
	color: #4334EE;
	display: block;
	width: max-content;
	margin-bottom: 28px;
	font-weight: 700;
}
.consult-soc {
	gap: 8px;
}
.consult-soc a {
	width: 28px;
	height: 28px;
}
.consult-soc a img {
	width: 100%;
}

.consult-form {
	width: calc(100% - 579px - 80px);
}
.consult-form {
	position: relative;
	padding: 40px;
}
.consult-form:before {
    content: "";
    border-radius: 40px 0;
    background: #231B82;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.consult-form:after {
	content: "";
    border-radius: 40px 0;
    background: #DBE2F3;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -20px;
    z-index: 1;
}
.consult-form > * {
	position: relative;
	z-index: 3;
}

.consult-info-block div {
	width: 50%;
}
.consult-recv {
	margin-top: 60px;
	max-width: 580px;
}
.consult-recv-block {
	position: relative;
}
.consult-recv-block:before {
	content: "";
	width: 2px;
	height: 100%;
	background: #DBE2F3;
	border-radius: 4px;
	position: absolute;
	left: calc(55% - 1px);
}
.consult-recv-block div:first-child {
	padding-right: 16px;
	width: 55%;
}
.consult-recv-block div:last-child {
	padding-left: 16px;
	width: 45%;
}

@media (max-width: 1140px) {
	.consult-info {
		width: 100%;
	}
	.consult-form {
		width: 100%;
		margin-top: 40px;
	}
}
@media (max-width: 1024px) {
	.consult-info-text {
		font-size: 16px;
	}
}
@media (max-width: 768px) {
	.consult-info-phone {
		font-size: 18px;
	}
	.consult-info-email {
		margin-bottom: 20px;
	}
	.consult-form {
		padding: 20px;
	}
	.consult-form:after {
		display: none;
	}
	.consult-form:before {
		border-radius: 20px;
	}
	.consult-info-block div {
		width: 100%;
	}
	.consult-info-block .consult-soc {
		margin: -4px 0 12px 0;
	}
	.consult-recv {
		margin-top: 30px;
	}
	.consult-recv-block:before {
		display: none;
	}
	.consult-recv-block div {
		width: 100% !important;
		padding: 0 !important;
	}
	.consult-recv-block div p {
		margin-bottom: 10px;
	}
}

/* usl */

.usl-main {
	width: calc(100% - 405px - 32px);
    padding: 60px;
    border-radius: 40px;
    border: 2px solid #DBE2F3;
    overflow: hidden;
}
.usl-main-table {
	margin-bottom: 12px;
}
.usl-main-table-item {
	padding: 12px 0;
	position: relative;
}
.usl-main-table-item:before {
	content: "";
	background: #EDF2FF;
	width: 1920px;
	left: -300px;
	height: 100%;
	top: 0;
	position: absolute;
	transition: .4s;
	opacity: 0;
}
.usl-main-table-item * {
	position: relative;
	z-index: 4;
}
.usl-main-table-item:hover:before {
	opacity: 1;
}
.usl-main-table-item:not(:last-child) {
	border-bottom: 1px solid #DBE2F3;
}
.usl-main-table-item__name {
	width: calc(100% - 200px);
	font-weight: 600;
}
.usl-main-table-item__value {
	width: 180px;
}

.usl-main-table-top {
	font-weight: 600;
	gap: 20px;
}
.usl-main-table-top div:last-child {
	text-align: right;
}
.price-tables-block[data-name="УПД"] .usl-main-table-item__name,
.price-tables-block[data-name="УПД"] .usl-main-table-top div:nth-child(1) {
	width: calc(100% - 320px);
}
.price-tables-block[data-name="УПД"] .usl-main-table-item__value,
.price-tables-block[data-name="УПД"] .usl-main-table-top div:nth-child(3) {
	width: 160px;
}
.price-tables-block[data-name="УПД"] .usl-main-table-item__price,
.price-tables-block[data-name="УПД"] .usl-main-table-top div:nth-child(2) {
	width: 120px;
}

.usl-main-bottom p {
	margin-bottom: 4px;
	font-size: 12px;
	opacity: .5;
}
.usl-form {
	width: 405px;
	padding: 40px;
	position: relative;
}
.usl-form:before {
    content: "";
    border-radius: 32px 0;
    background: #231B82;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.usl-form:after {
	content: "";
    border-radius: 32px 0;
    background: #DBE2F3;
    width: 100%;
    height: calc(100% + 20px);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}
.usl-form > * {
	position: relative;
	z-index: 3;
}

@media (max-width: 1240px) {
	.usl-main {
		padding: 40px;
	}
}
@media (max-width: 1140px) {
	.usl-main {
		width: 100%;
	}
	.usl-form {
		width: 100%;
		margin-top: 40px;
		transform: none !important;
	}
}
@media (max-width: 1024px) {
	.usl-main {
		border-radius: 32px;
	}
}
@media (max-width: 768px) {
	.usl-main {
		border-radius: 20px;
		padding: 20px;
	}
	.usl-main-table-item {
	    font-size: 11px;
	    line-height: 110%;
	}
	.usl-main-table-item__name {
	    width: calc(100% - 130px);
	}
	.usl-main-table-item__value {
	    width: 115px;
	}
	.usl-form {
		margin-top: 32px;
		padding: 20px;
	}
	.usl-form:after {
		display: none;
	}
	.usl-form:before {
		border-radius: 20px;
	}
}

/* adva */

#adva {
	background: #F1F5FF;
}
.adva {
	gap: 34px;
	row-gap: 24px;
}
.adva-item {
	width: calc(100%/4 - 102px/4);
	background: #fff;
}
.adva-item:last-child {
	background: #DBE2F3;
}
.adva-item-head {
	margin-bottom: 16px;
}

#adva.mark-adva {
	background: transparent;
}
#adva.mark-adva .adva-item {
    border: 2px solid #DBE2F3;
    background: #FFF;
}
#adva.mark-adva .adva-item:last-child {
	border: 2px solid #231B82;
	background: #231B82;
}
#adva.mark-adva .adva-item:last-child * {
	color: #fff;
}

@media (max-width: 1240px) {
	.adva-item {
		width: calc(50% - 17px);
	}
}
@media (max-width: 768px) {
	.adva {
		row-gap: 16px;
	}
	.adva-item {
		width: 100%;
	}
	.adva-item br {
		display: none;
	}
	.adva-item-head {
		margin-bottom: 10px;
	}
}

/* footer */

.footer-top {
	padding: 32px 0;
	background: #353535;
	overflow: hidden;
}
.footer-top .container {
	gap: 16px;
	row-gap: 16px;
}
.footer-top .h4 {
	margin: 0;
}
.footer-top-soc {
	gap: 46px;
}
.footer-top-soc a {
	gap: 16px;
}
.footer-main {
	padding: 40px 0;
	background: #282828;
}
.footer-main-top {
	gap: 40px;
	row-gap: 24px;
	margin-bottom: 40px;
}
.footer-main-top__logo {
	gap: 20px;
}
.footer-main-top__phone {
	font-size: 20px;
	margin-left: auto;
	font-weight: 700;
}
.footer-main-top__soc {
	gap: 8px;
}
.footer-main-menu {
	margin-bottom: 40px;
}
.footer-main-menu-mark {
	width: calc(100% - 296px - 32px);
	gap: 32px;
	row-gap: 16px;
}
.footer-main-menu-mark__head {
	font-weight: 700;
	text-transform: uppercase;
	width: 100%;
}
.footer-main-menu-side__link {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	width: 100%;
}
.footer-main-menu-side__link:not(:last-child) {
	margin-bottom: 16px;
}
.footer-main-menu-mark__row {
	width: calc(100%/3 - 64px/3);
}
.footer-main-menu-mark__row-block:not(:last-child) {
	margin-bottom: 24px;
}
.footer-main-menu-mark__row-block-head {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    margin-bottom: 12px;
}
.footer-main-menu ul li:not(:last-child) {
	margin-bottom: 12px;
}
.footer-main-menu ul li a {
	font-size: 14px;
	display: block;
}
.footer-main-menu-side {
	width: 296px;
}
.footer-main-menu-side ul {
	margin-bottom: 20px;
}
.footer-main-bottom a,
.footer-main-bottom p {
	font-size: 14px;
}

@media (max-width: 1140px) {
	.footer-main-menu-side {
		width: 100%;
		margin-top: 24px;
	}
	.footer-main-menu-side ul {
		display: flex;
		flex-flow: wrap;
		gap: 16px;
		row-gap: 0;
	}
	.footer-main-menu-mark {
		width: 100%;
	}
}
@media (max-width: 924px) {
	.footer-main-menu-mark {
		row-gap: 0;
	}
	.footer-main-menu-mark__head {
		margin-bottom: 16px;
	}
	.footer-main-menu-mark__row {
		width: 100%;
	}
	.footer-main-menu-mark__row-block-head {
		margin-bottom: 0;
		color: #fff;
		padding: 4px 0;
		position: relative;
		border-radius: 1000px;
		font-weight: 600;
		opacity: .5;
	}
	.footer-main-menu-mark__row-block-head:before {
		content: "";
		width: 16px;
		height: 16px;
		background: url("../img/vector-bottom.svg") no-repeat center center / 100%;
		position: absolute;
		right: 16px;
		z-index: 3;
		margin-top: 1px;
		transition: .4s;
	}
	.footer-main-menu-mark__row-block-head.active:before {
		transform: rotate(180deg);
	}
	.footer-main-menu-mark__row-block,
	.footer-main-menu-mark__row-block:not(:last-child) {
		margin-bottom: 16px;
	}
	.footer-main-menu-mark__row-block ul {
		height: 0px;
		overflow: hidden;
		transition: .4s;
		opacity: 0;
	}
	.footer-main-menu-mark__row-block-head.active + ul {
		height: auto;
		padding: 12px 0 0 0;
		opacity: 1;
	}
	.footer-main-menu-side ul {
		margin-bottom: 12px;
		gap: 16px;
		row-gap: 8px;
	}
}
@media (max-width: 768px) {
	.footer-top {
		padding: 24px 0;
	}
	.footer-top .container {
		gap: 20px;
		align-items: flex-start;
	}
	.footer-top .h4 {
		width: 150px;
	}
	.footer-top-soc {
		width: calc(100% - 170px);
		gap: 14px;
	}
	.footer-top-soc a {
		width: 100%;
		gap: 12px;
		justify-content: space-between;
	}
	.footer-top-soc a img {
		zoom: .7;
		max-width: 32px;
	}
	.footer-top-soc a span {
		width: calc(100% - 40px);
	}
	.footer-main {
		padding: 24px 0;
	}
	.footer-main-top__logo {
		gap: 12px;
	}
	.footer-main-top__logo img {
		width: 60px;
	}
	.footer-main-top {
		gap: 20px;
	}
	.footer-main-top__phone {
		font-size: 16px;
		margin: 0;
	}
	.footer-main-top__phone {
		width: 100%;
	}
	.footer-main-menu-side__link:not(:last-child) {
		margin-bottom: 24px;
	}
}

/* cat */

#cat {
	padding-top: 60px;
}
.cat-list {
	width: calc(100% - 405px - 32px);
	gap: 32px;
	row-gap: 28px;
}
.cat-list .h2 {
	width: 100%;
	margin: 0;
}
.cat-list-item {
    width: calc(50% - 16px);
    border-radius: 20px;
    border: 2px solid #DBE2F3;
    background: #FFF;
    padding: 32px 40px;
}
.cat-list-item:nth-child(2),
.cat-list-item:nth-child(5) {
	background: #231B82;
	border: 2px solid #231B82;
}
.cat-list-item-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.cat-list-item-name {
	display: block;
	font-size: 24px;
	font-weight: 700;
	padding: 2px 28px 2px 0;
	background: url("../img/chevron-right.svg") no-repeat center right;
}
.cat-list-item:nth-child(2) .cat-list-item-name,
.cat-list-item:nth-child(5) .cat-list-item-name {
	filter: brightness(0) invert(1);
}
.cat-sidebar {
	width: 405px;
    border-radius: 20px;
    border: 2px solid #DBE2F3;
    background: #FFF;
    padding: 40px 32px;
}
.cat-sidebar-head {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 24px;
}
.cat-sidebar-list a {
    display: block;
    font-weight: 800;
    padding: 20px 28px;
    position: relative;
    border-radius: 12px;
    background: #EDF2FF;
    transition: .4s;
}
.cat-sidebar-list a:before {
	content: "";
	width: 20px;
	height: 20px;
	background: url("../img/chevron-right.svg") no-repeat center center;
	position: absolute;
	right: 20px;
	transition: .4s;
}
.cat-sidebar-list a:not(:last-child) {
	margin-bottom: 20px;
}
.cat-sidebar-list a:hover {
	background: #4334EE;
	color: #fff;
}
.cat-sidebar-list a:hover:before {
    filter: brightness(0) invert(1);
}
.cat-sidebar .button {
	width: 100%;
	margin-top: 40px;
}

#cat-blog {
	background: #F1F5FF;
}
#cat-blog .cat-list {
	width: 100%;
	gap: 32px;
}
#cat-blog .cat-list > div {
	display: none;
}
#cat-blog .cat-list-item {
	width: calc(100%/4 - 96px/4);
	min-height: 192px;
}
#cat-blog .cat-list-item:nth-child(3) {
	order: 4;
}
#cat-blog .cat-list-item .cat-list-item-name {
	background: none;
}

@media (max-width: 1280px) {
	#cat-blog .cat-list-item {
		width: calc(50% - 16px);
		min-height: auto;
	}
}
@media (max-width: 1220px) {
	.cat-list-item {
		width: 100%;
	}
	#cat .container {
		align-items: flex-start;
	}
}
@media (max-width: 940px) {
	.cat-list {
		width: 100%;
		margin-bottom: 32px;
	}
	.cat-sidebar {
		width: 100%;
	}
}
@media (max-width: 768px) {
	#cat {
		padding-top: 40px;
	}
	.cat-list {
		gap: 20px;
	}
	.cat-list-item {
		border-radius: 12px;
		padding: 20px;
	}
	.cat-list-item-icon {
		width: 28px;
	}
	.cat-list-item-icon img {
		max-width: 100%;
	}
	.cat-list-item-name {
		font-size: 18px;
		background-size: 20px;
	}
	.cat-sidebar {
		border-radius: 12px;
		padding: 20px;
	}
	.cat-sidebar-head {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.cat-sidebar-list a:not(:last-child) {
		margin-bottom: 12px;
	}
	.cat-sidebar-list a {
		padding: 12px;
	}
	.cat-sidebar-list a:before {
		background-size: 20px;
		top: 4px;
	}
	.cat-sidebar-list a:before {
	    background-size: 20px;
	    top: 8px;
	    right: 10px;
	}
	.cat-sidebar .button {
		margin-top: 20px;
	}
	#cat-blog .cat-list {
		gap: 16px;
	}
	#cat-blog .cat-list-item {
		width: 100%;
	}
}

/* partners */

#partners-cat {
	padding: 15px 0;
	height: 120px;
	position: relative;
}
.partners-wrapper {
	display: flex;
	align-items: center;
	height: 100%;
	white-space: nowrap;
	position: absolute;
	left: 0;
	top: 0;
	gap: 28px;
}
.partners-wrappers-item {
	width: max-content;
	position: relative;
	flex-flow: nowrap;
	gap: 12px;
}
.partners-wrappers-item span {
	width: max-content;
	font-weight: 800;
}
.partners-wrappers-item img {
	width: 32px;
}

@media (max-width: 768px) {
	#partners-cat {
		height: 64px;
		padding-bottom: 0;
	}
}

/* main */

.main {
	overflow: hidden;
	position: relative;
    border-radius: 80px 0;
    padding: 94px 64px 105px 64px;
    background: linear-gradient(0deg, #231B82 0%, #231B82 100%), linear-gradient(168deg, #EDF2FF 3.92%, #FFF 32.61%, #EDF2FF 87.4%);
}
.main:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: url("../img/main/main-bg.png") no-repeat top right;
}
.main > * {
	position: relative;
	z-index: 3;
}
.main-img {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}
.main-head {
    color: #FFF;
    font-size: 71px;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.main-head .main-head-f {
	font-size: 80px;
}
.main-head .main-head-r {
	display: block;
}
.main-adva {
	margin-bottom: 40px;
}
.main-adva-item:not(:last-child) {
	margin-bottom: 15px;
}
.main-adva-item {
	gap: 18px;
	font-weight: 500;
}
.main-adva-item:last-child {
	font-weight: 700;
}

@media (max-width: 1320px) {
	.main-img {
		opacity: .8;
	}
}
@media (max-width: 1240px) {
	.main {
		border-radius: 60px 0;
		padding: 60px;
	}
	.main-img {
		width: 80%;
		opacity: 1;
	}
}
@media (max-width: 1024px) {
	.main-head {
		font-size: 56px;
	}
	.main-head .main-head-f {
		font-size: 68px;
	}
}
@media (max-width: 768px) {
	#main {
		margin-bottom: 20px;
	}
	.main {
		border-radius: 30px 0;
		padding: 28px;
	}
	.main:before {
		background-size: 200%;
	}
	.main-head {
		font-size: 28px;
	}
	.main-head .main-head-f {
		font-size: 32px;
	}
	.main-adva-item {
		gap: 12px;
	}
	.main-adva-item img {
		width: 24px;
	}
	.main-adva {
		margin-bottom: 20px;
	}
	.main-img {
	    position: relative;
	    margin: 0 -28px -28px auto;
	    display: block;
	    width: 100%;
	}
}

/* header */

#header {
	padding: 18px 0 20px 0;
	position: relative;
	z-index: 11;
	background: #fff;
}
#header.header-in {
	border-bottom: 2px solid #DBE2F3;
}
.header-logo {
	width: 72px;
}
.header-logo img {
	width: 100%;
}
.header-menu {
	gap: 12px;
}
.header-menu-item > a {
	transition: .4s;
}
.header-menu-item > a:hover {
	color: #4334EE;
}
.header-menu-item.has-child {
	position: relative;
}
.header-menu-item.has-child > a {
	padding-right: 26px;
	position: relative;
	transition: .4s;
}
.header-menu-item.has-child > a:before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../img/chevron-up.svg") no-repeat center center / 100%;
	position: absolute;
	right: 0;
	transition: .25s;
}
.header-menu-item.has-child > a.active:before {
	color: #4334EE;
	background: url("../img/chevron-up-active.svg") no-repeat center center / 100%;
}
.header-phone {
	font-weight: 700;
}
.header-soc {
	gap: 8px;
}
.header-mobile {
	display: none;
}
.header-close {
	display: none;
}

.header-menu-item__submenu {
    position: absolute;
    padding: 28px;
    border-radius: 28px;
    border: 2px solid #DBE2F3;
    background: #FFF;
    margin-top: 15px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.header-menu-item.has-child.is-open-submenu .header-menu-item__submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}
.header-menu-item__submenu li:not(:last-child) {
	margin-bottom: 12px;
}
.header-menu-item__submenu li a {
	width: max-content;
}

.header-menu-item__mark {
    position: absolute;
    border-radius: 28px;
    border: 2px solid #DBE2F3;
    background: #EDF2FF;
    margin-top: 15px;
    flex-flow: nowrap;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.header-menu-item.has-child.is-open .header-menu-item__mark {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}
.header-menu-item__mark-list {
	width: max-content;
	border-right: 2px solid #DBE2F3;
	padding: 28px 28px 28px 24px;
}
.header-menu-item__mark-list-item {
	width: max-content;
}
.header-menu-item__mark-list-item {
	width: max-content;
	min-width: 100%;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 600;
	position: relative;
	padding-right: 50px;
	transition: .4s;
	color: rgba(37, 37, 37, 0.86);
}
.header-menu-item__mark-list-item:before {
	content: "";
	width: 20px;
	height: 20px;
	background: url("../img/chevron-right.svg") no-repeat center center / 100%;
	position: absolute;
	right: 0;
	transition: .4s;
	opacity: .5;
}
.header-menu-item__mark-list-item:not(:last-child) {
	margin-bottom: 20px;
}
.header-menu-item__mark-list-item.active {
	color: #252525;
}
.header-menu-item__mark-list-item.active:before {
	opacity: 1;
}
.header-menu-item__mark-sublist {
	max-width: 438px;
	min-width: 438px;
	background: #fff;
	padding: 28px;
	position: relative;
}
.header-menu-item__mark-sublist-item {
	height: 0px;
	opacity: 0;
	transition: .4s;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.header-menu-item__mark-sublist-item::-webkit-scrollbar {
	width: 0;
	height: 0;
}
.header-menu-item__mark-sublist-item.active {
	opacity: 1;
}
.header-menu-item__mark-sublist-item a {
	display: block;
	font-size: 14px;
}
.header-menu-item__mark-sublist-item a:not(:last-child) {
	margin-bottom: 12px;
}
.header-menu-item__mark-sublist-scrollbar {
	position: absolute;
	top: 28px;
	right: 8px;
	width: 4px;
	border-radius: 10px;
	background: #DBE2F3;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s;
}
.header-menu-item__mark-sublist-scrollbar.is-visible {
	opacity: 1;
}
.header-menu-item__mark-sublist-scrollbar-thumb {
	width: 100%;
	border-radius: 10px;
	background: #231B82;
}
.header-menu-scrollbar {
	position: absolute;
	top: 0;
	right: 2px;
	width: 4px;
	height: 100%;
	background: #DBE2F3;
	border-radius: 10px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s;
}
.header-menu-scrollbar.is-visible {
	opacity: 1;
}
.header-menu-scrollbar__thumb {
	width: 100%;
	border-radius: 10px;
	background: #231B82;
}
.header-menu-item__mark-mobile-inline {
	display: none;
}
.header-menu-item__mark-mobile-inline.active {
	display: block;
}

@media (max-width: 1280px) {
	.header-menu {
		gap: 12px;
	}
}
@media (max-width: 1128px) {
	.header-mobile {
		display: flex;
	}
	.header-text {
		margin: 0 0 0 16px;
	}
	.header-toggle {
		width: 40px;
		height: 40px;
		background: url("../img/header-menu-icon.svg") no-repeat center center / 100%;
		margin-left: auto;
	}
	.header-desktop {
    	display: block;
    	position: fixed;
    	right: 0;
    	top: 0;
    	background: #fff;
    	width: 340px;
    	height: 100dvh;
    	padding: 20px;
    	right: -340px;
    	transition: .4s;
    	opacity: 0;
    	z-index: 12;
	}
	.header-open .header-desktop {
		right: 0;
		opacity: 1;
	}
	.header-close {
		position: absolute;
        top: 42px;
        right: 20px;
        background: url(../img/close.svg) no-repeat center center / 100%;
        display: block;
        width: 20px;
        height: 20px;
	}
	.header-desktop .header-logo {
		width: 64px;
        display: block;
	}
	.header-desktop .button {
		position: absolute;
    	bottom: 20px;
    	left: 20px;
    	width: calc(100% - 40px);
	}
	.header-soc {
	    position: absolute;
	    bottom: 86px;
	    left: 20px;
	    width: calc(100% - 40px);
	}
	.header-phone {
		position: absolute;
        bottom: 124px;
        left: 20px;
        font-size: 16px;
	}
    .header-menu {
        margin-top: 24px;
        max-height: calc(100dvh - 280px);
        display: block;
        overflow: hidden;
        position: relative;
    }
	.header-menu-scrollarea {
		max-height: calc(100dvh - 280px);
		overflow-y: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
		padding-right: 8px;
	}
	.header-menu-scrollarea::-webkit-scrollbar {
		width: 0;
		height: 0;
	}
	.header-menu-item {
		width: 100%;
	}
	.header-menu-item:not(:last-child) {
		margin-bottom: 16px;
	}
	.header-menu-item.has-child > a {
		width: 100%;
		display: block;
	}
	.header-menu-item.has-child > a.active:before {
		transform: rotate(180deg);
	}
	.header-menu-item__submenu {
		position: static;
		margin-top: 0;
		padding: 0;
		border-radius: 0px;
		opacity: 0;
		border: none;
		visibility: hidden;
		pointer-events: none;
		transform: none;
		display: block;
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease, opacity .2s ease, visibility .2s ease, margin .2s ease;
	}
	.header-menu-item__submenu a {
		font-size: 14px;
	}
	.header-menu-item.has-child.is-open-submenu .header-menu-item__submenu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		max-height: 420px;
		margin-top: 10px;
	}
	.header-menu-item__mark {
		position: static;
		margin-top: 10px;
		display: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		flex-flow: column nowrap;
		background: none;
		border: none;
		border-radius: 0;
	}
	.header-menu-item.has-child.is-open .header-menu-item__mark {
		display: flex;
	}
	.header-menu-item__mark-list {
		width: 100%;
		border-right: none;
		padding: 0;
		background: transparent;
		border: none;
	}
	.header-menu-item__mark-list-item {
		padding-right: 32px;
	}
	.header-menu-item__mark-sublist {
		display: none;
	}
	.header-menu-item__mark-mobile-inline {
		display: block;
		margin: 0;
		padding: 0;
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		transition: max-height .3s ease, opacity .2s ease, margin .2s ease;
	}
	.header-menu-item__mark-mobile-inline.active {
		opacity: 1;
		margin: 8px 0 12px;
	}
	.header-menu-item__mark-mobile-inline .header-menu-item__mark-sublist-item {
		opacity: 1;
		height: auto;
		background: #fff;
		padding: 0 0 0 32px;
        border-radius: 0;
	}
	.header-menu-item__mark-list-item:not(:last-child) {
		margin-bottom: 12px;
	}
	.header-menu-item__mark-mobile-inline .header-menu-item__mark-sublist-item a:not(:last-child) {
		margin-bottom: 10px;
	}
	.header-menu-scrollbar {
		right: 0;
	}
	.header-menu-item__mark-list-item.active:before {
		transform: rotate(90deg);
	}
}
@media (max-width: 768px) {
	#header {
		padding: 10px 0;
	}
	.header-logo {
		width: 54px;
	}
	.header-toggle {
		width: 32px;
		height: 32px;
	}
	.header-desktop {
		width: 320px;
	}
	.header-desktop .header-logo {
		width: 52px;
	}
	.header-close {
		top: 38px;
		width: 16px;
        height: 16px;
	}
	.header-menu {
		margin-top: 16px;
	}
	.header-menu-item.has-child > a:before {
		width: 20px;
		height: 20px;
	}
	.header-menu-item__mark-list-item {
		padding-right: 20px;
	}
}

/* blog */

.blog-top {
	margin-bottom: 40px;
	row-gap: 16px;
}
.blog-top .h1 {
	margin: 0;
}
.blog-top-search {
	width: 736px;
	position: relative;
}
.blog-top-search__input {
	width: 100%;
    border-radius: 1000px;
    background: #EDF2FF;
    padding: 16px 150px 16px 30px;
    font-weight: 600;
    border: none;
}
.blog-top-search__input:placeholder {
	color: rgba(48, 48, 48, 0.50);
}
.blog-top-search__btn {
	width: 130px;
	position: absolute;
	right: 0;
}
.blog-cat {
	margin-bottom: 32px;
	gap: 20px;
	row-gap: 12px;
}
.blog-cat-item {
    border-radius: 1000px;
    border: 2px solid #DBE2F3;
    padding: 12px 24px;
    transition: .4s;
}
.blog-cat-item.active,
.blog-cat-item:hover {
	background: #231B82;
	border: 2px solid #231B82;
	color: #fff;
}
.blog {
	gap: 32px;
}
.blog-item {
	width: calc(100%/3 - 64px/3);
	height: 294px;
	padding: 32px;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	cursor: pointer;
}
.blog-item-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .4s;
}
.blog-item:hover .blog-item-bg {
	transform: scale(1.1);
}
.blog-item:before {
	content: "";
	width: 28px;
	height: 28px;
	background: url("../img/chevron-right.svg") no-repeat center center;
	position: absolute;
	bottom: 32px;
	right: 20px;
	filter: brightness(0) invert(1);
	z-index: 4;
}
.blog-item-content {
	position: relative;
	z-index: 3;
}
.blog-item-content__name {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.blog-item-content__text {
	padding-right: 32px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media (max-width: 1280px) {
	.blog {
		gap: 20px;
	}
	.blog-item {
		width: calc(100%/3 - 40px/3);
	}
}
@media (max-width: 1024px) {
	.blog-item {
		width: calc(50% - 10px);
	}
	.blog-top-search {
	    width: calc(100% - 205px);
	}
}
@media (max-width: 768px) {
	.blog-top {
		margin-bottom: 24px;
		row-gap: 16px;
	}
	.blog-top-search {
		width: 100%;
	}
	.blog-top-search__btn {
	    width: 100px;
	    padding-left: 0;
	    padding-right: 0;
	}
	.blog-top-search__input {
	    padding: 16px 120px 16px 22px;
	}
	.blog-cat {
		gap: 10px;
	}
	.blog-cat-item {
		padding: 10px 20px;
		font-size: 12px;
	}
	.blog-item {
		width: 100%;
		height: 60vw;
		border-radius: 16px;
		padding: 20px;
	}
	.blog-item:before {
	    bottom: 18px;
	    right: 14px;
	}
}

/* blog-in */

.blog-in-content {
	width: calc(100% - 405px - 32px);
}
.blog-in-content-date {
	opacity: .5;
	margin-bottom: 20px;
}
.blog-in-content-preview {
	display: none;
}
.blog-in-content-pagi {
    border-radius: 20px;
    border: 2px solid #DBE2F3;
    background: #FFF;
    padding: 40px 32px;
    margin: 40px 0 60px 0;
}
.blog-in-content h2[id] {
    scroll-margin-top: 90px;
}
html {
    scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
.blog-in-content-pagi-head {
    font-size: 24px;
    font-weight: 700;
    line-height: 105%;
    margin-bottom: 20px;
}
.blog-in-content-pagi a {
	display: block;
	color: #4334EE;
	font-weight: 600;
}
.blog-in-content-pagi a:not(:last-child) {
	margin-bottom: 12px;
}
.blog-in-content-block:not(:last-child) {
	margin-bottom: 60px;
}
.blog-in-content-citata {
    border-radius: 40px 0;
    background: #EDF2FF;
    padding: 32px 60px;
    position: relative;
    font-size: 20px;
    line-height: 140%;
}
.blog-in-content-citata:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../img/blog/citata.svg") no-repeat center center;
    position: absolute;
    top: 36px;
    left: 26px;
}
.blog-in-content-citata:after {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../img/blog/citata.svg") no-repeat center center;
    position: absolute;
    transform: scale(-1,1);
    bottom: 36px;
    right: 26px;
}
.blog-in-content-block > img {
	width: 100%;
	max-width: 100%;
	border-radius: 40px;
}
.blog-in-content-numlist-item {
	gap: 20px;
}
.blog-in-content-numlist-item:not(:last-child) {
	margin-bottom: 24px;
}
.blog-in-content-numlist-item__num {
    border-radius: 8px;
    background: #231B82;
    width: 46px;
    height: 46px;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 105%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-in-content-numlist-item__text {
	width: calc(100% - 66px);
}
.blog-in-content-adva {
	gap: 32px;
}
.blog-in-content-adva-item {
	width: calc(50% - 16px);
	background: #EDF2FF;
}

.blog-in-sidebar {
	width: 405px;
}
.blog-in-sidebar-preview {
	width: 100%;
	border-radius: 40px;
	margin-bottom: 82px;
}
.blog-in-sidebar .usl-form {
	width: 100%;
	position: relative;
}

.blog-in-content .usl-form {
	position: relative;
	width: 100%;
}

.blog-in-content-form {
	display: none;
}

.mobile-panel {
	display: none;
}

@media (max-width: 1240px) {
	.blog-in-content {
		width: 100%;
	}
    .blog-in-content-preview {
        display: block;
        max-width: 100%;
        max-height: 600px;
        object-fit: cover;
        border-radius: 32px;
        margin-bottom: 24px;
    }
    .blog-in-sidebar {
    	display: block;
    	position: relative;
    	transform: none !important;
    	width: 100%;
    	margin-top: 40px;
    }
    .blog-in-sidebar-preview {
    	display: none;
    }
    .blog-in-content-form {
    	display: block;
    }
}
@media (max-width: 1024px) {
	.blog-in-content-block:not(:last-child) {
		margin-bottom: 40px;
	}
	.blog-in-sidebar .usl-form {
		margin-top: 0;
	}
}
@media (max-width: 768px) {
	.blog-in-sidebar {
		display: none;
	}
	.blog-in-content-preview {
		border-radius: 20px;
	}
	.blog-in-content-pagi {
		margin: 20px 0;
		padding: 20px;
	}
	.blog-in-content-citata {
	    border-radius: 20px 0;
	    font-size: 14px;
	    padding: 20px 40px;
	}
	.blog-in-content-citata:before {
		background-size: 100%;
		top: 26px;
		left: 15px;
		width: 14px;
		height: 14px;
	}
	.blog-in-content-citata:after {
		background-size: 100%;
		bottom: 26px;
		right: 15px;
		width: 14px;
		height: 14px;
	}
	.blog-in-content-block > img {
		border-radius: 20px;
	}
	.blog-in-content-numlist-item {
		gap: 12px;
	}
	.blog-in-content-numlist-item:not(:last-child) {
		margin-bottom: 16px;
	}
	.blog-in-content-numlist-item__num {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}
	.blog-in-content-adva-item {
		width: 100%;
	}
	.mobile-panel {
		position: fixed;
		display: block;
		bottom: 20px;
		right: -200px;
		transition: .4s;
		z-index: 4;
	}
	.mobile-panel.show {
		right: 20px;
	}
	.mobile-panel a {
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: #4334EE;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.mobile-panel a:first-child img {
		width: 18px;
	}
	.mobile-panel a:not(:last-child) {
		margin-bottom: 8px;
	}
	.mobile-panel a:last-child img {
		filter: brightness(0) invert(1);
		transform: rotate(-90deg);
	}
}

/* blog-recc */

#blog-recc {
	background: #F1F5FF;
}
.blog-recc-top .h2 {
	margin: 0;
}
.blog-recc-top {
	margin-bottom: 28px;
	gap: 16px;
	row-gap: 12px;
}
.blog-recc-top-link {
	font-weight: 600;
	padding-right: 30px;
	background: url("../img/chevron-right.svg") no-repeat center right;
}
.blog-nav {
	gap: 20px;
}
.blog-nav-prev,
.blog-nav-next {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.blog-recc {
	border-radius: 32px;
}

@media (max-width: 1400px) {
	.blog-recc {
		overflow: visible;
	}
}
@media (max-width: 768px) {
	.blog-recc-top {
		margin-bottom: 20px;
	}
	.blog-nav {
		display: none;
	}
	.blog-recc .blog-item {
		width: 80vw;
	}
	.blog-recc-progressbar {
		display: block;
	}
}

/* tn-main */

#tn-main {
	padding: 24px 0;
}
.tn-main {
    border-radius: 80px 0;
    background: #231B82 url("../img/tn/tn-main-bg.png") no-repeat top right;
    padding: 45px 74px;
    position: relative;
}
.tn-main-info {
	width: calc(100% - 440px);
	padding-top: 35px;
}
.tn-main-top {
	color: #fff;
	margin-bottom: 16px;
}
.tn-main-h {
	color: #fff;
}
.tn-main-t {
	color: #fff;
}
.tn-main-img {
	position: absolute;
	bottom: 0;
	left: 140px;
}
.tn-main-form {
    width: 405px;
    border-radius: 32px 0;
    background: #DBE2F3;
    padding: 40px;
    position: relative;
    z-index: 4;
    gap: 12px;
}
.tn-main-form [data-form-required] .default-form-label__name:before {
	color: #252525;
}
.tn-main-form .button {
	width: 100%;
	margin-top: 12px;
}

@media (max-width: 1180px) {
	.tn-main {
		padding: 40px;
		border-radius: 60px 0;
	}
	.tn-main-img {
		width: 900px;
	}
}
@media (max-width: 980px) {
    .tn-main-info {
        width: 100%;
    }
    .tn-main-form {
        width: 100%;
        margin-top: 32px;
    }
    .tn-main-img {
        width: 800px;
        position: relative;
        left: 0;
        margin: -149px 0 -40px auto;
        display: block;
    }
}
@media (max-width: 768px) {
	.tn-main {
	    padding: 32px;
	    border-radius: 32px 0;
	    background-size: 200%;
	}
	.tn-main-info {
		padding: 0;
	}
	.tn-main-h br {
		display: none;
	}
	.tn-main-t br {
		display: none;
	}
	.tn-main-form {
		padding: 20px;
		border-radius: 16px 0;
	}
	.tn-main-img {
    	width: 124vw;
    	margin: -25vw 0 -32px auto;
	}
}

/* tn-seo */

#tn-seo .container {
	padding-right: 220px;
}

@media (max-width: 1024px) {
	#tn-seo .container {
		padding-right: 0;
	}
}

/* tn-cat */

#tn-cat {
	overflow: hidden;
}
.tn-cat {
	gap: 32px;
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 246px;
	grid-auto-flow: dense;
	align-items: start;
}
.tn-cat.has-active {
	padding-left: 0;
}
.tn-cat-item {
	width: auto;
	height: auto;
	min-height: 246px;
	border: 2px solid #DBE2F3;
	position: relative;
	z-index: 1;
	cursor: pointer;
	padding: 32px 20px 32px 32px;
	overflow: hidden;
	will-change: transform;
	background: #fff;
	transition: background-color .35s ease, border-color .35s ease, padding .35s ease;
}
.tn-cat-item-name {
	position: relative;
	padding-right: 32px;
	font-weight: 800;
	margin-bottom: 20px;
}
.tn-cat-item-name:before {
	content: "";
	width: 28px;
	height: 28px;
	background: url("../img/chevron-right.svg") no-repeat center center;
	position: absolute;
	right: 0;
	transform: rotate(90deg);
	transition: .4s;
}
.tn-cat-item-img {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 100%;
}
.tn-cat-item-list {
	height: 0px;
	opacity: 0;
}
.tn-cat-item-list li:not(:last-child) {
	margin-bottom: 0px;
}
.tn-cat-item-list li a {
	font-size: 14px;
}

.tn-cat-item.active .tn-cat-item-name:before {
	transform: rotate(-90deg);
}
.tn-cat-item.active {
	position: relative;
	left: auto;
	top: auto;
	height: auto;
	min-height: calc(246px * 2 + 32px);
	grid-row: span 2;
	background: #EDF2FF;
	border: 2px solid transparent;
}
.tn-cat-item.active .tn-cat-item-list {
	height: auto;
	opacity: 1;
}
.tn-cat-item.active .tn-cat-item-list li:not(:last-child) {
	margin-bottom: 6px;
}

/* tn-cat dynamic scrollbar */
.tn-cat-item-list.tn-cat-item-list--scroll {
	max-height: 220px;
	overflow-y: auto;
	padding-right: 14px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.tn-cat-item-list.tn-cat-item-list--scroll::-webkit-scrollbar {
	display: none;
}
.tn-cat-item-list-scrollbar {
	position: absolute;
	top: 0;
	right: 12px;
	width: 6px;
	height: 220px;
	background: #fff;
	border-radius: 10px;
	opacity: 0;
	transition: opacity .2s;
	pointer-events: none;
}
.tn-cat-item-list-scrollbar__thumb {
	width: 100%;
	height: 24px;
	background: #231B82;
	border-radius: 10px;
	transform: translateY(0);
}

@media (max-width: 1400px) {
	.tn-cat-item.active {
		width: auto;
	}
	.tn-cat-item {
		width: auto;
	}
}
@media (max-width: 1200px) {
	.tn-cat-item {
		width: auto;
	}
	.tn-cat-item-list.tn-cat-item-list--scroll {
		max-height: initial;
	}
	.tn-cat-item-list-scrollbar {
		display: none;
	}
}
@media (max-width: 980px) {
	.tn-cat {
		display: flex;
		grid-template-columns: none;
		grid-auto-rows: initial;
	}
	.tn-cat-item-img {
		transition: .4s;
	}
	.tn-cat.has-active {
		padding: 0;
	}
	.tn-cat-item-name:before {
		width: 22px;
		height: 22px;
		background-size: 100%;
	}
	.tn-cat-item.active,
	.tn-cat-item {
		position: relative;
		width: 100%;
		min-height: 180px;
	}
	.tn-cat-item.active .tn-cat-item-img {
		opacity: 0;
		transform: translateY(300px);
	}
	.tn-cat-item-list {
		overflow: hidden;
		transition: .8s;
		max-width: calc(100% - 200px);
	}
	.tn-cat-item-list li:not(:last-child) {
		transition: .4s;
	}
}
@media (max-width: 768px) {
	.tn-cat-item-name:before {
		width: 20px;
		height: 20px;
		background-size: 100%;
	}
	.tn-cat.has-active {
		gap: 16px;
	}
	.tn-cat-item.active, .tn-cat-item {
		min-height: initial;
	}
	.tn-cat-item {
		height: auto;
		padding: 20px 20px 100px 20px;
		min-height: initial;
	}
	.tn-cat-item.active {
		padding-bottom: 20px;
	}
	.tn-cat-item-name:before {
		top: -3px;
	}
	.tn-cat-item-list {
		max-width: 100%;
	}
	.tn-cat-item-img {
		height: 120px;
	}
}

/* imp */

#defult-in-banner {
	margin: 20px 0;
}
.default-in-banner {
	border-radius: 80px 0;
    background: #231B82 url("../img/default-in-banner-bg.png") no-repeat top right;
    padding: 100px 74px;
    position: relative;
}
.default-in-banner-mark {
	padding: 160px 74px;
}
.default-in-banner-info {
	position: relative;
	z-index: 3;
}
.default-in-banner .h1 {
	font-size: 52px;
}
.default-in-banner:not(.default-in-banner-withform) .h1 {
	max-width: calc(100% - 300px);
}
.default-in-banner .h4 {
	margin-bottom: 32px;
}
.default-in-banner-adva {
	margin-bottom: 40px;
}
.default-in-banner-adva-item:not(:last-child) {
	margin-bottom: 15px;
}
.default-in-banner-adva-item {
	gap: 18px;
	font-weight: 500;
}
.default-in-banner-adva-item:last-child {
	font-weight: 700;
}
.default-in-banner-img {
	position: absolute;
	bottom: 0;
	right: 0;
}

.default-in-banner-withform .default-in-banner-info {
	width: calc(100% - 470px);
}
.default-in-banner-withform.default-in-banner .h4 {
	font-size: 16px;
}
.default-in-banner-form {
    width: 405px;
    border-radius: 32px 0;
    background: #DBE2F3;
    padding: 40px;
    position: relative;
    z-index: 4;
    gap: 12px;
}
.default-in-banner-form [data-form-required] .default-form-label__name:before {
	color: #252525;
}
.default-in-banner-form .button {
	width: 100%;
	margin-top: 12px;
}
.default-in-banner-withform .default-in-banner-img {
	right: auto;
	top: auto;
	bottom: 0;
	left: 0;
}

@media (max-width: 1340px) {
	.default-in-banner-img {
		max-width: 560px;
	}
}
@media (max-width: 1240px) {
	.default-in-banner-withform .default-in-banner-info {
		width: 100%;
	}
	.default-in-banner-form {
		width: 100%;
	}
	.default-in-banner-withform .default-in-banner-img {
	    right: auto;
	    top: auto;
	    bottom: 0;
	    left: 0;
	    position: relative;
	    margin: 80px 0 -100px -80px;
	    max-width: 100%;
	}
	.default-in-banner:not(.default-in-banner-withform) .h1 {
		max-width: calc(100% - 200px);
	}
}
@media (max-width: 1024px) {
	.default-in-banner .h1 {
		font-size: 42px;
	}
	.default-in-banner {
		border-radius: 60px 0;
		padding: 50px;
	}
	.default-in-banner-img {
		max-width: 360px;
	}
	.default-in-banner-withform .default-in-banner-img {
	    margin: 80px 0 -50px -50px;
	}
}
@media (max-width: 768px) {
    .default-in-banner {
        padding: 50px 30px 30px 30px;
        border-radius: 32px 0;
        background-size: 200%;
    }
    .default-in-banner .h1 {
        font-size: 30px;
    }
    .default-in-banner .h1 br {
    	display: none;
    }
    .default-in-banner-adva-item {
        gap: 12px;
    }
    .default-in-banner-adva-item img {
        width: 32px;
    }
    .default-in-banner-adva {
        margin-bottom: 32px;
    }
    .default-in-banner-adva span {
    	width: calc(100% - 44px);
    }
    .default-in-banner-img {
        max-width: 100%;
        margin: 0 0 -32px 0;
        display: block;
        position: relative;
        right: -32px;
    }
    .default-in-banner-withform.default-in-banner .h4 {
		font-size: 14px;
	}
	.default-in-banner-withform .default-in-banner-img {
    	margin: 50px 0 -30px -30px;
	}
	.default-in-banner:not(.default-in-banner-withform) .h1 {
		max-width: 100%;
	}
	.default-in-banner-form {
		padding: 0;
		color: #fff;
		background: transparent;
	}
	.default-in-banner-form [data-form-required] .default-form-label__name:before {
		color: #fff;
	}
}

/* who */

.who {
	gap: 32px;
}
.who-item {
	width: calc(100%/4 - 96px/4);
	background: #EDF2FF;
	padding-bottom: 20px;
}
.who-item:nth-child(2),
.who-item:nth-child(4),
.who-item:nth-child(5),
.who-item:nth-child(7) {
	background: #fff;
	border: 2px solid #DBE2F3;
}
.who-item-icon {
	height: 32px;
	margin-bottom: 26px;
}
.who-item p span {
	color: rgba(37, 37, 37, 0.50);
	margin-top: 8px;
	display: block;
	font-size: 10px;
}
.who-banner {
	margin-top: 40px;
	padding: 40px 60px;
	gap: 42px;
	row-gap: 16px;
	background: #231B82 url("../img/who/who-bg.png") no-repeat center left;
}
.who-banner .h4 {
	margin: 0;
}

.who-hot {
	gap: 48px;
	row-gap: 38px;
}
.who-hot-item {
	width: calc(100%/3 - 96px/3);
	gap: 16px;
}
.who-hot-item-text {
	width: calc(100% - 48px);
}

@media (max-width: 1340px) {
	.who-banner {
		background-position: left -200px center;
	}
}
@media (max-width: 1120px) {
	.who-banner {
		background: #231B82;
		padding: 32px;
		justify-content: flex-start;
	}
	.who-item {
		width: calc(50% - 16px);
	}
}
@media (max-width: 1024px) {
	.who-hot-item {
		width: calc(50% - 24px);
	}
}
@media (max-width: 768px) {
	.who {
		gap: 16px;
	}
	.who-item {
		width: 100%;
	}
	.who-item-icon {
		margin-bottom: 14px;
		height: 24px;
	}
	.who-banner {
		padding: 20px;
		margin-top: 20px;
	}
	.who-hot {
		gap: 16px;
	}
	.who-hot-item {
		width: 100%;
		gap: 10px;
	}
}

/* recc */

.recc {
	gap: 32px;
}
.recc-item {
	width: calc(100%/4 - 96px/4);
	border: 2px solid #DBE2F3;
	height: 246px;
	position: relative;
	transition: .4s;
}
.recc-item-name {
	display: block;
	width: 100%;
	position: relative;
	width: 100%;
	background: url("../img/chevron-right.svg") no-repeat center right;
}
.recc-item-img {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 100%;
	max-height: 80%;
}
.recc-item:hover {
    background: #EDF2FF;
}

@media (max-width: 1140px) {
	.recc-item {
		width: calc(50% - 16px);
	}
}
@media (max-width: 1140px) {
	.recc-item {
		height: 40vw;
	}
	.recc-item-name {
		background: none;
	}
	.recc {
		gap: 16px;
	}
}
@media (max-width: 380px) {
	.recc-item {
		width: 100%;
	}
}

/* tarif */

#tarif {
	background: #F1F5FF;
}

.tarif-main {
	margin-bottom: 60px;
}
.tarif-main-calc {
    width: calc(100% - 405px - 32px);
    border-radius: 40px;
    background: #FFF;
    padding: 60px;
    position: relative;
}
.tarif-main-calc .h3 {
	margin-bottom: 42px;
}
.tarif-main-calc-price {
	gap: 6px;
	margin-bottom: 32px;
	line-height: 110%;
}
.tarif-main-calc-price__value {
	font-size: 24px;
	margin-right: 6px;
}
.tarif-main-calc-img {
	position: absolute;
	bottom: 0;
	right: 0;
	transition: .4s;
}
.tarif-main-calc-buttons {
	top: 60px;
	right: 60px;
	position: absolute;
	transition: .4s;
	opacity: 0;
}
.tarif-main-calc-buttons .button {
	width: 310px;
	background: #F1F5FF;
	color: #252525;
	padding: 16px;
	font-size: 16px;
	font-weight: 700;
}
.tarif-main-calc-buttons .button:not(:last-child) {
	margin-bottom: 20px;
}
.tarif-main-calc.is-open .tarif-main-calc-buttons {
	opacity: 1;
}

.tarif-main-calc-params {
	margin-bottom: 0;
	max-height: 0;
	opacity: 0;
	pointer-events: none;
	transition: max-height .65s ease, opacity .65s ease, margin .65s ease;
	overflow: hidden;
	max-width: 725px;
}
.tarif-main-calc.is-open {
	width: 100%;
}
.tarif-main-calc.is-open .tarif-main-calc-params {
	margin-bottom: 32px;
	max-height: 520px;
	opacity: 1;
	pointer-events: auto;
	overflow: initial;
}
.tarif-main-calc.is-open .tarif-main-calc-price {
	display: none;
}
.tarif-main-calc-params-wrapper {
	gap: 32px;
}
.tarif-main-calc-params-wrapper:nth-child(1) {
	margin: 70px 0 80px 0;
}
.tarif-main-calc-params-wrapper:nth-child(2) {
	margin: 0 0 50px 0;
}
.tarif-main-calc-params-wrapper > span {
	width: 150px;
	padding-bottom: 20px;
}
.tarif-main-calc-params-wrapper__noui {
	width: calc(100% - 182px);
}
.tarif-main-calc-params-wrapper__noui .range-minmax {
	margin-top: 12px;
}
.tarif-main-calc-params__bottom {
	gap: 12px;
}
.tarif-main-calc-params__bottom-value {
	font-size: 24px;
	margin-left: 4px;
}
.tarif-main-calc-params__range:nth-child(1) + .range-minmax {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: rgba(37, 37, 37, 0.50);
}
.tarif-main-calc-params__range:nth-child(3) + .range-minmax {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: rgba(37, 37, 37, 0.50);
}
.range-minmax__max:before {
	content: ">";
	color: rgba(37, 37, 37, 0.50);
	margin-right: 4px;
}
.noUi-target {
    border-radius: 1000px;
    background: #F1F5FF;
    border: none;
    box-shadow: none;
}
.noUi-connect {
	background: transparent;
}
.noUi-horizontal .noUi-handle {
	width: 32px;
	height: 32px;
	background: #5B4DF0;
	border-radius: 50%;
	box-shadow: none;
	cursor: pointer;
}
.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
	display: none;
}
.noUi-tooltip {
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 100%;
    background: transparent;
}
.noUi-tooltip strong {
	font-size: 24px;
}
.noUi-tooltip input {
    border-radius: 8px;
    background: #F1F5FF;
    padding: 8px 16px;
    border: none;
    font-size: 24px;
    font-weight: 600;
    transition: .4s;
    color: rgba(37, 37, 37, 0.50);
}
.tarif-main-calc-params__range.is-manual-input .noUi-tooltip input {
	color: rgba(37, 37, 37);
}

.tarif-main-calc.is-open + .tarif-main-banner {
	opacity: 0;
	pointer-events: none;
	position: absolute;
}
.tarif-main-banner {
	right: 0;
	top: 0;
	width: 405px;
	border-radius: 40px 0;
	padding: 60px;
	background: url("../img/tarif/tarif-bg.svg") no-repeat center center / cover;
	transition: .2s;
}
.tarif-main-banner .h3 {
	font-size: 28px;
	margin-bottom: 20px;
}
.tarif-main-banner.content ul li:before {
	background: #fff;
}
.tarif-main-banner-link {
	display: block;
	padding-right: 28px;
	background: url("../img/tarif/chevron-right.svg") no-repeat center right;
	width: max-content;
}

.tarif-list {
	gap: 32px;
}
.tarif-list-item {
	width: calc(100%/3 - 64px/3);
	position: relative;
	padding: 40px 40px 200px 40px;
	background: #FFF;
}
.tarif-list-item-name {
	color: #231B82;
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 700;
}
.tarif-list-item-price {
	gap: 6px;
	margin-bottom: 16px;
}
.tarif-list-item-price__value {
	font-size: 24px;
	font-weight: 700;
}
.tarif-list-item-profit {
    position: absolute;
    right: 0;
    top: 40px;
    border-radius: 12px 0 0 12px;
    background: #231B82;
    color: #fff;
    text-align: center;
    padding: 12px 28px;
    line-height: 110%;
}
.tarif-list-item-profit strong {
	display: block;
}
.tarif-list-item-oldprice {
	color: rgba(37, 37, 37, 0.50);
	margin-bottom: 24px;
}
.tarif-list-item-list li {
	position: relative;
	padding-left: 20px;
	line-height: 110%;
}
.tarif-list-item-list li:before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 0;
	background: #252525;
}
.tarif-list-item-list li:not(:last-child) {
	margin-bottom: 16px;
}
.tarif-list-item-bottom {
	position: absolute;
	bottom: 40px;
	left: 40px;
	width: calc(100% - 80px);
}
.tarif-list-item-bottom__info {
	padding: 24px 0 32px 0;
	border-top: 2px solid #EDF2FF;
}
.tarif-list-item-bottom__info div {
	font-size: 24px;
	font-weight: 700;
}
.tarif-list-item-bottom__button {
	width: 100%;
}

.tarif-bottom {
	gap: 46px;
	row-gap: 24px;
	margin-top: 60px;
}
.tarif-bottom-yes {
	padding-right: 46px;
	position: relative;
}
.tarif-bottom-yes ul li {
	padding-left: 40px;
	background: url("../img/tarif/check-broken.svg") no-repeat center left;
}
.tarif-bottom-no ul li {
	padding-left: 40px;
	background: url("../img/tarif/x-02.svg") no-repeat center left;
}
.tarif-bottom-yes ul li:not(:last-child),
.tarif-bottom-no ul li:not(:last-child) {
	margin-bottom: 16px;
}
.tarif-bottom-yes:before {
	content: "";
	width: 2px;
	height: 100%;
	background: #DBE2F3;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 4px;
}
.tarif-bottom-alert {
	margin-left: auto;
	height: auto;
	background: #FFF;
	padding: 28px;
}

@media (max-width: 1320px) {
	.tarif-main-calc-img {
		height: 200px;
	}
}
@media (max-width: 1295px) {
	.tarif-bottom-alert {
		margin: 0;
		width: 100%;
	}
	.tarif-bottom-alert br {
		display: none;
	}
	.tarif-main-calc-params {
		max-width: calc(100% - 340px);
	}
}
@media (max-width: 1260px) {
	.tarif-list-item {
		width: calc(50% - 16px);
	}
}
@media (max-width: 1024px) {
	.tarif-main-calc {
		padding: 40px;
		border-radius: 28px;
		width: 100%;
	}
	.tarif-main-banner {
		padding: 40px;
		border-radius: 28px 0;
		width: 100%;
		margin: 32px 0 44px 0;
	}
	.tarif-list-item {
		width: 100%;
	}
	.tarif-bottom-yes {
		padding-right: 28px;
	}
	.tarif-main {
		margin-bottom: 40px;
	}
	.tarif-main-calc-buttons {
		display: none;
	}
	.tarif-main-calc-params {
		max-width: 100%;
	}
}
@media (max-width: 768px) {
	.tarif-main {
		margin-bottom: 20px;
	}
	.tarif-main-calc {
		padding: 20px;
		border-radius: 14px;
	}
	.tarif-main-calc .h3 {
		margin-bottom: 28px;
	}
	.tarif-main-calc-price {
		margin-bottom: 10px;
	}
	.tarif-main-calc-price__value {
		font-size: 18px;
	}
	.tarif-main-calc-params__range {
		height: 10px;
	}
	.noUi-tooltip strong {
		font-size: 16px;
	}
	.noUi-tooltip {
		gap: 4px;
	}
	.noUi-horizontal .noUi-handle {
		width: 16px;
		height: 16px;
	}
	.tarif-main-calc-img {
		display: none;
	}
	.tarif-main-calc-params__bottom-value {
		font-size: 18px;
	}
	.tarif-main-calc-params__bottom {
		gap: 8px;
	}
	.tarif-main-calc-params {
		margin-bottom: 20px;
	}
	.tarif-main-calc-params-wrapper__noui {
		width: 100%;
	}
	.noUi-tooltip input {
		font-size: 16px;
		padding: 8px;
		border-radius: 4px;
	}
	.tarif-main-calc-params-wrapper:nth-child(1) {
	    margin: 30px 0 20px 0;
	}
	.tarif-main-calc-params-wrapper:nth-child(2) {
		margin: 0 0 20px 0;
	}
	.tarif-main-calc-params-wrapper > span {
		padding-bottom: 10px;
	}
	.tarif-main-banner {
        padding: 20px;
        border-radius: 20px 0;
        margin: 22px 0 28px 0;
    }
    .tarif-list-item {
    	padding: 20px 20px 145px 20px;
    }
    .tarif-list-item-bottom {
    	bottom: 20px;
    	left: 20px;
    	width: calc(100% - 40px);
    }
    .tarif-list-item-name {
    	font-size: 18px;
    	margin-bottom: 16px;
    }
    .tarif-list-item-price {
    	margin-bottom: 12px;
    }
    .tarif-list-item-price__value {
    	font-size: 18px;
    }
    .tarif-list-item-oldprice {
    	margin-bottom: 16px;
    }
    .tarif-list-item-list li:before {
    	top: 4px;
    }
    .tarif-list-item-profit {
        zoom: .7;
        top: 30px;
    }
    .tarif-list-item-bottom__info {
    	padding: 20px 0 12px 0;
    }
    .tarif-list-item-bottom__info div {
    	font-size: 18px;
    }
    .tarif-list {
    	gap: 20px;
    }
    .tarif-bottom {
    	margin-top: 30px;
    }
    .tarif-bottom-yes {
    	padding-right: 0;
    	width: 100%;
    }
    .tarif-bottom-yes:before {
    	display: none;
    }
    .tarif-bottom-no {
    	width: 100%;
    }
    .tarif-bottom-yes ul li,
    .tarif-bottom-no ul li {
    	padding-left: 32px;
    }
    .tarif-bottom-alert {
    	padding: 16px;
    }
}

/* in-adva */

.in-adva {
	gap: 32px;
	row-gap: 24px;
}
.in-adva-item {
	width: calc(100%/3 - 64px/3);
	background: #EDF2FF;
}
.in-adva-item h4 {
	margin-bottom: 16px;
}

@media (max-width: 968px) {
	.in-adva-item {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.in-adva {
		row-gap: 16px;
	}
}

/* about */

#about-in .container {
	position: relative;
}
.about-in-content {
	width: calc(100% - 500px);
	max-width: 732px;
}
.about-in-img {
	position: absolute;
	right: -60px;
	top: -60px;
}

@media (max-width: 968px) {
	.about-in-content {
		width: 100%;
		max-width: 100%;
	}
	.about-in-img {
		position: relative;
        right: 0;
        top: 0;
        display: block;
        margin: 0 auto -60px auto;
        max-width: 100%;
	}
}

/* deals */

.deals {
	gap: 32px;
	row-gap: 24px;
}
.deals-item {
	width: calc(100% - 405px - 32px);
	border: 2px solid #DBE2F3;
}
@media (min-width: 920px) {
    .deals-item:nth-child(2),
    .deals-item:nth-child(3) {
        width: 405px;
        background: #231B82;
    }

    .deals-item:nth-child(2) *,
    .deals-item:nth-child(3) * {
        color: #fff;
    }
}

@media (max-width: 920px) {
	.deals-item {
		width: 100% !important;
	}
	.deals-item:nth-child(2),
    .deals-item:nth-child(4) {
        background: #231B82;
    }

    .deals-item:nth-child(2) *,
    .deals-item:nth-child(4) * {
        color: #fff;
    }
}

/* partners-steps */

#partners-steps {
	background: #F1F5FF;
}
.partners-steps {
	gap: 32px;
}
.partners-steps-item {
	width: calc(100%/3 - 64px/3);
	height: 246px;
	position: relative;
	background: #fff;
}
.partners-steps-item h4 {
	position: relative;
	z-index: 4;
}
.partners-steps-item img {
	position: absolute;
	bottom: 0;
	right: 0;
}

@media (max-width: 1280px) {
	.partners-steps-item {
		height: 280px;
	}
}
@media (max-width: 1024px) {
	.partners-steps-item {
		width: calc(50% - 16px);
	}
}
@media (max-width: 768px) {
	.parnters-steps {
		gap: 16px;
	}
	.partners-steps-item {
		width: 100%;
		height: auto;
	}
	.partners-steps-item img {
		height: 100px;
        position: relative;
        margin-left: auto;
        display: block;
	}
}

/* mark */

.mark-tabs {
	position: relative;
	transition: .4s;
	min-height: max-content;
}
.mark-tabs-item {
	width: 405px;
	margin-bottom: 20px;
}
.mark-tabs-item-button {
    border-radius: 12px;
    border: 2px solid #EDF2FF;
    padding: 15px 20px 15px 28px;
    font-weight: 600;
    cursor: pointer;
    transition: .4s;
}
.mark-tabs-item.active .mark-tabs-item-button {
	background: #EDF2FF;
}
.mark-tabs-item-button span {
	width: calc(100% - 36px);
}
.mark-tabs-item.active .mark-tabs-item-button img {
	transition: .4s;
}
.mark-tabs-item-content {
    position: absolute;
    right: 0;
    top: 0;
    padding: 40px;
    width: calc(100% - 405px - 32px);
    border-radius: 24px;
    background: #EDF2FF;
    opacity: 0;
    transition: .4s;
    pointer-events: none;
    min-height: 100%;
}
.mark-tabs-item.active .mark-tabs-item-content {
	opacity: 1;
	pointer-events: initial;
}

.mark-tabs .button {
	width: 341px;
	margin-top: 40px;
}

@media (max-width: 1024px) {
	.mark-tabs {
		height: auto !important;
	}
	.mark-tabs-item {
		width: 100%;
		overflow: hidden;
	}
	.mark-tabs-item-content {
		position: relative;
		width: 100%;
		height: 0px;
		padding: 0 32px;
	}
	.mark-tabs-item.active .mark-tabs-item-button img {
		transform: rotate(90deg);
	}
	.mark-tabs-item.active .mark-tabs-item-content {
		height: auto;
		margin-top: 16px;
		padding: 32px;
	}
}
@media (max-width: 768px) {
	.mark-tabs-item-content {
		border-radius: 16px;
	}
	.mark-tabs-item-content {
		padding: 0 20px;
	}
	.mark-tabs-item.active .mark-tabs-item-content {
		height: auto;
		margin-top: 12px;
		padding: 20px;
	}
	.mark-tabs-item-button {
	    padding: 15px 10px 15px 20px;
	}
	.mark-tabs .button {
		margin-top: 20px;
		width: 100%;
	}
}

/* mark-adva */

.mark-adva {
	gap: 32px;
	row-gap: 24px;
}
.mark-adva-item {
	width: calc(100%/5 - 128px/5);
}
.mark-adva-item-icon {
	margin-bottom: 20px;
}

@media (max-width: 1280px) {
	.mark-adva-item {
		width: calc(100%/3 - 64px/3);
	}
}
@media (max-width: 768px) {
	.mark-adva {
		gap: 16px;
	}
	.mark-adva-item {
		width: 100%;
	}
	.mark-adva-item-icon {
		width: 36px;
		margin-bottom: 12px;
	}
}

/* faq */

#faq .container {
	padding-right: 437px;
	position: relative;
}
#faq .container.full-width {
	padding-right: 0 !important;
}
.faq-img {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	transition: .4s;
	width: 405px;
	object-fit: cover;
	border-radius: 28px;
}
.faq-block-item:not(:last-child) {
	margin-bottom: 12px;
}
.faq-block-item {
    border-radius: 12px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: .4s;
}
.faq-block-item span {
	width: calc(100% - 40px);
}
.faq-block-item__button {
	color: #fff;
	font-weight: 600;
	padding: 15px 20px 15px 28px;
	background: #231B82;
	border-radius: 0 0 12px 12px;
	cursor: pointer;
}
.faq-block-item__button svg {
	transition: .4s;
}
.faq-block-item.active .faq-block-item__button svg {
	transform: rotate(180deg);
}
.faq-block-item__content {
	padding: 0 28px;
	transition: .4s;
	height: 0px;
}
.faq-block-item.active {
	border: 2px solid #231B82;
}
.faq-block-item.active .faq-block-item__content {
	padding: 28px;
	height: auto;
}

@media (max-width: 980px) {
	#faq .container {
		padding-right: 0;
	}
	.faq-img {
		position: relative;
		width: auto;
		max-width: 100%;
		height: auto;
		margin-top: 32px;
		border-radius: 16px;
	}
	.faq-block-item__content {
		padding: 0 20px;
	}
	.faq-block-item.active .faq-block-item__content {
		padding: 20px;
	}
}

/* wave */

#wave {
	margin-bottom: -40px;
}
.wave-list {
	position: relative;
}
.wave-list:before {
	content: "";
	z-index: 2;
	width: 4px;
	height: calc(100% - 7px);
	top: 7px;
	background: #DBE2F3;
	left: 14px;
	position: absolute;
}
.wave-list-item {
	position: relative;
	z-index: 4;
	margin-left: auto;
	width: calc(100% - 64px);
}
.wave-list-item:before {
	content: "";
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #DBE2F3;
	position: absolute;
	z-index: 4;
	left: -64px;
	top: 7px;
	transition: .4s;
}
.wave-list-item.active:before {
	background: #231B82;
}
.wave-list-item:not(:last-child) {
	border-bottom: 2px solid #DBE2F3;
	margin-bottom: 20px;
}
.wave-list-item-button {
	position: relative;
	font-size: 20px;
	font-weight: 600;
	line-height: 140%;
	cursor: pointer;
	margin-bottom: 20px;
	cursor: pointer;
	padding: 8px 0;
	transition: .4s;
	user-select: none;
}
.wave-list-item-button:before {
	content: "";
	width: 28px;
	height: 28px;
	background: url("../img/chevron-right.svg") no-repeat center center / 100%;
	transform: rotate(90deg);
	position: absolute;
	right: 0;
	top: 0px;
	transition: .4s;
}
.wave-list-item.active .wave-list-item-button {
	margin-bottom: 10px;
}
.wave-list-item.active .wave-list-item-button:before {
	transform: rotate(-90deg);
}
.wave-list-item-content {
	height: 0px;
	transition: .4s;
	overflow: hidden;
	opacity: 0;
}
.wave-list-item-content ul {
	margin: 0;
}
.wave-list-item.active .wave-list-item-content {
	height: auto;
	opacity: 1;
	padding-top: 10px;
}
.wave-list-item:last-child:after {
    content: "";
    z-index: 3;
    width: 4px;
    height: 100%;
    top: 7px;
    background: #fff;
    left: -50px;
    position: absolute;
}

@media (max-width: 768px) {
	.wave-list:before {
	    width: 2px;
	    left: 8px;
	}
	.wave-list-item {
		width: calc(100% - 30px);
	}
	.wave-list-item:not(:last-child) {
		margin-bottom: 10px;
	}
	.wave-list-item:before {
	    width: 20px;
	    height: 20px;
	    left: -31px;
	    top: 5px;
	}
	.wave-list-item-button {
	    font-size: 16px;
	    margin-bottom: 10px;
	    padding: 4px 0;
	}
	.wave-list-item-button:before {
		width: 20px;
		height: 20px;
		top: 3px;
	}
	.wave-list-item:last-child:after {
		left: -22px;
	}
	.wave-list-item.active .wave-list-item-content {
		padding-top: 0;
	}
	#wave {
		margin-bottom: -20px;
	}
}

/* modals */

[data-modal-name="Таблица расценок"] .ginlined-content {
	width: 690px;
	border: 2px solid #DBE2F3;
	padding: 60px 80px;
	position: relative;
}
.price-tables-buttons {
	margin-bottom: 24px;
}
.price-tables {
	position: relative;
	overflow: hidden;
}
.price-tables-block-scrollarea {
	max-height: none;
	overflow: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.price-tables-block-scrollarea::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}
.price-tables-buttons__item {
    width: calc(50% - 12px);
    border-radius: 12px;
    border: 2px solid #EDF2FF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 58px;
    transition: .4s;
}
.price-tables-buttons__item.active {
	background: #EDF2FF;
}
.price-tables-block {
	display: none;
	position: relative;
	overflow: hidden;
	height: 400px;
}
.price-tables-block.active {
	display: block;
}
.price-tables-block--scrollable {
	padding-right: 8px;
}
.price-tables-block--scrollable .price-tables-block-scrollarea {
	overflow-y: auto;
}
.price-tables-block--scrollable .price-tables-block-scrollarea::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}
.price-modal-scrollbar {
	position: absolute;
	top: 0;
	right: 2px;
	width: 4px;
	background: #DBE2F3;
	border-radius: 10px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s;
}
.price-modal-scrollbar.is-visible {
	opacity: 1;
}
.price-modal-scrollbar__thumb {
	width: 100%;
	height: 24px;
	background: #231B82;
	border-radius: 10px;
	transform: translateY(0);
}
[data-name="Создание кодов"] .usl-main-table-item__name {
	width: calc(100% - 92px);
}
[data-name="Создание кодов"] .usl-main-table-item__value {
	width: 85px;
}
[data-name="УПД"] .usl-main-table-item__name {
	width: calc(100% - 82px);
}
[data-name="УПД"] .usl-main-table-item__value {
	width: 70px;
	text-align: right;
}

@media (max-width: 768px) {
	[data-modal-name="Таблица расценок"] .ginlined-content {
	    padding: 54px 12px 24px 20px;
	}
	.price-tables-buttons {
		margin-bottom: 12px;
	}
	.price-tables-buttons__item {
		height: 48px;
		font-size: 14px;
	}
}

[data-modal-name="Обратная связь"] .ginlined-content {
	padding: 0;
    border-radius: 40px 0;
    width: 662px;
    padding-left: 20px;
}
[data-modal-name="Обратная связь"] .ginlined-content .default-form {
	width: 100%;
}
[data-modal-name="Обратная связь"] .ginlined-content .modal-close {
	filter: brightness(0) invert(1);
}
[data-modal-name="Обратная связь"] .default-form [data-form-button] {
	margin-top: 0;
}

@media (max-width: 1140px) {
	[data-modal-name="Обратная связь"] .ginlined-content .default-form {
		margin: 0 !important;
	}
}
@media (max-width: 768px) {
	[data-modal-name="Обратная связь"] .ginlined-content {
        border-radius: 20px;
        padding: 0;
        background: transparent;
	}
}

/* table */

.table {
	border-radius: 20px;
	overflow: hidden;
}
.table-top {
	background: #231B82;
}
.table-top-item,
.table-items-wrapper__item-col{
	width: calc((100% - 220px) / 5);
}
.table-top-item {
	padding: 20px;
	text-align: center;
}
.table-top-item-name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #fff;
}
.table-top-item-price {
	font-size: 14px;
	margin-bottom: 16px;
	color: #fff;
}
.table-top-item .button {
	width: 100%;
	padding: 12px;
	font-size: 14px;
}
.table-top-item.first {
	width: 220px;
	background: #4334EE;
	text-align: left;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}
.table-items-wrapper__item .table-items-wrapper__item-col:not(:first-child) {
	border-top: 2px solid #EDF2FF;
}
.table-items-wrapper__item:last-child .table-items-wrapper__item-col:not(:first-child) {
	border-bottom: 2px solid #EDF2FF;
}
.table-items-wrapper__item-col {
	border-left: 2px solid #EDF2FF;
	padding: 15px;
	text-align: center;
	font-size: 14px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.table-items-wrapper__item-col:first-child {
	width: 220px;
	background: #4334EE;
	border: none;
	color: #fff;
	text-align: left;
	justify-content: flex-start;
}
.table-items-wrapper__item:last-child .table-items-wrapper__item-col:first-child {
	border-bottom: 2px solid #231B82;
}
.table-items-wrapper__item-col:last-child {
	border-right: 2px solid #EDF2FF;
}

/* [data-table] list: кастомный скролл, видимых ровно N строк (см. main.js, по умолчанию 10 items) */
[data-table-list] {
	position: relative;
}
.table-list-scrollarea {
	overflow-x: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.table-list-scrollarea::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}
.table--list-scrollable .table-list-scrollarea {
	box-sizing: border-box;
}
.table-list-scrollbar {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 4px;
	border-radius: 999px;
	background: #DBE2F3;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 2;
	height: calc(100% - 16px);
}
.table-list-scrollbar.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.table-list-scrollbar__thumb {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	border-radius: 999px;
	background: #231B82;
	cursor: grab;
	touch-action: none;
}
.table-list-scrollbar__thumb:active {
	cursor: grabbing;
}

@media (max-width: 1200px) {
	.table-top-item,
	.table-items-wrapper__item-col,
	.table-bottom-item {
		font-size: 12px;
		line-height: 120%;
	}
	.table-top-item-name {
		font-size: 14px;
	}
}
@media (max-width: 890px) {
	.table {
		border-radius: 10px;
	}
	.table-swiper .swiper-slide {
		width: 1200px;
	}
    .table-progressbar {
        display: flex;
        height: 3px;
        margin-top: 12px;
    }
    .table-top-item.first,
    .table-items-wrapper__item-col:first-child {
    	width: 180px;
    }
}

/* seo-text */

[data-hidden-content] {
	width: 100%;
	position: relative;
}
[data-hidden-content].hidden {
	max-height: 150px;
	overflow: hidden;
}
[data-hidden-content].hidden:before {
	content: "";
	width: 100%;
	height: 94px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
	position: absolute;
	bottom: 0;
	left: 0;
}
[data-toggle-hidden-content] {
	margin: 24px 0 0 auto;
}
.seo-text-loadmore {
	padding-right: 20px;
	position: relative;
}
.seo-text-loadmore:before {
	content: "";
	width: 20px;
	height: 20px;
	background: url("../img/chevron-up.svg") no-repeat center center / 16px;
	position: absolute;
	right: 0;
	top: 2px;
	transition: .4s;
}
.seo-text-loadmore[aria-expanded="true"]:before {
	transform: rotate(180deg);
}