* {
	font: inherit;
	margin: 0;
	padding: 0;
}
html {
	--base-fonts: "IBM Plex Sans", "Noto Sans", "Roboto", system-ui, sans-serif;
	--heading-fonts: "IBM Plex Sans", "Noto Sans", "Roboto", system-ui, sans-serif;
	--content-max-width: 1520px;
	color-scheme: light dark;
	background: light-dark(#f0f0f0, #333);
	color: light-dark(#000, #ccc);
	font-family: var(--base-fonts);
	font-size: 18px;
	line-height: 1.4;
}
html.big-text {
	font-size: max(1rem, 22px);
}
body {
	min-inline-size: 320px;
	max-inline-size: 1920px;
	margin-inline: auto;
}
@media all and (max-width: 500px) {
	html {
		hyphens: auto;
		overflow-wrap: break-word;
	}
}
[hidden] {
	display: none !important;
}
/* Hierarchy */
article,
aside,
main,
section,
header,
footer {
	display: flow-root;
}
article,
aside {
	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: 600;
}
h2:not([class]) {
	font-size: 1.5rem;
	font-weight: 600;
}
h3:not([class]) {
	font-size: 1.25rem;
	font-weight: 500;
}
@media all and (min-width: 1520px) {
	h1:not([class]) {
		font-size: 65px;
		line-height: 1.1;
	}
	h2:not([class]) {
		font-size: 54px;
		line-height: 1.1;
	}
	h3:not([class]) {
		font-size: 38px;
		line-height: 1.1;
	}
}
/* Links */
a img {
	border: none;
}
a {
	color: inherit;
	text-decoration: underline;
}
:where(main) a {
	color: light-dark(#0e3add, #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 print {
	dialog { display: none; }
}
/* Forms */
fieldset {
	border: 1px dashed light-dark(#ccc, #a9a9a9);
	padding: 1em;
}
@media all and (prefers-contrast: more) {
	fieldset {
		border-color: light-dark(#000, #fff);
	}
}
input,
textarea,
select,
option,
button {
	box-sizing: border-box;
}
input:not([type="checkbox"], [type="radio"], [type="range"]),
textarea {
	padding: .2em .5em;
}
button {
	padding: .25em 1em;
}
select {
	padding-block: .25em;
	padding-inline: .25em .8em;
}
option {
	padding: .2em;
}
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 light-dark(#7e7e7e, #e6e6e6);
}
tfoot {
	border-block-start: .1em solid light-dark(#7e7e7e, #e6e6e6);
}
@media all and (prefers-contrast: more) {
	thead {
		border-block-end-color: light-dark(#000, #fff);
	}
	tfoot {
		border-block-start-color: light-dark(#000, #fff);
	}
}
tbody > tr:nth-child(even) {
	background: light-dark(rgba(0,0,0,.08), rgba(255,255,255,.08));
	color: light-dark(#000, #fff);
}
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;
	}
}
/* Quotations */
blockquote:not([class]) {
	padding-inline-start: 1em;
	border-inline-start: 4px solid light-dark(#ddd, #909090);
}
@media all (prefers-contrast: more) {
	blockquote:not([class]) {
		border-inline-start-color: light-dark(#000, #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 {
	font-size: 1.333rem;
	font-weight: 500;
	cursor: pointer;
}
summary + div[itemscope][itemprop="acceptedAnswer"] {
	margin-block-start: 1em;
}
.menu-horizontal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1em;
}
.menu-horizontal li {
	list-style: none;
	position: relative;
}
.menu-horizontal li:hover > ul,
.menu-horizontal ul:hover,
.menu-horizontal > li:focus-within > ul,
.menu-horizontal > li li:focus-within > ul {
	display: block;
}
.menu-horizontal > li {
	display: inline-block;
}
.menu-horizontal > li ul {
	display: none;
	position: absolute;
}
.menu-horizontal > li > ul {
	inset-inline-start: 0;
	inset-block-start: 100%;
}
.menu-horizontal > li > ul ul {
	inset-inline-start: 100%;
	inset-block-start: 0;
}
.menu-horizontal > li li > :first-child {
	display: block;
	padding-block: .2em;
	padding-inline: .5em;
}
.menu-horizontal .nav-header {
	cursor: default;
}
/* When to show what */
.mobile-nav-button {
	display: none;
}
@media not all and (min-width: 1520px) {
	.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: light-dark(#fff, #161616);
	color: light-dark(#000, #f0f0f0);
	border: .05em solid light-dark(#333, #ccc);
	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: light-dark(#333, #ccc);
	color: light-dark(#fff, #000);
}
.page-controls-button > svg {
	vertical-align: -.15em;
}
@media all and (prefers-contrast: more) {
	.page-controls-button {
		border-color: light-dark(#000, #fff);
		background-color: light-dark(#fff, #000);
		color: light-dark(#000, #fff);
	}
	.page-controls-button:hover,
	.page-controls-button:focus {
		background-color: light-dark(#000, #fff);
	}
}
/* 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: light-dark(#f8f8f8, #4d4b45);
	color: light-dark(#000, #fff);
	box-shadow: 2px 0 2px 0 rgba(0,0,0,.2);
	block-size: 100%;
	overflow: auto;
	overscroll-behavior: contain;
}
@media all and (prefers-contrast: more) {
	.mobile-menu {
		background-color: light-dark(#f8f8f8, #2a2926);
	}
}
/* 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;
}
/* 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: light-dark(#f0f0f0, #333);
	color: light-dark(#000, #fff);
	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-contrast: more) {
	.dialog-layout-inner {
		background: light-dark(#fff, #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);
	}
}
/* Template */
.top {
	color-scheme: dark;
	background: url("../images/bg.webp") center / cover no-repeat #111;
	color: #ccc;
}
.l-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding-block: 1.5rem;
	border-block-end: 1px solid rgba(255,255,255,.14);
}
@media not print {
	@media (max-width: 1599px) {
		.l-top {
			padding-inline-end: 72px;
		}
	}
}
@media print {
	nav {
		display: none !important;
	}
}
.logo {
	display: flex;
	align-items: center;
	gap: 1em;
}
.site-name {
	font-size: 1.2rem;
	font-weight: bold;
}
.slogan {
	font-size: .9rem;
}
.bottom {
	color-scheme: dark;
	font-size: .8rem;
	padding-block: 1rem;
	background: #1e1e1e;
	color: #ccc;
}
main > section {
	padding-block: 1.5rem;
}
main > section:nth-child(even) {
	background: light-dark(#fff, #111);
	color: light-dark(#000, #ccc);
}
@media all and (min-width: 1200px) {
	main > section {
		padding-block: 5rem;
	}
}
nav a {
	text-decoration: none;
}
nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
	text-decoration: underline;
}
.combo:not(:first-child) {
	margin-block-start: 1em;
}
.combo {
	font-size: 1.5rem;
	font-weight: 500;
	text-align: center;
}
.combo .hl {
	color: light-dark(#4385f5, #6fa1f4);
}
@media all and (min-width: 1200px) {
	.combo {
		font-size: 38px;
	}
}
.disclaimer:not(:first-child) {
	margin-block-start: 1.25em;
}
.disclaimer {
	box-sizing: border-box;
	font-size: .8em;
	line-height: 1.5;
	padding-left: 50px;
	background: url("../images/i.svg") 11px 4px / 20px 20px no-repeat transparent;
}
@media all and (prefers-color-scheme: dark) {
	.disclaimer {
		background-image: url("../images/i-dark.svg");
	}
}
@media all and (min-width: 1200px) {
	.prices > header {
		display: flex;
		gap: 1em;
		justify-content: space-between;
	}
	.prices > header > .disclaimer {
		width: 50%;
	}
	.prices > header > h2 > .word {
		display: block;
	}
}
.button-1 {
	display: inline-block;
	background: #4385f5;
	color: #fff;
	padding: .75em 1em;
	border: 1px solid #4385f5;
	border-radius: .25em;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	transition: border-color 300ms ease-out, background-color 300ms ease-out;
}
.button-1:hover,
.button-1:focus {
	border-color: light-dark(#111c2d, #284168);
	background-color: light-dark(#111c2d, #284168);
}
.button-1:focus-visible {
	text-decoration: underline;
}
.button-2 {
	display: inline-block;
	background: transparent;
	color: #fff;
	padding: .75em 1em;
	border: 1px solid #fff;
	border-radius: .25em;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	transition: border-color 300ms ease-out, background-color 300ms ease-out;
}
.button-2:hover,
.button-2:focus {
	border-color: light-dark(#4385f5, #284168);
	background-color: light-dark(#4385f5, #284168);
}
.button-2:focus-visible {
	text-decoration: underline;
}
.controls {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}
.controls:not(:first-child) {
	margin-block-start: 1.25em;
}
.controls > :where(a, button) > img {
	margin-inline-end: 12px;
}
.main-info {
	padding-block: 1.5rem;
	font-size: 1.111rem;
}
.main-info > div {
	box-sizing: border-box;
}
@media all and (min-width: 1520px) {
	.main-info {
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		gap: 1em 187px;
		padding-block: 3rem;
	}
	.main-info h1 img {
		vertical-align: -.1em;
	}
	.main-info > div:nth-child(2) {
		flex-shrink: 0;
		width: 365px;
	}
	.main-info > div:first-child {
		display: flex;
		flex-direction: column;
		gap: 1em;
	}
	.main-info > div:first-child > :last-child {
		margin-block-start: auto;
	}
}
@media not all and (min-width: 1520px) {
	.main-info > div:not(:first-child) {
		margin-block-start: 1em;
	}
}
.main-info > div:nth-child(2) > article {
	background: rgba(0,0,0,.1);
	color: #d7d8d6;
	backdrop-filter: blur(10px);
	border-inline-start: 1px solid rgba(255,255,255,.14);
	border-radius: 4px;
	padding: 1rem;
	font-size: .888rem;
}
.main-info > div:nth-child(2) > article:not(:first-child) {
	margin-block-start: 1.5em;
}
@media all and (min-width: 1520px) {
	.main-info > div:first-child {
		line-height: 1.5;
	}
	.main-info > div:nth-child(2) > article {
		padding: 1.5rem;
	}
}
.main-info h1 {
	color: #fff;
}
.main-info-article-heading {
	font-family: var(--heading-fonts);
	font-size: 1.222rem;
	font-weight: 600;
	line-height: normal;
	color: #fff;
}
.main-info-article-heading:not(:first-child) {
	margin-block-start: 1em;
}
.services .hl {
	color: light-dark(#78a1e6, #4385f5);
}
.services-items:not(:first-child) {
	margin-block-start: 1em;
}
@media all and (min-width: 1200px) {
	.services-items:not(:first-child) {
		margin-block-start: 2em;
	}
}
.services-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5em;
}
.services-items > article {
	box-sizing: border-box;
	padding-block: 1em 1.5em;
	padding-inline: 1em;
	border-radius: .5em;
	background: light-dark(#fff, #222);
	color: light-dark(#000, #ccc);
}
@media all and (min-width: 1300px) {
	.services-items > article {
		width: calc((100% - 1.5em) / 2);
		padding-inline: 2em;
		padding-block: 2em;
	}
	.services-items > article:first-child,
	.services-items > article:nth-child(2) {
		position: relative;
		padding-inline-end: 257px;
	}
	.services-items > article:first-child::after,
	.services-items > article:nth-child(2)::after {
		content: "";
		speak: never;
		position: absolute;
		z-index: 1;
		top: 0;
		right: 0;
		width: 214px;
		height: 100%;
	}
	.services-items > article:first-child::after {
		background: url("../images/services-1.webp") right top no-repeat #f0f0f0;
	}
	.services-items > article:nth-child(2)::after {
		background: url("../images/services-2.webp") right top no-repeat #f0f0f0;
	}
}
@media not all and (min-width: 1300px) {
	.services-items > article {
		width: 100%;
	}
}
@media all and (min-width: 1520px) {
	.how > h2 > .word {
		display: block;
	}
	.how > h2 {
		padding-right: 132px;
		min-height: 100px;
		background: url("../images/how.svg") right center / 100px 100px no-repeat transparent;
	}
}
.how-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1em;
}
.how-items:not(:first-child) {
	margin-block-start: 1em;
}
@media all and (min-width: 1200px) {
	.how-items:not(:first-child) {
		margin-block-start: 2em;
	}
}
.how-items > article {
	box-sizing: border-box;
	padding: 1.5em;
	border: 1px solid light-dark(#eaeaea, #222);
	border-radius: .5em;
	background: light-dark(#fff, #222);
	color: light-dark(#000, #ccc);
}
@media all and (min-width: 700px) {
	.how-items > article {
		width: calc((100% - 1em) / 2);
	}
}
@media not all and (min-width: 700px) {
	.how-items > article {
		width: 100%;
	}
}
.how-items > article ol {
	counter-reset: how-list;
}
.how-items > article ol > li {
	list-style: none;
	counter-increment: how-list;
	display: flex;
	align-items: center;
	gap: 1em;
}
.how-items > article ol > li::before {
	display: inline-block;
	content: counter(how-list);
	width: 2em;
	height: 2em;
	line-height: 2em;
	border-radius: 50%;
	background: #4385f5;
	color: #fff;
	text-align: center;
}
.how-items > article ol > li:not(:first-child) {
	margin-block-start: 1em;
}
@media all and (prefers-color-scheme: light) {
	.how-items > article:first-child {
		background: url("../images/gas.png") right 61px bottom 51px no-repeat #fff;
		color: #000;
	}
}
@media all and (min-width: 1200px) {
	.how-items > article ol {
		margin-block-start: 2em;
	}
}
.price {
	font-size: 2.111rem;
	font-weight: 500;
}
.price:not(:first-child) {
	margin-block-start: 1rem;
}
.prices-items:not(:first-child) {
	margin-block-start: 1em;
}
.prices-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1em;
}
.prices-items > article {
	box-sizing: border-box;
	padding: 1em;
	background: light-dark(#fff, #222);
	color: light-dark(#000, #ccc);
	border-radius: 1em;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}
.prices-items > article > .price {
	margin-block-start: auto;
	padding-block-start: .75em;
}
.prices-items > article.recommendation {
	color-scheme: dark;
	background-color: light-dark(#111c2d, #10141a);
	color: #fff;
}
.prices-items > article .button-1 {
	box-sizing: border-box;
	width: 100%;
}
@media all and (prefers-color-scheme: light) {
	.prices-items > article.recommendation {
		outline: 1px solid #dfd8e6;
	}
}
@media all and (min-width: 1200px) {
	.prices-items > article {
		padding: 2em;
	}
	.prices-items > article ul:not(:first-child) {
		margin-block-start: 2em;
	}
}
@media all and (min-width: 1520px) {
	.prices-items > article {
		width: calc((100% - 3em) / 4);
	}
}
@media not all and (min-width: 1520px) {
	.prices-items > article {
		flex-grow: 1;
	}
}
.prices-items > article > h3 + p {
	width: fit-content;
	font-size: .888rem;
	background: light-dark(#f5f5f5, #111);
	color: light-dark(#111c2d, #ddd);
	padding: 1em 2em;
	border-radius: 2em;
	font-weight: 600;
}
.prices-items > article.recommendation > h3 + p {
	background-color: #f5f5f5;
	color: #4385f5;
}
main > section.cases {
	background-color: light-dark(#f0f0f0, #111);
	border-block-start: 1px solid light-dark(#d7d7d7, transparent);
}
.cases-items {
	display: flex;
}
.slider-content-wrap {
	box-sizing: border-box;
	height: 100%;
	padding: 1em;
	background: light-dark(#fff, #222);
	color: light-dark(#000, #ccc);
	border-radius: 1em;
}
.tns-outer:not(:first-child) {
	margin-block-start: 1.5em;
}
@media all and (min-width: 1200px) {
	.tns-outer:not(:first-child) {
		margin-block-start: 2em;
	}
	.slider-content-wrap {
		padding: 2em;
	}
}
.cases-note {
	font-weight: 600;
	font-size: .888rem;
	background: #4385f5;
	color: #fff;
	padding: 1em 2em;
	border-radius: 2em;
	width: fit-content;
	margin-block-end: 2em;
}
.cases-note + h3:not(:first-child) {
	margin-block-start: .5rem;
}
.faq-items > details {
	box-sizing: border-box;
	margin: 0;
	padding: 1em;
	border-radius: 1em;
	background: light-dark(rgba(255,255,255,.5), rgba(34,34,34,.5));
	color: light-dark(#000, #ccc);
	transition: background-color 300ms ease-out, color 300ms ease-out;
}
.faq-items > details[open] {
	background: light-dark(#fff, #222);
}
.faq-items > details:not(:first-child) {
	margin-block-start: 4px;
}
.faq-decor:not(:first-child) {
	margin-block-start: 4em;
}
.faq-decor > img {
	border-radius: 10px;
}
@media all and (min-width: 1520px) {
	.faq {
		display: flex;
		gap: 1em 88px;
	}
	.faq > header {
		flex-shrink: 0;
		flex-grow: 0;
		width: 424px;
	}
	.faq > .faq-items {
		flex-grow: 1;
	}
	.faq-items > details {
		padding: 1.65em;
	}
}
@media not all and (min-width: 1520px) {
	.faq-items:not(:first-child) {
		margin-block-start: 1.5em;
	}
	.faq-decor {
		display: none;
	}
}
main > section.form {
	color-scheme: dark;
	background: url("../images/form.webp") center / cover no-repeat #111;
	color: #dadbda;
}
.form-unit:not(:first-child) {
	margin-block-start: .8em;
}
.form-unit input[type="text"],
.form-unit input[type="tel"],
.form-unit input[type="email"],
.form-unit textarea,
.form-unit select {
	color-scheme: light;
	margin-block-start: .4em;
	width: 100%;
	padding: 1em;
	background: #f5f5f5;
	color: #000);
	border: none;
	border-radius: .25em;
}
.form-unit select {
	appearance: none;
	background-repeat: no-repeat;
	background-size: 14px 8px;
	background-position: right 17px top 50%;
	background-image: url("../images/dropdown.svg");
	padding-right: calc(1em + 31px);
}
.form-unit textarea {
	height: 10em;
	height: 7lh;
	resize: vertical;
}
.form > div:nth-child(2) {
	width: 411px;
}
@media all and (min-width: 700px) {
	.form {
		display: flex;
		justify-content: space-between;
		gap: 1em;
	}
	.form > div {
		flex-shrink: 0;
		width: calc((100% - 1em) / 2);
	}
}
@media not all and (min-width: 700px) {
	.form > div:not(:first-child) {
		margin-block-start: 1.5em;
	}
}
@media all and (min-width: 1520px) {
	main > section.form {
		background: url("../images/form-large.webp") center top no-repeat #111;
	}
	.form h2 {
		font-size: 74px;
		color: #fff;
	}
	.form h2 > .hl {
		font-weight: 300;
		display: block;
		color: rgba(255,255,255,.6);
	}
}
.bottom-info:not(:first-child) {
	margin-block-start: 1em;
}
.bottom-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5em;
}
@media all and (min-width: 1520px) {
	.bottom-info:not(:last-child) {
		margin-block-end: 5em;
	}
	.bottom-info > * {
		flex-shrink: 0;
		max-width: calc((100% - 3em) / 3);
	}
}
@media not all and (min-width: 1520px) {
	.bottom-info > :first-child {
		width: 100%;
	}
	.bottom-info > :not(:first-child) {
		flex-grow: 1;
	}
}
.bottom-info > :nth-child(2) {
	font-size: 1rem;
	color: #fff;
}
.bottom-menu {
	font-size: 1rem;
	font-weight: 500;
	color: #a5a5a5;
}
.bottom-menu > li {
	list-style: none;
}
.bottom-menu > li:not(:first-child) {
	margin-block-start: .6em;
}
.bottom-menu a {
	text-decoration: none;
	transition: color 300ms ease-out;
}
.bottom-menu a:hover,
.bottom-menu a:focus {
	color: #fff;
	text-decoration: underline;
}
.main-menu {
	color: #fff;
	font-weight: 600;
}
.button-soc {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	transition: background-color 300ms ease-out;
}
.button-soc:hover,
.button-soc:focus {
	background-color: rgba(255,255,255,.12);
}
.button-soc > img {
	vertical-align: -3px;
}
.button-3 {
	display: inline-block;
	background: #4385f5;
	color: #fff;
	padding: 1em;
	border: none;
	border-radius: 2em;
	text-decoration: none;
	font-weight: 600;
}
.button-3._whatsapp {
	background-color: #60d669;
}
.button-3:focus-visible {
	text-decoration: underline;
}
.bottom-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}
.bottom-controls:not(:first-child) {
	margin-block-start: 1em;
}
.glue {
	white-space: nowrap;
}
.decorated-items {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1rem;
	font-size: .833rem;
	color: #fff;
	font-weight: 500;
}
.decorated-items > li {
	list-style: none;
	padding: .5em 1em;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 3em;
}
.decorated-items:not(:first-child) {
	margin-block-start: 1em;
}
.tns-controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1em;
	margin-block-end: .4em;
}
.tns-controls > button {
	border: none;
	background: transparent;
	color: inherit;
	padding: .8em 1em;
}
