@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap&subset=cyrillic');

:root {
	--atom-navy: #13214d;
	--atom-accent: #b6e2ff;
	--atom-text: #23262b;
	--atom-white: #ffffff;
	--atom-container: 1170px;
	--atom-font: 'Roboto', Arial, sans-serif;
}

body {
	overflow-x: hidden;
}

a.paginat-d__item {
	border-color: #2b4393;
	text-decoration: none;
}
.paginat-d__item, .paginat-d__item:link, .paginat-d__item:visited {
	color: #2b4393;
}
.paginat-d__item:hover, .paginat-d__item_current {
	background-color: #2b4393;
	border-color: #2b4393;
	color: #fff;
}

.atom-container {
	max-width: var(--atom-container);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
}

.atom-header {
	background-color: var(--atom-navy);
	font-family: var(--atom-font);
	position: sticky;
	top: 0;
	z-index: 20;
}

.page-d_home .atom-header {
	background-color: rgba(32, 32, 32, .59);
}
.atom-header__box {
	position: relative;
	padding-top: 16px;
	padding-bottom: 16px;
}

.atom-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 24px;
	padding-bottom: 16px;
}

.atom-header__contacts {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.atom-contact {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--atom-white);
	white-space: nowrap;
}
.atom-contact a,
.atom-contact a:link,
.atom-contact a:visited {
	color: var(--atom-white);
	text-decoration: none;
}
.atom-contact__icon {
	display: inline-flex;
	width: 15px;
	flex-shrink: 0;
}
.atom-contact__icon img {
	display: block;
	width: 100%;
	height: auto;
}
.atom-contact_phone { font-size: 20px; font-weight: 600; }
.atom-contact_mail { font-size: 16px; font-weight: 400; }
.atom-contact_address { font-size: 14px; font-weight: 400; }

.atom-header__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.atom-header__consult,
.atom-header__consult:link,
.atom-header__consult:visited {
	color: var(--atom-accent);
	font-size: 14px;
	text-decoration: underline;
	white-space: nowrap;
}
.atom-header__consult:hover,
.atom-header__consult:focus {
	text-decoration: none;
}
.atom-header__flag img {
	display: block;
	width: 28px;
	height: auto;
	border-radius: 2px;
}

.atom-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 40px;
}

.atom-header__menu {
	flex: 1 1 auto;
	min-width: 0;
}
.atom-header__menu-extra {
	display: none;
}

.atom-header__logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}
.atom-header__logo img {
	display: block;
	height: 80px;
	width: auto;
}

.atom-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.atom-nav__item {
	white-space: nowrap;
	flex-shrink: 0;
}

.atom-nav__item:nth-child(4) {
	margin-left: auto;
}
.atom-nav__item a {
	display: block;
	color: var(--atom-white);
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
}
.atom-nav__item a:hover,
.atom-nav__item a:focus,
.atom-nav__item._active > a {
	color: var(--atom-accent);
}

@media (min-width: 760px) and (max-width: 1280px) {
	.atom-header__contacts {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.atom-header__actions {
		flex-wrap: wrap;
		justify-content: flex-end;
		gap: 8px 20px;
	}

	.atom-header__actions .atom-contact_address {
		order: 2;
		flex-basis: 100%;
		justify-content: flex-end;
	}

	.atom-nav {
		gap: 8px 20px;
	}
}

@media (min-width: 760px) and (max-width: 850px) {
	.atom-nav__item a {
		font-size: 14px;
	}
}

.atom-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}
.atom-burger span {
	display: block;
	height: 2px;
	background-color: var(--atom-white);
	border-radius: 1px;
	transition: transform .2s ease, opacity .2s ease;
}
.atom-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.atom-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.atom-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.atom-button,
.atom-button:link,
.atom-button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 280px;
	height: 62px;
	padding: 0 32px;
	box-sizing: border-box;
	border-radius: 20px;
	border: 1px solid #2b4393;
	background-color: transparent;
	color: #2b4393;
	font-family: var(--atom-font);
	font-size: 22px;
	font-weight: 400;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}
.atom-button::after {
	content: '';
	width: 28px;
	height: 11px;
	background: url('../img/icon-arrow-button.svg') no-repeat center / contain;
	flex-shrink: 0;
}
.atom-button:hover,
.atom-button:focus {
	background-color: #2b4393;
	color: var(--atom-white);
}
.atom-button:hover::after,
.atom-button:focus::after {
	filter: brightness(0) invert(1);
}

