:root {
	--mayak-red: #b6161d;
	--mayak-red-dark: #931118;
	--mayak-ink: #171113;
	--mayak-muted: #6f696b;
	--mayak-line: #e6e2e3;
	--mayak-surface: #f5f5f6;
}

/* Content redesign: services, cases, reviews and solutions. */
.mayak-eyebrow,
.mayak-service-hero__eyebrow {
	margin-bottom: 12px;
	color: var(--mayak-red);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.mayak-page-hero {
	padding: 54px 0 62px;
	background: linear-gradient(135deg, #f8f6f6 0%, #fff 68%);
}

.mayak-page-hero--compact {
	padding-bottom: 48px;
}

.mayak-page-hero .breadcrumbs {
	margin-bottom: 36px;
}

.mayak-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
}

.mayak-section-heading h1,
.mayak-section-heading h2,
.mayak-solutions-intro h1 {
	margin: 0;
	font-size: clamp(40px, 5vw, 68px);
	line-height: 1.06;
	letter-spacing: -.04em;
	text-transform: none;
}

.mayak-section-heading h2 {
	font-size: clamp(32px, 3vw, 48px);
}

.mayak-section-heading > p {
	max-width: 590px;
	margin: 0 0 6px;
	font-size: 18px;
	line-height: 1.55;
	color: var(--mayak-muted);
}

.mayak-text-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--mayak-red);
	font-weight: 600;
}

.mayak-text-link:hover {
	color: var(--mayak-red-dark);
}

.mayak-service-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(310px, .65fr);
	gap: 42px;
	margin: 26px 0 68px;
	padding: 54px;
	border-radius: 28px;
	background: linear-gradient(135deg, #f6f4f4 0%, #fff 62%);
	box-shadow: 0 24px 70px rgba(23, 17, 19, .07);
}

.mayak-service-hero h1 {
	max-width: 880px;
	margin: 0;
	font-size: clamp(40px, 4.5vw, 64px);
	line-height: 1.05;
	letter-spacing: -.04em;
}

.mayak-service-hero__lead {
	max-width: 820px;
	margin-top: 22px;
	font-size: 19px;
	line-height: 1.55;
	color: var(--mayak-muted);
}

.mayak-service-hero__lead p {
	margin: 0;
}

.mayak-service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.mayak-service-hero__actions .btn-main {
	height: 56px;
	border-radius: 11px;
}

.mayak-service-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.mayak-service-facts li {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	color: #4e484a;
}

.mayak-service-facts li::before {
	position: absolute;
	top: 7px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mayak-red);
	content: "";
}

.mayak-service-hero__aside {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px;
	border-radius: 22px;
	background: var(--mayak-ink);
	color: #fff;
}

.mayak-service-hero__aside img {
	width: 82px;
	height: 82px;
	margin-bottom: 52px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.mayak-service-hero__aside h2 {
	margin: 0 0 12px;
	font-size: 26px;
	line-height: 1.18;
}

.mayak-service-hero__aside p {
	margin: 0 0 20px;
	line-height: 1.55;
	color: #c9c4c5;
}

.mayak-service-hero__aside .mayak-text-link {
	color: #ff9da1;
}

.mayak-cases-list,
.mayak-related-cases,
.mayak-solutions-list,
.mayak-reviews-content,
.mayak-process {
	padding: 70px 0 90px;
}

.mayak-cases-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.mayak-case-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--mayak-line);
	border-radius: 20px;
	background: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
}

.mayak-case-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 45px rgba(23, 17, 19, .11);
}

.mayak-case-card__image {
	display: block;
	height: 250px;
	overflow: hidden;
	background: #ece8e9;
}

.mayak-case-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.mayak-case-card:hover .mayak-case-card__image img {
	transform: scale(1.035);
}

.mayak-case-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: var(--mayak-muted);
}

.mayak-case-card__body {
	display: flex;
	flex: 1;
	align-items: flex-start;
	flex-direction: column;
	padding: 25px;
}

.mayak-case-card__label {
	margin-bottom: 10px;
	color: var(--mayak-red);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.mayak-case-card h2,
.mayak-case-card h3 {
	margin: 0 0 12px;
	font-size: 23px;
	line-height: 1.25;
}

.mayak-case-card h2 a,
.mayak-case-card h3 a {
	color: var(--mayak-ink);
}

.mayak-case-card p {
	margin: 0 0 22px;
	line-height: 1.55;
	color: var(--mayak-muted);
}

.mayak-case-card .mayak-text-link {
	margin-top: auto;
}

.mayak-pagination ul {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 46px 0 0;
	padding: 0;
	list-style: none;
}

.mayak-pagination a,
.mayak-pagination span {
	display: grid;
	width: 42px;
	height: 42px;
	border-radius: 9px;
	place-items: center;
	background: var(--mayak-surface);
}

.mayak-pagination .current {
	background: var(--mayak-red);
	color: #fff;
}

.mayak-callout {
	padding: 0 0 90px;
}

.mayak-callout__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 48px 54px;
	border-radius: 24px;
	background: var(--mayak-ink);
	color: #fff;
}

