/* ============================================================
	STO PAGE
	Только /service/sto/
============================================================ */

.sto-page {
	--sto-accent: #10aaa6;
	--sto-accent-dark: #078f8c;
	--sto-accent-soft: #dff5f4;
	--sto-dark: #183747;
	--sto-dark-hover: #102c3a;
	--sto-text: #252b2e;
	--sto-muted: #68747a;
	--sto-border: #dce3e6;
	--sto-light: #f5f7f8;
	--sto-white: #ffffff;
	--sto-orange: #f39521;
	--sto-radius: 18px;

	width: 100%;
	color: var(--sto-text);
	background: var(--sto-white);
	overflow: hidden;
}

.sto-page *,
.sto-form-modal *,
.sto-page *:before,
.sto-page *:after,
.sto-form-modal *:before,
.sto-form-modal *:after {
	box-sizing: border-box;
}

.sto-page img {
	max-width: 100%;
	height: auto;
}


/* ============================================================
	GENERAL
============================================================ */

.sto-container {
	width: calc(100% - 40px);
	max-width: 1240px;
	margin: 0 auto;
}

.sto-page > .sto-section {
	padding: 76px 0;
}

.sto-section--light {
	background: var(--sto-light);
}

.sto-section--accent-soft {
	background: var(--sto-accent-soft);
}

.sto-heading {
	max-width: 850px;
	margin: 0 0 36px;
}

.sto-heading--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.sto-eyebrow {
	margin-bottom: 10px;
	color: var(--sto-accent-dark);
	font-size: 13px;
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.sto-title {
	margin: 0;
	color: var(--sto-dark);
	font-size: 40px;
	line-height: 1.12;
	font-weight: 700;
}

.sto-title--main {
	font-size: 50px;
}

.sto-subtitle {
	max-width: 760px;
	margin: 16px 0 0;
	color: var(--sto-muted);
	font-size: 18px;
	line-height: 1.6;
}

.sto-center {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}


/* ============================================================
	BUTTONS
============================================================ */

.sto-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 52px;

	padding: 13px 24px;

	border: 2px solid transparent;
	border-radius: 8px;

	font-family: inherit;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 700;
	text-align: center;
	text-decoration: none;

	cursor: pointer;

	transition:
		background-color .2s ease,
		border-color .2s ease,
		color .2s ease,
		box-shadow .2s ease;
}

.sto-btn--accent {
	color: #fff;
	background: var(--sto-accent);
	border-color: var(--sto-accent);
}

.sto-btn--accent:hover,
.sto-btn--accent:focus {
	color: #fff;
	background: var(--sto-accent-dark);
	border-color: var(--sto-accent-dark);
	box-shadow: 0 7px 20px rgba(16, 170, 166, .18);
}

.sto-btn--dark {
	color: #fff;
	background: var(--sto-dark);
	border-color: var(--sto-dark);
}

.sto-btn--dark:hover,
.sto-btn--dark:focus {
	color: #fff;
	background: var(--sto-dark-hover);
	border-color: var(--sto-dark-hover);
}

.sto-btn--outline {
	color: var(--sto-dark);
	background: transparent;
	border-color: var(--sto-dark);
}

.sto-btn--outline:hover,
.sto-btn--outline:focus {
	color: #fff;
	background: var(--sto-dark);
}


/* ============================================================
	CHECK
============================================================ */

.sto-check {
	display: inline-flex;
	flex: 0 0 30px;
	align-items: center;
	justify-content: center;

	width: 30px;
	height: 30px;

	border-radius: 50%;

	color: #fff;
	background: var(--sto-accent);

	font-size: 17px;
	font-weight: 700;
}


/* ============================================================
	HERO
============================================================ */

.sto-hero {
	padding-top: 60px;
}

.sto-hero__row {
	display: flex;
	align-items: center;
	gap: 54px;
}

.sto-hero__content {
	flex: 1 1 50%;
	min-width: 0;
}

.sto-hero__lead {
	max-width: 650px;
	margin: 24px 0 30px;

	color: #3e474b;

	font-size: 20px;
	line-height: 1.6;
}

.sto-certificates {
	display: flex;
	flex: 1 1 50%;
	align-items: stretch;
	gap: 12px;
}

.sto-certificate {
	display: flex;
	flex: 1 1 33.333%;
	align-items: center;
	justify-content: center;

	min-width: 0;
	height: 310px;

	padding: 8px;

	border: 1px solid var(--sto-border);
	border-radius: 10px;

	background: #fff;

	overflow: hidden;

	transition:
		border-color .2s ease,
		box-shadow .2s ease;
}

.sto-certificate:hover {
	border-color: var(--sto-accent);
	box-shadow: 0 8px 24px rgba(24, 55, 71, .10);
}

.sto-certificate img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sto-hero-benefits {
	display: flex;
	gap: 14px;

	margin-top: 48px;
}

.sto-hero-benefit {
	display: flex;
	flex: 1 1 33.333%;
	align-items: center;
	gap: 12px;

	min-height: 70px;

	padding: 16px 18px;

	border: 1px solid var(--sto-border);
	border-radius: 10px;

	background: #fff;

	color: var(--sto-dark);

	font-size: 15px;
	font-weight: 700;
}


/* ============================================================
	MAP
============================================================ */

.sto-map {
	width: 100%;
	height: 520px;

	border: 1px solid var(--sto-border);
	border-radius: var(--sto-radius);

	overflow: hidden;
	background: #e8ecee;
}

.sto-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}


/* ============================================================
	ROUTE
============================================================ */

.sto-route {
	margin-top: 44px;
}

.sto-route__head {
	margin-bottom: 24px;
}

.sto-route__head h3 {
	margin: 0 0 10px;

	color: var(--sto-dark);

	font-size: 26px;
	line-height: 1.2;
}

.sto-route__head p {
	max-width: 760px;
	margin: 0;

	color: var(--sto-muted);

	font-size: 16px;
	line-height: 1.6;
}