.atom-footer {
	position: relative;
	background-color: #112050;
	background-image: linear-gradient(rgba(17, 32, 80, .94), rgba(17, 32, 80, .94)), url('../img/footer-bg.jpg');
	background-size: cover;
	background-position: center;
	font-family: var(--atom-font);
	color: #bfbfbf;
	padding: 48px 0;
}
.atom-footer__box {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
}
.atom-footer__col_brand {
	max-width: 260px;
}
.atom-footer__logo img {
	display: block;
	height: 64px;
	width: auto;
	margin-bottom: 16px;
}
.atom-footer__legal {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.atom-footer__legal a,
.atom-footer__legal a:link,
.atom-footer__legal a:visited {
	color: #979797;
	font-size: 12px;
	font-weight: 300;
	text-decoration: underline;
}
.atom-footer__legal a:hover,
.atom-footer__legal a:focus {
	color: var(--atom-accent);
}
.atom-footer__nav {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 4px 60px;
}
.atom-footer__nav-item a,
.atom-footer__nav-item a:link,
.atom-footer__nav-item a:visited {
	display: block;
	padding: 8px 0;
	color: #bfbfbf;
	font-size: 18px;
	text-decoration: none;
}
.atom-footer__nav-item a:hover,
.atom-footer__nav-item a:focus,
.atom-footer__nav-item._active a {
	color: var(--atom-accent);
}

.atom-footer__col_contacts {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-start;
}
.atom-contact_muted { color: #bfbfbf; }
.atom-contact_muted .atom-contact__icon { opacity: .85; }

@media (min-width: 760px) and (max-width: 1280px) {
	.atom-footer__col_brand {
		max-width: 200px;
	}
	.atom-footer__box {
		gap: 24px;
	}
	.atom-footer__nav {
		gap: 4px 24px;
	}
}

@media (max-width: 759px) {
	.atom-footer {
		padding: 32px 0;
	}
	.atom-footer__box {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}
	.atom-footer__col_brand {
		display: contents;
	}
	.atom-footer__logo {
		order: 1;
		display: flex;
		justify-content: center;
	}
	.atom-footer__col_nav {
		order: 2;
	}

	.atom-footer__col_contacts {
		order: 3;
		align-items: center;
		text-align: center;
	}
	.atom-footer__legal {
		order: 4;
		align-items: center;
		text-align: center;
	}
	.atom-footer__nav {
		grid-template-columns: max-content max-content;
		justify-content: space-between;
		gap: 4px 20px;
	}
}

.atom-heroheader {
	position: relative;
}
.atom-heroheader__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.page-d_home .atom-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
}
.page-d_home .atom-heroheader {
	padding-top: var(--atom-header-h, 118px);
}
.atom-heroheader > .atom-hero {
	position: relative;
	z-index: 1;
}

.atom-hero {
	min-height: 589px;
	display: flex;
	align-items: center;
	color: var(--atom-white);
	overflow: hidden;
}
.atom-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	width: 100%;
}
.atom-hero__box {
	max-width: 830px;
	padding: 35px 40px;
	background: rgba(32, 32, 32, .59);
	border-radius: 20px;
	text-align: center;
}
.atom-hero__title {
	margin: 0;
	font-family: var(--atom-font);
	font-size: 50px;
	font-weight: 600;
	line-height: 1.4;
}

.atom-section {
	padding: 56px 0;
}

