/* Development - LLC "MephiPro" https://mephi.pro/*/
:root {
	--red-color: #c83723;
	--red-color_op: rgba(200, 55, 35, 0.8);
	--dark-color: #333333;
	--dark-color_bg: #5c5c5c;
	--dark-color_op: rgba(51, 51, 51, 0.8);
	--grey-color: #aeacac;
	--substrate-color: #f7f7f7;
	--substrate-color_op: rgba(247, 247, 247, 0.8);
	--light-color: #ffffff;
	--popup-bg: rgba(248, 243, 243, 0.8);
	--main-font: 'Proxima Nova Cn Rg', sans-serif;
	--title-font: 'URW Futura', sans-serif;
	--t_1: rgb(39, 150, 39);
	--t_2: rgb(189, 189, 5);
	--t_3: rgb(165, 161, 161);
	--t_4: rgb(202, 21, 21);
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

::before, ::after {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	font-family: var(--main-font);
	color: var(--dark-color);
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	background: var(--light-color);
	margin-top: 50px;
}

body.fixed {
	overflow: hidden;
}

.screen {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--title-font);
	font-weight: 600;
	word-break: break-word;
	& span:not(.text) {
		color: var(--red-color);
	}
}

h1 {
	font-size: 60px;
	line-height: 60px;
	margin-bottom: 60px;
}

h2 {
	font-size: 50px;
	line-height: 55px;
	margin-bottom: 50px;
}

h3 {
	font-size: 45px;
	line-height: 50px;
	margin-bottom: 40px;
	position: relative;
	padding-right: 110px;
	& .text {
		position: relative;
		background: var(--light-color);
		z-index: 2;
		display: inline;
		padding-right: 4px;
	}
	&::before {
		position: absolute;
		content: "";
		width: 100%;
		right: 0;
		bottom: 15px;
		height: 2px;
		border-bottom: 2px solid var(--grey-color);
		z-index: 1;
	}
	&::after {
		position: absolute;
		content: "";
		width: 90px;
		height: 45px;
		right: 0;
		bottom: 15px;
		background: url(../icons/book.svg) center / contain no-repeat;
	}
}

h4 {
	font-size: 30px;
	line-height: 35px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

p:not(:last-child) {
	margin-bottom: 15px;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}

.button, button {
	display: inline-block;
	transition: all 0.3s ease;
	text-align: center;
	border: 2px solid var(--grey-color);
	outline: none;
	cursor: pointer;
	padding: 13px 20px 12px 20px;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	background: none;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	&:not(.slick-arrow)::after {
		position: absolute;
		content: "";
		width: 50px;
		height: 50px;
		background: var(--grey-color);
		right: -50px;
        top: -50px;
		transform: rotate(45deg);
		transition: all 0.3s ease;
		z-index: 1;
	}
	&.file {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		& svg {
			width: 20px;
            height: 20px;
            margin-right: 10px;
			& path {
				fill: var(--dark-color);
			}
		}
	}
	&.big {
		font-size: 18px;
		line-height: 20px;
	}
	&.red_button {
		border-color: var(--red-color);
		color: var(--red-color);
		&:not(.slick-arrow)::after {
			background: var(--red-color);
		}
	}
	&:disabled {
		cursor: default;
	}
}

.link {
	transition: all 0.3s ease;
}

.wrap {
	max-width: 1420px;
	padding: 0 70px;
	margin: 0 auto;
}

.content {
	margin-bottom: 150px;
}

.calendar {
	& nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-bottom: 5px;
		border-bottom: 1px solid var(--grey-color);
		margin-bottom: 10px;
		&.year_nav {
			& .month {
				display: none;
			}
		}
	}
	& .arrow {
		cursor: pointer;
		width: 30px;
		height: 30px;
		&.prev {
			background: url(../icons/arrow_l.svg) center / contain no-repeat;
		}
		&.next {
			background: url(../icons/arrow_r.svg) center / contain no-repeat;
		}
	}
	& .center_nav {
		display: flex;
		align-items: center;
		cursor: pointer;
		font-family: var(--title-font);
		font-size: 25px;
		line-height: 30px;
	}
	& .year {
		padding-left: 5px;
	}
	& .days-names {
		display: flex;
		margin-right: -2px;
		margin-bottom: 10px;
		text-align: center;
		font-weight: 600;
		& .item_day {
			width: calc((100% / 7) - 2px);
			margin-right: 2px;
		}
		&.hide {
			opacity: 0;
		}
	}
	& .days {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -2px -2px 0;
		text-align: center;
		& .day {
			width: calc((100% / 7) - 2px);
			height: 45px;
			margin: 0 2px 2px 0;
			align-content: center;
			border-radius: 4px;
			overflow: hidden;
			border: 1px solid transparent;
			&.prev_month {
				color: var(--grey-color);
				cursor: pointer;
			}
			&.next_month {
				color: var(--grey-color);
				cursor: pointer;
			}
			& a {
				display: block;
				background: var(--red-color);
				height: 100%;
				align-content: center;
				color: var(--light-color);
				transition: all 0.3s ease;
			}
			&.active {
				border-color: var(--grey-color);
				& a {
					background: none;
					color: var(--dark-color);
				}
			}
		}
	}
	& .month_nav {
		display: none;
		flex-wrap: wrap;
		margin: 0 -2px -2px 0;
		text-align: center;
		& .item_month {
			width: calc((100% / 4) - 2px);
			cursor: pointer;
			height: 45px;
			margin: 0 2px 2px 0;
			align-content: center;
			border-radius: 4px;
			overflow: hidden;
			border: 1px solid var(--grey-color);
			transition: all 0.3s ease;
		}
	}
}

input[type="text"], textarea {
	border: 1px solid var(--grey-color);
	outline: none;
	width: 100%;
	font-family: var(--main-font);
	font-size: 14px;
	line-height: 20px;
	color: var(--dark-color);
	background: none;
	padding: 10px;
	&.error {
		border-color: var(--red-color);
	}
}

textarea {
	resize: none;
	height: 120px;
}

input[type="checkbox"] {
	display: none;
}

header {
	background: var(--substrate-color);
	padding: 20px 0;
	top: -100px;
	transition: top 0.5s ease;
	& .wrap {
		position: relative;
	}
	& .top_menu {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 18px;
		line-height: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid var(--grey-color);
		& nav {
			display: flex;
			align-items: center;
			width: calc(100% - 630px);
			justify-content: flex-end;
			& a {
				display: block;
				&:not(:last-child) {
					margin-right: 15px;
				}
			}
			& .bvi-open {
				width: 30px;
				height: 30px;
				background: url(../icons/glasses.svg) center / contain no-repeat;
				cursor: pointer;
				transition: all 0.3s ease;
			}
			& .search_btn {
				width: 28px;
				height: 28px;
				background: url(../icons/search.svg) center / contain no-repeat;
				cursor: pointer;
				margin-right: 30px;
				transition: all 0.3s ease;
			}
			& .search_wrap {
				position: absolute;
				right: 70px;
				top: 0;
				width: calc(100% - 140px);
				background: var(--light-color);
				padding: 10px;
				display: none;
				z-index: 1;
				& .flex {
					display: flex;
					align-items: center;
				}
				& .wrap_input {
					width: calc(100% - 210px);
					margin-right: 10px;
					padding-top: 0;
					margin-bottom: 0;
				}
				& .search_start {
					padding: 10px 20px;
					border-width: 1px;
					width: 200px;
				}
			}
			& .mobil_menu {
				display: none;
			}
		}
	}
	.wrap_logo {
		display: flex;
		align-items: center;
		width: 610px;
		& .text_logo {
			display: block;
			width: 370px;
		}
	}
	& .logo {
		display: block;
		width: 220px;
		height: 45px;
		background: url(../img/logo.svg) center / contain no-repeat;
		margin-right: 20px;
	}
	& .main_menu {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 20px;
		line-height: 25px;
		& nav {
			display: flex;
			align-items: center;
			& a {
				display: block;
				position: relative;
				&:not(:last-child) {
					margin-right: 15px;
				}
				&::after {
					position: absolute;
					content: "";
					width: 30px;
					height: 4px;
					border-bottom: 4px solid var(--red-color);
					opacity: 0;
					visibility: hidden;
					transition: opacity 0.3s ease;
					left: 0;
					bottom: 0;
				}
				&.active::after {
					opacity: 1;
					visibility: visible;
				}
			}
		}
		& .mobile_fixed_menu {
			display: none;
		}
		& .close {
			display: none;
		}
	}
	& .small_nav {
		display: flex;
		align-items: center;
		& a {
			display: block;
			&:not(:last-child) {
				margin-right: 15px;
			}
		}
	}
	&.top_fixed {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 5;
		background: var(--substrate-color);
		box-shadow: 0 0 10px 0 var(--dark-color);
		& .top_menu {
			margin-bottom: 0;
			padding-bottom: 0;
			border-bottom: 0;
			& nav {
				& a {
					display: none;
				}
				& .search_btn {
					position: absolute;
					bottom: 0;
					right: 100px;
				}
				& .bvi-open {
					position: absolute;
					bottom: 0;
					right: 70px;
				}
				& .search_wrap {
					top: -20px;
				}
			}
		}
		& .wrap_logo {
			display: none;
		}
		& .small_nav {
			display: none;
		}
	}
}

.close {
	position: absolute;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: var(--light-color);
	right: 0;
	top: 100%;
	&::after, &::before {
		position: absolute;
		content: "";
		width: 20px;
		height: 1px;
		left: 50%;
		top: 50%;
		border-bottom: 1px solid var(--grey-color);
		transition: all 0.3s ease;
	}
	&::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	&::before {
		transform: translate(-50%, -50%) rotate(45deg);
	}
}

.soc_nav {
	display: flex;
	align-items: center;
	& a {
		display: block;
		width: 35px;
		height: 35px;
		border: 1px solid var(--grey-color);
		overflow: hidden;
		position: relative;
		&:not(:last-child) {
			margin-right: 15px;
		}
		&::after {
			position: absolute;
			content: "";
			width: 100%;
			height: 100%;
			background: var(--grey-color);
			left: 100%;
			top: -100%;
			transform: rotate(45deg);
			transition: all 0.3s ease;
			z-index: 1;
		}
		&::before {
			position: absolute;
			content: "";
			width: 20px;
			height: 20px;
			z-index: 2;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
			transition: all 0.5s ease 0s;
		}
		&.ok::before {
			background: url(../icons/ok.svg) center / contain no-repeat;
		}
		&.vk::before {
			background: url(../icons/vk.svg) center / contain no-repeat;
		}
		&.telegram::before {
			background: url(../icons/telegram.svg) center / contain no-repeat;
		}
		&.max::before {
			background: url(../icons/max.svg) center / contain no-repeat;
		}
	}
}

.wrap_main_banner {
	height: calc(100vh - 205.8px);
	max-height: 600px;
	min-height: 480px;
	background: var(--substrate-color);
	margin-bottom: 150px;
	& .wrap {
		height: 100%;
	}
	& .main_banner {
		border: 4px solid var(--grey-color);
		height: calc(100% - 80px);
		position: relative;
		margin-bottom: 20px;
		& .item_banner {
			padding: 20px;
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			display: block;
			overflow: hidden;
			&.flex {
				display: flex;
				align-items: center;
				justify-content: flex-end;
				& .media {
					width: 60%;
					position: relative;
					overflow: hidden;
					&::before {
						position: absolute;
						content: "";
						width: 100vw;
						height: 240px;
						background: var(--light-color);
						z-index: 2;
						left: -50vw;
						top: 0;
						transform: rotate(-70deg);
						border-bottom: 4px solid var(--red-color);
					}
				}
				& .wrap_text {
					width: 40%;
					position: absolute;
					left: 20px;
					top: 20px;
					height: calc(100% - 40px);
					background: var(--light-color);
					padding: 30px;
					align-content: center;
					font-size: 24px;
					line-height: 28px;
					& .text {
						padding-left: 10px;
						border-left: 4px solid var(--red-color);
					}
				}
			}
			&:not(:first-child) {
				display: none;
				&.flex {
					display: none;
				}
			}
		}
		& .media {
			height: 100%;
			width: 100%;
			& img {
				display: block;
				object-fit: cover;
			}
			& video {
				width: 100%;
				height: 100%;
				object-fit: cover;
				display: block;
			}
		}
		& .wrap_text {
			padding: 0 30px;
		}
	}
	& .nav_main_banner {
		display: none;
		align-items: center;
		justify-content: space-between;
	}
	& .arrow {
		cursor: pointer;
		width: 30px;
		height: 30px;
		transition: transform 0.3s ease;
		&.prev {
			background: url(../icons/arrow_l.svg) center / contain no-repeat;
		}
		&.next {
			background: url(../icons/arrow_r.svg) center / contain no-repeat;
		}
	}
	& .dots {
		display: flex;
		align-items: center;
		max-width: calc(100% - 100px);
		margin-right: -10px;
		& .dot {
			cursor: pointer;
			width: 40px;
			height: 8px;
			margin-right: 10px;
			position: relative;
			background: var(--grey-color);
			& span {
				position: absolute;
				left: 0;
				top: 0;
				height: 100%;
				width: 0;
				background: var(--red-color);
				transition: opacity 0.3s;
				opacity: 0;
			}
			&.active {
				& span {
					opacity: 1;
				}
			}
		}
	}
}