.sto-route__list {
	display: flex;
	gap: 18px;
}

.sto-route-card {
	flex: 1 1 33.333%;
	min-width: 0;
}

.sto-route-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	aspect-ratio: 16 / 9;

	padding: 20px;

	border: 2px dashed #b7c6cb;
	border-radius: 12px;

	background: #fff;

	text-align: center;
}

.sto-route-placeholder span {
	margin-bottom: 8px;

	color: var(--sto-dark);

	font-size: 17px;
	font-weight: 700;
}

.sto-route-placeholder small {
	display: block;

	margin-top: 3px;

	color: var(--sto-muted);

	font-size: 13px;
}


/* ============================================================
	CONTACTS
============================================================ */

.sto-contact-list {
	display: flex;
	flex-wrap: wrap;

	margin: -8px;
}

.sto-contact-card {
	display: flex;
	flex: 1 1 calc(25% - 16px);
	flex-direction: column;

	min-width: 240px;
	min-height: 265px;

	margin: 8px;
	padding: 28px;

	border: 1px solid var(--sto-border);
	border-radius: 14px;

	background: #fff;
}

.sto-contact-card--time {
	background: var(--sto-dark);
	border-color: var(--sto-dark);
	color: #fff;
}

.sto-contact-card h3 {
	margin: 0 0 20px;

	color: var(--sto-dark);

	font-size: 20px;
	line-height: 1.25;
}

.sto-contact-card--time h3 {
	color: #fff;
}

.sto-contact-card p {
	margin: 0 0 8px;

	font-size: 15px;
	line-height: 1.5;
}

.sto-contact-card a {
	display: block;

	margin: 4px 0;

	color: var(--sto-dark);

	font-size: 15px;
	line-height: 1.45;
	text-decoration: underline;
	text-decoration-color: transparent;

	word-break: break-word;

	transition:
		color .2s ease,
		text-decoration-color .2s ease;
}

.sto-contact-card a:hover {
	color: var(--sto-accent-dark);
	text-decoration-color: currentColor;
}

.sto-contact-name {
	color: var(--sto-muted);
	font-weight: 700;
}

.sto-contact-card__big {
	margin: 2px 0 3px;

	color: var(--sto-accent);

	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
}

.sto-documents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;

	margin-top: 28px;
	padding: 28px 30px;

	border-radius: 14px;

	background: var(--sto-accent-soft);
}

.sto-documents__text {
	flex: 1 1 auto;
}

.sto-documents__text h3 {
	max-width: 580px;
	margin: 0;

	color: var(--sto-dark);

	font-size: 20px;
	line-height: 1.4;
}

.sto-documents__buttons {
	display: flex;
	flex: 0 0 auto;
	gap: 10px;
}


/* ============================================================
	WHY US
============================================================ */

.sto-advantages__row {
	display: flex;
	align-items: stretch;
	gap: 48px;
}

.sto-service-gallery {
	display: flex;
	flex: 0 0 45%;
	flex-wrap: wrap;

	gap: 12px;
}

.sto-service-photo {
	display: block;
	flex: 1 1 calc(50% - 6px);

	min-width: 200px;

	border-radius: 12px;

	overflow: hidden;
	background: #fff;

	box-shadow: 0 6px 20px rgba(24, 55, 71, .08);

	transition:
		box-shadow .2s ease,
		outline-color .2s ease;
}

.sto-service-photo:hover {
	box-shadow: 0 10px 28px rgba(24, 55, 71, .15);
	outline: 2px solid var(--sto-accent);
	outline-offset: -2px;
}

.sto-service-photo img {
	display: block;

	width: 100%;
	height: 100%;
	min-height: 360px;

	object-fit: cover;
}

.sto-advantages-list {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;

	gap: 12px;
}

.sto-advantage {
	display: flex;
	align-items: flex-start;
	gap: 14px;

	padding-bottom: 16px;

	border-bottom: 1px solid rgba(24, 55, 71, .12);
}

.sto-advantage:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.sto-advantage strong {
	display: block;

	padding-top: 4px;

	color: var(--sto-dark);

	font-size: 17px;
	line-height: 1.35;
}

.sto-advantage p {
	margin: 6px 0 0;

	color: #526168;

	font-size: 14px;
	line-height: 1.55;
}


/* ============================================================
	BRAND SERVICE
============================================================ */

.sto-brand-service {
	position: relative;

	margin-bottom: 32px;
	padding: 36px;

	border: 2px solid var(--sto-accent);
	border-radius: var(--sto-radius);

	background:
		linear-gradient(
			135deg,
			#e8f8f7 0%,
			#ffffff 75%
		);
}

.sto-brand-service__label {
	display: inline-flex;

	margin-bottom: 15px;
	padding: 6px 10px;

	border-radius: 5px;

	color: #fff;
	background: var(--sto-accent);

	font-size: 12px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
}

.sto-brand-service h3 {
	max-width: 850px;

	margin: 0 0 26px;

	color: var(--sto-dark);

	font-size: 28px;
	line-height: 1.3;
}

.sto-brand-service__items {
	display: flex;
	flex-wrap: wrap;

	margin: -8px;
}

.sto-brand-service__item {
	flex: 1 1 calc(50% - 16px);

	min-width: 280px;

	margin: 8px;
	padding: 20px;

	border: 1px solid rgba(16, 170, 166, .22);
	border-radius: 10px;

	background: rgba(255, 255, 255, .8);
}

.sto-brand-service__item strong {
	display: block;

	margin-bottom: 8px;

	color: var(--sto-dark);

	font-size: 17px;
}

.sto-brand-service__item p {
	margin: 0;

	color: #4d595e;

	font-size: 14px;
	line-height: 1.65;
}


/* ============================================================
	ACCORDION
============================================================ */

.sto-accordions {
	border-top: 1px solid var(--sto-border);
}

