

/* Start:/local/templates/molmash/css/variables.css?1784895856771*/
:root {
	/* Colors */
	--color-blue: #08c;
	--color-black: #000;
	--color-dark-first: #191919;
	--color-dark-second: #23262f;
	--color-white: #fff;
	--color-dark-gray2: #555;
	--color-gray: #898989;
	--color-dark-gray1: #777e90;
	--color-accent: #08c;
	--color-accent-light-first: #009ceb;
	--color-light-gray: #efefef;
	--color-light-blue-first: #fcfcfd;
	--color-blue-second: #f1f3f9;
	--color-green: #23c021;
	--color-footer: #373d44;

	/* Layout */
	--header-max-width: 1340px;

	/* Fonts */
	--font-primary: Roboto, sans-serif;
	--font-heading: Rubik, Roboto, sans-serif;

	/* Breakpoints (токены; в @media — литералы с теми же значениями) */
	--bp-xl: 1281px;
	--bp-lg: 1029px;
	--bp-md: 999px;
	--bp-sm: 769px;
	--bp-xs: 541px;
}

/* End */


/* Start:/local/templates/molmash/components/bitrix/form.result.new/modal/style.css?17848887324274*/
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.callback-form {
	width: 100%;
	text-align: start;
}

.callback-form__title {
	margin: 0 0 40px;
	font-family: Rubik, Roboto, Arial, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	color: var(--color-dark-first);
}

.callback-form__errors {
	margin: 0 0 20px;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: #ed2626;
	background: #fff5f5;
	border: 1px solid #fecdca;
	text-align: start;
}

.callback-form__fields {
	display: flex;
	flex-direction: column;
}

.callback-form__field {
	margin-bottom: 20px;
}