.promo_section {
	font-family: var(--title-font);
	font-size: 40px;
	line-height: 45px;
	text-align: center;
	padding-bottom: 50px;
	margin-bottom: 150px;
	position: relative;
	&::after {
		position: absolute;
		content: "";
		width: 300px;
		height: 2px;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		border-bottom: 2px solid var(--red-color);
	}
}

.catalog_item {
	display: flex;
	justify-content: flex-end;
	margin-right: -5px;
	counter-reset: numbers;
	position: relative;
	margin-bottom: 40px;
	&::before {
		position: absolute;
		content: "";
		width: calc(100vw - 70px);
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
		height: 250px;
		background: var(--dark-color_op);
	}
	& .item {
		display: block;
		cursor: pointer;
		width: calc((100% / 10) - 5px);
		height: 400px;
		position: relative;
		margin-right: 5px;
		border: 8px solid var(--grey-color);
		border-radius: 2px;
		padding-bottom: 60px;
		background: var(--light-color);
		user-select: none;
		& span {
			writing-mode: tb-rl;
   			transform: rotate(180deg);
			display: block;
			padding: 10px;
			background: var(--substrate-color_op);
			margin: 0 auto;
			font-family: var(--title-font);
			font-size: 18px;
			line-height: 20px;
			font-weight: 600;
			min-width: 60px;
			height: 100%;
			align-content: center;
			transition: background 0.3s ease;
		}
		& img {
			position: absolute;
			left: 0;
			top: 0;
			object-fit: cover;
			opacity: 0.5;
		}
		&:first-child {
			transform: rotate(10deg);
			margin-right: 33px;
			height: 390px;
		}
		&::after {
			position: absolute;
			counter-increment: numbers;
    		content: counter(numbers, upper-roman);
			width: calc(100% + 16px);
			height: 40px;
			background: var(--dark-color);
			color: var(--light-color);
			z-index: 1;
			left: -8px;
			bottom: 8px;
			padding: 8px;
			text-align: center;
			transition: color 0.3s ease;
		}
		&::before {
			position: absolute;
			content: "";
			left: 0;
			bottom: 0;
			width: 100%;
			height: 8px;
			border-bottom: 8px solid var(--red-color);
			z-index: 1;
			opacity: 0;
			visibility: hidden;
			transition: all 0.3s ease;
		}
		&.active {
			&::before {
				opacity: 1;
				visibility: visible;
			}
		}
	}
}

.map_wrap {
	& .title {
		font-family: var(--title-font);
		font-weight: 600;
		margin-bottom: 10px;
		hyphens: auto;
	}
	& .info_section {
		margin-bottom: 30px;
		& a {
			display: block;
			margin-bottom: 5px;
			padding-left: 30px;
			transition: all 0.3s ease;
			text-decoration: underline;
			text-decoration-color: transparent;
		}
		& .address {
			margin-bottom: 5px;
			padding-left: 30px;
			background: url(../icons/map_icon.svg) left 0 center / contain no-repeat;
			background-size: 20px 20px;
		}
		& .phone {
			background: url(../icons/phone.svg) left 0 center / contain no-repeat;
			background-size: 20px 20px;
		}
		& .web {
			background: url(../icons/web.svg) left 0 center / contain no-repeat;
			background-size: 20px 20px;
		}
		& .vk {
			background: url(../icons/vk.svg) left 0 center / contain no-repeat;
			background-size: 20px 20px;
		}
		& .mail {
			background: url(../icons/mail.svg) left 0 center / contain no-repeat;
			background-size: 20px 20px;
		}
		& .telegram {
			background: url(../icons/telegram.svg) left 0 center / contain no-repeat;
			background-size: 20px 20px;
		}
		& .ok {
			background: url(../icons/ok.svg) left 0 center / contain no-repeat;
			background-size: 20px 20px;
		}
		& .max {
			background: url(../icons/max.svg) left 0 center / contain no-repeat;
			background-size: 20px 20px;
		}
	}
	& .map {
		padding: 20px;
		border: 4px solid var(--grey-color);
		height: 400px;
	}
}

.news_list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
	& .item_new {
		width: calc((100% / 3) - 20px);
		margin-right: 20px;
		padding-right: 20px;
		margin-bottom: 20px;
		position: relative;
		display: block;
		&::after {
			position: absolute;
			content: "";
			width: 4px;
			height: 80%;
			right: -2px;
			top: 50%;
			transform: translateY(-50%);
			border-right: 4px solid var(--grey-color);
		}
	}
	& .wrap_image {
		position: relative;
		margin-bottom: 20px;
		border-radius: 0 50px 0 50px;
		overflow: hidden;
		&::after {
			display: block;
			content: "";
			padding-top: calc(100% - 100px);
		}
	}
	& .label {
		margin-bottom: 10px;
		padding-left: 25px;
		background: url(../icons/bookmark.svg) left 0 center / contain no-repeat;
		background-size: 20px 20px;
	}
	& .label_time {
		padding-left: 20px;
		font-size: 16px;
		line-height: 20px;
		background: url(../icons/time_icon.svg) left 0 center / contain no-repeat;
		background-size: 15px 15px;
		opacity: 0.8;
	}
	& .progressive {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
		height: 100%;
		z-index: 1;
		overflow: hidden;
		transition: all 0.3s ease;
		& img {
			display: block;
			height: 100%;
			object-fit: cover;
		}
	}
	& .date_ev {
		margin-bottom: 5px;
		& span {
			color: var(--red-color);
		}
	}
	& .title {
		font-family: var(--title-font);
		font-weight: 600;
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 5px;
		hyphens: auto;
	}
	& .intro {
		font-style: italic;
		color: var(--grey-color);
		margin-bottom: 10px;
	}
	&:not(.main) {
		& .item_new {
			margin-bottom: 60px;
		}
	}
}

.buttons_footer {
	display: flex;
	justify-content: flex-end;
}

.go_to {
	display: block;
	padding-right: 45px;
	font-size: 30px;
	line-height: 35px;
	position: relative;
	transition: color 0.3s ease;
	background: url(../icons/pen.svg) right 0 center / contain no-repeat;
	background-size: 40px 40px;
	padding: 2px 45px 2px 10px;
	&::before {
		position: absolute;
		content: "";
		width: 1px;
		height: 10px;
		bottom: 0;
		left: 0;
		border-left: 1px solid var(--dark-color);
		transition: all 0.3s ease;
	}
	&::after {
		position: absolute;
		content: "";
		width: 10px;
		height: 1px;
		bottom: 0;
		left: 0;
		border-bottom: 1px solid var(--dark-color);
		transition: all 0.3s ease;
	}
}

.wrap_link_slider {
	position: relative;
	margin-bottom: 80px;
	&::before {
		position: absolute;
		z-index: -1;
		content: "";
		width: 100%;
		height: 80px;
		background: var(--dark-color_op);
		left: 0;
		top: calc(50% - 30px);
		transform: translateY(-50%);
	}
}

.link_slider {	
	padding-bottom: 60px;
	& .progressive {
		display: block;
		border: 4px solid var(--grey-color);
		background: var(--light-color);
		margin-right: 20px;
		height: 160px;
		z-index: 2;
		& img {
			height: 100%;
		}
	}
	& .slick-arrow {
		font-size: 0;
		line-height: 0;
		position: absolute;
		bottom: 0;
		border: 0;
		outline: none;
		width: 40px;
		height: 40px;
		z-index: 3;
		&.slick-next {
			right: 70px;
			background: var(--light-color) url(../icons/arrow_r.svg) center / contain no-repeat;
		}
		&.slick-prev {
			right: 160px;
			background: var(--light-color) url(../icons/arrow_l.svg) center / contain no-repeat;
		}
	}
	& .slick-list {
		padding-left: 15px;
	}
}

#js-show-iframe-wrapper {
	padding: 30px;
	border: 4px solid var(--grey-color);
	height: 100%;
}

footer {
	background: var(--substrate-color);
	padding: 50px 0;
	border-top: 4px solid var(--grey-color);
	& .footer_menu {
		display: flex;
		justify-content: space-between;
		margin-bottom: 30px;
	}
	& .col {
		font-size: 18px;
		line-height: 20px;
		padding-right: 40px;
		& a {
			display: block;
			&:not(:last-child) {
				margin-bottom: 5px;
			}
			&:nth-last-child(2) {
				margin-bottom: 30px;
			}
			&.logo {
				width: 200px;
				height: 40px;
				background: url(../img/logo.svg) center / contain no-repeat;
				margin-bottom: 20px;
			}
		}
	}
	& .soc_nav {
		margin-bottom: 20px;
		& a:not(:last-child) {
			margin-bottom: 0;
		}
	}
	& nav {
		&:nth-child(2) {
			padding-right: 40px;
			column-count: 3;
			column-gap: 100px;
		}
		& a {
			display: block;
			text-transform: uppercase;
			&:not(:last-child) {
				margin-bottom: 10px;
			}
		}
	}
	& .footnote_footer {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 14px;
		line-height: 18px;
		& .copyright {
			margin-right: 40px;
		}
	}
}

.fixed_buttons {
	text-align: right;
	& .scroll_top {
		position: fixed;
		width: 50px;
		height: 50px;
		cursor: pointer;
		background: var(--light-color);
		bottom: 50px;
		display: inline;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 4;
		margin-left: 10px;
		border: 1px solid var(--grey-color);
		&::after {
			display: block;
			content: "";
			width: 100%;
			height: 100%;
			transition: all 0.3s ease;
			background: url(../icons/arrow_up.svg) center / contain no-repeat;
			background-size: 30px 30px;
		}
		&.active {
			opacity: 1;
    		visibility: visible;
		}
	}
}

.gallery_popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--popup-bg);
	z-index: 5;
	backdrop-filter: blur(5px);
	padding: 15px 0;
	display: none;
	& .wrap_slider {
		position: relative;
		margin: 0 auto;
		height: 100%;
	}
	& .close {
		top: 15px;
		right: 15px;
		z-index: 1;
		border: 1px solid var(--grey-color);
		&::before, &::after {
			border-color: var(--dark-color);
		}
	}
	& .slider {
		height: calc(100% - 110px);
		overflow: hidden;
		padding: 0 80px;
		position: relative;
		& img {
			display: none;
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
			width: calc(100% - 160px);
		}
		&:last-child {
			height: 100%;
		}
	}
	& .nav_slider {
		overflow: hidden;
		display: flex;
		align-items: center;
		overflow-x: auto;
		max-width: 100%;
		padding: 10px 15px;
		& .item_nav {
			width: 140px;
			min-width: 140px;
			height: 80px;
			margin-right: 5px;
			cursor: pointer;
			padding: 5px;
			border: 1px solid transparent;
			& img {
				display: block;
				object-fit: cover;
			}
			&.active {
				border: 1px solid var(--dark-color);
			}
		}
	}
	& .arrow {
		position: absolute;
		top: calc(50% - 55px);
		cursor: pointer;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		z-index: 1;
		transition: all 0.3s ease;
		display: none;
		border: 1px solid var(--grey-color);
		background: var(--light-color);
		&::after {
			position: absolute;
			content: "";
			width: 100%;
			height: 100%;
			left: 0;
			top: 0;
			transition: all 0.3s ease;
		}
		&.prev {
			left: 40px;
			&::after {
				background: url(../icons/arrow_l.svg) center / contain no-repeat;
				background-size: 30px 30px;
			}
		}
		&.next {
			right: 40px;
			&::after {
				background: url(../icons/arrow_r.svg) center / contain no-repeat;
				background-size: 30px 30px;
			}
		}
	}
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 30px 0 50px 0;
	& li {
		margin: 0 10px 10px 0;
		&:first-child {
			padding-right: 20px;
            position: relative;
			margin-right: 20px;
			&::before {
				position: absolute;
                content: "";
                width: 1px;
                height: 20px;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                border-right: 1px solid var(--dark-color);
			}
		}
	}
	& a:not(.home_page) {
		display: block;
		padding-right: 30px;
		background: url(../icons/arrow_r.svg) right 0 center / contain no-repeat;
		background-size: 20px 20px;
		transition: color 0.3s ease;
	}
	& .home_page {
		display: block;
		width: 30px;
		height: 30px;
		background: url(../icons/home.svg) center / contain no-repeat;
		transition: transform 0.3s ease;
	}
	& span {
		display: block;
	}
}
ul.irregular {
	& li {
		list-style: none;
	}
}