.atom-section_bleed-gray {
	background-color: #f5f5f5;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: calc(50vw - 50%);
	padding-right: calc(50vw - 50%);
}
.atom-section__title {
	margin: 0 0 32px;
	font-family: var(--atom-font);
	font-size: 32px;
	font-weight: 600;
	color: var(--atom-navy);
	text-align: center;
}
.atom-section__more {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.atom-teasercards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.atom-teasercard {
	background: var(--atom-white);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: background-color .2s ease, box-shadow .2s ease;
}
.atom-teasercard:hover {
	background: #2b4393;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
}
.atom-teasercard__title {
	margin: 0 20px 12px;
	padding-top: 26px;
	font-family: var(--atom-font);
	font-size: 20px;
	line-height: 1.15;
	font-weight: 600;
	text-transform: uppercase;
}
.atom-teasercard__title a,
.atom-teasercard__title a:link,
.atom-teasercard__title a:visited {
	color: #2b4393;
	text-decoration: none;
}
.atom-teasercard__text {
	margin: 0 20px 20px;
	font-size: 14px;
	font-weight: 300;
	color: #929292;
	line-height: 1.4;
}
.atom-teasercard__image {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	aspect-ratio: 370 / 308;
	background-color: #ececec;
}
.atom-teasercard__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.atom-teasercard__image .atom-teasercard__noimage {
	width: 40%;
	max-width: 140px;
	height: auto;
}

.atom-teasercard:hover .atom-teasercard__title a,
.atom-teasercard:hover .atom-teasercard__title a:link,
.atom-teasercard:hover .atom-teasercard__title a:visited {
	color: var(--atom-white);
}
.atom-teasercard:hover .atom-teasercard__text {
	color: #d4d4d4;
}

.atom-listcard__samples {
	margin: 16px 4px 4px;
}

.atom-gall-outer {
	position: relative;
	padding: 0 36px;
}
.atom-gall-outer .gall-d__button {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 480px) {
	.atom-gall-outer {
		padding: 0 28px;
	}
}

.atom-slider-arrow {
	display: block;
	width: 28px;
	height: 11px;
}
.atom-slider-arrow_prev {
	transform: scaleX(-1);
}
.atom-listcard__samples-title {
	margin: 0 0 10px;
	font-family: var(--atom-font);
	font-size: 16px;
	color: #4f4f4f;
}

.atom-listcard__samples .atom-samplesgall .gall-d__list .swiper-slide a {
	position: relative;
	display: block;
	width: 100%;
	padding-top: calc(100% * 113 / 136);
	overflow: hidden;
	border-radius: 6px;
}
.atom-listcard__samples .atom-samplesgall .gall-d__list img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.atom-home .atom-listcard {
	transition: background-color .2s ease, box-shadow .2s ease;
}
.atom-home .atom-listcard:hover {
	background: #2b4393;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
}
.atom-home .atom-listcard:hover .atom-listcard__title a,
.atom-home .atom-listcard:hover .atom-listcard__title a:link,
.atom-home .atom-listcard:hover .atom-listcard__title a:visited {
	color: var(--atom-white);
}
.atom-home .atom-listcard:hover .atom-listcard__text {
	color: #e0e0e0;
}
.atom-home .atom-listcard:hover .atom-listcard__arrow img {
	filter: brightness(0) invert(1);
}
.atom-home .atom-listcard:hover .atom-listcard__samples-title {
	color: var(--atom-white);
}
.atom-home .atom-listcard:hover .atom-slider-arrow {
	filter: brightness(0) invert(1);
}

@media (max-width: 1280px) {
	.atom-teasercards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 759px) {
	.atom-teasercards { grid-template-columns: 1fr; }
	.atom-home .atom-listcards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.atom-hero__title { font-size: 28px; }
	.atom-hero__box { padding: 24px; margin: 0 15px; }
}

.atom-partners .gall-d__list {
	align-items: center;
}
.atom-partners__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	padding: 0 10px;
}
.atom-partners__logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .75;
	transition: filter .2s ease, opacity .2s ease;
}
.atom-partners__logo img:hover {
	filter: grayscale(0);
	opacity: 1;
}

.atom-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}
.atom-modal[hidden] { display: none; }
.atom-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(19, 33, 77, .6);
}
.atom-modal__window {
	position: relative;
	background: var(--atom-white);
	border-radius: 16px;
	padding: 40px;
	width: 100%;
	max-width: 420px;
	margin: 20px;
	font-family: var(--atom-font);
}
.atom-modal__close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: 0;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: var(--atom-text);
}
.atom-modal__title {
	margin: 0 0 20px;
	font-size: 22px;
	font-weight: 600;
	color: var(--atom-navy);
}

.atom-modal .block-d__name {
	display: none;
}

.atom-modal .field-d {
	margin-bottom: 16px;
}
.atom-modal .field-d__name {
	margin-bottom: 6px;
	font-family: var(--atom-font);
	font-size: 14px;
	color: var(--atom-text);
}
.atom-modal input[type="text"],
.atom-modal input[type="email"],
.atom-modal input[type="tel"] {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	border: 1px solid #d7dbe4;
	border-radius: 8px;
	font-family: var(--atom-font);
	font-size: 15px;
}
.atom-modal input:focus {
	outline: none;
	border-color: var(--atom-navy);
}
.atom-modal .button-d {
	width: 100%;
	margin-top: 8px !important;
	padding: 14px 16px;
	border: 0;
	border-radius: 8px;
	background: var(--atom-navy);
	color: var(--atom-white);
	font-family: var(--atom-font);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}
.atom-modal .privacy_field {
	margin-top: 12px;
	font-size: 12px;
	color: #8a93a8;
	text-align: center;
}
.atom-modal .privacy_field a { color: var(--atom-navy); }
.atom-modal .errors {
	font-size: 12px;
	color: #d9534f;
}