.callback-form__input {
	display: block;
	width: 100%;
	height: 60px;
	padding: 12px 12px 12px 20px;
	border: 1px solid rgba(119, 126, 144, 0.15);
	border-radius: 0;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 25px;
	color: #23262f;
	background: var(--color-white);
	outline: none;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.callback-form__input::placeholder {
	color: #b1b5c3;
	font-weight: 500;
}

.callback-form__input:focus,
.callback-form__input:focus-visible {
	border-color: var(--color-accent);
	outline: none;
}

.callback-form__field--error .callback-form__input {
	border-color: #ed2626;
}

.callback-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.callback-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	margin: 40px 0 25px;
	padding: 19px 36px;
	border: none;
	border-radius: 0;
	background: var(--color-accent);
	color: var(--color-white);
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.callback-form__submit:hover {
	background: var(--color-accent-light-first);
	color: var(--color-white);
}

.callback-form__submit:disabled,
.callback-form__submit.is-disabled,
.callback-form__submit:disabled:hover,
.callback-form__submit.is-disabled:hover {
	background: var(--color-gray);
	color: var(--color-white);
	cursor: not-allowed;
	opacity: 1;
}

.callback-form__privacy {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin: 0;
	cursor: pointer;
	text-align: start;
}

.callback-form__privacy-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.callback-form__privacy-box {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-top: 4px;
	border: 1px solid rgba(119, 126, 144, 0.15);
	border-radius: 4px;
	background: var(--color-white);
	box-sizing: border-box;
	position: relative;
}

.callback-form__privacy-input:checked + .callback-form__privacy-box {
	background: var(--color-accent);
	border-color: var(--color-accent);
}

.callback-form__privacy-input:checked + .callback-form__privacy-box::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 4px;
	width: 5px;
	height: 10px;
	border: solid var(--color-white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.callback-form__privacy-input:focus-visible + .callback-form__privacy-box {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.callback-form__privacy-text {
	font-size: 14px;
	line-height: 24px;
	color: var(--color-dark-first);
}

.callback-form__privacy-link {
	color: #4963ff;
	text-decoration: none;
}

.callback-form__privacy-link:hover {
	text-decoration: underline;
	color: #4963ff;
}

.callback-form__success {
	margin: 0;
	padding: 24px 8px;
	font-family: Rubik, Roboto, Arial, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	color: var(--color-dark-first);
}

@media screen and (max-width: 541px) {
	.callback-form__title {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.callback-form__field {
		margin-bottom: 15px;
	}

	.callback-form__input {
		height: 50px;
		border-radius: 12px;
		font-size: 14px;
		line-height: 24px;
	}

	.callback-form__submit {
		height: 50px;
		margin: 30px 0 25px;
		padding: 14px 24px;
	}

	.callback-form__success {
		font-size: 20px;
	}
}

/* End */


/* Start:/local/templates/molmash/components/bitrix/menu/top/style.css?17853968269011*/
.navigation {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	z-index: 20;
	background: transparent;
	position: relative;
}

.navigation__content {
	display: flex;
	width: 100%;
	max-width: var(--header-max-width, 1340px);
	align-items: center;
	margin: 0 auto;
	padding: 0 24px;
	background: #fff;
	border-top: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
}

.navigation__list {
	height: 60px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.navigation__list .item {
	position: relative;
	cursor: pointer;
	list-style: none;
}

.navigation__list .item--catalog {
	position: static;
}

.navigation__list .item__link {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 10px 12px;
	color: var(--color-dark-first, #191919);
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	border-radius: 4px 4px 0 0;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.navigation__list .item__link:hover .item__text,
.navigation__list .item.is-selected > .item__link .item__text {
	color: var(--color-accent, #08c);
}

.navigation__list .item--catalog:hover > .item__link--root,
.navigation__list .item--catalog:focus-within > .item__link--root {
	background: rgba(0, 136, 204, 0.12);
	color: var(--color-accent, #08c);
}

.navigation__list .item--catalog:hover > .item__link--root .item__text,
.navigation__list .item--catalog:focus-within > .item__link--root .item__text,
.navigation__list .item--catalog:hover > .item__link--root .item__arrow,
.navigation__list .item--catalog:focus-within > .item__link--root .item__arrow {
	color: var(--color-accent, #08c);
}

.navigation__list .item__link--root .item__arrow {
	display: inline-block;
	flex-shrink: 0;
	width: 0;
	height: 0;
	margin-left: 2px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	color: var(--color-dark-first, #191919);
	transition: color 0.2s ease;
}

.navigation__list .item__link--root:hover .item__arrow,
.navigation__list .item.is-selected > .item__link--root .item__arrow {
	color: var(--color-accent, #08c);
}

.navigation__list .submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 280px;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	background: #fff;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	z-index: 1000;
}

.navigation__list .item:hover > .submenu,
.navigation__list .item:focus-within > .submenu {
	display: block;
}

.navigation__list .submenu .item {
	width: 100%;
}

.navigation__list .submenu .item__link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: 400;
	border-bottom: 1px solid #f2f2f2;
	white-space: normal;
	border-radius: 0;
}

.navigation__list .submenu .item:last-child > .item__link {
	border-bottom: none;
}

.navigation__list .submenu .item--parent > .item__link::after {
	content: "›";
	font-size: 18px;
	margin-left: 12px;
	color: var(--color-dark-gray1, #777e90);
}

.navigation__list .submenu .submenu {
	top: 0;
	left: 100%;
	border-radius: 0 4px 4px 0;
}

.navigation__mega {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 28px 0;
	background: #fff;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	border-top: 1px solid #f2f2f2;
}

.navigation__list .item--catalog:hover > .navigation__mega,
.navigation__list .item--catalog:focus-within > .navigation__mega {
	display: block;
}

.navigation__mega-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px 20px;
	width: 100%;
	max-width: var(--header-max-width, 1340px);
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.navigation__mega-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.navigation__mega-card-main {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	text-decoration: none;
	color: var(--color-dark-first, #191919);
}

.navigation__mega-card-main:hover .navigation__mega-card-title {
	color: var(--color-accent, #08c);
}

.navigation__mega-card-image {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	object-fit: contain;
	background: #f7f8fa;
	border-radius: 4px;
}

.navigation__mega-card-title {
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
	transition: color 0.2s ease;
}

.navigation__mega-children {
	margin: 0 0 0 76px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.navigation__mega-children a {
	color: var(--color-accent, #08c);
	font-size: 13px;
	line-height: 18px;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.navigation__mega-children a:hover {
	opacity: 0.75;
	text-decoration: underline;
}

@media screen and (max-width: 999px) {
	.navigation {
		display: none;
	}
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
	display: none;
}

@media screen and (max-width: 999px) {
	.mobile-nav {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 1000;
		visibility: hidden;
		pointer-events: none;
	}

	.mobile-nav.is-open {
		visibility: visible;
		pointer-events: auto;
	}

	.mobile-nav__backdrop {
		position: absolute;
		inset: 0;
		background: rgba(25, 25, 25, 0.35);
		opacity: 0;
		transition: opacity 0.25s ease;
	}

	.mobile-nav.is-open .mobile-nav__backdrop {
		opacity: 1;
	}

	.mobile-nav__panel {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		width: 90%;
		max-width: 90%;
		padding: 56px 24px 32px;
		background: #fff;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transform: translateX(-100%);
		transition: transform 0.28s ease;
	}

	.mobile-nav.is-open .mobile-nav__panel {
		transform: translateX(0);
	}

	.mobile-nav__close {
		position: absolute;
		top: 12px;
		right: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
	}

	.mobile-nav__nav {
		flex: 0 0 auto;
	}

	.mobile-nav__list,
	.mobile-nav__sublist {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.mobile-nav__item {
		border-bottom: 0;
	}

	.mobile-nav__link,
	.mobile-nav__toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 16px 0;
		border: 0;
		background: transparent;
		color: var(--color-dark-first, #191919);
		font-family: inherit;
		font-size: 18px;
		line-height: 24px;
		font-weight: 500;
		text-align: left;
		text-decoration: none;
		cursor: pointer;
	}

	.mobile-nav__sublist .mobile-nav__link,
	.mobile-nav__sublist .mobile-nav__toggle {
		padding: 12px 0 12px 12px;
		font-size: 16px;
		font-weight: 400;
		line-height: 22px;
	}

	.mobile-nav__sublist .mobile-nav__sublist .mobile-nav__link,
	.mobile-nav__sublist .mobile-nav__sublist .mobile-nav__toggle {
		padding-left: 24px;
		font-size: 15px;
	}

	.mobile-nav__chevron {
		flex-shrink: 0;
		width: 10px;
		height: 10px;
		margin-left: 12px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg);
		transition: transform 0.2s ease;
	}

	.mobile-nav__item.is-open > .mobile-nav__toggle .mobile-nav__chevron {
		transform: rotate(-135deg);
	}

	.mobile-nav__sublist {
		display: none;
		padding-bottom: 8px;
	}

	.mobile-nav__item.is-open > .mobile-nav__sublist {
		display: block;
	}

	.mobile-nav__footer {
		margin-top: auto;
		padding-top: 32px;
		flex: 0 0 auto;
	}

	.mobile-nav__contacts {
		margin-top: 0;
		padding-top: 0;
	}

	.mobile-nav__contacts-title {
		margin: 0 0 18px;
		font-size: 18px;
		line-height: 24px;
		font-weight: 500;
		color: var(--color-dark-first, #191919);
	}

	.mobile-nav__contact {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 16px;
	}

	.mobile-nav__contact:last-child {
		margin-bottom: 0;
	}

	.mobile-nav__contact-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 20px;
		height: 20px;
		margin-top: 2px;
	}

	.mobile-nav__contact-body {
		display: flex;
		flex-direction: column;
		gap: 4px;
		min-width: 0;
	}

	.mobile-nav__contact-value {
		font-size: 16px;
		line-height: 22px;
		font-weight: 500;
		color: var(--color-dark-first, #191919);
	}

	.mobile-nav__contact-value--address {
		font-weight: 400;
	}

	.mobile-nav__contact-value--address br {
		display: none;
	}

	.mobile-nav__contact-note {
		font-size: 13px;
		line-height: 18px;
		color: var(--color-dark-gray1, #777e90);
	}

	.mobile-nav__social {
		margin-top: 28px;
	}

	.mobile-nav__social-label {
		margin: 0 0 12px;
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
		color: var(--color-dark-first, #191919);
		text-transform: lowercase;
	}

	.mobile-nav__social-list {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
}


/* End */


/* Start:/bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1784708727666*/
div.bx-yandex-map {color: black; font-size: 11px;}
div.bx-yandex-map div.YMaps-b-balloon-content {color: black; font-size: 11px;}
div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td {
	padding: 0px !important;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td textarea{
	font-size: 11px;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td.YMaps-b-balloon-b {
	background-image: none !important;
}

/* End */


/* Start:/local/templates/molmash/styles.css?17870552951445*/
/* Page content styles (Bitrix auto-loads this file). */
.page-content {
	padding: 24px 0 40px;
}

/* Homepage intro — include area «Текст на главной» (molmash.ru section-second). */
.home-intro {
	padding: 60px 0;
}

.home-intro__title {
	margin: 0 0 34px;
	font-family: Rubik, Roboto, sans-serif;
	font-weight: 500;
	font-size: 26px;
	line-height: 40px;
	color: var(--color-dark-first);
}

.home-intro__text {
	margin: 0 0 24px;
	max-width: 1264px;
	font-size: 16px;
	line-height: 24px;
	color: var(--color-dark-gray2);
}

.home-intro__text:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 769px) {
	.home-intro {
		padding: 40px 0 60px;
	}

	.home-intro__title {
		margin-bottom: 20px;
		font-size: 22px;
		line-height: 32px;
	}

	.home-intro__text {
		margin-bottom: 14px;
		font-size: 15px;
		line-height: 22px;
	}
}

/* Contacts page */
.contacts-page {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contacts-page__item {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.contacts-page__caption,
.contacts-page__value,
.contacts-page__email-row {
	font-size: 16px;
	line-height: 24px;
	color: var(--color-dark-first);
}

.contacts-page__caption--mail {
	margin-bottom: 10px;
}

.contacts-page__emails {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.contacts-page__email-row a:hover {
	color: var(--color-accent);
}

.contacts-page__value:hover {
	color: var(--color-accent);
}


/* End */


/* Start:/local/templates/molmash/template_styles.css?178705529526457*/
/* Self-hosted fonts (cyrillic + latin) — no Google Fonts RTT */
@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 400 500;
	font-display: swap;
	src: url("/local/templates/molmash/fonts/roboto-cyrillic.woff2") format("woff2");
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 400 500;
	font-display: swap;
	src: url("/local/templates/molmash/fonts/roboto-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: Rubik;
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("/local/templates/molmash/fonts/rubik-cyrillic.woff2") format("woff2");
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: Rubik;
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("/local/templates/molmash/fonts/rubik-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-primary);
	font-weight: 400;
	color: var(--color-dark-first);
	background: var(--color-white);
	min-height: 100%;
}

body.is-mobile-nav-open {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: inherit;
}


p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}
h1 {
	font-size: 32px;
}
h2{
	font-size: 22px;
}
h3{
	font-size: 18px;
}
h4{
	font-size: 16px;
}

ul{
	margin: 15px 0;
}

li {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

button {
	cursor: pointer;
	font-family: inherit;
}
p {
	margin: 15px 0;
	font-size: 16px;
}
.typography li{
	list-style: disc;
}
#panel {
	z-index: 1000;
}

.page-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.page-content {
	flex: 1 0 auto;
	width: 100%;
}

.container {
	width: 100%;
	max-width: var(--header-max-width);
	margin: 0 auto;
}
.main-page{
	padding-top: 0;
}
/* Typography helpers */
.mm-text {
	font-weight: 400;
	font-family: var(--font-primary);
}

.mm-text--s {
	font-size: 13px;
	line-height: 18px;
}

.mm-text--m {
	font-size: 14px;
	line-height: 18px;
}

.mm-text--xl {
	font-size: 16px;
	line-height: 20px;
}

.mm-text--dark {
	color: var(--color-dark-first);
}

.mm-text--dark-first {
	color: var(--color-dark-first);
}

.mm-text--light-gray {
	color: var(--color-light-gray);
}

.mm-text--gray {
	color: var(--color-gray);
}

.mm-text--white {
	color: var(--color-white);
}

/* Buttons */
.mm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mm-button--accent {
	background: var(--color-accent);
	color: var(--color-white);
}

.mm-button--accent:hover {
	background: var(--color-accent-light-first);
	color: var(--color-white);
}

.mm-button--xs {
	padding: 10px 20px;
	height: 40px;
}

/* Icons */
.mm-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
}

.mm-icon svg {
	display: block;
}

/* ========== HEADER ========== */
.header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
	width: 100%;
	background: var(--color-white);
	border-bottom: 1px solid #f2f2f2;
	position: relative;
	z-index: 10;
	color: var(--color-dark-first);
}

.header__content {
	display: flex;
	width: 100%;
	max-width: var(--header-max-width);
	justify-content: space-between;
	align-items: center;
	height: 100px;
	gap: 16px;
	padding: 0 24px;
	margin: 0 auto;
}

.header__burger,
.header__phone-icon {
	display: none;
}

.header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header__logo img,
.header__logo-img {
	width: 80px;
	height: auto;
	display: block;
}

.header__logo-img--light {
	display: none;
}

.header__slogan {
	margin: 0;
	flex-shrink: 1;
	max-width: 180px;
	line-height: 18px;
}
@media screen and (max-width: 1368px) {
	.container{
		padding: 0 24px;
	}

	.header__search-host {
		width: 200px;
	}
}
@media screen and (max-width: 1281px) {
	.header__slogan {
		display: none;
	}
}

.header__info-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.header__info-text a:hover,
.header__mail a:hover {
	color: var(--color-accent);
}

.header__cta {
	flex-shrink: 0;
}

.header__search-toggle {
	display: none;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.header__search-overlay {
	display: none;
}

.header__search-host {
	position: relative;
	width: 240px;
	flex-shrink: 0;
}

.header__search {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	min-height: 40px;
	margin: 0;
	padding: 0 12px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	background: var(--color-white);
}

.header__search-input {
	flex: 1;
	min-width: 0;
	width: 100%;
	border: 0;
	background: transparent;
	outline: none;
	font: inherit;
	font-size: 14px;
	color: var(--color-dark-first);
	appearance: none;
	-webkit-appearance: none;
}

.header__search-input::-webkit-search-cancel-button,
.header__search-input::-webkit-search-decoration {
	-webkit-appearance: none;
}

.header__search-input::placeholder {
	color: var(--color-gray);
}

.header__search-submit {
	display: grid;
	flex-shrink: 0;
	place-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-dark-first);
	cursor: pointer;
}

.header--main .header__search {
	border-color: rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.12);
}

.header--main .header__search-input,
.header--main .header__search-submit {
	color: var(--color-white);
}

.header--main .header__search-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

/* RESULT создаётся в body; top/left/width задаёт JCTitleSearch.
   th держим нулевой ширины, иначе скрипт сдвигает блок влево. */
div.title-search-result {
	z-index: 1200;
	box-sizing: border-box;
	display: none;
	overflow-x: hidden;
	overflow-y: auto;
	max-height: min(70vh, 420px);
	padding: 8px 0;
	background: #fff;
	border: none;
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(25, 25, 25, 0.12);
}

table.title-search-result {
	width: 100% !important;
	border-collapse: collapse;
	border: none;
	table-layout: fixed;
}

table.title-search-result th {
	width: 0 !important;
	max-width: 0 !important;
	padding: 0 !important;
	margin: 0;
	border: none;
	background: transparent;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	color: transparent;
}

table.title-search-result td {
	padding: 0;
	border: none;
	background: transparent;
	color: var(--color-dark-first);
	white-space: normal;
	vertical-align: middle;
}

table.title-search-result td.title-search-separator {
	padding: 12px 20px 4px;
}

table.title-search-result .title-search-group {
	display: block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(25, 25, 25, 0.45);
}

table.title-search-result td.title-search-item a,
table.title-search-result td.title-search-all a,
table.title-search-result td.title-search-more a {
	display: block;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-dark-first);
	text-decoration: none;
}

table.title-search-result td.title-search-all a,
table.title-search-result td.title-search-more a {
	font-weight: 500;
	color: var(--color-accent);
}

table.title-search-result tr.title-search-selected td,
table.title-search-result tr.title-search-selected a,
table.title-search-result td.title-search-item a:hover,
table.title-search-result td.title-search-all a:hover,
table.title-search-result td.title-search-more a:hover {
	background: var(--color-blue-second);
}

.title-search-fader {
	display: none !important;
}

body.is-search-open {
	overflow: hidden;
}

@media screen and (max-width: 900px) {
	html {
		scrollbar-gutter: stable;
	}
}

.header__text {
	display: block;
}
.header__adress,
.header__info,
.header__mail {
	display: flex;
	align-items: start;
	gap: 10px;
}
.header__mail{
	align-items: center;
}
@media screen and (max-width: 1281px) {
	.header__text {
		display: none;
	}
}

/* Main page dark header — desktop only (≥1000px), bg on content container */
@media screen and (min-width: 1000px) {
	.header--main {
		background: transparent;
		border-bottom: none;
		color: var(--color-white);
	}

	.header--main .header__content {
		background: url("/local/templates/molmash/images/bg_main_top.jpg") center / cover no-repeat;
	}

	.header--main .header__logo-img--dark {
		display: none;
	}

	.header--main .header__logo-img--light {
		display: block;
	}

	.header--main .mm-text--dark,
	.header--main .mm-text--dark-first {
		color: var(--color-white);
	}

	.header--main .header__info-text a:hover,
	.header--main .header__mail a:hover {
		color: var(--color-accent-light-first);
	}

	.header--main .header__cta .mm-button {
		box-sizing: border-box;
		background: transparent;
		color: var(--color-white);
		border: 1px solid var(--color-white);
	}

	.header--main .header__cta .mm-button:hover {
		background: var(--color-white);
		color: var(--color-dark-first);
		border-color: var(--color-white);
	}
}

@media screen and (max-width: 999px) {
	.header {
		position: sticky;
		top: 0;
		z-index: 30;
	}

	.header__content {
		position: relative;
		height: 64px;
		justify-content: center;
		gap: 0;
	}

	.header__burger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		position: absolute;
		left: 24px;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
		z-index: 1;
	}

	.header__burger-line {
		display: block;
		width: 22px;
		height: 2px;
		background: var(--color-dark-first, #191919);
		border-radius: 1px;
	}

	.header__logo {
		position: relative;
		z-index: 0;
	}

	.header__adress,
	.header__mail,
	.header__info,
	.header__cta {
		display: none;
	}

	.header__phone-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		right: 24px;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		z-index: 1;
		color: var(--color-dark-first);
	}

	.header__search-host {
		position: absolute;
		right: 72px;
		top: 50%;
		transform: translateY(-50%);
		width: 180px;
		z-index: 1;
	}

	.header--main .header__search {
		border-color: #e5e5e5;
		background: var(--color-white);
	}

	.header--main .header__search-input,
	.header--main .header__search-submit {
		color: var(--color-dark-first);
	}

	.header--main .header__search-input::placeholder {
		color: var(--color-gray);
	}

	.header__phone-icon svg {
		display: block;
	}

	/* Adaptive: reset dark main header to light */
	.header--main {
		background: var(--color-white);
		border-bottom: 1px solid #f2f2f2;
		color: var(--color-dark-first);
	}

	.header--main .header__content {
		background: none;
	}

	.header--main .header__logo-img--light {
		display: none;
	}

	.header--main .header__logo-img--dark {
		display: block;
	}

	.header--main .mm-text--dark,
	.header--main .mm-text--dark-first {
		color: var(--color-dark-first);
	}
}

@media screen and (max-width: 541px) {
	.header__content {
		gap: 10px;
		padding: 0 16px;
	}

	.header__burger {
		left: 16px;
	}

	.header__phone-icon {
		right: 16px;
	}

	.header__search-host {
		right: 64px;
	}

	.header__logo img,
	.header__logo-img {
		width: 64px;
	}
}

/* Search overlay like alpha-hydraulics: ≤900px, form is fixed so the page does not shift */
@media screen and (max-width: 900px) {
	.header__search-toggle {
		display: flex;
		position: absolute;
		right: 72px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 2;
	}

	.header__search-host {
		display: none;
		position: static;
		right: auto;
		top: auto;
		transform: none;
		width: auto;
	}

	.header--search-open {
		z-index: 1100;
	}

	.header--search-open .header__search-overlay {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 1090;
		padding: 0;
		border: none;
		background: rgba(25, 25, 25, 0.45);
		cursor: pointer;
	}

	.header--search-open .header__search-host {
		display: block;
		position: fixed;
		top: 12px;
		left: 50%;
		z-index: 1101;
		width: min(100% - 48px, var(--header-max-width));
		transform: translateX(-50%);
	}

	.header--search-open .header__search {
		min-height: 54px;
		padding: 12px 16px;
		border: none;
		border-radius: 8px;
		box-shadow: 0 16px 40px rgba(25, 25, 25, 0.12);
	}

	.header--search-open .header__search-input {
		font-size: 16px;
	}

	.header--main .header__search-toggle {
		color: var(--color-dark-first);
	}
}

@media screen and (max-width: 541px) {
	.header--search-open .header__search-host {
		width: min(100% - 32px, var(--header-max-width));
	}

	.header__search-toggle {
		right: 64px;
	}
}

/* ========== FOOTER ========== */
.footer {
	background: var(--color-footer);
	padding: 32px 0;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	color: var(--color-white);
}

.footer__content {
	width: 100%;
	max-width: var(--header-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.footer__col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.footer__col-toggle {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: default;
	pointer-events: none;
}

.footer__col-title {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-white);
}

.footer__col-toggle .footer__col-title {
	margin-bottom: 0;
}

.footer__col-chevron {
	display: none;
}

.footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer__links a {
	color: var(--color-light-gray);
	font-size: 14px;
	line-height: 18px;
	transition: color 0.2s ease;
}

.footer__links a:hover {
	color: var(--color-white);
}

.footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 260px;
}

.footer__contacts-title {
	display: none;
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-white);
}

.footer__contact-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.footer__contact-row .mm-icon svg path,
.footer__contact-row .mm-icon svg {
	fill: #fff;
}

.footer__contact-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.footer__contact-text a {
	color: var(--color-light-gray);
}

.footer__contact-text a:hover {
	color: var(--color-white);
}

.footer__social {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.footer__social a,
.mobile-nav__social-list a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	transition: opacity 0.2s ease;
}

.footer__social a:hover,
.mobile-nav__social-list a:hover {
	opacity: 0.85;
}

.footer__social a .icon,
.mobile-nav__social-list a .icon {
	width: 24px;
	height: 24px;
	display: block;
}

a.social--vk {
	background: #0077ff;
}
.svg-white{
	fill: #fff;
}
a.social--fb {
	background: #3b5998;
}

a.social--ig {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

a.social--youtube {
	background: red;
}

.footer__bottom {
	border-top: 1px solid hsla(0, 0%, 95%, 0.376);
	margin: 20px 0 0;
	padding: 20px 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.footer__copyright {
	color: var(--color-gray);
	font-size: 14px;
	line-height: 18px;
}

@media screen and (max-width: 1029px) {
	.footer__top {
		flex-wrap: wrap;
		gap: 28px 32px;
	}

	.footer__col {
		flex: 1 1 140px;
	}

	.footer__contacts {
		flex: 1 1 100%;
		max-width: none;
	}
}

@media screen and (max-width: 999px) {
	.footer__top {
		flex-direction: column;
		gap: 0;
		margin-bottom: 24px;
	}

	.footer__col:not(.footer__contacts) {
		flex: none;
		width: 100%;
		gap: 0;
		border-bottom: 1px solid hsla(0, 0%, 95%, 0.376);
		padding: 0;
		margin: 0;
	}

	.footer__col-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 16px 0;
		cursor: pointer;
		pointer-events: auto;
	}

	.footer__col-title {
		margin: 0;
		font-size: 16px;
		line-height: 22px;
	}

	.footer__col-chevron {
		display: block;
		flex-shrink: 0;
		width: 10px;
		height: 10px;
		margin-left: 12px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg);
		transition: transform 0.2s ease;
		color: var(--color-white);
	}

	.footer__col.is-open > .footer__col-toggle .footer__col-chevron {
		transform: rotate(-135deg);
	}

	.footer__col:not(.footer__contacts) > .footer__links {
		display: none;
		padding: 0 0 16px;
		gap: 12px;
	}

	.footer__col.is-open:not(.footer__contacts) > .footer__links {
		display: flex;
	}

	.footer__contacts {
		flex: none;
		width: 100%;
		max-width: none;
		border-bottom: none;
		padding: 24px 0 0;
		margin: 0;
		gap: 16px;
	}

	.footer__contacts-title {
		display: block;
		margin-bottom: 4px;
	}

	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		margin: 0;
		padding: 20px 0 0;
	}
}

@media screen and (max-width: 541px) {
	.footer__content {
		padding: 0 16px;
	}
}

/* Shared breadcrumbs + page title (contacts and other static pages) */
.breadcrumbs {
	margin: 30px 0;
	color: #9a9a9a;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	font-size: 12px;
	line-height: 16px;
}

.breadcrumbs__link {
	color: #9a9a9a;
}

.breadcrumbs__link:hover .breadcrumbs__text {
	color: var(--color-accent);
}

.breadcrumbs__text--current {
	color: #9a9a9a;
}

.breadcrumbs__arrow {
	margin: 0 10px;
	font-weight: 600;
	cursor: default;
}

.page-title {
	margin: 10px 0 30px;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 26px;
	line-height: 1.3;
	color: var(--color-dark-first);
}

@media screen and (max-width: 769px) {
	.breadcrumbs {
		margin-top: 45px;
	}

	.page-title {
		font-size: 22px;
	}
}

/* Site-wide Yandex map before footer */
.site-map {
	width: 100%;
}

.site-map .bx-yandex-map,
.site-map iframe,
.site-map > div {
	width: 100% !important;
	max-width: 100%;
	border: none;
}

.site-map .bx-yandex-map {
	height: 500px;
}

/* Internal page: sidebar + content */
.page-layout {
	display: flex;
	width: 100%;
	gap: 50px;
	margin-bottom: 100px;
}

.page-layout__content {
	flex: 1;
	min-width: 0;
}

.sidebar {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	width: 270px;
	gap: 37px;
}

.sidebar__list-items,
.sidebar .list-items {
	display: flex;
	flex-direction: column;
	border: 1px solid #f2f2f2;
	border-bottom: none;
}

.sidebar__item,
.sidebar .list-items .item {
	display: block;
	padding: 14px 47px 14px 19px;
	background: none;
	border-bottom: 1px solid #f2f2f2;
	color: var(--color-dark-first);
	font-size: 15px;
	line-height: 22px;
}

.sidebar__item:hover,
.sidebar .list-items .item:hover {
	color: var(--color-accent);
}

.sidebar__item--active,
.sidebar .list-items .item-active {
	background: var(--color-accent);
	color: var(--color-white);
}

.sidebar__item--active:hover,
.sidebar .list-items .item-active:hover {
	color: var(--color-white);
}

.sidebar__aside-link img {
	display: block;
	width: 270px;
	max-width: 100%;
	height: auto;
}

.sidebar__text {
	margin: 0;
	font-size: 15px;
	line-height: 22px;
	color: var(--color-dark-gray2);
}

@media screen and (max-width: 999px) {
	.sidebar {
		display: none;
	}
}

@media screen and (max-width: 769px) {
	.page-layout {
		margin-bottom: 60px;
	}
}

/* Callback modal shell — match production form-container / backdrop */
.callback-modal-open {
	overflow: hidden;
}

.callback-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(35, 38, 47, 0.3);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.callback-modal[hidden] {
	display: none !important;
}

.callback-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 544px;
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 72px 48px;
	background: #fcfcfd;
	box-shadow: 0 64px 64px -48px hsla(0, 0%, 6%, 0.08);
}

.callback-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--color-dark-second);
	cursor: pointer;
	line-height: 0;
	z-index: 2;
}

.callback-modal__close svg {
	display: block;
	width: 14px;
	height: 14px;
}

.callback-modal__close:hover {
	color: var(--color-accent);
}

.callback-modal__body {
	width: 100%;
}

.callback-modal__body > form {
	display: block;
	width: 100%;
	margin: 0;
}

.callback-modal__loading {
	margin: 0;
	padding: 24px 0;
	text-align: center;
	color: var(--color-gray);
	font-size: 14px;
}

.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.callback-form {
	display: block;
	width: 100%;
}

.callback-form__title {
	display: block;
	margin: 0 0 40px;
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	color: var(--color-dark-first);
}

.callback-form__errors {
	display: block;
	margin: 0 0 20px;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: #ed2626;
	background: #fff5f5;
	border: 1px solid #fecdca;
	text-align: start;
}

.callback-form__fields {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.callback-form__field {
	display: block;
	width: 100%;
	margin: 0 0 20px;
}

.callback-form__input {
	display: block;
	width: 100%;
	height: 60px;
	padding: 12px 12px 12px 20px;
	border: 1px solid rgba(119, 126, 144, 0.15);
	border-radius: 0;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 25px;
	color: #23262f;
	background: #fff;
	outline: none;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.callback-form__input::placeholder {
	color: #b1b5c3;
	font-weight: 500;
	opacity: 1;
}

.callback-form__input:focus,
.callback-form__input:focus-visible {
	border-color: var(--color-accent);
	outline: none;
}

.callback-form__field--error .callback-form__input {
	border-color: #ed2626;
}

.callback-form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.callback-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	margin: 40px 0 25px;
	padding: 19px 36px;
	border: none;
	border-radius: 0;
	background: var(--color-accent);
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease;
	box-sizing: border-box;
}

.callback-form__submit:hover {
	background: var(--color-accent-light-first);
	color: #fff;
}

.callback-form__submit:disabled,
.callback-form__submit.is-disabled,
.callback-form__submit:disabled:hover,
.callback-form__submit.is-disabled:hover {
	background: var(--color-gray);
	color: #fff;
	cursor: not-allowed;
	opacity: 1;
}

.callback-form__privacy {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	margin: 0;
	cursor: pointer;
	text-align: start;
}

.callback-form__privacy-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.callback-form__privacy-box {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-top: 4px;
	border: 1px solid rgba(119, 126, 144, 0.15);
	border-radius: 4px;
	background: #fff;
	box-sizing: border-box;
	position: relative;
}

.callback-form__privacy-input:checked + .callback-form__privacy-box {
	background: var(--color-accent);
	border-color: var(--color-accent);
}

.callback-form__privacy-input:checked + .callback-form__privacy-box::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 4px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.callback-form__privacy-input:focus-visible + .callback-form__privacy-box {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.callback-form__privacy-text {
	font-size: 14px;
	line-height: 24px;
	color: var(--color-dark-first);
}

.callback-form__privacy-link {
	color: #4963ff;
	text-decoration: none;
}

.callback-form__privacy-link:hover {
	text-decoration: underline;
	color: #4963ff;
}

.callback-form__success {
	margin: 0;
	padding: 24px 8px;
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	color: var(--color-dark-first);
}

@media screen and (max-width: 541px) {
	.callback-modal {
		padding: 12px;
	}

	.callback-modal__dialog {
		padding: 50px 20px;
	}

	.callback-modal__close {
		top: 8px;
		right: 8px;
	}

	.callback-form__title {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.callback-form__field {
		margin-bottom: 15px;
	}

	.callback-form__input {
		height: 50px;
		border-radius: 12px;
		font-size: 14px;
		line-height: 24px;
	}

	.callback-form__submit {
		height: 50px;
		margin: 15px 0 25px;
		padding: 14px 24px;
	}

	.callback-form__success {
		font-size: 20px;
	}
}
.requisites__list{
	padding: 0;
	margin: 30px 0;
}
.requisites__list li{
	display: flex;
	padding: 8px;
}
.requisites__list li:nth-child(2n){
	background-color: #eff5f7;
}
.requisites__list li span:first-child{
	width: 30%;
}
.requisites__list li span{
	width: 70%;
	display: block;
}
/* End */
/* /local/templates/molmash/css/variables.css?1784895856771 */
/* /local/templates/molmash/components/bitrix/form.result.new/modal/style.css?17848887324274 */
/* /local/templates/molmash/components/bitrix/menu/top/style.css?17853968269011 */
/* /bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1784708727666 */
/* /local/templates/molmash/styles.css?17870552951445 */
/* /local/templates/molmash/template_styles.css?178705529526457 */