ul:not(.irregular) {
	padding-left: 20px;
	& li:not(:last-child) {
		margin-bottom: 10px;
	}
	&:not(:last-child) {
		margin-bottom: 20px;
	}
}

ol:not(.irregular) {
	padding-left: 20px;
	& li:not(:last-child) {
		margin-bottom: 10px;
	}
	&:not(:last-child) {
		margin-bottom: 20px;
	}
}

.filter {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
	& a {
		display: block;
		padding: 9px 20px 10px 20px;
		border: 3px solid var(--grey-color);
		margin: 0 10px 10px 0;
		transition: all 0.3s ease;
		border-radius: 2px;
		&.active {
			border-color: var(--red-color);
			text-shadow: 0 0 0.5px var(--dark-color);
		}
	}
}

.inner_page .filter a {
	text-decoration: none;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 20px;
	line-height: 24px;
	& .arrow {
		width: 36px;
		height: 36px;
		border: 1px solid var(--grey-color);
		position: relative;
		&::after {
			position: absolute;
			content: "";
			width: 100%;
			height: 100%;
			left: 0;
			top: 0;
			transition: transform 0.3s ease;
		}
		&.prev {
			margin-right: 20px;
			&::after {
				background: url(../icons/arrow_l.svg) center / contain no-repeat;
				background-size: 20px 20px;
			}
		}
		&.next {
			&::after {
				background: url(../icons/arrow_r.svg) center / contain no-repeat;
				background-size: 20px 20px;
			}
		}
	}
	& .to_page {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 5px;
		border: 1px solid transparent;
		border-bottom: 1px solid var(--grey-color);
		min-width: 36px;
		min-height: 36px;
		margin-right: 15px;
		transition: all 0.3s ease;
		text-decoration: none;
		&.active {
			border-color: var(--dark-color);
		}
	}
}

.page_banner {
	margin-bottom: 100px;
	& .text_wrap {
		border-bottom: 1px solid var(--grey-color);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding-bottom: 20px;
		& h1 {
			font-size: 45px;
			line-height: 50px;
			margin-bottom: 30px;
		}
		& .text {
			padding-bottom: 40px;
		}
		& .date_ev {
			padding: 5px 15px;
			border: 1px solid var(--dark-color);
			display: inline-block;
			margin-bottom: 20px;
			border-radius: 2px;
		}
		& .label {
			margin-bottom: 5px;
			font-style: italic;
			padding-left: 10px;
			position: relative;
			&::before {
				position: absolute;
				content: "";
				left: 0;
				top: 50%;
				transform: translateY(-50%) rotate(10deg);
				width: 1px;
				height: 80%;
				border-left: 1px solid var(--dark-color);
			}
			&::after {
				position: absolute;
				content: "";
				width: 25px;
				height: 1px;
				border-bottom: 1px solid var(--dark-color);
				left: 0;
				bottom: 0;
			}
		}
	}
	&.flex {
		display: flex;
		justify-content: space-between;
		min-height: 400px;
		& .image_wrap {
			overflow: hidden;
			position: relative;
			width: calc(50% - 20px);
			& img {
				display: block;
				object-fit: cover;
				position: absolute;
				left: 0;
				top: 0;
				z-index: 1;
			}
			&::before {
				position: absolute;
				content: "";
				width: 100vw;
				height: 160px;
				background: var(--light-color);
				z-index: 2;
				left: -50vw;
				top: 0;
				transform: rotate(-55deg);
			}
			&::after {
				position: absolute;
				content: "";
				width: 100vw;
				height: 160px;
				background: var(--light-color);
				z-index: 2;
				right: -50vw;
				bottom: 0;
				transform: rotate(-55deg);
			}
		}
		& .text_wrap {
			width: calc(50% - 20px);
		}
	}
	& .event_info {
		& .item_info:not(:last-child) {
			margin-bottom: 10px;
		}
		& .title {
			margin-bottom: 5px;
			font-weight: 600;
		}
		& .vol {
			color: var(--dark-color_bg);
		}
	}
}

.bottom_flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	line-height: 20px;
	& .label_time {
		padding-left: 30px;
		background: url(../icons/time_icon.svg) left 0 center / contain no-repeat;
		background-size: 18px 18px;
	}
}

.share {
	position: relative;
	& .name {
		cursor: pointer;
		position: relative;
		padding-left: 30px;
		&::before {
			position: absolute;
			content: "";
			width: 20px;
			height: 20px;
			left: 0;
			top: 50%;
			transform: translateY(-50%);
			background: url(../icons/share.svg) left 0 center / contain no-repeat;
			transition: transform 0.3s ease;
		}
	}
	& .list {
		position: absolute;
        top: 100%;
        right: 0;
        background: var(--light-color);
        z-index: 1;
        font-size: 16px;
        line-height: 18px;
        font-weight: 600;
        padding-top: 20px;
        display: none;
	}
	& .icons {
		display: flex;
        flex-wrap: nowrap;
        padding: 10px;
        box-shadow: 0 0 2px 0 var(--grey-color);
		& a {
			display: block;
            width: 40px;
            height: 40px;
            border: 1px solid var(--grey-color);
            margin-right: 10px;
			&.telegram {
				background: url(../icons/telegram.svg) center / contain no-repeat;
				background-size: 20px 20px;
			}
			&.vk {
				background: url(../icons/vk.svg) center / contain no-repeat;
				background-size: 20px 20px;
			}
			&.ok {
				background: url(../icons/ok.svg) center / contain no-repeat;
				background-size: 20px 20px;
			}
		}
		& .copy_link {
			cursor: pointer;
			width: 40px;
            height: 40px;
            border: 1px solid var(--grey-color);
			background: url(../icons/copy.svg) center / contain no-repeat;
			background-size: 20px 20px;
		}
	}
}

.inner_page {
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 150px;
	margin-left: -20px;
	margin-right: -20px;
	padding: 0 20px 20px 20px;
	border-bottom: 4px solid var(--grey-color);
	position: relative;
	&:not(:last-child) {
		margin-bottom: 50px;
	}
	&::before {
		position: absolute;
		content: "";
		width: 4px;
		height: 40px;
		border-left: 4px solid var(--grey-color);
		left: 0;
		bottom: 0;
	}
	&::after {
		position: absolute;
		content: "";
		width: 4px;
		height: 40px;
		border-left: 4px solid var(--grey-color);
		right: 0;
		bottom: 0;
	}
	& .inner_image {
		height: 350px;
		overflow: hidden;
		margin-bottom: 60px;
		position: relative;
		& img {
			width: 100%;
			height: 100%;
			display: block;
			object-fit: cover;
		}
		&::before {
			position: absolute;
			content: "";
			width: 100vw;
			height: 160px;
			background: var(--light-color);
			z-index: 2;
			left: -50vw;
			top: 0;
			transform: rotate(-55deg);
		}
		&::after {
			position: absolute;
			content: "";
			width: 100vw;
			height: 160px;
			background: var(--light-color);
			z-index: 2;
			right: -50vw;
			bottom: 0;
			transform: rotate(-55deg);
		}
	}
	& a {
		text-decoration: underline;
	}
}

.inner_content {
	margin-bottom: 80px;
	& img {
		width: unset;
		height: unset;
		max-width: 100%;
		max-height: 100%;
	}
	&:last-child {
		margin-bottom: 40px;
	}
}

.flex_slider {
	display: flex;
    overflow: hidden;
    position: relative;
	margin-right: -20px;
	& .progressive {
		cursor: pointer;
        margin-right: 20px;
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        height: 180px;
        position: relative;
		& img {
			object-fit: cover;
			height: 100%;
		}
		& .more_items {
			position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            right: 0;
            z-index: 1;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 20px;
            background: var(--dark-color_op);
            color: var(--light-color);
		}
	}
	& .zoom {
		&::before {
			position: absolute;
			content: "";
			width: 30px;
			height: 30px;
			left: 20px;
			bottom: 20px;
			background: url(../icons/zoom.svg) center / contain no-repeat;
			z-index: 2;
			opacity: 0;
			visibility: hidden;
			transition: opacity 0.8s ease;
		}
	}
}

.video_wrap {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
	& .video {
		position: relative;
		width: calc(50% - 20px);
		height: 300px;
		margin: 0 20px 20px 0;
		padding: 10px 0 0 10px;
		&::before {
			position: absolute;
			content: "";
			width: 100%;
			height: 100%;
			border: 4px solid var(--grey-color);
			left: 0;
			top: 0;
			z-index: -1;
		}
	}
	&  .preview {
		position: absolute;
		width: calc(100% - 20px);
		height: 100%;
    	z-index: 2;
		left: 10px;
		top: 10px;
		& img {
			width: 100%;
			height: 100%;
			display: block;
			object-fit: cover;
			display: none;
		}
	}
	& .play {
		position: absolute;
		z-index: 3;
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
		border: 1px solid var(--light-color);
		cursor: pointer;
		display: none;
		&::after {
			position: absolute;
			content: "";
			width: 100%;
			height: 100%;
			left: 0;
			top: 0;
			background: url(../icons/play.svg) center / contain no-repeat;
			transition: transform 0.3s ease;
		}
	}
	& iframe {
		position: absolute;
		width: calc(100% - 20px);
		height: 100%;
		object-fit: cover;
		left: 10px;
		top: 10px;
		z-index: 3;
	}
}

.wrap_inner_page {
	display: flex;
	margin-bottom: 150px;
	flex-direction: row-reverse;
	margin-left: -20px;
	& .inner_page {
		width: calc(100% - 350px);
		margin-right: 50px;
		margin-bottom: 0;
	}
	& .wrap_nav {
		width: 300px;
		position: relative;
		& nav {
			width: 300px;
			&.fixed {
				position: fixed;
				top: 85px;
				&.sticky {
					position: absolute;
					top: unset;
					bottom: 0;
				}
			}
		}
		& a:not(.button) {
			display: block;
			padding: 10px 20px;
			border: 4px solid var(--grey-color);
			&:not(:last-child) {
				margin-bottom: 5px;
			}
			&.active {
				border-color: var(--red-color);
			}
		}
		& .button {
			text-align: center;
			text-transform: uppercase;
			display: block;
		}
		& .item_scroll {
			padding: 10px 20px;
			border: 4px solid var(--grey-color);
			cursor: pointer;
			&.active {
				border-color: var(--red-color);
			}
			&:not(:last-child) {
				margin-bottom: 5px;
			}
		}
	}
	& .flex_slider {
		& .progressive {
			height: 150px;
		}
	}
	& .video_wrap {
		display: block;
		margin-right: 0;
		& .video {
			margin-right: 0;
			width: 100%;
		}
	}
}

.items_list {
	& .item_doc {
		display: block;
		padding: 20px;
		background: var(--substrate-color);
		border-radius: 2px;
		& .name {
			text-transform: uppercase;
			font-weight: 600;
			display: block;
			margin-bottom: 5px;
			text-decoration: none;
		}
		& .text {
			margin-bottom: 20px;
		}
		& .button {
			text-decoration: none;
			min-width: 195px;
			&:not(:last-child) {
				margin-bottom: 10px;
			}
		}
		& .date {
			font-size: 18px;
			line-height: 20px;
		}
		&:not(:last-child) {
        	margin-bottom: 30px;
    	}
		&.item_search {
			& .name {
				font-family: var(--title-font);
				font-size: 25px;
            	line-height: 30px;
				text-transform: none;
			}
		}
	}
}

