@charset "UTF-8";

:root {
	--base-font-size: 10px;
	--base-font-family: 'Jost', serif;
	--base-text-color: #444;
	--base-text-line-height: 1.3333333333;
	--container-max-width: 100%;
	--container-gap: 2.4rem;
	--container-content-gap: 7.2rem;
	--gap: 2rem;
	--header-text-font-family: 'Jost', serif;
	--header-text-color: inherit;
	--header-text-line-height: 1.2;
	--header-text-bottom-offset: 2rem;
	--header-text-font-weight: 500;
	--header-text-font-size-1: 3.3rem;
	--header-text-font-size-2: 2rem;
	--header-text-font-size-3: 2rem;
	--header-text-font-size-4: 2rem;
	--header-text-font-size-5: 2rem;
	--header-text-font-size-6: 2rem;
	--content-text-font-size: 1.8rem;
	--content-text-bottom-offset: 2.3rem;
	--content-text-bottom-offset-header: 3rem;
	--content-text-list-offset: calc(var(--content-text-bottom-offset) / 3);
	--color-accent: #ff4e00;
	--color-primary: #EC6555;
	--color-white: #fff;
	--color-black: #000;
	--color-fade: #999;
	--color-gray: #f8f8f8;
	--color-dark-gray: #444;
	--color-medium-gray: #333;
}

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 10px;
	font-size: var(--base-font-size);
}


.container {
	margin: 0 auto;
	max-width: 100%;
	max-width: var(--container-max-width);
	padding-left: 2.4rem;
	padding-left: var(--container-gap);
	padding-right: 2.4rem;
	padding-right: var(--container-gap);
	width: 100%;
}

