@charset "UTF-8";
:root {
	--font-family: 'Inter Tight', sans-serif;
	--content-width: 1800px;
	--container-offset: 60px;
	--container-width: calc(var(--content-width) + (var(--container-offset) * 2));
	--light-color: #fff;
	--bg: #e8f0f8;
	--panel: #f0f5fb;
	--panel-right: #dce8f5;
	--blue: #1a8fff;
	--blue-dark: #1278d8;
	--text: #1a2b3c;
	--text-muted: #7a90a8;
	--border: #cddaeb;
	--input-bg: #fff;
	--green: #2dce89;
	--purple: #845ef7;
	--radius: 12px;
	--shadow: 0 2px 12px rgba(26, 80, 160, 0.08);
	--bg: #e8eef4;
	--white: #ffffff;
	--panel-bg: #dce6ef;
	--text-dark: #1a2332;
	--text-mid: #4a5568;
	--text-light: #8a9ab0;
	--accent: #2563eb;
	--accent-hover: #1d4ed8;
	--border: #d0dbe8;
	--option-bg: #f0f5fa;
	--option-hover: #e2ecf6;
	--option-active: #dbeafe;
	--option-border-active: #93c5fd;
	--input-bg: #f8fafc;
	--radius: 12px;
	--radius-sm: 8px;
	--shadow: 0 2px 12px rgba(30, 60, 100, 0.08);
	--transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
	opacity: 1;
}
.custom-checkbox__field:focus + .custom-checkbox__content::before {
	outline: red solid 2px;
	outline-offset: 2px;
}
.custom-checkbox__field:disabled + .custom-checkbox__content {
	opacity: 0.4;
	pointer-events: none;
}
@font-face {
	font-family: 'Inter Tight';
	src: url(../fonts/InterTight-Thin.woff2) format('woff2');
	font-weight: 100;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Inter Tight';
	src: url(../fonts/InterTight-ExtraLight.woff2) format('woff2');
	font-weight: 200;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Inter Tight';
	src: url(../fonts/InterTight-Light.woff2) format('woff2');
	font-weight: 300;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Inter Tight';
	src: url(../fonts/InterTight-Regular.woff2) format('woff2');
	font-weight: 400;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Inter Tight';
	src: url(../fonts/InterTight-Medium.woff2) format('woff2');
	font-weight: 500;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Inter Tight';
	src: url(../fonts/InterTight-SemiBold.woff2) format('woff2');
	font-weight: 600;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Inter Tight';
	src: url(../fonts/InterTight-Bold.woff2) format('woff2');
	font-weight: 700;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Inter Tight';
	src: url(../fonts/InterTight-ExtraBold.woff2) format('woff2');
	font-weight: 800;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Inter Tight';
	src: url(../fonts/InterTight-Black.woff2) format('woff2');
	font-weight: 900;
	font-display: swap;
	font-style: normal;
}
*,
::after,
::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	background-color: #f1f9ff;
}
.page {
	height: 100%;
	font-family: var(--font-family, sans-serif);
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
.page__body {
	margin: 0;
	min-width: 360px;
	min-height: 100%;
	font-size: 16px;
}
img {
	height: auto;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
a {
	text-decoration: none;
}
.site-container {
	overflow: hidden;
}
.is-hidden {
	display: none !important;
}
.btn-reset {
	border: none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}
.list-reset {
	list-style: none;
	margin: 0;
	padding: 0;
}
.input-reset {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	background-color: #fff;
}
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
	display: none;
}
.visually-hidden {
	position: absolute;
	overflow: hidden;
	margin: -1px;
	border: 0;
	padding: 0;
	width: 1px;
	height: 1px;
	clip: rect(0 0 0 0);
}
.container {
	margin: 0 auto;
	padding: 0 var(--container-offset);
	max-width: var(--container-width);
}
.centered {
	text-align: center;
}
.dis-scroll {
	position: fixed;
	left: 0;
	top: 0;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	-ms-scroll-chaining: none;
	overscroll-behavior: none;
}
.page--ios .dis-scroll {
	position: relative;
}
.header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.01);
	backdrop-filter: blur(6px) saturate(120%);
	-webkit-backdrop-filter: blur(6px) saturate(120%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.32);
	mix-blend-mode: exclusion;
}
.header.header--active {
	mix-blend-mode: normal;
	z-index: 100000;
}
.header.header--active .burger,
.header.header--active .header-logo,
.header.header--active .lang__switchers,
.header.header--active .lang__switchers a {
	color: #21282d !important;
	z-index: 1000 !important;
	position: relative !important;
}
.header.header--active .lang__switchers a::after {
	background-color: #21282d !important;
}
.header__wrapper {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header__wrapper .header__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.header__wrapper .header__nav .header__mobile__menu {
	display: none;
}
@media (max-width: 941px) {
	.container {
		padding: 0 20px;
	}
	.header {
		max-width: calc(100vw - 20px);
		margin: 10px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 6px;
		background: rgba(255, 255, 255, 0.02);
		padding: 17px 10px;
	}
	.header__wrapper .header__nav {
		-webkit-box-flex: content;
		-ms-flex: content;
		flex: content;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.header__wrapper .header__nav .header__mobile__menu.menu--active {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		position: fixed;
		left: -12px;
		top: -12px;
		width: 100vw;
		height: 100vh;
		background: #fff;
		padding: 100px 20px 10px;
	}
	.header__wrapper .header__nav .header__mobile__menu.menu--active h2 {
		color: #21282d;
		font-family: 'Inter Tight';
		font-style: Medium;
		font-size: 20px;
		font-weight: 500;
		line-height: 100%;
		letter-spacing: -4%;
		text-align: center;
		margin: 0;
	}
	.header__wrapper .header__nav .header__mobile__menu.menu--active p {
		color: rgba(33, 40, 45, 0.8);
		font-family: 'Inter Tight';
		font-style: Medium;
		font-size: 14px;
		font-weight: 500;
		line-height: 100%;
		letter-spacing: -2%;
		text-align: center;
		margin: 12px 0 0;
	}
	.header__wrapper
		.header__nav
		.header__mobile__menu.menu--active
		.header__mobile__nav__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 24px;
		margin: 70px 0 0;
		padding-left: 0;
		list-style: none;
	}
	.header__wrapper
		.header__nav
		.header__mobile__menu.menu--active
		.header__mobile__nav__list
		li
		a {
		color: #21282d;
		font-family: 'Inter Tight';
		font-style: Medium;
		font-size: 24px;
		font-weight: 500;
		line-height: 100%;
		letter-spacing: -2%;
		text-decoration: none;
	}
	.header__wrapper
		.header__nav
		.header__mobile__menu.menu--active
		.header__mobile__contacts {
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 12px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.header__wrapper
		.header__nav
		.header__mobile__menu.menu--active
		.header__mobile__contacts
		a {
		color: #21282d;
		font-family: 'Inter Tight';
		font-style: Medium;
		font-size: 16px;
		font-weight: 500;
		line-height: 100%;
		letter-spacing: -2%;
	}
	.header__wrapper
		.header__nav
		.header__mobile__menu.menu--active
		.header__mobile__contacts
		a:first-child {
		font-size: 20px;
	}
	.header__wrapper
		.header__nav
		.header__mobile__menu.menu--active
		.btn--primary {
		width: 100%;
	}
}
.header__wrapper .header__nav div,
.header__wrapper .header__nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border-right: 1px solid rgba(255, 255, 255, 0.32);
	height: 98px;
}
.header__wrapper .header__nav .lang__switchers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	padding: 0 18px;
}
.header__wrapper .header__nav .lang__switchers a {
	position: relative;
	color: #fff;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	opacity: 0.6;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.header__wrapper .header__nav .lang__switchers a.active,
.header__wrapper .header__nav .lang__switchers a:hover {
	opacity: 1;
}
.header__wrapper .header__nav .lang__switchers a:first-child::after {
	content: none;
}
.header__wrapper .header__nav .lang__switchers a::after {
	content: '';
	position: absolute;
	left: -10px;
	width: 1px;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1880px) {
	.header .container {
		padding: 0 20px;
	}
	.header__wrapper .header__nav .lang__switchers {
		padding: 0 12px;
	}
	.header__wrapper .header__nav .lang__switchers a {
		font-size: 16px;
	}
}
.header__wrapper .header__nav .header__message {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	color: #fff;
	text-align: left;
	padding: 0 20px;
}
.header__wrapper .header__nav .header__message h2,
.header__wrapper .header__nav .header__message p {
	display: block;
	width: 100%;
	max-width: 453px;
	text-align: left;
}
.header__wrapper .header__nav .header__message h2 {
	color: #fff;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -4%;
	margin: 0 auto;
}
@media (max-width: 1880px) {
	.header__wrapper .header__nav .header__message {
		padding: 0 12px;
		-webkit-box-flex: 0.5;
		-ms-flex: 0.5;
		flex: 0.5;
	}
	.header__wrapper .header__nav .header__message h2,
	.header__wrapper .header__nav .header__message p {
		max-width: 350px;
	}
	.header__wrapper .header__nav .header__message h2 {
		font-size: 20px;
	}
}
.header__wrapper .header__nav .header__message p {
	color: #fff;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 16px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 10px auto 0;
}
.header__wrapper .header__list__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-logo {
	height: 98px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-right: 1px solid rgba(255, 255, 255, 0.32);
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	padding-right: 68px;
}
.header__list__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 941px) {
	.header__wrapper .header__nav div,
	.header__wrapper .header__nav ul {
		height: auto;
		border-right: 0;
	}
	.header__wrapper .header__nav .header__message {
		display: none !important;
	}
	.header-logo {
		height: auto;
		border-right: 0;
	}
	.header__list__nav {
		display: none !important;
	}
}
.header__list__nav li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: left;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 0 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.32);
	height: 98px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.header__list__nav li:hover {
	background-color: #1290ea;
}
.header__list__nav li:hover a,
.header__list__nav li:hover h3 {
	color: #fff;
}
.header__list__nav li:hover a span::after {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}
.header__list__nav li:hover a span svg {
	-webkit-transform: translateX(-20px);
	-ms-transform: translateX(-20px);
	transform: translateX(-20px);
	opacity: 0;
}
.header__list__nav li:last-child {
	border-right: 0;
}
.header__list__nav li h3 {
	color: #fff;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	opacity: 0.6;
	margin: 0;
}
@media (max-width: 1880px) {
	.header__wrapper .header__nav .header__message p {
		font-size: 14px;
	}
	.header-logo {
		padding-right: 40px;
	}
	.header__list__nav li {
		padding: 0 10px;
	}
	.header__list__nav li h3 {
		font-size: 14px;
	}
}
.header__list__nav li a {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #fff;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 24px 0 0;
}
.header__list__nav li a span {
	position: relative;
	width: 20px;
	height: 20px;
	overflow: hidden;
}
.header__list__nav li a span svg {
	-webkit-transition:
		opacity 0.4s,
		-webkit-transform 0.4s;
	transition:
		transform 0.4s,
		opacity 0.4s,
		-webkit-transform 0.4s;
}
.header__list__nav li a span::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 2px;
	width: 20px;
	height: 20px;
	background: currentColor;
	mask: url(../img/svg/arrow-right.svg) no-repeat center;
	-webkit-mask: url(../img/svg/arrow-right.svg) no-repeat center;
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
	opacity: 0;
	-webkit-transition:
		opacity 0.4s,
		-webkit-transform 0.4s;
	transition:
		transform 0.4s,
		opacity 0.4s,
		-webkit-transform 0.4s;
}
.hero {
	background-image: url(../img/hero-bg.webp);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;
}
.hero__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100vh;
}
.hero__wrapper h1 {
	color: #fff;
	font-family: 'Inter Tight';
	font-style: SemiBold;
	font-size: 98px;
	font-weight: 600;
	line-height: 90%;
	letter-spacing: -6%;
	text-align: center;
	margin: 0;
}
@media (max-width: 941px) {
	.hero__wrapper h1 {
		font-size: 44px;
	}
}
@media (max-width: 652px) {
	.hero__wrapper h1 {
		font-size: 32px;
	}
}
.hero__wrapper p {
	color: #fff;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 32px;
	font-weight: 500;
	line-height: 90%;
	letter-spacing: -4%;
	text-align: center;
	margin: 48px 0 0;
}
@media (max-width: 941px) {
	.hero__wrapper p {
		font-size: 24px;
		margin: 36px 0 0;
	}
}
@media (max-width: 652px) {
	.hero__wrapper p {
		font-size: 20px;
		margin: 32px 0 0;
	}
}
.hero__wrapper .btn--primary {
	margin-top: 52px;
}
.hero-secondary {
	min-height: 100vh;
	padding: 148px 0 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.hero-secondary__content {
	height: calc(100vh - 148px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.hero-secondary__content h1 {
	color: #fff;
	font-family: 'Inter Tight';
	font-style: SemiBold;
	font-size: 9vw;
	font-weight: 600;
	line-height: 73%;
	letter-spacing: -4%;
	margin: auto 0 0;
}
.hero-secondary__content .breadcrumbs a:last-child,
.hero-secondary__content .breadcrumbs span {
	color: #fff;
}
.hero-header .hero-header__wrapper {
	padding: 148px 0 120px;
	border-bottom: 1px solid #c2d3e5;
}
.hero-header h1 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: SemiBold;
	font-size: 98px;
	font-weight: 600;
	line-height: 90%;
	letter-spacing: -6%;
	margin: 50px 0 0;
}
@media (max-width: 1880px) {
	.header__list__nav li a {
		font-size: 16px;
		margin: 18px 0 0;
	}
	.hero-header .hero-header__wrapper {
		padding: 148px 0 60px;
	}
	.hero-header h1 {
		font-size: 72px;
		margin: 30px 0 0;
	}
}
@media (max-width: 768px) {
	.hero-header h1 {
		font-size: 32px;
		margin: 30px 0 0;
	}
}
.breadcrumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 2px;
}
.breadcrumbs a {
	color: #1290ea;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
}
.breadcrumbs a:last-child {
	color: #8d98a5;
}
.breadcrumbs span {
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
}
.page-subtitle {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	text-align: left;
	margin: 40px 0 0;
}
@media (max-width: 1880px) {
	.page-subtitle {
		font-size: 20px;
		margin: 16px 0 0;
	}
}
@media (max-width: 768px) {
	.page-subtitle {
		font-size: 16px;
		margin: 30px 0 0;
	}
}
.page-description {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	text-align: left;
	margin: 32px 0 0;
}
.help {
	padding: 220px 0;
}
@media (max-width: 1880px) {
	.page-description {
		font-size: 16px;
		margin: 24px 0 0;
	}
	.help,
	.help.white.bg {
		padding: 200px 0;
	}
}
@media (max-width: 941px) {
	.hero__wrapper .btn--primary {
		margin-top: 40px;
	}
	.hero-header .hero-header__wrapper {
		padding: 115px 0 60px;
	}
	.help {
		padding: 120px 0;
	}
}
@media (max-width: 768px) {
	.page-description {
		font-size: 14px;
		margin: 20px 0 0;
	}
	.help {
		padding: 80px 0;
	}
	.help.white.bg .help__pagination .swiper-pagination-bullet {
		background: #fff;
		opacity: 0.8;
	}
	.help.white.bg
		.help__pagination
		.swiper-pagination-bullet
		.swiper-pagination-bullet-active {
		opacity: 1;
	}
}
.help.white.bg .help__pagination {
	position: relative;
	bottom: 0;
	top: auto;
	margin-bottom: 30px;
}
.help__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	list-style: none;
	margin: 60px 0;
	padding-left: 0;
}
@media (max-width: 941px) {
	.help.white.bg {
		padding: 130px 0;
	}
	.help__list {
		gap: 10px;
	}
}
.help__list .help__item {
	padding: 20px;
	border-radius: 8px;
	background: #dbe9f5;
}
@media (max-width: 768px) {
	.help__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 0;
		max-width: 100%;
		margin: 30px 0;
	}
	.help__list .swiper-wrapper {
		width: 100%;
		max-width: 100%;
	}
	.help__list .help__item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
		max-width: 100%;
	}
}
.help__list .help__item .help__item__image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 6px;
	background: #f1f9ff;
}
.help__list .help__item h3 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	padding: 0 0 24px;
	margin: 24px 0 64px;
	border-bottom: 1px solid #c2d3e5;
}
@media (max-width: 1880px) {
	.help__list .help__item h3 {
		font-size: 22px;
		padding: 0 0 20px;
		margin: 20px 0 36px;
	}
}
@media (max-width: 941px) {
	.help__list .help__item h3 {
		font-size: 20px;
		padding: 0;
		border-bottom: 0;
		margin: 20px 0 12px;
	}
}
@media (max-width: 768px) {
	.help__list .help__item .help__item__image {
		width: 56px;
		height: 56px;
	}
	.help__list .help__item .help__item__image img {
		width: 30px;
		height: 30px;
	}
	.help__list .help__item h3 {
		font-size: 18px;
	}
}
.help__list .help__item p {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	max-width: 415px;
	margin: 0;
}
@media (max-width: 1880px) {
	.help__list .help__item p {
		font-size: 16px;
	}
}
.white,
.white .mark-section,
.white .section-title {
	color: #fff;
}
.help.bg {
	background-position: center center;
	background-size: cover;
	padding: 200px 0;
}
.help.bg .help__item {
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.1);
}
.help.bg .help__item .help__item__image {
	background: rgba(18, 144, 234, 0.32);
	backdrop-filter: blur(12px) saturate(120%);
	-webkit-backdrop-filter: blur(12px) saturate(120%);
}
.help.bg .help__item h3 {
	border-color: rgba(255, 255, 255, 0.2);
	margin-bottom: 24px;
}
.help.bg .help__item h3,
.help.bg .help__item p {
	color: #fff;
	opacity: 0.8;
}
.help.bg .help__item .apply {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
	color: var(--White, #fff);
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 18px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin-top: 75px;
}
.testimonials {
	padding: 220px 0;
}
@media (max-width: 941px) {
	.help.bg .help__item .apply {
		font-size: 16px;
	}
	.testimonials {
		padding: 100px 0;
	}
}
@media (max-width: 768px) {
	.help__list .help__item p {
		font-size: 14px;
	}
	.help.bg .help__item h3 {
		width: 100%;
		display: block;
		margin: 24px 0;
		padding: 0 0 24px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
	.help.bg .help__item .apply {
		margin-top: 40px;
	}
	.testimonials {
		padding: 80px 0;
	}
}
.testimonials-swiper {
	margin-top: 80px;
	padding-bottom: 80px;
}
@media (max-width: 941px) {
	.testimonials-swiper {
		margin-top: 60px;
		padding-bottom: 60px;
	}
}
@media (max-width: 768px) {
	.testimonials-swiper {
		margin-top: 30px;
		padding-bottom: 50px;
	}
}
.testimonial {
	padding: 42px 42px 80px;
	border-radius: 6px;
	background: #dbe9f5;
}
@media (max-width: 941px) {
	.testimonial {
		padding: 32px 32px 60px;
	}
}
.testimonial .testimonial__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	max-width: 266px;
}
.testimonial .testimonial__header .testimonial__header__image {
	width: 86px;
	height: 86px;
	border-radius: 6px;
	background: #fff;
	padding: 8px;
}
.testimonial .testimonial__header .testimonial__header__image img {
	border-radius: 6px;
}
.testimonial .testimonial__header .testimonial__header__author h3 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 0;
}
@media (max-width: 941px) {
	.testimonial .testimonial__header .testimonial__header__author h3 {
		font-size: 18px;
	}
}
.testimonial .testimonial__header .testimonial__header__author p {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 8px 0 0;
}
.testimonial .testimonial__content {
	margin-top: 48px;
}
@media (max-width: 941px) {
	.testimonial .testimonial__content {
		margin-top: 36px;
	}
}
.testimonial .testimonial__content p {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -2%;
	margin: 0;
}
@media (max-width: 941px) {
	.testimonial .testimonial__content p {
		font-size: 20px;
	}
}
@media (max-width: 768px) {
	.testimonial {
		padding: 20px 20px 80px;
	}
	.testimonial .testimonial__header .testimonial__header__author h3 {
		font-size: 16px;
	}
	.testimonial .testimonial__header .testimonial__header__author p {
		font-size: 14px;
	}
	.testimonial .testimonial__content {
		margin-top: 32px;
	}
	.testimonial .testimonial__content p {
		font-size: 16px;
	}
}
.swiper-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 24px;
}
.swiper-pagination .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	margin: 0 !important;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 12px;
	height: 12px;
}
.steps {
	padding: 220px 0;
}
@media (max-width: 941px) {
	.steps {
		padding: 110px 0;
	}
}
@media (max-width: 768px) {
	.steps {
		padding: 80px 0;
	}
}
.steps__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 60px 0 0;
	padding-left: 0;
	list-style: none;
}
@media (max-width: 941px) {
	.steps__list {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		margin: 45px 0 0;
	}
}
.steps__list .steps__item {
	border: 1px solid #d4e2f1;
	border-radius: 8px;
	background: var(--BlueLight4, #e8f3fc);
	padding: 32px 24px 40px;
}
.steps__list .steps__item.link__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 6px;
	background: #1290ea;
}
.steps__list .steps__item.link__item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 18px;
	color: #fff;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
}
.steps__list .steps__item h3 {
	display: block;
	width: 100%;
	position: relative;
	color: #1290ea;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 86px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 0;
}
.steps__list .steps__item h3::after {
	content: '';
	background: #e8f3fc;
	border-top: 1px solid #d4e2f1;
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 15px;
}
@media (max-width: 941px) {
	.steps__list .steps__item {
		padding: 24px 20px 40px;
	}
	.steps__list .steps__item.link__item a {
		font-size: 16px;
	}
	.steps__list .steps__item h3 {
		font-size: 64px;
	}
	.steps__list .steps__item h3::after {
		height: 11px;
	}
}
.steps__list .steps__item .steps__content h2 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 41px 0 0;
}
@media (max-width: 941px) {
	.steps__list .steps__item .steps__content h2 {
		font-size: 20px;
		margin: 20px 0 0;
	}
}
@media (max-width: 768px) {
	.steps__list {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		margin: 30px 0 0;
	}
	.steps__list .steps__item.link__item {
		padding: 24px;
	}
	.steps__list .steps__item.link__item img,
	.steps__list .steps__item.link__item svg {
		display: none;
	}
	.steps__list .steps__item h3 {
		font-size: 48px;
	}
	.steps__list .steps__item h3::after {
		height: 6px;
	}
	.steps__list .steps__item .steps__content h2 {
		font-size: 18px;
		margin: 14px 0 0;
	}
}
.steps__list .steps__item .steps__content p {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 12px 0 0;
}
.mortgages {
	padding: 200px 0;
	background: #e8f3fc;
}
.mortgages__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 250px;
	margin-top: 120px;
}
@media (max-width: 941px) {
	.steps__list .steps__item .steps__content p {
		font-size: 16px;
	}
	.mortgages__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}