.mayak-callout h2 {
	margin: 0 0 10px;
	font-size: clamp(30px, 3vw, 44px);
	line-height: 1.12;
}

.mayak-callout p {
	margin: 0;
	color: #c9c4c5;
}

.mayak-callout .btn-main {
	flex: 0 0 auto;
	height: 56px;
	border-radius: 11px;
}

.mayak-case-hero {
	padding: 46px 0 72px;
	background: linear-gradient(135deg, #f8f6f6 0%, #fff 70%);
}

.mayak-case-hero .breadcrumbs {
	margin-bottom: 38px;
}

.mayak-case-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
	align-items: center;
	gap: 56px;
}

.mayak-case-hero h1 {
	margin: 0;
	font-size: clamp(42px, 5vw, 68px);
	line-height: 1.05;
	letter-spacing: -.04em;
}

.mayak-case-hero__lead {
	margin: 24px 0 0;
	font-size: 19px;
	line-height: 1.55;
	color: var(--mayak-muted);
}

.mayak-case-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
}

.mayak-case-hero__actions .btn-main {
	height: 56px;
	border-radius: 11px;
}

.mayak-case-hero__image {
	height: 480px;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 24px 60px rgba(23,17,19,.12);
}

.mayak-case-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mayak-case-details {
	padding: 76px 0 90px;
}

.mayak-case-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 72px;
	border: 1px solid var(--mayak-line);
	border-radius: 18px;
}

.mayak-case-facts > div {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 28px;
}

.mayak-case-facts > div + div {
	border-left: 1px solid var(--mayak-line);
}

.mayak-case-facts strong {
	font-size: 20px;
}

.mayak-case-facts span {
	color: var(--mayak-muted);
}

.mayak-case-copy {
	max-width: 900px;
	margin: 0 auto;
}

.mayak-case-copy h2 {
	margin: 0 0 24px;
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.12;
}

.mayak-prose {
	font-size: 18px;
	line-height: 1.75;
}

.mayak-related-cases {
	background: var(--mayak-surface);
}

.mayak-related-cases .mayak-section-heading {
	margin-bottom: 34px;
}

.mayak-trust-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 38px;
}

.mayak-trust-row > div {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid var(--mayak-line);
	border-radius: 12px;
	background: #fff;
}

.mayak-trust-row i {
	color: var(--mayak-red);
}

.mayak-review-tabs {
	margin-bottom: 36px;
}

.mayak-yandex-reviews {
	overflow: hidden;
	border: 1px solid var(--mayak-line);
	border-radius: 20px;
	background: #fff;
}

.mayak-manual-reviews {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.mayak-review-card {
	position: relative;
	padding: 30px;
	border: 1px solid var(--mayak-line);
	border-radius: 18px;
	background: #fff;
}

.mayak-review-card__mark {
	position: absolute;
	top: 14px;
	right: 24px;
	color: rgba(182,22,29,.12);
	font-size: 72px;
	line-height: 1;
}

.mayak-review-card__text {
	position: relative;
	line-height: 1.65;
}

.mayak-review-card__author {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--mayak-line);
}

.mayak-review-card__author span {
	color: var(--mayak-muted);
}

.mayak-empty-state {
	padding: 42px;
	border-radius: 18px;
	background: var(--mayak-surface);
}

.mayak-review-form {
	padding: 0 0 90px;
}

.mayak-review-form__inner {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 60px;
	padding: 52px;
	border-radius: 24px;
	background: var(--mayak-ink);
	color: #fff;
}

.mayak-review-form h2 {
	margin: 0 0 15px;
	font-size: 42px;
	line-height: 1.1;
}

.mayak-review-form p {
	color: #c9c4c5;
}

.mayak-review-form .item-form input,
.mayak-review-form .item-form textarea {
	border-color: #dedada;
	background: #fff;
}

.mayak-solutions-intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 50px;
}

.mayak-solutions-intro > div {
	max-width: 900px;
}

.mayak-solutions-intro p {
	max-width: 760px;
	margin: 22px 0 0;
	font-size: 20px;
	line-height: 1.5;
	color: var(--mayak-muted);
}