.atom-modal .atom-question__checkbox {
	color: var(--atom-text);
}
.atom-modal .atom-question__legal a,
.atom-modal .atom-question__legal a:link,
.atom-modal .atom-question__legal a:visited {
	color: var(--atom-text);
}
.atom-modal .atom-question__legal a:hover {
	color: var(--atom-navy);
}
.atom-modal .required_field {
	margin-top: 12px;
	font-size: 12px;
	color: #8a93a8;
	text-align: center;
}

.content-d {
	grid-template-columns: minmax(0, 1fr) !important;
	grid-template-areas: 'main' !important;
}
.content-d__aside {
	display: none !important;
}

.breadcrumbs-d {
	display: block;
	margin: 20px 0 16px;
	font-family: var(--atom-font);
	font-size: 13px;
	color: #b7bdca;
}
.breadcrumbs-d .breadcrumb-d,
.breadcrumbs-d .breadcrumb-d a,
.breadcrumbs-d .breadcrumb-d a:link,
.breadcrumbs-d .breadcrumb-d a:visited {
	color: #8a93a8;
	text-decoration: none;
}
.breadcrumbs-d .breadcrumb-d a:hover {
	text-decoration: underline;
}
.breadcrumbs-d .breadcrumb-d:last-child {
	color: #b7bdca;
}

.atom-page-title {
	margin: 8px 0 40px;
	font-family: var(--atom-font);
	font-size: 40px;
	font-weight: 600;
	color: #4f4f4f;
	text-align: center;
}
.atom-page-title_upper {
	text-transform: uppercase;
}

.atom-section-title {
	margin: 0 0 24px;
	font-family: var(--atom-font);
	font-size: 40px;
	font-weight: 600;
	color: #4f4f4f;
	text-align: center;
}

.atom-listcards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 30px;
	margin-bottom: 40px;
}
.atom-listcard {
	display: flex;
	gap: 20px;
	background: #f0f9ff;
	border-radius: 10px;
	overflow: hidden;
	padding: 16px;
}

.atom-listcard_home {
	flex-direction: column;
}
.atom-listcard_home .atom-listcard__top {
	display: flex;
	gap: 20px;
}
.atom-listcard__image {
	flex: 0 0 269px;
	width: 269px;
	aspect-ratio: 269 / 224;
	border-radius: 6px;
	overflow: hidden;
	background: #ececec;
	display: flex;
	align-items: center;
	justify-content: center;
}
.atom-listcard__image:hover {
	text-decoration: none;
}
.atom-listcard__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.atom-listcard__image .atom-listcard__noimage {
	width: 40%;
	max-width: 140px;
	height: auto;
}
.atom-listcard__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 8px 4px;
}
.atom-listcard__title {
	margin: 0;
	font-family: var(--atom-font);
	font-size: 20px;
	font-weight: 600;
}
.atom-listcard__title a,
.atom-listcard__title a:link,
.atom-listcard__title a:visited {
	color: #2b4393;
	text-decoration: underline;
}
.atom-listcard__title a:hover {
	text-decoration: none;
}
.atom-listcard__text {
	margin: 0;
	font-family: var(--atom-font);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
	color: #929292;
}
.atom-listcard_equip .atom-listcard__text {
	line-height: 2;
}
.atom-listcard__arrow {
	margin-top: auto;
	align-self: flex-end;
	display: block;
	width: 40px;
	height: 11px;
}
.atom-listcard__arrow img {
	display: block;
	width: 100%;
	height: 100%;
}

.atom-listcard_equip .atom-listcard__image {
	flex-basis: 258px;
	width: 258px;
	aspect-ratio: 1 / 1;
}
.atom-listcard_equip .atom-listcard__title a,
.atom-listcard_equip .atom-listcard__title a:link,
.atom-listcard_equip .atom-listcard__title a:visited {
	text-decoration: none;
	text-transform: uppercase;
}

.atom-listcards__more {
	display: flex;
	justify-content: center;
	margin: 8px 0 40px;
}
.atom-paginator-d {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 0 0 40px;
	font-family: var(--atom-font);
}

@media (max-width: 759px) {
	.atom-listcards { grid-template-columns: 1fr; }
}

@media (max-width: 1280px) {
	.atom-listcard { flex-direction: column; }
	.atom-listcard__image,
	.atom-listcard__top { width: 100%; flex-basis: auto; }
	.atom-listcard_home .atom-listcard__top { flex-direction: column; }

	.atom-listcard_equip .atom-listcard__image {
		width: 100%;
		flex-basis: auto;
	}
}

.atom-material__rel .block-d__name,
.atom-material__samples .block-d__name {
	margin: 0 0 24px;
	font-family: var(--atom-font);
	font-size: 40px;
	font-weight: 600;
	color: #4f4f4f;
	text-align: center;
}

