@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-display: swap;
	src: local("Manrope"), url("../fonts/manrope/regular-var.woff2") format("woff2-variations");
}
* {
	font: inherit;
	margin: 0;
	padding: 0;
}
html {
	--base-fonts: "Manrope", "Liberation Sans", "Arial", sans-serif;
	--heading-fonts: "Manrope", "Liberation Sans", "Arial", sans-serif;
	--content-max-width: 1420px;
	color-scheme: light dark;
	background: #fff;
	color: #000;
	font: 15px / 1.3 var(--base-fonts);
	accent-color: #c8102e;
}
html.alt-appearance {
	font-size: max(1rem, 22px);
}
@media all and (max-width: 500px) {
	html {
		hyphens: auto;
		overflow-wrap: anywhere;
	}
}
@media all and (prefers-color-scheme: dark) {
	html {
		background: #000;
		color: #fff;
		accent-color: #ef2e4d;
	}
}
body {
	min-width: 320px;
	max-width: 1920px;
	margin: 0 auto;
}
[hidden] {
	display: none !important;
}
/* Hierarchy */
article,
aside,
main,
section,
header,
footer {
	display: flow-root;
}
figure {
	max-width: 100%;
	overflow: auto;
}
hr {
	margin: 2em auto;
	color: inherit;
	border: none;
	border-top: .2em dashed currentColor;
	max-width: 90%;
}
/* Line spacing */
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, dl, fieldset, table, figure, details):not([class]):not(: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-width: 100%;
	height: auto;
}
video {
	max-width: 100%;
	height: auto;
}
iframe {
	border: none;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
	break-after: avoid-page;
	break-inside: avoid-page;
}
:where(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;
}
/* 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;
	padding: 0;
}
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-left: auto;
	margin-right: auto;
}
caption {
	text-align: start;
	padding: .15em .5em;
}
td, th {
	padding: .15em .5em;
}
th {
	font-weight: bold;
}
th[scope="row"] {
	text-align: start;
}
thead {
	border-bottom: .1em solid #7e7e7e;
}
tfoot {
	border-top: .1em solid #7e7e7e;
}
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-bottom-color: #000; }
	tfoot { border-top-color: #000; }
}
@media all and (prefers-color-scheme: dark) and (not (prefers-contrast: more)) {
	thead { border-bottom-color: #e6e6e6; }
	tfoot { border-top-color: #e6e6e6; }
}
@media all and (prefers-color-scheme: dark) and (prefers-contrast: more) {
	thead { border-bottom-color: #fff; }
	tfoot { border-top-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; }
}
/* When to show what */
.mobile-nav-button {
	display: none;
}
@media not all and (min-width: 1108px) {
	.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: 9px 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: #000;
		color: #fff;
		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 {
		border-color: #fff;
	}
	.page-controls-button:hover,
	.page-controls-button:focus {
		background-color: #fff;
	}
}
/* Menu dialog */
.dialog-mobile-menu {
	box-sizing: border-box;
	background: transparent;
	max-width: none;
	max-height: none;
	width: 100%;
	height: 100%;
}
.mobile-menu {
	box-sizing: border-box;
	padding: 16px;
	max-width: 400px;
	background: #f8f8f8;
	color: #000;
	box-shadow: 2px 0 2px 0 rgba(0,0,0,.2);
	height: 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-left: 1.2em;
}
.mobile-menu-itself .separator::after {
	content: ":";
}
.mobile-menu-itself li > a,
.button-mobile-menu-close {
	display: block;
	box-sizing: border-box;
	padding: 6px 12px 5px 12px;
	outline: none;
	border: none;
	width: 100%;
	cursor: pointer;
	background: transparent;
	color: inherit;
	text-align: left;
	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;
	}
}
/* Vector icons */
.icon {
	width: 1em;
	height: 1em;
}
/* Dialog layout */
.dialog-layout[open] {
	box-sizing: border-box;
	background: transparent;
	max-width: none;
	max-height: none;
	width: 100%;
	height: 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-width: var(--content-max-width);
	padding-left: 16px;
	padding-right: 16px;
	margin-left: auto;
	margin-right: auto;
	gap: 16px;
}
.content {
	flex-grow: 1;
	max-width: 100%;
}
.sidebar {
	flex-shrink: 0;
	flex-grow: 0;
}
.sidebar > section:not(:first-child) {
	margin-top: 1rem;
}
/* Main content: wide */
@media all and (min-width: 1108px) {
	.content {
		order: 1;
	}
	.sidebar-1 {
		width: 250px;
		order: 0;
	}
	.sidebar-2 {
		width: 250px;
		order: 2;
	}
}
/* Main content: narrow */
@media not all and (min-width: 1108px) {
	.main-body {
		flex-direction: column;
	}
	.content {
		order: 0;
	}
	.sidebar-1 {
		width: 100%;
		order: 1;
	}
	.sidebar-2 {
		width: 100%;
		order: 2;
	}
}
/* .limit-content is a wrapper for normal content, which needs padding on narrow screens. */
/* .sheet is a wrapper for content with no padding (image slideshow, etc.). */
.limit-content,
.sheet {
	display: flow-root;
	max-width: var(--content-max-width);
	margin-left: auto;
	margin-right: auto;
}
@media not print {
	.limit-content {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	@media (min-width: 1600px) {
		.limit-content {
			padding-left: 90px;
			padding-right: 90px;
		}
	}
}
/* Hide on print. */
@media print {
	.hide-on-print { display: none !important; }
}
/* Show only on print. */
@media not print {
	.show-on-print { display: none !important; }
}
.ajax-form-result {
	display: none;
	background: #fbfbfb;
	color: #000;
	border: .1em solid #999;
	padding: .5em 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-top: 1em;
}
/* Template */
.top {
	padding-top: 19px;
	padding-bottom: 18px;
}
.l-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}
@media not print {
	@media (max-width: 1599px) {
		.l-top {
			padding-right: 72px;
		}
	}
}
.top-logo {
	font-size: 1.333rem;
	font-weight: bold;
}
.hl {
	color: #c8102e;
	font-weight: bold;
}
@media all and (prefers-color-scheme: dark) {
	.hl {
		color: #ef2e4d;
	}
}
.l-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	font-weight: 500;
	gap: 1em;
}
.main-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1em 2em;
	list-style: none;
}
@media all and (not (prefers-contrast: more)) {
	.main-menu a {
		text-decoration: none;
	}
}
.main-menu a:hover,
.main-menu a:focus {
	text-decoration: underline;
}
.primary-info {
	background: url("../images/primary-info-light.webp") center no-repeat #f5f5f5;
	padding-top: 2rem;
	padding-bottom: 2rem;
}
@media all and (prefers-color-scheme: dark) {
	.primary-info {
		background-color: #535353;
		background-image: url("../images/primary-info-dark.webp");
	}
}
@media all and (min-width: 1600px) {
	.primary-info {
		padding-top: 118px;
		padding-bottom: 191px;
	}
}
@media print {
	.primary-info {
		background: transparent;
	}
}
.l-primary-info {
	max-width: 934px;
	margin: 0 auto;
	padding-left: 1rem;
	padding-right: 1rem;
}
h1 {
	font-family: var(--heading-fonts);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: normal;
}
@media all and (min-width: 700px) {
	h1 {
		font-size: 2rem;
	}
}
@media all and (min-width: 1600px) {
	.front-page h1 {
		font-size: 66px;
		font-weight: 300;
	}
}
@media not all and (min-width: 1600px) {
	h1 {
		line-height: 1.5;
	}
}
h1 .hl {
	font-weight: 800;
}
.subtitle {
	font-size: 1.2rem;
	font-weight: normal;
	display: inline-block;
	background: #fff;
	padding: .5em 1em;
	border-radius: 2em;
	vertical-align: middle;
	line-height: normal;
}
.subtitle-hl {
	color: #c8102e;
	font-weight: 800;
}
@media all and (prefers-color-scheme: dark) {
	.subtitle {
		background: #000;
	}
	.subtitle-hl {
		color: #ef2e4d;
	}
}
@media print {
	.subtitle {
		background: transparent;
		padding: 0;
		border-radius: 0;
		white-space: nowrap;
	}
}
.primary-info-text {
	box-sizing: border-box;
	margin-top: 2em;
	font-size: 1.2rem;
}
@media not print {
	.primary-info-text {
		max-width: 614px;
	}
}
@media all and (min-width: 500px) {
	.primary-info-text {
		padding-left: 120px;
		background: url("../images/flag.png") left top no-repeat transparent;
		print-color-adjust: exact;
		min-height: 60px;
		line-height: 1.44;
	}
}
.top-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 15px;
	gap: 1em;
}
.top-icons > a {
	display: inline-block;
	width: 38px;
	height: 38px;
	color: #21252d;
	border: 1px solid #e4e4e4;
	border-radius: 50%;
	text-align: center;
	line-height: 38px;
	transition: color 300ms ease-out;
}
.top-icons > a:hover,
.top-icons > a:focus {
	color: #c8102e;
}
@media all and (prefers-color-scheme: dark) {
	.top-icons > a {
		color: #ddd;
	}
	.top-icons > a:hover,
	.top-icons > a:focus {
		color: #ef2e4d;
	}
}
.top-icons > a > svg {
	vertical-align: -6px;
}
.top-other {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 1.65em;
	align-items: center;
}
.button-1 {
	box-sizing: border-box;
	font-size: 1.06rem;
	font-weight: 600;
	display: inline-block;
	background: #012169;
	color: #fff;
	padding: 1em 1.5em;
	border-radius: .3em;
	text-align: center;
	text-decoration: none;
	transition: background-color 300ms ease-out;
}
.button-1:hover,
.button-1:focus {
	background-color: #0342cf;
}
@media all and (prefers-color-scheme: dark) {
	.button-1 {
		background: #fffdee;
		color: #000;
	}
	.button-1:hover,
	.button-1:focus {
		background-color: #f7ed8a;
	}
}
.button-2 {
	display: inline-block;
	border: 1px solid #e4e4e4;
	border-radius: .2em;
	padding: .5em 1em;
	background: transparent;
	text-decoration: none;
	transition: color 300ms ease-out;
}
.button-2:hover,
.button-2:focus {
	color: #cf2e48;
}
.info-list {
	display: flex;
	align-items: stretch;
	gap: .5em;
}
html:not(.alt-appearance) .info-list {
	max-width: 809px;
}
.info-list > li {
	box-sizing: border-box;
	list-style: none;
	background: url("../images/check-light.svg") 20px 24px / 22px auto no-repeat #fff;
	print-color-adjust: exact;
	padding: 16px 21px 16px 58px;
	border-radius: .3em;
	flex-grow: 1;
}
.info-list:not(:first-child) {
	margin-top: 2em;
}
@media all and (max-width: 789px) {
	.info-list {
		flex-wrap: wrap;
	}
	.info-list > li {
		background-position-y: 50%;
	}
}
@media all and (prefers-color-scheme: dark) {
	.info-list > li {
		background-image: url("../images/check-dark.svg");
		background-color: #000;
	}
}
@media print {
	.info-list > li {
		background-color: transparent;
	}
}
@media all and (min-width: 1600px) {
	.what {
		background: #f5f5f5;
		padding-top: 100px;
	}
	@media (prefers-color-scheme: dark) {
		.what {
			background: #535353;
		}
	}
}
@media not all and (min-width: 1600px) {
	.what {
		padding-top: 2rem;
	}
}
.l-what {
	background: #fff;
	padding-bottom: 2rem;
	border-radius: 1.6rem;
	position: relative;
	z-index: 1;
}
@media all and (prefers-color-scheme: dark) {
	.l-what {
		background: #000;
	}
}
@media all and (min-width: 1600px) {
	.l-what {
		padding-top: 90px;
		padding-bottom: 90px;
		display: flex;
		align-items: stretch;
		justify-content: space-between;
	}
	.l-what > div {
		flex-shrink: 0;
		flex-grow: 0;
		width: calc(50% - 40px);
	}
	.what h2 > .hl {
		display: block;
	}
}
@media not all and (min-width: 1600px) {
	.l-what > div:not(:first-child) {
		margin-top: 2rem;
	}
}
h2 {
	font-size: 1.4rem;
	font-weight: 500;
}
@media all and (min-width: 700px) {
	h2 {
		font-size: 1.65rem;
	}
}
@media all and (min-width: 1600px) {
	.front-page h2 {
		font-size: 41px;
		font-weight: 300;
	}
}
.what-subtitle {
	font-size: 1.2rem;
}
.what-subtitle:not(:first-child) {
	margin-top: 29px;
}
@media all and (min-width: 1600px) {
	.what-subtitle {
		padding-left: 117px;
		background: url("../images/stamp.png") 0 9px no-repeat transparent;
		min-height: 181px;
	}
}
.info-list-2 {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 10px;
	line-height: 1.46;
}
.info-list-2 > li {
	box-sizing: border-box;
	list-style: none;
	width: calc(50% - 10px);
	flex-shrink: 0;
	flex-grow: 0;
	background: url("../images/arrow-light.svg") 24px 21px no-repeat #f8f8f8;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 14px 20px 14px 55px;
}
.info-list-2 > li:nth-child(odd):last-child {
	width: 100%;
}
@media all and (prefers-color-scheme: dark) {
	.info-list-2 > li {
		background-color: #333;
		background-image: url("../images/arrow-dark.svg");
		border-color: #444;
	}
}
@media all and (max-width: 700px) {
	.info-list-2 > li {
		padding-left: 40px;
		background-position-x: 14px;
		width: 100%;
	}
}
.tariffs {
	background: url("../images/tariffs.webp") center / cover no-repeat #062870;
	color: #fff;
	padding-top: 2rem;
	padding-bottom: 2rem;
}
@media all and (min-width: 1600px) {
	.tariffs {
		margin-top: -92px;
		padding-top: 190px;
		padding-bottom: 150px;
	}
}
.tariffs-header > div {
	font-size: 1.2rem;
	font-weight: 500;
}
@media all and (min-width: 1078px) {
	.tariffs-header {
		display: flex;
		align-items: center;
	}
	.tariffs-header > * {
		box-sizing: border-box;
		width: 50%;
		flex-shrink: 0;
		flex-grow: 0;
	}
	.tariffs-header > h2 {
		padding-right: 1em;
	}
}
@media not all and (min-width: 1078px) {
	.tariffs-header > div:not(:first-child) {
		margin-top: 1em;
	}
}
.tariffs-types {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 20px;
}
.tariffs-types:not(:first-child) {
	margin-top: 2em;
}
.tariffs-types > div {
	box-sizing: border-box;
	background: #fff;
	color: #686C74;
	padding: 16px;
	border-radius: 13px;
	width: 340px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
}
@media all and (min-width: 1090px) and (max-width: 1449px) {
	.tariffs-types > div {
		width: calc((100% - 60px) / 4);
	}
}
@media all and (min-width: 1600px) {
	.tariffs-types > div {
		padding: 35px;
	}
}
@media all and (prefers-color-scheme: dark) {
	.tariffs-types > div {
		background: #000;
		color: #eee;
	}
}
.tariffs-controls {
	margin-top: auto;
	padding-top: 2em;
}
h3 {
	font-size: 1.4rem;
	font-weight: 500;
}
h3 .hl {
	font-weight: 800;
}
@media all and (min-width: 700px) {
	h3 {
		font-size: 1.5rem;
	}
}
@media all and (min-width: 1600px) {
	.front-page h3 {
		font-size: 30px;
		font-weight: 300;
	}
}
.tariffs-price {
	font-size: 1.2rem;
	color: #21252D;
}
@media all and (min-width: 700px) {
	.tariffs-price {
		font-size: 26px;
		font-weight: 300;
	}
}
@media all and (prefers-color-scheme: dark) {
	.tariffs-price {
		color: #fff;
	}
}
.tariffs-info:not(:first-child) {
	margin-top: 2rem;
}
.tariffs-info {
	margin-left: .9em;
}
.tariffs-info > li {
	list-style-type: "🗸";
	padding-left: 1em;
}
.tariffs-info > li::marker {
	color: #c8102e;
}
.tariffs-info > li:not(:first-child) {
	margin-top: .4em;
	border-top: 1px dashed #d7d7d7;
	padding-top: .4em;
}
@media all and (prefers-color-scheme: dark) {
	.tariffs-info > li::marker {
		color: #ef2e4d;
	}
}
.tariffs .button-1 {
	width: 100%;
}
.bottom {
	background: center top no-repeat #062365;
	color: #fff;
	padding-top: 2rem;
	padding-bottom: 2rem;
}
@media all and (min-width: 1600px) {
	.front-page .bottom {
		margin-top: -304px;
		padding-top: 400px;
		padding-bottom: 100px;
	}
}
@media all and (min-width: 1400px) {
	.bottom {
		background-image: url("../images/footer.webp");
	}
	.l-bottom {
		display: flex;
	}
	.l-bottom > div {
		box-sizing-border-box;
		width: 50%;
	}
	.l-bottom > div:first-child {
		padding-right: 2rem;
	}
	.bottom-text {
		max-width: 430px;
	}
}
@media all and (min-width: 1400px) {
	.l-bottom > div:not(:first-child) {
		margin-top: 2rem;
	}
}
.bottom h2 {
	line-height: 1.2;
}
.bottom-hl {
	font-weight: 800;
}
.bottom-text {
	font-size: 1.2rem;
}
.bottom-text:not(:first-child) {
	margin-top: 2rem;
}
.bottom-email,
.bottom-phone {
	font-size: 30px;
}
.bottom-email:not(:first-child) {
	margin-top: 2rem;
}
.bottom-phone:not(:first-child) {
	margin-top: 1rem;
}
.bottom-phone > a {
	text-decoration: none;
}
.bottom-phone > a:hover,
.bottom-phone > a:focus {
	text-decoration: underline;
}
.bottom-copyright:not(:first-child) {
	margin-top: 2rem;
}
@media all and (min-width: 1400px) {
	.bottom-copyright:not(:first-child) {
		margin-top: 3rem;
	}
}
.bottom-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 15px;
	gap: 1em;
}
.bottom-icons:not(:first-child) {
	margin-top: 2rem;
}
.bottom-icons > a {
	display: inline-block;
	background: #fff;
	width: 58px;
	height: 58px;
	color: #21252d;
	border: 1px solid #e4e4e4;
	border-radius: 50%;
	text-align: center;
	line-height: 58px;
	transition: color 300ms ease-out, border-color 300ms ease-out, background-color 300ms ease-out;
}
.bottom-icons > a:hover,
.bottom-icons > a:focus {
	color: #c8102e;
}
.bottom-icons > a > svg {
	vertical-align: -6px;
}
.form-unit:not(:first-child) {
	margin-top: 2rem;
}
.button-submit {
	background: #fff;
	color: #012169;
	padding: 1em 2em;
	border-radius: .2em;
	border: none;
	font-weight: 600;
	transition: background-color 300ms ease-out, color 300ms ease-out;
}
@media all and (prefers-color-scheme: light) {
	.button-submit:hover,
	.button-submit:focus {
		color: #0342cf;
	}
}
@media all and (prefers-color-scheme: dark) {
	.button-submit {
		background: #fffdee;
		color: #000;
	}
	.button-submit:hover,
	.button-submit:focus {
		background-color: #f7ed8a;
	}
}
.form-input {
	font-size: 1.2rem;
	font-weight: 500;
	margin-top: .3em;
	width: 100%;
	padding: .5em 1em;
	border: none;
	border-radius: .2em;
	background: #d8dde8;
	color: #000;
}
textarea.form-input {
	height: 6.7em;
	resize: vertical;
}
.contact-form {
	font-size: 1.06em;
}
@media all and (min-width: 480px) {
	.form-unit._submit {
		display: flex;
		align-items: center;
		gap: 32px;
	}
	.form-note {
		order: 1;
		flex-grow: 1;
	}
}
@media not all and (min-width: 480px) {
	.form-note {
		display: block;
		margin-bottom: 2rem;
	}
}
@media all and (prefers-color-scheme: dark) {
	.form-input {
		background-color: #000;
		color: #fff;
	}
}
.bottom-docs:not(:first-child) {
	margin-top: 2rem;
}
@media all and (min-width: 1400px) {
	.bottom-docs:not(:first-child) {
		margin-top: 3rem;
	}
}
@media all and (min-width: 480px) {
	.bottom-docs {
		display: flex;
	}
	.bottom-docs > a {
		box-sizing: border-box;
		width: 50%;
	}
	.bottom-docs > a:first-child {
		padding-right: 1rem;
	}
}
.services {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background: 50% 181px no-repeat #f4f4f4;
}
.services-end-text {
	font-family: var(--heading-fonts);
	font-size: 1.65rem;
	line-height: normal;
}
.services-end-text:not(:first-child) {
	margin-top: 1em;
}
@media all and (min-width: 1600px) {
	.services-end-text {
		font-size: 41px;
		font-weight: 300;
	}
}
@media all and (min-width: 1600px) {
	.services {
		padding-top: 158px;
		padding-bottom: 488px;
		background-image: url("../images/services.webp");
	}
	.services h2,
	.services-end-text {
		line-height: 1.15;
	}
	.services h2 > .hl,
	.services-end-text > .hl {
		display: block;
	}
	.l-services > * {
		margin-left: 240px;
	}
}
@media all and (prefers-color-scheme: dark) {
	.services {
		background-color: #333;
	}
}
details {
	background: #fff;
	padding: 1em;
	border: 1px solid #eee;
	border-radius: .3em;
}
.services details:not(:first-child) {
	margin-top: 2.8rem;
}
details + details {
	margin-block-start: 3px !important;
}
summary {
	cursor: pointer;
	list-style: none;
	font-size: 1.33rem;
}
summary::before {
	content: "";
	float: inline-end;
	speak: never;
	width: 13px;
	height: 7px;
	background: url("../images/details-closed.svg") left top / 12px 6px no-repeat transparent;
}
details[open] > summary {
	color: #c8102e;
}
details[open] > summary::before {
	background-image: url("../images/details-open.svg");
}
@media all and (min-width: 1600px) {
	details {
		padding: 1.3em;
		line-height: 1.46;
	}
}
@media all and (prefers-color-scheme: dark) {
	details {
		background: #000;
		border-color: #6a6a6a;
	}
	summary::before {
		background-image: url("../images/details-closed-dark.svg");
	}
	details[open] > summary {
		color: #ef2e4d;
	}
	details[open] > summary::before {
		background-image: url("../images/details-open-dark.svg");
	}
}
.consult {
	font-size: 1.2rem;
}
.l-consult {
	background: url("../images/consult.webp") center / cover no-repeat #082870;
	color: #fff;
	padding-top: 2rem;
	padding-bottom: 2rem;
	position: relative;
	z-index: 1;
}
@media all and (min-width: 1451px) {
	.l-consult {
		border-radius: 1.6rem;
	}
}
.consult-hl {
	font-weight: 800;
}
@media all and (min-width: 1600px) {
	.l-consult {
		margin-top: -338px;
	}
	.l-consult {
		padding-top: 91px;
		padding-bottom: 100px;
	}
	.consult-hl {
		display: block;
	}
}
@media all and (min-width: 930px) {
	.consult-item {
		padding-left: 207px;
		background: url("../images/consult-decor.webp") left top no-repeat transparent;
		min-height: 143px;
	}
}
.button-3 {
	box-sizing: border-box;
	font-size: 1.06rem;
	font-weight: 600;
	display: inline-block;
	background: #fff;
	color: #012169;
	padding: 1em 1.5em;
	border-radius: .3em;
	text-align: center;
	text-decoration: none;
	transition: background-color 300ms ease-out;
}
@media all and (prefers-color-scheme: light) {
	.button-3:hover,
	.button-3:focus {
		color: #0342cf;
	}
}
@media all and (prefers-color-scheme: dark) {
	.button-3 {
		background: #fffdee;
		color: #000;
	}
	.button-3:hover,
	.button-3:focus {
		background-color: #f7ed8a;
	}
}
.consult p:not(:first-child) {
	margin-top: 2em;
}
@media all and (min-width: 1600px) {
	.consult p {
		max-width: 680px;
	}
}
.company-types {
	padding-top: 2rem;
	padding-bottom: 2rem;
	font-size: 1.2rem;
	position: relative;
}
@media all and (min-width: 1600px) {
	.company-types {
		padding-top: 150px;
		padding-bottom: 150px;
	}
}
.company-types-item {
	display: flex;
	gap: 1em;
	align-items: start;
}
.company-types-item:not(:first-child) {
	margin-top: 1em;
}
.company-type-name {
	display: inline-block;
	font-size: 1.06rem;
	font-weight: 500;
	border: 1px solid #efc8cf;
	border-radius: .2em;
	width: 2em;
	padding: .5em;
	color: #c8102e;
	margin-right: .7em;
	flex-grow: 0;
	flex-shrink: 0;
}
@media all and (prefers-color-scheme: dark) {
	.company-type-name {
		color: #ef2e4d;
	}
}
@media all and (min-width: 1600px) {
	.l-company-types {
		display: flex;
		justify-content: space-between;
	}
	.l-company-types > div:first-child {
		flex-grow: 1;
		max-width: 560px;
	}
	.l-company-types > div:last-child {
		width: calc(50% - 10px);
		flex-shrink: 0;
	}
	.company-types::after {
		content: "";
		speak: never;
		position: absolute;
		z-index: 2;
		width: 234px;
		height: 226px;
		left: calc(50% - 251px);
		top: calc(100% - 140px);
		background: url("../images/uk2go.png") left top no-repeat transparent;
	}
}
@media not all and (min-width: 1600px) {
	.l-company-types > div:not(:first-child) {
		margin-top: 2rem;
	}
}
.requirements {
	padding-top: 2rem;
	padding-bottom: 2rem;
	font-size: 1.2rem;
	background: #f4f4f4;
}
@media all and (min-width: 1600px) {
	.requirements {
		padding-top: 150px;
		padding-bottom: 977px;
	}
}
@media all and (prefers-color-scheme: dark) {
	.requirements {
		background-color: #575757;
	}
}
@media all and (min-width: 1600px) {
	.l-requirements {
		display: flex;
		justify-content: space-between;
	}
	.l-requirements > div:first-child {
		flex-grow: 1;
		max-width: 560px;
	}
	.l-requirements > div:last-child {
		width: calc(50% - 10px);
		flex-shrink: 0;
	}
}
@media not all and (min-width: 1600px) {
	.l-requirements > div:not(:first-child) {
		margin-top: 2rem;
	}
}
.requirements-info > li {
	list-style-image: url("../images/arrow-light.svg");
	padding-left: 17px;
}
.requirements-info > li:not(:first-child) {
	margin-top: 1em;
	border-top: 1px solid #e6e6e6;
	padding-top: 1em;
}
@media all and (prefers-color-scheme: dark) {
	.requirements-info > li {
		list-style-image: url("../images/arrow-dark.svg");
	}
}
@media not all and (min-width: 1600px) {
	.requirements-info {
		margin-inline-start: 1.2em;
	}
}
.stats {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background: #fff;
	position: relative;
	z-index: 1;
}
.stats h2 {
	text-align: center;
}
.stats h2 > .hl,
.stats h3 > .hl,
.stats h2 > b {
	font-weight: 800;
}
@media all and (min-width: 1600px) {
	.stats {
		margin-top: -827px;
		padding-top: 97px;
		padding-bottom: 100px;
		border-radius: 1.6rem;
	}
	.stats h2 {
		line-height: 1.2;
	}
	.stats h2 > .hl {
		display: block;
	}
}
@media all and (prefers-color-scheme: dark) {
	.stats {
		background: #333;
	}
}
.stats-items {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 20px;
	font-size: 1.2rem;
}
.stats-items > div {
	box-sizing: border-box;
	max-width: 100%;
	flex-grow: 1;
	flex-shrink: 0;
	background: #f8f8f8;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 1rem;
}
.stats-items > div:nth-child(odd):last-child {
	width: 100%;
}
@media all and (prefers-color-scheme: dark) {
	.stats-items > div {
		background-color: #464646;
		border-color: #6a6a6a;
	}
}
@media all and (min-width: 1600px) {
	.stats-items > div {
		width: 700px;
		padding: 2rem;
	}
	.stats-items:not(:first-child) {
		margin-top: 4rem;
	}
}
@media not all and (min-width: 1600px) {
	.stats-items > div {
		width: 350px;
	}
	.stats-items:not(:first-child) {
		margin-top: 2rem;
	}
}
.stats-controls:not(:first-child) {
	margin-top: 2rem;
}
@media all and (min-width: 1600px) {
	.stats-controls:not(:first-child) {
		margin-top: 3rem;
	}
}
/* Offer */
.dialog-offer > .dialog-layout-inner {
	box-sizing: border-box;
	padding: 16px;
	background: rgba(38,117,158,.5) right top no-repeat;
	backdrop-filter: blur(15px);
	color: #fff;
	position: relative;
	max-width: 923px;
}
.dialog-offer-title {
	font-size: 21px;
	font-weight: bold;
	line-height: 1.17;
	color: #c7e2ec;
}
.dialog-offer-subtitle {
	margin-top: 17px;
	font-size: 21px;
	font-weight: bold;
	line-height: normal;
}
.dialog-offer-sum {
	box-sizing: border-box;
	margin-top: 45px;
	box-sizing: border-box;
	background: #32899d;
	color: #fff;
	padding: 16px;
	border-radius: 5px;
	font-size: 20px;
	font-weight: bold;
}
.dialog-offer-sum del {
	text-decoration: line-through;
	text-decoration-thickness: 2px;
}
.dialog-offer-contact-label {
	margin-top: 50px;
	font-size: 18px;
	font-weight: bold;
}
.dialog-offer-contact-links {
	margin-top: 18px;
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 1em;
}
.dialog-offer .soc-icon {
	display: inline-block;
	outline: none;
}
.dialog-offer .soc-icon:focus-visible {
	filter: drop-shadow(0 0 2px rgba(255,255,255,.75))
}
@media all and (min-width: 1000px) {
	.dialog-offer > .dialog-layout-inner {
		padding: 59px 407px 32px 65px;
		background-image: url("../images/dialog-1.webp");
	}
	.dialog-offer-title {
		font-size: 40px;
	}
	.dialog-offer-sum {
		font-size: 22px;
	}
	.dialog-offer-subtitle {
		font-size: 26px;
	}
}
@media not all and (min-width: 1000px) {
	.dialog-offer-sum {
		width: 100%;
	}
}
.normal-content {
	font-size: 18px;
	padding-block: 2em;
	background: #fcfcfc;
	color: #000;
	margin-block: 1em 0;
}
@media all and (min-width: 1454px) {
	.normal-content {
		border-radius: 1em;
		border: 1px solid #eee;
		margin-block-end: 2em;
	}
}
@media all and (prefers-color-scheme: dark) {
	.normal-content {
		background: #222;
		color: #fff;
		border-color: #444;
	}
}
.article-index {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 1em;
}
.article-index:not(:first-child) {
	margin-block-start: 1em;
}
@media all and (min-width: 800px) {
	.article-index > article {
		width: calc((100% - 1em) / 2);
		flex-shrink: 0;
		flex-grow: 0;
	}
}
.illustration {
	text-align: center;
}
.illustration:not(:first-child) {
	margin-block-start: 1em;
}
.bl {
	text-decoration: none;
}
.site-contacts {
	position: fixed;
	z-index: 8;
	right: 16px;
	bottom: 32px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1em;
	font-size: 20px;
}
.site-contacts > a {
	display: inline-block;
	box-sizing: border-box;
	background: #012169;
	color: #fff;
	padding: .5em;
	border: 1px solid #011542;
	border-radius: 2em;
	box-shadow: 2px 2px 2px 0 rgba(0,0,0,.2);
	text-decoration: none;
	transition: background-color 300ms ease-out;
}
.site-contacts > a:hover,
.site-contacts > a:focus {
	background: #011542;
}
.site-contacts > a:focus-visible {
	text-decoration: underline;
	outline: none;
}
@media all and (max-width: 400px) {
	body {
		padding-bottom: 60px;
	}
	.site-contacts {
		width: 100%;
		right: 0;
		bottom: 0;
	}
	.site-contacts > a {
		width: 100%;
		flex-shrink: 0;
		text-align: center;
		border-radius: 0;
		box-shadow: 0 -2px 2px 0 rgba(0,0,0,.2);
		border-left: none;
		border-right: none;
		border-bottom: none;
	}
}
.textslider {
	position: relative;
	overflow: hidden;
}
.textslider::after {
	content: "";
	display: table;
	clear: both;
}
.textslider > ul > li {
	margin: 0 !important;
	list-style: none;
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	line-height: 1.2em;
	transition: left .5s;
}
.textslider > ul > .active {
	left: 0;
}
.textslider > ul > li > * {
	font: inherit;
	color: inherit;
	text-transform: none;
	padding: 0;
	margin: 0;
	border: none;
}