.mayak-solutions-intro .btn-main {
	flex: 0 0 auto;
	height: 56px;
	border-radius: 11px;
}

.mayak-solutions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.mayak-solution-card {
	display: flex;
	flex-direction: column;
	padding: 32px;
	border: 1px solid var(--mayak-line);
	border-radius: 20px;
	background: #fff;
}

.mayak-solution-card__icon {
	display: grid;
	width: 52px;
	height: 52px;
	margin-bottom: 24px;
	border-radius: 13px;
	place-items: center;
	background: rgba(182,22,29,.09);
	color: var(--mayak-red);
	font-size: 21px;
}

.mayak-solution-card h2 {
	margin: 0 0 12px;
	font-size: 25px;
	line-height: 1.2;
}

.mayak-solution-card p {
	margin: 0 0 20px;
	line-height: 1.55;
	color: var(--mayak-muted);
}

.mayak-solution-card ul {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.mayak-solution-card li {
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--mayak-surface);
	font-size: 12px;
}

.mayak-solution-card .mayak-text-link {
	margin-top: auto;
}

.mayak-process {
	background: var(--mayak-surface);
}

.mayak-process .mayak-section-heading {
	margin-bottom: 38px;
}

.mayak-process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.mayak-process-grid > div {
	padding: 28px;
	border-radius: 16px;
	background: #fff;
}

.mayak-process-grid span {
	display: block;
	margin-bottom: 28px;
	color: var(--mayak-red);
	font-size: 14px;
	font-weight: 700;
}

.mayak-process-grid h3 {
	margin: 0 0 10px;
	font-size: 21px;
}

.mayak-process-grid p {
	margin: 0;
	line-height: 1.5;
	color: var(--mayak-muted);
}

@media (max-width: 991px) {
	.mayak-section-heading,
	.mayak-solutions-intro,
	.mayak-callout__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.mayak-service-hero,
	.mayak-case-hero__grid,
	.mayak-review-form__inner {
		grid-template-columns: 1fr;
	}

	.mayak-service-hero {
		padding: 36px;
	}

	.mayak-service-hero__aside img {
		margin-bottom: 0;
	}

	.mayak-cases-grid,
	.mayak-solutions-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mayak-process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mayak-case-hero__image {
		height: 420px;
	}
}

@media (max-width: 575px) {
	.scr_service .breadcrumbs ol {
		flex-wrap: wrap;
	}

	.scr_service .breadcrumbs li:last-child {
		display: none;
	}

	.mayak-page-hero,
	.mayak-case-hero {
		padding: 32px 0 44px;
	}

	.mayak-page-hero .breadcrumbs,
	.mayak-case-hero .breadcrumbs {
		margin-bottom: 26px;
	}

	.mayak-section-heading h1,
	.mayak-solutions-intro h1,
	.mayak-service-hero h1,
	.mayak-case-hero h1 {
		font-size: 38px;
	}

	.mayak-section-heading > p,
	.mayak-solutions-intro p,
	.mayak-service-hero__lead,
	.mayak-case-hero__lead {
		font-size: 16px;
	}

	.mayak-service-hero {
		gap: 18px;
		margin: 14px 0 46px;
		padding: 24px;
		border-radius: 18px;
	}

	.mayak-service-hero__actions {
		display: grid;
	}

	.mayak-service-hero__actions .btn-main {
		width: 100%;
	}

	.mayak-service-hero__aside {
		padding: 24px;
	}

	.mayak-cases-list,
	.mayak-related-cases,
	.mayak-solutions-list,
	.mayak-reviews-content,
	.mayak-process,
	.mayak-case-details {
		padding: 48px 0 60px;
	}

	.mayak-cases-grid,
	.mayak-solutions-grid,
	.mayak-process-grid,
	.mayak-manual-reviews,
	.mayak-trust-row,
	.mayak-case-facts {
		grid-template-columns: 1fr;
	}

	.mayak-case-card__image {
		height: 220px;
	}

	.mayak-callout {
		padding-bottom: 60px;
	}

	.mayak-callout__inner,
	.mayak-review-form__inner {
		gap: 28px;
		padding: 30px 24px;
		border-radius: 18px;
	}

	.mayak-callout .btn-main,
	.mayak-solutions-intro .btn-main {
		width: 100%;
	}

	.mayak-case-hero__image {
		height: 270px;
	}

	.mayak-case-facts {
		margin-bottom: 48px;
	}

	.mayak-case-facts > div + div {
		border-top: 1px solid var(--mayak-line);
		border-left: 0;
	}

	.mayak-review-form h2 {
		font-size: 34px;
	}
}