.atom-relgall .swiper-slide {
	height: auto;
}
.atom-relgall .swiper-slide .atom-listcard {
	height: 100%;
	box-sizing: border-box;
}

.atom-material__top {
	display: grid;
	grid-template-columns: minmax(0, 569px) 1fr;
	gap: 40px;
	margin-bottom: 32px;
	align-items: start;
}
.atom-material__desc {
	font-family: var(--atom-font);
	font-size: 20px;
	font-weight: 300;
	line-height: 1.6;
	color: #707070;
}
.atom-material__gallery,
.atom-material__pdf,
.atom-material__samples,
.atom-material__rel {
	margin-bottom: 32px;
}

.atom-material__gallery .swiper-slide a {
	position: relative;
	display: block;
	width: 100%;
	padding-top: calc(100% * 380 / 569);
	overflow: hidden;
	border-radius: 10px;
}
.atom-material__gallery img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.atom-material__gallery .swiper-pagination {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	z-index: 2;
	text-align: center;
	line-height: 1;
}

.atom-material__gallery .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	box-sizing: border-box;
	margin: 0 4px;
	background: #fff;
	border: 1px solid #2b4393;
	opacity: 1;
	border-radius: 50%;
}
.atom-material__gallery .swiper-pagination-bullet-active {
	background: #2b4393;
}
.atom-material__gallery .swiper-pagination-bullet::after {
	display: none;
}

.atom-material__samples-title {
	margin: 16px 0 12px;
	font-family: var(--atom-font);
	font-size: 18px;
	font-weight: 500;
	color: #4f4f4f;
}

.atom-material__samples .atom-samplesgall .gall-d__list .swiper-slide a {
	position: relative;
	display: block;
	width: 100%;
	padding-top: calc(100% * 121 / 145);
	overflow: hidden;
	border-radius: 6px;
}
.atom-material__samples .atom-samplesgall .gall-d__list img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.atom-video-block {
	margin-bottom: 32px;
}
.atom-video-block__title {
	margin: 0 0 20px;
	font-family: var(--atom-font);
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	color: #4f4f4f;
}
.atom-video-frame {
	position: relative;
	width: 100%;
	max-width: 830px;
	margin: 0 auto;
	aspect-ratio: 830 / 436;
	border-radius: 10px;
	overflow: hidden;
	background: #1e1e1e;
}
.atom-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.atom-video-frame__link {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--atom-white);
	text-decoration: none;
	background: rgba(30, 30, 30, .7);
	font-family: var(--atom-font);
}

.atom-sample {
	text-align: center;
}

@media (max-width: 1280px) {

	.atom-material__top { grid-template-columns: minmax(0, 1fr); }
}

a.atom-button_accent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 32px;
	border-radius: 10px;
	background: #2b4393;
	color: #fff;
	font-family: var(--atom-font);
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 0 15px rgba(0, 0, 0, .18);
	border: 0;
	cursor: pointer;
	transition: background-color .2s ease;
	text-decoration: none;
}
.atom-button_accent:hover,
.atom-button_accent:focus,
.atom-button_accent:active {
	background: #dfdfdf;
	color: #000;
}

@media (max-width: 759px) {
	.atom-material__pdf .atom-button_accent {
		width: 100%;
		box-sizing: border-box;
	}
}

.atom-question {
	position: relative;
	margin: 48px calc(50% - 50vw);
	padding: 0;
	border-radius: 0;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	color: var(--atom-white);
}
.atom-question::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(43, 67, 147, .8);
	z-index: 0;
}
.atom-question__inner {
	position: relative;
	z-index: 1;
	max-width: var(--atom-container);
	margin: 0 auto;
	padding: 56px 40px;
	box-sizing: border-box;
}

.atom-question .block-d_form {
	max-width: none;
}

.section-d_clauses .atom-question .block-d__name,
.atom-question_okompanii .block-d__name,
.atom-question_kontakty .block-d__name {
	display: none;
}
.atom-question .block-d__name,
.atom-question__title {
	grid-column: 1 / -1;
	margin: 0 0 32px;
	font-family: var(--atom-font);
	font-size: 32px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	color: var(--atom-white);
}