.error_page {
	min-height: calc(100vh - 145.8px);
	background: var(--substrate-color);
	padding: 100px 0;
	& h2 {
		font-size: 120px;
		line-height: 125px;
	}
	& a {
		text-decoration: underline;
	}
}

.map_page {
	& .map {
		margin-bottom: 40px;
	}
}

.catalog_flex {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
	& .item_catalog {
		display: block;
		width: calc((100% / 5) - 20px);
		margin: 0 20px 20px 0;
		padding: 15px 15px 0 0;
		position: relative;
		&::before {
			position: absolute;
			content: "";
			width: 50px;
			height: 2px;
			border-bottom: 2px solid var(--grey-color);
			top: 0;
			right: 0;
			transition: all 0.3s ease;
		}
		&::after {
			position: absolute;
			content: "";
			width: 2;
			height: 50px;
			border-left: 2px solid var(--grey-color);
			top: 1px;
			right: 0;
			transition: all 0.3s ease;
		}
	}
	& .image_item {
		margin-bottom: 10px;
		position: relative;
		overflow: hidden;
		&::after {
			display: block;
			content: "";
			padding-top: 160%;
		}
		&::before {
			position: absolute;
			content: attr(data-label);
			bottom: 0;
			right: 0;
			padding: 5px;
			background: var(--substrate-color_op);
			z-index: 1;
			font-size: 18px;
			line-height: 18px;
			font-weight: 600;
		}
	}
	& .progressive {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		transition: all 0.3s ease;
		& img {
			height: 100%;
			object-fit: cover;
		}
	}
	& .title {
		font-family: var(--title-font);
		font-weight: 600;
		margin-bottom: 5px;
		transition: all 0.3s ease;
		overflow-wrap: break-word;
	}
	& .footonte_title {
		font-size: 18px;
		line-height: 20px;
		font-style: italic;
	}
	& a {
		text-decoration: none;
	}
}

.book_page {
	margin-bottom: 150px;
	& .wrap_title {
		margin-bottom: 45px;
		& h1 {
			margin-bottom: 0;
		}
	}
	& .footnote_title {
		display: inline-block;
		font-style: italic;
		padding-right: 30px;
		padding-left: 10px;
		background: url(../icons/pen.svg) right 0 center / contain no-repeat;
		background-size: 24px 24px;
	}
	& .wrap_content {
		display: flex;
		flex-direction: row-reverse;
		margin-left: -20px;
	}
	& .inner_page {
		width: calc(100% - 300px);
		margin-right: 50px;
		margin-bottom: 0;
	}
	& .top_section {
		& .item_section {
			&:not(:last-child) {
				margin-bottom: 5px;
			}
		}
	}
	& .wrap_image {
		width: 250px;
		position: relative;
		& .nav_col {
			width: 250px;
			& .button {
				display: block;
			}
			&.fixed {
				position: fixed;
				top: 85px;
				&.sticky {
					position: absolute;
					top: unset;
					bottom: 0;
				}
			}
		}
		& .image {
			width: 250px;
			max-height: calc(100vh - 155px);
			&:not(:last-child) {
				margin-bottom: 20px;
			}
			& img {
				display: block;
				object-fit: cover;
			}
		}
		& .zoom {
			cursor: pointer;
			position: relative;
			&::after {
				position: absolute;
				content: "";
				width: 40px;
				height: 40px;
				background: url(../icons/zoom.svg) center / contain	no-repeat;
				z-index: 1;
				left: 20px;
				bottom: 20px;
				transition: opacity 0.3s ease;
				opacity: 0;
				visibility: hidden;
			}
		}
	}
}

.calendar_page {
	display: flex;
	flex-direction: row-reverse;
	& .wrap_calendar {
		width: 400px;
		position: relative;
	}
	& .calendar {
		width: 400px;
		&.fixed {
			position: fixed;
			top: 85px;
			&.sticky {
				position: absolute;
				right: 0;
				top: unset;
				bottom: 0;
			}
		}
	}
	& .items_calendar {
		width: calc(100% - 450px);
		margin-right: 50px;
		& .title_top {
			font-family: var(--title-font);
			font-size: 25px;
			line-height: 30px;
			padding-bottom: 5px;
			border-bottom: 1px solid var(--grey-color);
			margin-bottom: 10px;
			font-weight: 600;
		}
	}
	& .item_calendar {
		display: flex;
		padding-bottom: 10px;
		border-bottom: 1px solid var(--grey-color);
		&:not(:last-child) {
			margin-bottom: 10px;
		}
		& .image_wrap {
			flex: 1;
			margin-right: 30px;
			overflow: hidden;
			border-radius: 20px 0 20px 0;
			height: 180px;
			& .progressive {
				width: 100%;
				height: 100%;
				transition: transform 0.5s ease;
				& img {
					height: 100%;
					object-fit: cover;
				}
			}
		}
		& .text_wrap {
			flex: 3;
			display: flex;
			flex-wrap: wrap;
			&:first-child {
				flex: unset;
				display: block;
				& .tilte_wrap {
					flex: unset;
					margin-right: 0;
				}
			}
			& .introtext {
				padding-top: 20px;
			}
			& .text {
				overflow: hidden;
				text-overflow: ellipsis;
				display: -moz-box;
				display: -webkit-box;
				line-clamp: 3;
				box-orient: vertical;
				-moz-box-orient: vertical;
				-webkit-line-clamp: 3;
				-webkit-box-orient: vertical;
				user-select: none;
			}
		}
		& .tilte_wrap {
			flex: 2.5;
			margin-right: 20px;
			& .title {
				font-weight: 600;
				font-size: 25px;
				line-height: 30px;
				hyphens: auto;
				transition: all 0.3s ease;
			}
			& .footnote_tilte {
				color: var(--dark-color_bg);
			}
			&:last-child {
				margin-right: 0;
				flex: unset;
			}
		}
		& .label {
			color: var(--dark-color_bg);
			&.age {
				flex: 1;
				margin-right: 10px;
			}
			&.time {
				flex: 1.4;
				margin-right: 10px;
				& span {
					display: none;
				}
			}
			&.place {
				hyphens: auto;
				text-align: right;
				flex: 2;
			}
		}
	}
}

.search_page {
	& .search {
		padding: 20px;
		background: var(--substrate-color);
		margin-bottom: 60px;
		& .flex {
			display: flex;
			align-items: center;
		}
		& .wrap_input {
			margin-right: 20px;
			width: calc(100% - 220px);
			margin-bottom: 0;
			padding-top: 0;
			& input[type="text"] {
				padding: 13px 20px;
				border-width: 2px;
				font-size: 18px;
				&::placeholder {
					font-size: 18px;
				}
			}
		}
		& .search_start {
			width: 200px;
		}
		& .search_fid {
			width: 200px;
		}
	}
	& .item_search {
		padding: 30px;
		background: var(--substrate-color);
		&:not(:last-child) {
			margin-bottom: 20px;
		}
		& .parent {
			font-size: 18px;
			line-height: 20px;
			color: var(--dark-color_bg);
			font-weight: 600;
			transition: all 0.3s ease;
			font-style: italic;
		}
		& .item {
			display: block;
		}
		& .title {
			font-family: var(--title-font);
			font-weight: 600;
			font-size: 25px;
			line-height: 30px;
			margin-bottom: 15px;
			hyphens: auto;
			transition: all 0.3s ease;
		}
		& .text {
			color: var(--dark-color_bg);
		}
	}
}

.wrap_reviews {
	margin-bottom: 40px;
}
.small_pagination {
	text-align: center;
	& .button {
		min-width: 200px;
	}
}

.item_reviews {
	position: relative;
	&:not(:last-child) {
		margin-bottom: 20px;
		padding-bottom: 20px;
		&::after {
			position: absolute;
			content: "";
			width: 100px;
			height: 4px;
			border-bottom: 4px solid var(--grey-color);
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
		}
	}
	& .title {
		font-weight: 600;
	}
	& .date {
		font-size: 18px;
		line-height: 20px;
		margin-bottom: 15px;
		color: var(--dark-color_bg);
	}
	& .text {
		margin-bottom: 10px;
	}
	& .wrap_footnote_text {
		background: var(--substrate-color);
		padding: 20px;
		border-left: 4px solid var(--red-color_op);
		margin-left: 25px;
	}
	& .footnote_text {
		margin-bottom: 5px;
		font-style: italic;
		font-size: 20px;
		line-height: 25px;
	}
	& .accent_title {
		text-align: right;
		color: var(--red-color);
		font-size: 20px;
		line-height: 25px;
	}
}

.popup {
	position: fixed;
    display: none;
    align-items: center;
    justify-content: flex-end;
	backdrop-filter: blur(50px);
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	& .wrap_popup {
		height: 100%;
        width: 660px;
        padding: 10px;
	}
	& .content_popup {
		padding: 80px 10px 40px 0;
        background: var(--light-color);
        border-radius: 10px;
        height: 100%;
        position: relative;
		color: var(--dark);
		font-size: 20px;
		line-height: 25px;
		& .scroll_content {
			padding-right: 30px;
            overflow: hidden;
            overflow-y: auto;
            max-height: 100%;
            padding-bottom: 20px;
            padding-left: 40px;
            width: 100%;
		}
		& .buttons {
			display: flex;
			justify-content: center;
			padding-top: 20px;
		}
		& button {
			min-width: 250px;
		}
	}
	& .close_popup {
		position: absolute;
        cursor: pointer;
        font-size: 15px;
        line-height: 20px;
        top: 40px;
        right: 40px;
        z-index: 1;
	}
	&::after {
		position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: var(--grey-color);
        opacity: 0.2;
        z-index: -1;
        left: 0;
        top: 0;
	}
}

.form_message {
	display: none;
	&.full_page {
		font-size: 30px;
		line-height: 35px;
		& h4 {
			text-transform: none;
		}
	}
}

.wrap_input {
	margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding-top: 10px;
	&::before {
		position: absolute;
        content: attr(data-label);
        left: 10px;
        top: 22px;
        color: var(--dark-color_bg);
        transition: all 0.3s ease;
        z-index: -1;
        font-size: 14px;
        line-height: 20px;
	}
	&.active::before {
		color: var(--beige_color);
		top: -12px;
	}
}

.agree {
	margin-bottom: 20px;
	& label {
		position: relative;
		padding-left: 30px;
		cursor: pointer;
		display: block;
		&::before {
			position: absolute;
			content: "";
			width: 19px;
			height: 19px;
			left: 0;
			top: 4px;
			box-shadow: 0 0 0 1px var(--dark-color_bg);
			border: 3px solid var(--light-color);
		}
	}
	& a {
		text-decoration: underline;
		position: relative;
		z-index: 1;
	}
	& input[type="checkbox"]:checked + label::before {
		background: var(--dark-color_bg);
	}
}

select.droplist {
	display: none;
}

.droplist {
	position: relative;
	margin-bottom: 30px;
	& .name {
		padding: 10px 40px 10px 10px;
		cursor: pointer;
		border: 1px solid var(--grey-color);
		color: var(--dark-color_bg);
		position: relative;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		transition: all 0.3s ease;
		&::after {
			position: absolute;
			content: "";
			width: 20px;
			height: 20px;
			right: 10px;
			top: 50%;
			transform: translateY(-50%);
			background: url(../icons/arrow_down.svg) center / contain no-repeat;
		}
		&.active {
			background: var(--substrate-color);
			&::after {
				transform: translateY(-50%) rotate(-180deg);
			}
		}
		&.selected {
			color: var(--dark-color);
		}
	}
	& .list {
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		background: var(--light-color);
		z-index: 2;
		box-shadow: 0 0 5px 0 var(--dark-color_op);
		display: none;
	}
	& .item_list {
		padding: 10px 40px 10px 20px;
		cursor: pointer;
		position: relative;
		&:not(:last-child) {
			border-bottom: 1px solid var(--grey-color);
		}
		&.active::after {
			position: absolute;
			content: "";
			width: 20px;
			height: 20px;
			right: 10px;
			top: 50%;
			transform: translateY(-50%);
			background: url(../icons/check.svg) center / contain no-repeat;
		}
		&:nth-child(odd) {
			background: var(--substrate-color);
		}
	}
}

.page_form {
	font-size: 20px;
	line-height: 25px;
	padding-top: 30px;
	& input, & textarea {
		font-size: 20px;
		line-height: 25px;
	}
	& .wrap_input {
		margin-bottom: 30px;
		&::before {
			font-size: 18px;
			line-height: 20px;
		}
	}
	& .buttons {
		display: flex;
		justify-content: center;
		& button {
			width: 300px;
		}
	}
}