.sto-accordion {
	border-bottom: 1px solid var(--sto-border);
}

.sto-accordion__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	width: 100%;

	padding: 23px 4px;

	border: 0;

	color: var(--sto-dark);
	background: transparent;

	font-family: inherit;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 700;
	text-align: left;

	cursor: pointer;
}

.sto-accordion__button:hover,
.sto-accordion__button:focus {
	color: var(--sto-accent-dark);
}

.sto-accordion__icon {
	display: flex;
	flex: 0 0 34px;
	align-items: center;
	justify-content: center;

	width: 34px;
	height: 34px;

	border-radius: 50%;

	color: #fff;
	background: var(--sto-dark);

	font-size: 22px;
	line-height: 1;
	font-weight: 400;

	transition:
		background-color .2s ease,
		color .2s ease;
}

.sto-accordion.is-open .sto-accordion__icon {
	background: var(--sto-accent);
}

.sto-accordion__content {
	padding: 0 48px 30px 4px;

	color: #49565c;

	font-size: 15px;
	line-height: 1.65;
}

.sto-accordion__content[hidden] {
	display: none;
}

.sto-accordion__content h4 {
	margin: 24px 0 10px;

	color: var(--sto-dark);

	font-size: 17px;
	line-height: 1.35;
}

.sto-accordion__content h4:first-child {
	margin-top: 0;
}

.sto-accordion__content p {
	margin: 0;
}

.sto-accordion__content ul {
	margin: 0;
	padding-left: 21px;
}

.sto-accordion__content li {
	margin: 7px 0;
}


/* ============================================================
	FAQ
============================================================ */

.sto-faq__columns {
	display: flex;
	align-items: flex-start;
	gap: 34px;
}

.sto-faq__column {
	flex: 1 1 50%;
	min-width: 0;

	border-top: 1px solid var(--sto-border);
}

.sto-accordion--faq .sto-accordion__button {
	font-size: 15px;
}

.sto-accordion--faq .sto-accordion__content {
	padding-right: 45px;
}


/* ============================================================
	REVIEWS
============================================================ */

.sto-review-list {
	display: flex;
	justify-content: center;

	gap: 22px;
}

.sto-review-card {
	display: flex;
	flex: 1 1 50%;
	flex-direction: column;

	max-width: 500px;
	min-height: 280px;

	padding: 32px;

	border: 1px solid var(--sto-border);
	border-radius: 16px;

	background: #fff;
}

.sto-review-card__name {
	margin-bottom: 28px;

	color: var(--sto-dark);

	font-size: 22px;
	font-weight: 700;
}

.sto-review-card__rating {
	display: flex;
	align-items: center;
	gap: 22px;

	margin-bottom: 30px;
}

.sto-review-card__number {
	color: var(--sto-dark);

	font-size: 56px;
	line-height: 1;
	font-weight: 700;
}

.sto-stars {
	color: #ffb400;

	font-size: 22px;
	letter-spacing: 2px;
}

.sto-review-card__caption {
	margin-top: 5px;

	color: var(--sto-muted);

	font-size: 13px;
}


/* ============================================================
	MODAL
============================================================ */

body.sto-modal-open {
	overflow: hidden;
}

.sto-form-modal {
	position: fixed;
	z-index: 100000;

	inset: 0;

	display: none;
	align-items: center;
	justify-content: center;

	padding: 20px;
}

.sto-form-modal.is-open {
	display: flex;
}

.sto-form-modal__overlay {
	position: absolute;

	inset: 0;

	background: rgba(11, 28, 37, .72);

	cursor: pointer;
}

.sto-form-modal__dialog {
	position: relative;
	z-index: 2;

	width: 100%;
	max-width: 780px;
	max-height: calc(100vh - 40px);

	padding: 36px;

	border-radius: 18px;

	background: #fff;

	box-shadow: 0 18px 70px rgba(0, 0, 0, .25);

	overflow-y: auto;
}

.sto-form-modal__close {
	position: absolute;

	top: 13px;
	right: 15px;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 40px;
	height: 40px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	color: var(--sto-dark);
	background: #eef2f3;

	font-family: Arial, sans-serif;
	font-size: 27px;
	line-height: 1;

	cursor: pointer;

	transition:
		background-color .2s ease,
		color .2s ease;
}

.sto-form-modal__close:hover {
	color: #fff;
	background: var(--sto-dark);
}

.sto-form-modal__head {
	padding-right: 38px;
}

.sto-form-modal__head h2,
.sto-form-success h2 {
	margin: 0;

	color: var(--sto-dark);

	font-size: 34px;
	line-height: 1.2;
}

.sto-form-modal__head p,
.sto-form-success p {
	max-width: 620px;

	margin: 12px 0 0;

	color: var(--sto-muted);

	font-size: 15px;
	line-height: 1.6;
}


/* ============================================================
	FORM
============================================================ */

.sto-form {
	margin-top: 28px;
}

.sto-form__fieldset {
	margin: 0 0 22px;
	padding: 0;

	border: 0;
}

.sto-form__fieldset legend {
	margin-bottom: 12px;

	color: var(--sto-dark);

	font-size: 14px;
	font-weight: 700;
}

.sto-form__fieldset legend span {
	color: #d44343;
}

.sto-form__types {
	display: flex;
	gap: 10px;
}

.sto-radio {
	position: relative;

	display: flex;
	flex: 1 1 50%;
	align-items: center;
	gap: 10px;

	min-height: 52px;

	padding: 12px 15px;

	border: 1px solid var(--sto-border);
	border-radius: 8px;

	cursor: pointer;
}

.sto-radio input {
	position: absolute;

	width: 1px;
	height: 1px;

	opacity: 0;
}

.sto-radio__mark {
	position: relative;

	display: block;
	flex: 0 0 20px;

	width: 20px;
	height: 20px;

	border: 2px solid #a9b6bb;
	border-radius: 50%;

	background: #fff;
}

