@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 100;
	font-display: swap;
	src: local("Roboto Thin"), local("Roboto-Thin"),
		url("/fonts/roboto/thin.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: italic;
	font-weight: 100;
	font-display: swap;
	src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"),
		url("/fonts/roboto/thinitalic.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: local("Roboto Light"), local("Roboto-Light"),
		url("/fonts/roboto/light.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: italic;
	font-weight: 300;
	font-display: swap;
	src: local("Roboto Light Italic"), local("Roboto-LightItalic"),
		url("/fonts/roboto/lightitalic.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: local("Roboto"), local("Roboto-Regular"),
		url("/fonts/roboto/regular.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: italic;
	font-weight: normal;
	font-display: swap;
	src: local("Roboto Italic"), local("Roboto-Italic"),
		url("/fonts/roboto/italic.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: local("Roboto Medium"), local("Roboto-Medium"),
		url("/fonts/roboto/medium.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: italic;
	font-weight: 500;
	font-display: swap;
	src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"),
		url("/fonts/roboto/mediumitalic.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: bold;
	font-display: swap;
	src: local("Roboto Bold"), local("Roboto-Bold"),
		url("/fonts/roboto/bold.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: italic;
	font-weight: bold;
	font-display: swap;
	src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"),
		url("/fonts/roboto/bolditalic.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: local("Roboto Black"), local("Roboto-Black"),
		url("/fonts/roboto/bold.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: italic;
	font-weight: 900;
	font-display: swap;
	src: local("Roboto Black Italic"), local("Roboto-BlackItalic"),
		url("/fonts/roboto/blackitalic.woff2") format("woff2");
}
* {
	font: inherit;
	margin: 0;
	padding: 0;
}
html {
	--base-fonts: "Roboto", system-ui, sans-serif;
	--heading-fonts: "Roboto", system-ui, sans-serif;
	--content-max-width: 1520px;
	color-scheme: light dark;
	background: #f6f6f6;
	color: #000;
	font-family: var(--base-fonts);
	font-size: 17px;
	line-height: 1.4;
}
@media all and (max-width: 500px) {
	html {
		hyphens: auto;
		overflow-wrap: anywhere;
	}
}
html.alt-appearance {
	font-size: max(1rem, 22px);
}
@media all and (prefers-color-scheme: dark) {
	html {
		background: #333;
		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]):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-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;
}
h2:not([class]) {
	font-size: 30px;
}
@media all and (min-width: 1200px) {
	.front-page h2:not([class]) {
		font-weight: 300;
		font-size: 60px;
	}
	.front-page h2:not([class]):lang(ro) {
		font-size: 53px;
	}
}
/* 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;
	color-scheme: dark;
}
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;
}
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: 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-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: #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 {
	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: #333;
	color: #fff;
	box-shadow: 2px 0 2px 0 rgba(0,0,0,.2);
	block-size: 100%;
	overflow: auto;
	overscroll-behavior: contain;
}
/* 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;
}
.button-mobile-menu-close:hover,
.button-mobile-menu-close:focus,
.mobile-menu-itself li > a:hover,
.mobile-menu-itself li > a:focus {
	background-color: #fafafa;
	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;
}
/* 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 {
	box-sizing: border-box;
	background: #060711;
	color: #fff;
	padding: 1.5em;
	border-radius: 4px;
	position: relative;
	overflow: auto;
}
.form-close-dialog {
	position: absolute;
	z-index: 1;
	inset-block-start: 1em;
	inset-inline-end: 1em;
}
.form-close-dialog-button {
	background: transparent;
	color: #fff;
	border: none;
	cursor: pointer;
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	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: #fff;
	color: #000;
}
/* .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 {
	background: #fff;
	background-image: linear-gradient(to bottom, #f0f8fe, #fff);
	color: #071725;
}
@media print {
	nav {
		display: none !important;
	}
}
.top-contacts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1em .5em;
}
.main-menu {
	font-size: .76rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 1em 3em;
	list-style: none;
	text-transform: uppercase;
}
.main-menu a {
	text-decoration: none;
	transition: color 300ms ease-out;
}
.main-menu a:hover,
.main-menu a:focus {
	color: #4b8cef;
}
.main-menu a:focus-visible {
	text-decoration: underline;
}
.top-1 {
	background: #fff;
	color: #071725;
}
@media all and (prefers-color-scheme: dark) {
	.top-1 {
		background: #111;
		color: #eee;
	}
}
.l-top-1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding-block: .8em;
}
@media not print {
	@media (max-width: 1599px) {
		.l-top-1 {
			padding-inline-end: 72px;
		}
	}
}
.bottom {
	padding-block: 2em;
	background: #071725;
	color: #fff;
}
@media all and (prefers-color-scheme: dark) {
	.bottom {
		background: #111;
		color: #ddd;
	}
}
.button-1 {
	background: #4b8cef;
	color: #fff;
	font-weight: bold;
	font-size: .9412rem;
	border: none;
	padding: 1.43em 2em;
	border-radius: 1.4em 0 1.4em 1.4em;
	cursor: pointer;
	transition: background-color 300ms ease-out;
}
.button-1:hover,
.button-1:focus {
	background-color: #071725;
}
.button-2 {
	box-sizing: border-box;
	background: #4b8cef;
	color: #fff;
	font-weight: bold;
	font-size: .9412rem;
	border: none;
	padding: 1.43em 1em;
	border-radius: 1.4em 0 1.4em 1.4em;
	width: 100%;
	text-align: center;
	cursor: pointer;
	transition: background-color 300ms ease-out;
}
.button-2:hover,
.button-2:focus {
	background-color: #071725;
}
.button-3 {
	background: #4b8cef;
	color: #fff;
	font-weight: bold;
	font-size: .9412rem;
	border: 1px solid #4b8cef;
	padding: 1.12em 2.36em;
	border-radius: 1em;
	cursor: pointer;
	transition: background-color 300ms ease-out, color 300ms ease-out, border-color 300ms ease-out;
}
.button-3:hover,
.button-3:focus {
	background-color: #fafafa;
	border-color: #fafafa;
	color: #060711;
}
.button-4 {
	background: transparent;
	color: #fff;
	font-weight: bold;
	font-size: .9412rem;
	border: 1px solid #383840;
	padding: 1.12em 2.36em;
	border-radius: 1em;
	cursor: pointer;
	transition: background-color 300ms ease-out, color 300ms ease-out, border-color 300ms ease-out;
}
.button-4:hover,
.button-4:focus {
	background-color: #fafafa;
	border-color: #fafafa;
	color: #060711;
}
.button-5 {
	box-sizing: border-box;
	width: 100%;
	background: #4b8cef;
	color: #fff;
	font-weight: bold;
	font-size: .9412rem;
	border: none;
	padding: 1.43em 2em;
	border-radius: 1.4em 0 1.4em 1.4em;
	cursor: pointer;
	transition: background-color 300ms ease-out, color 300ms ease-out;
}
.button-5:hover,
.button-5:focus {
	background-color: #fafafa;
	color: #000;
}
@media all and (min-width: 1200px) {
	.block-when-wide {
		display: block;
	}
}
.title-hl {
	font-weight: 600;
}
@media not all and (min-width: 1200px) {
	.title-hl {
		font-weight: bold;
	}
}
.l-bottom {
	font-size: .9412rem;
	display: flex;
	justify-content: space-between;
	gap: 1em;
}
@media all and (max-width: 900px) {
	.l-bottom {
		flex-direction: column;
	}
}
.contact-form {
	background: #f1f4f7;
	color: #000;
	padding-block: 2em;
	padding-inline: 2em;
	border-radius: 1.5em;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
	margin-block-start: .2em;
	width: 100%;
	background: #fff;
	color: #000;
	border: none;
	padding: 1em;
}
.contact-form textarea {
	resize: vertical;
	height: 5em;
}
.contact-form > .form-unit:not(:first-child) {
	margin-block-start: 1em;
}
.contact-form > .form-unit._submit {
	margin-block-start: 1.5em;
	display: flex;
	flex-direction: column;
	gap: 1em;
}
.contact-form > .form-unit._submit > div:first-child {
	order: 1;
	text-align: center;
	color: #9d9d9d;
	font-size: 14px;
}
@media all and (prefers-color-scheme: dark) {
	.contact-form {
		background: #333;
		color: #eee;
	}
	.contact-form input[type="text"],
	.contact-form input[type="tel"],
	.contact-form input[type="email"],
	.contact-form textarea {
		background: #000;
		color: #eee;
	}
}
@media all and (min-width: 1200px) {
	.contact {
		min-height: 756px;
		display: flex;
		justify-content: space-between;
		gap: 2em;
	}
	.contact > div:first-child {
		flex-grow: 1;
		background: url("../images/contact-decor-2.webp") left 0 bottom 44px / 544px 455px no-repeat transparent;
	}
	.contact > div:nth-child(2) {
		width: calc(50% - 15px);
		flex-shrink: 0;
	}
	.contact h2 {
		padding-left: 265px;
		background: url("../images/contact-decor.svg") 0 16px / 143px 11px no-repeat transparent;
		font-size: 50px;
		line-height: 1.1;
	}
	.contact h2 + p {
		margin-left: 265px;
	}
	.contact-form {
		padding-block: 6em;
	}
	.contact-form > .form-unit {
		max-width: 421px;
		margin-inline: auto;
	}
}
@media not all and (min-width: 1200px) {
	.contact > div:not(:first-child) {
		margin-block-start: 2em;
	}
}
h1 {
	font-size: 2em;
	font-family: var(--heading-fonts);
	line-height: normal;
	font-weight: bold;
}
.article-index {
	padding-block: 2em;
}
@media not all and (min-width: 1200px) {
	.article-index {
		padding-block: 4em;
	}
}
@media all and (min-width: 1000px) {
	.main-body-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.main-body-header > h1 {
		font-size: 40px;
		text-transform: uppercase;
	}
	.main-body-header > * {
		flex-shrink: 0;
		width: calc(50% - 1em);
	}
	.main-body-header > :nth-child(2) {
		font-size: .8824rem;
	}
}
.blog-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2em 32px;
}
.blog-items:not(:first-child) {
	margin-top: 2em;
}
.blog-items > article {
	font-size: 15px;
	box-sizing: border-box;
	width: 744px;
	max-width: 100%;
	flex-shrink: 0;
	flex-grow: 0;
	display: flow-root;
	background: #fff;
	color: #4c4c4c;
	padding-bottom: 1em;
	border-radius: .2em;
	overflow: hidden;
}
@media all and (prefers-color-scheme: dark) {
	.blog-items > article {
		background: #111;
		color: #eee;
	}
}
.blog-items > article > :not(figure) {
	padding-inline: 1rem;
}
.blog-heading {
	color: #000;
	font-family: var(--heading-fonts);
	line-height: normal;
	font-size: 1.22rem;
	font-weight: 600;
}
@media all and (prefers-color-scheme: dark) {
	.blog-heading {
		color: #fff;
	}
}
.blog-heading:not(:first-child) {
	margin-top: 1em;
}
@media all and (min-width: 900px) and (max-width: 1570px) {
	.blog-items > article {
		width: calc((100% - 32px) / 2);
	}
}
main {
	margin-block: 2em;
}
@media all and (min-width: 1200px) {
	main {
		margin-block: 4em;
	}
}
.readmore {
	color: #3e61ad;
	text-decoration: none;
	font-weight: 600;
}
.readmore:hover,
.readmore:focus {
	text-decoration: underline;
}
@media all and (prefers-color-scheme: dark) {
	.readmore {
		color: #f3e699;
	}
}
.c-contact {
	background: #fff;
	color: #000;
	padding-block: 2em;
}
@media all and (prefers-color-scheme: dark) {
	.c-contact {
		background: #111;
		color: #eee;
	}
}
@media all and (min-width: 1200px) {
	.c-contact {
		padding-block: 4em;
	}
}
