@charset "UTF-8";
@font-face {
	font-family: 'Georgia';
	src: url("../fonts/subset-Georgia.woff2") format("woff2"), url("../fonts/subset-Georgia.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Georgia';
	src: url("../fonts/subset-Georgia-Italic.woff2") format("woff2"), url("../fonts/subset-Georgia-Italic.woff") format("woff");
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'Georgia';
	src: url("../fonts/subset-Georgia-BoldItalic.woff2") format("woff2"), url("../fonts/subset-Georgia-BoldItalic.woff") format("woff");
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: 'Georgia';
	src: url("../fonts/subset-Georgia-Bold.woff2") format("woff2"), url("../fonts/subset-Georgia-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'DINPro';
	src: url("../fonts/subset-DINPro-Regular.woff2") format("woff2"), url("../fonts/subset-DINPro-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'DINPro';
	src: url("../fonts/subset-DINPro-Light.woff2") format("woff2"), url("../fonts/subset-DINPro-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'DINPro';
	src: url("../fonts/subset-DINPro-Bold.woff2") format("woff2"), url("../fonts/subset-DINPro-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'DINPro';
	src: url("../fonts/subset-DINPro-Black.woff2") format("woff2"), url("../fonts/subset-DINPro-Black.woff") format("woff");
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'DINPro';
	src: url("../fonts/subset-DINPro-Medium.woff2") format("woff2"), url("../fonts/subset-DINPro-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
}

* {
	outline: none !important;
}

html,
body {
	font-family: 'Georgia', sans-serif;
	font-size: 20px;
	line-height: 1.75;
	font-weight: normal;
	color: #000;
	background: #fff;
}

h1,
.h1 {
	font-family: 'DINPro';
	font-weight: bold;
	font-size: 55px;
	line-height: 62px;
	text-transform: uppercase;
	color: #000000;
	margin: 0 0 33px 0;
}

h2,
.h2 {
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 45px;
	line-height: 52px;
	color: #000000;
	margin: 57px 0 35px 0;
}

h3,
.h3 {
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 35px;
	line-height: 42px;
	color: #000000;
	margin: 59px 0 32px 0;
}

h4,
.h4 {
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 25px;
	line-height: 34px;
	color: #000000;
	margin: 51px 0 24px 0;
}

h1:first-child,
.h1:first-child,
h2:first-child,
.h2:first-child,
h3:first-child,
.h3:first-child,
h4:first-child,
.h4:first-child {
	margin-top: 0 !important;
}

main a,
main a:focus {
	color: #479BFF;
	text-decoration: none;
	transition: all .15s ease;
	border-bottom: 2px solid #479BFF;
}

main a:hover {
	text-decoration: none;
	color: #479BFF;
	border-color: #FDB930;
}

p {
	margin: 0 0 20px 0;
}

p:last-child {
	margin-bottom: 0;
}

main ul {
	margin: 0 0 32px 0;
	padding: 0;
	list-style: none;
}

main ul > li {
	padding: 0 0 0 40px;
	margin: 0 0 15px 0;
	position: relative;
}

main ul > li:before {
	content: "";
	width: 10px;
	height: 10px;
	background: #FDB930;
	position: absolute;
	left: 8px;
	top: 12px;
}

main ol {
	padding: 0;
	margin: 0 0 32px 0;
	counter-reset: item;
	list-style: none;
}

main ol > li {
	position: relative;
	padding: 0 0 0 40px;
	margin: 0 0 15px 0;
}

main ol > li:before {
	color: #FDB930;
	font-family: 'DINPro';
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 0;
	content: "0" counter(item) " ";
	counter-increment: item;
}

main ol > li:nth-child(n+10):before {
	content: counter(item) " ";
}

main ol > li > ol {
	margin-top: 6px;
}

main ol > li > ol > li {
	font-size: 14px;
}

main ol > li > ol > li:before {
	content: counters(item, ".") "";
	counter-increment: item;
}

main table {
	width: 100%;
	font-family: 'DINPro';
	font-size: 16px;
	line-height: 26px;
	color: #272E33;
	margin: 0 0 40px 0;
}

main table th {
	border-top: 2px solid #FDB930;
	border-bottom: 2px solid #FDB930;
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #000000;
	vertical-align: top;
	padding: 20px 15px 20px 15px;
}

main table td {
	border-bottom: 1px solid #C4C4C4;
	vertical-align: top;
	padding: 22px 15px 22px 15px;
}

main table th:first-child,
main table td:first-child {
	padding-left: 0;
}

main table th:last-child,
main table td:last-child {
	padding-right: 0;
}

/* Buttons */
.btn,
.btn:focus {
	box-shadow: none;
	background-color: transparent;
	text-decoration: none !important;
	border-radius: 0;
	vertical-align: top;
	border: none;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	box-shadow: none;
	text-align: center;
	transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease, box-shadow .2s ease, font-size .2s ease;
}

.btn:active {
	box-shadow: none;
}

.btn-1,
.btn-1:focus {
	font-weight: normal;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	color: #000000;
	padding: 0 8px;
	transition: none;
}

.btn-1:hover {
	color: #000;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
}

.btn-1:active {
	color: #000;
}

.btn-1:before {
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	background-image: url(../images/btn-1-l-hover.png), url(../images/btn-1-r-hover.png);
	background-size: 0 0;
	border-top: 8px solid #FDB930;
	border-bottom: 8px solid #FDB930;
}

.btn-1:hover:before {
	top: -2px;
	bottom: -2px;
}

.btn-1 span,
.btn-1:focus span {
	display: block;
	position: relative;
	padding: 16px 22px 16px 22px;
	transition: background-size .35s ease;
	background: linear-gradient(#FDB930, #FDB930);
	background-size: 100% 100%;
	background-position: center 0;
	background-repeat: no-repeat;
}

.btn-1:hover span {
	padding-top: 14px;
	padding-bottom: 14px;
	background-size: 0 100%;
	padding: 14px 22px 14px 22px;
}

.btn-1 span:before {
	content: "";
	width: 8px;
	position: absolute;
	right: 100%;
	top: 0;
	bottom: 0;
	background: url(../images/btn-1-l.png) 0 center no-repeat;
	background-size: 8px auto;
}

.btn-1 span:after {
	content: "";
	width: 8px;
	position: absolute;
	left: 100%;
	top: 0;
	bottom: 0;
	background: url(../images/btn-1-r.png) 0 center no-repeat;
	background-size: 8px auto;
}

.btn-ticket,
.btn-ticket:focus {
	font-size: 15px;
	line-height: 20px;
	text-transform: uppercase;
	color: #121212;
	position: relative;
	padding: 12px 18px 12px 18px;
}

.btn-ticket:hover {
	color: #121212;
}

.btn-ticket:active {
	color: #121212;
}

.btn-ticket:before {
	content: "";
	background: #FDB930;
	width: 40px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	transition: all .35s ease;
}

.btn-ticket:hover:before {
	width: 100%;
}

.btn-ticket span {
	position: relative;
}

.btn-dl,
.btn-dl:focus {
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #000;
	padding: 0 0 8px 32px;
	display: inline-block;
	position: relative;
}

.btn-dl:before {
	content: "";
	position: absolute;
	width: 18px;
	height: 22px;
	background: url(../images/ico-btn-dl.png) 0 0 no-repeat;
	background-size: 18px auto;
	left: 0;
	top: -1px;
}

.btn-dl:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #479BFF;
	height: 2px;
	transition: all .3s ease;
}

.btn-dl:hover:after {
	width: 46px;
}

.btn-email,
.btn-email:focus {
	font-family: 'Georgia';
	font-size: 16px;
	line-height: 24px;
	padding: 4px 0 6px 0;
	letter-spacing: 3px;
	border-bottom: 2px solid #479BFF;
}

.btn-email:hover {
	border-bottom-color: #FDB930;
}

.btn-email + .btn-email {
	margin-top: 4px;
}

.btn-ticket-small,
.btn-ticket-small {
	padding-top: 10px;
	padding-bottom: 10px;
}

/* Buttons END */
/* Forms */
.form-group {
	position: relative;
	margin: 0 0 30px 0;
	padding: 18px 0 0 0;
}

label {
	display: block;
	font-size: 12px;
	line-height: 15px;
	color: rgba(0, 0, 0, 0.5);
	margin: 0;
}

label.placeholder {
	font-family: 'Georgia';
	position: absolute;
	left: 17px;
	top: 33px;
	font-size: 18px;
	line-height: 24px;
	font-weight: normal;
	letter-spacing: 2px;
	text-transform: uppercase;
	max-width: 100%;
	padding: 0;
	color: #000;
	transition: all .3s ease;
}

label.placeholder.active {
	font-size: 14px;
	color: #727272;
	top: 0px;
}

label.error {
	font-family: 'DINPro';
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
	margin: 3px 0 0 17px;
	color: #E70707;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
}

label.error:before {
	content: "* ";
}

input[type=text],
input[type=email],
input[type=password],
textarea {
	font-family: 'DINPro';
	display: block;
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 2px solid #000;
	-webkit-appearance: none;
	font-size: 30px;
	line-height: 42px;
	font-weight: normal;
	color: #000;
	padding: 0 17px 11px 17px;
}

textarea {
	resize: none;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
	border-color: #479bff;
}

input[type=text].error,
input[type=email].error,
input[type=password].error,
textarea.error {
	border-color: #E70707 !important;
	color: #E70707 !important;
}

textarea {
	display: block;
	margin: 0;
}

.form-radio,
.form-checkbox {
	margin: 0 0 10px 0;
}

.form-radio:last-child,
.form-checkbox:last-child {
	margin-bottom: 0;
}

input[type=checkbox],
input[type=radio] {
	position: absolute;
	visibility: hidden;
}

input[type=checkbox] + label,
input[type=radio] + label {
	font-family: 'DINPro';
	padding: 0 0 0 26px;
	position: relative;
	cursor: pointer;
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	/* or 137% */
	text-transform: none;
	letter-spacing: 0;
	color: #000000;
}

input[type=checkbox] + label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 16px;
	height: 16px;
	background: #FFFFFF;
	border: 1px solid #0A0C19;
	transition: all .2s ease;
	background-image: url(../images/checkbox.svg);
	transition: all .2s ease;
	background-position: center center;
	background-size: 0 0;
	background-repeat: no-repeat;
}

input[type=checkbox]:checked + label:before {
	border-color: #FFC42E;
	background-color: #FFC42E;
	background-size: 9px 7px;
}

input[type=radio] + label:before {
	content: "";
	position: absolute;
	left: 0;
	top: -1px;
	width: 32px;
	height: 32px;
	background: #FFFFFF;
	border-radius: 50%;
	border: 3px solid #EDEDED;
	transition: all .2s ease;
}

input[type=radio]:checked + label:before {
	border-color: #FFC42E;
	border-width: 10px;
}

.form-agree .form-checkbox {
	margin: 0;
}

.form-agree input[type=checkbox] + label {
	font-family: 'Georgia';
	font-style: italic;
	font-weight: normal;
	font-size: 13px;
	line-height: 18px;
	padding: 0 0 0 35px;
	color: #6A6A6A;
}

.form-agree input[type=checkbox] + label:before {
	width: 20px;
	height: 20px;
	border: none !important;
	background-color: #FDB930 !important;
	background-image: url(../images/checkbox-agree.svg);
	background-position: center center;
	background-size: 0 0;
	background-repeat: no-repeat;
	transition: all .15s ease;
	top: -2px;
}

.form-agree input[type=checkbox]:checked + label:before {
	background-size: 9px 7px;
}

.checkbox-label-error {
	color: #e70707 !important;
}

.bootstrap-select > .dropdown-toggle,
.bootstrap-select > .dropdown-toggle:focus {
	font-family: 'DINPro';
	display: block;
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 2px solid #000;
	-webkit-appearance: none;
	font-weight: normal;
	color: #000;
	padding: 0 50px 11px 17px;
	outline: none !important;
	font-size: 0;
	line-height: 0;
}

.bootstrap-select.btn-group-error > .dropdown-toggle,
.bootstrap-select.btn-group-error > .dropdown-toggle:focus {
	border-bottom-color: #e70707;
}

.bootstrap-select.show > .dropdown-toggle,
.bootstrap-select.show > .dropdown-toggle:focus {
	border-bottom-color: #479BFF;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
	color: #000;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
	font-size: 30px;
	line-height: 42px;
}

.bootstrap-select.btn-group .dropdown-toggle.bs-placeholder .filter-option {
	color: transparent;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
	width: 13px;
	height: 9px;
	background: none;
	position: absolute;
	right: 18px;
	top: 23px;
	margin: 0;
	display: block;
	vertical-align: top;
}

.bootstrap-select.btn-group .dropdown-toggle .caret:before {
	content: "";
	display: block !important;
	width: 13px;
	height: 9px;
	background: url(../images/select-arrow.svg) 0 0 no-repeat;
	background-size: 13px auto;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .15s ease;
	opacity: 1;
}

.bootstrap-select.btn-group.show .dropdown-toggle .caret:before {
	opacity: 0;
}

.bootstrap-select.btn-group .dropdown-toggle .caret:after {
	content: "";
	display: block !important;
	width: 13px;
	height: 9px;
	background: url(../images/select-arrow-active.svg) 0 0 no-repeat;
	background-size: 13px auto;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .15s ease;
	opacity: 0;
}

.bootstrap-select.btn-group.show .dropdown-toggle .caret:after {
	opacity: 1;
}

.bootstrap-select.btn-group .dropdown-toggle:after,
.bootstrap-select.btn-group .dropdown-toggle .caret:after {
	display: none;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	width: 100%;
}

.bootstrap-select.btn-group .dropdown-menu {
	font-family: 'DINPro';
	margin: -2px 0 0 0;
	padding: 0 0;
	border-radius: 0;
	border: none;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.bootstrap-select.btn-group .dropdown-menu.inner {
	display: block;
}

.bootstrap-select.btn-group .dropdown-menu li {
	padding: 0 !important;
	margin: 0 !important;
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
}

.bootstrap-select.btn-group .dropdown-menu li.disabled {
	display: none;
}

.bootstrap-select.btn-group .dropdown-menu li:before {
	display: none !important;
}

.bootstrap-select.btn-group .dropdown-menu li a {
	display: block;
	padding: 7px 17px 12px 17px;
	color: #000;
	border-bottom: 1px solid #F4F4F4 !important;
}

.bootstrap-select.btn-group .dropdown-menu li a:hover {
	background: none;
	color: #479BFF;
}

.bootstrap-select.btn-group .dropdown-menu li.selected a {
	font-weight: bold;
}

div.dropdown-menu {
	z-index: 10000;
}

.form-agree {
	font-size: 12px;
	line-height: 20px;
	font-weight: 300;
	color: #000;
	margin: 30px 0 0 0;
}

.form-agree a,
.form-agree a:focus {
	color: #000;
	text-decoration: underline;
}

.form-agree a:hover {
	text-decoration: none;
}

.form-file {
	text-align: center;
}

.form-file .file-caption {
	-ms-flex-order: 2 !important;
	order: 2 !important;
	width: auto !important;
	height: auto !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	outline: none !important;
	display: none;
	background: none !important;
	border-radius: 0 !important;
}

.file-caption.icon-visible {
	display: block;
	overflow: hidden;
}

.form-file .file-caption-name {
	font-size: 14px;
	line-height: 22px;
	font-weight: bold;
	text-align: left !important;
	padding: 0 !important;
	color: #FFD600;
	margin: 0 0 0 35px;
}

.form-file .input-group-append {
	-ms-flex-pack: center !important;
	justify-content: center !important;
	height: 22px !important;
}

.form-file .btn-file,
.form-file .btn-file:focus {
	font-weight: bold;
	font-size: 0 !important;
	line-height: 22px !important;
	height: 22px !important;
	/* or 260% */
	text-align: center;
	color: #FFD600;
	padding: 0 0 0 35px !important;
	background: none !important;
	border-radius: 0 !important;
	cursor: pointer;
	display: block;
	position: relative;
	transition: all .15s ease;
}

.form-file .btn-file span {
	font-size: 14px;
}

.form-file .btn-file:hover {
	color: #fff;
}

.form-file .btn-file:before {
	content: "";
	width: 20px;
	height: 20px;
	background: url(../images/ico-file.png) 0 0 no-repeat;
	background-size: 20px auto;
	position: absolute;
	left: 0;
	top: 0;
}

.form-file .btn-file:hover:before {
	background-position: 0 -20px;
}

.fileinput-remove {
	display: none !important;
	position: absolute !important;
	top: 100%;
	left: 0;
	padding: 0 !important;
	margin: 9px 0 0 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
	width: 20px !important;
	height: 20px !important;
	box-shadow: none !important;
	background: url(../images/ico-remove.png) 0 0 no-repeat;
	background-size: 20px auto;
	background-color: transparent !important;
}

.fileinput-remove:hover {
	background-position: 0 -20px;
}

.fileinput-remove i {
	display: none !important;
}

.form-file .input-group-btn {
	position: relative;
	font-size: 14px !important;
	line-height: 22px !important;
	margin: 0 !important;
}

.file-caption.icon-visible + .input-group-btn .fileinput-remove {
	display: block !important;
}

.file-caption + .input-group-btn {
	display: block !important;
}

.btn-file i {
	display: none !important;
}

.btn-file .kv-upload-progress {
	display: none !important;
}

.form-group-file.form-group-error:after {
	content: "Выберите файл";
	font-size: 11px;
	line-height: 15px;
	text-align: right;
	margin: 13px 0 0 0;
	color: #FF0006;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
}

.form-group-file label.error {
	display: none !important;
}

.subscribe-form input[type=text],
.subscribe-form input[type=email],
.subscribe-form input[type=password],
.subscribe-form textarea {
	color: #fff;
	background: #161825;
	padding: 14px 29px 16px 29px;
	font-size: 18px;
	line-height: 26px;
	font-weight: normal;
	border: 1px solid #161825;
}

.subscribe-form input[type=text]:focus,
.subscribe-form input[type=email]:focus,
.subscribe-form input[type=password]:focus,
.subscribe-form textarea:focus {
	border-color: #3e3f49;
}

.filter-form .form-group {
	margin: 0 0 52px 0;
}

.filter-form .form-item {
	margin: 0 0 29px 0;
}

.filter-form label {
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #727272;
	margin: 0 0 5px 0;
	word-wrap: break-word;
}

.filter-form .bootstrap-select {
	max-width: 142px;
}

.filter-form .bootstrap-select > .dropdown-toggle,
.filter-form .bootstrap-select > .dropdown-toggle:focus {
	border-bottom: 2px solid #479BFF;
	padding: 9px 20px 9px 0;
}

.filter-form .bootstrap-select.show > .dropdown-toggle,
.filter-form .bootstrap-select.show > .dropdown-toggle:focus {
	border-color: #FDB930;
}

.filter-form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
	font-family: 'DINPro';
	font-size: 15px;
	line-height: 20px;
	font-weight: bold;
	color: #000;
}

.filter-form .bootstrap-select.btn-group .dropdown-toggle.bs-placeholder .filter-option {
	font-weight: normal;
}

.filter-form .bootstrap-select.btn-group .dropdown-toggle .caret {
	width: 6px;
	height: 10px;
	background: url(../images/select-arrow-filter.svg) 0 0 no-repeat;
	position: absolute;
	right: 0;
	top: 16px;
	margin: 0;
	display: block;
	vertical-align: top;
	transition: all .15s ease;
}

.filter-form .bootstrap-select.btn-group .dropdown-toggle .caret:before,
.filter-form .bootstrap-select.btn-group .dropdown-toggle .caret:after {
	display: none !important;
}

.filter-form .bootstrap-select.btn-group .dropdown-menu {
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
	background: #fff;
	color: #000000;
}

.filter-form .bootstrap-select.btn-group .dropdown-menu li {
	font-family: 'DINPro';
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
}

.filter-form .bootstrap-select.btn-group .dropdown-menu li:hover,
.filter-form .bootstrap-select.btn-group .dropdown-menu li.selected {
	font-weight: bold;
}

.filter-form .bootstrap-select.btn-group .dropdown-menu li a {
	border: none;
	color: #000000 !important;
	display: block;
	position: relative;
	padding: 4px 15px 6px 15px;
}

.filter-form .bootstrap-select.btn-group .dropdown-menu li a:after {
	content: "";
	height: 1px;
	background: #F4F4F4;
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 0;
}

.filter-form .bootstrap-select.btn-group .dropdown-menu li:last-child a:after {
	display: none;
}

.filter-form .select-hidden {
	display: none !important;
}

.btn-select,
.btn-select:focus {
	border-bottom: 2px solid #479BFF;
	padding: 9px 20px 9px 0;
	font-family: 'DINPro';
	font-size: 15px;
	line-height: 20px;
	font-size: 15px;
	line-height: 20px;
	color: #000;
	width: 100%;
	max-width: 142px;
	text-align: left;
	position: relative;
}

.btn-select:after {
	position: absolute;
	content: "";
	width: 6px;
	height: 10px;
	background: url(../images/select-arrow-filter.svg) 0 0 no-repeat;
	position: absolute;
	right: 0;
	top: 16px;
	margin: 0;
	display: block;
	vertical-align: top;
	transition: all .15s ease;
}

.btn-select.active {
	font-weight: bold;
}

.btn-select span {
	overflow: hidden;
	display: block;
}

/* Forms END */
/* Modals */
.modal-backdrop {
	background-color: #000;
	display: none !important;
}

.modal-backdrop.show {
	opacity: .5;
}

.modal {
	background: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
	width: auto;
	padding: 40px 40px;
	max-width: 1320px;
	min-height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto 0 auto;
	position: relative;
}

.modal-content {
	background: #fff;
	border: none;
	border-radius: 0;
	padding: 106px 107px 176px 107px;
}

.modal .close {
	opacity: 1 !important;
	position: absolute;
	right: -36px;
	top: -36px;
	width: 30px;
	height: 30px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	transition: all .2s ease;
	cursor: pointer;
	pointer-events: auto;
}

.modal-header {
	display: block;
	padding: 0;
	margin: 0 0 56px 0;
	border: none;
	position: relative;
}

.modal h2,
.modal .h2 {
	font-family: 'DINPro';
	font-weight: bold;
	font-size: 55px;
	line-height: 62px;
	text-transform: uppercase;
	color: #000000;
	margin: 0;
}

.modal-header .sub-ttl {
	color: #ff0;
	font-size: 18px;
	line-height: 28px;
}

.success-modal-button {
	margin: 30px 0 0 0;
}

.modal-body {
	padding: 0;
}

.modal .form-footer .btn {
	width: 100%;
}

.modal .form-agree {
	margin: -3px 0 0 0;
}

.modal-info {
	font-weight: normal;
	font-size: 24px;
	line-height: 36px;
	color: #FFD600;
	margin: 13px 0 0 0;
}

.select-modal {
	color: #000;
	padding: 15px !important;
}

.select-modal .modal-dialog {
	max-width: 1058px;
	margin: 0 auto !important;
	padding: 0;
	background: none;
}

.select-modal .modal-content {
	background: #fff;
	box-shadow: -15px 27px 88px rgba(0, 0, 0, 0.1);
	padding: 34px 50px 30px 50px;
}

.select-modal .close {
	width: 30px;
	height: 30px;
	background: none;
	position: absolute;
	right: 9px;
	top: 9px;
	left: auto;
}

.select-modal .close:before {
	content: "";
	width: 18px;
	height: 18px;
	background: url(../images/close-select-modal.png) 0 0 no-repeat;
	background-size: 18px auto;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -9px 0 0 -9px;
}

.select-modal .modal-header {
	padding: 0;
	margin: 0 0 34px 0;
}

.select-modal .modal-body {
	padding: 0;
	margin: 0;
}

.select-modal .modal-header h2,
.select-modal .modal-header .h2 {
	font-size: 30px;
	line-height: 38px;
	color: #000;
	font-weight: 500;
	margin: 0;
}

/* Modals END */
.over-wrapper {
	overflow: hidden;
	margin: 0 auto;
}

header {
	padding: 0 0 22px 0;
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1100;
	transition: all .3s ease;
	background: #fff;
}

header a {
	border: none;
}

.header-poster img {
	width: 100%;
}

.header-top {
	border-bottom: 1px solid #EEEEEE;
	font-size: 14px;
	line-height: 20px;
	padding: 13px 0 7px 0;
}

.header-top .row {
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header-top-col-1 {
	padding: 0 15px;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -ms-flexbox;
	display: flex;
}

.header-top-col-2 {
	padding: 0 15px;
	-ms-flex-preferred-size: 16.6%;
	flex-basis: 16.6%;
}

.header-top-col-3 {
	padding: 0 15px;
	-ms-flex-preferred-size: 9.2%;
	flex-basis: 9.2%;
}

.header-top-col-4 {
	padding: 0 15px;
	-ms-flex-preferred-size: 27.3%;
	flex-basis: 27.3%;
}

.header-director {
	font-family: 'DINPro';
	font-size: 14px;
	line-height: 17px;
	margin: -6px 52px 0 0;
	text-decoration: none !important;
	display: block;
}

.header-director-ttl {
	color: #606060;
	font-weight: 500;
}

.header-director-name {
	font-weight: bold;
	color: #000;
	text-transform: uppercase;
}

.header-gov {
	font-family: 'DINPro';
	font-size: 14px;
	line-height: 15px;
	font-weight: 500;
	color: #606060;
	position: relative;
	padding: 0 0 0 35px;
	margin: -5px 0 0 0;
}

.header-gov-ico {
	-ms-flex-preferred-size: 25px;
	flex-basis: 25px;
	position: absolute;
	left: 0;
	top: 2px;
}

.header-gov-ico img {
	width: 25px;
}

.header-gov-text a,
.header-gov-text a:focus {
	color: #B0B0B0 !important;
	text-decoration: none !important;
	transition: .2em;
}

.header-gov-text a:hover {
	color: #FDB930 !important;
}

.header-special {
	font-family: 'DINPro';
	font-weight: 500;
}

a.header-special-link,
a.header-special-link:focus {
	color: #606060;
	text-decoration: none;
	position: relative;
	padding: 0 0 0 35px;
	display: inline-block;
	transition: all .2s ease;
}

a.header-special-link:hover {
	color: #FDB930;
}

a.header-special-link:before {
	content: "";
	width: 25px;
	height: 10px;
	background: url(../images/ico-header-special.svg) 0 0 no-repeat;
	position: absolute;
	left: 0;
	top: 5px;
}

ul.lang-menu {
	font-family: 'DINPro';
	display: -ms-flexbox;
	display: flex;
	margin: 0 -5px;
	padding: 0;
	list-style: none;
	font-weight: 500;
}

ul.lang-menu > li {
	margin: 0 5px;
	padding: 0;
}

ul.lang-menu a {
	color: #606060;
	text-decoration: none;
	display: inline-block;
	transition: all .2s ease;
}

ul.lang-menu a:hover,
ul.lang-menu a.active {
	color: #FDB930;
}

.header-col-1 {
	padding: 0 15px;
}

.header-col-2 {
	padding: 0 15px;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.header-col-3 {
	padding: 0 15px;
}

.header-contacts {
	display: -ms-flexbox;
	display: flex;
	padding-top: 34px;
	padding-left: 30px;
	margin: 0 -40px;
	font-family: 'DINPro';
	-ms-flex-pack: center;
	justify-content: center;
}

.header-contacts-item {
	padding: 0 40px;
}

.header-contacts-item-ttl {
	font-family: 'Georgia';
	font-size: 11px;
	line-height: 21px;
	/* identical to box height, or 191% */
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #727272;
	margin: 0 0 1px 0;
}

.header-contacts-item-address {
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #000000;
}

.header-contacts-item-address a,
.header-contacts-item-address a:focus {
	color: #000 !important;
	text-decoration: none !important;
	border: none !important;
}

.header-contacts-item-phone {
	font-weight: 500;
	font-size: 18px;
	line-height: 21px;
	letter-spacing: 2px;
	color: #000000;
	position: relative;
	margin: 3px 0 0 0;
}

.header-contacts-item-phone a {
	color: #000 !important;
	text-decoration: none !important;
	position: relative;
}

.header-contacts-item-phone:before {
	content: "";
	width: 25px;
	height: 25px;
	position: absolute;
	left: -20px;
	top: -1px;
	background: #FDB930;
}

.header-logo {
	padding: 29px 0 0 0;
}

.header-button {
	padding: 42px 0 0 0;
}

.header-button .btn-1,
.header-button .btn-1:focus {
	min-width: 212px;
}

.header-button .btn-1 span,
.header-button .btn-1:focus span {
	padding: 16px 17px 16px 17px;
}

.header-button .btn-1:hover span {
	padding-top: 14px;
	padding-bottom: 14px;
}

.header-button span.ttl-normal {
	display: block !important;
}

.header-button span.ttl-fixed {
	display: none !important;
}

.navbar-wrapper {
	margin: 31px 0 0 0;
}

ul.navbar-nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 -10px;
	font-weight: bold;
	font-family: 'DINPro';
	font-size: 18px;
	line-height: 24px;
	text-align: justify;
	letter-spacing: 2px;
	text-transform: uppercase;
}

ul.navbar-nav > li {
	padding: 0 10px;
	margin: 0;
	position: relative;
}

ul.navbar-nav a {
	color: #141517;
	text-decoration: none;
	border-bottom: 2px solid #479BFF;
	transition: all .15s ease;
}

ul.navbar-nav a:hover,
ul.navbar-nav a.active {
	border-color: #FDB930;
}

ul.navbar-nav li.merch a,
ul.navbar-nav li.merch a:focus {
	border: none !important;
	background: #FDB930;
	padding: 4px 16px 5px 16px;
}

@media (min-width: 992px) {
	.header-fixed {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
		padding-bottom: 20px;
		min-height: 60px;
	}

	.header-fixed .header-poster,
	.header-fixed .header-top {
		display: none;
	}

	.header-fixed .header-col-2 {
		display: none;
	}

	.header-fixed .header-logo {
		position: absolute;
		left: 0;
		top: 6px;
		width: 54px;
		height: 50px;
		background: url(../images/logo-fixed.svg) 0 0 no-repeat;
	}

	.header-fixed .header-logo a {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.header-fixed .header-logo img {
		display: none;
	}

	.header-fixed .header-button {
		position: absolute;
		right: 0;
		top: -35px;
	}

	.header-fixed ul.navbar-nav {
		font-size: 17px;
	}

	.header-fixed .header-content {
		position: relative;
	}

	.header-fixed .navbar-wrapper {
		margin: 18px 155px 0 85px;
	}

	.header-fixed .header-button span.ttl-normal {
		display: none !important;
	}

	.header-fixed .header-button span.ttl-fixed {
		display: block !important;
	}

	.header-fixed .header-button .btn-1,
	.header-fixed .header-button .btn-1:focus {
		font-size: 15px;
		min-width: 0;
	}

	.header-fixed .header-button .btn-1 span,
	.header-fixed .header-button .btn-1:focus span {
		padding: 13px 21px 11px 21px;
	}

	.header-fixed .header-button .btn-1:hover span {
		padding: 11px 21px 9px 21px;
	}
}

.page-pic {
	text-align: center;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

.ov-v {
	overflow: visible !important;
}

.page-pic .container {
	padding: 0 !important;
	width: 1240px !important;
}

.page-pic img {
	max-width: 100%;
	margin: -100px 0 -100px 0;
}

.play-slider img {
	margin: -50px 0 -50px 0;
}

main {
	padding-top: 13px;
	padding-bottom: 100px;
}

ul.breadcrumb {
	font-family: 'DINPro';
	font-size: 14px;
	line-height: 20px;
	font-weight: normal;
	color: rgba(166, 166, 166, 0.9);
	padding: 0;
	margin: 0 0 10px 0;
	border-radius: 0;
	background: none;
}

ul.breadcrumb > li {
	margin: 0 15px 0 0;
	padding: 0 15px 0 0;
	position: relative;
}

ul.breadcrumb > li:before {
	display: none;
}

ul.breadcrumb > li:after {
	content: "";
	width: 6px;
	height: 7px;
	background: url(../images/breadcrumb-arrow.svg) 0 0 no-repeat;
	position: absolute;
	right: -4px;
	top: 8px;
}

ul.breadcrumb > li:last-child:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

ul.breadcrumb a {
	text-decoration: none;
	color: rgba(166, 166, 166, 0.9);
	border: none;
}

.page-sidebar {
	min-height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 21px 0 0 0;
}

ul.page-menu {
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

ul.page-menu > li {
	margin: 0 0 18px 0;
	padding: 0;
}

ul.page-menu > li:before {
	display: none;
}

ul.page-menu a {
	color: #141517;
	text-decoration: none;
	transition: all .15s ease;
	border-bottom: 2px solid transparent;
}

ul.anchors-menu a {
	border-bottom-style: dashed;
}

ul.page-menu a:hover,
ul.page-menu a.active {
	border-color: #FDB930;
}

ul.page-submenu {
	background: #fff;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
	border-top: 2px solid #479BFF;
	margin: 4px 0 26px 0;
	padding: 15px 15px 20px 15px;
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	text-transform: none;
	letter-spacing: 0;
	max-width: 142px;
}

ul.page-submenu > li {
	margin: 0 0 10px 0;
	padding: 0;
}

ul.page-submenu > li:last-child {
	margin: 0;
}

ul.page-submenu > li:before {
	display: none;
}

.page-content {
	padding: 5px 0 0 0;
	position: relative;
	background: #fff;
}

.page-content:before {
	content: "";
	position: absolute;
	width: 30px;
	top: 0;
	bottom: 0;
	right: 100%;
	background: #fff;
}

.page-content:after {
	content: "";
	position: absolute;
	width: 30px;
	top: 0;
	bottom: 0;
	left: 100%;
	background: #fff;
}

.page-pic + .page-wrapper .page-content {
	margin-top: -70px;
	padding-top: 19px;
}

.page-header {
	position: relative;
	z-index: 10;
}

.page-header-alt {
	padding-right: 300px;
}

.page-body {
	position: relative;
	z-index: 10;
}

.page-pic + .page-wrapper .page-sidebar {
	padding-top: 47px;
}

.article-wrapper > .row,
.article-big-section > .row {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.article-content {
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 0 15px;
	max-width: 846px;
}

.article-sidebar {
	width: 212px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding: 0 15px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.article-sidebar-wide {
	width: 317px;
}

.article-sidebar .sticky-block {
	padding-top: 1px;
}

.article-lead {
	font-family: 'DINPro';
	font-size: 25px;
	line-height: 44px;
	font-weight: 500;
	margin: 0 0 30px 0;
}

.din {
	font-family: 'DINPro';
}

b, strong {
	font-weight: bold;
}

.article-pic {
	margin: 40px 0 40px 0;
}

.article-pic iframe {
	display: block;
	width: 100% !important;
}

.article-pic-caption {
	font-size: 14px;
	line-height: 20px;
	margin: 10px 0 0 0;
	padding: 8px 0 0 29px;
	position: relative;
	min-height: 36px;
}

.article-pic-caption:before {
	content: "";
	width: 1px;
	height: 36px;
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
}

.article-pic-caption p:last-child {
	margin-bottom: 0 !important;
}

.article-pic img {
	width: 100%;
}

.article-block {
	clear: both;
}

.article-block:after {
	content: " ";
	display: table;
	clear: both;
}

.article-pic-l,
.article-pic-r {
	width: 380px;
}

.article-pic-l {
	float: left;
	margin: 32px 45px 32px 0;
}

.article-pic-r {
	float: right;
	margin: 32px 0 32px 45px;
}

.article-block p:last-child {
	margin-bottom: 32px;
}

.article-block .article-pic:first-child {
	margin-top: 0 !important;
}

blockquote {
	margin: 40px 0 50px 0;
}

.blockquote-text {
	font-size: 22px;
	line-height: 37px;
	font-style: italic;
	position: relative;
	padding: 0 0 0 105px;
}

.blockquote-text:before {
	content: "";
	width: 72px;
	height: 59px;
	background: url(../images/quote.svg) 0 0 no-repeat;
	position: absolute;
	left: 6px;
	top: 0px;
}

.blockquote-author {
	margin: 30px 0 0 105px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.blockquote-author-pic {
	width: 120px;
	height: 120px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 25px 0 0;
}

.blockquote-author-pic img {
	width: 100%;
	height: 100%;
}

.blockquote-author-descr {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.blockquote-author-name {
	font-weight: normal;
	font-size: 22px;
	line-height: 29px;
	/* identical to box height, or 132% */
	letter-spacing: 9px;
	text-transform: uppercase;
	color: #FDB930;
}

.blockquote-author-post {
	font-size: 15px;
	line-height: 21px;
	font-style: italic;
	color: #000;
	margin: 3px 0 0 0;
}

.article-date {
	position: relative;
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 20px 0 35px 0;
}

.article-date:before {
	content: "";
	width: 61px;
	height: 61px;
	background: #FDB930;
	position: absolute;
	left: 35px;
	top: -6px;
}

.article-date-day {
	font-family: 'DINPro';
	font-weight: bold;
	font-size: 80px;
	line-height: 80px;
	letter-spacing: -2px;
	text-transform: uppercase;
	position: relative;
}

.article-date-month {
	position: relative;
}

.article-date-year {
	position: relative;
}

.article-info-item {
	margin: 0 0 35px 0;
	font-family: 'DINPro';
	font-size: 17px;
	line-height: 21px;
}

.article-info-item .ttl {
	font-family: 'Georgia';
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #505050;
	margin: 0 0 11px 0;
}

.small-tmb,
a.small-tmb {
	display: -ms-flexbox;
	display: flex;
	font-size: 15px;
	line-height: 18px;
	border: none !important;
	color: #000;
	margin: 0 0 15px 0;
}

.small-tmb-pic {
	width: 51px;
	height: 51px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 10px 0 0;
	border-radius: 50%;
	overflow: hidden;
}

.small-tmb-pic img {
	display: block;
	width: 100%;
	height: 100%;
}

.small-tmb-descr {
	width: 121px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	min-height: 51px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	word-wrap: break-word;
}

.small-tmb-descr p {
	word-wrap: break-word;
	width: 100%;
}

.article-footer {
	border-top: 1px solid #000;
	margin: 75px 0 0 0;
	padding: 45px 0 0 0;
}

.article-share {
	display: -ms-flexbox;
	display: flex;
}

.article-share-ttl {
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #505050;
	margin: 0 22px 0 0;
	padding: 4px 0 0 0;
}

.ya-share2__item {
	padding: 0 !important;
}

.ya-share2__item:before {
	display: none !important;
}

.ya-share2__link {
	border: none !important;
}

.article-sidebar .article-share {
	display: block;
}

.article-sidebar .article-share-ttl {
	padding: 0;
	margin: 0 0 16px 0;
}

footer {
	background: #0A0C19;
	color: #fff;
}

.footer-top {
	padding: 58px 0 0 0;
}

.footer-top .row {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.footer-top .row > * {
	padding: 0 15px;
}

.footer-top-col-1 {
	-ms-flex-preferred-size: 358px;
	flex-basis: 358px;
	-ms-flex-positive: 0;
	flex-grow: 0;
}

.footer-top-col-2 {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.footer-top-col-3 {
	-ms-flex-positive: 0;
	flex-grow: 0;
}

.footer-logo {
	margin: -16px 0 0 0;
}

.soclinks {
	display: -ms-flexbox;
	display: flex;
	margin: 0 -10px;
}

.soclink {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	transition: all .2s ease;
	margin: 0 10px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer-soclinks .soclink {
	background: #2D2F3B;
}

.footer-soclinks .soclink:hover {
	background: #fff;
}

.soclink svg * {
	transition: all .2s ease;
}

.footer-soclinks .soclink:hover svg *[fill] {
	fill: #2D2F3B;
}

.footer-soclinks .soclink:hover svg *[stroke] {
	stroke: #2D2F3B;
}

footer .btn-subscribe,
footer .btn-subscribe:focus {
	width: 212px;
}

footer .btn-subscribe:hover,
footer .btn-subscribe:active {
	color: #fff;
}

footer .btn-subscribe span,
footer .btn-subscribe:focus span {
	padding: 17px 24px 17px 24px;
}

footer .btn-subscribe:hover span {
	padding: 15px 24px 15px 24px;
}

footer .btn-subscribe:hover span,
footer .btn-subscribe:active span {
	padding-top: 15px;
	padding-bottom: 15px;
}

.subscribe-form .row {
	margin: 0;
}

.subscribe-form .form-field {
	padding: 0 !important;
}

.subscribe-form .form-footer {
	padding: 0 !important;
}

.subscribe-form .form-group {
	width: 310px;
	margin: 0;
	padding: 0;
}

.footer-middle {
	border-top: 1px solid #454545;
	padding: 35px 0 0 0;
	margin: 39px 0 0 0;
}

.footer-middle .row {
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.footer-middle .row > * {
	padding: 0 15px;
}

.footer-menu-col {
	-ms-flex-preferred-size: 14.285%;
	flex-basis: 14.285%;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.footer-middle h4,
.footer-middle .h4 {
	font-weight: bold;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
	margin: 0 0 16px 0;
}

.footer-middle h4 a,
.footer-middle .h4 a {
	color: #fff;
	text-decoration: none;
	transition: all .15s ease;
}

ul.footer-menu {
	font-family: 'DINPro';
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 23px;
	color: #6A6A6A;
}

ul.footer-menu > li {
	margin: 0 0 10px 0;
	padding: 0;
}

ul.footer-menu a,
ul.footer-menu a:focus {
	color: #B0B0B0;
	text-decoration: none;
	transition: all .15s ease;
}

ul.footer-menu a:hover {
	color: #B5D7FF;
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid #454545;
	padding: 35px 0 0 0;
	margin: 18px 0 0 0;
}

.footer-bottom .row {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer-bottom .row > * {
	padding: 0 15px;
}

.footer-bottom-col-1 {
	-ms-flex-preferred-size: 28.57%;
	flex-basis: 28.57%;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.footer-bottom-col-2 {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.footer-address {
	font-family: 'DINPro';
	font-weight: normal;
	font-size: 16px;
	line-height: 23px;
}

.footer-partners {
	display: -ms-flexbox;
	display: flex;
	margin: 0 -10px -20px -10px;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding-top: 5px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer-partners a {
	display: block;
	margin: 0 10px 20px 10px;
}

.footer-partners img {
	height: 60px;
}

.footer-bottomest {
	border-top: 1px solid #454545;
	margin: 36px 0 0 0;
	padding: 33px 0 36px 0;
}

.footer-bottomest .row {
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer-bottomest .row > * {
	padding: 0 15px;
}

.footer-bottomest-col-2 {
	-ms-flex-preferred-size: 28.57%;
	flex-basis: 28.57%;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.footer-copy {
	font-family: 'DINPro';
	font-size: 14px;
	line-height: 23px;
	font-weight: normal;
}

.footer-copy a,
.footer-copy a:focus {
	color: #B5D7FF;
}

.footer-copy p {
	margin: 0;
}

.footer-dev-wrapper {
	display: -ms-flexbox;
	display: flex;
	padding: 7px 0 0 0;
}

a.footer-dev,
a.footer-dev:focus {
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 11px;
	line-height: 16px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	display: block;
	position: relative;
	color: #B0B0B0;
	padding: 0 0 0 68px;
	transition: all .2s ease;
}

a.footer-dev:hover {
	color: #B5D7FF;
}

.footer-dev:before {
	content: "";
	width: 51px;
	height: 31px;
	background: url(../images/renart-logo.svg) 0 0 no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}

.news-group {
	display: -ms-flexbox;
	display: flex;
	position: relative;
	margin: 0 0 54px 0;
}

.news-group:last-child {
	margin-bottom: 0 !important;
}

.news-group:before {
	content: "";
	width: 1px;
	background: #000;
	position: absolute;
	left: 62px;
	top: 0;
	bottom: 0;
}

.news-group-l {
	-ms-flex-preferred-size: 180px;
	flex-basis: 180px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding: 0 30px 0 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.news-group-l .sticky-wrapper {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.date {
	position: relative;
	font-family: 'DINPro';
}

.date:before {
	content: "";
	width: 61px;
	height: 61px;
	background: #FDB930;
	position: absolute;
	left: 30px;
	top: -6px;
}

.date-day {
	font-weight: bold;
	font-size: 80px;
	line-height: 80px;
	letter-spacing: -2px;
	position: relative;
}

.date-month,
.date-year {
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
}

.news-group-date {
	background: #fff;
	padding-bottom: 15px;
	padding-top: 15px;
	margin-top: -9px;
	margin-bottom: -15px;
}

.news-group-date:before {
	top: 9px;
}

.news-group-r {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.news-list {
	margin-top: 48px;
}

.news-tmb {
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 54px 0;
}

.news-tmb:last-child {
	margin-bottom: 0;
}

.news-tmb-pic {
	-ms-flex-preferred-size: 380px;
	flex-basis: 380px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 30px 0 0;
	-ms-flex-item-align: start;
	align-self: flex-start;
	overflow: hidden;
}

.news-tmb-pic img {
	width: 100%;
	transition: all 3s ease;
}

.news-tmb.hover .news-tmb-pic img {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

.news-tmb-pic a {
	border: none !important;
}

.news-tmb-descr {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

ul.tags {
	margin: 0 0 16px 0;
	padding: 0;
	font-size: 18px;
	line-height: 26px;
	font-style: italic;
}

ul.tags > li {
	margin: 0;
	padding: 0;
}

ul.tags > li:before {
	display: none;
}

ul.tags a {
	border: none;
}

.news-tmb h3,
.news-tmb .h3 {
	font-weight: 500;
	font-size: 28px;
	line-height: 37px;
	color: #000;
	margin: 0 0 22px 0;
	transition: all .2s ease;
}

.news-tmb.hover h3,
.news-tmb.hover .h3 {
	color: #FDB930;
}

.news-tmb-content a {
	color: #000;
	border: none;
}

.news-tmb-content a:hover {
	color: #000;
}

.news-filter {
	margin: 58px 0 0 0;
}

.news-list-alt .news-group {
	margin: 0 0 43px 0;
}

.news-list-alt .news-group-l {
	-ms-flex-preferred-size: 126px;
	flex-basis: 126px;
}

.news-list-alt .news-tmb-pic {
	-ms-flex-preferred-size: 267px;
	flex-basis: 267px;
}

.news-list-alt .news-tmb {
	font-size: 16px;
	line-height: 20px;
	margin: 0 0 27px 0;
}

.news-list-alt .news-tmb:last-child {
	margin-bottom: 0;
}

.news-list-alt .news-tmb h3,
.news-list-alt .news-tmb .h3 {
	font-size: 18px;
	line-height: 23px;
	margin: 0 0 11px 0;
}

.news-list-alt .news-group:before {
	left: 58px;
}

ul.select-modal-categories {
	-webkit-column-count: 4;
	column-count: 4;
	margin: -1px 0 -40px 0;
	padding: 0;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}

ul.select-modal-categories > li {
	margin: 0 0 0 0;
	padding: 1px 0 40px 0;
	-webkit-column-break-inside: avoid;
	break-inside: avoid;
}

ul.select-modal-categories > li:before {
	display: none;
}

.select-modal-letter {
	font-family: 'DINPro';
	font-weight: bold;
	font-size: 40px;
	line-height: 40px;
	letter-spacing: -2px;
	text-transform: uppercase;
	color: #000000;
	position: relative;
	margin: 0 0 12px 0;
}

.select-modal-letter:before {
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	background: #FDB930;
	left: 11px;
	top: -1px;
}

.select-modal-letter:after {
	content: "";
	height: 1px;
	background: #000;
	position: absolute;
	left: 47px;
	right: 0;
	top: 28px;
}

.select-modal-letter-inner {
	position: relative;
}

ul.select-modal-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: 'DINPro';
	font-size: 15px;
	line-height: 18px;
}

ul.select-modal-list > li {
	padding: 0;
	margin: 0 0 8px 0;
}

ul.select-modal-list > li:before {
	display: none;
}

.select-modal-link {
	cursor: pointer;
}

.slider-wrapper {
	position: relative;
}

.play-slider-wrapper {
	margin: 0 -15px;
	padding: 0 15px;
}

.play-slider .slide {
	overflow: hidden;
	height: 637px;
	background: #000;
}

.play-slider .slide img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 737px;
	position: relative;
	z-index: 2;
	max-width: initial !important;
}

.blur-pic {
	position: absolute;
	z-index: 1;
}

.blur-pic-l {
	left: 0;
	right: 50%;
	top: 0;
	bottom: 0;
}

.blur-pic-r {
	right: 0;
	left: 50%;
	top: 0;
	bottom: 0;
}

.blur-pic img {
	object-fit: cover;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	opacity: .8;
}

.slick-arrow,
.slick-arrow-fake {
	position: absolute;
	z-index: 20;
	cursor: pointer;
	border: none;
	-webkit-appearance: none;
	border: none;
	transition: all .2s ease;
	width: 63px;
	height: 60px;
	background: #FDB930;
	font-size: 0;
	line-height: 0;
	color: transparent;
	bottom: 0;
	border: 2px solid #FDB930;
}

.slick-arrow:hover,
.slick-arrow-fake:hover {
	background: transparent;
}

.slick-prev,
.slick-prev-fake {
	right: 67px;
}

.slick-next,
.slick-next-fake {
	right: 0;
}

.slick-prev:before,
.slick-prev-fake:before {
	content: "";
	width: 24px;
	height: 18px;
	background: url(../images/play-slider-prev.svg) 0 0 no-repeat;
	position: absolute;
	left: 17px;
	top: 19px;
	transition: all .2s ease;
	opacity: 1;
}

.slick-prev:after,
.slick-prev-fake:after {
	content: "";
	width: 24px;
	height: 18px;
	background: url(../images/play-slider-prev-hover.svg) 0 0 no-repeat;
	position: absolute;
	left: 17px;
	top: 19px;
	transition: all .2s ease;
	opacity: 0;
}

.slick-next:before,
.slick-next-fake:before {
	content: "";
	width: 24px;
	height: 18px;
	background: url(../images/play-slider-next.svg) 0 0 no-repeat;
	position: absolute;
	right: 17px;
	top: 19px;
	transition: all .2s ease;
	opacity: 1;
}

.slick-next:after,
.slick-next-fake:after {
	content: "";
	width: 24px;
	height: 18px;
	background: url(../images/play-slider-next-hover.svg) 0 0 no-repeat;
	position: absolute;
	right: 17px;
	top: 19px;
	transition: all .2s ease;
	opacity: 0;
}

.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev-fake:hover:before,
.slick-next-fake:hover:before {
	opacity: 0;
}

.slick-prev:hover:after,
.slick-next:hover:after,
.slick-prev-fake:hover:after,
.slick-next-fake:hover:after {
	opacity: 1;
}

.slider-count {
	position: absolute;
	width: 100px;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	right: 170px;
	bottom: 13px;
	z-index: 20;
}

.slider-count-total {
	color: #B0B0B0;
}

.slider-count-sep {
	padding: 0 5px;
}

.play-slider-wrapper .slider-progress {
	position: absolute;
	height: 8px;
	background: #fff;
	bottom: 70px;
	right: 15px;
	left: 16.666%;
	margin-left: -15px;
	z-index: 20;
}

.play-slider-wrapper .slider-progress-bar {
	background: #FDB930;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}

.play-genre {
	font-size: 18px;
	line-height: 28px;
	font-style: italic;
	color: #FDB930;
	margin: 0 0 37px 0;
}

.play-info {
	display: -ms-flexbox;
	display: flex;
	margin: 0 -30px 0 -30px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.play-info-tmb {
	padding: 0 30px;
	margin: 0 0 35px 0;
	display: -ms-flexbox;
	display: flex;
	font-family: 'DINPro';
	font-size: 20px;
	line-height: 28px;
}

.play-info-tmb-pic {
	-ms-flex-preferred-size: 20px;
	flex-basis: 20px;
	margin: 0 15px 0 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding: 1px 0 0 0;
}

.play-info-tmb-pic img {
	display: block;
}

.play-info-tmb-descr {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.play-info-tmb-descr .ttl {
	font-family: 'Georgia';
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #727272;
	white-space: nowrap;
	margin: 0 0 5px 0;
}

.play-info-tmb-descr .val {
	font-size: 22px;
	line-height: 28px;
}

.play-info-tmb p {
	margin: 0 0 4px 0;
}

.play-info-tmb p:last-child {
	margin-bottom: 0;
}

.expandable-content {
	display: none;
	padding-bottom: 32px;
}

.expandable-trigger {
	display: inline-block;
	position: relative;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #000000;
	padding: 0 0 7px 30px;
	display: inline-block;
	cursor: pointer;
}

.expandable-trigger:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 2px;
	background: #479BFF;
	transition: all .3s ease;
}

.expandable-trigger:hover:after {
	width: 46px;
}

.expandable-trigger:before {
	content: "";
	width: 16px;
	height: 16px;
	background: url(../images/ico-expandable-trigger.png) 0 0 no-repeat;
	background-size: 16px auto;
	position: absolute;
	left: 0;
	top: 3px;
}

.cast-row {
	display: -ms-flexbox;
	display: flex;
	margin: 0 -15px 13px -15px;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.cast-name {
	padding: 0 15px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-ms-flex-preferred-size: 195px;
	flex-basis: 195px;
	min-height: 51px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: start;
	align-self: flex-start;
}

.cast-name .ttl {
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #505050;
}

.cast-val {
	padding: 0 15px;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.cast-list .row {
	margin: 0 -10px;
}

.cast-col {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	padding: 0 10px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.cast-col-alt {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
}

.cast-tmb,
.cast-tmb:focus {
	display: -ms-flexbox;
	display: flex;
	text-decoration: none !important;
	border: none !important;
	font-family: 'DINPro';
	font-size: 17px;
	line-height: 21px;
	color: #000;
	margin: 0 0 12px 0;
}

.cast-tmb-descr span {
	transition: all .15s ease;
	border-bottom: 1px solid transparent;
}

.cast-tmb:hover .cast-tmb-descr span {
	color: #479BFF;
	border-bottom-color: #479BFF;
}

.cast-tmb-pic {
	width: 51px;
	height: 51px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 10px 0 0;
}

.cast-tmb-pic img {
	width: 100%;
	height: 100%;
}

.cast-tmb-descr {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: 51px;
	padding: 0 0 4px 0;
	word-break: break-word;
}

.show-more {
	display: inline-block;
	position: relative;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #000000 !important;
	padding: 0 0 7px 30px;
	border-bottom: 2px solid #479BFF !important;
	display: inline-block;
	cursor: pointer;
}

.show-more:before {
	content: "";
	width: 16px;
	height: 16px;
	background: url(../images/ico-expandable-trigger.png) 0 0 no-repeat;
	background-size: 16px auto;
	position: absolute;
	left: 0;
	top: 3px;
}

.cast-wrapper .show-more-wrapper {
	margin-top: 44px;
}

ul.cast-filter {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 670px;
	margin: 0 -15px 25px -15px;
	padding: 0;
	font-family: 'DINPro';
	font-size: 18px;
	line-height: 26px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
  flex-wrap: wrap;
}

ul.cast-filter > li {
	padding: 0 15px;
	margin: 0 0 10px 0;
}

ul.cast-filter > li:before {
	display: none;
}

.cast-filter-item {
	color: #141517;
	display: inline;
	border-bottom: 2px solid transparent;
	transition: all .2s ease;
	cursor: pointer;
}

.cast-filter-item:hover,
.cast-filter-item.active {
	border-color: #FDB930;
}

.all-link-wrapper {
	margin: 39px 0 0 0;
}

.all-link,
.all-link:focus {
	display: inline-block;
	position: relative;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #000;
	padding: 0 0 9px 30px;
	border-bottom: none !important;
	display: inline-block;
	cursor: pointer;
	transition: all .2s ease;
}

.all-link:before {
	content: "";
	width: 18px;
	height: 14px;
	background: url(../images/ico-all-link.png) 0 0 no-repeat;
	background-size: 18px auto;
	position: absolute;
	left: 0;
	top: 4px;
}

.all-link:after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	height: 2px;
	background: #479BFF;
	transition: all .3s ease;
}

.all-link:hover {
	color: #479BFF;
}

.all-link:hover:after {
	width: 46px;
}

.timetable {
	border: 2px solid #479BFF;
}

.timetable-header {
	text-align: center;
}

.timetable-header-item {
	border-bottom: 1px solid #479BFF;
}

.timetable-header h4,
.timetable-header .h4 {
	font-family: 'Georgia';
	font-weight: normal;
	font-size: 17px;
	line-height: 21px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
	color: #000;
	padding: 21px 18px 21px 18px;
}

.timetable-content {
	padding: 24px 18px 24px 18px;
}

.timetable-item {
	display: -ms-flexbox;
	display: flex;
	margin: 0 -5px 25px -5px;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.timetable-item:last-child {
	margin-bottom: 0;
}

.timetable-item-date {
	padding: 0 5px;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.timetable-item-button {
	-ms-flex-positive: 0;
	flex-grow: 0;
	padding: 0 5px;
}

.timetable-date {
	font-family: 'DINPro';
	display: -ms-flexbox;
	display: flex;
	font-size: 15px;
	line-height: 18px;
	font-weight: 500;
	text-transform: uppercase;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	letter-spacing: 2px;
}

.timetable-date-l {
	margin: 0 12px 0 0;
}

.timetable-date-r {
	padding: 4px 0 0 0;
}

.timetable-date-day {
	font-weight: bold;
	font-size: 46px;
	line-height: 40px;
	letter-spacing: -2px;
}

.timetable-date-month {
	font-weight: bold;
}

.timetable + .timetable {
	margin-top: 50px;
}

.timetable-premiere {
	padding: 4px;
	text-align: center;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #FFFFFF;
	text-align: center;
}

.timetable-premiere-inner {
	font-size: 17px;
	line-height: 21px;
	padding: 18px 15px 17px 15px;
	background: #E97B24;
}

.timetable-message {
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 6px 0 11px 0;
}

.timetable-message-empty {
	color: #D84F4F;
}

.timetable-message-soon {
	color: #479BFF;
}

.timetable-message-archive {
	color: #000;
}

@media (min-width: 992px) {
	.fixed {
		position: fixed;
	}

	.sticky-block.fixed {
		z-index: 1050;
	}
}

.news-group-l .fixed {
	position: fixed;
}

.news-group-l .sticky-block.fixed {
	z-index: 1050;
}

.page-sidebar .sticky-wrapper,
.article-sidebar .sticky-wrapper {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.sticky-block {
	width: inherit;
}

.person-card {
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 56px;
}

.person-card-pic {
	width: 240px;
	height: 240px;
	border-radius: 50%;
	overflow: hidden;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 37px 0 0;
}

.person-card-pic img {
	width: 100%;
	height: 100%;
}

.person-card-descr {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.person-info {
	margin: 33px 0 -32px 0;
}

.person-info-tmb {
	display: -ms-flexbox;
	display: flex;
	font-family: 'DINPro';
	font-size: 20px;
	line-height: 30px;
	margin: 0 0 32px 0;
}

.person-info-tmb-pic {
	-ms-flex-preferred-size: 20px;
	flex-basis: 20px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 13px 0 0;
	padding: 1px 0 0 0;
}

.person-info-tmb-pic img {
	display: block;
}

.person-info-tmb-descr {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.person-info-tmb .ttl {
	font-family: 'Georgia';
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #727272;
	margin: 0 0 7px 0;
}

.person-info-tmb p {
	margin: 0 0 8px 0;
}

.person-info-tmb p:last-child {
	margin: 0;
}

.program-nav {
	margin: 0 0 77px 0;
	padding: 0;
	transition: all .3s ease;
}

ul.program-months {
	margin: 0 -20px 0 -20px;
	padding: 0;
	display: -ms-flexbox;
	display: flex;
	font-family: 'DINPro';
	font-size: 36px;
	line-height: 40px;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
}

ul.program-months > li {
	padding: 0 20px;
	margin: 0;
}

ul.program-months > li:before {
	display: none;
}

ul.program-months a {
	color: #0A0C19;
	border-bottom: 2px solid #479BFF;
	transition: all .2s ease;
}

ul.program-months a.anchor-link,
ul.program-months a.ajax-link {
	border-bottom-style: dashed;
}

ul.program-months a:hover {
	border-color: #FDB930;
}

ul.program-months a.active {
	font-weight: bold;
	border-color: #FDB930;
}

.calendar-wrapper {
	margin: 27px 0 0 0;
}

.calendar-week {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin: 0 0 3px -11px;
}

.calendar-day {
	-ms-flex-preferred-size: 14.2857%;
	flex-basis: 14.2857%;
	max-width: 14.2857%;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding: 0 0 0 3px;
	min-height: 331px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.calendar-day-inner {
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 0 8px 40px 8px;
	transition: all .3s ease;
}

.calendar-day:hover:not(.inactive):not(.past) .calendar-day-inner,
.calendar-day.today .calendar-day-inner {
	background: #FDB930;
}

.calendar-day.holiday:hover:not(.inactive):not(.past) .calendar-day-inner,
.calendar-day.holiday.today .calendar-day-inner {
	background: #E97B24;
}

.calendar-day-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 0 15px 0;
}

.calendar-day-name {
	-ms-flex-positive: 1;
	flex-grow: 1;
	border-top: 1px solid #000;
	max-width: 70px;
	font-family: 'DINPro';
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	text-transform: uppercase;
	color: #000;
	padding: 12px 0 0 0;
}

.calendar-day.today .calendar-day-name {
	border-color: transparent;
}

.calendar-day-num {
	font-family: 'DINPro';
	font-size: 80px;
	line-height: 80px;
	font-weight: bold;
	color: #000;
	letter-spacing: -2px;
	position: relative;
	padding: 6px 10px 0 0;
	margin-right: -8px;
	text-align: right;
}

.calendar-day-num:before {
	content: "";
	width: 61px;
	height: 61px;
	background: #FDB930;
	position: absolute;
	right: 0;
	top: 0;
}

.calendar-day.inactive .calendar-day-name span {
	display: none;
}

.calendar-day.inactive .calendar-day-num:before {
	height: 15px;
}

.calendar-day.inactive .calendar-day-num span {
	display: none;
}

.calendar-day.holiday .calendar-day-num:before {
	background: #E97B24;
}

.calendar-day-num span {
	position: relative;
}

.calendar-day.past .day-program {
	opacity: .15;
}

.day-program-item {
	display: block;
	border: none !important;
	color: #000 !important;
	font-family: 'DINPro';
	font-size: 15px;
	line-height: 16px;
	font-weight: 500;
	margin: 0 0 24px 0;
	word-wrap: break-word;
}

.day-program-item:last-child {
	margin: 0;
}

.day-program-item-header {
	display: -ms-flexbox;
	display: flex;
	margin: 0 -6px 4px -6px;
	font-size: 14px;
	line-height: 16px;
}

.day-program-item-header .time {
	padding: 0 6px;
}

.day-program-item-header .place {
	padding: 0 6px;
	font-family: 'Georgia';
	font-style: italic;
	font-weight: normal;
	color: #727272;
	transition: all .3s ease;
}

.calendar-day:hover:not(.inactive):not(.past) .day-program-item-header .place,
.calendar-day.today .day-program-item-header .place {
	color: #fff;
}

ul.days-menu {
	list-style: none;
	margin: 34px 0 57px 0;
	padding: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-family: 'DINPro';
	font-size: 22px;
	line-height: 24px;
	font-weight: 500;
	text-align: center;
	letter-spacing: -.02em;
}

@media (min-width: 992px) {
	.program-nav.fixed .days-menu {
		margin: 0;
	}
}

ul.days-menu > li {
	margin: 0;
	padding: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

ul.days-menu > li:before {
	display: none;
}

.day-link {
	color: #000;
	border: none !important;
	display: block;
}

.day-link.inactive {
	cursor: default;
}

.day-link-num {
	transition: all .2s ease;
	background: transparent;
	color: #000;
	padding: 4px 0 5px 0;
}

.day-link.holiday .day-link-num {
	color: #E97B24;
}

.day-link.today .day-link-num {
	color: #479BFF;
}

.day-link:hover .day-link-num,
.day-link.active .day-link-num {
	color: #fff;
	background: #FDB930;
}

.day-link.holiday:hover .day-link-num,
.day-link.holiday.active .day-link-num {
	background: #E97B24;
}

.day-link.inactive .day-link-num {
	background: none !important;
	color: #BEBEBE !important;
}

.day-link-name {
	font-size: 10px;
	line-height: 16px;
	text-transform: uppercase;
	color: #6A6A6A;
}

.day-link.holiday .day-link-name {
	color: #E97B24;
}

.day-link.today .day-link-name {
	color: #479BFF;
}

.day-link.inactive .day-link-name {
	color: #BEBEBE !important;
}

.news-list-program .news-group {
	margin-bottom: 100px;
}

.program-list {
	margin-bottom: -70px;
}

.program-list > .row {
	margin: 0 -44px;
}

.program-list > .row > * {
	padding: 0 44px;
}

.program-tmb {
	border: none !important;
	color: #000 !important;
	margin: 0 0 70px 0;
	display: block;
}

.program-tmb-pic {
	margin: 0 0 10px 0;
	max-height: 228px;
	overflow: hidden;
}

.program-tmb-pic a {
	border: none !important;
	display: block;
}

.program-tmb-pic img {
	width: 100%;
	transition: all 2s ease;
}

.program-tmb.hover .program-tmb-pic img {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

.program-tmb-descr .row {
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.program-tmb-descr-l {
	padding: 0 15px;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.program-tmb-descr-r {
	padding: 0 15px;
	-ms-flex-preferred-size: 107px;
	flex-basis: 107px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.program-tmb-descr-l > a,
.program-tmb-descr-r > a {
	border: none !important;
	color: #000 !important;
	display: block;
}

.program-tmb h3,
.program-tmb .h3 {
	font-weight: 500;
	font-size: 26px;
	line-height: 35px;
	color: #000;
	margin: 0;
	transition: all .2s ease;
}

.program-tmb.hover h3,
.program-tmb.hover .h3 {
	color: #FDB930;
}

.program-tmb-time {
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 2px;
	margin-top: 6px;
}

.program-tmb-place {
	font-size: 15px;
	line-height: 18px;
	font-style: italic;
	margin-top: 6px;
}

.program-tmb-button {
	margin: 23px 0 0 0;
}

.program-tmb-button .btn-ticket,
.program-tmb-button .btn-ticket:focus,
.alpha-tmb-button .btn-ticket,
.alpha-tmb-button .btn-ticket:focus {
	padding-top: 10px;
	padding-bottom: 10px;
	width: auto;
}

ul.alpha-menu {
	list-style: none;
	margin: 0 0 72px 0;
	padding: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
}

@media (min-width: 992px) {
	.program-nav.fixed ul.alpha-menu {
		margin: 0;
	}
}

ul.alpha-menu > li {
	margin: 0;
	padding: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

ul.alpha-menu > li:before {
	display: none;
}

ul.alpha-menu a {
	display: block;
	transition: all .2s ease;
	color: #000;
	border: none !important;
	text-align: center;
	padding: 3px 0;
}

ul.alpha-menu a:hover,
ul.alpha-menu a.active {
	background: #FDB930;
	color: #fff;
}

ul.alpha-menu a.inactive {
	cursor: default;
	color: #E1E1E1 !important;
}

ul.alpha-menu a.inactive:hover {
	background: none;
}

.news-list-alpha .news-group {
	margin-bottom: 94px;
}

.news-list-alpha .news-group:before {
	bottom: 9px;
}

.news-group-letter {
	position: relative;
	font-family: 'DINPro';
	background: #fff;
	padding-bottom: 15px;
	padding-top: 15px;
	margin-top: -9px;
	margin-bottom: -15px;
}

.news-group-letter:before {
	content: "";
	width: 61px;
	height: 61px;
	background: #FDB930;
	position: absolute;
	left: 30px;
	top: 9px;
}

.news-group-letter .cont {
	font-weight: bold;
	font-size: 80px;
	line-height: 80px;
	letter-spacing: -2px;
	position: relative;
}

.alpha-list {
	margin-bottom: -50px;
}

.alpha-tmb {
	display: -ms-flexbox;
	display: flex;
	margin: 0 -15px 50px -15px;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.alpha-tmb-name {
	padding: 0 15px;
	-ms-flex-preferred-size: 370px;
	flex-basis: 370px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.alpha-tmb-dates {
	padding: 0 15px;
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin: 7px 0 0 0;
}

.alpha-tmb-button {
	padding: 0 0 0 15px;
	margin: 7px 0 0 0;
}

.alpha-tmb-name a {
	color: #000 !important;
	border: none !important;
}

.alpha-tmb-name h3,
.alpha-tmb-name .h3 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 500;
	margin: 0;
	transition: all .2s ease;
}

.alpha-tmb-name a:hover h3,
.alpha-tmb-name a:hover .h3 {
	color: #FDB930 !important;
}

.alpha-tmb-place {
	font-size: 18px;
	line-height: 26px;
	margin: 11px 0 0 0;
	font-style: italic;
}

table.alpha-dates-table {
	width: 100%;
	font-family: 'DINPro';
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 2px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 !important;
}

table.alpha-dates-table td {
	padding: 0;
	border: none;
}

table.alpha-dates-table td.name {
	padding: 0 17px 0 0;
	text-align: right;
	width: 125px;
	color: #727272;
}

.plays-section {
	position: relative;
	margin: 0 0 92px 0;
}

.plays-section:last-child {
	margin-bottom: 0;
}

.plays-section-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 212px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.plays-section-header {
	position: relative;
}

.plays-section-header .row {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.plays-section-descr {
	position: relative;
}

.plays-section-list {
	position: relative;
}

.plays-section-header {
	padding: 39px 23px 0 23px;
}

.plays-section-num {
	font-family: 'DINPro';
	padding: 0 15px;
	font-weight: 500;
	font-size: 40px;
	line-height: 45px;
	letter-spacing: 3px;
	color: #FDB930;
	-ms-flex-preferred-size: 83px;
	flex-basis: 83px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.plays-section-name {
	padding: 0 15px;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.plays-section-all-link {
	padding: 0 15px;
	white-space: nowrap;
}

.plays-section-header {
	margin: 0 0 27px 0;
}

.plays-section-header h2,
.plays-section-header .h2 {
	font-weight: 500;
	font-size: 40px;
	line-height: 45px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 0 0 0 0;
}

.plays-section-header h2 a,
.plays-section-header .h2 a {
	color: #000 !important;
	border: none !important;
}

.plays-section-descr {
	font-size: 24px;
	line-height: 35px;
	padding: 0 23px 0 103px;
	max-width: 830px;
}

.plays-section-list {
	margin: 59px 0 0 0;
	padding: 0 23px 0 0;
}

.preview-list .row {
	margin: 0 -10px;
}

.preview-list .row > * {
	padding: 0 10px;
}

.preview-tmb {
	color: #000 !important;
	display: block;
	border: none !important;
}

.preview-tmb-pic {
	margin: 0 0 20px 0;
	overflow: hidden;
}

.preview-tmb-pic img {
	width: 100%;
	transition: all 2s ease;
}

.preview-tmb:hover .preview-tmb-pic img {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

.preview-tmb-descr {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.preview-tmb-descr-l {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.preview-tmb-descr-r {
	padding: 0 0 0 10px;
}

.preview-tmb h3,
.preview-tmb .h3 {
	font-weight: 500;
	font-size: 20px;
	line-height: 27px;
	margin: 0;
	transition: all .2s ease;
}

.preview-tmb:hover h3,
.preview-tmb:hover .h3 {
	color: #FDB930;
}

.preview-tmb-age {
	font-family: 'DINPro';
	font-size: 16px;
	line-height: 27px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: -1px;
}

.play-tmb {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 0 122px 0;
}

.play-tmb:last-child {
	margin-bottom: 0;
}

.play-tmb-pic {
	-ms-flex-preferred-size: 200px;
	flex-basis: 200px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 40px 0 0;
	overflow: hidden;
	-ms-flex-item-align: start;
	align-self: flex-start;
}

.play-tmb-pic img {
	width: 100%;
	transition: all 2s ease;
}

.play-tmb.hover .play-tmb-pic img {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

.play-tmb-descr {
	-ms-flex-order: 2;
	order: 2;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 12px 0 0 0;
	margin: 0 auto 0 0;
	max-width: 576px;
}

.play-tmb-timetable {
	-ms-flex-order: 3;
	order: 3;
	-ms-flex-preferred-size: 287px;
	flex-basis: 287px;
	margin-left: 40px;
	font: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.play-tmb-descr h3,
.play-tmb-descr .h3 {
	font-weight: 500;
	font-size: 36px;
	line-height: 42px;
	margin: 0 0 15px 0;
}

.play-tmb-descr h3 a,
.play-tmb-descr .h3 a {
	color: #000 !important;
	border: none !important;
	transition: all .2s ease;
}

.play-tmb.hover .play-tmb-descr h3 a,
.play-tmb.hover .play-tmb-descr .h3 a {
	color: #FDB930 !important;
}

ul.play-tmb-genres {
	margin: 0 0 24px 0;
	padding: 0;
	list-style: none;
	font-style: italic;
	color: #FDB930;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
	line-height: 26px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

ul.play-tmb-genres > li {
	margin: 0;
	padding: 0;
}

ul.play-tmb-genres > li:before {
	display: none;
}

ul.play-tmb-genres > li:after {
	display: inline;
	content: ",\00a0";
	position: relative;
	left: auto;
	top: auto;
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
}

ul.play-tmb-genres > li:last-child:after {
	display: none;
}

.play-tmb-text a {
	color: #000 !important;
	border: none !important;
	transition: all .15s ease;
}

.play-tmb-cast {
	margin: 33px 0 0 0;
}

.play-tmb-cast .ttl {
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #727272;
	margin: 0 0 9px 0;
}

ul.play-tmb-cast-list {
	font-family: 'DINPro';
	font-size: 16px;
	line-height: 22px;
	margin: 0;
	padding: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

ul.play-tmb-cast-list > li {
	display: inline;
	margin: 0;
	padding: 0;
}

ul.play-tmb-cast-list > li:before {
	display: none;
}

ul.play-tmb-cast-list > li:after {
	display: inline;
	content: ",\00a0";
	position: relative;
	left: auto;
	top: auto;
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
}

ul.play-tmb-cast-list > li:last-child:after {
	display: none;
}

ul.play-tmb-cast-list a {
	color: #000 !important;
	border-bottom: 2px solid transparent !important;
}

ul.play-tmb-cast-list a:hover {
	color: #479BFF !important;
	border-bottom: 2px solid #479BFF !important;
}

.people-wrapper .row {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.people-col-l {
	padding: 0 15px;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.people-col-r {
	padding: 0 15px;
	-ms-flex-preferred-size: 423px;
	flex-basis: 423px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.people-col-r .sticky-wrapper {
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.people-cat-list {
	margin-bottom: -40px;
}

.people-cat-tmb {
	font-family: 'DINPro';
	display: block;
	background: none !important;
	color: #000 !important;
	border: none !important;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	min-height: 150px;
	padding: 30px 0 0 30px;
	margin: 0 0 40px 0;
}

.people-cat-tmb-pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 150px;
	height: 150px;
	background: #FDB930;
}

.people-cat-tmb-pic img {
	width: 100%;
	height: 100%;
	transition: all .3s ease;
	opacity: 1;
}

.people-cat-tmb:hover .people-cat-tmb-pic img {
	opacity: 0;
}

.people-cat-tmb-num {
	font-weight: 500;
	font-size: 40px;
	line-height: 45px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #FDB930;
	position: relative;
	transition: all .3s ease;
	padding: 0 15px 0 0;
	-ms-flex-preferred-size: 87px;
	flex-basis: 87px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.people-cat-tmb:hover .people-cat-tmb-num {
	color: #fff;
}

.people-cat-tmb-name {
	font-weight: 500;
	font-size: 40px;
	line-height: 45px;
	letter-spacing: 3px;
	text-transform: uppercase;
	position: relative;
}

.people-blockquote-content {
	min-height: 331px;
	position: relative;
}

.people-blockquote-content:before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 330px;
	bottom: 34px;
	background: url(../images/people-blockquote-bg.jpg) 0 0 no-repeat;
	background-size: 100% 100%;
}

.people-blockquote-header {
	display: -ms-flexbox;
	display: flex;
	font-family: 'DINPro';
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding: 17px 0 0 0;
	margin: 0 0 28px 0;
}

.people-blockquote-header-num {
	font-weight: bold;
	font-size: 80px;
	line-height: 80px;
	letter-spacing: -2px;
	text-transform: uppercase;
	margin: 0 20px 0 0;
}

.people-blockquote-header-text {
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 8px 0 0 0;
}

.people-blockquote-text {
	position: relative;
	font-size: 24px;
	line-height: 40px;
	font-style: italic;
	padding: 0 15px 0 0;
}

.people-blockquote-author {
	display: -ms-flexbox;
	display: flex;
	margin: 62px 0 0 0;
}

.people-blockquote-author-pic {
	width: 105px;
	height: 105px;
	border-radius: 50%;
	overflow: hidden;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 15px 0 0;
}

.people-blockquote-author-pic img {
	width: 100%;
	height: 100%;
}

.people-blockquote-author-descr {
	padding: 0 0 0 0;
}

.people-blockquote-author-name {
	font-weight: normal;
	font-size: 18px;
	line-height: 26px;
	text-transform: uppercase;
	letter-spacing: 10px;
	color: #FDB930;
	margin: 0 0 8px 0;
}

.people-blockquote-author-post {
	font-style: italic;
	font-size: 16px;
	line-height: 24px;
}

.people-list {
	margin: 0 0 -40px 0;
}

.people-tmb {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	border: none !important;
	color: #000 !important;
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
	color: #000000;
	margin: 0 0 40px 0;
	transition: all .2s ease;
}

.people-tmb:hover {
	color: #FDB930 !important;
}

.people-tmb-pic {
	width: 160px;
	height: 160px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 30px 0 0;
	border-radius: 50%;
	overflow: hidden;
}

.people-tmb-pic img {
	width: 100%;
	height: 100%;
}

.people-tmb-descr {
	min-height: 160px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	width: 219px;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.people-tmb-descr .cont {
	word-wrap: break-word;
	width: 100%;
}

.page-nav {
	margin: 73px 0 0 0;
	padding: 36px 0 0 0;
	border-top: 1px solid #000;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}

.page-nav-pages {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	font-family: 'DINPro';
	font-size: 24px;
	line-height: 28px;
	margin: 0 40px;
}

.page-nav-pages a {
	transition: all .3s ease;
	background: transparent;
	border: none !important;
	color: #000 !important;
	min-width: 35px;
	height: 35px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 5px;
	padding: 0 5px;
}

.page-nav-pages a:hover,
.page-nav-pages a.active {
	background: #FDB930 !important;
	color: #fff !important;
}

.page-nav-pages a.active {
	font-weight: 500;
}

.page-nav-sep {
	width: 40px;
	margin: 0 15px;
	position: relative;
}

.page-nav-sep:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background: #000;
}

.page-nav-links {
	display: -ms-flexbox;
	display: flex;
	margin: 0 -15px;
	padding: 3px 0 0 0;
}

a.page-nav-link {
	font-size: 16px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 0 15px;
	white-space: nowrap;
	display: inline-block;
	padding: 0 0 5px 0;
	border-bottom-width: 1px;
	color: #000 !important;
}

a.page-nav-link:hover {
	border-bottom-width: 2px;
	margin-bottom: -1px;
}

.partners-list {
	margin: 0 0 -55px 0;
}

.partners-list .row {
	margin: 0 -12px 0 -13px;
}

.partners-list .row > * {
	padding-left: 13px;
	padding-right: 12px;
}

.partner-tmb {
	display: block;
	border: none !important;
	color: #000 !important;
	margin: 0 0 55px 0;
}

.partner-tmb-pic {
	height: 218px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: 1px solid #000;
	margin: 0 0 10px 0;
	padding: 15px;
	transition: .2em;
}

.partner-tmb:hover .partner-tmb-pic {
	border-color: #479BFF;
}

.partner-tmb-pic img {
	max-width: 100%;
	max-height: 100%;
	transition: all .2s ease;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.partner-tmb:hover .partner-tmb-pic img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

.partner-tmb h3,
.partner-tmb .h3 {
	font-family: 'Georgia';
	font-size: 14px;
	line-height: 19px;
	text-align: center;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #727272;
	margin: 0;
}

.docs-section {
	border-bottom: 1px solid #000;
	padding-bottom: 55px;
	margin-bottom: 48px;
}

.docs-section:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.docs-section h2,
.docs-section .h2 {
	font-size: 45px;
	line-height: 52px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 39px 0;
}

.doc-tmb {
	display: -ms-flexbox;
	display: flex;
	border: none !important;
	color: #000 !important;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding: 0 0 0 10px;
	margin: 0 0 30px 0;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.doc-tmb-ico {
	width: 38px;
	height: 51px;
	background-position: 0 0;
	background-size: 38px auto;
	background-repeat: no-repeat;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 20px 0 0;
	position: relative;
}

.doc-tmb-ico:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/ico-doc.svg) 0 0 no-repeat;
	transition: all .2s ease;
	opacity: 1;
}

.doc-tmb-ico:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/ico-doc-hover.svg) 0 0 no-repeat;
	transition: all .2s ease;
	opacity: 0;
}

.doc-tmb:hover .doc-tmb-ico:before {
	opacity: 0;
}

.doc-tmb:hover .doc-tmb-ico:after {
	opacity: 1;
}

.doc-tmb-ico .cont {
	position: relative;
	text-align: center;
	font-family: 'DINPro';
	font-weight: bold;
	font-size: 10px;
	line-height: 32px;
	/* identical to box height, or 320% */
	color: #C4C4C4;
	transition: all .2s ease;
	padding: 23px 3px 0 3px;
	z-index: 10;
}

.doc-tmb:hover .doc-tmb-ico .cont {
	color: #fff;
}

.doc-tmb-name {
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin: 0 60px 0 0;
}

.doc-tmb-name h3,
.doc-tmb-name .h3 {
	font-size: 18px;
	line-height: 27px;
	font-weight: 500;
	text-transform: none;
	margin: 0;
}

.doc-tmb-name h3 span,
.doc-tmb-name .h3 span {
	transition: all .15s ease;
	border-bottom: 2px solid transparent;
}

.doc-tmb:hover .doc-tmb-name h3 span,
.doc-tmb:hover .doc-tmb-name .h3 span {
	border-bottom-color: #FDB930;
}

.doc-tmb-size {
	font-size: 14px;
	line-height: 27px;
	letter-spacing: 3px;
	white-space: nowrap;
	margin: 0 60px 0 0;
	padding-top: 2px;
}

.doc-tmb-button {
	padding-top: 2px;
}

.contacts-map {
	height: 637px;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.contacts-section {
	border-bottom: 1px solid #000;
	padding-bottom: 61px;
	margin-bottom: 48px;
}

.contacts-section:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.contacts-section h2,
.contacts-section .h2 {
	font-size: 45px;
	line-height: 52px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 38px 0;
}

.contacts-item-content {
	padding: 0 0 0 20px;
}

.contacts-tmb-big {
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 22px;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
	padding: 0 0 0 28px;
	margin: 0 0 30px 0;
}

.contacts-tmb-big:last-child {
	margin-bottom: 0;
}

.contacts-tmb-big:before {
	content: "";
	width: 40px;
	height: 40px;
	position: absolute;
	left: 0;
	top: -5px;
	background: #FDB930;
}

.contacts-tmb-big-descr {
	position: relative;
}

.contacts-phone a {
	color: #000 !important;
	border: none !important;
}

.contacts-section h3,
.contacts-section .h3 {
	font-weight: 500;
	font-size: 30px;
	line-height: 37px;
	text-transform: uppercase;
	margin: 62px 0 31px 0;
}

.contacts-tmb {
	display: -ms-flexbox;
	display: flex;
	font-family: 'DINPro';
	font-weight: normal;
	font-size: 20px;
	line-height: 26px;
	margin: 0 0 33px 0;
}

.contacts-tmb:last-child {
	margin-bottom: 0;
}

.contacts-tmb-pic {
	-ms-flex-item-align: start;
	align-self: flex-start;
	-ms-flex-preferred-size: 20px;
	flex-basis: 20px;
	margin: 0 12px 0 0;
}

.contacts-tmb-pic img {
	display: block;
}

.contacts-tmb-ttl {
	font-family: 'Georgia';
	font-size: 14px;
	line-height: 19px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #727272;
	margin: 0 0 3px 0;
}

.contacts-persons {
	margin-bottom: -80px;
}

.contacts-person-tmb {
	margin: 0 0 80px 0;
}

.contacts-person-tmb h3,
.contacts-person-tmb .h3 {
	font-size: 30px;
	line-height: 37px;
	margin: 0 0 30px 0;
	text-transform: none;
}

.contacts-email {
	font-family: 'Georgia';
	text-transform: uppercase;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 3px;
}

.contacts-email a {
	color: #000 !important;
}

.feedback-form {
	position: relative;
	padding: 40px 80px 0 0;
}

.feedback-form:before {
	content: "";
	background-image: url(../images/feedback-form-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	left: 173px;
	right: 0;
	top: 0;
	bottom: 26px;
}

.feedback-form form {
	display: block;
	position: relative;
}

.feedback-form .form-footer {
	margin-top: 32px;
}

.feedback-form .form-footer .row {
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.feedback-form .form-agree {
	padding: 0 15px;
	margin-top: 15px;
}

.feedback-form .form-button {
	padding: 0 15px;
	-ms-flex-preferred-size: 242px;
	flex-basis: 242px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.feedback-form .form-button .btn {
	width: 100%;
}

.feedback-form-lead {
	font-family: 'DINPro';
	font-style: normal;
	font-weight: 500;
	font-size: 25px;
	line-height: 44px;
	color: #000000;
	max-width: 500px;
	margin: 0 0 62px 0;
}

.faq-cat-list {
	margin-bottom: -85px;
}

.faq-cat-tmb {
	position: relative;
	padding: 37px 13px 0 75px;
	margin: 0 0 85px 0;
}

.faq-cat-tmb:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 258px;
	background: url(../images/faq-cat-tmb-bg.jpg) center center no-repeat;
	background-size: cover;
}

.faq-cat-tmb-inner {
	position: relative;
}

.faq-cat-tmb h3,
.faq-cat-tmb .h3 {
	font-weight: 500;
	font-size: 40px;
	line-height: 45px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 0 0 18px 0;
}

ul.faq-list-short {
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: 'DINPro';
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
}

ul.faq-list-short > li {
	padding: 0;
	margin: 0 0 10px 0;
	min-height: 40px;
}

ul.faq-list-short > li:before {
	display: none;
}

ul.faq-list-short a,
ul.faq-list-short a:focus {
	color: #000;
	text-decoration: none;
	position: relative;
	border: none;
	display: block;
	padding: 5px 25px 0 24px;
}

ul.faq-list-short a:before {
	content: "";
	width: 40px;
	height: 40px;
	background: #FDB930;
	left: 0;
	top: 0;
	position: absolute;
}

ul.faq-list-short a:after {
	content: "";
	width: 6px;
	height: 10px;
	background: url(../images/faq-list-short-arrow.svg) 0 0 no-repeat;
	position: absolute;
	right: 0;
	top: 18px;
}

ul.faq-list-short a span {
	position: relative;
	border-bottom: 2px solid transparent;
	transition: all .15s ease;
}

ul.faq-list-short a:hover span {
	border-bottom-color: #479BFF;
}

.faq-cat-more {
	margin: 40px 0 0 0;
}

.question-form-wrapper {
	margin: 178px 0 0 0;
}

.question-form-wrapper h2,
.question-form-wrapper .h2 {
	font-family: 'DINPro';
	font-weight: bold;
	font-size: 55px;
	line-height: 62px;
	text-transform: uppercase;
	color: #000000;
	margin: 0 0 56px 0;
}

.faq-item {
	margin: 0 0 20px 0;
}

.faq-item-ttl {
	position: relative;
	cursor: pointer;
	padding: 3px 0 0 22px;
	min-height: 40px;
}

.faq-item-ttl:before {
	content: "";
	width: 40px;
	height: 40px;
	background: #FDB930;
	position: absolute;
	left: 0;
	top: 0;
}

.faq-item-ttl h3,
.faq-item-ttl .h3 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
	margin: 0;
	position: relative;
}

.faq-item-ttl h3 span,
.faq-item-ttl .h3 span {
	border-bottom: 2px solid transparent;
	transition: all .15s ease;
}

.faq-item-ttl h3 span:hover,
.faq-item-ttl .h3 span:hover {
	border-bottom-color: #479BFF;
}

.faq-item-content {
	display: none;
	background: #FFFFFF;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	margin: 26px 0 33px 22px;
	padding: 24px 40px 29px 40px;
}

.faq-item-content:before {
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #fff;
}

.faq-item.active .faq-item-content {
	display: block;
}

.faq-sidebar {
	position: relative;
	font-size: 20px;
	line-height: 30px;
	padding: 26px 30px 0 30px;
}

.faq-sidebar:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 27px;
	background-image: url(../images/faq-sidebar-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.faq-sidebar-inner {
	position: relative;
}

.faq-sidebar h3,
.faq-sidebar .h3 {
	font-weight: 500;
	font-size: 30px;
	line-height: 36px;
	text-transform: uppercase;
	margin: 0 0 23px 0;
}

.faq-sidbebar-button {
	margin: 39px 0 0 0;
	text-align: center;
}

@media (min-width: 992px) {
	.program-nav.fixed {
		margin: 0;
		padding: 10px 0;
		z-index: 1060;
	}

	.program-nav.fixed:before {
		content: "";
		position: absolute;
		left: -2000px;
		right: -2000px;
		top: 0;
		bottom: 0;
		background: #fff;
		box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
	}
}

.program-nav-inner {
	position: relative;
}

@media (min-width: 992px) {
	.header-fixed + main .program-nav-wrapper {
		height: 40px;
	}
}

.calendar-section {
	margin: 0 0 45px 0;
}

.calendar-section:last-child {
	margin-bottom: 0;
}

.calendar-section h2 {
	margin: 0 0 41px 0;
	font-weight: 500;
	font-size: 40px;
	line-height: 50px;
	text-transform: uppercase;
}

.main-slider-wrapper {
	max-width: 1400px;
	margin: 16px auto 0 auto;
	padding-bottom: 47px;
	padding: 0 15px;
	position: relative;
}

.main-slider-nav {
	border-top: 5px solid #FDB930;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 10;
	clear: both;
}

.main-slider-nav-item {
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	padding: 30px 30px 30px 30px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: end;
	justify-content: flex-end;
	transition: all .35s ease;
	min-height: 149px;
	cursor: pointer;
}

.main-slider-nav-item.active,
.main-slider-nav-item:hover {
	background: #FDB930;
	color: #fff;
}

.main-slider-nav-item-date {
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	/* or 112% */
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #969696;
	transition: all .35s ease;
	margin: 0 0 10px 0;
}

.main-slider-nav-item-date p {
	margin: 0;
}

.main-slider-nav-item h3,
.main-slider-nav-item .h3 {
	font-weight: 500;
	font-size: 24px;
	line-height: 24px;
	/* or 100% */
	color: #000000;
	margin: 0;
	text-transform: none;
	transition: all .35s ease;
}

.main-slider-nav-item.active .main-slider-nav-item-date,
.main-slider-nav-item:hover .main-slider-nav-item-date {
	color: #fff;
}

.main-slider-nav-item.active h3,
.main-slider-nav-item.active .h3,
.main-slider-nav-item:hover h3,
.main-slider-nav-item:hover .h3 {
	color: #fff;
}

.main-slider .slick-list {
	transition: all 1s ease;
}

.main-slide-content .row {
	margin: 0;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.main-slide-pic {
	-ms-flex-preferred-size: 58.8%;
	flex-basis: 58.8%;
	max-width: 58.8%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	position: relative;
}

.main-slide-pic img {
	max-width: 100%;
}

.main-slider .img-clone {
	position: absolute;
	width: 25%;
	top: 0;
	bottom: 0;
	transition: all .5s ease;
	overflow: hidden;
}

.main-slider .img-clone:before {
	content: "";
	position: absolute;
	left: 100%;
	right: 0;
	top: 0;
	bottom: 0;
	background: #fff;
	transition: all .5s ease;
	z-index: 10;
}

.main-slider .img-clone[data-index='0']:before {
	transition: all .5s ease;
}

.main-slider .img-clone[data-index='1']:before {
	transition: all .4s ease;
	transition-delay: .1s;
}

.main-slider .img-clone[data-index='2']:before {
	transition: all .3s ease;
	transition-delay: .2s;
}

.main-slider .img-clone[data-index='3']:before {
	transition: all .2s ease;
	transition-delay: .3s;
}

.main-slider .img-clone.closing:before {
	left: 0;
}

.main-slider .img-clone.closed:before {
	left: 0 !important;
	right: 0 !important;
	transition: all 0s ease !important;
}

.main-slider .img-clone.opening:before {
	left: 0;
	right: 100%;
}

.main-slider .img-clone img {
	position: absolute;
	top: 0;
	height: 100%;
	width: auto;
	max-width: initial;
}

.main-slider .img-clone[data-index="0"] {
	left: 0;
}

.main-slider .img-clone[data-index="0"] img {
	left: 0;
}

.main-slider .img-clone[data-index="1"] {
	left: 25%;
}

.main-slider .img-clone[data-index="1"] img {
	left: -100%;
}

.main-slider .img-clone[data-index="2"] {
	left: 50%;
}

.main-slider .img-clone[data-index="2"] img {
	left: -200%;
}

.main-slider .img-clone[data-index="3"] {
	left: 75%;
}

.main-slider .img-clone[data-index="3"] img {
	left: -300%;
}

.main-slide-descr {
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	padding: 31px 0 54px 50px;
	transition: all .5s ease;
}

.main-slide-descr.closing {
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	opacity: 0;
}

.main-slide-dates {
	display: -ms-flexbox;
	display: flex;
	margin: 0 -15px 17px -15px;
}

.main-slide-date {
	padding: 0 15px;
	position: relative;
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	/* or 112% */
	letter-spacing: 2px;
	text-transform: uppercase;
	min-width: 132px;
}

.main-slide-date:before {
	content: "";
	width: 61px;
	height: 61px;
	background: #FDB930;
	position: absolute;
	top: 0;
	left: 50px;
}

.main-slide-date-day {
	position: relative;
	font-weight: bold;
	font-size: 80px;
	line-height: 80px;
	/* or 66% */
	padding: 6px 0 0 0;
	letter-spacing: -2px;
	text-transform: uppercase;
}

.main-slide-date-month {
	position: relative;
}

.main-slide-date-time {
	position: relative;
}

.main-slider h2,
.main-slider .h2 {
	font-weight: bold;
	font-size: 55px;
	line-height: 62px;
	text-transform: uppercase;
	margin: 0 0 14px 0;
}

.main-slider h2 a,
.main-slider .h2 a,
.main-slider h2 a:focus,
.main-slider .h2 a:focus {
	color: #000 !important;
	border: none !important;
}

.main-slide-genres {
	font-size: 16px;
	line-height: 28px;
	color: #FDB930;
	font-style: italic;
}

table.main-slide-cast {
	margin: 29px 0 0 0;
}

table.main-slide-cast tr {
	border: none;
}

table.main-slide-cast td {
	border: none;
	vertical-align: top;
	padding: 0;
}

table.main-slide-cast td.name {
	font-family: 'Georgia';
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #505050;
	padding: 4px 42px 0 0;
}

table.main-slide-cast td.val {
	font-family: 'DINPro';
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
}

table.main-slide-cast a,
table.main-slide-cast a:focus {
	color: #000;
	border-bottom-color: transparent;
}

table.main-slide-cast a:hover {
	color: #479BFF;
	border-bottom-color: #479BFF;
}

.main-slide-button {
	margin: 31px 0 0 0;
}

.main-slider {
	margin-bottom: -24px;
	margin-left: -22px;
	height: 609px;
	overflow: hidden;
}

.main-slider-wrapper .slick-arrow-fake {
	display: none;
}

.main-slider.slick-initialized {
	height: auto !important;
	overflow: visible !important;
}

.section-content {
	padding: 65px 0 65px 0;
}

.marquee-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.marquee-item {
	padding: 0 53px;
}

.marquee-tmb {
	display: block;
	padding: 17px 0 0 70px;
	position: relative;
	border: none !important;
	color: #000 !important;
	transition: .2em;
}

.marquee-tmb:hover {
	color: #479BFF !important;
}

.marquee-tmb-pic {
	width: 173px;
	height: 83px;
	border-radius: 3px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	opacity: .1;
}

.marquee-tmb-inner {
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	letter-spacing: 3px;
	text-transform: uppercase;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	white-space: nowrap;
	padding: 0 0 9px 0;
}

.marquee-tmb-inner:after {
	content: "";
	position: absolute;
	top: 100%;
	height: 4px;
	background: #479BFF;
	left: 0;
	width: 100%;
	transition: all .35s ease;
}

.marquee-tmb:hover .marquee-tmb-inner:after {
	width: 143px;
}

.marquee-tmb-date {
	position: relative;
	padding: 0 32px 0 0;
	margin: 0 12px 0 0;
}

.marquee-tmb-date:before {
	content: "";
	width: 22px;
	height: 12px;
	background: url(../images/rarr.svg) 0 0 no-repeat;
	position: absolute;
	right: 0;
	top: 11px;
	transition: all .2s ease;
	opacity: 1;
}

.marquee-tmb-date:after {
	content: "";
	width: 22px;
	height: 12px;
	background: url(../images/rarr-hover.svg) 0 0 no-repeat;
	position: absolute;
	right: 0;
	top: 11px;
	transition: all .2s ease;
	opacity: 0;
}

.marquee-tmb:hover .marquee-tmb-date:before {
	opacity: 0;
}

.marquee-tmb:hover .marquee-tmb-date:after {
	opacity: 1;
}

.marquee {
	margin: 0 -53px;
	white-space: nowrap;
	box-sizing: border-box;
	position: relative;
}

.marquee-content {
	width: 300%;
	display: -ms-flexbox;
	display: flex;
	-webkit-animation: marquee 10s linear infinite forwards;
	animation: marquee 10s linear infinite forwards;
}

.marquee-content:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}

@-webkit-keyframes marquee {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-66.6%);
		transform: translateX(-66.6%);
	}
}

@keyframes marquee {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-66.6%);
		transform: translateX(-66.6%);
	}
}

.section-header {
	margin: 0 0 37px 0;
}

.section-header .row {
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: end;
	align-items: flex-end;
}

.section-header-l {
	padding: 0 15px;
}

.section-header-r {
	padding: 0 15px;
}

.section-header h2,
.section-header .h2 {
	font-weight: bold;
	font-size: 65px;
	line-height: 72px;
	text-transform: uppercase;
	color: #000000;
	margin: 0;
}

.section-header .all-link {
	margin-bottom: 10px;
}

.section-home-descr {
	font-weight: normal;
	font-size: 24px;
	line-height: 35px;
}

.section-home .day-link-num {
	font-size: 20px;
	line-height: 20px;
}

.section-home .news-group-l {
	-ms-flex-preferred-size: 163px;
	flex-basis: 163px;
}

.section-home .program-list > .row {
	margin: 0 -40px;
}

.section-home .program-list > .row > * {
	padding: 0 40px;
}

.section-home .program-tmb h3,
.section-home .program-tmb .h3 {
	font-size: 24px;
	line-height: 33px;
}

.section-home .program-tmb-pic {
	margin: 0 0 8px 0;
}

.section-home .program-tmb {
	margin: 0 0 56px 0;
}

.section-home .program-list {
	margin-bottom: -56px;
}

.subscribe-form-alt-wrapper {
	margin-top: 4px;
	margin-bottom: 33px;
}

.subscribe-form-alt-wrapper h2,
.subscribe-form-alt-wrapper .h2 {
	font-family: 'Georgia';
	font-weight: normal;
	font-size: 45px;
	line-height: 45px;
	/* or 100% */
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #479BFF;
	margin: 0 0 35px 0;
}

.subscribe-form-alt-wrapper .row {
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.subscribe-form-alt-wrapper .row > * {
	padding: 0 15px;
}

.subscribe-form-alt-wrapper .form-field {
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin-top: -11px;
}

.subscribe-form-alt-wrapper .form-agree {
	-ms-flex-preferred-size: 290px;
	flex-basis: 290px;
	margin: 14px 0 0 0;
}

.subscribe-form-alt-wrapper .form-agree input[type=checkbox] + label:before {
	top: 50%;
	margin-top: -10px;
}

.subscribe-form-alt-wrapper .form-group {
	padding-top: 0;
}

.subscribe-form-alt-wrapper input[type=text],
.subscribe-form-alt-wrapper input[type=email] {
	border-bottom-width: 1px;
	font-size: 36px;
	line-height: 36px;
	padding: 0 35px 20px 35px;
}

.subscribe-form-alt-wrapper .form-footer .btn {
	width: 213px;
}

.subscribe-form-alt-content {
	position: relative;
}

.subscribe-form-alt-content:before {
	content: "";
	width: 876px;
	height: 182px;
	background-image: url(../images/subscribe-form-alt-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	left: 173px;
	top: -55px;
}

.subscribe-form-alt-content-inner {
	position: relative;
}

.subscribe-form-alt-header {
	position: relative;
	z-index: 10;
}

.section-home .preview-list {
	margin-bottom: -39px;
}

.section-home .preview-list .row {
	margin: 0 -15px;
}

.section-home .preview-list .row > * {
	padding: 0 15px;
}

.section-home .preview-tmb {
	margin: 0 0 39px 0;
}

.section-home .preview-tmb h3,
.section-home .preview-tmb .h3 {
	font-size: 28px;
	line-height: 37px;
}

.section-home .preview-tmb-pic {
	margin: 0 0 10px 0;
}

.section-home .preview-tmb-age {
	margin-top: 9px;
}

.section-home .news-list {
	margin-top: 0;
}

.section-home ul.days-menu {
	margin-bottom: 42px;
	margin-top: 0;
}

.about-wrapper {
	position: relative;
	color: #fff;
	padding: 63px 0 100vh 0;
	margin: 0 0 59px 0;
	background: #000;
	overflow: hidden;
}

.troupe-pic {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 100vh;
	background-color: #000;
	width: auto !important;
}

.troupe-pic.fixed {
	position: fixed;
	z-index: 1;
}

.troupe-pic-inner {
	position: absolute;
	top: 62px;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.troupe-pic-shadow {
	content: "";
	background: #000;
	opacity: .7;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.about-wrapper-inner {
	position: relative;
	z-index: 10;
	padding-bottom: 80px;
}

.about-blockquote {
	display: -ms-flexbox;
	display: flex;
}

.about-blockquote-pic {
	width: 368px;
	height: 368px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border: 14px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	margin: 0 56px 0 0;
	position: relative;
	overflow: hidden;
}

.about-blockquote-pic img {
	width: 100%;
	height: 100%;
}

.about-blockquote-descr {
	position: relative;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	font-size: 24px;
	line-height: 36px;
	padding: 28px 0 0 0;
	min-height: 368px;
}

.about-blockquote-descr:after {
	content: "";
	width: 103px;
	height: 85px;
	background: url(../images/about-blockquote-quote.svg) 0 0 no-repeat;
	position: absolute;
	left: -143px;
	top: 33px;
}

.section-about .section-content {
	padding-bottom: 7px;
}

.about-blockquote-descr h3,
.about-blockquote-descr .h3 {
	font-size: 45px;
	line-height: 50px;
	text-transform: none;
	letter-spacing: 0;
	margin: 0 0 20px 0;
	color: #fff;
}

.about-blockquote-descr p {
	margin: 0 0 24px 0;
}

.about-blockquote-author p {
	margin: 0;
}

.about-blockquote-author-name {
	font-weight: normal;
	font-size: 24px;
	line-height: 32px;
	/* identical to box height, or 133% */
	letter-spacing: 10px;
	text-transform: uppercase;
	color: #FDB930;
	margin: 0 0 13px 0;
}

.about-blockquote-author-post {
	font-style: italic;
	font-weight: normal;
	font-size: 18px;
	line-height: 24px;
	max-width: 300px;
}

.about-nums {
	margin: 61px 0 0 0;
	max-width: 820px;
}

.about-num {
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	padding: 0 15px;
	text-align: center;
	font-style: italic;
	font-weight: normal;
	font-size: 20px;
	line-height: 24px;
}

.about-num-num {
	font-family: 'DINPro';
	font-size: 122px;
	line-height: 122px;
	letter-spacing: -3px;
	font-weight: normal;
	font-style: normal;
	margin: 0 0 4px 0;
}

.chamber-tmb {
	display: -ms-flexbox;
	display: flex;
	margin: 119px 0 0 0;
}

.chamber-tmb-pic {
	width: 368px;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0 56px 0 0;
	text-align: center;
}

.chamber-tmb-descr {
	font-size: 22px;
	line-height: 32px;
	padding-top: 7px;
}

.chamber-tmb h3,
.chamber-tmb .h3 {
	font-size: 45px;
	line-height: 50px;
	text-transform: none;
	letter-spacing: 0;
	margin: 73px 0 20px 0;
	color: #fff;
}

.chamber-tmb-pic-years {
	font-size: 16px;
	line-height: 24px;
	font-style: italic;
}

.section-home .partners-list {
	margin-bottom: -30px;
}

.section-home .partner-tmb {
	margin: 0 0 30px 0;
}

.section-home .partner-tmb-pic {
	height: 190px;
}

.section-home .news-list-alt .news-tmb-pic {
	-ms-flex-preferred-size: 337px;
	flex-basis: 337px;
}

.section-home .news-list-alt .news-tmb {
	margin-bottom: 34px;
}

.section-home .news-list-alt .news-tmb:last-child {
	margin-bottom: 0;
}

.section-home .news-list-alt .news-group {
	margin-bottom: 34px;
}

.contacts-map-home {
	height: 600px;
	margin: 50px 0 0 0;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.container {
	width: 1270px !important;
}

html,
body {
	min-width: 1270px;
}

.theater-nums {
	margin-bottom: -61px;
}

.theater-num {
	position: relative;
	margin: 0 0 61px 0;
}

.theater-num:before {
	content: "";
	width: 61px;
	height: 61px;
	background: #FDB930;
	position: absolute;
	left: 30px;
	top: 0;
}

.theater-num-num {
	font-family: 'DINPro';
	font-weight: bold;
	font-size: 80px;
	line-height: 80px;
	letter-spacing: -2px;
	text-transform: uppercase;
	color: #000000;
	position: relative;
	padding: 6px 0 0 0;
}

.theater-num-ttl {
	position: relative;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	/* or 156% */
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #444444;
	margin: 8px 0 0 0;
}

.about-blockquote-alt {
	margin: 58px 0 90px 0;
}

.about-blockquote-alt .about-blockquote-pic {
	border: none;
	width: 181px;
	height: 181px;
}

.about-blockquote-alt .about-blockquote-descr {
	font-size: 24px;
	line-height: 40px;
	font-style: italic;
	min-height: 181px;
}

.about-blockquote-alt .about-blockquote-descr:after {
	left: -110px;
	top: -20px;
}

.about-blockquote-alt .about-blockquote-author {
	font-style: normal;
	margin: 26px 0 0 0;
}

.about-blockquote-alt .about-blockquote-author-name {
	margin: 0 0 3px 0;
	position: relative;
}

.about-blockquote-alt .about-blockquote-author-name:before {
	content: "";
	width: 181px;
	height: 1px;
	background: #000;
	position: absolute;
	right: 100%;
	top: 15px;
	margin-right: 56px;
}

.about-blockquote-alt .about-blockquote-author-post {
	font-size: 16px;
	line-height: 24px;
}

.preview-list-alt .preview-tmb h3,
.preview-list-alt .preview-tmb .h3 {
	font-size: 25px;
	line-height: 35px;
}

.preview-list-alt .preview-tmb-pic {
	margin: 0 0 18px 0;
}

.uppercase {
	text-transform: uppercase;
}

.article-big-section {
	margin: 0 0 57px 0;
}

.article-big-section:last-child {
	margin-bottom: 0;
}

.plan-wrapper {
	padding: 32px;
	border: 2px solid #D6D6D6;
}

.plan-wrapper img {
	width: 100%;
}

.docs-list-alt {
	margin-bottom: -35px;
}

.docs-list-alt .doc-tmb {
	padding: 0;
	margin: 0 0 35px 0;
}

.docs-list-alt .doc-tmb-button {
	padding-top: 0;
	margin-top: -3px;
}

.docs-list-alt .doc-tmb-size-alt {
	font-family: 'Georgia';
	font-size: 14px;
	line-height: 22px;
	/* identical to box height, or 157% */
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #000000;
	margin: 13px 0 0 0;
}

.sidebar-section {
	position: relative;
	padding: 25px 0 30px 0;
}

.sidebar-section-bg {
	position: absolute;
	left: 105px;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.sidebar-section-content {
	position: relative;
}

.sidebar-section h3,
.sidebar-section .h3 {
	font-weight: 500;
	font-size: 30px;
	line-height: 37px;
	/* identical to box height, or 123% */
	text-transform: uppercase;
	color: #000000;
	margin: 0 0 26px 0;
}

.sidebar-contacts-item {
	font-family: 'DINPro';
	position: relative;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	/* identical to box height, or 150% */
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #000000;
	padding: 0 0 0 20px;
	margin: 0 0 19px 0;
}

.sidebar-contacts-item:last-child {
	margin-bottom: 0;
}

.sidebar-contacts-item:before {
	content: "";
	width: 25px;
	height: 25px;
	background: #FDB930;
	position: absolute;
	left: 0;
	top: -2px;
}

.sidebar-contacts-item .cont {
	position: relative;
}

.sidebar-contacts-phone a {
	text-decoration: none !important;
	color: #000 !important;
	border: none !important;
}

.sidebar-contacts-email {
	font-size: 12px;
}

.btn-email-small,
.btn-email-small:focus {
	font-size: 12px;
	line-height: 18px;
	font-family: 'Georgia';
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #000 !important;
	border-bottom: 2px solid #479BFF;
	padding: 1px 0 1px 0;
}

.sidebar-map {
	height: 284px;
	margin: 20px 0 20px 0;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.docs-list-small {
	margin-bottom: -25px;
	margin-right: 15px;
}

.docs-list-small .doc-tmb {
	padding: 0;
	margin: 0 0 25px 0;
}

.docs-list-small .doc-tmb-name {
	margin-right: 0;
}

.docs-list-small .doc-tmb-name h3,
.docs-list-small .doc-tmb-name .h3 {
	text-transform: none;
	font-weight: 500;
	font-size: 14px;
	line-height: 19px;
	margin: 0;
}

.docs-list-small .doc-tmb-ico {
	margin: 0 18px 0 0;
}

.btn-zoom {
	position: absolute;
	z-index: 100;
	width: 68px;
	height: 68px;
	left: 72px;
	bottom: 44px;
	transition: all .35s ease;
	opacity: .5;
	cursor: pointer;
}

.btn-zoom:hover {
	opacity: 1;
}

.btn-zoom:before {
	content: "";
	position: absolute;
	width: 50%;
	height: 50%;
	left: 0;
	top: 0;
	background: #FDB930;
	transition: all .35s ease;
}

.btn-zoom:hover:before {
	width: 100%;
	height: 100%;
}

.btn-zoom:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 58px;
	height: 58px;
	background: url(../images/ico-zoom.svg) 0 0 no-repeat;
}

.page-pic .container {
	width: 1240px !important;
}

.program-nav-ttl {
	display: none;
	font-family: 'DINPro';
	font-size: 36px;
	line-height: 40px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	width: 211px;
	padding: 0 15px;
	margin-right: 15px;
	position: absolute;
	right: 100%;
	top: 0;
	bottom: 0;
}

.program-nav-ttl .cont {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.program-nav.fixed .program-nav-ttl {
	display: block;
}

.history-section {
	margin: 122px 0 165px 0;
}

.history-section:first-child {
	margin-top: 61px;
}

.history-section:last-child {
	margin-bottom: 50px;
}

.history-section-header {
	text-align: center;
	margin: 0 0 61px 0;
	position: relative;
	z-index: 10;
}

.history-header-pic {
	position: relative;
	margin: 0 0 -68px 0;
	z-index: 10;
}

.history-header-pic img {
	display: block;
	margin: 0 auto;
	width: 182px;
	height: 182px;
	border-radius: 50%;
}

.history-header-content {
	position: relative;
}

.history-header-year-back {
	font-family: 'Georgia';
	position: absolute;
	left: -50px;
	right: -50px;
	top: 42px;
	font-size: 250px;
	line-height: 250px;
	text-align: center;
	letter-spacing: -2px;
	font-weight: normal;
	color: #EEEEEE;
	top: -152px;
}

.history-header-descr {
	position: relative;
	padding: 77px 0 0 0;
}

.history-header-year {
	font-family: 'DINPro';
	font-weight: bold;
	font-size: 100px;
	line-height: 100px;
	text-align: center;
	color: #FDB930;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}

.history-header-year .cont {
	position: relative;
}

.history-header-year .cont:before {
	content: "";
	width: 85px;
	height: 2px;
	background: #FDB930;
	position: absolute;
	right: 100%;
	top: 60px;
	margin-right: 40px;
}

.history-header-year .cont:after {
	content: "";
	width: 85px;
	height: 2px;
	background: #FDB930;
	position: absolute;
	left: 100%;
	top: 60px;
	margin-left: 40px;
}

.history-header-ttl {
	margin: 10px 0 0 0;
	position: relative;
	z-index: 10;
}

.history-header-ttl h2,
.history-header-ttl .h2 {
	font-family: 'Georgia';
	font-size: 24px;
	line-height: 32px;
	text-align: center;
	letter-spacing: 10px;
	text-transform: uppercase;
	color: #000000;
	margin: 0 -10px 0 0;
}

.history-header-sub-ttl {
	font-size: 20px;
	line-height: 30px;
	font-style: italic;
	font-weight: normal;
	color: #000;
	margin: 6px 0 0 0;
	position: relative;
	z-index: 10;
}

.history-section-content {
	position: relative;
	min-height: 760px;
}

.history-section-content + .history-section-content {
	margin-top: 144px;
}

.history-section-content + .history-section-content:before {
	content: "";
	width: 454px;
	height: 2px;
	position: absolute;
	left: 50%;
	top: -71px;
	margin-left: -227px;
	background: #FDB930;
	z-index: 20;
}

.history-section-bg {
	position: absolute;
	left: 50%;
	right: 0;
	top: 0;
	height: 707px;
	margin-left: -302px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.history-section-content-alt .history-section-bg {
	left: 0;
	right: 50%;
	margin-left: 0;
	margin-right: -302px;
}

.history-section-descr {
	width: 50%;
	padding-right: 91px;
	padding-top: 91px;
	position: relative;
	font-size: 20px;
	line-height: 35px;
}

.history-section-content-alt .history-section-descr {
	margin-left: auto;
	padding-right: 0;
	padding-left: 91px;
}

.history-section-descr h3,
.history-section-descr .h3 {
	font-weight: 500;
	font-size: 35px;
	line-height: 42px;
	/* or 120% */
	text-transform: uppercase;
	color: #FDB930;
	margin: 0 0 36px 0;
}

.history-slider-wrapper {
	position: absolute;
	left: 50%;
	right: 0;
	top: 0;
	padding: 91px 0 35px 0;
}

.history-section-content-alt .history-slider-wrapper {
	left: 0;
	right: 50%;
}

.history-slider .slide {
	padding: 0 15px 56px 15px;
	position: relative;
}

.history-slider img {
	height: 524px;
}

.history-slider .slide-content {
	display: block;
	color: #fff !important;
	text-decoration: none !important;
	border: none !important;
	position: relative;
	box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.15);
}

.history-slider .slide-caption {
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;
	/* or 125% */
	color: #FFFFFF;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 63px 20px 20px 20px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 70px);
}

.history-slider .slide-caption-inner {
	border-left: 1px solid #fff;
	padding: 0 0 0 18px;
	max-width: 310px;
}

.history-slider .slick-arrow {
	bottom: auto;
	top: 100%;
	margin-top: 6px;
	margin-bottom: 0;
	right: auto;
	left: 0;
	margin-left: 557px;
}

.history-slider .slick-prev {
	margin-left: 490px;
}

.history-section-content-alt .history-slider .slick-arrow {
	left: auto;
	right: 0;
	margin-right: 490px;
}

.history-section-content-alt .history-slider .slick-prev {
	margin-right: 557px;
}

.history-slider-wrapper .slider-count {
	left: 0;
	bottom: 0;
	margin-left: 349px;
	margin-bottom: -18px;
}

.history-section-content-alt .history-slider-wrapper .slider-count {
	right: 0;
	left: auto;
	bottom: 0;
	margin-right: 349px;
	margin-bottom: -18px;
}

.page-content-wide .page-header {
	margin: -70px 35px 0 35px;
	background: #fff;
	text-align: center;
	padding: 18px 30px 0 30px;
}

.page-content-wide ul.breadcrumb {
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 0 2px 0;
}

.history-blockquote {
	padding: 0 0 0 91px;
	margin: 30px 0 30px 0;
	position: relative;
}

.history-blockquote:first-child {
	margin-top: 0;
}

.history-blockquote:last-child {
	margin-bottom: 0;
}

.history-blockquote:before {
	content: "";
	width: 73px;
	height: 62px;
	background: url(../images/about-blockquote-quote.svg) 0 0 no-repeat;
	position: absolute;
	left: -0px;
	top: 0;
	background-size: 100% auto;
}

.history-blockquote-text {
	font-style: italic;
}

.history-blockquote-author {
	margin: 29px 0 0 0;
}

.history-blockquote-author-name {
	font-weight: normal;
	font-size: 24px;
	line-height: 32px;
	letter-spacing: 10px;
	text-transform: uppercase;
}

.history-blockquote-author-source {
	font-style: italic;
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	/* identical to box height, or 150% */
	color: #000000;
	margin: 7px 0 0 0;
}

.history-video .play-button {
	width: 82px;
	height: 82px;
	background: #FDB930;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -41px 0 0 -41px;
}

.history-video .play-button:after {
	content: "";
	width: 15px;
	height: 17px;
	background: url(../images/play-button.svg) 0 0 no-repeat;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-left: -6px;
}

.filter-section {
	max-width: 153px;
	margin: 0 0 10px 0;
}

.filter-section:last-child {
	margin-bottom: 0;
}

.filter-section-header {
	position: relative;
	padding: 0 40px 8px 0;
	cursor: pointer;
}

.filter-section-header .arr {
	width: 16px;
	height: 16px;
	position: absolute;
	right: 0;
	top: 3px;
}

.filter-section-header .arr-line-1 {
	width: 16px;
	height: 2px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -1px;
	background: #479BFF;
	transition: all .2s ease;
}

.filter-section-header .arr-line-2 {
	width: 2px;
	height: 16px;
	position: absolute;
	left: 50%;
	top: 0;
	margin-left: -1px;
	background: #479BFF;
	transition: all .2s ease;
}

.filter-section-header.active .arr-line-2 {
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
}

.filter-section-header h4,
.filter-section-header .h4 {
	font-family: 'Georgia';
	font-weight: normal;
	font-size: 14px;
	line-height: 21px;
	/* identical to box height, or 150% */
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #727272;
	margin: 0;
}

.filter-section-content {
	background: #FFFFFF;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
	border-top: 2px solid #FDB930;
	padding: 18px 14px 15px 14px;
	display: none;
	margin: 0 0 35px 0;
}

.filter-section.active .filter-section-content {
	display: block;
}

.btn-filter-reset,
.btn-filter-reset:focus {
	display: inline-block;
	position: relative;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #000;
	padding: 0 0 9px 30px;
	border-bottom: none !important;
	display: inline-block;
	cursor: pointer;
	transition: all .2s ease;
}

.btn-filter-reset:before {
	content: "";
	width: 18px;
	height: 19px;
	background: url(../images/ico-filter-reset.svg) 0 0 no-repeat;
	background-size: 18px auto;
	position: absolute;
	left: 0;
	top: 0px;
}

.btn-filter-reset:after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	height: 2px;
	background: #479BFF;
	transition: all .3s ease;
}

.btn-filter-reset:hover {
	color: #479BFF;
}

.btn-filter-reset:hover:after {
	width: 46px;
}

.filter-footer {
	margin: 50px 0 0 0;
}

.cookie-popup {
	position: fixed;
	left: 10px;
	bottom: 10px;
	z-index: 500;
	background: #fff;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	max-width: 500px;
	font-family: 'DINPro';
	font-size: 11px;
	line-height: 16px;
	font-weight: normal;
	padding: 16px 20px 18px 20px;
}

.cookie-popup .row {
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-align: center;
	align-items: center;
}

.cookie-popup-l {
	padding: 0 10px;
}

.cookie-popup-r {
	padding: 0 10px;
}

.cookie-popup a {
	color: #000 !important;
	text-decoration: underline !important;
}

.cookie-popup a:hover {
	text-decoration: none !important;
}

.btn-cookie,
.btn-cookie:focus {
	font-family: 'Georgia';
	font-size: 11px;
	line-height: 16px;
	text-transform: uppercase;
	color: #000;
	border: 2px solid #FDB930;
	background-color: #FDB930;
	padding: 10px 14px 10px 14px;
}

.btn-cookie:hover {
	color: #000;
	background-color: transparent;
}

.btn-cookie:active {
	color: #000;
	background-color: transparent;
}

.cookie-popup .row {
	margin: 0 -10px;
}

.cookie-popup p:not(:last-child) {
	margin: 0 0 7px 0;
}

.selected_box {
	position: absolute;
	outline: 3px solid #eee;
	overflow: hidden;
	z-index: 10000;
}

.selected_box_img {
	position: absolute;
	display: inline-block;
	z-index: 10000;
}

.select_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5000;
	background: rgba(0, 0, 0, 0.5);
}

.ya-share2__list_direction_horizontal > .ya-share2__item {
	margin-bottom: 5px !important;
}

.submenu {
	position: absolute;
	left: 10px;
	top: 100%;
	width: 337px;
	padding: 14px 0 0 0;
	display: none;
}

.submenu-right {
	left: auto;
	right: 10px;
}

.submenu-inner {
	background: #FFFFFF;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
	border-top: 2px solid #FDB930;
	padding: 20px 20px 20px 20px;
	position: relative;
}

.submenu-inner:before {
	content: "";
	width: 15px;
	height: 9px;
	background: url(../images/submenu-arrow.png) 0 0 no-repeat;
	background-size: 100% 100%;
	position: absolute;
	bottom: 100%;
	left: 18px;
}

.submenu-right .submenu-inner:before {
	left: auto;
	right: 18px;
}

.submenu ul {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.submenu ul > li {
	margin: 0 0 10px 0;
}

.submenu ul > li:last-child {
	margin-bottom: 0;
}

.submenu a,
.submenu a:focus {
	display: block;
	padding: 10px 0 10px 26px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	min-height: 60px;
	display: flex;
	color: #000 !important;
	border: none !important;
	text-align: left;
}

.submenu-ico {
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 60px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.submenu-ico:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all .2s ease;
	background-color: transparent;
}

.submenu a:hover .submenu-ico:after,
.submenu a.active .submenu-ico:after {
	background-color: #FDB930;
}

.submenu-text {
	position: relative;
}

.up-link {
	position: fixed;
	left: 15px;
	bottom: 55px;
	z-index: 500;
	width: 67px;
	height: 65px;
	background: #FDB930;
	text-align: center;
	cursor: pointer;
	transition: .2em;
	border: 2px solid #FDB930;
	color: #fff;
	font-family: 'DINPro';
	font-weight: 500;
	font-size: 11px;
	line-height: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 12px 0 0 0;
}

.up-link:hover {
	background: transparent;
	color: #FDB930;
}

.up-link-pic {
	margin: 0 0 4px 0;
}

.up-link-pic svg * {
	transition: all .2s ease;
}

.up-link:hover .up-link-pic svg *[fill] {
	fill: #FDB930;
}

.up-link:hover .up-link-pic svg *[stroke] {
	stroke: #FDB930;
}

.content-404 {
	text-align: center;
}

.descr-404 {
	font-size: 24px;
	line-height: 35px;
}

.button-404 {
	margin: 42px 0 0 0;
}

body.popup-open {
	overflow: hidden;
}

.bx-core-window {
	z-index: 3000;
}

.cast-header {
	font-weight: normal;
	font-size: 20px;
	line-height: 16px;
	/* identical to box height, or 80% */
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #000000;
	margin: 40px 0 30px 0;
}

.cast-header:first-child {
	margin-top: 0;
}

.header-search {
	position: relative;
	margin: 0 0 -16px 0;
}

.header-search:before {
	content: "";
	width: 1px;
	height: 25px;
	background: #EEEEEE;
	position: absolute;
	left: 0;
	top: -1px;
}

.header-search [type=submit] {
	position: absolute;
	right: 0;
	top: 1px;
	border: none;
	background: transparent url(../images/ico-search.svg) 0 0 no-repeat;
	width: 22px;
	height: 22px;
	font-size: 0;
	color: transparent;
	cursor: pointer;
}

.header-search input[type=text] {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #606060;
	padding-bottom: 14px;
	border-bottom-color: #FDB930;
	padding-right: 30px;
}

.header-search input[type=text]:focus {
	color: #479BFF;
}

.header-search ::-webkit-input-placeholder {
	/* Edge */
	color: #606060;
}

.header-search :-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #606060;
}

.header-search ::-ms-input-placeholder {
	color: #606060;
}

.header-search ::placeholder {
	color: #606060;
}

.search-form {
	position: relative;
	margin: 0 0 80px 0;
}

.search-form [type=submit] {
	position: absolute;
	right: 0;
	top: 3px;
	border: none;
	background: transparent url(../images/ico-search-alt.svg) 0 0 no-repeat;
	width: 22px;
	height: 22px;
	font-size: 0;
	color: transparent;
	cursor: pointer;
}

.search-form [type=submit]:hover {
	background: transparent url(../images/ico-search-alt-hover.svg) 0 0 no-repeat;
}

.search-form input[type=text] {
	font-size: 24px;
	line-height: 30px;
	font-weight: 500;
	color: #000;
	padding-bottom: 14px;
	border-bottom-color: #479BFF;
	padding: 0 30px 13px 0;
}

.search-form input[type=text]:focus {
	color: #479BFF;
}

.search-form ::-webkit-input-placeholder {
	/* Edge */
	color: #606060;
}

.search-form :-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #606060;
}

.search-form ::-ms-input-placeholder {
	color: #606060;
}

.search-form ::placeholder {
	color: #606060;
}

.header-search-mob {
	display: none;
}

.search-list {
	margin-bottom: -80px;
}

.search-tmb {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin: 0 0 80px 0;
}

.search-tmb-num {
	font-family: 'DINPro';
	font-size: 50px;
	line-height: 50px;
	font-weight: bold;
	color: #000;
	letter-spacing: -2px;
	position: relative;
	margin: 0 30px 0 0;
	-ms-flex: 0 0 76px;
	flex: 0 0 76px;
	padding: 11px 0 0 0;
}

.search-tmb-num:before {
	content: "";
	width: 50px;
	height: 50px;
	background: #FDB930;
	position: absolute;
	right: 0;
	top: 0;
}

.search-tmb-num span {
	position: relative;
}

.search-tmb-pic {
	-ms-flex: 0 0 30.7%;
	flex: 0 0 30.7%;
	margin: 0 40px 0 0;
}

.search-tmb-pic img {
	width: 100%;
}

.search-tmb-content a {
	color: #000 !important;
}

.search-tmb h3,
.search-tmb .h3 {
	font-size: 28px;
	line-height: 37px;
	margin: 0 0 11px 0;
	transition: all .2s ease;
}

.search-tmb.hover h3,
.search-tmb.hover .h3 {
	color: #FDB930;
}

ul.search-tmb-breadcrumb {
	margin: 13px 0 0 0 !important;
	font-size: 14px !important;
	line-height: 20px !important;
}

ul.breadcrumb > li {
	margin: 0 15px 0 0 !important;
	padding: 0 15px 0 0 !important;
}

ul.search-tmb-breadcrumb > li:after {
	width: 6px !important;
	height: 7px !important;
	right: -4px !important;
	top: 8px !important;
}

ul.search-tmb-breadcrumb > li:last-child:after {
	display: none;
}

span.search-hl {
	position: relative;
	background-image: linear-gradient(to right, #FDB930 0, #FDB930 1px);
	background-size: 1px 7px;
	background-repeat: repeat-x;
	background-position: 0 bottom;
}

.search-tmb h3 span.search-hl,
.search-tmb .h3 span.search-hl {
	background-position: left 0px bottom 3px;
}

.search-tmb.hover h3 span.search-hl,
.search-tmb.hover .h3 span.search-hl {
	background-image: linear-gradient(to right, rgba(253, 185, 48, 0.3) 0, rgba(253, 185, 48, 0.3) 1px);
}

.article-content > img,
.article-content > p > img {
	max-width: 100%;
	height: auto !important;
}

blockquote {
	width: auto !important;
	max-width: 100%;
}