.atom-question form {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.atom-question .feedback_form_param1 { grid-column: 1; grid-row: 1; }
.atom-question .feedback_form_param6 { grid-column: 2; grid-row: 1; }
.atom-question .feedback_form_param2 { grid-column: 3; grid-row: 1; }
.atom-question .feedback_form_param3 { grid-column: 1 / span 2; grid-row: 2; }
.atom-question .feedback_form_param9 { grid-column: 3; grid-row: 2; }
.atom-question .feedback_form_param3 textarea {
	min-height: 145px;
}
.atom-question .field-d__name {
	margin-bottom: 6px;
	font-family: var(--atom-font);
	font-size: 13px;
	color: var(--atom-white);
}
.atom-question input[type="text"],
.atom-question input[type="email"],
.atom-question input[type="tel"],
.atom-question textarea {
	width: 100%;
	box-sizing: border-box;
	height: 55px;
	padding: 0 18px;
	border: 1px solid var(--atom-white);
	border-radius: 10px;
	background: transparent;
	color: var(--atom-white);
	font-family: var(--atom-font);
	font-size: 14px;
}
.atom-question textarea {
	height: 145px;
	padding: 16px 18px;
	resize: vertical;
}
.atom-question input::placeholder,
.atom-question textarea::placeholder {
	color: rgba(255, 255, 255, .7);
}

.atom-question .inpattachment {
	display: inline-flex;
	align-items: center;
	height: auto;
	padding: 0;
	border: 0;
	font-family: var(--atom-font);
	font-size: 14px;
	cursor: pointer;
}

.atom-question .inpattachment input[type="file"] + label {
	color: rgba(255, 255, 255, .9);
	text-decoration: underline;
}
.atom-question .inpattachment:hover input[type="file"] + label {
	color: var(--atom-white);
}
.atom-question .inpattachment[style*="display:none"],
.atom-question .inpattachment[style*="display: none"] {
	display: none !important;
}

.atom-question__consent {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 32px;
}
.atom-question__checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--atom-font);
	font-size: 14px;
	color: var(--atom-white);
	cursor: pointer;
}
.atom-question__checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	accent-color: var(--atom-accent);
	cursor: pointer;
}

.section-d_clauses .atom-question form > button.button-d:not(.button-d_short) {
	grid-column: 1 / -1;
	display: block;
	width: 100%;
	max-width: 280px;
	margin: 0;
}
.atom-question .button-d__name {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	padding: 15px 40px;
	border-radius: 10px;
	background: var(--atom-accent);
	color: #4f4f4f;
	font-family: var(--atom-font);
	font-size: 18px;
	font-weight: 600;
	box-shadow: 0 0 15px rgba(0, 0, 0, .18);
	transition: background-color .2s ease;
}
.atom-question .button-d__name:hover {
	background: #2b4393;
	color: #fff;
}
.atom-question button.button-d {
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.atom-question form > button.button-d.button-d_short.js_captcha_show {
	grid-column: 1 / -1;
	justify-self: start;
	color: var(--atom-white);
}
.atom-question .captcha {
	grid-column: 1 / -1;
}
.atom-question .captcha .field-d__name {
	color: var(--atom-white);
}
.atom-question .captcha input[type="text"] {
	height: 44px;
}

.atom-question__legal {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	font-family: var(--atom-font);
	font-size: 12px;
	margin-top: 16px;
}
.atom-question__legal a,
.atom-question__legal a:link,
.atom-question__legal a:visited {
	color: rgba(255, 255, 255, .7);
	text-decoration: underline;
}
.atom-question__legal a:hover {
	color: var(--atom-white);
}
.atom-question .required_field,
.atom-question .errors {
	grid-column: 1 / -1;
	font-size: 12px;
	color: #ffd7d7;
	text-align: left;
	background: none;
}

@media (max-width: 979px) {
	.atom-question form {
		grid-template-columns: repeat(2, 1fr);
	}
	.atom-question .feedback_form_param1 { grid-column: 1; grid-row: 1; }
	.atom-question .feedback_form_param6 { grid-column: 2; grid-row: 1; }
	.atom-question .feedback_form_param2 { grid-column: 1 / -1; grid-row: 2; }
	.atom-question .feedback_form_param3 { grid-column: 1 / -1; grid-row: 3; }
	.atom-question .feedback_form_param9 { grid-column: 1 / -1; grid-row: 4; }
}

@media (max-width: 759px) {
	.atom-question__inner { padding: 32px 20px; }
	.atom-question .block-d__name,
	.atom-question__title { font-size: 24px; }
}

.atom-orbit {
	position: relative;
	max-width: 1170px;
	margin: 0 auto 48px;
	padding: 40px 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
}
.atom-orbit__photo {
	position: relative;
	z-index: 1;
	width: 340px;
	height: 340px;
	flex-shrink: 0;
}

.atom-orbit__photo::before {
	content: '';
	position: absolute;
	inset: -22px;
	border: 1px dashed #2b4393;
	border-radius: 50%;
	pointer-events: none;
}
.atom-orbit__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 50%;
}
.atom-orbit__col {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1 1 0;
	max-width: 300px;
}
.atom-orbit__item {
	position: relative;
	background: #2b4393;
	border-radius: 10px;
	padding: 18px 20px;
	color: var(--atom-white);
	font-family: var(--atom-font);
	font-size: 16px;
	line-height: 1.4;
}
.atom-orbit__item-icon {
	display: block;
	width: 24px;
	height: 24px;
	margin-bottom: 10px;
	filter: brightness(0) invert(1);
}