body {
	color: var(--mayak-ink);
}

/* The legacy theme renders the WordPress toolbar without its core layout styles. */
html {
	margin-top: 0 !important;
}

#wpadminbar {
	display: none !important;
}

/* Contact Form 7 service messages must not inherit the visual style of fields. */
.screen-reader-response,
.hidden-fields-container,
.wpcf7-response-output,
.wpcf7-not-valid-tip,
.wpcf7-mail-sent-ok {
	display: none !important;
}

.wpcf7 input[type="hidden"] {
	display: none !important;
}

#modal__price .item-form:has(.wpcf7-form-control-wrap[data-name="your-title"]),
#modal__price .wpcf7-form-control-wrap[data-name="your-title"] {
	display: none !important;
}

.wrapper {
	padding-top: 134px;
}

.header {
	box-shadow: 0 8px 30px rgba(23, 17, 19, 0.07);
}

.header__wrapper {
	padding: 16px 0;
}

.logo img {
	width: 148px;
}

.logo-wrap {
	gap: 20px;
}

.logo-descr {
	max-width: 270px;
	font-size: 12px;
	color: var(--mayak-muted);
}

.header__center {
	gap: 18px;
}

.location-value {
	min-width: auto;
	padding: 9px 14px;
	border: 0;
	border-radius: 999px;
	background: var(--mayak-surface);
	color: var(--mayak-ink);
	cursor: default;
	font-size: 13px;
	font-weight: 500;
}

.header__info {
	font-size: 13px;
	color: var(--mayak-muted);
}

.header__info strong {
	color: var(--mayak-ink);
}

.header__contacts {
	gap: 12px;
}

.header .phone-main {
	font-size: 19px;
	font-weight: 600;
}

.header .btn-main {
	height: 46px;
	padding: 0 22px;
	border-radius: 10px;
}

.header__bottom {
	background: var(--mayak-ink);
}

.menu {
	justify-content: center;
	gap: clamp(22px, 3.2vw, 58px);
}

.menu > li > a {
	padding: 13px 4px;
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0;
}

.menu > li > a:hover {
	color: #ffb9bc;
}

.menu ul {
	width: 350px;
	padding: 10px 0;
	border: 1px solid var(--mayak-line);
	border-radius: 0 0 14px 14px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(23, 17, 19, 0.16);
}

.menu ul ul {
	top: -11px;
	border-radius: 14px;
}

.menu ul > li {
	padding: 9px 20px;
}

.menu ul a {
	color: var(--mayak-ink);
	line-height: 1.35;
}

.menu ul a:hover {
	color: var(--mayak-red);
}

.mayak-hero {
	position: relative;
	isolation: isolate;
	min-height: 650px;
	padding: 86px 0 62px;
	background-position: center;
	background-size: cover;
}

.mayak-hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
	background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 48%, rgba(255,255,255,.48) 76%, rgba(255,255,255,.28) 100%);
}

.mayak-hero__content {
	max-width: 920px;
}