.slide_list {
	& .wrap_name {
		padding: 20px;
		border: 1px solid var(--grey-color);
		display: flex;
		align-items: center;
	}
	& .name {
		width: calc(100% - 250px);
		margin-right: 50px;
		font-weight: 600;
	}
	& .button {
		width: 200px;
	}
	& .list {
		display: none;
		padding-top: 20px;
		padding-left: 20px;
	}
}

.wrap_form {
	padding: 20px;
	border: 1px solid var(--grey-color);
}

.top_nav {
	display: flex;
	font-size: 18px;
	line-height: 20px;
	& .wrap_drop {
    	width: calc(50% - 15px);
		&:not(:last-child) {
			margin-right: 30px;
		}
	}
	& .label {
		font-size: 18px;
        line-height: 20px;
        margin-bottom: 5px;
        font-style: italic;
	}
	& .droplist {
		margin-bottom: 0;
	}
}

.feedback_form {
	& .content {
		margin-bottom: 60px;
		&:last-child {
			margin-bottom: 0;
		}
	}
	& .wrap_input {
		&::before {
			font-size: 18px;
			line-height: 20px;
		}
	}
	& input[type="text"], & textarea {
		font-size: 18px;
		line-height: 20px;
	}
	& textarea {
		height: 300px;
	}
}

.flex_tab_nav {
	display: flex;
	margin-bottom: 30px;
	& .name_nav {
		margin-right: 30px;
	}
	& .item_nav {
		position: relative;
		cursor: pointer;
		padding-left: 30px;
		margin-right: 30px;
		user-select: none;
		&::before {
			position: absolute;
			content: "";
			width: 20px;
			height: 20px;
			box-shadow: 0 0 0 1px var(--grey-color);
			border: 4px solid var(--light-color);
			background: #ffffff;
			left: 0;
			top: 4px;
		}
	}
	& .active::before {
		background: var(--grey-color);
	}
}

.wrap_tab {
	& .tab_form:not(:first-child) {
		display: none;
	}
	& .form_message {
		display: none;
	}
	& .footnote_message {
		font-size: 18px;
		line-height: 20px;
		margin-bottom: 30px;
	}
	& .wrap_fields {
		margin-bottom: 40px;
	}
	& button {
		width: 300px;
	}
	& .buttons {
		display: flex;
		justify-content: center;
	}
}

.hidden_inputs {
	display: none;
}

.wrap_input.wrap_file {
	padding: 10px;
	border: 1px solid var(--grey-color);
	& input {
		display: none;
	}
	& label {
		cursor: pointer;
		display: inline-block;
		padding: 10px 20px;
		transition: all 0.3s ease;
		border: 1px solid var(--grey-color);
		font-size: 18px;
		line-height: 20px;
	}
}

.feedback_wrap_list {
	display: none;
	& .feedback_list {
		padding: 20px;
		border: 1px solid var(--grey-color);
	}
	& .item_feedback {
		display: flex;
		font-weight: 600;
	}
	& .wrap_inf:not(:last-child) {
		margin-right: 30px;
	}
	& .label {
		font-size: 18px;
		line-height: 20px;
    	font-weight: 400;
	}
}

.tabs .tab:not(:first-child) {
	display: none;
}

.calendar.loading, .items_calendar.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.calendar.loading:after, .items_calendar.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--light-color);
    border-top: 2px solid var(--red-color_op);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.table {
	border: 2px solid var(--grey-color);
	& .table_head {
		font-weight: 500;
		padding: 10px;
		background: var(--substrate-color);
		border-bottom: 2px solid var(--grey-color);
	}
	& .tr {
		display: flex;
    	border-bottom: 1px solid var(--grey-color);
		& .td {
			&:first-child {
				width: 280px;
				padding: 10px 30px 10px 10px;
				border-right: 1px solid var(--grey-color);
				font-weight: 600;
			}
			&:last-child {
				width: calc(100% - 280px);
        		padding: 10px 10px 10px 30px;
				&.flex_line {
					display: flex;
					padding: 0;
					& .item_line {
						flex: 1;
						padding: 10px;
						display: flex;
						align-items: center;
						justify-content: center;
						&:not(:last-child) {
							border-right: 1px solid var(--grey-color);
						}
					}
					& .icon {
						width: 40px;
						height: 40px;
						border-radius: 10px;
						border: 1px solid var(--dark-color_bg);
						position: relative;
						cursor: pointer;
						&::after {
							position: absolute;
							content: "";
							width: 30px;
							height: 30px;
							left: 50%;
							top: 50%;
							transform: translate(-50%, -50%);
						}
						&.icon_1::after {
							background: url(../icons/icon_1.svg) center / contain no-repeat;
						}
						&.icon_2::after {
							background: url(../icons/icon_2.svg) center / contain no-repeat;
						}
						&.icon_3::after {
							background: url(../icons/icon_3.svg) center / contain no-repeat;
						}
						&.icon_4::after {
							background: url(../icons/icon_4.svg) center / contain no-repeat;
						}
						&.icon_5::after {
							background: url(../icons/icon_5.svg) center / contain no-repeat;
						}
						&.t_1 {
							background: var(--t_1);
						}
						&.t_2 {
							background: var(--t_2);
						}
						&.t_3 {
							background: var(--t_3);
						}
						&.t_4 {
							background: var(--t_4);
						}
					}
				}
			}
			& .title {
				margin-bottom: 10px;
			}
			& .address {
				font-size: 18px;
				line-height: 20px;
				font-weight: 400;
				padding-left: 30px;
				background: url(../icons/map_icon.svg) left 0 top 5px / contain no-repeat;
				background-size: 20px 20px;
				&:not(:last-child) {
					margin-bottom: 5px;
				}
			}
			& .phone {
				font-size: 18px;
				line-height: 20px;
				font-weight: 400;
				display: block;
				background: url(../icons/phone.svg) left 0 top 2px / contain no-repeat;
            	background-size: 20px 20px;
				padding-left: 30px;
				transition: all 0.3s ease;
				text-decoration: underline;
				text-decoration-color: transparent;
				&:not(:last-child) {
					margin-bottom: 5px;
				}
			}
		}
	}
}

.tooltip_text {
    font-size: 15px;
    line-height: 20px;
    padding: 10px;
    background: var(--light-color);
    border: 1px solid var(--grey-color);
    position: fixed;
    z-index: 7;
    max-width: 660px;
    color: var(--dark-color);
}

span.simplesearch-highlight {
	font-weight: bold;
}

.wrap_banners {
	display: flex;
	justify-content: space-between;
	height: 330px;
	& .wrap_pos {
		width: calc(60% - 10px);
	}
}

.banner_section {
	width: calc(40% - 10px);
	height: 100%;
	position: relative;
	padding-bottom: 50px;
	& .banner {
		overflow: hidden;
		margin-right: 10px;
		height: 100%;
		padding: 10px;
		border: 4px solid var(--grey-color);
		& .progressive {
			height: 100%;
			& img {
				height: 100%;
				display: block;
				object-fit: contain;
			}
		}
	}
	&::after {
		position: absolute;
		content: "";
		width: calc(100% + 20px);
		height: 25px;
		right: -20px;
		bottom: 0;
		background: var(--substrate-color);
		z-index: -1;
	}
	& .slick-list {
		margin-right: -10px;
		display: flex;
		height: 100%;
	}
	& .slick-track {
		display: flex;
	}
	& .slick-arrow {
		font-size: 0;
        line-height: 0;
        position: absolute;
        bottom: 5px;
        border: 0;
        outline: none;
        width: 40px;
        height: 40px;
        z-index: 3;
		&.slick-next {
			right: 0;
            background: url(../icons/arrow_r.svg) center / contain no-repeat;
		}
		&.slick-prev {
			right: 80px;
            background: url(../icons/arrow_l.svg) center / contain no-repeat;
		}
	}
}

.info_list {
	& .item_icon {
		display: flex;
		align-items: center;
		&:not(:last-child) {
			margin-bottom: 20px;
		}
		& .icon {
			width: 40px;
			height: 40px;
			border-radius: 10px;
			border: 1px solid var(--dark-color_bg);
			margin-right: 20px;
			padding: 5px;
			background: var(--dark-color_bg);
			& img {
				display: block;
			}
		}
		& span {
			display: block;
			width: calc(100% - 60px);
		}
	}
}

.color_list {
	& .item_color {
		padding-left: 80px;
		position: relative;
		&:not(:last-child) {
			margin-bottom: 20px;
		}
		&::before {
			position: absolute;
			content: "";
			width: 60px;
			height: 15px;
			left: 0;
			top: 50%;
			transform: translateY(-50%);
		}
		&.t_1::before {
			background: var(--t_1);
		}
		&.t_2::before {
			background: var(--t_2);
		}
		&.t_3::before {
			background: var(--t_3);
		}
		&.t_4::before {
			background: var(--t_4);
		}
	}
}

.articles_wrap {
	margin-bottom: 40px;
	width: 70%;
	& .item_article {
		display: flex;
		padding: 20px;
		border: 1px solid var(--grey-color);
		text-decoration: none;
		transition: border 0.3s ease;
		&:not(:last-child) {
			margin-bottom: 50px;
		}
	}
	& .wrap_image {
		width: 150px;
		height: 150px;
		margin-right: 50px;
		padding: 20px;
		border: 1px solid var(--grey-color);
		margin-left: -40px;
		margin-top: -40px;
		background: var(--light-color);
		transition: border 0.3s ease;
	}
	& .wrap_text {
		width: calc(100% - 200px);
	}
	& .label {
		color: var(--dark-color_op);
		font-size: 18px;
		line-height: 20px;
		font-weight: 600;
	}
	& .title {
		font-family: var(--title-font);
		font-size: 30px;
		line-height: 35px;
		color: var(--red-color);
		margin-bottom: 30px;
		hyphens: auto;
	}
	& .label_time {
		padding-left: 20px;
        font-size: 16px;
        line-height: 20px;
        background: url(../icons/time_icon.svg) left 0 center / contain no-repeat;
        background-size: 15px 15px;
        opacity: 0.8;
	}
}

.teams_wrap {
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	margin-right: -30px;
	& .item_team {
		display: block;
		margin: 0 30px 30px 0;
		width: calc(25% - 30px);
		text-decoration: none;
		background: var(--light-color);
		transition: all 0.3s ease;
	}
	& .image {
		overflow: hidden;
		height: 380px;
		& img {
			display: block;
			object-fit: cover;
			object-position: top center;
		}
	}
	& .name {
		word-break: break-word;
		font-family: var(--title-font);
		padding: 10px;
	}
}

.print_page {
	color: #000000;
	padding-bottom: 60px;
}

.print_page .wrap {
	width: 800px;
}

.print_page header {
	display: flex;
	justify-content: space-between;
	background: none;
	padding: 40px 0;
	color: #000000;
}

.print_page header .logo {
	filter: grayscale(1);
}

.print_page .text_header {
	width: calc(100% - 90px);
}

.table_page {
	border: 1px solid #000000;
	&:not(:last-child) {
		margin-bottom: 40px;
	}
}

.table_page .head {
	display: flex;
	align-items: flex-start;
	font-weight: 600;
	border-bottom: 1px solid #000000;
}

.table_page .th, .table_page .td {
	padding: 10px;
	width: 70%;
	&:first-child {
		border-right: 1px solid #000000;
		width: 30%;
	}
}

.table_page .tr {
	display: flex;
	align-items: flex-start;
	&:not(:last-child) {
		border-bottom: 1px solid #000000;
	}
}

.table_page .head.center {
	padding: 10px;
}

.item_audio {
	&:not(:last-child) {
		margin-bottom: 20px;
	}
	& .label {
		font-weight: 600;
		margin-bottom: 5px;
	}
	& .text {
		margin-bottom: 5px;
		font-size: 18px;
		line-height: 20px;
	}
}