.container.container_content {
	padding-left: 7.2rem;
	padding-left: var(--container-content-gap);
	padding-right: 7.2rem;
	padding-right: var(--container-content-gap);
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.row>* {
	min-width: 0;
}

.row>.row__item {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.list {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

>.list__item {
	list-style: none;
}

>.list__item::marker {
	display: none;
}

.list__link {
	display: block;
}

.wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	min-height: 1px;
}

.wrapper.wrapper_block {
	display: block;
	height: auto;
}

.main {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	min-height: 1px;
	width: 100%;
}

.text-fade {
	color: #999;
	color: var(--color-fade);
}

.-loader-lock {
	height: 100%;
	left: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	position: fixed;
	top: 0;
	width: 100%;
}

.lazy-placeholder {
	overflow: hidden;
	position: relative;
}

.lazy-placeholder div {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	height: 100%;
	overflow: hidden;
}

.lazy-placeholder div,
.lazy-placeholder img {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.logotype {
	display: block;
}

.logotype:hover {
	color: #ff4e00;
	color: var(--color-accent);
}

.footer {
	background-color: #f8f8f8;
	background-color: var(--color-gray);
	color: #000;
	color: var(--color-black);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
	padding-bottom: 2.4rem;
	padding-top: 2.4rem;
	z-index: 11;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
	.footer {
		padding-bottom: calc(env(safe-area-inset-bottom) + 2.4rem);
	}
}

.footer .navigation {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.section {
	padding: 8rem 0;
}

.section.section_content {
	padding-top: 12.8rem;
}

.bars {
	background-color: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	text-align: left;
	-webkit-transition: color 0.25s ease;
	-o-transition: color 0.25s ease;
	transition: color 0.25s ease;
}

.bars__label:first-child {
	display: block;
}

.bars__label:nth-child(2) {
	display: none;
}

.bars:hover {
	color: #ff4e00;
	color: var(--color-accent);
}

.bars.bars_active .bars__label:first-child {
	display: none;
}

.bars.bars_active .bars__label:nth-child(2) {
	display: block;
}

.big-phrases {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.big-phrases.big-phrases_color_accent {
	color: #ff4e00;
	color: var(--color-accent);
}

.big-phrases.big-phrases_color_primary {
	color: #cfff01;
	color: var(--color-primary);
}

.big-phrases.big-phrases_vertical {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.big-phrases.big-phrases_vertical>div+div {
	margin-top: 2.4rem;
}

.big-phrase__value {
	font-size: 20rem;
	letter-spacing: -0.222222rem;
	line-height: 1;
}

.big-phrase__value span {
	font-weight: 600;
}

.big-phrase__description {
	font-size: 1.8rem;
	line-height: 1.3333333333;
	margin-top: 0.6rem;
}

.big-phrase.big-phrase_align_left {
	text-align: left;
}

.big-phrase.big-phrase_align_center {
	text-align: center;
}

.big-phrase.big-phrase_align_right {
	text-align: right;
}

.button-new {
	border: 0;
	border-radius: 0;
	display: block;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	-webkit-transition: color 0.25s, background-color 0.25s, opacity 0.25s, border-color 0.25s;
	-o-transition: color 0.25s, background-color 0.25s, opacity 0.25s, border-color 0.25s;
	transition: color 0.25s, background-color 0.25s, opacity 0.25s, border-color 0.25s;
}

.button-new.button-new_dark {
	background-color: #444;
	background-color: var(--color-dark-gray);
	color: #cfff01;
	color: var(--color-primary);
	font-size: 2rem;
	line-height: 1.2;
	padding: 1.5rem;
}

.button-new.button-new_submit {
	color: #000;
	color: var(--color-black);
	font-size: 2rem;
	line-height: 1.2;
	padding: 1.5rem;
}

.button-new.button-new_balloon,
.button-new.button-new_submit {
	background-color: #fff;
	background-color: var(--color-white);
	border-radius: 1.2rem;
	width: 100%;
}

.button-new.button-new_balloon {
	color: #444;
	color: var(--color-dark-gray);
	font-size: 1.6rem;
	line-height: 1.875;
	padding: 0.9rem;
}

.field__input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0.1rem solid transparent;
	border-radius: 1.2rem;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: rgba(51, 51, 51, 0.3);
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.2;
	padding: 1.4rem;
	text-align: inherit;
	width: 100%;
	background: white;
}

.field__input:-webkit-autofill,
.field__input:-webkit-autofill:active,
.field__input:-webkit-autofill:focus,
.field__input:-webkit-autofill:hover {
	-webkit-transition: background-color 36000s ease-in-out 0s;
	transition: background-color 36000s ease-in-out 0s;
}

.field.field_touched .field__input {
	color: #333;
}

.field.field_error .field__input {
	color: red;
}

.button-old {
	border: 0;
	border-radius: 0;
	display: block;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	-webkit-transition: color 0.25s, background-color 0.25s, opacity 0.25s, border-color 0.25s;
	-o-transition: color 0.25s, background-color 0.25s, opacity 0.25s, border-color 0.25s;
	transition: color 0.25s, background-color 0.25s, opacity 0.25s, border-color 0.25s;
}

.button-old.button-old_dark {
	background-color: #444;
	background-color: var(--color-dark-gray);
	color: #cfff01;
	color: var(--color-primary);
	font-size: 2rem;
	line-height: 1.2;
	padding: 1.5rem;
}

.button-old.button-old_submit {
	color: #000;
	color: var(--color-black);
	font-size: 20px;
	line-height: 1.2;
	padding: 15px;
	position: relative;
	z-index: 2;
	border: 1px solid white;
}

.button-old.button-old_balloon,
.button-old.button-old_submit {
	background-color: #fff;
	background-color: var(--color-white);
	border-radius: 12px;
	width: 100%;
	font: inherit;
}

.button-old.button-old_balloon {
	color: #444;
	color: var(--color-dark-gray);
	font-size: 16px;
	line-height: 1.875;
	padding: 9px;
}

.contact {
	color: #999;
	color: var(--color-fade);
}

.contact span {
	color: #000;
	color: var(--color-black);
}

.downloads {
	color: #999;
	color: var(--color-fade);
	font-size: 2rem;
	font-size: var(--header-text-font-size-2);
	font-weight: 500;
}

.downloads:not(:last-child) {
	margin-bottom: 2rem;
	margin-bottom: var(--header-text-bottom-offset);
}

.h2+.downloads,
h2+.downloads {
	margin-top: -2rem;
	margin-top: calc(var(--header-text-bottom-offset) * -1);
}

.dropdown {
	padding-top: 2.4rem;
}

.dropdown__body {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}

.dropdown__footer {
	margin-top: 2.4rem;
	text-align: center;
}

.dropdown__contacts {
	width: 16.3rem;
}

.dropdown .contact__item+.contact__item {
	margin-top: 2.4rem;
}

.favorite {
	display: inline-block;
}

.favorite:hover {
	color: #ff4e00;
	color: var(--color-accent);
}

.section_feed {
	padding-bottom: 20px;
	padding-top: 20px;
}

.feed {
	position: relative;
}

.feed__item {
	position: absolute;
}

.feed__item.feed__item_row {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.feed__item.feed__item_row .feed__text {
	position: sticky;
	top: 18px;
}

.feed__item.feed__item_row.feed__item_reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.feed__item.feed__item_row.feed__item_reverse .feed__figure {
	margin-right: auto;
}

.feed__item.feed__item_row:not(.feed__item_reverse) .feed__figure {
	margin-left: auto;
}

.field__input-old {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0.1rem solid transparent;
	border-radius: 12px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: rgba(51, 51, 51, 0.3);
	font-size: 20px;
	font-weight: 500;
	line-height: 120%;
	padding: 14px;
	text-align: inherit;
	width: 100%;
	background: white;
}

.field__input-old:-webkit-autofill,
.field__input-old:-webkit-autofill:active,
.field__input-old:-webkit-autofill:focus,
.field__input-old:-webkit-autofill:hover {
	-webkit-transition: background-color 36000s ease-in-out 0s;
	transition: background-color 36000s ease-in-out 0s;
}

.field.field_touched .field__input-old {
	color: #333;
}

.field.field_error .field__input-old {
	color: red;
}

.figure {
	font-size: 1.2rem;
	line-height: 2;
}

.figure img {
	width: 100%;
}

.figure.figure_caption_right {
	text-align: right;
}

.form__fieldset+.form__fieldset {
	margin-top: 4rem;
	margin-top: calc(var(20px) * 2);
}

.form__group+.form__group {
	margin-top: 20px;
	margin-top: var(20px);
}

.form__group_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -2rem;
	margin-left: calc(var(--gap) * -1);
}

.form__group_row>* {
	min-width: 0;
}

.form__group_row>.form__item {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 2rem;
	padding-left: var(--gap);
}

.headline {
	overflow: hidden;
	text-align: center;
}

.headline__content {
	display: inline-block;
	overflow: hidden;
	padding: 0 7.2rem;
	padding: 0 var(--container-content-gap);
	vertical-align: top;
}

.headline img {
	max-width: none;
	width: auto;
}

.section_headline {
	padding-bottom: 0;
	padding-top: 4.8rem;
}

.hero {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
}

.link {
	border: 0.1rem solid;
	color: #444;
	color: var(--color-dark-gray);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 1.5rem;
	line-height: 1.2;
	padding: 0.8rem 1.1rem;
	text-transform: uppercase;
}

.link.link_arrow_right {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.link.link_arrow_right:after {
	content: "→";
}

.link.link_arrow_left {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.link.link_arrow_left:before {
	content: "←";
}

.link.link_faded {
	color: #999;
	color: var(--color-fade);
}

.link.link_faded:hover {
	color: #444;
	color: var(--color-dark-gray);
}

.modal-old {
	-webkit-overflow-scrolling: touch;
	-ms-scroll-chaining: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(68, 68, 68, 0.7);
	display: none;
	height: 100%;
	left: 0;
	opacity: 0;
	outline: none;
	overflow: auto;
	overscroll-behavior: contain;
	padding: 20px;
	position: fixed;
	text-align: center;
	top: 0;
	-webkit-transition: opacity 0.1s ease;
	-o-transition: opacity 0.1s ease;
	transition: opacity 0.1s ease;
	width: 100%;
	z-index: 1000;
}

.modal-old:before {
	content: "";
	height: 100%;
	margin-left: -0.28em;
}

.modal-old:before,
.modal-old__container {
	display: inline-block;
	vertical-align: middle;
}

.modal-old__container {
	background: #fff;
	margin: 0 auto;
	max-width: 70px;
	padding: 40px;
	position: relative;
	text-align: left;
	width: 100%;
	animation-name: animatetop;
	animation-duration: 0.4s
}

@-webkit-keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}

	to {
		top: 0;
		opacity: 1
	}
}

@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}

	to {
		top: 0;
		opacity: 1
	}
}

.modal-old__close {
	background: transparent;
	border: 0;
	color: #343434;
	cursor: pointer;
	font-size: 20px;
	font-weight: 700;
	height: 40px;
	line-height: 40px;
	padding: 0;
	position: absolute;
	right: 0;
	text-decoration: none;
	top: 0;
	-webkit-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
	width: 40px;
	animation-name: animatetop;
	animation-duration: 0.4s
}

}

.modal-old__close:hover {
	opacity: 0.5;
}

.modal-old__loader {
	background: #000;
	display: block;
	padding: 10px;
}

.modal-old__iframe {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}

.modal-old__iframe iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.modal-old__image img {
	display: block;
	height: auto;
	width: auto;
}

.modal-old__caption {
	background: rgba(0, 0, 0, 0.5);
	bottom: 0;
	color: #fff;
	font-size: 1.2rem;
	left: 0;
	padding: 2rem;
	position: absolute;
	text-align: center;
	visibility: hidden;
	width: 100%;
	z-index: 1;
}

.modal-old.modal-old_opened {
	display: block;
}

.modal-old.modal-old_visible {
	opacity: 1;
}

.modal-old.modal-old_visible .modal-old__container {
	-webkit-transform: translateY(0) translateX(0) !important;
	-ms-transform: translateY(0) translateX(0) !important;
	transform: translateY(0) translateX(0) !important;
}

.modal-old.modal-old_video .modal-old__container {
	background: #000;
	-webkit-box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
	box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
	max-width: 100rem;
	padding: 0;
}

.modal-old.modal-old_video .modal-old__close {
	right: -1.5rem;
	top: -4rem;
}

.modal-old.modal-old_image .modal-old__container {
	background: transparent;
	-webkit-box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
	box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
	color: #fff;
	height: auto;
	margin: 0 auto;
	max-height: 100%;
	max-width: 100%;
	padding: 0;
	position: static;
	width: auto;
}

.modal-old.modal-old_image .modal-old__close {
	color: #fff;
	right: 0;
	top: 0;
}

.modal {
	-webkit-overflow-scrolling: touch;
	-ms-scroll-chaining: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: rgba(68, 68, 68, 0.7);
	display: none;
	height: 100%;
	left: 0;
	opacity: 0;
	outline: none;
	overflow: auto;
	overscroll-behavior: contain;
	padding: 20px;
	position: fixed;
	text-align: center;
	top: 0;
	-webkit-transition: opacity 0.1s ease;
	-o-transition: opacity 0.1s ease;
	transition: opacity 0.1s ease;
	width: 100%;
	z-index: 1000;
}

.modal:before {
	content: "";
	height: 100%;
	margin-left: -0.28em;
}

.modal:before,
.modal__container {
	display: inline-block;
	vertical-align: middle;
}

.modal__container {
	background: #fff;
	margin: 0 auto;
	max-width: 70px;
	padding: 40px;
	position: relative;
	text-align: left;
	width: 100%;
	animation-name: animatetop;
	animation-duration: 0.4s
}

@-webkit-keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}

	to {
		top: 0;
		opacity: 1
	}
}

