@font-feature-values "Inter", "Inter Variable" {
	@character-variant {
		legible-lower-l: 5;
		legible-upper-i: 8;
	}
}
@font-face {
	font-family: "Inter Variable";
	font-style: normal;
	font-display: swap;
	src: local("Inter Variable"), local("InterVariable"),
		url("../fonts/inter/regular-var.woff2") format("woff2-variations");
}
@font-face {
	font-family: "Inter Variable";
	font-style: italic;
	font-display: swap;
	src: local("Inter Variable Italic"), local("InterVariableItalic"),
		url("../fonts/inter/regular-var.woff2") format("woff2-variations");
}
* {
	font: inherit;
	margin: 0;
	padding: 0;
}
html {
	--base-fonts: "Inter Variable", "Inter", system-ui, sans-serif;
	--heading-fonts: "Inter Variable", "Inter", system-ui, sans-serif;
	--content-max-width: 1516px;
	color-scheme: light dark;
	background: #fff;
	color: #000;
	font-family: var(--base-fonts);
	font-size: 18px;
	line-height: 1.44;
	font-variant-alternates: character-variant(legible-lower-l, legible-upper-i);
}
html.big-text {
	font-size: max(1rem, 22px);
}
@media all and (prefers-color-scheme: dark) {
	html {
		background: #333;
		color: #ddd;
		accent-color: #29bee8;
	}
}
@media all and (prefers-color-scheme: dark) and (prefers-contrast: more) {
	html {
		background-color: #000;
	}
}
@media all and (max-width: 500px) {
	html {
		hyphens: auto;
		overflow-wrap: break-word;
	}
}
body {
	min-inline-size: 320px;
	max-inline-size: 1920px;
	margin-inline: auto;
}
[hidden] {
	display: none !important;
}
/* Hierarchy */
article,
aside,
main,
section,
header,
footer {
	display: flow-root;
}
article,
aside,
header,
footer {
	contain: content;
}
figure {
	box-sizing: border-box;
	max-inline-size: 100%;
	overflow: auto;
}
hr {
	margin-block: 2em;
	margin-inline: auto;
	color: inherit;
	border: none;
	border-block-start: .2em dashed currentColor;
	max-inline-size: 90%;
}
/* Line spacing */
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, dl, fieldset, table, figure, details):not([class], :first-child) {
	margin-block-start: 1em;
}
/* Inline content */
b,
strong {
	font-weight: bold;
}
i,
em {
	font-style: italic;
}
sub,
sup {
	font-size: smaller;
}
img {
	vertical-align: middle;
	max-inline-size: 100%;
	block-size: auto;
}
video {
	max-inline-size: 100%;
	block-size: auto;
}
iframe {
	border: none;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
	break-after: avoid;
	break-inside: avoid;
}
:where(h1, h2, h3, h4, h5, h6):not([class]) {
	font-family: var(--heading-fonts);
	line-height: normal;
}
:is(h1, h2, h3, h4, h5, h6) > a {
	text-decoration: none;
	color: inherit;
}
:is(h1, h2, h3, h4, h5, h6) > a:focus-visible {
	text-decoration: underline;
}
h1:not([class]) {
	font-size: 30px;
}
html:not(.root-page) h2:not([class]) {
	font-size: 1.44rem;
}
.article h2:not([class]) {
	padding-block-end: .5em;
	border-bottom: 1px solid rgba(0,0,0,.3);
}
html:not(.root-page) h3:not([class]) {
	font-size: 1.3rem;
}
@media all and (min-width: 1200px) {
	html.root-page h1:not([class]) {
		font-size: 80px;
		font-weight: 300;
	}
	html:not(.root-page) h1:not([class]) {
		font-size: 40px;
		font-weight: 300;
	}
}
@media all and (prefers-color-scheme: dark) {
	.article h2:not([class]) {
		border-bottom-color: rgba(255,255,255,.3);
	}
}
/* Links */
a img {
	border: none;
}
a {
	color: inherit;
	text-decoration: underline;
}
:where(.main-body) a {
	color: #0e3add;
}
@media all and (prefers-color-scheme: dark) {
	:where(.main-body) a {
		color: #f3e699;
	}
}
/* Lists */
:where(ul, ol):not([class]) {
	margin-inline-start: 1.5em;
}
:where(ul, ol):not([class]) > li:not(:first-child) {
	margin-block-start: .5em;
}
/* Dialogs */
dialog {
	border: none;
	box-sizing: border-box;
}
dialog::backdrop {
	background: rgba(0,0,0,.75);
}
@media all and (prefers-color-scheme: light) and (prefers-reduced-transparency: reduce) and (not (prefers-contrast: more)) {
	dialog::backdrop { background: #f0f0f0; }
}
@media all and (prefers-color-scheme: light) and (prefers-reduced-transparency: reduce) and (prefers-contrast: more) {
	dialog::backdrop { background: #fff; }
}
@media all and (prefers-color-scheme: dark) and (prefers-reduced-transparency: reduce) and (not (prefers-contrast: more)) {
	dialog::backdrop { background: #333; }
}
@media all and (prefers-color-scheme: dark) and (prefers-reduced-transparency: reduce) and (prefers-contrast: more) {
	dialog::backdrop { background: #000; }
}
@media print {
	dialog { display: none; }
}
/* Forms */
fieldset {
	border: 1px dashed #ccc;
	padding: 1em;
}
input,
textarea,
select,
option,
button {
	box-sizing: border-box;
}
@media all and (prefers-color-scheme: light) and (prefers-contrast: more) {
	fieldset { border-color: #000; }
}
@media all and (prefers-color-scheme: dark) and (not (prefers-contrast: more)) {
	fieldset { border-color: #a9a9a9; }
}
@media all and (prefers-color-scheme: dark) and (prefers-contrast: more) {
	fieldset { border-color: #fff; }
}
input[type="checkbox"],
input[type="radio"] {
	width: 1em;
	height: 1em;
}
/* Tables */
table {
	border-collapse: collapse;
	margin-inline: auto;
}
caption {
	padding-block: .2em;
	padding-inline: 1em;
	text-align: start;
}
td, th {
	padding-block: .2em;
	padding-inline: 1em;
	text-align: start;
	min-width: 6em;
}
th {
	font-weight: bold;
}
thead {
	border-block-end: .1em solid #7e7e7e;
}
tfoot {
	border-block-start: .1em solid #7e7e7e;
}
tbody > tr:nth-child(even) {
	background: rgba(0,0,0,.08);
	color: #000;
}
th[scope="row"] {
	text-align: start;
}
thead > tr > th {
	vertical-align: bottom;
}
@supports (margin-trim: block) {
	td, th {
		margin-trim: block;
	}
}
@supports not (margin-trim: block) {
	:where(td, th) > :first-child {
		margin-block-start: 0 !important;
	}
	:where(td, th) > :last-child {
		margin-block-end: 0 !important;
	}
}
@media all and (prefers-color-scheme: light) and (prefers-contrast: more) {
	thead { border-block-end-color: #000; }
	tfoot { border-block-start-color: #000; }
}
@media all and (prefers-color-scheme: dark) and (not (prefers-contrast: more)) {
	thead { border-block-end-color: #e6e6e6; }
	tfoot { border-block-start-color: #e6e6e6; }
}
@media all and (prefers-color-scheme: dark) and (prefers-contrast: more) {
	thead { border-block-end-color: #fff; }
	tfoot { border-block-start-color: #fff; }
}
@media all and (prefers-color-scheme: dark) {
	tbody > tr:nth-child(even) {
		background: rgba(255,255,255,.08);
		color: #fff;
	}
}
/* Quotations */
blockquote:not([class]) {
	padding-inline-start: 1em;
	border-inline-start: 4px solid #ddd;
}
@media all and (prefers-color-scheme: light) and (prefers-contrast: more) {
	blockquote:not([class]) { border-inline-start-color: #000; }
}
@media all and (prefers-color-scheme: dark) and (not (prefers-contrast: more)) {
	blockquote:not([class]) { border-inline-start-color: #909090; }
}
@media all and (prefers-color-scheme: dark) and (prefers-contrast: more) {
	blockquote:not([class]) { border-inline-start-color: #fff; }
}
/* Definition lists */
dl:not([class]) > dt {
	font-weight: bold;
}
dl:not([class]) > dt:not(:first-child) {
	margin-block-start: 1em;
}
dl:not([class]) > dd {
	margin-inline-start: 2em;
}
dl:not([class]) > dd:not(:first-child) {
	margin-block-start: .5em;
}
/* When to show what */
.mobile-nav-button {
	display: none;
}
@media not all and (min-width: 1516px) {
	.top-nav {
		display: none;
	}
	.mobile-nav-button {
		display: block;
	}
}
/* Command panel */
.page-controls {
	font-size: 20px;
	position: fixed;
	z-index: 9;
	inset-block-start: 16px;
	inset-inline-end: 16px;
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 16px;
}
.page-controls-button {
	box-sizing: border-box;
	padding-block: 9px;
	padding-inline: 12px;
	background: #fff;
	color: #000;
	border: .1em solid #333;
	line-height: normal;
	cursor: pointer;
	transition: background-color 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out;
}
.page-controls-button:hover,
.page-controls-button:focus {
	background-color: #333;
	color: #fff;
}
.page-controls-button > svg {
	vertical-align: -.15em;
}
@media all and (prefers-color-scheme: light) and (prefers-contrast: more) {
	.page-controls-button {
		border-color: #000;
	}
	.page-controls-button:hover,
	.page-controls-button:focus {
		background-color: #000;
	}
}
@media all and (prefers-color-scheme: dark) and (not (prefers-contrast: more)) {
	.page-controls-button {
		background: #161616;
		color: #f0f0f0;
		border-color: #ccc;
	}
	.page-controls-button:hover,
	.page-controls-button:focus {
		background-color: #ccc;
		color: #000;
	}
}
@media all and (prefers-color-scheme: dark) and (prefers-contrast: more) {
	.page-controls-button {
		background-color: #000;
		color: #fff;
		border-color: #fff;
	}
	.page-controls-button:hover,
	.page-controls-button:focus {
		background-color: #fff;
		color: #000;
	}
}
/* Menu dialog */
.dialog-mobile-menu {
	background: transparent;
	max-block-size: none;
	block-size: 100%;
	inline-size: 100%;
	max-inline-size: 400px;
}
.mobile-menu {
	box-sizing: border-box;
	padding: 16px;
	background: #f8f8f8;
	color: #000;
	box-shadow: 2px 0 2px 0 rgba(0,0,0,.2);
	block-size: 100%;
	overflow: auto;
	overscroll-behavior: contain;
}
@media all and (prefers-color-scheme: dark) and (not (prefers-contrast: more)) {
	.mobile-menu {
		background: #64625b;
		color: #fff;
	}
}
@media all and (prefers-color-scheme: dark) and (prefers-contrast: more) {
	.mobile-menu {
		background: #2a2926;
		color: #fff;
	}
}
/* Menu dialog content */
.mobile-menu-itself {
	font-weight: normal;
	padding: 0;
}
.mobile-menu-itself li {
	list-style: none;
	position: relative;
}
.mobile-menu-itself li:hover > ul,
.mobile-menu-itself li:focus > ul {
	display: block;
}
.mobile-menu-itself li > :first-child:focus + ul {
	display: block;
}
.mobile-menu-itself > li ul {
	margin-inline-start: 1.2em;
}
.mobile-menu-itself .separator::after {
	content: ":";
}
.mobile-menu-itself li > a,
.button-mobile-menu-close {
	display: block;
	box-sizing: border-box;
	padding-block: 6px 5px;
	padding-inline: 12px;
	outline: none;
	border: none;
	inline-size: 100%;
	cursor: pointer;
	background: transparent;
	color: inherit;
	text-align: start;
	transition: background-color 300ms ease-out, color 300ms ease-out;
}
.mobile-menu-itself li > a:hover,
.mobile-menu-itself li > a:focus,
.button-mobile-menu-close:hover,
.button-mobile-menu-close:focus {
	background-color: #7c7c7c;
	color: #fff;
}
@media all and (prefers-color-scheme: light) and (prefers-contrast: more) {
	.mobile-menu-itself li > a:hover,
	.mobile-menu-itself li > a:focus,
	.button-mobile-menu-close:hover,
	.button-mobile-menu-close:focus {
		background-color: #000;
	}
}
@media all and (prefers-color-scheme: dark) and (not (prefers-contrast: more)) {
	.mobile-menu-itself li > :first-child:hover,
	.mobile-menu-itself li > :first-child:focus,
	.button-mobile-menu-close:hover,
	.button-mobile-menu-close:focus {
		background-color: #fafafa;
		color: #000;
	}
}
@media all and (prefers-color-scheme: dark) and (prefers-contrast: more) {
	.mobile-menu-itself li > :first-child:hover,
	.mobile-menu-itself li > :first-child:focus,
	.button-mobile-menu-close:hover,
	.button-mobile-menu-close:focus {
		background-color: #fff;
		color: #000;
	}
}
.mobile-menu a {
	text-decoration: none;
	outline: none;
}
@media print {
	.page-controls {
		display: none;
	}
}
.ajax-form-result {
	display: none;
	background: #fbfbfb;
	color: #000;
	border: .1em solid #999;
	padding-block: .5em;
	padding-inline: 1em;
}
.ajax-form-result[data-state="positive"] {
	display: block;
	background-color: #f4f9ee;
	border-color: #99bf7f;
}
.ajax-form-result[data-state="negative"] {
	display: block;
	background-color: #f9f3ee;
	border-color: #bf857f;
}
.ajax-form-result:not(:first-child) {
	margin-block-start: 1em;
}
/* Page */
.hl {
	color: #7481f6;
}
/* Vector icons */
.icon {
	width: 1em;
	height: 1em;
}
/* Dialog layout */
.dialog-layout[open],
.dialog-layout:popover-open {
	box-sizing: border-box;
	background: transparent;
	max-inline-size: none;
	max-block-size: none;
	inline-size: 100%;
	block-size: 100%;
	padding: 1em;
	display: grid;
	place-content: safe center;
}
.dialog-layout-inner {
	background: #fff;
	color: #000;
	padding: 1.5em;
	box-shadow: 0 0 3px 3px rgba(255,255,255,.15);
	border-radius: 4px;
	position: relative;
	overflow: auto;
}
@media all and (prefers-color-scheme: dark) {
	.dialog-layout-inner {
		background: #333;
		color: #fff;
	}
}
@media all and (prefers-color-scheme: dark) and (prefers-contrast: more) {
	.dialog-layout-inner {
		background: #000;
	}
}
.form-close-dialog {
	position: absolute;
	z-index: 1;
	inset-block-start: .5em;
	inset-inline-end: .5em;
}
.form-close-dialog-button {
	background: transparent;
	color: #b24539;
	border: none;
	cursor: pointer;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5em;
	text-align: center;
	padding: 0;
	transition: background-color 300ms ease-out, color 300ms ease-out;
}
.form-close-dialog-button:hover,
.form-close-dialog-button:focus {
	background-color: #b24539;
	color: #fff;
}
/* Main content: all */
.main-body {
	display: flex;
	max-inline-size: var(--content-max-width);
	padding-inline: 1.5rem;
	margin-inline: auto;
	gap: 16px;
}
.content {
	flex-grow: 1;
	max-inline-size: 100%;
}
.sidebar {
	flex-shrink: 0;
	flex-grow: 0;
}
.sidebar > section:not(:first-child) {
	margin-block-start: 1rem;
}
/* Main content: wide */
@media all and (min-width: 1108px) {
	.content {
		order: 1;
	}
	.sidebar-1 {
		inline-size: 250px;
		order: 0;
	}
	.sidebar-2 {
		inline-size: 250px;
		order: 2;
	}
}
/* Main content: narrow */
@media not all and (min-width: 1108px) {
	.main-body {
		flex-direction: column;
	}
	.content {
		order: 0;
	}
	.sidebar-1 {
		inline-size: 100%;
		order: 1;
	}
	.sidebar-2 {
		inline-size: 100%;
		order: 2;
	}
}
/* .limit-content is a wrapper for normal content, which needs padding on narrow screens. */
.limit-content {
	display: flow-root;
}
@media not print {
	.limit-content {
		max-inline-size: var(--content-max-width);
		margin-inline: auto;
		padding-inline: 1.5rem;
	}
}
/* Alternatively, one can increase paddings to fill space. */
.pad-content {
	display: flow-root;
}
@media not print {
	.pad-content {
		padding-inline: max(1.5rem, (100% - var(--content-max-width)) / 2);
	}
}
/* Template */
.top {
	box-sizing: border-box;
	font-size: .83rem;
	padding-block: 1em;
	background: url("../images/top.webp") center / cover no-repeat #00193d;
	color: #fff;
}
html.root-page .top {
	min-height: 100vh;
}
html:not(.root-page) .top {
	padding-block-end: 2em;
}
.l-top {
	font-weight: 600;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}
@media all and (min-width: 1300px) {
	.l-top > div {
		width: calc((100% - 2em) / 3);
	}
	.l-top > .top-logo {
		text-align: center;
	}
	.l-top > .linked-icons {
		text-align: end;
		justify-content: end;
	}
}
@media not print {
	@media (max-width: 1599px) {
		.l-top {
			padding-inline-end: 72px;
		}
	}
}
@media print {
	nav {
		display: none !important;
	}
}
.top a,
.bottom a {
	text-decoration: none;
	transition: color 300ms ease-out;
}
.top a:not(.button-1):hover,
.top a:not(.button-1):focus,
.bottom a:hover,
.bottom a:focus {
	color: #29bee8;
}
.top a:focus-visible,
.bottom a:focus-visible {
	text-decoration: underline;
}
.l-top-1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1em 1.5em;
}
.l-top-1 img {
	margin-inline-end: .5em;
}
.linked-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1em;
}
.bottom .linked-icons {
	justify-content: center;
}
.linked-icons > a {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	color: #fff;
	backdrop-filter: blur(10px);
	text-align: center;
	line-height: 46px;
	text-decoration: none;
	outline: 1px solid rgba(255,255,255,0);
	transition: outline-color 300ms ease-out;
}
.linked-icons > a:hover,
.linked-icons > a:focus {
	outline: 1px solid #29bee8;
}
.main-menu {
	font-size: .77rem;
	font-weight: bold;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2em;
	margin-block-start: 2em;
	border-block-start: 1px solid #335071;
	padding-block-start: 2em;
}
.main-menu > li {
	list-style: none;
}
.top h1 {
	max-inline-size: 817px;
}
.top-list {
	max-inline-size: 500px;
}
.top-list:not(:first-child) {
	margin-block-start: 2em;
}
.top-list > li {
	list-style: none;
	background: url("../images/bullet.svg") left top no-repeat transparent;
	padding-inline-start: 56px;
}
.top-list > li:not(:first-child) {
	margin-block-start: 2em;
}
.top p:not(:first-child) {
	margin-block-start: 2.9em;
}
@media all and (min-width: 1200px) {
	.top h1 {
		text-indent: 80px;
	}
}
.bottom {
	font-size: .83rem;
	background: #000e35;
	color: #cccfd7;
	padding-block: 2rem;
	text-align: center;
}
:where(.bottom) p:not(:first-child) {
	margin-block-start: 1em;
}
.bottom address {
	color: #fff;
	font-weight: 600;
}
:where(.bottom) address:not(:first-child) {
	margin-block-start: 1em;
}
.bottom .sep {
	margin-block-start: 3em;
}
.copyright {
	font-size: .77rem;
}
.bottom-tel {
	font-size: 1.11rem;
	font-weight: 600;
	color: #fff;
}
@media all and (min-width: 1200px) {
	.bottom {
		padding-block: 4rem;
	}
}
.button-1 {
	display: inline-block;
	background: linear-gradient(to right, #787ef7, #2abee8) #2abee8;
	color: #fff;
	border: none;
	padding: 1em 2em;
	border-radius: .5em;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	transition: color 300ms ease-out;
}
.button-1:hover,
.button-1:focus {
	color: #000;
}
a.button-1:focus-visible {
	text-decoration: underline;
}
.what {
	padding-block: 2rem;
}
@media all and (prefers-color-scheme: light) {
	.what {
		background: #f4f4f4;
	}
}
.what-note {
	text-align: center;
	letter-spacing: .4em;
	color: #ccc;
}
@supports (background-clip: text) {
	.what-note {
		background: linear-gradient(to right, #4b5058, #aab1c1) transparent;
		color: transparent;
		background-clip: text
	}
}
.what h2 {
	text-align: center;
	font-size: 30px;
}
.what-text {
	text-align: center;
	max-inline-size: 913px;
	margin-inline: auto;
	color: #484c54;
}
.what-text:not(:first-child) {
	margin-block-start: 2em;
}
.what-list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 20px;
}
.what-list:not(:first-child) {
	margin-block-start: 2em;
}
.what-list > li {
	box-sizing: border-box;
	list-style: none;
	width: calc((100% - 40px) / 3);
	background: url("../images/what-bullet.svg") 24px 1em no-repeat #fff;
	color: #484c54;
	padding: 1em;
	border-radius: 14px;
	padding-left: 93px;
}
@media all and (min-width: 1200px) {
	.what {
		padding-block: 6rem;
	}
	.what h2 {
		font-size: 80px;
		font-weight: 300;
	}
}
@media all and (max-width: 1017px) {
	.what-list > li {
		width: 400px;
		max-width: 100%;
	}
}
@media all and (prefers-color-scheme: dark) {
	.what-text {
		color: #ccc;
	}
	.what-list > li {
		background-color: #222;
		color: #eee;
	}
}
.advantages {
	padding-block: 2em;
	background: url("../images/advantages.webp") center / cover no-repeat #091d46;
	color: #d7d9e7;
}
.advantages h2 {
	text-align: center;
	font-size: 30px;
}
.advantages-text:not(:first-child) {
	margin-block-start: 2em;
}
.advantages-text {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 20px;
}
.advantages-text > article {
	box-sizing: border-box;
	background: right 37px top 1em no-repeat rgba(255,255,255,.08);
	backdrop-filter: blur(20px);
	padding: 1em 115px 1em 1em;
	border-radius: 14px;
	width: calc((100% - 40px) / 3);
}
.advantages-text > article:first-child { background-image: url("../images/advantages-1.svg") }
.advantages-text > article:nth-child(2) { background-image: url("../images/advantages-2.svg") }
.advantages-text > article:nth-child(3) { background-image: url("../images/advantages-3.svg") }
.advantages-text > article:nth-child(4) { background-image: url("../images/advantages-4.svg") }
.advantages-text > article:nth-child(5) { background-image: url("../images/advantages-5.svg") }
.advantages h3 {
	font-size: 24px;
	font-weight: 600;
}
@media all and (min-width: 1200px) {
	.advantages {
		padding-block: 7rem;
	}
	.advantages h2 {
		font-size: 80px;
		font-weight: 300;
	}
	.advantages-text:not(:first-child) {
		margin-block-start: 4em;
	}
	.advantages-text > article {
		padding: 2em 115px 2em 2em;
		background-position: right 37px top 2em;
	}
}
@media all and (max-width: 1017px) {
	.advantages-text > article {
		width: 400px;
		max-width: 100%;
		flex-grow: 1;
	}
}
@media all and (max-width: 500px) {
	.advantages h3 {
		font-size: 20px;
	}
}
.why {
	padding-block: 2em;
}
.why h2 {
	font-size: 30px;
}
.why-list:not(:first-child) {
	margin-block-start: 2em;
}
.why-list > li {
	list-style: none;
	background: no-repeat #fff;
	color: #484c54;
	padding-block: 1em;
	padding-inline: 64px 1em;
	border-radius: 14px;
}
.why-list > li:not(:first-child) {
	margin-block-start: 4px;
}
.why-list > li:first-child { background-image: url("../images/why-list-1.svg"); }
.why-list > li:nth-child(2) { background-image: url("../images/why-list-2.svg"); }
.why-list > li:nth-child(3) { background-image: url("../images/why-list-3.svg"); }
.why-list > li:nth-child(4) { background-image: url("../images/why-list-4.svg"); }
@media all and (min-width: 1200px) {
	.why {
		padding-block: 6rem;
	}
	.why h2 {
		font-size: 80px;
		font-weight: 300;
	}
	.why-list {
		background: url("../images/why-list.webp") right top no-repeat transparent;
	}
	.why-list > li {
		background-position: 35px 50%;
		box-sizing: border-box;
		max-inline-size: 620px;
		padding-block: 1.5em;
		padding-inline: 132px 72px;
	}
}
@media not all and (min-width: 1200px) {
	.why-list > li {
		background-position: 16px 50%;
		background-size: 32px; auto;
	}
}
@media all and (prefers-color-scheme: light) {
	.why {
		background: #f4f4f4;
	}
}
@media all and (prefers-color-scheme: dark) {
	.why-list > li {
		background-color: #222;
		color: #eee;
	}
}
.services h2 {
	font-size: 30px;
	text-align: center;
}
.services h3 {
	font-size: 24px;
	font-weight: 600;
}
.services-text:not(:first-child) {
	margin-block-start: 2em;
}
.services-text {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 20px;
}
.services-text > article {
	box-sizing: border-box;
	background: #fff;
	color: #484c54;
	padding: 1em;
	border-radius: 14px;
	flex-shrink: 0;
	width: 400px;
	max-width: 100%;
}
@media all and (min-width: 1200px) {
	.services h2 {
		font-size: 80px;
		font-weight: 300;
	}
	.services-text > article {
		padding: 1.5em;
		width: calc((100% - 60px) / 4);
	}
	.services h3:not(:first-child) {
		margin-block-start: 2em;
	}
}
@media not all and (min-width: 1200px) {
	.services {
		padding-block: 0 2em;
	}
}
@media all and (max-width: 873px) {
	.services-text > article {
		flex-grow: 1;
	}
}
@media all and (prefers-color-scheme: light) {
	.services {
		background: #f4f4f4;
	}
}
@media all and (prefers-color-scheme: dark) {
	.services-text > article {
		background: #222;
		color: #eee;
	}
}
.consultation {
	padding-block: 3em;
	background: url("../images/consultation.webp") center / cover no-repeat #212e72;
	color: #fff;
	text-align: center;
}
@media all and (min-width: 1200px) {
	.consultation {
		padding-block: 6rem;
	}
	.services + .consultation {
		margin-top: -188px;
		padding-block: calc(6rem + 188px) 6rem;
	}
}
.steps {
	padding-block: 2em;
}
.l-steps {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 20px;
}
.l-steps > article {
	padding: 1em;
	background: #fff;
	color: #333;
	border-radius: 14px;
}
.steps h2 {
	font-size: 30px;
}
.steps h3 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
	min-block-size: 64px;
	background: right top no-repeat transparent;
	padding-inline-end: 79px;
}
.l-steps > article:nth-child(2) > h3 { background-image: url("../images/why-list-1.svg"); }
.l-steps > article:nth-child(3) > h3 { background-image: url("../images/why-list-2.svg"); }
.l-steps > article:nth-child(4) > h3 { background-image: url("../images/why-list-3.svg"); }
.l-steps > article:nth-child(5) > h3 { background-image: url("../images/why-list-4.svg"); }
.l-steps > article:nth-child(6) > h3 { background-image: url("../images/why-list-5.svg"); }
.l-steps > article:nth-child(7) > h3 { background-image: url("../images/why-list-6.svg"); }
.l-steps > article:nth-child(8) > h3 { background-image: url("../images/why-list-7.svg"); }
@media all and (min-width: 1200px) {
	.steps {
		padding-block: 6rem;
	}
	.steps h2 {
		font-size: 80px;
		font-weight: 300;
		margin-left: 124px;
		text-indent: -124px;
	}
	.steps h3 {
		margin-block-end: 2em;
	}
	.l-steps {
		justify-content: space-between;
	}
	.l-steps > article {
		padding: 2.1em 2em;
	}
	.l-steps > * {
		box-sizing: border-box;
		width: calc((100% - 40px) / 3);
		flex-shrink: 0;
	}
	.l-steps > article:nth-child(7) {
		width: calc(2 * (100% - 40px) / 3 + 20px);
		background-position: 377px 100%;
		background-repeat: no-repeat;
		background-image: url("../images/steps-decor.webp");
	}
}
@media not all and (min-width: 1200px) {
	.steps h2 > br {
		display: none;
	}
	.l-steps > * {
		box-sizing: border-box;
		flex-shrink: 0;
		flex-grow: 1;
		max-width: 100%;
		width: 400px;
		padding: 1em;
	}
}
@media all and (prefers-color-scheme: light) {
	.steps {
		background: #f4f4f4;
	}
}
@media all and (prefers-color-scheme: dark) {
	.l-steps > article {
		background: #222;
		color: #eee;
	}
}
.quick-help {
	padding-block-end: 2em;
}
.quick-help h2 {
	font-size: 30px;
	position: relative;
}
@media all and (min-width: 1200px) {
	.quick-help {
		padding-block-end: 6rem;
	}
	.quick-help h2 {
		font-size: 80px;
		font-weight: 300;
	}
}
@media all and (min-width: 1330px) {
	.quick-help h2 {
		background: url("../images/quick-help-decor.png") 83px 50% no-repeat transparent;
		text-indent: -249px;
		padding-inline-start: 519px;
	}
	.quick-help h2::after {
		content: "";
		pointer-events: none;
		position: absolute;
		z-index: 1;
		right: 33px;
		bottom: -60px;
		width: 100px;
		height: 100px;
		background: url("../images/quick-help-decor-2.png") left top no-repeat transparent;
	}
	@media (prefers-color-scheme: dark) {
		.quick-help h2 {
			background-image: url("../images/quick-help-decor-dark.png");
		}
	}
}
@media not all and (min-width: 1330px) {
	.quick-help h2 {
		text-align: center;
	}
}
@media all and (prefers-color-scheme: light) {
	.quick-help {
		background: #f4f4f4;
	}
}
.contact-us {
	padding-block: 2em;
	background: url("../images/contact-us.webp") center / cover no-repeat #000f2e;
	color: #fff;
}
.contact-us h2 {
	font-size: 30px;
	text-align: center;
}
.contact-us-subtitle {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
}
.contact-us-subtitle:not(:first-child) {
	margin-block-start: 1em;
}
.contact-us-form {
	display: block;
	max-inline-size: 1000px;
	margin-inline: auto;
}
.contact-us-form:not(:first-child) {
	margin-block-start: 2em;
}
.contact-form-input {
	margin-block-start: .2em;
	width: 100%;
	padding: 1em;
	border: none;
	border-radius: 6px;
	background: #fff;
	color: #000;
}
@media all and (min-width: 1200px) {
	.contact-us {
		padding-block: 6rem;
	}
	.contact-us h2 {
		font-size: 80px;
		font-weight: 300;
	}
	.contact-us-subtitle {
		text-transform: uppercase;
	}
}
.form-group:not(:first-child) {
	margin-block-start: 1.5em;
}
.form-group._submit,
.form-group._legal {
	text-align: center;
}
.form-group._legal {
	font-size: .77rem;
}
@media all and (min-width: 1000px) {
	.form-group._compact {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}
	.form-group._compact > div {
		flex-shrink: 0;
		width: calc((100% - 40px) / 3);
	}
	.form-group._submit,
	.form-group._legal {
		inline-size: calc((100% - 40px) / 3);
		margin-inline: auto;
	}
	.form-group._submit > button {
		width: 100%;
	}
}
@media not all and (min-width: 1000px) {
	.form-group._compact > div:not(:first-child) {
		margin-block-start: 1em;
	}
}
.quick-help-list:not(:first-child) {
	margin-block-start: 2em;
}
.quick-help-list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 4px 20px;
}
.quick-help-list > dt,
.quick-help-list > dd {
	box-sizing: border-box;
	padding-block: 1rem;
	padding-left: 1rem;
	border-radius: 14px;
}
.quick-help-list > dt {
	background: url("../images/qh-down.svg") right 30px top 50% no-repeat #31568c;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	padding-right: 123px;
	min-block-size: 80px;
}
.quick-help-list > dd {
	background: #fff;
	color: #484c54;
	padding-right: 1rem;
}
.quick-help-list > dd > p:first-child {
	color: #7481f6;
	font-weight: 600;
}
@media all and (min-width: 1200px) {
	.quick-help-list > dt {
		background-image: url("../images/qh-right.svg");
	}
	.quick-help-list > dt,
	.quick-help-list > dd {
		padding-block: 2rem;
		flex-shrink: 0;
		width: calc((100% - 20px) / 2);
		align-content: center;
	}
	.quick-help-list > dt {
		padding-left: 2rem;
	}
	.quick-help-list > dd {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
@media not all and (min-width: 1200px) {
	.quick-help-list > dt,
	.quick-help-list > dd {
		width: 100%;
		flex-shrink: 0;
	}
}
@media all and (prefers-color-scheme: dark) {
	.quick-help-list > dd {
		background: #222;
		color: #eee;
	}
}
.prices {
	padding-block: 2em;
	background: url("../images/prices.webp") center top / cover no-repeat #061c44;
	color: #fff;
}
.prices > div {
	position: relative;
}
.prices h2 {
	font-size: 30px;
}
.prices h3 {
	font-size: 26px;
}
.prices-text {
	font-size: .94rem;
	font-weight: 500;
}
.prices-text > p:first-child {
	color: #29bee8;
	font-weight: bold;
}
.prices-sum {
	box-sizing: border-box;
	padding: 1em;
	border-radius: 14px;
	background: rgba(255,255,255,.08);
	backdrop-filter: blur(20px);
}
.prices-sum > p:first-child {
	font-size: 30px;
	font-weight: 600;
}
.prices-sum del {
	font-size: .7em;
	opacity: .8;
}
@media all and (min-width: 1200px) {
	.prices {
		padding-block: 6em;
	}
	.prices h2 {
		font-size: 80px;
		font-weight: 300;
		position: absolute;
		z-index: 1;
		left: 0;
		top: 0;
	}
	.prices h2 > span {
		display: block;
	}
	.prices h3 {
		font-size: 40px;
		font-weight: 300;
	}
	.prices-sum > p:first-child {
		font-size: 74px;
	}
	.prices-item {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 20px;
	}
	.prices-text {
		max-width: 822px;
	}
	.prices-sum {
		flex-shrink: 0;
		max-width: 504px;
		padding: 2em;
	}
}
@media not all and (min-width: 1200px) {
	.prices h2 {
		margin-block-end: 1em;
	}
	.prices-sum {
		margin-block-start: 1.5em;
	}
}
.faq {
	padding-block: 2em;
}
.faq h2 {
	font-size: 30px;
}
details {
	background: url("../images/details-closed.svg") right 1em top 1em no-repeat #fff;
	color: #333;
	padding: 1em;
	border-radius: 14px;
	line-height: 1.5;
	min-block-size: 50px;
}
summary {
	cursor: pointer;
	line-height: 1.7;
	padding-right: 116px;
	list-style: none;
	font-weight: 600;
	color: #000;
}
details[open] {
	background-image: url("../images/details-open.svg");
}
.faq details + details {
	margin-block-start: 4px;
}
@media all and (min-width: 1200px) {
	.faq {
		padding-block: 6em;
	}
	.faq h2 {
		font-size: 80px;
		font-weight: 300;
	}
	.l-faq {
		display: flex;
		gap: 18px;
		justify-content: space-between;
	}
	.l-faq > * {
		flex-shrink: 0;
		width: calc((100% - 18px) / 2);
	}
	details {
		padding: 2em;
		background-position: right 1em top 2em;
	}
}
@media not all and (min-width: 1200px) {
	.l-faq > div:not(:first-child) {
		margin-block-start: 2em;
	}
}
@media all and (prefers-color-scheme: light) {
	.faq {
		background: #f4f4f4;
		color: #333;
	}
}
@media all and (prefers-color-scheme: dark) {
	details {
		background-color: #222;
		color: #ccc;
	}
	summary {
		color: #eee;
	}
}
.blog {
	padding-block: 2em;
}
.blog-items {
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
}
.blog-items:not(:first-child) {
	margin-block-start: 2em;
}
.blog-items > article {
	box-sizing: border-box;
	flex-shrink: 0;
	padding: 1.5em;
	background: #f0f0f0;
	color: #000;
	border-radius: 14px;
}
.blog-picture {
	text-align: center;
}
.blog-picture img {
	border-radius: 14px;
}
@media all and (min-width: 1200px) {
	.blog-items > article {
		width: calc((100% - 4em) / 3);
	}
}
@media not all and (min-width: 1200px) {
	.blog-items > article {
		width: 100%;
	}
}
@media all and (prefers-color-scheme: dark) {
	.blog-items > article {
		background-color: #222;
		color: #ccc;
	}
}
.article {
	padding-block: 2em;
}
.article-picture {
	text-align: center;
}
.article-picture:not(:first-child) {
	margin-block-start: 2em;
}
.article a:not([class]) {
	color: #00e;
}
@media all and (min-width: 862px) {
	.article-picture {
		float: inline-end;
		margin-inline-start: 1.5em;
		margin-block-end: 1em;
	}
}
@media all and (prefers-color-scheme: dark) {
	.article a:not([class]) {
		color: #d4c886;
	}
}
.m-ask {
	position: fixed;
	z-index:9;
	right: 0;
	bottom: 0;
}
.m-ask > a {
	display: block;
	text-decoration: none;
	border-top: 1px solid #2fa8ff;
	border-left: 1px solid #2fa8ff;
	border-top-left-radius: .5em;
	padding: .5em 1em;
	background: #237cbe;
	color: #fff;
	transition: background-color 300ms ease-out, border-top-color 300ms ease-out, border-left-color 300ms ease-out;
}
.m-ask > a:focus-visible {
	text-decoration: underline;
}
.m-ask > :hover,
.m-ask > a:focus {
	background-color: #1b5f91;
	border-top-color: #dfdfdf;
	border-left-color: #dfdfdf;
}
