@font-face {
	font-family: 'Roslyn';
	src: url('../fonts/Roslyn.woff2') format('woff2'),
		 url('../fonts/Roslyn.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--black: #1E0000;
	--bg: #ECB239;
	--dark_bg: #DD9C1A;
	--accent: #7E3B03;
	--white: #FFF;
	--red: #A12D00;
	--placeholder: rgba(30, 0, 0, .4);

	--v_padding: 80px;

	--h1: 48px;
	--h2: 36px;
	--h3: 24px;
	--h4: 19px;
	--big_text: 21px;
	--text: 16px;
	--label: 16px;
	--note: 14px;
	--caps: 16px;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;

	-webkit-text-size-adjust: none;
	   -moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
			text-size-adjust: none;
}

html {
	display: block;
}

body {
	margin: 0;
	padding: 68px 0 0;
	color: var(--black);
	font-size: var(--text);
	font-weight: 400;
	font-family: 'Roslyn', serif;
	line-height: 1.15;
	background-color: var(--bg);

	-webkit-font-smoothing: subpixel-antialiased;
}

img {
	display: block;

	width: 100%;
	height: auto;
}

a,
a:hover {
	text-decoration: none;
	cursor: pointer;
}

.bone {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
}

.bone_bottom {
	padding-bottom: var(--v_padding);
}


/* ███╗  ██╗ ███████╗ ██╗       ██╗ 
// ████╗ ██║ ██╔════╝ ██║  ██╗  ██║ 
// ██╔██╗██║ █████╗   ╚██╗████╗██╔╝ 
// ██║╚████║ ██╔══╝    ████╔═████║  
// ██║ ╚███║ ███████╗  ╚██╔╝ ╚██╔╝  
// ╚═╝  ╚══╝ ╚══════╝   ╚═╝   ╚═╝   */



/* main */

.h1 {
	font-size: var(--h1);
	text-transform: uppercase;
	line-height: 140%;
}

.h2 {
	font-size: var(--h2);
	line-height: 140%;
}

.h3 {
	font-size: var(--h3);
	text-transform: uppercase;
	line-height: 140%;
}

.lbl {
	font-size: var(--label);
	line-height: 120%;
}

.txt {
	font-size: var(--text);
	line-height: 180%;
}

.tac {
	text-align: center;
}

/* main */



/* global */

.global_header {
	margin-bottom: 20px;
}

.global_header.between {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.global_pretitle {
	color: var(--accent);
}

.global_title {

}

.global_subtitle {
	color: var(--accent);
}

/* - - - toggle */

.global_toggle {
	overflow-x: auto;

	-webkit-overflow-scrolling: touch;
			scrollbar-width: none;
}

.global_toggle::-webkit-scrollbar {
	display: none;
}

.global_toggle_nav {
	display: flex;
	gap: 2px;
}

.global_toggle_li {
	display: flex;
	flex-wrap: nowrap;

	cursor: pointer;
}

.global_toggle_li_before,
.global_toggle_li_after {
	width: 6px;
	height: 44px;
	background-image: url('../images/icons/button.form.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	opacity: 0;

	transition: opacity .23s ease-out;
}

.global_toggle_li_label {
	width: calc(100% - 12px);
	height: 44px;
	padding: 0 20px;
	font-size: var(--caps);
	text-transform: uppercase;
	line-height: 42px;
	white-space: nowrap;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;

	transition: border-color .23s ease-out;
}

.global_toggle_li_after {
	transform: rotate(180deg);
}

.global_toggle_li:hover .global_toggle_li_label,
.global_toggle_li.active .global_toggle_li_label {
	border-color: var(--black);
}

.global_toggle_li:hover .global_toggle_li_before,
.global_toggle_li:hover .global_toggle_li_after,
.global_toggle_li.active .global_toggle_li_before,
.global_toggle_li.active .global_toggle_li_after {
	opacity: 1;
}

/* global */



/* button */

.button {
	display: block;
	position: relative;

	height: 44px;
	padding: 0 28px;
	color: var(--black);
	font-size: var(--label);
	font-family: 'Roslyn', sans-serif;
	text-align: center;
	text-transform: uppercase;
	line-height: 43px;
	white-space: nowrap;
	background-color: transparent;
	border: 2px solid var(--black);
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;

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

.button:active {
	line-height: 45px;
}

/* - - - outline */

.button.outline {
	
}

.button.outline:hover {
	color: var(--white);
	background-color: var(--black);
}

/* - - - hard */

.button.hard {
	color: var(--white);
	background-color: var(--black);
}

.button.hard:before,
.button.hard:after {
	content: '';
	position: absolute;
	top: 12px;

	width: 16px;
	height: 16px;
	background-image: url('../images/icons/button.decoration.black.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.button.hard:before {
	left: -9px;
}

.button.hard:after {
	right: -9px;
}

.button.hard:hover {
	color: var(--black);
	background-color: transparent;
}

/* - - - dark */

.button.dark {
	color: var(--white);
	border-color: var(--bg);
}

.button.dark:hover {
	color: var(--black);
	background-color: var(--bg);
}

/* - - - icon */

.button.icon {
	width: 44px;
	padding: 0;
	background-position: center;
	background-repeat: no-repeat;

	transition: background-size .23s ease-out;
}

/* - - - icon / left */

.button.icon.left {
	background-image: url('../images/icons/button.arrow.left.svg');
	background-size: 12px;
}

.button.icon.left:hover {
	background-size: 16px;
}

/* - - - icon / right */

.button.icon.right {
	background-image: url('../images/icons/button.arrow.right.svg');
	background-size: 12px;
}

.button.icon.right:hover {
	background-size: 16px;
}

/* button */



/* input */

.input,
.textarea {
	display: block;

	width: 100%;
	height: 44px;
	padding: 12px 20px 10px;
	color: var(--black);
	font-size: var(--label);
	font-weight: 400;
	font-family: 'Roslyn', sans-serif;
	line-height: 19px;
	background-color: transparent;
	border: 2px solid var(--black);
	border-radius: 0;
	box-shadow: none;
	outline: none;

	transition: background-color .23s linear, border-color .23s linear;

	-webkit-appearance: none;
}

.input.err,
.textarea.err {
	background-color: rgba(238, 12, 12, 0.12);
}

.input:hover,
.textarea:hover {
	border-color: var(--accent);
}

.input:focus,
.textarea:focus {
	border-color: var(--accent);
	box-shadow: none;
}

.textarea {
	resize: vertical;

	min-height: 100px;
	padding-top: 13px;
	line-height: 22px;
}

select.input {
	background-image: url('../images/icons/select.arrow.svg');
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 8px;
	padding-right: 40px;
	cursor: pointer;
}

.error {
	width: 100%;
	text-align: left;
}

.error span {
	color: #EE0C0C;
}

.input:-moz-placeholder {
	color: var(--placeholder) !important;
	line-height: normal;
}

.input::-webkit-input-placeholder {
	color: var(--placeholder);
	line-height: normal;
}

::-webkit-input-placeholder {
	color: var(--placeholder);
	line-height: normal;
}

:-ms-input-placeholder {
	color: var(--placeholder);
	line-height: normal;
}

::-moz-placeholder {
	color: var(--placeholder);
	line-height: normal;
}

:-moz-placeholder {
	color: var(--placeholder);
	line-height: normal;
}

.textarea:-moz-placeholder {
	line-height: 22px;
}

.textarea::-webkit-input-placeholder {
	line-height: 22px;
}

.textarea:-ms-input-placeholder {
	line-height: 22px;
}

.textarea::-moz-placeholder {
	line-height: 22px;
}

/* input */



/* select */

.select {
	position: relative;

	height: 44px;
	padding: 12px 20px 12px;
	color: var(--black);
	font-size: var(--label);
	font-weight: 400;
	line-height: 19px;
	border: 2px solid var(--black);
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	z-index: 1;

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

.select:hover {
	
}

.select.active {
	z-index: 2;
}

.select:before {
	content: '';
	pointer-events: none;
	position: absolute;
	top: 13px;
	right: 20px;

	width: 12px;
	height: 12px;
	background: url('../images/arrow_left.svg') center center no-repeat;
	background-size: 12px auto;

	transition: transform .23s ease-out;
	transform: rotate(270deg) translateX(-1px);
}

.select.active:before {
	transform: rotate(450deg);
}

.select_ul {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;

	padding: 8px 0;
	background-color: var(--light_black);
	border: 2px solid var(--corp);
	border-radius: 12px;

	-ms-overflow-style: none;
	   scrollbar-width: none;
}

.select_ul::-webkit-scrollbar {
	display: none;
}

.select.active .select_ul {
	display: block;
	overflow-y: scroll;

	max-height: 350px;
}

.select_li {
	padding: 8px 20px 8px;
	cursor: pointer;

	transition: color .23s ease-out;
}

.select_li:hover {
	color: var(--corp);
}

/* select */



/* checkbox */

.checkbox {
	overflow: hidden;
	position: absolute;
	left: -9999px;

	outline: 0;
	opacity: 0;
}

.checkbox + label {
	display: inline-block;
	position: relative;

	padding: 5px 0 3px 36px;
	color: var(--black);
	font-size: var(--label);
	cursor: pointer;

	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
		 -o-user-select: none;
			user-select: none;
}

.checkbox + label a {
	color: var(--accent);

	transition: color .23s ease-out;
}

.checkbox + label a:hover {
	color: var(--black);
}

.checkbox + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

	width: 20px;
	height: 20px;
	border: 2px solid var(--black);
	border-radius: 0;

	transition: background-color .13s linear, border-color .13s linear;
}

.checkbox + label:hover:before {
	border-color: var(--accent);
}

.checkbox:checked + label:before {
	border-color: var(--black);
}

.checkbox + label:after {
	content: '';
	position: absolute;
	top: 8px;
	left: 7px;

	width: 8px;
	height: 4px;
	border-left: 2px solid var(--black);
	border-bottom: 2px solid var(--black);

	transition: opacity .13s linear;
	transform: rotate(-45deg);
}

.checkbox:not(:checked) + label:after {
	opacity: 0;
}

.checkbox:checked + label:after {
	opacity: 1;
}

/* checkbox */



/* header */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	background-color: var(--bg);
	box-shadow: 0 0 30px var(--dark_bg);
	z-index: 999;

	transition: top .23s ease-out, padding .23s ease-out;
}

.header.lock {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

.header.hidden {
	top: -80px;
}

.header_group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.header_left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.header_burger {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

	width: 68px;
	height: 68px;
	background-color: var(--black);
	cursor: pointer;
}

.header_burger span {
	display: block;
	position: relative;

	width: 32px;
	height: 2px;
	background-color: var(--white);

	transition: background-color .23s ease-out;
}

.header_burger span:before {
	content: '';
	position: absolute;
	top: -8px;
	left: 0;

	width: 32px;
	height: 2px;
	background-color: var(--white);

	transition: transform .23s ease-out;
}

.header_burger span:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;

	width: 32px;
	height: 2px;
	background-color: var(--white);

	transition: transform .23s ease-out;
}

.header_burger.active span {
	background-color: transparent;
}

.header_burger.active span:before {
	transform: translate3d(0, 8px, 0) rotate(-135deg);
}

.header_burger.active span:after {
	transform: translate3d(0, -8px, 0) rotate(135deg);
}

.header_funcs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.header_funcs_icon {
	position: relative;

	padding-left: 32px;
	font-size: var(--caps);
	text-transform: uppercase;
	line-height: 100%;
	white-space: nowrap;
	cursor: pointer;
}

.header_funcs_icon:before {
	content: '';
	position: absolute;
	top: -6px;
	left: 0;

	width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% cover;

	transition: transform .23s ease-out;
}

.header_funcs_icon:hover:before {
	transform: scale(1.2);
}

.header_funcs_icon.location:before {
	background-image: url('../images/icons/location.black.svg');
}

.header_funcs_icon.lang:before {
	background-image: url('../images/icons/lang.black.svg');
}

.header_logo {
	position: absolute;
	top: 18px;
	left: 50%;

	width: 156px;

	transform: translate3d(-50%, 0, 0);
}

.header_logo img {

}

.header_right {
	padding-right: 20px;
}

.header_buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.header_book {
	display: none;

	width: 68px;
	height: 68px;
	padding: 16px;
	background-color: var(--black);
}

.header_book img {

}

/* header */



/* bar */

.bar {
	overflow: hidden;
	position: fixed;
	top: 68px;
	left: 0;
	bottom: 0;

	max-width: 360px;
	width: 100%;

	background-color: var(--bg);
	z-index: 998;

	transition: transform .23s ease-out;
	transform: translateX(-100%);
}

.bar.active {
	transform: translateX(0) !important;
}

.bar_scroll {
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	position: relative;

	width: calc(100% + 30px);
	height: calc(100vh - 68px);
	padding: 0 30px 0 0px;

	-webkit-overflow-scrolling: touch;
}

.bar_scroll::-webkit-scrollbar {
	width: 0;
}

.bar_scroll {
	-ms-overflow-style: none;
}

.bar_scroll {
	overflow: -moz-scrollbars-none;
}

.bar_nav {
	flex-grow: 1;

	padding: 40px;
}

.bar_icons {
	display: none;
	flex-wrap: wrap;
	gap: 20px;

	padding-bottom: 40px;
}

.bar_nav_li {
	padding: 8px 0;
}

.bar_nav_li a {
	color: var(--black);
	font-size: var(--h3);
	text-transform: uppercase;
	line-height: 140%;

	transition: color .23s ease-out;
}

.bar_nav_li a:hover {
	color: var(--accent);
}

.bar_bottom {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;

	padding: 0 40px 40px;
}

.bar_button {
	margin-top: 8px;
}

.bar_bottom .header_phone_link {
	color: var(--white);
}

.bar_bottom .header_phone_link:hover {
	color: var(--corp);
}

.bar_pattern {
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	background-color: var(--bg);
	background-image: url('../images/separator.dots.svg');
	background-position: top center;
	background-repeat: repeat;
	opacity: 0;
	z-index: 997;

	transition: opacity .23s ease-out;
}

.bar_pattern.active {
	pointer-events: visible;

	opacity: 1;
}

/* bar */



/* general */

.general {
	position: relative;

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.general_group {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	position: relative;

	min-height: 60vh;
	padding-bottom: var(--v_padding);
	z-index: 2;
}

.general.shadow:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;

	height: 240px;
	background: linear-gradient(180deg, rgba(30, 0, 0, 0) 0%, #1E0000 100%);
}

.general_title {
	color: var(--white);
	text-align: center;
	text-shadow: 0 2px 40px var(--black);
}

.general_title span {
	color: var(--bg);
}

.general_slider {

}

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

.general_slide.main {
	position: relative;
}

.general_slide_text {
	position: absolute;
	left: var(--v_padding);
	right: var(--v_padding);
	bottom: var(--v_padding);

	color: var(--white);
	text-align: center;
}

.general_slide img {

}

/* general */



/* subheader */

.subheader {
	overflow-x: auto;

	padding: 12px 0;
	background-color: var(--bg);
	box-shadow: 0 0 30px var(--dark_bg);

	-webkit-overflow-scrolling: touch;
			scrollbar-width: none;
}

.subheader::-webkit-scrollbar {
	display: none;
}

.subheader_group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.subheader_nav {
	display: flex;
	gap: 2px;
}

.subheader_li {
	display: flex;
	flex-wrap: nowrap;

	cursor: pointer;
}

.subheader_li_before,
.subheader_li_after {
	width: 6px;
	height: 44px;
	background-image: url('../images/icons/button.form.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	opacity: 0;

	transition: opacity .23s ease-out;
}

.subheader_li_label {
	width: calc(100% - 12px);
	height: 44px;
	padding: 0 20px;
	color: var(--black);
	font-size: var(--caps);
	text-transform: uppercase;
	line-height: 42px;
	white-space: nowrap;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;

	transition: border-color .23s ease-out;
}

.subheader_li_after {
	transform: rotate(180deg);
}

.subheader_li:hover .subheader_li_label,
.subheader_li.active .subheader_li_label {
	border-color: var(--black);
}

.subheader_li:hover .subheader_li_before,
.subheader_li:hover .subheader_li_after,
.subheader_li.active .subheader_li_before,
.subheader_li.active .subheader_li_after {
	opacity: 1;
}

.sunheader_buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

/* subheader */



/* overview */

.overview {
	position: relative;
}

.overview_group {

}

.overview_info {
	width: 50%;
	padding: var(--v_padding) var(--v_padding) var(--v_padding) 0;
}

.overview_contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}

.overview_contacts_block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.overview_contacts_block.full {
	width: 100%;
}

.overview_contacts_icon {
	width: 48px;
	height: 48px;
	padding: 12px;
	background-color: var(--dark_bg);
}

.overview_contacts_icon img {
	transition: transform .23s ease-out;
}

.overview_contacts_block:hover .overview_contacts_icon img {
	transform: scale(1.2);
}

.overview_contacts_label {
	color: var(--black);
	font-size: var(--caps);
	text-transform: uppercase;
}

.overview_shed {
	display: flex;
	flex-wrap: wrap;
	position: relative;

	margin-top: 32px;
}

.overview_shed_before,
.overview_shed_after {
	position: relative;

	width: 22px;
}

.overview_shed_before:before,
.overview_shed_before:after,
.overview_shed_after:before,
.overview_shed_after:after {
	content: '';
	position: absolute;

	width: 22px;
	height: 22px;
	background-image: url('../images/icons/border.mega.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.overview_shed_before:before {
	top: 0;
	left: 0;
}

.overview_shed_before:after {
	left: 0;
	bottom: 0;

	transform: rotate(-90deg);
}

.overview_shed_after:before {
	top: 0;
	right: 0;

	transform: rotate(90deg);
}

.overview_shed_after:after {
	right: 0;
	bottom: 0;

	transform: rotate(180deg);
}

.overview_shed_lines {
	position: absolute;
	top: 22px;
	bottom: 22px;

	width: 8px;
	border-left: 2px solid var(--black);
	border-right: 2px solid var(--black);
}

.overview_shed_before .overview_shed_lines {
	left: 0;
}

.overview_shed_after .overview_shed_lines {
	right: 0;
}

.overview_shed_content {
	position: relative;

	width: calc(100% - 44px);
	padding: 20px 8px 28px;
	border-top: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
}

.overview_shed_content:before,
.overview_shed_content:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;

	height: 2px;
	background-color: var(--black);
}

.overview_shed_content:before {
	top: 4px;
}

.overview_shed_content:after {
	bottom: 4px;
}

.overview_shed_content_status {
	padding-left: 12px;
	padding-bottom: 12px;
}

.overview_shed_content_time {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	padding: 10px 12px 8px;
}

.overview_shed_content_time:nth-child(even) {
	background-color: var(--dark_bg);
}

.overview_shed_content_text {

}

.overview_shed_german {
	position: absolute;
	top: -148px;
	right: 64px;

	width: 88px;
}

.overview_shed_german img {
	box-shadow: none;
}

.overview_map {
	position: absolute;
	top: 0;
	left: 50%;
	right: 0;
	bottom: 0;
}

.overview_map img {
	object-fit: cover;

	width: 100%;
	height: 100%;
}

.overview_map_pointer {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;

	width: 80px;
	height: 80px;
	background-image: url('../images/icons/location.accent.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;

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

	animation: bounce 1.2s ease-in-out infinite;
}

@keyframes bounce {
	0%, 100% {
		transform: translate(-50%, -50%);
	}
	50% {
		transform: translate(-50%, calc(-50% - 16px));
	}
}

/* overview */



/* separator */

.separator {
	height: 46px;
	margin: 2px 0;
	background-image: url('../images/separator.dots.svg');
	background-position: top center;
	background-repeat: repeat;
}

.separator.dark {
	margin: 0;
	background-color: var(--black);
	background-image: url('../images/separator.dots.dark.svg');
}

.separator.german {
	height: 60px;
	margin: 0;
	background-color: var(--black);
	background-image: url('../images/separator.german.svg');
}

/* separator */



/* about */

.about {
	padding: var(--v_padding) 0;
}

.about_group {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about_info {
	width: calc(100% - 480px);
}

.about_info.full {
	width: 100%;
}

.about_header {

}

.about_descr {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;
}

.about_descr p {
	font-size: var(--big_text);
	line-height: 160%;
}

.about_review {
	display: flex;
	flex-wrap: wrap;

	margin-top: 40px;
}

.about_review_content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;

	width: calc(100% - 28px);
	padding: 24px 12px;
	border-top: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
}

.about_review_label {
	position: relative;

	padding-top: 2px;
	color: var(--black);

	transition: color .23s ease-out;
}

.about_review:hover .about_review_label {
	color: var(--accent);
}

.about_review_label:before {
	content: '';
	pointer-events: none;
	position: absolute;
	top: 7px;
	right: -28px;

	width: 19px;
	height: 19px;
	background-image: url('../images/icons/link.accent.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	opacity: 0;

	transform: rotate(45deg);

	transition: opacity .23s ease-out, transform .23s ease-out;
}

.about_review:hover .about_review_label:before {
	opacity: 1;

	transform: rotate(0);
}

.about_review_stars {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.about_review_stars img {
	width: 32px;
}

.about_review_before,
.about_review_after {
	position: relative;

	width: 14px;
}

.about_review_before:before,
.about_review_before:after,
.about_review_after:before,
.about_review_after:after {
	content: '';
	position: absolute;

	width: 14px;
	height: 14px;
	background-image: url('../images/icons/border.medium.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.about_review_before:before {
	top: 0;
	left: 0;
}

.about_review_before:after {
	left: 0;
	bottom: 0;

	transform: rotate(-90deg);
}

.about_review_after:before {
	top: 0;
	right: 0;

	transform: rotate(90deg);
}

.about_review_after:after {
	right: 0;
	bottom: 0;

	transform: rotate(180deg);
}

.about_review_lines {
	position: absolute;
	top: 14px;
	bottom: 14px;

	width: 2px;
	background-color: var(--black);
}

.about_review_before .about_review_lines {
	left: 0;
}

.about_review_after .about_review_lines {
	right: 0;
}

.about_edges {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;

	margin-top: 40px;
}

.about_edges_block {
	display: flex;
	flex-wrap: wrap;
}

.about_edges_block_before,
.about_edges_block_after {
	position: relative;

	width: 14px;
	background-color: var(--dark_bg);
}

.about_edges_block_content {
	position: relative;

	width: calc(100% - 28px);
	padding: 24px 24px 24px 64px;
	background-color: var(--dark_bg);
}

.about_edges_block_content:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 12px;

	width: 36px;
	height: 36px;
	background-image: url('../images/icons/location.accent.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;

	transform: translate3d(0, -50%, 0);
}

.about_edges_block_before:before,
.about_edges_block_before:after,
.about_edges_block_after:before,
.about_edges_block_after:after {
	content: '';
	position: absolute;

	width: 14px;
	height: 14px;
	background-color: var(--bg);
}

.about_edges_block_before:before {
	top: 0;
	left: 0;

	border-radius: 0 0 100% 0;
}

.about_edges_block_before:after {
	left: 0;
	bottom: 0;

	border-radius: 0 100% 0 0;
}

.about_edges_block_after:before {
	top: 0;
	right: 0;

	border-radius: 0 0 0 100%;
}

.about_edges_block_after:after {
	right: 0;
	bottom: 0;

	border-radius: 100% 0 0 0;
}

.about_cover {
	position: relative;

	width: 400px;
	padding-top: 121px;
}

.about_sticky {
	position: sticky;
	top: 153px;
}

.about_cover img {
	box-shadow: 0 20px 30px var(--dark_bg);
}

.about_cover_german {
	position: absolute;
	top: -121px;
	left: 50%;

	width: 198px;

	transform: translate3d(-50%, 0, 0);
}

.about_cover_german img {
	box-shadow: none;
}

/* about */



/* photos */

.photos {
	overflow: hidden;

	padding: 0 0 var(--v_padding);
}

.photos.padding {
	padding: var(--v_padding) 0;
}

.photos_group {
	
}

.photos_images {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.photos_image {
	position: relative;

	height: 400px;
}

.photos_image.ph_2 {
	width: calc(50% - 10px);
}

.photos_image.ph_3 {
	width: calc(100% / 3 - 40px / 3);
}

.photos_image img {
	object-fit: cover;

	width: 100%;
	height: 100%;
}

.photos_badges {
	position: absolute;
	left: -8px;
	bottom: 12px;
}

.photos_badge {
	padding: 8px 16px;
	color: var(--white);
	font-size: var(--caps);
	text-transform: uppercase;
	background-color: var(--black);
}

.photos_image_border {

}

.photos_image_border {
	display: flex;
	flex-wrap: wrap;
}

.photos_image_border_before,
.photos_image_border_after {
	position: relative;

	width: 22px;
}

.photos_image_border_before:before,
.photos_image_border_before:after,
.photos_image_border_after:before,
.photos_image_border_after:after {
	content: '';
	position: absolute;

	width: 22px;
	height: 22px;
	background-image: url('../images/icons/border.mega.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.photos_image_border_before:before {
	top: 0;
	left: 0;
}

.photos_image_border_before:after {
	left: 0;
	bottom: 0;

	transform: rotate(-90deg);
}

.photos_image_border_after:before {
	top: 0;
	right: 0;

	transform: rotate(90deg);
}

.photos_image_border_after:after {
	right: 0;
	bottom: 0;

	transform: rotate(180deg);
}

.photos_image_border_lines {
	position: absolute;
	top: 22px;
	bottom: 22px;

	width: 8px;
	border-left: 2px solid var(--black);
	border-right: 2px solid var(--black);
}

.photos_image_border_before .photos_image_border_lines {
	left: 0;
}

.photos_image_border_after .photos_image_border_lines {
	right: 0;
}

.photos_image_border_content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: relative;

	width: calc(100% - 44px);
	height: 400px;
	padding: 20px 8px 28px;
	color: var(--black);
	border-top: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
}

.photos_image_border_content:before,
.photos_image_border_content:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;

	height: 2px;
	background-color: var(--black);
}

.photos_image_border_content:before {
	top: 4px;
}

.photos_image_border_content:after {
	bottom: 4px;
}

/* photos */



/* events */

.events {
	overflow: hidden;

	padding: var(--v_padding) 0;
}

.events_group {

}

.events_toggle {
	margin-bottom: 40px;
}

.events_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.events_slider {
	margin: 0 -20px;
}

.events_slide {
	padding: 0 20px;
}

.events_block {
	display: block;

	width: 350px;
}

.events_blocks .events_block {
	width: calc(100% / 3 - 80px / 3);
}

.events_modal_blocks {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 40px;
}

.events_modal_blocks .events_block {
	width: 100%;
}

.events_images {
	position: relative;
}

.events_images img {
	box-shadow: 0 10px 20px var(--dark_bg);
}

.events_badges {
	position: absolute;
	left: -8px;
	bottom: 12px;
}

.events_badge {
	padding: 8px 16px;
	color: var(--white);
	font-size: var(--caps);
	text-transform: uppercase;
	background-color: var(--black);
}

.events_info {
	padding-top: 20px;
}

.events_title {
	overflow: hidden;

	color: var(--black);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.events_descr {
	padding-top: 8px;
	color: var(--black);
}

.events_pagination {
	margin-top: 40px;
}

.events_calendar {

}

.events_calendar_control {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.events_calendar_control_date {
	font-size: var(--h1);
}

.events_calendar_control_buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.events_calendar_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;

	margin-top: 40px;
}

.events_calendar_block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;

	width: calc(100% / 7 - 72px / 7);
	padding: 12px;
	background-color: var(--dark_bg);
	cursor: pointer;
}

.events_calendar_block.padding {
	min-height: 100px;
}

.events_calendar_number {
	width: calc(100% - 92px);
	color: var(--black);
	font-size: var(--h3);
	text-align: center;

	transition: color .23s ease-out;
}

.events_calendar_block:hover .events_calendar_number {
	color: var(--accent);
}

.events_calendar_image {
	width: 80px;
}

.events_calendar_image img {

}

/* events */



/* corporative */

.corporative {
	display: flex;
	flex-wrap: wrap;
	position: relative;

	background-color: var(--black);
}

.corporative_info {
	width: 50%;
	padding: var(--v_padding);
}

.corporative_title {
	color: var(--bg);
	text-align: center;
}

.corporative_descr {
	padding-top: 16px;
	color: var(--bg);
	font-size: var(--big_text);
	text-align: center;
	line-height: 160%;
}

.corporative_button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	padding-top: 20px;
}

.corporative_image {
	position: absolute;

	top: 0;
	left: 50%;
	right: 0;
	bottom: 0 ;
}

.corporative_image img {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	height: 100%;
}

/* corporative */



/* footer */

.footer {
	background-color: var(--black);
}

.footer_group {
	padding: 60px 0;
}

.footer_blocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer_block {

}

.footer_logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.footer_logo_image {
	width: 96px;
}

.footer_logo_image img {

}

.footer_logo_descr {
	max-width: 220px;
	color: var(--bg);
	font-size: var(--note);
	line-height: 160%;
}

.footer_block {

}

.footer_nav {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 24px;
}

.footer_nav_li {
	color: var(--bg);
	font-size: var(--label);
	cursor: pointer;

	transition: color .23s ease-out;
}

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

.footer_button {
	margin-top: 40px;
}

.footer_socs {
	margin-top: 20px;
}

.footer_socs_label {
	color: var(--accent);
	font-size: var(--label);
}

.footer_socs_icons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;

	margin-top: 8px;
}

.footer_socs_icon {
	width: 44px;
	height: 44px;
	padding: 12px;
	background-color: var(--bg);
	cursor: pointer;

	transition: background-color .23s ease-out;
}

.footer_socs_icon img {
	transition: transform .23s ease-out;
}

.footer_socs_icon:hover img {
	transform: scale(1.2);
}

/* footer */



/* copyright */

.copyright {
	padding: 60px 0;
	background-color: var(--black);
}

.copyright_group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
}

.copyright_links {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 40px;
}

.copyright_links a {
	color: var(--bg);
	font-size: var(--label);

	transition: color .23s ease-out;
}

.copyright_links a:hover {
	color: var(--accent);
}

.copyright_author {
	color: var(--accent);
	font-size: var(--label);
}

.copyright_author a {
	color: var(--accent);

	transition: color .23s ease-out;
}

.copyright_author a:hover {
	color: var(--bg);
}

/* copyright */



/* contacts */

.contacts {
	padding: var(--v_padding) 0;
}

.contacts_group {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.contacts_image {
	position: relative;

	width: calc(50% - 40px);
}

.contacts_image img {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	width: 100%;
	height: 100%;
	box-shadow: 0 20px 30px var(--dark_bg);
}

.contacts_info {
	width: calc(50% - 40px);
}

.contacts_header {

}

.contacts_form {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;

	margin-top: 40px;
}

.contacts_form_row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.contacts_form_col {
	width: calc(50% - 10px);
}

.contacts_form_col.full {
	width: 100%;
}

.contacts_form_label {
	padding-bottom: 12px;
	font-size: var(--label);
}

.contacts_form_err span {
	display: block;

	margin-top: 8px;
	color: var(--red);
	font-size: var(--note);
}

.contacts_form_input {

}

.contacts_form_button {
	display: flex;
}

/* contacts */



/* faqs */

.faqs {
	padding: var(--v_padding) 0;
}

.faqs_group {

}

.faqs_header {
	margin-bottom: 40px;
}

.faqs_blocks {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;

	max-width: 880px;
	margin: 0 auto;
}

.faqs_block {
	position: relative;

	padding: 26px 92px 24px 32px;
	background-color: transparent;
	border: 2px solid var(--black);
	cursor: pointer;

	transition: background-color .23s ease-out, border-color .23s ease-out;
}

.faqs_block.active {
	background-color: var(--dark_bg);
	border-color: var(--dark_bg);
}

.faqs_block_title {
	color: var(--black);
}

.faqs_block.active .faqs_block_title {
	color: var(--accent);
}

.faqs_block_hidden {
	display: none;
}

.faqs_block.active .faqs_block_hidden {
	display: block;
}

.faqs_block_descr {
	padding-top: 12px;
}

.faqs_block_descr p {
	color: var(--black);
	font-size: var(--big_text);
	line-height: 160%;
}

.faqs_block_descr p a {
	color: var(--accent);

	transition: color .23s ease-out;
}

.faqs_block_descr p a:hover {
	color: var(--black);
}

.faqs_close {
	position: absolute;

	top: 20px;
	right: 20px;

	width: 44px;
	height: 44px;
	padding: 14px;
	background-color: transparent;

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

.faqs_block.active .faqs_close {
	background-color: var(--accent);
}

.faqs_close svg {
	width: 100%;
	height: auto;

	transition: transform .23s ease-out;
}

.faqs_block.active .faqs_close svg {
	transform: rotate(45deg);
}

.faqs_close path {
	fill: var(--black);
}

.faqs_block.active .faqs_close path {
	fill: var(--dark_bg);
}

/* faqs */



/* newspaper */

.newspaper {

}

.newspaper_group {

}

.newspaper_header {
	display: inline-block;
	position: relative;

	padding-right: 60px;
}

.newspaper_title {
	line-height: 100%;
}

.newspaper_image {
	position: absolute;
	right: -108px;
	bottom: -46px;

	width: 108px;
}

.newspaper_image img {

}

/* newspaper */



/* jorny */

.jorny {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}

.jorny_info {
	width: 50%;
	padding: var(--v_padding);
}

.jorny_badges {
	display: flex;
	flex-wrap: wrap;
}

.jorny_badge {
	padding: 8px 16px;
	color: var(--white);
	font-size: var(--caps);
	text-transform: uppercase;
	background-color: var(--black);
}

.jorny_title {
	margin-top: 24px;
}

.jorny_subtitle {
	margin-top: 12px;
	color: var(--accent);
}

.jorny_image {
	position: relative;

	width: 50%;
}

.jorny_image img {

}

/* jorny */



/* article */

.article {
	padding: var(--v_padding) 0;
}

.article_group {

}

.article_texter {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;

	max-width: 800px;
	margin: 0 auto;
}

.article_texter p {
	font-size: var(--big_text);
	line-height: 160%;
}

.article_texter p a {
	color: var(--accent);

	transition: color .23s ease-out;
}

.article_texter p a:hover {
	color: var(--black);
}

.article_texter img {

}

.article_texter ul {
	margin: 0;

	list-style: none;
}

.article_texter ul li {
	position: relative;

	margin-top: 8px;
	padding-left: 20px;
	font-size: var(--big_text);
}

.article_texter ul li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;

	width: 8px;
	height: 8px;
	background-color: var(--accent);
	border-radius: 50%;
}

.article_texter ul li a {
	color: var(--accent);

	transition: color .23s ease-out;
}

.article_texter ul li a:hover {
	color: var(--black);
}

.article_texter button {

}

.article_texter h2 {
	font-size: var(--h2);
	line-height: 140%;
}

.article_texter h3 {
	font-size: var(--h3);
	text-transform: uppercase;
	line-height: 140%;
}

.article_texter h4 {
	font-size: var(--h4);
	line-height: 140%;
}

.article_etc {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;

	margin-top: var(--v_padding);
}

.article_etc_block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;

	width: calc(50% - 20px);
}

.article_etc_cover {
	position: relative;

	width: calc(50% - 20px);
}

.article_etc_cover img {

}

.article_etc_badges {
	position: absolute;
	left: -8px;
	bottom: 12px;
}

.article_etc_badge {
	padding: 8px 16px;
	color: var(--white);
	font-size: var(--caps);
	text-transform: uppercase;
	background-color: var(--black);
}

.article_etc_info {
	width: calc(50% - 20px);
}

.article_etc_info_label {
	color: var(--accent);
	font-size: var(--label);
}

.article_etc_info_title {
	overflow: hidden;

	padding-top: 12px;
	color: var(--black);
	font-size: var(--h4);
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.article_etc_info_descr {
	padding-top: 12px;
	color: var(--black);
	line-height: 160%;
}

.article_etc_block.prev .article_etc_info {
	text-align: right;
}

.article_etc_block.next .article_etc_info {
	order: -1;
}

/* article */



/* ███╗  ██╗ ███████╗ ██╗       ██╗ 
// ████╗ ██║ ██╔════╝ ██║  ██╗  ██║ 
// ██╔██╗██║ █████╗   ╚██╗████╗██╔╝ 
// ██║╚████║ ██╔══╝    ████╔═████║  
// ██║ ╚███║ ███████╗  ╚██╔╝ ╚██╔╝  
// ╚═╝  ╚══╝ ╚══════╝   ╚═╝   ╚═╝   */


/* animation */

.animation_top {
	opacity: 0;

	transform: translate3d(0, 40px, 0);
	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_top.active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_left {
	opacity: 0;

	transform: translate3d(-40px, 0, 0);
	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_left.active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_opacity {
	opacity: 0;

	transform: translate3d(40px, 0, 0);
	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_opacity.active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_rotate {
	opacity: 0;

	transform: rotate(-90deg);
	transition: opacity 1.1s ease-in-out, transform 1.1s ease-in-out;
}

.animation_rotate.active {
	opacity: 1;

	transform: rotate(90deg);
}

.animation_rotate_2 {
	opacity: 0;

	transform: rotate(-25deg);
	transition: opacity 1.1s ease-in-out, transform 1.1s ease-in-out;
}

.animation_rotate_2.active {
	opacity: 1;

	transform: rotate(0);
}

.animation_levitate {
	will-change: transform;

	animation: levitate-animation 8s ease-in-out infinite alternate;
}

.animation_orbita {
	will-change: transform;

	animation: orbita-animation 16s ease-in-out infinite alternate;
}

@keyframes arrow-animation {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(20px, 0, 0);
	}
}

@keyframes orbita-animation {
	from {
		transform: rotate(0deg) translateX(40px) rotate(0deg);
	}
	to {
		transform: rotate(360deg) translateX(40px) rotate(-360deg);
	}
}

@keyframes levitate-animation {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(3%, -5%, 0);
	}
	100% {
		transform: translate3d(0, -7%, 0);
	}
}

/* animation */


@media only screen and (max-width: 1280px) {
	/* events */

	.events_calendar_number {
		width: calc(100% - 72px);
	}

	.events_calendar_image {
		width: 60px;
	}

	/* events */
}


@media only screen and (max-width: 1080px) {
	:root {
		--h1: 36px;
		--h2: 27px;
		--h3: 21px;
		--big_text: 19px;
		--v_padding: 40px;
	}

	.bone {
		padding: 0 40px;
	}

	/* overview */

	.overview_shed_german {
		right: 12px;
	}

	/* overview */



	/* about */

	.about_group {
		gap: 40px;
	}

	.about_info {
		width: var(50% - 20px);
	}

	.about_cover {
		width: var(50% - 20px);
	}

	/* about */



	/* newspaper */

	.newspaper_header {
		padding-top: 4px;
	}

	/* newspaper */



	/* contacts */

	.contacts_group {
		gap: 40px;
	}

	.contacts_image {
		width: calc(50% - 20px);
	}

	.contacts_info {
		width: calc(50% - 20px);
	}

	/* contacts */



	/* events */

	.events_calendar_control {
		justify-content: space-between;
		align-items: flex-end;
		gap: 20px;
	}

	.events_calendar_control_date {
		font-size: var(--h2);
	}

	.events_calendar_blocks {
		gap: 2px;
	}

	.events_calendar_block {
		justify-content: center;
		align-items: stretch;
		gap: 8px;

		width: calc(100% / 7 - 12px / 7);
		padding: 12px 6px 6px;
	}

	.events_calendar_number {
		width: 100%;
		text-align: center;
	}

	.events_calendar_image {
		width: 100%;
		max-width: 80px;
	}

	/* events */
}

@media only screen and (max-width: 980px) {
	:root {
		--h1: 32px;
		--h3: 19px;
		--h4: 16px;
		--big_text: 18px;
		--label: 15px;
		--text: 14px;
	}

	.bone {
		max-width: 648px;
		padding: 0 24px;
	}

	/* header */

	.header_funcs {
		display: none;
	}

	.header_right .button.outline {
		display: none;
	}

	/* header */



	/* general */

	.general.shadow:before {
		height: 120px;
	}

	/* general */



	/* overview */

	.overview_info {
		width: 100%;
		padding-right: 0;
	}

	.overview_group {
		padding-bottom: 400px;
	}

	.overview_contacts_icon {
		width: 40px;
		height: 40px;
		padding: 8px;
	}

	.overview_map {
		top: auto;
		left: 0;

		height: 400px;
	}

	.overview_shed_german {
		top: -135px;

		width: 80px;
	}

	/* overview */



	/* bar */

	.bar_icons {
		display: flex;
	}

	/* bar */



	/* about */

	.about_info {
		width: 100%;
	}

	.about_edges {
		gap: 12px;
	}

	.about_cover {
		width: 100%;
	}

	.about_review_content {
		justify-content: center;
	}

	/* about */



	/* photos */

	.photos_images.full {
		display: block;

		margin: 0 -10px;
	}

	.photos_images.full .photos_image.ph_2,
	.photos_images.full .photos_image.ph_3 {
		width: 326px !important;
		padding: 0 10px;
	}

	.photos_images.list .photos_image.ph_2,
	.photos_images.list .photos_image.ph_3 {
		width: 100%;
		height: auto;
	}

	/* photos */



	/* events */

	.events_slide {
		padding: 0 10px;
	}

	.events_block {
		width: 326px;
	}

	.events_blocks .events_block {
		width: 100%;
	}

	/* events */



	/* corporative */

	.corporative_group {
		padding-bottom: 200px;
	}

	.corporative_info {
		width: 100%;
		padding-left: 24px;
		print-color-adjust: 24px;
	}

	.corporative_image {
		top: auto;
		left: 0;

		height: 200px;
	}

	/* corporative */



	/* footer */

	.footer_group {
		padding: 40px 0;
	}

	.footer_blocks {
		gap: 24px;
	}

	.footer_block:first-child {
		width: 100%;
	}

	.footer_logo {
		padding-bottom: 20px;
	}

	/* footer */



	/* copyright */

	.copyright {
		padding: 40px 0;
	}

	/* copyright */



	/* contacts */

	.contacts_image {
		order: 1;

		width: 100%;
	}

	.contacts_image img {
		position: static;
	}

	.contacts_info {
		width: 100%;
	}

	/* contacts */



	/* faqs */

	.faqs_block {
		padding: 16px 60px 16px 16px;
	}

	.faqs_close {
		top: -2px;
		right: -2px;
	}

	/* faqs */



	/* jorny */

	.jorny_info {
		width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}

	.jorny_image {
		order: -1;

		width: 100%;
	}

	/* jorny */



	/* article */

	.article_etc_block {
		align-items: stretch;

		width: 100%;
	}

	.article_etc_cover img {
		object-fit: cover;

		height: 100%;
	}

	.article_texter {
		gap: 20px;
	}

	.article_texter ul li::before {
		top: 5px;
	}

	/* article */
}

@media only screen and (max-width: 680px) {
	/* header */

	.header_logo {
		top: 21px;

		width: 120px;
	}

	.header_right {
		padding-right: 0;
	}

	.header_buttons {
		display: none;
	}

	.header_book {
		display: block;
	}

	/* header */



	/* general */

	.general_slide img:nth-child(1) {
		display: none;
	}

	.general_slide img:nth-child(2) {
		display: block;
	}

	/* general */



	/* contacts */

	.contacts_form_col {
		width: 100%;
	}

	/* contacts */



	/* events */

	.events_calendar_block.padding {
		min-height: 80px;
	}

	/* events */



	/* overview */

	.overview_contacts_block {
		width: 100%;
	}

	/* overview */
}