@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}

	to {
		top: 0;
		opacity: 1
	}
}

.modal__close {
	background: transparent;
	border: 0;
	color: #343434;
	cursor: pointer;
	font-size: 20px;
	font-weight: 700;
	height: 40px;
	line-height: 40px;
	padding: 0;
	position: absolute;
	right: 0;
	text-decoration: none;
	top: 0;
	-webkit-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
	width: 40px;
	animation-name: animatetop;
	animation-duration: 0.4s
}

}

.modal__close:hover {
	opacity: 0.5;
}

.modal__loader {
	background: #000;
	display: block;
	padding: 10px;
}

.modal__iframe {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}

.modal__iframe iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.modal__image img {
	display: block;
	height: auto;
	width: auto;
}

.modal__caption {
	background: rgba(0, 0, 0, 0.5);
	bottom: 0;
	color: #fff;
	font-size: 1.2rem;
	left: 0;
	padding: 2rem;
	position: absolute;
	text-align: center;
	visibility: hidden;
	width: 100%;
	z-index: 1;
}

.modal.modal_opened {
	display: block;
}

.modal.modal_visible {
	opacity: 1;
}

.modal.modal_visible .modal__container {
	-webkit-transform: translateY(0) translateX(0) !important;
	-ms-transform: translateY(0) translateX(0) !important;
	transform: translateY(0) translateX(0) !important;
}