.atom-orbit__connector {
	position: absolute;
	top: 50%;
	width: 137px;
	height: 0;
	border-top: 1px dashed #2b4393;
	pointer-events: none;
}
.atom-orbit__connector::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #2b4393;
	transform: translateY(-50%);
}
.atom-orbit__col_left .atom-orbit__connector {
	right: -103px;
}
.atom-orbit__col_left .atom-orbit__item:nth-child(1) .atom-orbit__connector::after {
	right: -8px;
}
.atom-orbit__col_left .atom-orbit__item:nth-child(2) .atom-orbit__connector::after {
	right: -3px;
}
.atom-orbit__col_left .atom-orbit__item:nth-child(3) .atom-orbit__connector::after {
	right: -8px;
}
.atom-orbit__col_right .atom-orbit__connector {
	left: -85px;
}
.atom-orbit__col_right .atom-orbit__connector::after {
	left: -5px;
}
.atom-orbit__item:nth-child(2) .atom-orbit__connector {
	width: 40px;
}
.atom-orbit__col_left .atom-orbit__item:nth-child(2) .atom-orbit__connector {
	right: -40px;
}
.atom-orbit__col_right .atom-orbit__item:nth-child(2) .atom-orbit__connector {
	left: -42px;
}
.atom-orbit__col_right .atom-orbit__item:nth-child(3) .atom-orbit__connector {
	left: -120px;
}

@media (max-width: 900px) {
	.atom-orbit { flex-direction: column; gap: 20px; padding: 20px; margin-bottom: 0;}
	.atom-orbit__col { max-width: 560px; flex-direction: row; flex-wrap: wrap; }
	.atom-orbit__item { flex: 1 1 260px; }
	.atom-orbit__photo { width: 240px; height: 240px; margin-top: 32px; margin-bottom: 32px;}
	.atom-orbit__connector { display: none; }
}

@media (max-width: 759px) {
	.atom-orbit {
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

@media (min-width: 760px) and (max-width: 1280px) {
	.atom-orbit {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "photo photo" "left right";
		column-gap: 90px;
		row-gap: 40px;
		justify-items: center;
		max-width: 760px;
		padding: 40px 20px 0;
		margin: 32px auto;
	}
	.atom-orbit__photo {
		grid-area: photo;
		width: 340px;
		height: 340px;
		margin: 0;
	}
	.atom-orbit__col_left,
	.atom-orbit__col_right {
		max-width: none;
		width: 100%;
		flex-direction: column;
		flex-wrap: nowrap;
		position: relative;
	}
	.atom-orbit__col_left { grid-area: left; }
	.atom-orbit__col_right { grid-area: right; }
	.atom-orbit__item {
		flex: 0 0 auto;
		min-height: 119px;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.atom-orbit__connector {
		display: block;
		width: 45px;
	}
	.atom-orbit__connector::after {
		width: 22px;
		height: 22px;
	}
	.atom-orbit__col_left .atom-orbit__connector {
		right: -40px;
	}
	.atom-orbit__col_right .atom-orbit__connector,
	.atom-orbit__col_right .atom-orbit__item:nth-child(2) .atom-orbit__connector,
	.atom-orbit__col_right .atom-orbit__item:nth-child(3) .atom-orbit__connector {
		left: -45px;
	}
	.atom-orbit__col_left .atom-orbit__connector::after,
	.atom-orbit__col_left .atom-orbit__item:nth-child(1) .atom-orbit__connector::after,
	.atom-orbit__col_left .atom-orbit__item:nth-child(2) .atom-orbit__connector::after,
	.atom-orbit__col_left .atom-orbit__item:nth-child(3) .atom-orbit__connector::after { right: -16px; }
	.atom-orbit__col_right .atom-orbit__connector::after { left: -11px; }

	.atom-orbit__col_left::after {
		content: '';
		position: absolute;
		left: calc(100% + 45px);
		top: 59.5px;
		bottom: 59.5px;
		width: 0;
		border-left: 1px dashed #2b4393;
		pointer-events: none;
	}
}

.atom-certs {
	position: relative;
	margin-bottom: 40px;
}
.atom-certs .swiper-pagination {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	z-index: 2;
	text-align: center;
	line-height: 1;
}
.atom-certs .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	box-sizing: border-box;
	margin: 0 4px;
	background: #fff;
	border: 1px solid #2b4393;
	opacity: 1;
	border-radius: 50%;
}
.atom-certs .swiper-pagination-bullet-active {
	background: #2b4393;
}
.atom-certs .swiper-pagination-bullet::after {
	display: none;
}
.atom-cert {
	text-align: center;
}

.atom-cert a {
	position: relative;
	display: block;
	width: 100%;
	padding-top: calc(100% * 300 / 213);
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 4px 24px rgba(19, 33, 77, .1);
}
.atom-cert img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.atom-facts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 40px 0;
}
.atom-fact {
	flex: 0 1 370px;
	min-height: 119px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #2b4393;
	border-radius: 10px;
	padding: 16px 24px;
	color: var(--atom-white);
	font-family: var(--atom-font);
	font-size: 16px;
	line-height: 1.4;
}

.atom-contacts-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	margin-bottom: 40px;
}
.atom-contacts-info {
	display: flex;
	flex-direction: column;
	gap: 28px;
	font-family: var(--atom-font);
	font-size: 18px;
	color: #4f4f4f;
}
.atom-contacts-info__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.atom-contacts-info__icon {
	flex-shrink: 0;
	width: 20px;
	margin-top: 2px;
}
.atom-contacts-info__icon img {
	display: block;
	width: 100%;
	height: auto;
}
.atom-contacts-map {
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 571 / 347;
}
.atom-contacts-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