.mortgages__content .mark {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
.mortgages__content .mark p {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -2%;
	margin: 0;
	max-width: 582px;
}
.mortgages__content .mortgages__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 80px;
	padding-left: 0;
	margin: 0;
	list-style: none;
}
@media (max-width: 1880px) {
	.mortgages__content {
		gap: 50px;
		margin-top: 50px;
	}
	.mortgages__content .mortgages__list {
		gap: 40px 60px;
	}
}
.mortgages__content .mortgages__list li h3 {
	position: relative;
	color: var(--Black, #21282d);
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 0;
	padding-left: 20px;
}
.mortgages__content .mortgages__list li h3::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 100px;
	background: #1290ea;
}
.mortgages__content .mortgages__list li p {
	color: var(--Black, #21282d);
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 16px 0 0;
}
@media (max-width: 768px) {
	.mortgages {
		padding: 80px 0;
	}
	.mortgages__content .mark {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.mortgages__content .mark svg {
		max-height: 16px;
	}
	.mortgages__content .mark p,
	.mortgages__content .mortgages__list li h3 {
		font-size: 18px;
	}
	.mortgages__content .mortgages__list li p {
		font-size: 14px;
		margin: 12px 0 0;
	}
}
.faq__section {
	padding: 200px 0;
}
@media (max-width: 941px) {
	.mortgages__content .mortgages__list {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
	}
	.faq__section {
		padding: 120px 0;
	}
}
.faq__content {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
}
.faq__content .faq__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
@media (max-width: 768px) {
	.faq__section {
		padding: 80px 0;
	}
	.faq__content {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.faq__content .faq__left {
		gap: 24px;
		text-align: center;
	}
	.faq__content .faq__left .section__header {
		display: none;
	}
	.faq__content .faq__left .faq-socials {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.faq__content .faq__left .faq-description {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	margin-top: auto;
}
.faq-socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
}
.faq-socials .faq-social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	border: 1px solid #c2d3e5;
	border-radius: 50%;
	background: #e8f3fc;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.faq-socials .faq-social:hover {
	background: #1290ea;
}
.faq-socials .faq-social:hover svg path {
	stroke: #fff;
}
.faq-socials .faq-social svg {
	width: 36px;
	height: 36px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.faq-socials .faq-social svg path {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.faq__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.faq__list.mini {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	margin-top: 60px;
}
@media (max-width: 1880px) {
	.faq__list.mini {
		margin-top: 50px !important;
	}
}
@media (max-width: 941px) {
	.faq__list.mini {
		margin-top: 40px !important;
	}
}
.faq__list .faq__item {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	border: 1px solid #d4e2f1;
	border-radius: 6px;
	background: #e8f3fc;
	padding: 12px 12px 12px 24px;
}
@media (max-width: 768px) {
	.faq-socials {
		margin-top: 0;
	}
	.faq__list {
		gap: 10px;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.faq__list.mini {
		margin-top: 30px !important;
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
	}
	.faq__list .faq__item {
		padding: 12px;
	}
}
.faq__list .faq__item .faq__item__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.faq__list .faq__item .faq__item__header h3 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
}
@media (max-width: 1880px) {
	.faq__list .faq__item .faq__item__header h3 {
		font-size: 18px;
	}
}
@media (max-width: 941px) {
	.faq__list .faq__item .faq__item__header h3 {
		font-size: 16px;
	}
}
.faq__list .faq__item .faq__item__header .faq__item__icon__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 58px;
	max-height: 58px;
	min-width: 58px;
	min-height: 58px;
	width: 58px;
	height: 58px;
	border-radius: 6px;
	background: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.faq__list .faq__item .faq__item__content p {
	max-width: calc(100% - 100px);
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
}
.faq__list .faq__item.active .faq__item__icon__wrapper {
	background: #1290ea;
}
.faq-mini-list {
	padding: 220px 0;
}
@media (max-width: 1880px) {
	.faq__list .faq__item .faq__item__content p {
		font-size: 16px;
	}
	.faq-mini-list {
		padding: 180px 0;
	}
}
@media (max-width: 941px) {
	.faq__list .faq__item .faq__item__content p {
		font-size: 14px;
	}
	.faq-mini-list {
		padding: 120px 0;
	}
}
.section__header.mobile {
	display: none;
}
@media (max-width: 768px) {
	.faq-mini-list {
		padding: 80px 0;
	}
	.section__header.mobile {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
		-webkit-box-ordinal-group: -1;
		-ms-flex-order: -2;
		order: -2;
	}
	.section__header.mobile .section-title {
		width: 100%;
		text-align: center;
	}
	.section__header.mobile .section-title br {
		display: none;
	}
}
.cta {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 100vh;
}
.cta__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 100vh;
}
.cta__wrapper h2 {
	color: #fff;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 104px;
	font-weight: 500;
	line-height: 90%;
	letter-spacing: -4%;
	text-align: center;
	margin: 0;
}
.cta__wrapper .btn--primary {
	margin-top: 52px;
}
.services__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 60px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.services__list .services__list__item {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
	padding-top: 60px;
	border-top: 1px solid #c2d3e5;
}
.services__list .services__list__item:last-child {
	padding-bottom: 60px;
	border-bottom: 1px solid #c2d3e5;
}
.services__list .services__list__item > img {
	border-radius: 8px;
	height: 100%;
}
.services__list .services__list__item .services__list__item__content h2 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: SemiBold;
	font-size: 40px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -4%;
	margin: 0;
}
.services__list .services__list__item .services__list__item__content ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	margin: 50px 0 60px;
	padding: 0;
	list-style: none;
}
@media (max-width: 1880px) {
	.cta__wrapper h2 {
		font-size: 72px;
	}
	.services__list .services__list__item .services__list__item__content h2 {
		font-size: 32px;
	}
	.services__list .services__list__item .services__list__item__content ul {
		gap: 12px;
		margin: 30px 0 40px;
	}
}
.services__list .services__list__item .services__list__item__content ul li {
	position: relative;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	padding-left: 16px;
}
.services__list
	.services__list__item
	.services__list__item__content
	ul
	li::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: #1290ea;
	border-radius: 100px;
}
.additional-services {
	padding: 200px 0;
}
@media (max-width: 941px) {
	.services__list .services__list__item {
		gap: 24px;
	}
	.additional-services {
		padding: 120px 0;
	}
}
@media (max-width: 768px) {
	.cta__wrapper h2 {
		font-size: 32px;
	}
	.cta__wrapper .btn--primary {
		margin-top: 30px;
	}
	.services__list {
		gap: 30px;
	}
	.services__list .services__list__item {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		padding-top: 30px;
	}
	.services__list .services__list__item .services__list__item__content h2 {
		font-size: 20px;
	}
	.services__list
		.services__list__item
		.services__list__item__content
		.btn--primary {
		width: 100%;
	}
	.services__list .services__list__item .services__list__item__content ul {
		margin: 20px 0 30px;
	}
	.services__list .services__list__item .services__list__item__content ul li {
		font-size: 14px;
	}
	.additional-services {
		padding: 80px 0;
	}
	.additional-services .help__pagination {
		position: relative;
		margin-bottom: 30px;
	}
}
.additional-services .help__list {
	margin-top: 80px;
}
.additional-services .help__item {
	padding: 20px 20px 34px;
}
.additional-services .help__item h3 {
	margin: 24px 0 40px;
}
.additional-services .help__item h4 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 18px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 0 0 16px;
}
.additional-services .help__item .apply {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	color: #1290ea;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 18px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin-top: 60px;
}
.additional-services .help__item .apply .apply__wrapper {
	height: 20px;
}
.additional-services.additional-services-transfer {
	background: #e8f3fc;
}
.additional-services.additional-services-transfer .help__list {
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
}
.additional-services.additional-services-transfer .help__list .help__item p {
	max-width: 555px;
}
.how-it-works {
	background: #e8f3fc;
	padding: 200px 0;
}
@media (max-width: 941px) {
	.how-it-works {
		padding: 120px 0;
	}
}
@media (max-width: 768px) {
	.additional-services .help__list {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.how-it-works {
		padding: 80px 0;
	}
	.how-it-works .block__btn,
	.how-it-works .block__btn .btn--primary {
		width: 100%;
	}
}
.how-it-works .steps__list {
	-ms-grid-columns: (1fr) [4];
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 60px;
}
@media (max-width: 941px) {
	.how-it-works .steps__list {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
		margin-bottom: 50px;
	}
}
.how-it-works .steps__list .steps__item {
	background: #f1f9ff;
}
.how-it-works .steps__list .steps__item h2 {
	margin: 20px 0 0;
}
.how-it-works .steps__list .steps__item h3::after {
	background: #f1f9ff;
}
.text-block {
	padding: 220px 0;
}
.text-block .text-block__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 40px;
}
@media (max-width: 1880px) {
	.text-block {
		padding: 180px 0;
	}
	.text-block .text-block__content {
		gap: 32px;
	}
}
@media (max-width: 941px) {
	.text-block {
		padding: 120px 0;
	}
	.text-block .text-block__content {
		gap: 20px;
	}
}
.text-block .text-block__content img {
	max-width: 80vw;
}
.text-block .text-block__content h2 {
	max-width: 1100px;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: SemiBold;
	font-size: 56px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -4%;
	text-align: center;
	margin: 0 auto;
}
.text-block .text-block__content h2 span.blue {
	color: #1290ea;
}
@media (max-width: 1880px) {
	.text-block .text-block__content h2 {
		font-size: 42px;
	}
}
@media (max-width: 941px) {
	.text-block .text-block__content h2 {
		font-size: 32px;
	}
}
@media (max-width: 768px) {
	.how-it-works .steps__list {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		margin-bottom: 30px;
	}
	.text-block .text-block__content {
		gap: 10px;
	}
	.text-block .text-block__content h2 {
		font-size: 20px;
	}
}
.text-block .text-block__content h3 {
	color: #1290ea;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 72px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -4%;
	text-align: center;
	margin: 0;
}
@media (max-width: 1880px) {
	.text-block .text-block__content h3 {
		font-size: 64px;
	}
}
@media (max-width: 941px) {
	.text-block .text-block__content h3 {
		font-size: 32px;
	}
}
@media (max-width: 768px) {
	.text-block .text-block__content h3 {
		font-size: 24px;
	}
}
.text-block .text-block__content p {
	max-width: 435px;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -2%;
	text-align: center;
	margin: 10px auto;
}
.improvements {
	padding: 200px 0;
	background-color: #e8f3fc;
}
@media (max-width: 941px) {
	.text-block .text-block__content p {
		font-size: 16px;
	}
	.improvements {
		padding: 120px 0;
	}
}
@media (max-width: 768px) {
	.improvements {
		padding: 80px 0;
	}
}
.improvements__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [4];
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding-left: 0;
	margin: 80px 0 0;
	list-style: none;
}
@media (max-width: 941px) {
	.improvements__list {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
		margin: 50px 0 0;
	}
}
.improvements__list .improvements__list__item {
	padding: 20px 20px 30px;
	border-radius: 8px;
	background: #dbe9f5;
}
.improvements__list .improvements__list__item .improvements__list__item__image {
	max-width: 72px;
	min-width: 72px;
	width: 72px;
	max-height: 72px;
	min-height: 72px;
	height: 72px;
	border-radius: 6px;
	background: #f1f9ff;
	padding: 15px;
}
.improvements__list .improvements__list__item .improvements__list__item__title {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	text-align: left;
	margin: 24px 0;
}
@media (max-width: 1880px) {
	.improvements__list {
		gap: 10px;
	}
	.improvements__list
		.improvements__list__item
		.improvements__list__item__title {
		font-size: 22px;
	}
}
@media (max-width: 941px) {
	.improvements__list
		.improvements__list__item
		.improvements__list__item__title {
		font-size: 20px;
	}
}
@media (max-width: 768px) {
	.improvements__list {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		margin: 30px 0 0;
	}
	.improvements__list
		.improvements__list__item
		.improvements__list__item__image {
		max-width: 52px;
		min-width: 52px;
		width: 52px;
		max-height: 52px;
		min-height: 52px;
		height: 52px;
		padding: 11px;
	}
	.improvements__list
		.improvements__list__item
		.improvements__list__item__image
		img,
	.improvements__list
		.improvements__list__item
		.improvements__list__item__image
		svg {
		max-width: 30px;
		min-width: 30px;
		width: 30px;
		max-height: 30px;
		min-height: 30px;
		height: 30px;
	}
	.improvements__list
		.improvements__list__item
		.improvements__list__item__title {
		font-size: 18px;
		margin: 20px 0;
	}
}
.improvements__list
	.improvements__list__item
	.improvements__list__item__paragraph {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	text-align: left;
	margin: 0;
	padding-top: 24px;
	border-top: 1px solid #c2d3e5;
}
.about {
	padding: 200px 0;
	background: #e8f3fc;
}
@media (max-width: 941px) {
	.about {
		padding: 120px 0;
	}
}
.about__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: 150px;
	margin-top: 60px;
}
@media (max-width: 1880px) {
	.improvements__list
		.improvements__list__item
		.improvements__list__item__paragraph {
		font-size: 16px;
		padding-top: 20px;
	}
	.about__wrapper {
		gap: 100px;
	}
}
@media (max-width: 941px) {
	.about__wrapper {
		gap: 80px;
	}
}
@media (max-width: 768px) {
	.about {
		padding: 80px 0;
	}
	.about__wrapper {
		gap: 20px;
		margin-top: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.about__wrapper .about__image {
	-webkit-box-flex: 2;
	-ms-flex: 2;
	flex: 2;
}
.about__wrapper .about__image img {
	height: 630px;
	border-radius: 8px;
}
@media (max-width: 941px) {
	.about__wrapper .about__image img {
		width: 100%;
		height: 430px;
	}
}
.about__wrapper .about__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 3;
	-ms-flex: 3;
	flex: 3;
}
@media (max-width: 941px) {
	.about__wrapper .about__content .btn--primary {
		width: 100%;
	}
}
.about__wrapper h3 {
	max-width: 587px;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: SemiBold;
	font-size: 40px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -4%;
	margin: 0;
}
@media (max-width: 1880px) {
	.about__wrapper h3 {
		font-size: 32px;
	}
}
@media (max-width: 941px) {
	.about__wrapper h3 {
		font-size: 28px;
	}
}
@media (max-width: 768px) {
	.about__wrapper .about__image img {
		height: 290px;
	}
	.about__wrapper h3 {
		font-size: 24px;
	}
}
.about__wrapper h4 {
	max-width: 587px;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 32px;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -2%;
	margin: auto 0 40px;
}
@media (max-width: 1880px) {
	.about__wrapper h4 {
		font-size: 26px;
	}
}
@media (max-width: 941px) {
	.about__wrapper h4 {
		font-size: 20px;
	}
}
@media (max-width: 768px) {
	.about__wrapper h4 {
		font-size: 18px;
		margin: auto 0 30px;
	}
}
.about__wrapper p {
	max-width: 587px;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -2%;
	margin: 32px 0 0;
}
.help-center {
	padding-bottom: 220px;
}
@media (max-width: 1880px) {
	.about__wrapper p {
		font-size: 16px;
		margin: 20px 0;
	}
	.help-center {
		padding-bottom: 180px;
	}
}
@media (max-width: 941px) {
	.help-center {
		padding-bottom: 120px;
	}
}
@media (max-width: 768px) {
	.help-center {
		padding-bottom: 80px;
	}
}
.help-center-input {
	width: 100%;
	padding: 32px;
	border: 1px solid #d4e2f1;
	border-radius: 6px;
	background: #fff;
	margin: 80px 0 0;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
}
.help-center-input::-webkit-input-placeholder {
	color: #8d98a5;
}
.help-center-input::-moz-placeholder {
	color: #8d98a5;
}
.help-center-input:-ms-input-placeholder {
	color: #8d98a5;
}
.help-center-input::-ms-input-placeholder {
	color: #8d98a5;
}
.help-center-input::placeholder {
	color: #8d98a5;
}
.help-center-input:focus {
	border-color: #7a8796;
	outline: 0;
}
@media (max-width: 941px) {
	.help-center-input {
		padding: 22px 20px;
		margin: 40px 0 0;
		font-size: 16px;
	}
}
.help-center__filters {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 40px 0 0;
}
.help-center__filters .help-center__filter {
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	padding: 16px 24px;
	border: 1px solid #c2d3e5;
	border-radius: 50px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.help-center__filters .help-center__filter:hover {
	background-color: #fff;
	color: #21282d;
}
.help-center__filters .help-center__filter.active {
	background: #1290ea;
	color: #fff;
}
@media (max-width: 1880px) {
	.help-center__filters .help-center__filter {
		font-size: 16px;
		padding: 14px 20px;
	}
}
.help-center__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 120px;
}
@media (max-width: 941px) {
	.help-center__filters .help-center__filter {
		font-size: 14px;
		padding: 10px;
	}
	.help-center__list {
		gap: 80px;
	}
}
.help-center__list .help-center__list__item {
	padding-top: 36px;
}
.help-center__list
	.help-center__list__item:not(
		.help-center__list.help-center__list__item:first-child
	) {
	border-top: 1px solid #d4e2f1;
}
.help-center__list .help-center__list-title {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 32px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 0;
}
.help-center__list .help-center__list-title .blue {
	color: #1290ea;
}
@media (max-width: 1880px) {
	.help-center__list .help-center__list-title {
		font-size: 26px;
	}
}
@media (max-width: 941px) {
	.help-center__list .help-center__list-title {
		font-size: 24px;
	}
}
.help-center__list .faq__list.mini {
	margin-top: 40px;
}
.blog {
	padding-bottom: 120px;
}
@media (max-width: 941px) {
	.blog {
		padding-bottom: 100px;
	}
}
@media (max-width: 768px) {
	.help-center__filters {
		margin: 20px 0 0;
	}
	.help-center__list {
		gap: 60px;
	}
	.help-center__list .help-center__list__item {
		padding-top: 30px;
	}
	.help-center__list .help-center__list-title {
		font-size: 20px;
	}
	.blog {
		padding-bottom: 60px;
	}
}
.blog .hero-header__wrapper {
	padding: 148px 0 60px;
}
@media (max-width: 1880px) {
	.blog .hero-header__wrapper {
		padding: 120px 0 40px;
	}
}
.blog__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
	gap: 80px 20px;
	margin: 60px 0 0;
	list-style: none;
	padding: 0;
}
@media (max-width: 941px) {
	.blog .hero-header__wrapper {
		padding: 120px 0 30px;
	}
	.blog__list {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
		margin: 40px 0 0;
	}
}
.blog__list .blog__list__item .blog__list__item-image__wrapper {
	width: 100%;
	height: 400px;
	overflow: hidden;
	border-radius: 6px;
}
@media (max-width: 1880px) {
	.blog__list .blog__list__item .blog__list__item-image__wrapper {
		height: 360px;
	}
}
@media (max-width: 941px) {
	.blog__list .blog__list__item .blog__list__item-image__wrapper {
		height: 280px;
	}
}
.blog__list .blog__list__item .blog__list__item-image__wrapper img {
	width: 100%;
	height: 400px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
@media (max-width: 1880px) {
	.blog__list .blog__list__item .blog__list__item-image__wrapper img {
		height: 360px;
	}
}
@media (max-width: 941px) {
	.blog__list .blog__list__item .blog__list__item-image__wrapper img {
		height: 280px;
	}
}
@media (max-width: 768px) {
	.blog__list {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		margin: 30px 0 0;
		gap: 50px;
	}
	.blog__list .blog__list__item .blog__list__item-image__wrapper,
	.blog__list .blog__list__item .blog__list__item-image__wrapper img {
		height: 232px;
	}
}
.blog__list .blog__list__item .blog__list__item__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 20px;
}
.blog__list
	.blog__list__item
	.blog__list__item__info
	.blog__list__item-category {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -1%;
	padding: 11px 24px;
	border: 1px solid #c2d3e5;
	border-radius: 50px;
}
@media (max-width: 1880px) {
	.blog__list .blog__list__item .blog__list__item__info {
		margin-top: 14px;
	}
	.blog__list
		.blog__list__item
		.blog__list__item__info
		.blog__list__item-category {
		font-size: 14px;
		padding: 11px 20px;
	}
}
.blog__list .blog__list__item .blog__list__item__info .blog__list__item-date {
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -1%;
}
.blog__list .blog__list__item .blog__list__item-title {
	max-width: 70%;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -2%;
	margin: 20px 0 0;
	padding-top: 20px;
	border-top: 1px solid #d4e2f1;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.blog__list .blog__list__item .blog__list__item-title a {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -2%;
	margin: 20px 0 0;
	padding-top: 20px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.blog__list .blog__list__item:hover .blog__list__item-image__wrapper img {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
.blog__list .blog__list__item:hover .blog__list__item-title,
.blog__list .blog__list__item:hover .blog__list__item-title a {
	color: #1290ea;
}
.blog__pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 10px;
	margin-top: 120px;
}
.blog__pagination .blog__pagination-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 60px;
	min-width: 60px;
	width: 60px;
	max-height: 60px;
	min-height: 60px;
	height: 60px;
	padding: 10px 0;
	border: 1px solid #c2d3e5;
	border-radius: 6px;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 20px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
}
.blog__pagination .blog__pagination-item:hover {
	background-color: #fff;
}
.blog__pagination .blog__pagination-item.active {
	color: #fff;
	background: #1290ea;
}
@media (max-width: 941px) {
	.blog__pagination {
		margin-top: 60px;
	}
	.blog__pagination .blog__pagination-item {
		max-width: 50px;
		min-width: 50px;
		width: 50px;
		max-height: 50px;
		min-height: 50px;
		height: 50px;
		font-size: 16px;
	}
}
.article-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 28px;
	margin-top: 50px;
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
}