.modal.modal_video .modal__container {
	background: #000;
	-webkit-box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
	box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
	max-width: 100rem;
	padding: 0;
}

.modal.modal_video .modal__close {
	right: -1.5rem;
	top: -4rem;
}

.modal.modal_image .modal__container {
	background: transparent;
	-webkit-box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
	box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
	color: #fff;
	height: auto;
	margin: 0 auto;
	max-height: 100%;
	max-width: 100%;
	padding: 0;
	position: static;
	width: auto;
}

.modal.modal_image .modal__close {
	color: #fff;
	right: 0;
	top: 0;
}

.navigation__link:hover {
	color: #ff4e00;
	color: var(--color-accent);
}

.navigation.navigation_vertical .navigation {
	margin-left: 3.5rem;
}

.navigation.navigation_horizontal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: -2.4rem;
}

.navigation.navigation_horizontal>* {
	padding-left: 2.4rem;
}

.order {
	color: #fff;
	color: var(--color-white);
	text-align: center;
}

.order__body {
	background-color: #EC6555;
	border-radius: 18px;
	padding: 0 18px 24px;
}

.order__footer {
	font-size: 12px;
	line-height: 1.25;
	margin-top: 12px;
}

.order__footer a {
	text-decoration: underline;
}

.order__title {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 12px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: -0.285rem;
	line-height: 9px;
	margin-bottom: 52px;
	padding-top: 5px;
	text-transform: uppercase;
}