@media (max-width: 900px) {
	.atom-contacts-block { grid-template-columns: 1fr; }
}

.atom-page-text {
	font-family: var(--atom-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--atom-text);
	margin-bottom: 48px;
}

.privacy_policy {
	font-family: var(--atom-font);
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: normal;
}

@media (max-width: 759px) {
	.atom-burger {
		display: inline-flex;
	}
	.atom-header__menu {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background-color: var(--atom-navy);
		padding: 16px 15px 24px;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-8px);
		pointer-events: none;
		transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
	}
	.atom-header__menu.js-atom-menu_open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
	.atom-nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.atom-nav__item:nth-child(4) {
		margin-left: 0;
	}
	.atom-nav__item a {
		font-size: 17px;
	}
}

@media (max-width: 759px) {
	.atom-header__box {
		min-height: 153px;
		padding-top: 0;
		padding-bottom: 0;
	}
	.atom-header__top {
		padding-top: 32px;
	}

	.atom-header .atom-contact_mail,
	.atom-header .atom-contact_address,
	.atom-header__flag {
		display: none;
	}

	.atom-header .atom-contact_phone a:not(.atom-contact__icon) {
		display: none;
	}

	.atom-header .atom-contact_phone .atom-contact__icon {
		width: 19px;
	}
	.atom-header__actions {
		position: absolute;
		left: 0;
		right: 0;
		top: 119px;
		justify-content: center;
	}
	.atom-header__logo {
		position: absolute;
		left: 50%;
		top: 16px;
		transform: translateX(-50%);
		padding: 0;
	}

	.atom-header__nav {
		position: static;
		min-height: 0;
	}
	.atom-burger {
		position: absolute;
		top: 32px;
		right: 15px;
		width: 43px;
		height: 23px;
		gap: 5px;
	}
	.atom-burger span {
		height: 6px;
		border-radius: 90px;
		background-color: #d9d9d9;
	}
	.atom-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
	.atom-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }
	.atom-header__menu {
		left: 0;
		right: 0;
		top: 100%;
	}

	.page-d_home .atom-header__menu {
		background-color: rgba(32, 32, 32, .59);
	}

	.atom-heroheader > .atom-header {
		z-index: 2;
	}

	.atom-header__menu-extra {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid rgba(255, 255, 255, .15);
	}
	.atom-header__menu-extra .atom-contact_address {
		display: flex;
	}
	.atom-header__menu-extra .atom-contact_phone a:not(.atom-contact__icon) {
		display: inline;
	}
	.atom-header__menu-extra .atom-contact_phone .atom-contact__icon {
		width: 15px;
	}
	.atom-header__menu-extra .atom-header__flag_menu {
		display: block;
	}
}

@media (max-width: 759px) {
	.atom-section {
		padding-bottom: 0;
	}

	.atom-section_bleed-gray {
		padding-bottom: 56px;
	}
}