.sto-radio input:checked + .sto-radio__mark {
	border-color: var(--sto-accent);
}

.sto-radio input:checked + .sto-radio__mark:after {
	content: "";

	position: absolute;

	top: 4px;
	left: 4px;

	width: 8px;
	height: 8px;

	border-radius: 50%;

	background: var(--sto-accent);
}

.sto-radio:has(input:checked) {
	border-color: var(--sto-accent);
	background: #f0fbfa;
}

.sto-form__row {
	display: flex;
	gap: 16px;

	margin-bottom: 16px;
}

.sto-form-field {
	display: block;
	flex: 1 1 50%;
}

.sto-form-field > span {
	display: block;

	margin-bottom: 7px;

	color: var(--sto-dark);

	font-size: 13px;
	font-weight: 700;
}

.sto-form-field b {
	color: #d44343;
}

.sto-form-field input {
	display: block;

	width: 100%;
	height: 52px;

	padding: 0 14px;

	border: 1px solid #cdd7da;
	border-radius: 8px;
	outline: none;

	color: var(--sto-text);
	background: #fff;

	font-family: inherit;
	font-size: 15px;

	transition:
		border-color .2s ease,
		box-shadow .2s ease;
}

.sto-form-field input:focus {
	border-color: var(--sto-accent);
	box-shadow: 0 0 0 3px rgba(16, 170, 166, .12);
}

.sto-form-field input::placeholder {
	color: #9ba5aa;
}

.sto-form__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	margin-top: 26px;
}

.sto-form__required {
	margin: 0;

	color: var(--sto-muted);

	font-size: 12px;
}

.sto-form__submit[disabled] {
	opacity: .65;
	cursor: wait;
}


/* ============================================================
	ERRORS
============================================================ */

.sto-form-errors {
	margin-top: 20px;
	padding: 15px 18px;

	border: 1px solid #e6bcbc;
	border-radius: 8px;

	color: #8f2c2c;
	background: #fff2f2;

	font-size: 14px;
	line-height: 1.5;
}

.sto-form-errors strong {
	display: block;
	margin-bottom: 6px;
}

.sto-form-errors ul {
	margin: 0;
	padding-left: 20px;
}

.sto-form-errors li {
	margin: 3px 0;
}


/* ============================================================
	SUCCESS
============================================================ */

.sto-form-success {
	padding: 28px 10px;

	text-align: center;
}

.sto-form-success__icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 70px;
	height: 70px;

	margin: 0 auto 22px;

	border-radius: 50%;

	color: #fff;
	background: var(--sto-accent);

	font-size: 34px;
	font-weight: 700;
}

.sto-form-success p {
    text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 25px;
}


/* ============================================================
	HONEYPOT
============================================================ */

.sto-hp {
	position: absolute !important;

	left: -10000px !important;
	top: auto !important;

	width: 1px !important;
	height: 1px !important;

	overflow: hidden !important;
}


/* ============================================================
	RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

	.sto-title--main {
		font-size: 42px;
	}

	.sto-hero__row {
		gap: 32px;
	}

	.sto-certificate {
		height: 260px;
	}

	.sto-documents {
		align-items: flex-start;
		flex-direction: column;
	}

	.sto-documents__buttons {
		flex-wrap: wrap;
	}

}


@media (max-width: 900px) {

	.sto-page > .sto-section {
		padding: 58px 0;
	}

	.sto-title {
		font-size: 34px;
	}

	.sto-title--main {
		font-size: 39px;
	}

	.sto-hero__row,
	.sto-advantages__row {
		flex-direction: column;
	}

	.sto-hero__content,
	.sto-certificates,
	.sto-service-gallery {
		flex-basis: auto;
		width: 100%;
	}

	.sto-certificates {
		max-width: 680px;
	}

	.sto-hero-benefits {
		flex-wrap: wrap;
	}

	.sto-hero-benefit {
		flex-basis: calc(50% - 7px);
	}

	.sto-contact-card {
		flex-basis: calc(50% - 16px);
	}

	.sto-map {
		height: 450px;
	}

	.sto-faq__columns {
		gap: 20px;
	}

}


@media (max-width: 700px) {

	.sto-container {
		width: calc(100% - 28px);
	}

	.sto-page > .sto-section {
		padding: 46px 0;
	}

	.sto-title,
	.sto-title--main {
		font-size: 31px;
	}

	.sto-subtitle,
	.sto-hero__lead {
		font-size: 16px;
	}

	.sto-certificates {
		gap: 7px;
	}

	.sto-certificate {
		height: 210px;
		padding: 4px;
	}

	.sto-hero-benefits {
		flex-direction: column;
	}

	.sto-hero-benefit {
		flex-basis: auto;
		width: 100%;
	}

	.sto-route__list {
		flex-direction: column;
	}

	.sto-route-card {
		flex-basis: auto;
	}

	.sto-contact-list {
		margin: 0;
	}

	.sto-contact-card {
		flex-basis: 100%;
		min-width: 0;

		margin: 0 0 12px;
	}

	.sto-documents {
		padding: 22px;
	}

	.sto-documents__buttons {
		flex-direction: column;
		width: 100%;
	}

	.sto-documents__buttons .sto-btn {
		width: 100%;
	}

	.sto-service-gallery {
		flex-direction: column;
	}

	.sto-service-photo {
		flex-basis: auto;
		min-width: 0;
	}

	.sto-service-photo img {
		min-height: 280px;
	}

	.sto-brand-service {
		padding: 24px 20px;
	}

	.sto-brand-service h3 {
		font-size: 23px;
	}

	.sto-brand-service__items {
		margin: 0;
	}

	.sto-brand-service__item {
		flex-basis: 100%;
		min-width: 0;

		margin: 0 0 10px;
	}

	.sto-accordion__button {
		padding: 19px 0;

		font-size: 16px;
	}

	.sto-accordion__content {
		padding-right: 0;
	}

	.sto-faq__columns {
		flex-direction: column;
		gap: 0;
	}

	.sto-faq__column {
		flex-basis: auto;
		width: 100%;
	}

	.sto-faq__column + .sto-faq__column {
		border-top: 0;
	}

	.sto-review-list {
		flex-direction: column;
	}

	.sto-review-card {
		flex-basis: auto;
		max-width: none;
		width: 100%;
	}

	.sto-map {
		height: 390px;
	}

	.sto-form-modal {
		padding: 10px;
	}

	.sto-form-modal__dialog {
		max-height: calc(100vh - 20px);

		padding: 28px 20px;
	}

	.sto-form-modal__head h2,
	.sto-form-success h2 {
		font-size: 28px;
	}

	.sto-form__row,
	.sto-form__types {
		flex-direction: column;
	}

	.sto-form-field,
	.sto-radio {
		flex-basis: auto;
		width: 100%;
	}

	.sto-form__bottom {
		align-items: stretch;
		flex-direction: column;
	}

	.sto-form__submit {
		width: 100%;
	}

}


@media (max-width: 480px) {

	.sto-title,
	.sto-title--main {
		font-size: 28px;
	}

	.sto-certificates {
		flex-wrap: wrap;
	}

	.sto-certificate {
		flex-basis: calc(50% - 4px);
		height: 240px;
	}

	.sto-certificate:last-child {
		flex-basis: 100%;
	}

	.sto-map {
		height: 340px;
	}

	.sto-review-card {
		padding: 24px 20px;
	}

	.sto-review-card__number {
		font-size: 48px;
	}

}

/* ============================================================
	ТОЧЕЧНЫЕ ИСПРАВЛЕНИЯ КОНФЛИКТОВ СО СТАРЫМ CSS
============================================================ */