.article-info a {
	color: #8d98a5;
}

.article-info span {
	position: relative;
}
.article-info span:not(.article-info span:first-child)::after {
	content: '';
	position: absolute;
	left: -15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background: #1290ea;
	border-radius: 50%;
}
.article-page .hero-header__wrapper {
	padding: 148px 0 80px;
}
@media (max-width: 1880px) {
	.blog__list .blog__list__item .blog__list__item__info .blog__list__item-date {
		font-size: 14px;
	}
	.blog__list .blog__list__item .blog__list__item-title {
		max-width: 100%;
		font-size: 18px;
	}
	.article-page .hero-header__wrapper {
		padding: 138px 0 70px;
	}
}
@media (max-width: 941px) {
	.article-page .hero-header__wrapper {
		padding: 120px 0 60px;
	}
}
.article-page__wrapper__content {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	padding-top: 80px;
	gap: 60px;
}
.article-page__content h4 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 0;
}
@media (max-width: 1880px) {
	.article-page__content h4 {
		font-size: 20px;
	}
}
@media (max-width: 941px) {
	.article-page__content h4 {
		font-size: 18px;
	}
}
@media (max-width: 768px) {
	.article-page .hero-header__wrapper {
		padding: 120px 0 50px;
	}
	.article-page__wrapper__content {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		padding-top: 50px;
		gap: 50px;
	}
	.article-page__content {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.article-page__content h4 {
		font-size: 16px;
	}
}
.article-page__content h2 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: SemiBold;
	font-size: 40px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 0;
}
@media (max-width: 1880px) {
	.article-page__content h2 {
		font-size: 32px;
	}
}
@media (max-width: 941px) {
	.article-page__content h2 {
		font-size: 24px;
	}
}
@media (max-width: 768px) {
	.article-page__content h2 {
		font-size: 20px;
	}
}
.article-page__content h3 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 24px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 0;
}
@media (max-width: 1880px) {
	.article-page__content h3 {
		font-size: 20px;
	}
}
@media (max-width: 941px) {
	.article-page__content h3 {
		font-size: 18px;
	}
}
@media (max-width: 768px) {
	.article-page__content h3 {
		font-size: 16px;
	}
}
.article-page__content p {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 0;
}
.article-page__content ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.article-page__content ul li {
	position: relative;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	padding-left: 16px;
}
.article-page__content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	max-width: 6px;
	min-width: 6px;
	width: 6px;
	max-height: 6px;
	min-height: 6px;
	height: 6px;
	background-color: #1290ea;
}
.article-page__content h4 + h2 {
	margin-top: 80px;
}
@media (max-width: 1880px) {
	.article-page__content p {
		font-size: 16px;
	}
	.article-page__content h4 + h2 {
		margin-top: 70px;
	}
}
@media (max-width: 941px) {
	.article-page__content h4 + h2 {
		margin-top: 60px;
	}
}
@media (max-width: 768px) {
	.article-page__content p {
		font-size: 14px;
	}
	.article-page__content ul li {
		font-size: 16px;
	}
	.article-page__content h4 + h2 {
		margin-top: 50px;
	}
}
.article-page__content h2 + p {
	margin-top: 40px;
}
@media (max-width: 1880px) {
	.article-page__content h2 + p {
		margin-top: 32px;
	}
}
@media (max-width: 941px) {
	.article-page__content h2 + p {
		margin-top: 28px;
	}
}
@media (max-width: 768px) {
	.article-page__content h2 + p {
		margin-top: 24px;
	}
}
.article-page__content p + h2,
.article-page__content p + ul,
.article-page__content ul + p {
	margin-top: 40px;
}
@media (max-width: 1880px) {
	.article-page__content p + h2 {
		margin-top: 110px;
	}
}
@media (max-width: 941px) {
	.article-page__content p + h2 {
		margin-top: 100px;
	}
}
@media (max-width: 768px) {
	.article-page__content p + h2 {
		margin-top: 50px;
	}
}
.article-page__content h2 + h3,
.article-page__content p + h3 {
	margin-top: 36px;
}
.article-page__content h3 + p {
	margin-top: 20px;
}
.article-page__content .article-quote + h2 {
	margin-top: 120px;
}
@media (max-width: 1880px) {
	.article-page__content .article-quote + h2 {
		margin-top: 110px;
	}
}
@media (max-width: 941px) {
	.article-page__content .article-quote + h2 {
		margin-top: 100px;
	}
}
@media (max-width: 768px) {
	.article-page__content .article-quote + h2 {
		margin-top: 60px;
	}
}
.article-page__content .article-quote + h3 {
	margin-top: 80px;
}
.article-quote {
	margin-top: 48px;
}
@media (max-width: 941px) {
	.article-quote {
		margin-top: 38px;
	}
}
.article-quote .article-quote-text {
	color: var(--Black, #21282d);
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 32px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 20px 0 0;
}
@media (max-width: 1880px) {
	.article-quote .article-quote-text {
		font-size: 26px;
	}
}
@media (max-width: 941px) {
	.article-quote .article-quote-text {
		font-size: 20px;
	}
}
@media (max-width: 768px) {
	.article-page__content .article-quote + h3 {
		margin-top: 50px;
	}
	.article-quote {
		margin-top: 30px;
	}
	.article-quote .article-quote-text {
		font-size: 18px;
	}
}
.article-quote .article-quote-name {
	color: var(--Black, #21282d);
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 40px 0 0;
}
@media (max-width: 1880px) {
	.article-quote .article-quote-name {
		font-size: 18px;
	}
}
@media (max-width: 768px) {
	.article-quote .article-quote-name {
		font-size: 16px;
		margin: 30px 0 0;
	}
}
.article-quote .article-quote-position {
	color: var(--Grey1, #8d98a5);
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0;
	text-align: left;
	text-transform: uppercase;
	margin: 6px 0 0;
}
.blog__index li {
	counter-increment: item;
}
.blog__index li::before {
	content: counters(item, '.') '. ';
}
.blog__index {
	border-radius: 12px;
	background: #dbe9f5;
	padding: 60px;
}
.blog__index h3 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 32px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 0;
}
.blog__index ol {
	counter-reset: item;
	list-style: none;
	padding-left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	margin: 32px 0 0;
}
.blog__index ol li {
	color: var(--Black, #21282d);
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 20px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.blog__index ol li:hover > a {
	color: #1290ea;
}
.blog__index ol li a {
	color: var(--Black, #21282d);
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 20px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
@media (max-width: 1880px) {
	.blog__index {
		padding: 60px 40px;
	}
	.blog__index h3 {
		font-size: 26px;
	}
	.blog__index ol {
		margin: 24px 0 0;
	}
	.blog__index ol li {
		font-size: 14px;
	}
	.blog__index ol li a {
		font-size: 14px;
	}
}
.blog__index ol li ol {
	margin-top: 16px;
	padding-left: 20px;
}
.article-page__sticky {
	position: sticky;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	max-width: 587px;
	margin-left: auto;
}
@media (max-width: 768px) {
	.article-quote .article-quote-position {
		font-size: 10px;
	}
	.blog__index {
		width: 100%;
		padding: 20px;
	}
	.blog__index h3 {
		font-size: 20px;
	}
	.blog__index ol {
		margin: 20px 0 0;
	}
	.article-page__sticky {
		position: relative;
		max-width: 100%;
	}
	.get-touch {
		display: none;
	}
}
.get-touch {
	padding: 60px;
	border-radius: 12px;
	background: #dbe9f5;
}
.get-touch h3 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 32px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	text-align: center;
	margin: 0;
}
.get-touch p {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 20px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	text-align: center;
	margin: 20px 0 0;
}
.get-touch .get-touch__btns {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 42px;
}
.get-touch .get-touch__btns .btn--quick {
	color: #fff;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 18px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 20px 30px;
	border-radius: 6px;
	background: #1290ea;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.get-touch .get-touch__btns .btn--quick:hover {
	background-color: #0a80d4;
}
@media (max-width: 1880px) {
	.get-touch {
		padding: 60px 40px;
	}
	.get-touch .get-touch__btns .btn--quick {
		font-size: 16px;
		padding: 18px 20px;
	}
}
.get-touch .get-touch__btns .btn--request {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #1290ea;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 18px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	text-align: left;
	border: 1px solid #c2d3e5;
	border-radius: 6px;
	background: #e8f3fc;
	padding: 20px 30px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.get-touch .get-touch__btns .btn--request:hover {
	color: #fff;
	background-color: #0a80d4;
}
@media (max-width: 1880px) {
	.get-touch .get-touch__btns .btn--request {
		font-size: 16px;
		padding: 18px 20px;
	}
}
.get-touch__socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 42px;
}
.get-touch__socials .get-touch__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 60px;
	min-height: 60px;
	width: 60px;
	max-height: 60px;
	min-height: 60px;
	height: 60px;
	border-radius: 100%;
	border: 1px solid #c2d3e5;
	background: var(--BlueLight4, #e8f3fc);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.get-touch__socials .get-touch__social svg,
.get-touch__socials .get-touch__social svg path {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.get-touch__socials .get-touch__social:hover svg,
.get-touch__socials .get-touch__social:hover svg path {
	stroke: #fff;
}
.get-touch__socials .get-touch__social:hover {
	background-color: #1290ea;
}
.contacts-page .hero-header .hero-header__wrapper {
	padding: 148px 0 80px;
}
.best-way {
	padding-top: 80px;
}
.best-way__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 50px;
}
.best-way__grid .best-way__col {
	padding: 48px 32px;
	border-radius: 6px;
	background: #dbe9f5;
}
.best-way__grid .best-way__col h3 {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 0;
	padding-bottom: 24px;
	border-bottom: 1px solid #bec6cf;
}
@media (max-width: 1880px) {
	.contacts-page .hero-header .hero-header__wrapper {
		padding: 138px 0 60px;
	}
	.best-way {
		padding-top: 70px;
	}
	.best-way__grid {
		gap: 10px;
	}
	.best-way__grid .best-way__col h3 {
		font-size: 22px;
	}
}
@media (max-width: 941px) {
	.contacts-page .hero-header .hero-header__wrapper {
		padding: 128px 0 50px;
	}
	.best-way {
		padding-top: 57px;
	}
	.best-way__grid {
		margin-top: 30px;
	}
	.best-way__grid .best-way__col h3 {
		font-size: 20px;
	}
}
@media (max-width: 768px) {
	.best-way__grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.best-way__grid .best-way__col h3 {
		font-size: 18px;
	}
}
.best-way__grid .best-way__col p {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 48px 0;
}
@media (max-width: 1880px) {
	.best-way__grid .best-way__col p {
		font-size: 16px;
	}
	.best-way__grid .best-way__col {
		padding: 42px 30px;
	}
}
.best-way__grid .best-way__col .best-way__col__contact {
	margin-top: 48px;
}
.best-way__grid .best-way__col .best-way__col__contact h4 {
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 0;
}
.best-way__grid .best-way__col .best-way__col__contact a {
	display: block;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 18px;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 10px 0 0;
}
.contact-form__section {
	padding: 200px 0;
}
@media (max-width: 941px) {
	.best-way__grid .best-way__col {
		padding: 30px 20px;
	}
	.contact-form__section {
		padding: 120px 0;
	}
}
@media (max-width: 768px) {
	.best-way__grid .best-way__col p {
		font-size: 14px;
		margin: 30px 0;
	}
	.contact-form__section {
		padding: 80px 0;
	}
}
.contact-form__contact {
	padding-top: 90px;
	border-radius: 12px;
	font-family: sans-serif;
}
.contact-form__contact input,
.contact-form__contact select,
.contact-form__contact textarea {
	width: 100%;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	padding: 24px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #d4e2f1;
	border-radius: 6px;
	background: var(--White, #fff);
}
@media (max-width: 1880px) {
	.contact-form__contact input,
	.contact-form__contact select,
	.contact-form__contact textarea {
		font-size: 16px;
	}
}
.contact-form__contact input::-webkit-input-placeholder,
.contact-form__contact textarea::-webkit-input-placeholder {
	color: #8d98a5;
}
.contact-form__contact input::-moz-placeholder,
.contact-form__contact textarea::-moz-placeholder {
	color: #8d98a5;
}
.contact-form__contact input:-ms-input-placeholder,
.contact-form__contact textarea:-ms-input-placeholder {
	color: #8d98a5;
}
.contact-form__contact input::-ms-input-placeholder,
.contact-form__contact textarea::-ms-input-placeholder {
	color: #8d98a5;
}
.contact-form__contact input::placeholder,
.contact-form__contact textarea::placeholder {
	color: #8d98a5;
}
.contact-form__contact select {
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	cursor: pointer;
	color: #999;
}
.contact-form__contact select.chosen {
	color: #333;
}
.contact-form__contact textarea {
	resize: none;
	height: 162px;
}
.contact-form__contact input:focus,
.contact-form__contact select:focus,
.contact-form__contact textarea:focus {
	border-color: #4a9fd4;
	-webkit-box-shadow: 0 0 0 2px rgba(74, 159, 212, 0.15);
	box-shadow: 0 0 0 2px rgba(74, 159, 212, 0.15);
}
.contact-form__contact .cf-row {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media (max-width: 768px) {
	.contact-form__contact .cf-row {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 0;
	}
}
.contact-form__contact .cf-field {
	margin-bottom: 40px;
}
.contact-form__contact label {
	display: block;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 0 0 12px;
}
@media (max-width: 1880px) {
	.contact-form__contact label {
		font-size: 16px;
	}
}
.contact-form__contact .cf-send {
	background: #2d8fd4;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
}
.contact-form__contact .cf-send:hover {
	background: #2480c2;
}
.contact-form__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 941px) {
	.contact-form__contact {
		padding-top: 50px;
	}
	.contact-form__contact .btn--primary {
		width: 100%;
	}
	.contact-form__contact .cf-field {
		margin-bottom: 30px;
	}
	.contact-form__contact label {
		font-size: 14px;
	}
	.contact-form__grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.contact-form__data .contact-form__data-description {
		display: none;
	}
}
.contact-form__data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.contact-form__data .contact-form__data-description {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	margin: auto 0 24px;
}
.contact-form__data .contact-form__data-bottom-p {
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 24px 0 0;
}
*,
::after,
::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.calculator-section {
	padding-bottom: 220px;
}
@media (max-width: 1880px) {
	.calculator-section {
		padding-bottom: 180px;
	}
}
@media (max-width: 941px) {
	.contact-form__data .contact-form__data-bottom-p,
	.contact-form__data .faq-socials {
		display: none;
	}
	.calculator-section {
		padding-bottom: 120px;
	}
}
.tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 9px;
	margin-bottom: 40px;
}
@media (max-width: 768px) {
	.calculator-section {
		padding-bottom: 80px;
	}
	.tabs {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
	}
}
.tab-btn {
	padding: 20px 48px;
	border-radius: 10px;
	border: none;
	background: #dbe9f5;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
}
@media (max-width: 1880px) {
	.tab-btn {
		font-size: 18px;
		padding: 20px 36px;
	}
}
@media (max-width: 768px) {
	.tab-btn {
		font-size: 16px;
	}
}
.tab-btn:hover {
	color: #fff;
	background: #1290ea;
}
.tab-btn.active {
	background: #1290ea;
	color: #fff;
	cursor: auto;
}
.tab-content {
	display: none;
}
.tab-content.active {
	display: block;
}
.card {
	background: var(--panel);
	border-radius: 18px;
	overflow: hidden;
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
	border: 1px solid #d4e2f1;
}
.card-left {
	padding: 110px 60px;
	border-right: 1px solid #d4e2f1;
	background-color: #e8f3fc;
}
@media (max-width: 941px) {
	.card {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.card-left {
		padding: 40px 20px 0;
	}
}
.card-right {
	background: #dbe9f5;
	padding: 60px 60px 110px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.field {
	margin-bottom: 48px;
}
@media (max-width: 941px) {
	.card-right {
		padding: 40px 0;
		background-color: #e8f3fc;
	}
	.field {
		margin-bottom: 30px;
	}
}
.field label {
	display: block;
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 18px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin-bottom: 12px;
}
.input-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: var(--input-bg);
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	padding: 0 14px;
	height: 66px;
	gap: 10px;
	-webkit-transition: border-color 0.2s;
	transition: border-color 0.2s;
}
.input-wrap:focus-within {
	border-color: var(--blue);
}
.input-wrap .prefix {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
@media (max-width: 1880px) {
	.field label,
	.input-wrap .prefix {
		font-size: 16px;
	}
}
.input-wrap .divider {
	width: 1px;
	height: 16px;
	background: var(--border);
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.input-wrap input {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border: none;
	outline: 0;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	background: 0 0;
}
.input-wrap input::-webkit-input-placeholder {
	color: #8d98a5;
}
.input-wrap input::-moz-placeholder {
	color: #8d98a5;
}
.input-wrap input:-ms-input-placeholder {
	color: #8d98a5;
}
.input-wrap input::-ms-input-placeholder {
	color: #8d98a5;
}
.input-wrap input::placeholder {
	color: #8d98a5;
}
@media (max-width: 1880px) {
	.input-wrap input {
		font-size: 16px;
	}
}
.input-wrap .suffix {
	color: var(--text-muted);
	font-size: 13.5px;
	font-weight: 500;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
select.styled {
	width: 100%;
	height: 66px;
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	background: var(--input-bg);
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	padding: 0 14px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a90a8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	outline: 0;
	cursor: pointer;
	-webkit-transition: border-color 0.2s;
	transition: border-color 0.2s;
}
select.styled:focus {
	border-color: var(--blue);
}
.chart-title {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 32px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	text-align: center;
	margin: 0 0 48px;
}
@media (max-width: 1880px) {
	.chart-title {
		font-size: 28px;
		margin: 0 0 42px;
	}
}
@media (max-width: 941px) {
	.chart-title {
		font-size: 20px;
		margin: 0 0 42px;
	}
	.donut-wrap {
		display: none;
	}
}
@media (max-width: 768px) {
	.chart-title {
		width: calc(100% - 40px);
		text-align: left;
		font-size: 14px;
		padding-bottom: 16px;
		margin: 0;
		border-bottom: 1px solid #bec6cf;
	}
}
.donut-wrap {
	position: relative;
	max-width: 400px;
	max-height: 400px;
	width: 100%;
	height: auto;
	margin-bottom: 32px;
}
.donut-wrap svg {
	width: 100%;
	height: 100%;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.donut-center {
	position: absolute;
	inset: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 2px;
	overflow: hidden;
}
.donut-amount {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 56px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -4%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	gap: 2px;
}
.donut-amount .shekel {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 56px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -4%;
}
.donut-amount .per {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 32px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -4%;
}
.legend {
	width: 100%;
	max-width: 440px;
}
.legend-item {
	width: 440px;
	height: 34px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 16px;
	padding: 0 0 16px;
	border-bottom: 1px solid #bec6cf;
	gap: 10px;
}
@media (max-width: 768px) {
	.legend-item {
		width: calc(100% - 40px);
		margin: 16px auto 0;
	}
}
.legend-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.legend-label {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
}
@media (max-width: 1880px) {
	.legend-label {
		font-size: 16px;
	}
}
@media (max-width: 768px) {
	.legend-label {
		font-size: 14px;
	}
}
.legend-val {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 18px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
}
@media (max-width: 1880px) {
	.legend-val {
		font-size: 16px;
	}
}
@media (max-width: 768px) {
	.legend-val {
		font-size: 14px;
	}
}
.ext-card {
	background: #e8f3fc;
	border-radius: 18px;
	padding: 110px 60px;
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
}
@media (max-width: 1880px) {
	.ext-card {
		padding: 80px 0;
	}
}
@media (max-width: 941px) {
	.legend-dot {
		display: none;
	}
	.ext-card {
		padding: 40px 0 0;
	}
}
.ext-top {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 32px;
}
.loan-block {
	border: 1px solid #d4e2f1;
	border-radius: 6px;
	background: #dbe9f5;
	padding: 24px 20px 10px;
	margin-bottom: 32px;
}
.loan-block-title {
	display: block;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: SemiBold;
	font-size: 20px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 0 0 8px;
}
.loan-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr 1fr 180px 40px;
	grid-template-columns: 1fr 1fr 1fr 180px 40px;
	gap: 20px;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
}
.loan-grid .field {
	margin-bottom: 0;
}
.monthly-pay {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	padding-bottom: 13px;
	white-space: nowrap;
}
.remove-btn {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	background: #f1f9ff;
	border: 0;
	color: #1290ea;
	font-size: 20px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	margin: 0 0 auto auto;
}
@media (max-width: 941px) {
	.remove-btn {
		display: none;
	}
}
.remove-btn:hover {
	border-color: #e74c3c;
	color: #e74c3c;
}
.add-loan-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin: 8px auto 32px;
	background: var(--input-bg);
	border: 1.5px solid var(--blue);
	color: var(--blue);
	border-radius: 10px;
	padding: 10px 22px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14.5px;
	font-weight: 600;
	cursor: pointer;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.add-loan-btn:hover {
	background: var(--blue);
	color: #fff;
}
.summary-section {
	border-top: 1px solid var(--border);
	padding-top: 28px;
}
.summary-title {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: SemiBold;
	font-size: 24px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -2%;
	margin-bottom: 24px;
}
.toggle-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 6px;
	margin-bottom: 48px;
}
@media (max-width: 941px) {
	.toggle-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.toggle-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 16px 24px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #c2d3e5;
	border-radius: 50px;
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	cursor: pointer;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
@media (max-width: 941px) {
	.toggle-btn {
		font-size: 14px;
		padding: 16px 20px;
	}
}
.toggle-btn.active,
.toggle-btn:hover {
	border-radius: 50px;
	background: var(--BlueDefault, #1290ea);
	color: #fff;
}
.summary-row {
	max-width: 415px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 0 12px;
	border-bottom: 1px solid #c2d3e5;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	margin-top: 22px;
}
@media (max-width: 1880px) {
	.summary-row {
		font-size: 16px;
	}
}
@media (max-width: 941px) {
	.summary-row {
		font-size: 14px;
	}
}
.summary-row:last-child {
	border-bottom: none;
}
.summary-row .val {
	font-weight: 600;
}
.radio-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.radio-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	font-size: 14.5px;
	cursor: pointer;
	color: var(--text);
}
.radio-label input[type='radio'] {
	accent-color: var(--blue);
	width: 16px;
	height: 16px;
}
.prop-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
}
.divider-line {
	border: none;
	border-top: 1px solid var(--border);
	margin: 24px 0;
}
.budget-result {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 6px;
}
.budget-amount {
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
}
.budget-note {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 22px;
}
.consultant-panel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	gap: 4px;
}
.consultant-panel h3 {
	font-family: 'DM Serif Display', serif;
	font-size: 26px;
	margin-bottom: 6px;
}
.consultant-panel p {
	font-size: 13.5px;
	color: var(--text-muted);
	margin-bottom: 20px;
}
.avatar-wrap {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	overflow: hidden;
	background: #c8daf0;
	margin-bottom: 14px;
}
.avatar-wrap img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.consultant-name {
	font-size: 16px;
	font-weight: 600;
}
.consultant-role {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 14px;
}
.consultant-phone {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 18px;
}
.contact-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.icon-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid var(--border);
	background: var(--input-bg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.icon-btn:hover {
	border-color: var(--blue);
}
.icon-btn svg {
	width: 20px;
	height: 20px;
	stroke: var(--blue);
}
.checkbox-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--text-muted);
	cursor: pointer;
	margin-bottom: 14px;
}
.checkbox-label input {
	accent-color: var(--blue);
	width: 15px;
	height: 15px;
}
@media (max-width: 900px) {
	.card,
	.ext-top,
	.loan-grid,
	.prop-grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}
.calculator-section .btn--primary {
	margin-bottom: 20px;
	border: 0;
}
.asked {
	width: 100%;
	padding: 220px 0;
	background: #e8f3fc;
}
@media (max-width: 1880px) {
	.asked {
		padding: 180px 0;
	}
}
@media (max-width: 941px) {
	.asked {
		padding: 120px 0;
	}
}
@media (max-width: 768px) {
	.asked {
		padding: 80px 0;
	}
}
.asked__main {
	background: var(--white);
	border-radius: 8px;
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
	overflow: hidden;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	min-height: 460px;
	position: relative;
}
@media (max-width: 941px) {
	.asked__main {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		padding: 20px;
	}
}
.wizard-left {
	padding: 56px 52px 48px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}
@media (max-width: 941px) {
	.wizard-left {
		padding: 40px 0;
	}
}
.wizard-right {
	background: #dbe9f5;
	padding: 48px 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	gap: 20px;
	position: relative;
	overflow: hidden;
	height: 800px;
}
.advisor-photo img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}
.advisor-name {
	font-size: 18px;
	color: var(--text-dark);
	position: relative;
	z-index: 1;
}
.advisor-title {
	font-size: 13px;
	color: var(--text-light);
	margin-top: 2px;
	position: relative;
	z-index: 1;
}
.advisor-phone {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-dark);
	position: relative;
	z-index: 1;
}
.step-title {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 32px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 0 0 40px;
}
@media (max-width: 1880px) {
	.wizard-right {
		height: 750px;
	}
	.step-title {
		font-size: 26px;
	}
}
@media (max-width: 941px) {
	.wizard-right {
		height: auto;
		border-radius: 8px;
	}
	.step-title {
		font-size: 22px;
	}
}
@media (max-width: 768px) {
	.step-title {
		font-size: 20px;
	}
}
.step-body {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.options-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.option-btn {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #d4e2f1;
	border-radius: 6px;
	background: #e8f3fc;
	padding: 32px;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	text-align: left;
	cursor: pointer;
}
@media (max-width: 1880px) {
	.option-btn {
		padding: 26px;
		font-size: 16px;
	}
}
@media (max-width: 941px) {
	.option-btn {
		padding: 24px 20px;
	}
}
.option-btn:hover {
	background: var(--option-hover);
	border-color: var(--border);
}
.option-btn.selected {
	background: var(--option-active);
	border-color: var(--option-border-active);
	color: var(--accent);
}
.option-btn.full-width {
	grid-column: 1/-1;
}
.step-select {
	width: 100%;
	padding: 32px;
	border: 1px solid #d4e2f1;
	border-radius: 6px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9ab0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
		right 14px center no-repeat #e8f3fc;
	color: var(--Black, #21282d);
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.step-select:focus {
	outline: 0;
	border-color: var(--accent);
}
.inputs-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 30px;
}
.inputs-grid.full {
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}
.input-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}
.input-label {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
}
@media (max-width: 1880px) {
	.input-label {
		font-size: 18px;
	}
}
@media (max-width: 941px) {
	.input-label {
		font-size: 16px;
	}
}
.step-input {
	padding: 32px;
	border: 1px solid #d4e2f1;
	border-radius: 6px;
	background: #fff;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
}
@media (max-width: 1880px) {
	.step-input {
		font-size: 16px;
	}
}
.step-input:focus {
	outline: 0;
	border-color: var(--accent);
}
.step-input::-webkit-input-placeholder {
	color: var(--text-light);
}
.step-input::-moz-placeholder {
	color: var(--text-light);
}
.step-input:-ms-input-placeholder {
	color: var(--text-light);
}
.step-input::-ms-input-placeholder {
	color: var(--text-light);
}
.step-input::placeholder {
	color: var(--text-light);
}
.price-row {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.price-field {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
}
.price-label {
	font-size: 12px;
	color: var(--text-light);
	font-weight: 500;
}
.price-input-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #d4e2f1;
	border-radius: 6px;
	background: #fff;
	overflow: hidden;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	color: var(--Grey1, #8d98a5);
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	padding: 32px;
}
.price-input-wrap:focus-within {
	border-color: var(--accent);
}
.price-input-wrap input {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border: none;
	background: 0 0;
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
}
.price-input-wrap input:focus {
	outline: 0;
}
.price-input-wrap input::-webkit-input-placeholder {
	color: var(--text-light);
}
.price-input-wrap input::-moz-placeholder {
	color: var(--text-light);
}
.price-input-wrap input:-ms-input-placeholder {
	color: var(--text-light);
}
.price-input-wrap input::-ms-input-placeholder {
	color: var(--text-light);
}
.price-input-wrap input::placeholder {
	color: var(--text-light);
}
.price-currency {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 12px;
	border-left: 1px solid var(--border);
	height: 100%;
	gap: 6px;
	font-size: 12px;
	color: var(--text-mid);
}
.currency-sep {
	color: var(--border);
}
.step-textarea {
	width: 100%;
	min-height: 258px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #d4e2f1;
	border-radius: 6px;
	background: #fff;
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	padding: 32px;
}
.step-textarea:focus {
	outline: 0;
	border-color: var(--accent);
}
.step-textarea::-webkit-input-placeholder {
	color: var(--text-light);
}
.step-textarea::-moz-placeholder {
	color: var(--text-light);
}
.step-textarea:-ms-input-placeholder {
	color: var(--text-light);
}
.step-textarea::-ms-input-placeholder {
	color: var(--text-light);
}
.step-textarea::placeholder {
	color: var(--text-light);
}
.wizard-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 32px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 12px;
}
.footer-note {
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	max-width: 400px;
	margin-top: auto;
}
.footer-note a {
	display: block;
	margin-top: 20px;
	color: #1290ea;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 16px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	text-decoration: none;
}
.footer-note a:hover {
	text-decoration: underline;
}
.btn-back {
	background: 0 0;
	border: none;
	color: #1290ea;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 18px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	padding: 0;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.btn-back:hover {
	color: var(--accent-hover);
}
.btn-back svg {
	width: 14px;
	height: 14px;
}
.btn-next,
.btn-submit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 21px;
	border-radius: 6px;
	background: var(--BlueDefault, #1290ea);
	padding: 26px 47px 26px 51px;
	color: var(--White, #fff);
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	border: 0;
}
.btn-next:hover,
.btn-submit:hover {
	background: var(--accent-hover);
	-webkit-transform: translateX(2px);
	-ms-transform: translateX(2px);
	transform: translateX(2px);
}
.btn-next svg,
.btn-submit svg {
	width: 14px;
	height: 14px;
}
.step-panel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	-webkit-animation: 0.28s cubic-bezier(0.4, 0, 0.2, 1) both stepIn;
	animation: 0.28s cubic-bezier(0.4, 0, 0.2, 1) both stepIn;
}
@-webkit-keyframes stepIn {
	from {
		opacity: 0;
		-webkit-transform: translateX(18px);
		transform: translateX(18px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes stepIn {
	from {
		opacity: 0;
		-webkit-transform: translateX(18px);
		transform: translateX(18px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.step-panel.out {
	-webkit-animation: 0.18s cubic-bezier(0.4, 0, 0.2, 1) both stepOut;
	animation: 0.18s cubic-bezier(0.4, 0, 0.2, 1) both stepOut;
}
@-webkit-keyframes stepOut {
	to {
		opacity: 0;
		-webkit-transform: translateX(-18px);
		transform: translateX(-18px);
	}
}
@keyframes stepOut {
	to {
		opacity: 0;
		-webkit-transform: translateX(-18px);
		transform: translateX(-18px);
	}
}
.step-panel.back-in {
	-webkit-animation: 0.28s cubic-bezier(0.4, 0, 0.2, 1) both backIn;
	animation: 0.28s cubic-bezier(0.4, 0, 0.2, 1) both backIn;
}
@-webkit-keyframes backIn {
	from {
		opacity: 0;
		-webkit-transform: translateX(-18px);
		transform: translateX(-18px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes backIn {
	from {
		opacity: 0;
		-webkit-transform: translateX(-18px);
		transform: translateX(-18px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.dot {
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background: var(--border);
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.dot.active {
	background: var(--accent);
	width: 18px;
}
.dot.done {
	background: #93c5fd;
}
.hero-image-panel {
	background: linear-gradient(160deg, #c8daea 0, #a0bcd6 100%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	overflow: hidden;
	padding: 0;
}
.hero-image-panel img {
	width: 100%;
	height: 800px;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}
@media (max-width: 700px) {
	.inputs-grid,
	.options-grid,
	.price-row {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}
.advisor-block .advisor-block-name {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 32px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 0;
	text-align: center;
}
@media (max-width: 1880px) {
	.hero-image-panel img {
		height: 750px;
	}
	.advisor-block .advisor-block-name {
		font-size: 28px;
	}
}
@media (max-width: 941px) {
	.hero-image-panel img {
		height: 280px;
		border-radius: 8px;
	}
	.advisor-block .advisor-block-name {
		font-size: 20px;
	}
	.advisor-block .advisor-block-subtitle {
		display: none;
	}
}
.advisor-block .advisor-block-subtitle {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -2%;
	text-align: center;
	margin: 20px 0 0;
}
.advisor-block .advisor-photo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin: 40px auto 0;
	background-color: green;
}
@media (max-width: 1880px) {
	.advisor-block .advisor-block-subtitle {
		font-size: 16px;
	}
	.advisor-block .advisor-photo {
		width: 180px;
		height: 180px;
	}
}
@media (max-width: 941px) {
	.advisor-block .advisor-photo {
		margin-top: 24px;
		width: 120px;
		height: 120px;
	}
}
.advisor-block .advisor-photo img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
}
@media (max-width: 1880px) {
	.advisor-block .advisor-photo img {
		width: 180px;
		height: 180px;
	}
}
@media (max-width: 941px) {
	.advisor-block .advisor-photo img {
		width: 120px;
		height: 120px;
	}
}
.advisor-block .advisor-name {
	color: var(--Black, #21282d);
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	text-align: center;
	margin: 30px 0 0;
}
@media (max-width: 1880px) {
	.advisor-block .advisor-name {
		font-size: 18px;
		margin: 24px 0 0;
	}
}
@media (max-width: 941px) {
	.advisor-block .advisor-name {
		font-size: 16px;
		margin: 12px 0 0;
	}
}
.advisor-block .advisor-title {
	color: var(--Black, #21282d);
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	text-align: center;
	margin: 8px 0 0;
}
@media (max-width: 941px) {
	.advisor-block .advisor-title {
		font-size: 12px;
		margin: 6px 0 0;
	}
	.advisor-block .advisor-phone {
		display: none;
	}
}
.advisor-block .advisor-phone {
	color: var(--Black, #21282d);
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	text-align: center;
	margin: 40px 0 0;
}
@media (max-width: 1880px) {
	.advisor-block .advisor-phone {
		font-size: 20px;
		margin: 32px 0 0;
	}
}
.advisor-block .advisor-contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 8px;
	margin: 20px 0 0;
}
.advisor-block .advisor-contacts .contact-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	border: 1px solid #c2d3e5;
	background: var(--BlueLight4, #e8f3fc);
	border-radius: 50%;
}
@media (max-width: 1880px) {
	.advisor-block .advisor-contacts .contact-btn {
		width: 67px;
		height: 67px;
	}
	.advisor-block .advisor-contacts .contact-btn svg {
		width: 320x;
		height: 30px;
	}
}
@media (max-width: 941px) {
	.advisor-block .advisor-contacts {
		gap: 6px;
	}
	.advisor-block .advisor-contacts .contact-btn {
		width: 50px;
		height: 50px;
	}
	.advisor-block .advisor-contacts .contact-btn svg {
		width: 24px;
		height: 24px;
	}
	.calculator-section .card-right {
		display: none;
	}
}
.footer {
	padding: 100px 0 35px;
	background: #e8f3fc;
}
.footer__bottom,
.footer__main {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 2fr 1fr 1fr;
	grid-template-columns: 2fr 1fr 1fr;
}
@media (max-width: 768px) {
	.advisor-block .advisor-photo,
	.advisor-block .advisor-photo img {
		width: 80px;
		height: 80px;
	}
	.footer {
		padding: 80px 0;
	}
	.footer__main {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.footer__main .footer__col__socials .footer__col__social:last-child {
		display: none;
	}
}
.footer__main .footer__col-title {
	font-size: 28px;
	font-weight: 700;
	color: #21282d;
	margin: 0;
}
.footer__main .footer__col-description {
	max-width: 283px;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -3%;
	margin: 16px 0 0;
}
.footer__main .footer__col__socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 50px 0 0;
	padding: 0;
	list-style: none;
	gap: 32px;
}
.footer__main .footer__col__socials h3 {
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0;
	margin: 0;
}
@media (max-width: 768px) {
	.footer__main .footer__col__socials h3 {
		display: none;
	}
	.footer__main .footer__col__socials {
		gap: 4px;
	}
	.footer__main .footer__col__socials .footer__col__social a {
		font-size: 16px;
	}
	.footer__main .footer__col__socials .footer__col__social:first-child a {
		font-size: 20px;
	}
}
.footer__main .footer__col__socials a {
	display: block;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -2%;
	margin: 8px 0 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.footer__main .footer__col__socials a:hover {
	color: #1290ea;
}
.footer__main .footer__col-title__list {
	margin: 7px 0 0;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -3%;
}
@media (max-width: 768px) {
	.footer__main .footer__col {
		display: none;
	}
	.footer__main .footer__col.footer__col__main {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.footer__main .footer__col__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
	padding-left: 0;
	list-style: none;
}
.footer__main .footer__col__list li a {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2%;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.footer__main .footer__col__list li a:hover {
	color: #1290ea;
}
.footer__bottom {
	margin-top: 55px;
	border-top: 1px solid #d4e2f1;
	padding-top: 36px;
}
@media (max-width: 768px) {
	.footer__bottom {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
		gap: 12px;
	}
	.footer__bottom .footer__col:first-child {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.footer__bottom .footer__col:first-child p {
		color: #21282d;
		margin-top: 28px;
	}
}
.footer__bottom .footer__col p {
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0;
	margin: 0;
}
.footer__bottom .footer__col a {
	color: #8d98a5;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0;
	margin: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.footer__bottom .footer__col a:hover {
	color: #21282d;
}
.btn--primary {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	color: #fff;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -2%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 6px;
	background: #1290ea;
	padding: 26px 44px 22px 48px;
	gap: 18px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border: 0;
}
.btn--primary:hover {
	background: #0a80d4;
}
@media (max-width: 941px) {
	.btn--primary {
		font-size: 16px;
		padding: 20px 40px;
	}
	.btn--primary .btn-image__wrapper,
	.btn--primary img,
	.btn--primary svg {
		display: none;
	}
}
.block__btn {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
}
.mark-section {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Medium;
	font-size: 24px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -4%;
	text-align: center;
	margin: 0;
}
.mark-section::before {
	content: '';
	position: absolute;
	left: -18px;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background: #1290ea;
	z-index: 1;
}
@media (max-width: 1880px) {
	.footer__main .footer__col-title__list {
		font-size: 18px;
	}
	.footer__main .footer__col__list {
		margin-top: 30px;
	}
	.footer__main .footer__col__list li a {
		font-size: 16px;
	}
	.mark-section {
		font-size: 20px;
	}
}
.section-title {
	font-family: 'Inter Tight';
	font-style: SemiBold;
	font-size: 56px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -4%;
	text-align: center;
	margin: 0;
}
@media (max-width: 1880px) {
	.section-title {
		font-size: 42px;
	}
}
@media (max-width: 768px) {
	.section-title {
		font-size: 24px;
	}
}
.section-description {
	color: #21282d;
	font-family: 'Inter Tight';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	letter-spacing: -2%;
	margin: 0;
}
@media (max-width: 1880px) {
	.section-description {
		font-size: 16px;
	}
}
.section-title + .section-description {
	margin: 30px 0 0;
}
.section__header.col {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.mark-section + .section-title {
	margin-top: 48px;
}
.section__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.section__header h2,
.section__header h3 {
	text-align: left;
}
@media (max-width: 768px) {
	.section-description {
		font-size: 14px;
	}
	.mark-section + .section-title {
		margin-top: 20px;
	}
	.section__header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.section__header .mark-section {
		display: block;
		font-size: 18px;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
		margin: 0 0 20px 24px;
	}
	.section__header .mark-section::before {
		width: 8px;
		height: 8px;
	}
}
.burger {
	--burger-width: 16px;
	--burger-height: 14px;
	--burger-line-height: 2px;
	position: relative;
	border: none;
	padding: 0;
	width: var(--burger-width);
	height: var(--burger-height);
	color: #fff;
	background-color: transparent;
	cursor: pointer;
	display: none;
}
.burger::after,
.burger::before {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: var(--burger-line-height);
	background-color: currentColor;
	-webkit-transition:
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
	transition:
		transform 0.3s ease-in-out,
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
}
.burger::before {
	top: 0;
}
.burger::after {
	top: calc(100% - var(--burger-line-height));
}
.burger__line {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: var(--burger-line-height);
	background-color: currentColor;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition:
		transform 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
	top: 50%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition:
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
	transition:
		transform 0.3s ease-in-out,
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
	top: 50%;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition:
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
	transition:
		transform 0.3s ease-in-out,
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition:
		transform 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
}
@media (max-width: 941px) {
	.burger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-left: 20px;
	}
}

.bb-none .hero-header__wrapper {
	border-bottom: 0;
}

.how-it-work-calculator .how-it-works {
	padding: 0 0 220px;
	background: transparent;
}

.how-it-work-calculator .section-title {
	text-align: left;
}

.how-it-work-calculator .btn--primary {
	display: none;
}

.how-it-work-calculator .steps__list .steps__item {
	background: #dbe9f5;
}

.how-it-work-calculator .how-it-works .steps__list .steps__item h3::after {
	background: #dbe9f5;
}

.how-it-work-calculator .steps__list {
	margin-bottom: 0;
}

.testimonials .mark-section {
	margin: 0 auto;
}

.mark-section-center .mark-section {
	margin: 0 auto;
}

.additional-services-btn .btn--primary {
	display: none;
}

.additional-services-blue .additional-services {
	background: #e8f3fc;
}

.additional-services-grid .help__list {
	grid-template-columns: 1fr 1fr;
}

.mark-hidden .mark-section {
	display: none;
}

@media (max-width: 941px) {
	.how-it-work-calculator .how-it-works {
		padding: 0 0 120px;
	}
	.additional-services-grid .help__list {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	.how-it-work-calculator .how-it-works {
		padding: 0 0 80px;
	}
}