.mayak-hero__eyebrow {
	display: inline-flex;
	margin-bottom: 20px;
	padding: 8px 13px;
	border-radius: 999px;
	background: rgba(182, 22, 29, 0.09);
	color: var(--mayak-red);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.mayak-hero .title-big {
	max-width: 900px;
	margin-bottom: 22px;
	font-size: clamp(46px, 5.2vw, 74px);
	line-height: 1.03;
	letter-spacing: -.045em;
	text-align: left;
	text-transform: none;
	font-weight: 500;
}

.mayak-hero .title-big span {
	color: var(--mayak-red);
}

.mayak-hero .subtitle-big {
	max-width: 760px;
	font-size: clamp(20px, 2vw, 27px);
	line-height: 1.38;
	letter-spacing: -.025em;
	text-align: left;
	color: #4f494b;
}

.mayak-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.mayak-hero__actions .btn-main {
	height: 58px;
	border-radius: 12px;
}

.mayak-btn-secondary {
	border: 1px solid #cfcacc;
	background: rgba(255,255,255,.86);
	color: var(--mayak-ink);
}

.mayak-btn-secondary:hover {
	border-color: var(--mayak-ink);
	background: var(--mayak-ink);
	color: #fff;
}

.mayak-hero__note {
	margin-top: 18px;
	font-size: 14px;
	color: var(--mayak-muted);
}

.mayak-hero .billbord__bottom {
	padding: 54px 0 0;
}

.mayak-hero .billbord__bottom .row {
	margin: 0 -8px;
}

.mayak-hero .billbord__bottom .row > div {
	padding: 0 8px;
}

.mayak-hero .item-billbord {
	height: 100%;
	min-height: 142px;
	padding: 22px;
	border: 1px solid rgba(226, 220, 222, .9);
	border-radius: 16px;
	background: rgba(255,255,255,.88);
	box-shadow: 0 12px 32px rgba(23,17,19,.06);
	backdrop-filter: blur(8px);
	font-size: 15px;
}

.mayak-hero .item-billbord__icon {
	width: 38px;
	height: 38px;
}

.title-section {
	letter-spacing: -.035em;
}

.about,
.page-services {
	background: var(--mayak-surface);
}

.item-about,
.unit-services,
.form-page,
.item-news,
.item-card {
	border-radius: 18px;
}

.item-about,
.unit-services {
	border: 1px solid transparent;
	box-shadow: 0 12px 34px rgba(23,17,19,.055);
}

.item-about:hover,
.unit-services:hover {
	border-color: rgba(182,22,29,.22);
	box-shadow: 0 18px 42px rgba(23,17,19,.09);
	transform: translateY(-3px);
}

.mayak-page-lead {
	max-width: 820px;
	margin: -25px 0 48px;
	font-size: 19px;
	line-height: 1.55;
	color: var(--mayak-muted);
}

.unit-services {
	padding: 34px;
}

.unit-services li a {
	display: inline-block;
	padding: 2px 0;
	color: #514b4d;
}

.unit-services li::before {
	border-radius: 50%;
}

.footer__top {
	padding: 72px 0;
	border-top: 1px solid rgba(255,255,255,.08);
	background: #272123;
}

.footer__top .container-fluid,
.footer__bottom .container-fluid {
	width: 100%;
	max-width: 1540px;
	margin: 0 auto;
}

.footer__title {
	color: #ff858a;
}

.footer__nav li::before {
	background: #df3e45;
}

.footer__nav li a {
	color: rgba(255,255,255,.86);
}

.footer__nav li a:hover {
	color: #fff;
}

.footer__logo .logo-descr,
.footer__contacts,
.footer__contacts p {
	color: rgba(255,255,255,.78);
}

.requisites {
	color: rgba(255,255,255,.62);
}

.footer__contacts .location-value {
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.07);
	color: #fff;
}

.footer__links a {
	color: #ff9498;
	border-color: #ff9498;
}

.footer__bottom {
	background: var(--mayak-ink);
	color: rgba(255,255,255,.72);
}

.footer__bottom a {
	color: #fff;
}

@media (max-width: 991px) {
	.footer__top {
		padding: 44px 0;
	}

	.footer__top .container-fluid,
	.footer__bottom .container-fluid {
		padding-right: 24px;
		padding-left: 24px;
	}

	.footer__title {
		border-top: 1px solid rgba(255,255,255,.1);
	}

	.footer__contacts .footer__title {
		margin-top: 4px;
	}
}

@media (max-width: 1200px) {
	.wrapper {
		padding-top: 124px;
	}

	.logo-descr,
	.header__info {
		display: none;
	}

	.mayak-hero {
		min-height: auto;
		padding-top: 68px;
	}

	.mayak-hero .title-big {
		font-size: 52px;
	}
}

@media (max-width: 991px) {
	.wrapper {
		padding-top: 76px;
	}

	.header__bottom {
		background: #fff;
	}

	.header__bottom .menu ul {
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.header__wrapper {
		padding: 14px 0;
	}

	.logo img {
		width: 124px;
	}

	.mayak-hero {
		padding: 52px 0 48px;
		background-position: 62% center;
	}

	.mayak-hero::before {
		background: rgba(255,255,255,.9);
	}

	.mayak-hero .billbord__bottom {
		padding-top: 38px;
	}

	.mayak-hero .item-billbord {
		min-height: 0;
		margin-bottom: 12px;
	}
}

@media (max-width: 575px) {
	.mayak-hero {
		padding-top: 38px;
	}

	.mayak-hero__eyebrow {
		margin-bottom: 15px;
		font-size: 10px;
	}

	.mayak-hero .title-big {
		font-size: 38px;
		line-height: 1.08;
	}

	.mayak-hero .subtitle-big {
		font-size: 18px;
	}

	.mayak-hero__actions {
		display: grid;
		margin-top: 26px;
	}

	.mayak-hero__actions .btn-main {
		width: 100%;
		height: 54px;
		padding: 0 18px;
	}

	.mayak-hero__note {
		font-size: 12px;
		line-height: 1.45;
	}

	.mayak-page-lead {
		margin-top: -18px;
		margin-bottom: 30px;
		font-size: 16px;
	}

	.unit-services {
		padding: 24px;
	}
}