/*
	Переменные раньше были объявлены только внутри .sto-page,
	а модалка находится рядом с ней, а не внутри.
*/
.sto-form-modal {
	--sto-accent: #10aaa6;
	--sto-accent-dark: #078f8c;
	--sto-accent-soft: #dff5f4;
	--sto-dark: #183747;
	--sto-dark-hover: #102c3a;
	--sto-text: #252b2e;
	--sto-muted: #68747a;
	--sto-border: #dce3e6;
	--sto-light: #f5f7f8;
	--sto-white: #ffffff;
}


/* ------------------------------------------------------------
	Кнопки-ссылки: старый a:link перебивает цвет текста
------------------------------------------------------------ */

.sto-page a.sto-btn:link,
.sto-page a.sto-btn:visited {
	text-decoration: none;
}

.sto-page a.sto-btn--dark:link,
.sto-page a.sto-btn--dark:visited {
	color: #ffffff;
	background: #183747;
	border-color: #183747;
}

.sto-page a.sto-btn--dark:hover,
.sto-page a.sto-btn--dark:focus {
	color: #ffffff;
	background: #102c3a;
	border-color: #102c3a;
}

.sto-page a.sto-btn--outline:link,
.sto-page a.sto-btn--outline:visited {
	color: #183747;
	background: transparent;
	border-color: #183747;
}

.sto-page a.sto-btn--outline:hover,
.sto-page a.sto-btn--outline:focus {
	color: #ffffff;
	background: #183747;
	border-color: #183747;
}


/* ------------------------------------------------------------
	Карточка времени работы
------------------------------------------------------------ */

.sto-page .sto-contact-card--time {
	color: #ffffff;
}

.sto-page .sto-contact-card--time h3 {
	color: #ffffff;
}

.sto-page .sto-contact-card--time p {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, .82);
	font-size: 15px;
	line-height: 1.4;
	text-align: left;
}

.sto-page .sto-contact-card--time .sto-contact-card__big {
	color: #18c8c2;
}


/* ------------------------------------------------------------
	Кнопка отправки внутри модалки
------------------------------------------------------------ */

.sto-form-modal button.sto-btn--accent,
.sto-form-modal .sto-form__submit {
	min-width: 190px;
	color: #ffffff;
	background: #10aaa6;
	border: 2px solid #10aaa6;
	border-radius: 8px;
	-webkit-appearance: none;
	appearance: none;
	opacity: 1;
	box-shadow: none;
}

.sto-form-modal button.sto-btn--accent:hover,
.sto-form-modal button.sto-btn--accent:focus,
.sto-form-modal .sto-form__submit:hover,
.sto-form-modal .sto-form__submit:focus {
	color: #ffffff;
	background: #078f8c;
	border-color: #078f8c;
	box-shadow: 0 7px 20px rgba(16, 170, 166, .22);
}

.sto-form-modal .sto-form__submit[disabled] {
	color: #ffffff;
	background: #078f8c;
	border-color: #078f8c;
	opacity: .65;
}


/* ------------------------------------------------------------
	Подзаголовки внутри раскрытых услуг
------------------------------------------------------------ */

.sto-page .sto-accordion__content h4 {
	margin: 25px 0 11px;
	color: #183747;
	font-family: "montserrat-bold", Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
	text-transform: none;
}

.sto-page .sto-accordion__content h4:first-child {
	margin-top: 0;
}
/* ============================================================
	LOCATION + WAY SLIDER
============================================================ */

.sto-location__row {
	display: flex;
	align-items: stretch;
	gap: 24px;
}

.sto-way,
.sto-location__row > .sto-map {
	flex: 1 1 50%;
	width: calc(50% - 12px);
	min-width: 0;
}


/* Заголовок над схемой */

.sto-way {
	display: flex;
	flex-direction: column;
}

.sto-way__title {
	margin-bottom: 18px;
}

.sto-way__title h3 {
	margin: 0 0 8px;
	color: #183747;
	font-family: "montserrat-bold", Arial, Helvetica, sans-serif;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
	text-transform: none;
}

