@font-feature-values "Inter", "Inter Variable" {
	@character-variant {
		legible-lower-l: 5;
		legible-upper-i: 8;
	}
}
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-display: swap;
	src: local("Inter Variable"), local("InterVariable"),
		url("../fonts/regular-var.woff2") format("woff2-variations");
}
@font-face {
	font-family: "Inter";
	font-style: italic;
	font-display: swap;
	src: local("Inter Variable Italic"), local("InterVariableItalic"),
		url("../fonts/regular-var.woff2") format("woff2-variations");
}
* {
	font: inherit;
	margin: 0;
	padding: 0;
}
html {
	--base-fonts: "Inter", system-ui, sans-serif;
	--heading-fonts: "Inter", system-ui, sans-serif;
	--content-max-width: 1368px;
	color-scheme: light dark;
	background: light-dark(#f2f2f2, #333);
	color: light-dark(#000, #ccc);
	font-family: var(--base-fonts);
	font-variant-alternates: character-variant(legible-lower-l, legible-upper-i);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
}
@media all and (max-width: 500px) {
	html {
		hyphens: auto;
		overflow-wrap: break-word;
	}
}
html.big-text {
	font-size: max(1rem, 22px);
}
@media all and (prefers-color-scheme: dark) and (prefers-contrast: more) {
	html {
		background-color: #000;
		color: #fff;
	}
}
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: 1.5rem;
	font-weight: bold;
}
h1:not([class]) {
	font-size: 1.5rem;
	font-weight: bold;
}
@media all and (min-width: 1368px) {
	h1:not([class]) {
		font-size: 44px;
	}
}
h2:not([class]) {
	font-size: 1.3rem;
	font-weight: 600;
}
@media all and (min-width: 1368px) {
	h2:not([class]) {
		font-size: 30px;
	}
}
/* 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;
}
/* Spoilers */
summary {
	cursor: pointer;
}
/* When to show what */
.mobile-nav-button {
	display: none;
}
@media not all and (min-width: 1368px) {
	.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: .05em 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: #4d4b45;
		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;
	}
}
/* 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;
}
/* .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);
	}
}
.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;
}
/* Template */
.top {
	font-size: 1.1rem;
	padding-block: 1em;
}
.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-inline-end: 72px;
		}
	}
}
@media print {
	nav {
		display: none !important;
	}
}
.top-logo {
	font-size: 20px;
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 10px;
}
.top-logo > * {
	flex-shrink: 0;
}
.top-logo > span > span {
	display: block;
}
.top-logo > span > span:first-child {
	color: light-dark(#37393c, #fff);
	font-size: 26px;
}
.top-logo > span > span:nth-child(2) {
	color: light-dark(#9fa1a4, #ccc);
}
.main-menu {
	font-size: .9411rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2em;
}
.main-menu > li {
	list-style: none;
}
.main-menu > li > a {
	text-decoration: none;
	transition: color 300ms ease-out;
}
.main-menu > li > a:hover,
.main-menu > li > a:focus {
	color: light-dark(#34a853, #5de180);
	text-decoration: underline;
}
.front-info {
	font-size: 1.1764rem;
	border-radius: 24px;
	background: url("../images/front-info.webp") center / cover no-repeat #212225;
	color: #fff;
	padding: 32px;
}
@media all and (min-width: 1368px) {
	.front-info {
		padding: 111px 103px;
		background-image: url("../images/phone.webp"), url("../images/front-info.webp");
		background-position: right 119px bottom 0, center;
		background-repeat: no-repeat, no-repeat;
		background-size: auto, cover;
	}
	.front-info-text {
		max-width: 666px;
	}
	.front-info-text p:not(:first-child) {
		margin-block-start: 2em;
	}
}
main:not(:first-child),
.front-info:not(:first-child),
.bottom:not(:first-child) {
	margin-block-start: 1em;
}
.bottom {
	font-size: .8823rem;
	padding-block: 2em 4em;
	color: light-dark(#37393c, #bbb);
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1em;
}
.bottom-docs {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1em 3em;
	color: light-dark(#87888a, #999);
}
.button-1 {
	display: inline-block;
	border: none;
	font-size: 1rem;
	background: #28feaf;
	color: #202124;
	padding: 1em 2em;
	border-radius: 5em;
	text-decoration: none;
	transition: background-color 300ms ease-out, color 300ms ease-out;
}
.button-1:hover,
.button-1:focus {
	background-color: light-dark(#fff, #3bbd8d);
	color: light-dark(#202124, #000);
}
.button-1:focus {
	text-decoration: underline;
}
.why:not(:first-child) {
	margin-block-start: 32px;
}
@media all and (min-width: 1368px) {
	.why:not(:first-child) {
		margin-block-start: 100px;
	}
}
.why-list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 11px;
	counter-reset: why-list-number;
}
.why-list:not(:first-child) {
	margin-block-start: 30px;
}
.why-list > li {
	font-size: 1.29411;
	line-height: 1.2727;
	list-style: none;
	box-sizing: border-box;
	background: light-dark(#e7f3ef, #3a423f);
	color: light-dark(#37393c, #eee);
	padding: 32px;
	border-radius: 22px;
	flex-shrink: 0;
	width: 372px;
	max-width: 100%;
	position: relative;
	counter-increment: why-list-number;
}
.why-list > li::before {
	color: light-dark(#34a853, #89dfa0);
	font-size: 16px;
	content: "0" counter(why-list-number);
	speak: never;
	pointer-events: none;
	position: absolute;
	z-index: 1;
	top: 40px;
	right: 33px;
}
@media all and (min-width: 1300px) {
	.why-list > li {
		width: calc((100% - 33px) / 4);
	}
}
@media not all and (min-width: 1300px) {
	.why-list > li {
		flex-grow: 1;
	}
}
.services:not(:first-child) {
	margin-block-start: 32px;
}
@media all and (min-width: 1368px) {
	.services:not(:first-child) {
		margin-block-start: 100px;
	}
}
.services-list:not(:first-child) {
	margin-block-start: 30px;
}
.services-list {
	border-radius: 24px;
	background: url("../images/why.webp") top center / cover no-repeat #212225;
	color: #fff;
	padding: 32px;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 32px 0;
}
.services-list > li {
	box-sizing: border-box;
	list-style: none;
	padding-left: 129px;
	background: left top / 113px 113px no-repeat transparent;
	min-height: 113px;
}
.services-list > li:first-child {
	background-image: url('../images/services-1.svg');
}
.services-list > li:nth-child(2) {
	background-image: url('../images/services-2.svg');
}
.services-list > li:nth-child(3) {
	background-image: url('../images/services-3.svg');
}
.services-list > li:nth-child(4) {
	background-image: url('../images/services-4.svg');
}
@media all and (min-width: 994px) {
	.services-list > li {
		width: 50%;
	}
	.services-list > li:nth-child(odd) {
		padding-inline-end: 32px;
	}
}
@media not all and (min-width: 994px) {
	.services-list > li {
		flex-grow: 1;
	}
}
.services-list h3 {
	font-size: 1.3rem;
	font-weight: bold;
}
@media all and (min-width: 1368px) {
	.services-list {
		padding: 123px 128px;
	}
	.services-list {
		gap: 96px 0;
	}
	.services-list h3 {
		font-size: 30px;
	}
}
@media all and (max-width: 540px) {
	.services-list > li {
		padding-top: 129px;
		padding-left: 0;
		background-position: center top;
		min-height: auto;
	}
}
.how:not(:first-child) {
	margin-block-start: 32px;
}
@media all and (min-width: 1368px) {
	.how:not(:first-child) {
		margin-block-start: 100px;
	}
}
.how-list:not(:first-child) {
	margin-block-start: 30px;
}
.how-list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 10px;
}
.how-list > li {
	box-sizing: border-box;
	width: 219px;
	list-style: none;
	flex-grow: 1;
	background: light-dark(#fff, #222);
	color: light-dark(#37393c, #ddd);
	padding-block: 32px 30px;
	padding-inline: 20px;
	border-radius: 20px;
}
.how-list p:not(:first-child) {
	margin-block-start: 2em;
}
.button-2 {
	box-sizing: border-box;
	display: inline-block;
	font-size: 1rem;
	background: #28feaf;
	color: #202124;
	padding: .8em;
	border: none;
	border-radius: 5em;
	text-align: center;
	text-decoration: none;
	width: 100%;
	transition: background-color 300ms ease-out, color 300ms ease-out;
}
.button-2:hover,
.button-2:focus {
	background-color: light-dark(#fff, #3bbd8d);
	color: light-dark(#202124, #000);
}
.button-2:focus {
	text-decoration: underline;
}
.how-decor:not(:last-child) {
	margin-block-end: 78px;
}
.how-decor {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}
.how-list > li:last-child > .how-decor {
	justify-content: flex-end;
}
.how-list > li:last-child {
	font-size: 1.6em;
	background: light-dark(#34a853, #298642);
	color: #fff;
	line-height: normal;
}
.prices:not(:first-child) {
	margin-block-start: 32px;
}
@media all and (min-width: 1368px) {
	.prices:not(:first-child) {
		margin-block-start: 100px;
	}
}
.prices-items:not(:first-child) {
	margin-block-start: 1em;
}
@media all and (min-width: 1368px) {
	.prices-items:not(:first-child) {
		margin-block-start: 2em;
	}
}
.prices-items {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
}
.prices-items > article {
	box-sizing: border-box;
	width: 449px;
	max-width: 100%;
	padding: 32px;
	border-radius: 24px;
	background: center / cover no-repeat #404346;
	color: #d7d7d8;
}
.prices-items > article:first-child {
	background-image: url("../images/prices-1.webp");
}
.prices-items > article:nth-child(2) {
	background-image: url("../images/prices-2.webp");
}
.prices-items > article:nth-child(3) {
	background-image: url("../images/prices-3.webp");
}
.prices h3 {
	color: #ffc444;
	font-weight: 600;
	font-size: 1.3rem;
}
@media all and (min-width: 1368px) {
	.prices h3 {
		font-size: 30px;
	}
}
.prices ul {
	line-height: 1.2;
}
@media all and (min-width: 456px) {
	.prices-items > article > header {
		padding-left: 126px;
		background: left top / 84px 84px no-repeat transparent;
		min-height: 84px;
	}
	.prices-items > article:first-child > header {
		background-image: url("../images/prices-icon-1.svg");
	}
	.prices-items > article:nth-child(2) > header {
		background-image: url("../images/prices-icon-2.svg");
	}
	.prices-items > article:nth-child(3) > header {
		background-image: url("../images/prices-icon-3.svg");
	}
}
.prices-items-controls:not(:first-child) {
	margin-block-start: 1em;
}
@media all and (min-width: 1061px) {
	.prices-items-controls:not(:first-child) {
		margin-block-start: 3em;
	}
}
.prices-items-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}
.prices-value {
	font-size: 30px;
	font-weight: 600;
}
.prices-value-local {
	font-size: 20px;
}
.faq:not(:first-child) {
	margin-block-start: 32px;
}
@media all and (min-width: 1368px) {
	.faq:not(:first-child) {
		margin-block-start: 100px;
	}
}
.faq h2 {
	text-align: center;
	margin-block-end: 2rem;
}
details {
	background: light-dark(#fff, #222);
	color: light-dark(#111, #eee);
	padding: 1em;
	border-radius: 10px;
}
@media all and (min-width: 1368px) {
	details {
		padding: 1em 2em;
	}
}
.faq details + details {
	margin-block-start: 6px;
}
details[open] > summary {
	color: light-dark(#34a853, #5de180);
}
.contact:not(:first-child) {
	margin-block-start: 32px;
}
@media all and (min-width: 1368px) {
	.contact:not(:first-child) {
		margin-block-start: 100px;
	}
}
.contact {
	padding: 32px;
	background: url("../images/form.webp") center / cover no-repeat #202124;
	color: #fff;
	border-radius: 24px;
}
@media all and (min-width: 1000px) {
	.contact {
		background: url("../images/form-decor.png") calc(50% + 376px) 50% no-repeat, url("../images/form.webp") center / cover no-repeat #202124;
	}
}
@media all and (min-width: 1368px) {
	.contact {
		padding: 80px 128px;
	}
}
.contact h2 {
	margin-block-end: 2rem;
}
.contact-form:not(:first-child) {
	margin-block-start: 2em;
}
.contact-form {
	width: 493px;
	max-width: 100%;
}
@media not all and (min-width: 1000px) {
	.contact-form {
		width: 100%;
	}
}
.form-unit:not(:first-child) {
	margin-block-start: 12px;
}
.form-unit._submit:not(:first-child) {
	margin-block-start: 24px;
}
.form-unit textarea,
.form-unit input[type="text"],
.form-unit input[type="tel"],
.form-unit input[type="email"],
.form-unit input[type="text"] {
	margin-block-start: .2em;
	width: 100%;
	padding: .5em 1em;
	border-radius: 9px;
	background: light-dark(#fff, #111);
	color: light-dark(#000, #eee);
	border: none;
}
.form-unit textarea {
	resize: vertical;
	height: 120px;
}
.m-ask {
	position: fixed;
	z-index: 9;
	right: 16px;
	bottom: 16px;
}
.m-ask > a {
	display: block;
	text-decoration: none;
	border-radius: 1.5em;
	padding: .5em 1em;
	background: #1ca874;
	color: #fff;
	box-shadow: 1px 1px 1px 0 rgba(0,0,0,.3);
	transition: background-color 300ms ease-out;
}
.m-ask > a:focus-visible {
	text-decoration: underline;
}
.m-ask > :hover,
.m-ask > a:focus {
	background-color: #188f61;
}
.language-selector {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}
.language-selector > li {
	list-style: none;
}
.language-selector > li > a {
	text-decoration: none;
}
.language-selector > li > a:hover,
.language-selector > li > a:focus-visible {
	text-decoration: underline;
}
.language-selector > li > a.selected {
	text-decoration: underline;
}