.order__title svg {
	fill: currentColor;
	display: block;
	height: 90px;
	width: auto;
}

.modal-old_order {
	padding: 0;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.modal-old_order.modal-old_transition-in {
	-webkit-transition: opacity 0.1s ease;
	-o-transition: opacity 0.1s ease;
	transition: opacity 0.1s ease;
}

.modal-old_order.modal-old_transition-in .modal-old__container {
	-webkit-transition: 0.6s ease;
	-o-transition: 0.6s ease;
	transition: 0.6s ease;
}

.modal-old_order.modal-old_transition-out {
	-webkit-transition: opacity 0.1s ease 0.5s;
	-o-transition: opacity 0.1s ease 0.5s;
	transition: opacity 0.1s ease 0.5s;
}

.modal-old_order.modal-old_transition-out .modal-old__container {
	-webkit-transition: 0.6s ease;
	-o-transition: 0.6s ease;
	transition: 0.6s ease;
}

.modal-old_order:before {
	display: none;
}

.modal-old_order .modal-old__container {
	background-color: transparent;
	margin-top: 60px;
	max-width: 376px;
	padding: 0;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.modal-old_order .order {
	position: relative;
}

.modal-old_order .order:after,
.modal-old_order .order:before {
	background-color: #fff;
	background-color: var(--color-white);
	bottom: 100%;
	content: "";
	display: block;
	height: 60px;
	position: absolute;
	width: 3px;
}

.modal-old_order .order:before {
	left: 7rem;
}

.modal-old_order .order:after {
	right: 7rem;
}

/* .modal_order {
	padding: 0;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.modal_order.modal_transition-in {
	-webkit-transition: opacity 0.1s ease;
	-o-transition: opacity 0.1s ease;
	transition: opacity 0.1s ease;
}

.modal_order.modal_transition-in .modal__container {
	-webkit-transition: 0.6s ease;
	-o-transition: 0.6s ease;
	transition: 0.6s ease;
}

.modal_order.modal_transition-out {
	-webkit-transition: opacity 0.1s ease 0.5s;
	-o-transition: opacity 0.1s ease 0.5s;
	transition: opacity 0.1s ease 0.5s;
}

.modal_order.modal_transition-out .modal__container {
	-webkit-transition: 0.6s ease;
	-o-transition: 0.6s ease;
	transition: 0.6s ease;
}

.modal_order:before {
	display: none;
}

.modal_order .modal__container {
	background-color: transparent;
	margin-top: 60px;
	max-width: 376px;
	padding: 0;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
} */

/* .modal_order .order {
	position: relative;
}

.modal_order .order:after,
.modal_order .order:before {
	background-color: #fff;
	background-color: var(--color-white);
	bottom: 100%;
	content: "";
	display: block;
	height: 60px;
	position: absolute;
	width: 3px;
}

.modal_order .order:before {
	left: 7rem;
}

.modal_order .order:after {
	right: 7rem;
} */

.pagination {
	margin-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 12px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.pagination__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--color-dark-gray);
	border-radius: 100%;
	color: var(--color-dark-gray);
	font-size: 16px;
	text-align: center;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.pagination__link_current,
.pagination__link:hover {
	background-color: var(--primary-red);
	border-color: var(--primary-red);
	font-weight: 600;
	color: var(--color-white);
}

.panel {
	background-color: #fff;
	background-color: var(--color-white);
	font-size: 2rem;
	line-height: 1.2;
	padding: 1.8rem;
	width: 44.4rem;
}

.panel__header {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}

.panel__contacts {
	text-align: right;
}

.panel__dropdown {
	display: none;
}

.panel__body {
	padding-top: 1.2rem;
}

.panel__description {
	color: #ff4e00;
	color: var(--color-accent);
	font-size: 3rem;
	line-height: 1.2;
	overflow: hidden;
}

.panel__description>div {
	padding-bottom: 3rem;
}

.panel__state_default {
	display: block;
}

.panel__state_active {
	display: none;
}

.panel__overlay {
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
}

.panelopen {
	display: block;
}

.panel.panel_active .panel__dropdown {
	display: block;
}

.panel.panel_active .panel__body,
.panel.panel_active .panel__state_default {
	display: none;
}

.panel.panel_active .panel__overlay,
.panel.panel_active .panel__state_active {
	display: block;
}

.panel.panel_dark:not(.panel_active) {
	background-color: #333;
	background-color: var(--color-medium-gray);
	color: #fff;
	color: var(--color-white);
}

.panel.panel_dark:not(.panel_active) .contact span {
	color: #fff;
	color: var(--color-white);
}

.panel.panel_wider {
	width: 54.4rem;
}

.panel.panel_full {
	margin: -1.8rem -2.4rem 0;
	margin: -1.8rem calc(var(--container-gap) * -1) 0;
	padding: 2.4rem;
	width: auto;
}

.panel.panel_full .panel__bars,
.panel.panel_full .panel__contacts {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20rem;
	flex: 0 0 20rem;
	max-width: 20rem;
}

.panel.panel_full .panel__stuff {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: center;
}

.panel.panel_full .dropdown__contacts,
.panel.panel_full .dropdown__navigation {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 29rem;
	flex: 0 0 29rem;
	max-width: 29rem;
}

.panel.panel_full .dropdown__stuff {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.panel.panel_full .dropdown__contacts {
	text-align: right;
	width: auto;
}

.panel.panel_full .navigation_horizontal {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.-panel-active .header {
	z-index: 20;
}

.picture img {
	display: block;
	width: 100%;
}

.section_picture {
	padding-bottom: 0;
	padding-top: 0;
}

.section_picture+.section_photos {
	padding-top: 12rem;
}

.progress {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 2.8rem;
	line-height: 2.8rem;
}

.progress__number {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 2.5rem;
	flex: 0 0 2.5rem;
	margin-right: 1rem;
	max-width: 2.5rem;
	position: relative;
}

.progress__title {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	position: relative;
}

.progress__title span {
	max-width: 80%;
}

.progress span {
	opacity: 0;
	overflow: hidden;
	position: absolute;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-transition: opacity 0.35s ease;
	-o-transition: opacity 0.35s ease;
	transition: opacity 0.35s ease;
	vertical-align: top;
	white-space: nowrap;
}

.section_quote {
	padding-bottom: 19.2rem;
	padding-top: 19.2rem;
}

.quote {
	color: #ff4e00;
	color: var(--color-accent);
	text-align: center;
}

.quote__text {
	font-size: 3.3rem;
	font-weight: 600;
	letter-spacing: -0.03rem;
	line-height: 1.0909090909;
}

.quote__author {
	line-height: 1;
	margin-top: 1.8rem;
}

[data-scrollbooster].-scrollable {
	cursor: -webkit-grab;
	cursor: grab;
}

[data-scrollbooster].-scrolling {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.title {
	font-size: 12rem;
	letter-spacing: -0.133333rem;
	line-height: 0.8;
}

@media (min-width: 601px) {
	.header.header_auto {
		right: auto;
	}

	.footer .row {
		margin-bottom: 0;
		margin-left: -3.6rem;
		margin-top: -3.6rem;
	}

	.footer .row>* {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
		padding-left: 3.6rem;
		padding-top: 3.6rem;
	}

	.panel.panel_full .dropdown__footer {
		display: none;
	}
}

@media (min-width: 901px) {
	.navigation__item.navigation__item_hidden {
		display: none;
	}

	.panel.panel_full .dropdown__body {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}

	.panel.panel_full .contact__item:last-child {
		margin-top: 0;
	}
}

@media (min-width: 1001px) {
	.feed__item.feed__item_wide.feed__item_reverse .feed__figure {
		margin-left: -7.2rem;
		margin-left: calc(var(--container-content-gap) * -1);
		margin-right: auto;
	}

	.feed__item.feed__item_wide:not(.feed__item_reverse) .feed__figure {
		margin-left: auto;
		margin-right: -7.2rem;
		margin-right: calc(var(--container-content-gap) * -1);
	}
}

@media (max-width: 1100px) {
	:root {
		--container-gap: 1.8rem;
		--container-content-gap: 5.4rem;
		--header-text-font-size-1: 2.5rem;
		--header-text-font-size-2: 1.5rem;
		--header-text-font-size-3: 1.5rem;
		--header-text-font-size-4: 1.5rem;
		--header-text-font-size-5: 1.5rem;
		--header-text-font-size-6: 1.5rem;
		--content-text-font-size: 1.4rem;
	}

	body {
		font-size: 1.4rem;
	}

	.footer {
		font-size: 1.2rem;
	}

	.section.section_content {
		padding-top: 9.6rem;
	}

	.big-phrase__value {
		font-size: 15rem;
	}

	.big-phrase__description {
		font-size: 1.4rem;
		margin-top: 0;
	}

	.button-old.button-old_dark {
		font-size: 1.5rem;
		padding: 1.1rem;
	}

	.button-new.button-new_dark {
		font-size: 1.5rem;
		padding: 1.1rem;
	}

	.section_feed {
		padding-bottom: 14.6rem;
		padding-top: 14.6rem;
	}

	.figure {
		font-size: 0.9rem;
	}

	.headline img {
		height: 13.5rem;
	}

	.section_headline {
		padding-top: 2.6rem;
	}

	.panel {
		font-size: 1.5rem;
		padding: 1.35rem;
		width: 39.7rem;
	}

	.panel__body {
		padding-top: 2.2rem;
	}

	.panel__description {
		font-size: 2.5rem;
	}

	.panel__description>div {
		padding-bottom: 2.2rem;
	}

	.panel.panel_wider {
		width: 40.7rem;
	}

	.panel.panel_full {
		padding: 1.8rem;
	}

	.panel.panel_full .dropdown__contacts,
	.panel.panel_full .dropdown__navigation {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 23rem;
		flex: 0 0 23rem;
		max-width: 23rem;
	}

	.section_quote {
		padding-bottom: 14.2rem;
		padding-top: 14.2rem;
	}

	.quote__text {
		font-size: 2.5rem;
	}

	.title {
		font-size: 9.6rem;
	}

	@media (max-width: 1000px) {
		.feed {
			height: auto !important;
		}

		.feed__item {
			margin-top: 1.9rem !important;
			position: static;
			width: 100% !important;
		}

		.feed__item:first-child {
			margin-top: 0 !important;
		}

		.feed__item .feed__figure,
		.feed__item .feed__text {
			width: 100% !important;
		}

		.feed__item .feed__text {
			margin-bottom: 3.6rem;
		}

		.feed__item.feed__item_row {
			display: block;
		}

		.feed__item.feed__item_row:not(:first-child) {
			margin-top: 9.6rem !important;
		}

		.feed__item.feed__item_row .feed__text {
			margin-bottom: 3.6rem;
			position: static;
		}

		.feed__item.feed__item_row .feed__figure {
			margin-top: 0 !important;
		}
	}

	@media (max-width: 900px) {

		.panel.panel_full .dropdown__contacts,
		.panel.panel_full .dropdown__navigation {
			-webkit-box-flex: 0;
			-ms-flex: none;
			flex: none;
			max-width: none;
		}

		.panel.panel_full .dropdown__stuff {
			display: none;
		}
	}

	@media (max-width: 800px) {
		:root {
			--container-content-gap: 1.8rem;
			--header-text-font-size-1: 2.2rem;
		}

		.figure {
			font-size: 1.2rem;
		}

		.figure.figure_caption_right {
			text-align: left;
		}

		.panel.panel_full .panel__bars,
		.panel.panel_full .panel__contacts {
			-webkit-box-flex: 0;
			-ms-flex: 0 0 15rem;
			flex: 0 0 15rem;
			max-width: 15rem;
		}
	}

	@media (max-width: 600px) {
		.footer {
			font-size: 1.5rem;
		}

		.footer .row {
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-ms-flex-direction: column;
			flex-direction: column;
		}

		.footer .row .row__item+.row__item {
			margin-top: 2.4rem;
		}

		.big-phrases.big-phrases_vertical>div+div {
			margin-top: 3.6rem;
		}

		.big-phrase__value {
			font-size: 9.6rem;
			line-height: 0.8;
		}

		.big-phrase__description {
			margin-top: 1.2rem;
		}

		.dropdown {
			padding-top: 1.2rem;
		}

		.dropdown__body {
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			-ms-flex-direction: column;
			flex-direction: column;
		}

		.dropdown__footer {
			font-size: 2.2rem;
			margin-top: 2.7rem;
		}

		.dropdown__contacts {
			font-weight: 400;
			margin-top: 2.7rem;
			text-align: center;
			width: 100%;
		}

		.dropdown .contact__item+.contact__item {
			margin-top: 1.5rem;
		}

		.dropdown .contact__item:nth-child(2) {
			margin-top: 0;
		}

		.dropdown .contact__item:nth-child(2) br {
			display: none;
		}

		.section_feed {
			padding-bottom: 9.6rem;
			padding-top: 9.6rem;
		}

		.headline img {
			height: 9.4rem;
		}

		.link {
			font-size: 1.1rem;
			padding: 1rem 1.1rem;
		}

		.pagination {
			margin-top: 40px;
		}

		.pagination__link {
			font-size: 12px;
			width: 32px;
			height: 32px;
		}

		.panel {
			padding: 1.2rem;
			width: 100%;
		}

		.panel__description {
			font-size: 2.2rem;
		}

		.panel__description>div {
			padding-bottom: 1.2rem;
		}

		.panel__progress {
			font-size: 1.1rem;
		}

		.panel .navigation {
			font-size: 2.2rem;
		}

		.panel.panel_dark:not(.panel_active) {
			background-color: #444;
			background-color: var(--color-dark-gray);
		}

		.panel.panel_wider {
			width: 100%;
		}

		.panel.panel_full .panel__bars,
		.panel.panel_full .panel__contacts {
			-webkit-box-flex: 0;
			-ms-flex: none;
			flex: none;
			max-width: none;
		}

		.panel.panel_full .panel__stuff {
			display: none;
		}

		.panel.panel_full .dropdown__contacts {
			text-align: center;
		}

		.progress {
			height: 1.2rem;
			line-height: 1.2rem;
		}

		.progress__number {
			-webkit-box-flex: 0;
			-ms-flex: 0 0 1.4rem;
			flex: 0 0 1.4rem;
			margin-right: 0.4rem;
			max-width: 1.4rem;
		}

		.section_quote {
			padding-bottom: 6rem;
			padding-top: 6rem;
		}

		.quote {
			text-align: left;
		}

		.quote__text {
			font-size: 2.2rem;
		}

		.quote__text br {
			display: none;
		}

		.quote__author {
			margin-top: 1.2rem;
		}
	}

	@media (max-width: 370px) {
		.order__title {
			font-size: 10rem;
			line-height: 7.5rem;
		}

		.order__title svg {
			height: 7.2rem;
		}
	}