.sto-way__title p {
	margin: 0;
	color: #68747a;
	font-size: 14px;
	line-height: 1.55;
	text-align: left;
}


/* Слайдер */

.sto-way-slider {
	position: relative;
	flex: 1 1 auto;
	min-height: 420px;
	border-radius: 18px;
	background: #e8ecee;
	overflow: hidden;
}

.sto-way-slider__viewport {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.sto-way-slider__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform .35s ease;
}

.sto-way-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	min-width: 0;
}

.sto-way-slider__slide a {
	display: block;
	width: 100%;
	height: 100%;
}

.sto-way-slider__slide img {
	display: block;
	width: 100%;
	height: 100%;

}


/* Стрелки */

.sto-way-slider__arrow {
	position: absolute;
	z-index: 3;
	top: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 46px;
	height: 46px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	color: #fff;
	background: rgba(24, 55, 71, .88);

	font-family: Arial, sans-serif;
	font-size: 34px;
	line-height: 1;

	cursor: pointer;

	transform: translateY(-50%);

	transition:
		background-color .2s ease,
		box-shadow .2s ease;
}

.sto-way-slider__arrow:hover {
	background: #10aaa6;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
}

.sto-way-slider__arrow--prev {
	left: 14px;
}

.sto-way-slider__arrow--next {
	right: 14px;
}


/* Точки */

.sto-way-slider__dots {
	position: absolute;
	z-index: 3;

	left: 50%;
	bottom: 15px;

	display: flex;
	align-items: center;
	gap: 7px;

	transform: translateX(-50%);
}

.sto-way-slider__dot {
	width: 9px;
	height: 9px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	background: rgba(255, 255, 255, .6);

	cursor: pointer;
}

.sto-way-slider__dot.is-active {
	background: #10aaa6;
}


/* Карта той же высоты */

.sto-location__row > .sto-map {
	height: auto;
	min-height: 490px;
}


/* ============================================================
	MOBILE LOCATION
============================================================ */

@media (max-width: 800px) {

	.sto-location__row {
		flex-direction: column;
	}

	.sto-way,
	.sto-location__row > .sto-map {
		width: 100%;
		flex-basis: auto;
	}

	.sto-way-slider {
		min-height: 360px;
	}

	.sto-location__row > .sto-map {
		height: 400px;
		min-height: 400px;
	}

}


@media (max-width: 480px) {

	.sto-way-slider {
		min-height: 270px;
		border-radius: 12px;
	}

	.sto-location__row > .sto-map {
		height: 340px;
		min-height: 340px;
	}

	.sto-way-slider__arrow {
		width: 38px;
		height: 38px;
		font-size: 27px;
	}

	.sto-way-slider__arrow--prev {
		left: 8px;
	}

	.sto-way-slider__arrow--next {
		right: 8px;
	}

}
.sto-way-slider__arrow {
	position: absolute;
	z-index: 3;
	top: 50%;

	width: 46px;
	height: 46px;

	padding: 0;
	border: 0;
	border-radius: 50%;

	color: #fff;
	background: rgba(24, 55, 71, .88);

	cursor: pointer;

	transform: translateY(-50%);
}

.sto-way-slider__arrow::before {
	position: absolute;

	top: 50%;
	left: 50%;

	font-family: Arial, sans-serif;
	font-size: 34px;
	line-height: 1;

	transform: translate(-50%, -54%);
}

.sto-way-slider__arrow--prev::before {
	content: "‹";
}

.sto-way-slider__arrow--next::before {
	content: "›";
}

.sto-way-slider__arrow--prev {
	left: 14px;
}

.sto-way-slider__arrow--next {
	right: 14px;
}
/* ============================================================
	СЛАЙДЕР ФОТО СЕРВИСА
============================================================ */

.sto-page .sto-service-gallery {
	display: block;
	flex: 0 0 45%;
	width: 45%;
	min-width: 0;
}

.sto-service-slider {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 520px;
	border-radius: 18px;
	background: #dfe7e9;
	overflow: hidden;
}

.sto-service-slider__viewport {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.sto-service-slider__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform .35s ease;
}

.sto-service-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	min-width: 0;
}

.sto-service-slider__slide a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.sto-service-slider__slide img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	object-position: center;
	background: var(--sto-accent-soft);;
}


/* Стрелки */

.sto-service-slider__arrow {
	position: absolute;
	z-index: 3;
	top: 50%;

	width: 46px;
	height: 46px;

	padding: 0;
	border: 0;
	border-radius: 50%;

	color: #fff;
	background: rgba(24, 55, 71, .88);

	cursor: pointer;

	transform: translateY(-50%);

	transition:
		background-color .2s ease,
		box-shadow .2s ease;
}

.sto-service-slider__arrow:hover,
.sto-service-slider__arrow:focus {
	background: #10aaa6;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
}

.sto-service-slider__arrow::before {
	position: absolute;
	top: 50%;
	left: 50%;

	color: #fff;

	font-family: Arial, sans-serif;
	font-size: 34px;
	line-height: 1;

	transform: translate(-50%, -54%);
}

.sto-service-slider__arrow--prev {
	left: 14px;
}

.sto-service-slider__arrow--prev::before {
	content: "‹";
}

.sto-service-slider__arrow--next {
	right: 14px;
}

.sto-service-slider__arrow--next::before {
	content: "›";
}


/* Точки */

.sto-service-slider__dots {
	position: absolute;
	z-index: 3;

	left: 50%;
	bottom: 16px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;

	transform: translateX(-50%);
}

.sto-service-slider__dot {
	width: 9px;
	height: 9px;

	padding: 0;
	border: 0;
	border-radius: 50%;

	background: rgba(255, 255, 255, .65);

	cursor: pointer;

	transition:
		background-color .2s ease,
		transform .2s ease;
}

.sto-service-slider__dot.is-active {
	background: #10aaa6;
	transform: scale(1.25);
}


/* Адаптив */