.svg_map {
	width: 100%;
	& svg {
		display: block;
		width: 100%;
		height: auto;
		overflow: unset;
		position: relative;
		& .map_l {
			stroke-width: 0.5px;
			stroke: var(--red-color);
			cursor: pointer;
			fill: transparent;
			transition: all 2s ease;
			filter: grayscale(1);
		}
		& .map_1 {
			fill: url(#pattern1);
		}
		& .map_2 {
			fill: url(#pattern2_2);
		}
		& .map_3 {
			fill: url(#pattern3);
		}
		& .map-image-overlay {
			pointer-events: none;
			mix-blend-mode: multiply;
		}
	}
}

.wrap_decor_imgage {
	position: relative;
	padding-left: 120px;
	& .image {
		width: 30%;
		& img {
			display: block;
		}
	}
	&::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 60%;
		background: linear-gradient(0deg, transparent, var(--grey-color));
		left: 0;
		top: 30px;
		z-index: -1;
	}
}

.wrap_border_item {
	padding-top: 40px;
	& .item_border {
		display: flex;
        padding: 20px;
        border: 1px solid var(--grey-color);
		position: relative;
		&:not(:last-child) {
			margin-bottom: 50px;
		}
		&::before {
			position: absolute;
			content: "";
			width: 160px;
			height: calc(100% - 20px);
			left: 40px;
			bottom: 0;
			background: linear-gradient(-45deg, transparent, var(--grey-color));
			z-index: -1;
		}
	}
	& .wrap_image {
		width: 200px;
        height: 200px;
        margin-right: 50px;
        padding: 10px;
        border: 1px solid var(--grey-color);
        margin-left: -40px;
        margin-top: -40px;
        background: var(--light-color);
		& img {
			display: block;
			object-fit: cover;
			width: 100%;
			height: 100%;
		}
	}
	& .wrap_text {
		width: calc(100% - 250px);
		font-size: 20px;
		line-height: 20px;
	}
	& .title {
		font-family: var(--title-font);
        font-size: 30px;
        line-height: 35px;
        color: var(--red-color);
        margin-bottom: 30px;
        hyphens: auto;
	}
	& .el_item_border {
		padding-left: 30px;
		&:not(:last-child) {
			margin-bottom: 15px;
		}
		&.address {
			background: url(../icons/pin.svg) left 0 top 0 / contain no-repeat;
			background-size: 20px 20px;
		}
		&.phone {
			background: url(../icons/phone.svg) left 0 top 0 / contain no-repeat;
			background-size: 20px 20px;
		}
		&.web {
			background: url(../icons/web.svg) left 0 top 0 / contain no-repeat;
			background-size: 20px 20px;
		}
		&.time {
			background: url(../icons/time_icon.svg) left 0 top 0 / contain no-repeat;
			background-size: 20px 20px;
		}
	}
}

@media (min-width: 992px) {
    header {
        & .top_menu {
            & nav {
                & .bvi-open:hover {
                    transform: scale(1.1);
                }
                & .search_btn:hover {
                    transform: scale(1.1);
                }
            }
        }
        & .main_menu {
            & nav {
                & a:hover::after {
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
    & .soc_nav {
        & a:hover {
            &::before {
                transform: translate(-55%, -45%);
                transition: all 0.5s ease 0.2s;
            }
            &::after {
                left: 70%;
                top: -70%;
            }
        }
    }
    .link:hover {
        color: var(--red-color);
    }
    .catalog_item .item:hover {
        &::after {
            color: var(--red-color);
        }
        & span {
            background: var(--substrate-color);
        }
    }
    .news_list .item_new:hover {
        & .progressive {
            transform: translate(-50%,-50%) scale(1.05);
        }
    }
    .go_to:hover {
        &::before {
            height: 35px;
        }
        &::after {
            width: 100%;
        }
    }
    .calendar a:hover {
        opacity: 0.8;
    }
    .calendar .item_month:hover {
        background: var(--red-color);
        color: var(--light-color);
        border-color: var(--red-color);
    }
    .map_wrap .info_section a:hover {
        text-decoration-color: var(--dark-color);
    }
    .close:hover {
        &::after, &::before {
            border-color: var(--dark-color);
            width: 25px;
        }
    }
    .button:not(.slick-arrow):not(:disabled):hover, button:not(.slick-arrow):not(:disabled):hover {
        &::after {
            right: -35px;
            top: -35px;
        }
    }
    .slick-arrow:hover {
        transform: scale(1.1);
    }
    .wrap_main_banner .nav_main_banner .arrow:hover {
        transform: scale(1.1);
    }
    .fixed_buttons {
        & .scroll_top:hover::after {
            transform: scale(1.1);
        }
    }
    .banner_section {
        & .banner {
            cursor: zoom-in;
        }
    }
    .gallery_popup {
        & .nav_slider {
            &::-webkit-scrollbar-thumb {
                height: 10px;
                border-radius: 10px;
                background: var(--grey-color);
            }
            &::-webkit-scrollbar {
                height: 10px;
                background: none;
            }
        }
    }
    @-moz-document url-prefix() {
        .gallery_popup {
            & .nav_slider {
                scrollbar-color: var(--grey-color) transparent;
            }
        }
    }
    .gallery_popup .arrow:hover::after {
        transform: scale(1.1);
    }
    .breadcrumbs .home_page:hover {
        transform: scale(1.1);
    }
    .filter a:not(.active):hover {
        color: var(--red-color);
    }
    .pagination {
        & a.arrow:hover::after {
            transform: scale(1.2);
        }
        & .to_page:not(.active):hover {
            color: var(--red-color);
            border-bottom: 1px solid var(--red-color);
        }
    }
    .share .name:hover::before {
        transform: translateY(-50%) scale(1.2);
    }
    .flex_slider .zoom:hover::before {
        opacity: 1;
        visibility: visible;
    }
    .play:hover::after {
        transform: scale(1.2);
    }
    .catalog_flex .item_catalog:hover {
        &::before {
            top: 5px;
            right: 5px;
        }
        &::after {
            top: 6px;
            right: 5px;
        }
        & .progressive {
            opacity: 0.8;
        }
        & .title {
            color: var(--red-color);
        }
    }
    .book_page .zoom:hover {
        &::after {
            opacity: 1;
            visibility: visible;
        }
    }
    .items_calendar .item_calendar:hover {
        & .progressive {
            transform: scale(1.08);
        }
        & .title {
            color: var(--red-color);
        }
    }
	.item_search .item:hover .title {
		color: var(--red-color);
	}
	.item_search .parent:hover {
		color: var(--red-color);
	}
	.table {
		& .tr {
			& .td {
				& .phone:hover {
					text-decoration-color: var(--dark-color);
				}
			}
		}
	}
	.articles_wrap {
		& .item_article:hover {
			border-color: var(--red-color);
			& .wrap_image {
				border-color: var(--red-color);
			}
		}
	}
	.teams_wrap {
		& .item_team:hover {
			box-shadow: 0 0 20px 0 var(--dark-color_bg);
		}
	}
	.svg_map {
		& svg {
			& .map_l:hover {
				filter: grayscale(0);
			}
		}
	}
}

@media (max-width: 1270px) {
	.wrap {
		padding: 0 50px;
	}
    .catalog_flex {
        & .item_catalog {
            width: calc(25% - 20px);
        }
    }
    .calendar_page {
        & .item_calendar {
            & .text_wrap {
                flex-wrap: wrap;
            }
            & .label {
                &.place {
                    width: 100%;
                    flex: unset;
                    text-align: left;
                }
                &.time {
                    margin-right: 0;
                    flex: unset;
                }
                &.age {
                    flex: unset;
                }
            }
            & .tilte_wrap {
                flex: 3;
            }
            & .image_wrap {
                flex: 2;
            }
        }
    }
	.banner_section {
		width: calc(30% - 10px);
	}
	.wrap_banners {
		& .wrap_pos {
			width: calc(70% - 10px);
		}
	}
	header {
		& .wrap_logo {
			width: auto;
			& .text_logo {
				display: none;
			}
		}
		& .top_menu {
			& nav {
				width: calc(100% - 250px);
			}
		}
	}
	.table {
		& .tr {
			& .td {
				&:last-child {
					&.flex_line {
						flex-wrap: wrap;
		                & .item_line {
							&:nth-last-child(2) {
								flex: unset;
								width: 50%;
								border-top: 1px solid var(--grey-color);
							}
							&:last-child {
								flex: unset;
								width: 50%;
								border-top: 1px solid var(--grey-color);
							}
						}
					}
				}
			}
		}
	}
}

@media (max-width: 992px) {
    @-moz-document url-prefix() {
        .news_list .main {
            scrollbar-color: transparent transparent;
        }
        .link_slider {
            scrollbar-color: transparent transparent;
        }
		.banner_section {
			scrollbar-color: transparent transparent;
		}
        .gallery_popup .slider {
            scrollbar-color: transparent transparent;
        }
        .breadcrumbs {
            scrollbar-color: transparent transparent;
        }
        .filter {
            scrollbar-color: transparent transparent;
        }
        .flex_slider {
            scrollbar-color: transparent transparent;
        }
    }
    body {
        font-size: 18px;
        line-height: 20px;
    }
    p:not(:last-child) {
        margin-bottom: 10px;
    }
    h1 {
        margin-bottom: 30px;
        font-size: 35px;
        line-height: 40px;
    }
    h2 {
        font-size: 34px;
        line-height: 38px;
        margin-bottom: 25px;
    }
    h3 {
        font-size: 32px;
        line-height: 38px;
        padding-right: 0;
        margin-bottom: 20px;
        &::after {
            display: none;
        }
        &::before {
            display: none;
        }
        & .text {
            background: none;
            padding-right: 0;
        }
    }
    h4 {
        margin-bottom: 15px;
    }
    .wrap {
        padding: 0 20px;
    }
    .button, button {
        padding: 9px 20px;
    }
    header {
        padding: 0;
        & .main_menu {
            display: none;
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            background: var(--substrate-color);
            padding: 80px 20px 60px 20px;
			flex-direction: column;
			align-items: flex-end;
            & nav {
                display: block;
                text-transform: uppercase;
                overflow: hidden;
                overflow-y: auto;
                text-align: right;
                max-height: 100%;
				margin-right: -20px;
				padding-right: 20px;
                & a {
                    padding: 5px 5px 5px 0px;
                    &:not(:last-child) {
                        margin-right: 0;
                        margin-bottom: 5px;
                    }
					&::after {
						width: 6px;
						height: 6px;
						border: 0;
						border-radius: 50%;
						background: var(--red-color);
						bottom: unset;
						top: 4px;
						left: unset;
						right: 0;
					}
                }
            }
            & .soc_nav {
                position: absolute;
                top: 20px;
                left: 20px;
            }
            & .mobile_fixed_menu {
                position: absolute;
                bottom: 20px;
                left: 20px;
                width: 100%;
                width: calc(100% - 40px);
                display: flex;
                align-items: center;
                justify-content: space-between;
                font-size: 16px;
                line-height: 20px;
                color: var(--red-color);
                & a {
                    &:first-child {
                        padding-right: 5px;
                    }
                    &:last-child {
                        padding-left: 5px;
                    }
                }
            }
            & .close {
                top: 20px;
                right: 20px;
                background: none;
                border: 1px solid var(--grey-color);
            }
        }
        & .top_menu {
            padding: 20px;
            margin-bottom: 0;
            border-width: 4px;
            & nav {
                width: calc(100% - 150px);
                & a {
                    display: none;
                }
                & .mobil_menu {
                    display: block;
                    width: 30px;
                    height: 30px;
                    background: url(../icons/menu.svg) center / contain no-repeat;
                    cursor: pointer;
                }
                & .search_btn {
                    margin-right: 20px;
                    width: 25px;
                    height: 25px;
                }
                & .bvi-open {
                    margin-right: 30px;
                    width: 25px;
                    height: 25px;
                }
                & .search_wrap {
                    height: calc(100% - 4px);
                    padding: 10px 20px;
                    width: 100%;
                    right: 0;
                    & .search_start {
                        width: 100px;
                    }
                    & .wrap_input {
                        width: calc(100% - 110px);
                    }
                    & .close {
                        top: calc(100% - 4px);
                    }
                    & form {
                        height: 100%;
                    }
                    & .flex {
                        height: 100%;
                    }
                }
            }
        }
        & .wrap {
            padding: 0;
        }
        & .logo {
            width: 150px;
            height: 30px;
        }
        &.top_fixed {
            box-shadow: none;
            border-bottom: 1px solid var(--grey-color);
            & .wrap_logo {
                display: block;
            }
            & .top_menu {
                padding: 10px 20px;
                & nav {
                    & .bvi-open {
                        position: static;
                    }
                    & .search_btn {
                        position: static;
                    }
                    & .search_wrap {
                        top: 0;
                        height: calc(100% - 1px);
                        & input[type="text"] {
                            padding: 5px 10px;
                        }
                        & .search_start {
                            padding: 5px 10px;
                        }
                        & .close {
                            top: 100%;
                            border-left: 1px solid var(--grey-color);
                            border-bottom: 1px solid var(--grey-color);
                        }
                    }
                }
            }
			& .small_nav {
				display: block;
			}
        }
		& .small_nav {
			font-size: 18px;
			line-height: 20px;
			display: block;
			text-align: right;
			padding-top: 20px;
			& a {
				display: block;
				position: relative;
				padding-right: 10px;
				&:not(:last-child) {
					margin-right: 0;
					margin-bottom: 5px;
				}
				&::before {
					position: absolute;
					content: "";
					width: 5px;
					height: 5px;
					border-radius: 50%;
					background: var(--grey-color);
					right: 0;
					top: 50%;
					transform: translateY(-50%);
				}
			}
		}
    }
    .content {
        margin-bottom: 50px;
    }
    & .inner_content {
        margin-bottom: 50px;
    }
    .promo_section {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 50px;
        padding-bottom: 15px;
    }
    #js-show-iframe-wrapper {
        padding: 15px;
    }
    .wrap_main_banner {
        margin-bottom: 50px;
        height: calc(100% - 124px);
        max-height: unset;
        border: 4px solid var(--grey-color);
        border-top: 0;
		border-left: 0;
		border-right: 0;
        & .main_banner {
            border: 0;
            margin-bottom: 15px;
            height: calc(100% - 38px);
            & .item_banner {
                padding: 0;
                &.flex {
                    flex-direction: column;
                    & .media {
                        width: 100%;
                        height: auto;
						&::before {
							left: 50%;
							transform: translateX(-50%) rotate(-4deg);
							top: unset;
							bottom: 95%;
							width: 120vw;
							height: 200px;
						}
                    }
                    & .wrap_text {
                        width: 100%;
                        padding: 20px;
						position: static;
						align-content: flex-start;
						height: auto;
						min-height: 185px;
						& h4 {
							font-size: 22px;
							line-height: 24px;
						}
                    }
                }
            }
            & .media {
                width: 100%;
				flex-grow: 1;
            }
        }
        & .wrap {
            padding: 0;
        }
        & .arrow {
            display: none;
        }
        & .nav_main_banner {
            justify-content: center;
            padding: 0 20px;
        }
        & .dots {
            max-width: unset;
            width: 100%;
        }
        & .dot {
            width: auto;
            flex-grow: 1;
        }
    }
    .news_list {
        &.main {
            flex-wrap: nowrap;
            overflow: hidden;
            overflow-x: auto;
            margin-left: -20px;
            padding-left: 20px;
            &::-webkit-scrollbar-thumb {
                background: transparent;
                height: 0;
            }
            &::-webkit-scrollbar {
                background: transparent;
                height: 0;
            }
            & .item_new {
                width: calc(90vw - 20px);
                min-width: calc(90vw - 20px);
            }
        }
        & .wrap_image {
            border-radius: 0 30px 0 30px;
            margin-bottom: 15px;
        }
        & .title {
            font-size: 22px;
            line-height: 24px;
        }
        &:not(.main) {
            display: block;
            margin-right: 0;
            & .item_new {
                width: 100%;
                margin-right: 0;
                padding-right: 0;
                margin-bottom: 20px;
                padding-bottom: 20px;
                &::after {
                    width: 100%;
                    height: 4px;
                    border-right: 0;
                    border-bottom: 4px solid var(--grey-color);
                    top: unset;
                    transform: unset;
                    right: unset;
                    bottom: 0;
                    left: 0;
                }
            }
        }
    }
    .buttons_footer {
        justify-content: flex-start;
    }
    .go_to {
        font-size: 25px;
        line-height: 30px;
        background-size: 30px 30px;
        &::after {
            width: 100%;
        }
    }
    .banner_section {
        padding: 0 20px;
        height: auto;
		overflow: hidden;
		overflow-x: auto;
		margin-left: -20px;
		margin-right: -20px;
		width: auto;
		display: flex;
		margin-bottom: 30px;
		&::-webkit-scrollbar-thumb {
            background: transparent;
            height: 0;
        }
        &::-webkit-scrollbar {
            background: transparent;
            height: 0;
        }
        & .banner {
            width: 100%;
            margin-right: 15px;
			height: auto;
			width: calc(100vw - 80px);
			min-width: calc(100vw - 80px);
			max-width: calc(100vw - 80px);
            &:last-child {
                margin-right: 0;
            }
			& .progressive {
				& img {
					object-fit: contain;
				}
			}
        }
        &::before {
            display: none;
        }
         &::after {
            display: none;
        }
    }
    .catalog_item {
        display: block;
        margin-right: 0;
        padding: 20px 0;
        & .item {
            width: 100%;
            height: auto;
            margin-right: 0;
            padding-bottom: 0;
            padding-left: 50px;
            &:first-child {
                transform: none;
                margin-right: 0;
                height: auto;
            }
            &:not(:last-child) {
                margin-bottom: 5px;
            }
            & span {
                writing-mode: unset;
                transform: rotate(0);
            }
            &::after {
                width: 40px;
                height: calc(100% + 16px);
                bottom: -8px;
                left: 8px;
                writing-mode: tb-rl;
            }
            &::before {
                height: 100%;
                width: 9px;
                border-bottom: 0;
                border-left: 9px solid var(--red-color);
            }
        }
        &::before {
            right: -20px;
            width: 40%;
            height: 100%;
        }
    }
    .map_wrap {
        & .map {
            height: 250px;
            margin-left: -20px;
            margin-right: -20px;
            padding: 5px;
			border-left: 0;
			border-right: 0;
        }
    }
    .wrap_link_slider {
        &::before {
            top: 50%;
        }
    }
    .link_slider {
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
        padding-left: 20px;
        padding-bottom: 0;
        &::-webkit-scrollbar-thumb {
            background: transparent;
            height: 0;
        }
        &::-webkit-scrollbar {
            background: transparent;
            height: 0;
        }
        & .progressive {
            width: calc(90vw - 20px);
            min-width: calc(90vw - 20px);
        }
    }
    footer {
        padding: 40px 0 20px 0;
        & .footer_menu {
            display: block;
        }
        & .col {
            margin-bottom: 30px;
            padding-right: 0;
            & a {
                &.logo {
                    width: 100%;
                    height: 50px;
                }
				&:nth-last-child(2) {
					margin-bottom: 10px;
				}
            }
			& .soc_nav a {
				margin-bottom: 0;
			}
        }
        & nav {
            margin-bottom: 20px;
            font-size: 20px;
            line-height: 25px;
            &:nth-child(2) {
                padding-right: 0;
                column-count: 2;
                column-gap: 10px;
            }
        }
        & .footnote_footer {
            display: block;
            & .copyright {
                margin-bottom: 15px;
                margin-right: 0;
            }
        }
        .button {
            display: block;
        }
    }
    .fixed_buttons {
        & .scroll_top {
            width: 45px;
            height: 45px;
            right: 20px;
            bottom: 20px;
        }
    }
    .gallery_popup {
        padding-top: 80px;
        & .close {
            width: 30px;
            height: 30px;
            top: 20px;
            right: 20px;
        }
        & .slider {
            display: flex;
            flex-wrap: nowrap;
            overflow: hidden;
            overflow-x: auto;
            padding: 0 0 0 20px;
            & .image {
                margin-right: 20px;
                width: calc(100vw - 40px);
                min-width: calc(100vw - 40px);
                & img {
                    width: 100%;
                }
            }
            & img {
                display: block;
                position: static;
                width: calc(100% - 20px);
                transform: unset;
                left: 0;
                top: 0;
            }
            &::-webkit-scrollbar-thumb {
                height: 0;
                background: transparent;
            }
            &::-webkit-scrollbar {
                height: 0;
                background: transparent;
            }
        }
    }
    .close {
        &::after, &::before {
            border-color: var(--dark-color);
        }
    }
    .breadcrumbs_wrap {
        position: relative;
    }
    .breadcrumbs {
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: hidden;
        overflow-x: auto;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 70px;
        padding-top: 25px;
        padding-bottom: 25px;
        &::-webkit-scrollbar-thumb {
            height: 0;
            background: transparent;
        }
        &::-webkit-scrollbar {
            height: 0;
            background: transparent;
        }
        & li {
            margin: 0 5px 0 0;
            &:first-child {
                padding-left: 20px;
                padding-right: 15px;
                background: var(--light-color);
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
				&::before {
					right: 5px;
				}
            }
            &:last-child {
                margin-right: 20px;
            }
        }
        & a:not(.home_page) {
            padding-right: 25px;
        }
    }
    .filter {
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: hidden;
        overflow-x: auto;
        margin: 0 -20px 30px -20px;
        padding-left: 20px;
        &::-webkit-scrollbar-thumb {
            height: 0;
            background: transparent;
        }
        &::-webkit-scrollbar {
            height: 0;
            background: transparent;
        }
        & a {
            margin-bottom: 0;
            padding: 8px 15px;
            &:last-child {
                margin-right: 20px;
            }
        }
    }
    .pagination {
        justify-content: center;
        font-size: 18px;
        line-height: 20px;
    }
    .page_banner {
        margin-bottom: 40px;
        &.flex {
            min-height: unset;
            display: block;
            & .image_wrap {
                width: auto;
                margin: 0 -20px 30px -20px;
                & img {
                    position: static;
                }
                &::before {
                    height: 60px;
                }
                &::after {
                    height: 60px;
                }
            }
            & .text_wrap {
                width: 100%;
            }
        }
        & .text_wrap {
            display: block;
            & .date_ev {
                padding: 2px 10px;
                margin-bottom: 15px;
            }
            & h1 {
                font-size: 30px;
                line-height: 35px;
                margin-bottom: 20px;
            }
            & .text {
                padding-bottom: 30px;
            }
        }
    }
    .inner_page {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 80px;
		border-bottom: 0;
		margin-bottom: 0;
        &::after {
            display: none;
        }
        &::before {
            display: none;
        }
        & .content:last-child {
            margin-bottom: 0;
        }
        & .inner_image {
            height: auto;
            margin-left: -20px;
            margin-right: -20px;
            margin-bottom: 30px;
            &::before {
                height: 60px;
            }
            &::after {
                height: 60px;
            }
        }
    }
    .video_wrap {
        display: block;
        margin-right: 0;
        & .video {
            width: 100%;
            margin-right: 0;
            height: 200px;
        }
    }
    .flex_slider {
        overflow-x: auto;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        &::-webkit-scrollbar-thumb {
            background: transparent;
            height: 0;
        }
        &::-webkit-scrollbar {
            background: transparent;
            height: 0;
        }
        & .progressive {
            width: calc(100vw - 60px);
            min-width: calc(100vw - 60px);
        }
        & .zoom {
            &::before {
                opacity: 1;
                visibility: visible;
            }
        }
    }
    .wrap_inner_page {
        display: block;
        margin-left: 0;
        margin-bottom: 50px;
        & .wrap_nav {
            width: 100%;
            margin-bottom: 30px;
            text-transform: uppercase;
            & nav {
                width: 100%;
            }
			&.scroll_wrap {
				display: none;
			}
        }
        & .inner_page {
            width: auto;
            margin-right: -20px;
        }
        & h4 {
            font-size: 20px;
            line-height: 25px;
	    }
        & .flex_slider {
            & .progressive {
                height: 180px;
            }
        }
    }
    .items_list {
        & .item_doc {
            padding: 10px 15px;
            & .name {
                margin-bottom: 0;
            }
            & .text {
                margin-bottom: 15px;
            }
            & .button {
                width: 100%;
            }
			&.item_search {
				& .name {
					font-size: 20px;
					line-height: 25px;
				}
			} 
        }
    }
    .error_page {
        min-height: calc(100vh - 74px);
        & h2 {
            font-size: 90px;
            line-height: 95px;
        }
        & h4 {
            font-size: 20px;
            line-height: 25px;
        }
    }
    .calendar_page {
        display: block;
        & .wrap_calendar {
            width: 100%;
            margin-bottom: 40px;
        }
        & .calendar {
            width: 100%;
        }
        & .items_calendar {
            width: 100%;
            margin-right: 0;
        }
        & .item_calendar {
            display: block;
            &:not(:last-child) {
                margin-bottom: 30px;
            }
            & .image_wrap {
                width: 100%;
                margin-right: 0;
                margin-bottom: 15px;
                border-radius: 10px 0 10px 0;
            }
            & .tilte_wrap {
                flex: unset;
                margin-right: 10px;
                width: calc(100% - 40px);
                margin-bottom: 10px;
                &:last-child {
                    width: unset;
                    margin-bottom: 0;
                }
            }
            & .label {
                &.age {
                    width: 30px;
                    margin-right: 0;
                    padding-top: 5px;
                    font-size: 20px;
                    line-height: 20px;
                }
                &.time {
                    margin-bottom: 10px;
                    font-weight: 600;
                    & span {
                        display: inline;
                        font-weight: 400;
                    }
                }
            }
            & .text_wrap {
                & .introtext {
                    padding-top: 0;
                }
                &:first-child {
                    & .tilte_wrap {
                        width: unset;
                    }
                }
            }
        }
    }
	.search_page {
		& .search {
			margin-left: -20px;
			margin-right: -20px;
			margin-bottom: 40px;
			& .flex {
				display: block;
			}
			& .search_start {
				width: 100%;
			}
			& .search_fid {
				width: 100%;
			}
			& .wrap_input {
				width: 100%;
				margin-right: 0;
				margin-bottom: 10px;
				& input[type="text"] {
					padding: 9px 20px;
				}
			}
		}
		& .item_search {
			padding: 20px;
			margin-left: -20px;
			margin-right: -20px;
		}
	}
	.item_reviews {
		& .wrap_footnote_text {
			margin-left: 0;
			padding: 15px;
		}
	}
	.popup {
		& .wrap_popup {
			padding: 0;
			width: 100%;
		}
		& .content_popup {
			border-radius: 0;
			padding: 60px 5px 20px 0;
			font-size: 18px;
			line-height: 20px;
			& .scroll_content {
				padding-right: 15px;
				padding-left: 20px;
			}
			& .buttons {
				padding-top: 10px;
			}
		}
		& .close_popup {
			top: 20px;
			right: 20px;
		}
	}
	.droplist {
		display: none;
	}
	select.droplist {
		display: block;
		padding: 10px 40px 10px 10px;
		width: 100%;
		outline: none;
		border: 1px solid var(--grey-color);
		background: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		background: url(../icons/arrow_down.svg) right 10px center / contain no-repeat;
		background-size: 20px 20px;
		margin-bottom: 20px;
		color: var(--dark-color_bg);
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		& option {
			color: var(--dark-color);
		}
		&.selected {
			color: var(--dark-color);
		}
	}
	select::-ms-expand {
		display: none;
	}
	.page_form {
		font-size: 18px;
		line-height: 20px;
		& .wrap_input {
			margin-bottom: 20px;
			&::before {
				font-size: 16px;
				line-height: 18px;
			}
			& input, & textarea {
				font-size: 16px;
				line-height: 18px;
			}
		}
		& .buttons {
			& button {
				width: 100%;
			}
		}
	}
	.slide_list {
		& .wrap_name {
			padding: 10px;
			display: block;
		}
		& .name {
			width: auto;
			margin-right: 0;
			margin-bottom: 20px;
		}
		& .button {
			width: 100%;
		}
		& .list {
			padding-left: 10px;
		}
	}
	.top_nav {
		display: block;
		& .wrap_drop {
			width: 100%;
			&:not(:last-child) {
				margin-right: 0;
				margin-bottom: 20px;
			}
		}
	}
	.flex_tab_nav {
		display: block;
		& .name_nav {
			margin-right: 0;
			margin-bottom: 10px;
		}
		& .item_nav {
			margin-right: 0;
			&:not(:last-child) {
				margin-bottom: 10px;
			}
		}
	}
	.feedback_form {
		& textarea {
			height: 200px;
		}
		.agree {
			font-size: 18px;
			line-height: 20px;
		}
	}
	.wrap_form {
		padding: 10px;
	}
	.feedback_wrap_list {
		& .item_feedback {
			display: block;
		}
		& .wrap_inf:not(:last-child) {
			margin-right: 0;
			margin-bottom: 20px;
		}
	}
	.table {
		& .tr {
			display: block;
			& .td {
				&:first-child {
					width: auto;
					padding-right: 10px;
					border-right: 0;
					padding-bottom: 5px;
				}
				&:last-child {
					padding-left: 10px;
                	padding-top: 5px;
                	width: auto;
					&.flex_line {
						border-top: 1px solid var(--grey-color);
						& .item_line {
							&:nth-last-child(2) {
								width: unset;
								border-top: 0;
								flex: 1;
							}
							&:last-child {
								width: unset;
								border-top: 0;
								flex: 1;
							}
						}
						& .icon {
							width: 30px;
							height: 30px;
							&::after {
								width: 20px;
								height: 20px;
							}
						}
					}
				}
			}
			&.head_tr {
				display: none;
			}
		}
	}
	.search_page {
		& .item_search {
			& .title {
				font-size: 20px;
				line-height: 25px;
			}
		}
	}
	.wrap_banners {
		display: block;
		height: auto;
		& .wrap_pos {
			width: auto;
		}
	}
	.tooltip_text {
		left: 30px;
		width: calc(100% - 60px);
		& .close {
			top: calc(100% - 1px);
			border-right: 1px solid var(--grey-color);
			border-bottom: 1px solid var(--grey-color);
			border-left: 1px solid var(--grey-color);
			right: -1px;
			width: 30px;
			height: 30px;
		}
	}
	.articles_wrap {
		width: 100%;
		& .item_article {
			padding: 15px;
			display: block;
		}
		& .wrap_image {
			width: 90px;
			height: 90px;
			padding: 10px;
			margin-right: 0;
			margin-left: -25px;
			margin-top: -25px;
			margin-bottom: 15px;
		}
		& .wrap_text {
			width: auto;
		}
	}
	.item_audio {
		& .audio audio {
			width: 100%;
		}
	}
	.wrap_decor_imgage {
		padding-left: 20px;
		margin-left: -20px;
		margin-right: -20px;
		display: flex;
		justify-content: flex-end;
		padding-right: 20px;
		& .image {
			width: 50%;
		}
	}
	.wrap_border_item {
		& .item_border {
			display: block;
			&::before {
				display: none;
			}
		}
		& .wrap_text {
			width: 100%;
		}
		& .title {
			font-size: 25px;
			line-height: 30px;
			margin-bottom: 15px;
		}
		& .wrap_image {
			margin-right: 0;
			margin-bottom: 10px;
			margin-left: -30px;
			margin-top: -30px;
			width: calc(100% + 40px);
		}
	}
}

@media (max-width: 768px) {
    .catalog_flex {
        & .item_catalog {
            width: calc(50% - 20px);
        }
    }
}

@media (max-width: 475px) {
    .catalog_flex {
        display: block;
        margin-right: 0;
        & .item_catalog {
            width: auto;
            margin-right: 0;
            padding-right: 0;
            &::after {
                display: none;
            }
            &::before {
                right: unset;
                left: 50%;
                transform: translateX(-50%);
                width: 40%;
            }
        }
    }
    .book_page {
        margin-bottom: 50px;
        & .wrap_title {
            margin-bottom: 20px;
        }
        & .wrap_content {
            display: block;
            margin-left: 0;
        }
        & .wrap_image {
            width: 100%;
            margin-bottom: 20px;
            & .nav_col {
                width: 100%;
            }
            & .image {
                width: 100%;
                max-height: unset;
            }
            & .zoom {
                &::after {
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
        & .inner_page {
            width: 100%;
            margin-right: 0;
            margin-left: 0;
            padding: 0;
        }
    }
}

#js-show-iframe-wrapper{position:relative;display:flex;align-items:center;justify-content:center;width:100%;min-width:293px;max-width:100%;background:linear-gradient(138.4deg,#38bafe 26.49%,#2d73bc 79.45%);color:#fff;cursor:pointer}#js-show-iframe-wrapper .pos-banner-fluid *{box-sizing:border-box}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2{display:block;width:240px;min-height:56px;font-size:18px;line-height:24px;cursor:pointer;background:#0d4cd3;color:#fff;border:none;border-radius:8px;outline:0}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:hover{background:#1d5deb}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:focus{background:#2a63ad}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:active{background:#2a63ad}@-webkit-keyframes fadeInFromNone{0%{display:none;opacity:0}1%{display:block;opacity:0}100%{display:block;opacity:1}}@keyframes fadeInFromNone{0%{display:none;opacity:0}1%{display:block;opacity:0}100%{display:block;opacity:1}}@font-face{font-family:LatoWebLight;src:url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Light.woff2) format("woff2"),url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Light.woff) format("woff"),url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Light.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:LatoWeb;src:url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Regular.woff2) format("woff2"),url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Regular.woff) format("woff"),url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Regular.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:LatoWebBold;src:url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Bold.woff2) format("woff2"),url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Bold.woff) format("woff"),url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Bold.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:RobotoWebLight;src:url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Light.woff2) format("woff2"),url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Light.woff) format("woff"),url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Light.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:RobotoWebRegular;src:url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Regular.woff2) format("woff2"),url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Regular.woff) format("woff"),url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Regular.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:RobotoWebBold;src:url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Bold.woff2) format("woff2"),url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Bold.woff) format("woff"),url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Bold.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:ScadaWebRegular;src:url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Regular.woff2) format("woff2"),url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Regular.woff) format("woff"),url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Regular.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:ScadaWebBold;src:url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Bold.woff2) format("woff2"),url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Bold.woff) format("woff"),url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Bold.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:Geometria;src:url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria.eot);src:url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria.eot?#iefix) format("embedded-opentype"),url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria.woff) format("woff"),url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:Geometria-ExtraBold;src:url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria-ExtraBold.eot);src:url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria-ExtraBold.eot?#iefix) format("embedded-opentype"),url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria-ExtraBold.woff) format("woff"),url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria-ExtraBold.ttf) format("truetype");font-weight:800;font-style:normal}
#js-show-iframe-wrapper{background:var(--pos-banner-fluid-41__background)}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2{width:100%;min-height:52px;background:#fff;color:#0d4cd3;font-size:16px;font-family:LatoWeb,sans-serif;font-weight:400;padding:0;line-height:1.2;border:2px solid #0d4cd3}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:active,#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:focus,#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:hover{background:#e4ecfd}#js-show-iframe-wrapper .bf-41{position:relative;display:grid;grid-template-columns:var(--pos-banner-fluid-41__grid-template-columns);grid-template-rows:var(--pos-banner-fluid-41__grid-template-rows);width:100%;max-width:var(--pos-banner-fluid-41__max-width);box-sizing:border-box;grid-auto-flow:row dense}#js-show-iframe-wrapper .bf-41__decor{background:var(--pos-banner-fluid-41__bg-url) var(--pos-banner-fluid-41__bg-url-position) no-repeat;background-size:cover;position:relative;background-color:#fff}#js-show-iframe-wrapper .bf-41__content{display:flex;flex-direction:column;padding:var(--pos-banner-fluid-41__content-padding);grid-row:var(--pos-banner-fluid-41__content-grid-row);justify-content:center}#js-show-iframe-wrapper .bf-41__description{display:flex;flex-direction:column;margin:var(--pos-banner-fluid-41__description-margin)}#js-show-iframe-wrapper .bf-41__text{margin:var(--pos-banner-fluid-41__text-margin);font-size:var(--pos-banner-fluid-41__text-font-size);line-height:1.4;font-family:LatoWeb,sans-serif;font-weight:700;color:#0b1f33}#js-show-iframe-wrapper .bf-41__text_small{font-size:var(--pos-banner-fluid-41__text-small-font-size);font-weight:400;margin:0}#js-show-iframe-wrapper .bf-41__bottom-wrap{display:flex;flex-direction:row;align-items:center}#js-show-iframe-wrapper .bf-41__logo-wrap{position:absolute;top:var(--pos-banner-fluid-41__logo-wrap-top);left:0;padding:var(--pos-banner-fluid-41__logo-wrap-padding);background:#fff;border-radius:0 0 8px 0}#js-show-iframe-wrapper .bf-41__logo{width:var(--pos-banner-fluid-41__logo-width);margin-left:1px}#js-show-iframe-wrapper .bf-41__slogan{font-family:LatoWeb,sans-serif;font-weight:700;font-size:var(--pos-banner-fluid-41__slogan-font-size);line-height:1.2;color:#005ca9}#js-show-iframe-wrapper .bf-41__btn-wrap{width:100%;max-width:var(--pos-banner-fluid-41__button-wrap-max-width)}