@media (max-width: 900px) {

	.sto-page .sto-service-gallery {
		flex-basis: auto;
		width: 100%;
	}

	.sto-service-slider,
	.sto-service-slider__slide img {
		min-height: 480px;
	}

}

@media (max-width: 600px) {

	.sto-service-slider {
		min-height: 340px;
		border-radius: 12px;
	}

	.sto-service-slider__slide img {
		min-height: 340px;
	}

	.sto-service-slider__arrow {
		width: 40px;
		height: 40px;
	}

	.sto-service-slider__arrow::before {
		font-size: 29px;
	}

	.sto-service-slider__arrow--prev {
		left: 9px;
	}

	.sto-service-slider__arrow--next {
		right: 9px;
	}

}
/* Схемы проезда показываем полностью */

.sto-way-slider,
.sto-way-slider__viewport,
.sto-way-slider__slide,
.sto-way-slider__slide a {
	background: #ffffff;
}

.sto-way-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	background: var(--sto-light);
	border-radius:12px;
}


/* Фотографии сервиса показываем полностью */

.sto-service-slider,
.sto-service-slider__viewport,
.sto-service-slider__slide,
.sto-service-slider__slide a {
	background: #ffffff;
}

.sto-service-slider__slide img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	object-position: center;
	background: var(--sto-accent-soft);
}
/* ============================================================
	ПРОСМОТРЩИК ФОТОГРАФИЙ WEBP
============================================================ */

body.sto-image-modal-open {
	overflow: hidden;
}

.sto-image-modal {
	position: fixed;
	z-index: 200000;
	inset: 0;

	display: none;
	align-items: center;
	justify-content: center;

	padding: 30px;
}

.sto-image-modal.is-open {
	display: flex;
}

.sto-image-modal__overlay {
	position: absolute;
	inset: 0;

	background: rgba(8, 20, 27, .92);

	cursor: zoom-out;
}

.sto-image-modal__dialog {
	position: relative;
	z-index: 2;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	max-width: 1500px;
	max-height: calc(100vh - 60px);
}

.sto-image-modal__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;
}

.sto-image-modal__image {
	display: block;

	width: auto;
	height: auto;

	max-width: 100%;
	max-height: calc(100vh - 100px);

	object-fit: contain;
	object-position: center;

	border-radius: 8px;

	background: #ffffff;

	box-shadow: 0 15px 60px rgba(0, 0, 0, .4);
}

.sto-image-modal__caption {
	position: absolute;

	left: 50%;
	bottom: 5px;

	max-width: calc(100% - 180px);

	padding: 8px 14px;

	border-radius: 6px;

	color: #ffffff;
	background: rgba(0, 0, 0, .68);

	font-size: 14px;
	line-height: 1.4;
	text-align: center;

	transform: translateX(-50%);
}


/* Кнопка закрытия */

.sto-image-modal__close {
	position: fixed;
	z-index: 4;

	top: 20px;
	right: 20px;

	width: 46px;
	height: 46px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	background: #ffffff;

	cursor: pointer;
}

.sto-image-modal__close::before,
.sto-image-modal__close::after {
	content: "";

	position: absolute;

	top: 50%;
	left: 50%;

	width: 21px;
	height: 2px;

	background: #183747;
}

.sto-image-modal__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.sto-image-modal__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.sto-image-modal__close:hover,
.sto-image-modal__close:focus {
	background: #10aaa6;
}

.sto-image-modal__close:hover::before,
.sto-image-modal__close:hover::after,
.sto-image-modal__close:focus::before,
.sto-image-modal__close:focus::after {
	background: #ffffff;
}


/* Стрелки просмотрщика */

.sto-image-modal__arrow {
	position: fixed;
	z-index: 4;

	top: 50%;

	width: 52px;
	height: 52px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	background: rgba(255, 255, 255, .95);

	cursor: pointer;

	transform: translateY(-50%);
}

.sto-image-modal__arrow::before {
	position: absolute;

	top: 50%;
	left: 50%;

	color: #183747;

	font-family: Arial, sans-serif;
	font-size: 40px;
	line-height: 1;

	transform: translate(-50%, -54%);
}

.sto-image-modal__arrow:hover,
.sto-image-modal__arrow:focus {
	background: #10aaa6;
}

.sto-image-modal__arrow:hover::before,
.sto-image-modal__arrow:focus::before {
	color: #ffffff;
}

.sto-image-modal__arrow--prev {
	left: 20px;
}

.sto-image-modal__arrow--prev::before {
	content: "‹";
}

.sto-image-modal__arrow--next {
	right: 20px;
}

.sto-image-modal__arrow--next::before {
	content: "›";
}


/* Курсор на фото слайдеров */

.sto-way-slider .js-sto-image,
.sto-service-slider .js-sto-image {
	cursor: zoom-in;
}


/* Мобильная версия просмотрщика */

@media (max-width: 700px) {

	.sto-image-modal {
		padding: 58px 8px 45px;
	}

	.sto-image-modal__dialog {
		max-height: calc(100vh - 103px);
	}

	.sto-image-modal__image {
		max-width: 100%;
		max-height: calc(100vh - 120px);
	}

	.sto-image-modal__close {
		top: 10px;
		right: 10px;

		width: 42px;
		height: 42px;
	}

	.sto-image-modal__arrow {
		width: 42px;
		height: 42px;
	}

	.sto-image-modal__arrow::before {
		font-size: 32px;
	}

	.sto-image-modal__arrow--prev {
		left: 8px;
	}

	.sto-image-modal__arrow--next {
		right: 8px;
	}

	.sto-image-modal__caption {
		bottom: -35px;

		width: max-content;
		max-width: calc(100% - 20px);

		font-size: 12px;
	}

}

/* ============================================================
	CTA ПОСЛЕ УСЛУГ
============================================================ */

.sto-services-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;

	margin-top: 42px;
	padding: 30px 34px;

	border-radius: 16px;

	background: #183747;
}

.sto-services-cta__content {
	flex: 1 1 auto;
	max-width: 760px;
}

.sto-services-cta__eyebrow {
	margin-bottom: 7px;

	color: #18c8c2;

	font-size: 12px;
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.sto-page .sto-services-cta h3 {
	margin: 0;

	color: #ffffff;

	font-size: 25px;
	line-height: 1.3;
	font-weight: 700;
	text-transform: none;
}

.sto-page .sto-services-cta p {
	margin: 10px 0 0;

	color: rgba(255, 255, 255, .76);

	font-size: 15px;
	line-height: 1.6;
	text-align: left;
}

.sto-services-cta__button {
	flex: 0 0 auto;
}


@media (max-width: 700px) {

	.sto-services-cta {
		align-items: stretch;
		flex-direction: column;

		gap: 22px;

		margin-top: 32px;
		padding: 25px 20px;
	}

	.sto-page .sto-services-cta h3 {
		font-size: 22px;
	}

	.sto-services-cta__button {
		width: 100%;
	}

	.sto-services-cta__button .sto-btn {
		width: 100%;
	}

}
.sto-form-field textarea {
	display: block;
	width: 100%;
	min-height: 110px;

	padding: 13px 14px;

	border: 1px solid #cdd7da;
	border-radius: 8px;
	outline: none;

	color: var(--sto-text);
	background: #fff;

	font-family: inherit;
	font-size: 15px;
	line-height: 1.5;

	resize: vertical;

	transition:
		border-color .2s ease,
		box-shadow .2s ease;
}

.sto-form-field textarea:focus {
	border-color: var(--sto-accent);
	box-shadow: 0 0 0 3px rgba(16, 170, 166, .12);
}

.sto-form-field textarea::placeholder {
	color: #9ba5aa;
}

.sto-form-field--full {
	flex: 1 1 100%;
	width: 100%;
}

.sto-brand-service--canvas .sto-brand-service__items {
	display: block;
}

.sto-brand-service__canvas {
	padding: 22px 26px;
	border: 1px solid #cfe6e6;
	border-radius: 14px;
	background: #f7fbfb;
}

.sto-brand-service__canvas-title {
	margin: 0 0 18px;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 500;
	color: #183747;
}

.sto-brand-service__canvas-text {
	margin: 0 0 14px;
	font-size: 16px;
	line-height: 1.65;
	color: #38545d;
}

.sto-brand-service__canvas-text:last-child {
	margin-bottom: 0;
}

.sto-brand-service__mark {
	display: inline-block;
	margin-right: 6px;
	font-weight: 700;
	color: #000;
}

@media (max-width: 767px) {
	.sto-brand-service__canvas {
		padding: 18px 16px;
	}

	.sto-brand-service__canvas-title {
		font-size: 19px;
	}
}
/* ============================================================
	HERO: 2 КОЛОНКИ
============================================================ */

.sto-hero__row {
	display: flex;
	align-items: center;
	gap: 42px;
}

/* левую колонку делаем шире */
.sto-hero__content {
	flex: 0 0 42%;
	width: 42%;
	min-width: 0;
}

/* слайдер занимает всё оставшееся место */
.sto-cert-slider {
	position: relative;
	flex: 1 1 0;
	width: auto;
	min-width: 0;
}

.sto-cert-slider__viewport {
	overflow: hidden;
	border: 1px solid #d9e5e7;
	border-radius: 14px;
	background: #fff;
}

.sto-cert-slider__track {
	display: flex;
	width: 100%;
	transition: transform .35s ease;
	will-change: transform;
}

/* ВАЖНО: 2 сертификата одновременно */
.sto-cert-slider__slide {
	flex: 0 0 50%;
	width: 50%;
	min-width: 0;
	padding: 10px;
	box-sizing: border-box;
}

.sto-cert-slider__slide a {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 350px;

	padding: 8px;

	background: #fff;
	border-radius: 10px;
	box-sizing: border-box;

	text-decoration: none;
}

.sto-cert-slider__slide img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: contain;
	object-position: center;
}


/* стрелки */

.sto-cert-slider__arrow {
	position: absolute;
	z-index: 3;

	top: 50%;

	width: 46px;
	height: 46px;

	padding: 0;
	border: 0;
	border-radius: 50%;

	background: #10aaa6;

	cursor: pointer;

	transform: translateY(-50%);

	box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.sto-cert-slider__arrow::before {
	content: "";

	position: absolute;

	top: 50%;
	left: 50%;

	width: 10px;
	height: 10px;

	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.sto-cert-slider__arrow--prev {
	left: 12px;
}

.sto-cert-slider__arrow--prev::before {
	transform:
		translate(-35%, -50%)
		rotate(-135deg);
}

.sto-cert-slider__arrow--next {
	right: 12px;
}

.sto-cert-slider__arrow--next::before {
	transform:
		translate(-65%, -50%)
		rotate(45deg);
}


/* точки */

.sto-cert-slider__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	margin-top: 14px;
}

.sto-cert-slider__dots button {
	width: 10px;
	height: 10px;

	padding: 0;
	border: 0;
	border-radius: 50%;

	background: #c8d6d9;

	cursor: pointer;
}

.sto-cert-slider__dots button.is-active {
	background: #10aaa6;
}


/* ============================================================
	RESPONSIVE
============================================================ */

@media (max-width: 900px) {

	.sto-hero__row {
		flex-direction: column;
		gap: 32px;
	}

	.sto-hero__content,
	.sto-cert-slider {
		flex-basis: auto;
		width: 100%;
	}

}


@media (max-width: 700px) {

	/* на телефоне снова 1 сертификат */
	.sto-cert-slider__slide {
		flex-basis: 100%;
		width: 100%;
	}

	.sto-cert-slider__slide a {
		height: 300px;
	}

	.sto-cert-slider__arrow {
		width: 40px;
		height: 40px;
	}

}