@charset "UTF-8";
/* Fonts */
@font-face {
	font-family: 'Proxima Nova A';
	src: url("fonts/ProximaNovaA-Bold.woff2") format("woff2"), url("fonts/ProximaNovaA-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Proxima Nova A';
	src: url("fonts/ProximaNovaA-Regular.woff2") format("woff2"), url("fonts/ProximaNovaA-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* Defaults */
body {
	background: #fff;
	font-family: 'Proxima Nova A', 'Arial', 'Helvetica', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	color: #1E1A1A;
}

.wrapper {
	max-width: 1920px;
	margin: 0 auto;

}

.container {
	max-width: 1370px;
	padding-right: 30px;
	padding-left: 30px;

}


img {
	max-width: 100%;
	border: 0;
}

a {
	color: inherit;
	outline: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

a:active, a:hover, a:focus {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

ul {
	list-style: none;
}

ul,
li {
	padding: 0;
	margin: 0;
}

[href^="tel:"] {
	white-space: nowrap;
}

button,
input,
select,
textarea {
	font-family: inherit;
	color: inherit;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

::-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

.button {
	width: 100%;
	height: 65px;
	padding: 0;
	border: 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 139%;
	cursor: pointer;
}

.button:hover {
	opacity: 0.8;
}

.button_1,
.button_4 {
	background: #E42313;
	color: #fff;
}

.button_1:hover, .button_1:focus,
.button_4:hover, .button_4:focus {
	opacity: 1; 
	background: #CF1F10;
	color: #fff;
}

.button_2, .button_2:hover, .button_2:focus {
	background: #fff;
	color: #E42313;
}

.button_3, .button_3:hover, .button_3:focus {
	background: #fff;
	border: 1px solid #E42313;
	color: #E42313;
}

.button_link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 10px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
}

.button_back:before {
	content: '';
	width: 28px;
	height: 9px;
	background: url(../img/common/icons.png) no-repeat 0 -160px;
	margin-right: 10px;
}

.button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

H1 {
	font-weight: 700;
	font-size: 55px;
	line-height: 67px;
	margin: 0;
}

.section-title {
	font-weight: 700;
	font-size: 50px;
	line-height: 110%;
	margin: 0 0 50px 0;
}

.section-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-bottom: 50px;
}

.section-head .section-title {
	margin: 0;
}

.section-head__link {
	font-weight: 700;
	white-space: nowrap;
}

.section-head__link:after {
	content: '';
	display: inline-block;
	width: 28px;
	height: 8px;
	background: url(../img/common/icons.png) no-repeat 0 0;
	margin-left: 10px;
}

.section-head__link_white, .section-head__link_white:hover, .section-head__link_white:focus {
	color: #fff;
}

.section-head__link_white:after, .section-head__link_white:hover:after, .section-head__link_white:focus:after {
	background-position: 0 -26px;
}

.section-head__link_red, .section-head__link_red:hover, .section-head__link_red:focus {
	color: #E42313;
}

.section-head__link_red:after, .section-head__link_red:hover:after, .section-head__link_red:focus:after {
	background-position: 0 -13px;
}

.breadcrumbs {
	font-size: 15px;
	line-height: 167%;
	margin-bottom: 10px;
}

.breadcrumbs SPAN {
	color: #848484;
}

.subsections {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #DADADA;
	margin-bottom: 120px;
}

.subsections:before, .subsections:after {
	position: absolute;
	bottom: 0;
	content: '';
	width: 1000px;
	height: 1px;
	background: #DADADA;
}

.subsections:before {
	right: 100%;
}

.subsections:after {
	left: 100%;
}

.subsections__item {
	margin-right: 80px;
}

.subsections__item:last-child {
	margin: 0;
}

.subsections__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 10px;
	white-space: nowrap;
	margin-bottom: -1px;
}

.subsections__item.current .subsections__link {
	border-bottom: 2px solid #E42313;
	color: #E42313;
}

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

.download__item {
	margin: 0 50px 60px 0;
}

.download__item:last-child {
	margin-right: 0;
}

.download__link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 57px;
}

.download__link:hover {
	color: #E42313;
	text-decoration: underline;
}

.download__link:before {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	content: '';
	width: 44px;
	height: 50px;
	background: url(../img/common/pdf.png) no-repeat 0 0;
}

.scrollbox {
	overflow-x: auto;
	scrollbar-width: thin;
	scrollbar-color: #E42313 #F1F5F9;
}

.scrollbox::-webkit-scrollbar {
	height: 8px;
	border-radius: 10px;
}

.scrollbox::-webkit-scrollbar-track {
	border-radius: 10px;
	background: #F1F5F9;
}

.scrollbox::-webkit-scrollbar-thumb {
	height: 8px;
	background-color: #E42313;
	border-radius: 10px;
}

.appearance-block {
	opacity: 0;
	margin-top: 500px;
}

.appearance-block_transition {
	opacity: 1;
	margin-top: 0;
}

@media (prefers-reduced-motion: no-preference) {
	.appearance-block {
		-webkit-transition: all .9s ease-out, opacity 15.9s ease-out;
		transition: all .9s ease-out, opacity 15.9s ease-out;
	}
}

.hidden {
	display: none;
}

.lazy {
	background-image: none !important;
	opacity: 0;
}

.lazy:before, .lazy:after {
	content: none !important;
}

.lazy-loaded {
	opacity: 1;
	-webkit-transition: 0.1s;
	transition: 0.1s;
}

/* share  ------------------------------------------------------- */
.ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short {
	padding: 0 !important;
	background: none !important;
	opacity: .5;
}

.ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short:hover, .ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short:focus {
	opacity: 1;
}

.ya-share2__container_shape_round .ya-share2__badge {
	border-radius: 0 !important;
}

.ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: auto !important;
	height: auto !important;
	background: none !important;
}

.ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more:before {
	content: '';
	display: block;
	width: 36px;
	height: 36px;
	background: url(../img/common/share.png) no-repeat 0 0;
	margin-right: 7px;
}

.ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more:after {
	content: 'Поделиться';
	font-size: 18px;
	color: #1E1A1A;
}

.ya-share2__container_size_m.ya-share2__container_alone .ya-share2__popup_direction_bottom, .ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__popup_direction_bottom {
	top: 45px !important;
}

/* slick-carousel ------------------------------------------------------- */
.carousel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 1px;
}

.slide-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
}

.slide-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
}

.slick-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.slick-arrow {
	position: relative;
	display: block;
	width: 20px;
	height: 15px;
	background: url(../img/common/icons.png) no-repeat 0 -130px;
	cursor: pointer;
}

.slick-arrow:hover {
	opacity: .7;
}

.slick-slider-next {
	-webkit-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}

.slick-disabled {
	opacity: .7;
	cursor: auto;
}

.slick-slider-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	padding: 0 10px;
}

.slick-slider-dots ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
}

.slick-slider-dots ul li {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	margin: 0 3px;
}

.slick-slider-dots ul li button {
	display: block;
	width: 100%;
	height: 2px;
	padding: 0;
	background: #eee;
	border: 0;
	font-size: 0;
	line-height: 0;
	color: transparent;
	outline: none;
	cursor: pointer;
}

.slick-slider-dots ul li.slick-active button {
	background: #E42313;
}

.form {
	/* Select ---------------------------------------------------------------------------------*/
}

.form ::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #DEE2E5;
}

.form ::-moz-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #DEE2E5;
}

.form ::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #DEE2E5;
}

.form ::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #DEE2E5;
}

.form :-ms-input-placeholder {
	/* IE 10+ */
	color: #DEE2E5;
}

.form__title {
	font-weight: 700;
	font-size: 46px;
	line-height: 110%;
	margin-bottom: 20px;
}

.form__title_small {
	font-size: 21px;
	line-height: 100%;
	margin-bottom: 15px;
}

.form__text {
	margin-bottom: 30px;
}

#iab_login_form .form__items {
	display: block;
}

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

.form__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-flex: 1;
	    -ms-flex: 1 0;
	        flex: 1 0;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	margin-bottom: 30px;
}

.form__item_center {
	text-align: center;
}

.form__label {
	display: block;
	font-weight: 700;
	font-size: 18px;
	line-height: 139%;
	margin-bottom: 10px;
}

.form__label SPAN {
	color: #E42313;
}

.form__input {
	/* width: 100%; */
	max-width: 390px;
	/* max-width: 253px; */
	height: 55px;
	border: 1px solid #DEE2E5;
	font-size: 18px;
	color: #1E1A1A;
	padding: 0 12px;
	background-color: #fff;
	-webkit-appearance: none;
	outline: none;
}

.form__input:focus {
	border-color: #1E1A1A;
}

.form__input.error {
	border: 1px solid #ff2626;
	background: #fff;
}

.form__input.error::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error::-moz-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error:-ms-input-placeholder {
	/* IE 10+ */
	color: #ff2626;
}

.form__input.valid {
	border: 1px solid #219653;
	background: #fff;
	color: #219653;
}

.form__input.valid::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #219653;
}

.form__input.valid::-moz-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #219653;
}

.form__input.valid::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #219653;
}

.form__input.valid::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #219653;
}

.form__input.valid:-ms-input-placeholder {
	/* IE 10+ */
	color: #219653;
}

.form__input_search {
	padding: 0 12px 0 37px;
	border-width: 0 0 1px 0;
	background: #fff url("../img/form/search.png") no-repeat 0 15px;
}

.form__input_search::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #848484;
}

.form__input_search::-moz-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #848484;
}

.form__input_search::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #848484;
}

.form__input_search::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #848484;
}

.form__input_search:-ms-input-placeholder {
	/* IE 10+ */
	color: #848484;
}

.form__textarea {
	width: 100%;
	border: 1px solid #DEE2E5;
	font-size: 18px;
	color: #1E1A1A;
	padding: 15px 12px;
	background-color: #fff;
	-webkit-appearance: none;
	outline: none;
}

.form__textarea:focus {
	border-color: #1E1A1A;
}

.form__textarea.error {
	border: 1px solid #ff2626;
	background: #fff;
}

.form__textarea.error::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__textarea.error::-moz-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__textarea.error::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__textarea.error::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__textarea.error:-ms-input-placeholder {
	/* IE 10+ */
	color: #ff2626;
}

.form__textarea.valid {
	border: 1px solid #219653;
	background: #fff;
	color: #219653;
}

.form__textarea.valid::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #219653;
}

.form__textarea.valid::-moz-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #219653;
}

.form__textarea.valid::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #219653;
}

.form__textarea.valid::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #219653;
}

.form__textarea.valid:-ms-input-placeholder {
	/* IE 10+ */
	color: #219653;
}

.form .radio-label {
	position: relative;
	display: block;
	margin: 0 0 30px 0;
}

.form .radio {
	position: absolute;
	top: 5px;
	left: 0;
	z-index: 2;
	padding: 0;
	opacity: 0;
	border: none;
}

.form .radio + SPAN {
	position: relative;
	display: block;
	padding-left: 48px;
	font-weight: 400;
	font-size: 18px;
	line-height: 139%;
	-webkit-appearance: none;
	outline: none;
	cursor: pointer;
}

.form .radio + SPAN:before {
	position: absolute;
	top: 4px;
	left: 0;
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/form/icons.png) no-repeat -27px -62px;
}

.form .radio + SPAN SPAN {
	display: block;
	color: #c1c1c1;
}

.form .radio:checked + SPAN:before,
.form .radio:active + SPAN:before {
	background-position: -27px -85px;
}

.form .checkbox-label {
	position: relative;
	display: block;
}

.form .checkbox {
	position: absolute;
	top: 5px;
	left: 0;
	z-index: 2;
	padding: 0;
	opacity: 0;
	border: none;
}

.form .checkbox + SPAN {
	position: relative;
	display: block;
	padding-left: 24px;
	font-weight: 400;
	font-size: 18px;
	line-height: 139%;
	-webkit-appearance: none;
	outline: none;
	cursor: pointer;
}

.form .checkbox + SPAN:before {
	position: absolute;
	top: 5px;
	left: 0;
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background: url(../img/form/icons.png) no-repeat 0 -54px;
}

.form .checkbox + SPAN SPAN {
	display: block;
	color: #c1c1c1;
}

.form .checkbox:checked + SPAN:before,
.form .checkbox:active + SPAN:before {
	background-position: 0 -71px;
}

.form__buttonbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: auto;
}

.form__buttonbox .form__item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 287px;
	        flex: 0 0 287px;
	width: 287px;
	margin-right: 20px;
}

.form__buttonbox .form__item:last-child {
	margin-right: 0;
}

.form__button {
	height: 65px;
}

.form__button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.form__approval {
	font-size: 15px;
	line-height: 167%;
	color: #848484;
	margin-bottom: 50px;
}

.form__approval-link {
	text-decoration: underline;
}

.form__footer {
	position: relative;
	display: block;
	font-size: 15px;
	line-height: 167%;
	color: #848484;
	cursor: pointer;
	margin-bottom: 50px;
}

.form__footer-checkbox {
	position: absolute;
	left: 0;
	top: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 14px;
	height: 14px;
	border: 1px solid #1E1A1A;
	background: none;
}

.form__footer-checkbox input {
	display: none;
}

.form__footer-checkbox-icon:before {
	display: none;
	content: url("../img/form/check.png");
	margin-top: -2px;
}

input:checked + .form__footer-checkbox-icon:before {
	display: block;
}

.form__footer-text {
	/* padding-left: 28px; */
}

.form__footer-text a {
	text-decoration: underline;
}

.form__link_red {
	color: #E42313;
}

.form_vertical .form__items {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
			flex-direction: row;
			flex-flow: wrap;
}

.form_vertical .form__item {
	max-width: 360px;
	/* max-width: 253px; */
}

.form_vertical .form__more {
	max-width: 360px;
	max-width: 100%;
}

.form_horisontal .form__title {
	margin-bottom: 23px;
}

.form_horisontal .form__items {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.form_horisontal .form__item {
	width: 100%;
}

.form_horisontal .form__button {
	max-width: 287px;
}

.form__items_1 .form__item {
	max-width: 100%;
}

.form__items_1 .form__input {
	max-width: none;
}

.form__items_2 {
	margin-right: -70px;
}

.form__items_2 .form__item {
	max-width: 50%;
	padding-right: 70px;
}

.form__items_3 {
	margin-right: -70px;
}

.form__items_3 .form__item {
	max-width: 33.33333%;
	padding-right: 70px;
}

.form__items_4 {
	margin-right: -16px;
}

.form__items_4 .form__item {
	max-width: 25%;
	padding-right: 16px;
}

.form__select {
	position: relative;
	width: 100%;
	max-width: 390px;
	height: 55px;
	margin: 0 auto;
}

.form__select_active .form__select-title {
	z-index: 11;
}

.form__select_active .form__select-title:before {
	-webkit-transform: translate(-3px, -50%) rotate(-45deg);
	        transform: translate(-3px, -50%) rotate(-45deg);
}

.form__select_active .form__select-title:after {
	-webkit-transform: translate(3px, -50%) rotate(45deg);
	        transform: translate(3px, -50%) rotate(45deg);
}

.form__select_active .form__select-options {
	top: 55px;
	z-index: 10;
	opacity: 1;
	visibility: visible;
}

.form__select_active .form__select-label + .form__select_active .form__select-input + .form__select_active .form__select-label {
	max-height: 52px;
	border-top-width: 1px;
	margin: 0;
}

.form__select-title {
	position: relative;
	z-index: 9;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 100%;
	padding: 0 50px 0 12px;
	background: #fff;
	border: 1px solid #DEE2E5;
	font-size: 16px;
	color: #1E1A1A;
	cursor: default;
}

.form__select-title.error {
  border: 1px solid #ff2626;
}

.form__select-title:before, .form__select-title:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	display: block;
	width: 10px;
	height: 2px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	background-color: #1E1A1A;
	-webkit-transform: translate(-3px, -50%) rotate(45deg);
	        transform: translate(-3px, -50%) rotate(45deg);
}

.form__select-title:after {
	-webkit-transform: translate(3px, -50%) rotate(-45deg);
	        transform: translate(3px, -50%) rotate(-45deg);
}

.form__select-options {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 8;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	background-color: #fff;
	-webkit-box-shadow: 1px 1px 13px rgba(132, 132, 132, 0.25);
	        box-shadow: 1px 1px 13px rgba(132, 132, 132, 0.25);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	opacity: 0;
	visibility: hidden;
}

.form__select-input {
	display: none;
}

.form__select-input:checked + label {
	background-color: #F5F5F5;
	color: #1E1A1A;
}

.form__select-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	padding: 5px 16px;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	cursor: default;
	overflow: hidden;
	margin: 0;
	font-size: 16px;
	min-height: 45px;
}

.form__select-label + input + .form__select-label {
	border-top: 0 solid #C7CCD160;
}

.form__select-label:hover {
	background-color: #E42313;
	color: #fff;
}

label.error {
	display: none !important;
}

.widget-form-privacy {
	display: none !important;
}

.send-success {
	color: #000000;
}

.phone-info {
	padding-top: 10px;
}

.phone-info__text {
	max-width: 290px;
	padding-bottom: 11px;
	font-size: 11px;
	line-height: 12px;
	letter-spacing: 0.04em;
	color: #222;
	text-transform: uppercase;
}

.phone-info__number {
	font-size: 21px;
	font-weight: 700;
	line-height: 100%;
	color: #000;
}

.phone-info__number:hover, .phone-info__number:focus {
	color: #000;
	text-decoration: none;
}

/* Blocks */
.header {
	position: sticky;
    top: 0;
    left: 0;
	width: 100%;
	max-width: 1920px;
	z-index: 20;
}

.page-scrolled .header {
	background: whitesmoke;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	        margin-top: 0px;
}

.header .container {
	max-width: 1800px;
}

.header__box {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 120px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.page-scrolled .header__box {
	min-height: 70px;
}



.header__logo {
	position: absolute;
	left: 0;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 98px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.page-scrolled .header__logo {
	width: 60px;
}

.header__menu {
	width: 100%;
	max-width: 1370px;
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
	margin: 0 auto;
}

.header__menu_main_closed {
	position: relative;
	z-index: -10;
}

.header__menu .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	max-width: 1370px;
}

.header__menu-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
}

.header__menu-item {
	position: relative;
}

.header__menu-item-link {
	font-weight: 700;
	font-size: 15px;
	line-height: 25px;
	white-space: nowrap;
	cursor: pointer;
}

.header__menu-item-link:hover, .header__menu-item-link_current {
	color: #E42313;
}

.header__menu-item-link.open {
	color: #E42313;
}

.header__menu-item-link_more:after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 8px;
	background: url(../img/header/icons.png) no-repeat 0 -120px;
	margin-left: 6px;
}

.header__menu-item-link:hover:after {
	background-position: -17px -120px;
}

.header__menu-item-link.open:after {
	background-position: -17px -120px;
	-webkit-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}

.header__menu-drop {
	position: absolute;
	z-index: 1;
	top: 100%;
	display: none;
	padding: 18px 26px 0 26px;
	background: #fff;
	-webkit-box-shadow: 0px -17px 23px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px -17px 23px rgba(0, 0, 0, 0.05);
	-webkit-backdrop-filter: blur(20px);
	        backdrop-filter: blur(20px);
	margin-top: 20px;
}

.header__menu-drop:before {
	position: absolute;
	top: -13px;
	left: 0;
	content: '';
	border-bottom: 13px solid #fff;
	border-left: 13px solid transparent;
	border-right: 13px solid transparent;
}

.header__menu-drop_right:before {
	left: auto;
	right: 0;
}

.header__menu-drop-item {
	font-weight: 700;
	font-size: 15px;
	line-height: 20px;
	white-space: nowrap;
	margin-bottom: 20px;
}

.header__menu-drop-item A:hover {
	color: #E42313;
}

.header__menu_fixed {
	position: fixed;
	top: -3000px;
	bottom: auto;
	left: 0;
	right: 0;
	display: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	max-width: none;
	padding: 132px 0 0 0;
	background: #F5F5F5;
	-webkit-box-shadow: 0px -17px 23px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px -17px 23px rgba(0, 0, 0, 0.05);
	-webkit-transition: .5s;
	transition: .5s;
	overflow-y: scroll;
	-webkit-transition: .6s;
	transition: .6s;
}

.header__menu_fixed_open {
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__menu_fixed .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	max-width: 1370px;
}

.header__menu_fixed .header__menu-box {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 70%;
}

.header__menu_fixed .header__menu-item {
	width: 33.3333%;
	padding-right: 30px;
	margin-bottom: 23px;
}

.header__menu_fixed .header__menu-item-link {
	font-size: 30px;
	line-height: 117%;
	white-space: normal;
}

.header__menu_fixed .header__menu-item-link_more:after {
	display: none;
}

.header__menu_fixed .header__menu-drop {
	position: static;
	display: block !important;
	padding: 0;
	background: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	-webkit-backdrop-filter: none;
	        backdrop-filter: none;
	margin-top: 23px;
}

.header__menu_fixed .header__menu-drop:before {
	display: none;
}

.header__menu_fixed .header__menu-drop-item {
	font-weight: 400;
	font-size: 18px;
	line-height: 139%;
	margin-bottom: 7px;
}

.header__menu_fixed .header__menu-advantages {
	width: 30%;
	padding: 60px 32px 50px 32px;
	background: url(../img/header/bg_advantages.jpg) no-repeat 50% 0;
	background-size: cover;
}

.header__menu_fixed .header__menu-advantages-title {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
	margin-bottom: 30px;
}

.header__menu_fixed .header__menu-advantages-text {
	font-size: 15px;
	line-height: 167%;
}

.header__menu_fixed .header__menu-bottom {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100%;
	        flex: 0 0 100%;
	padding: 61px 0 74px 0;
	background: url(../img/header/bg_bottom.png) no-repeat 50% 0/cover;
	color: #fff;
	margin-top: 36px;
}

.header__menu_fixed .header__menu-bottom .container {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.header__menu_fixed .header__menu-digest {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}

.header__menu_fixed .header__menu-digest-title {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
	margin-bottom: 15px;
}

.header__menu_fixed .header__menu-digest-text {
	margin-bottom: 50px;
}

.header__menu_fixed .header__menu-digest-buttonbox {
	max-width: 287px;
}

.header__menu_fixed .header__menu-contacts {
	text-align: right;
}

.header__menu_fixed .header__menu-cabinet {
	display: none;
}

.header__menu_fixed .header__menu-phone {
	display: block;
	margin-bottom: 20px;
}

.header__menu_fixed .header__menu-phone-link {
	font-weight: 700;
	font-size: 25px;
}

.header__menu_fixed .header__menu-email {
	display: block;
	margin-bottom: 30px;
}

.header__menu_fixed .header__menu-email-link {
	font-weight: 700;
	font-size: 25px;
}

.header__icons {
	position: absolute;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-ordinal-group: 4;
	    -ms-flex-order: 3;
	        order: 3;
}

.header__icons DIV {
	margin-left: 40px;
}

.header__icon {
	display: block;
	width: 31px;
	height: 24px;
	background: url(../img/header/icons.png) no-repeat;
	cursor: pointer;
}

.header__icon_search {
	background-position: 50% 0;
}

.header__icon_cabinet {
	background-position: 50% -30px;
	-webkit-transition: none;
	transition: none;
}

.header__icon_cabinet:hover,
.version-data .header__icon_cabinet,
.version-editing .header__icon_cabinet,
.version-payment .header__icon_cabinet,
.version-closed .header__icon_cabinet {
	background-position: 50% -131px;
}

.header__icon_menu {
	position: relative;
	z-index: 1;
	background-position: 50% -60px;
}

.header__icon_menu.open {
	background-position: 50% -90px;
}

.header__icon_close {
	background-position: 50% -90px;
}

.header .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	white-space: nowrap;
}

.header .social__link {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: url(../img/footer/social.png) no-repeat;
	margin-left: 30px;
}

.header .social__link:first-child {
	margin: 0;
}

.header .social__link.facebook {
	background-position: 0 0;
}

.header .social__link.twitter {
	background-position: 0 -70px;
}

.header .social__link.instagram {
	background-position: 0 -140px;
}

.header__search {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	display: none;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 120px;
	background: #fff;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.header__search .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	max-width: 1370px;
}

.header__search .form {
	width: 100%;
}

.header__search .form__items {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header__search .form__item {
	margin-bottom: 0;
}

.header__search .form__item_button {
	max-width: 229px;
	margin-left: 30px;
}

.header__search .form__input {
	border: 0;
	padding: 0;
	font-size: 25px;
	line-height: 30px;
}

.header__search-close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 75px;
}
.header__menu-item-link_active {
	color: #E42313;
}

.version-about .header__menu-item-link_about,
.version-management .header__menu-item-link_about,
.version-directorate .header__menu-item-link_about {
	color: #E42313;
}

.version-about .header__menu-item-link_more:after,
.version-management .header__menu-item-link_more:after,
.version-directorate .header__menu-item-link_more:after {
	background-position: -17px -120px;
}

.version-committees .header__menu-item-link_committees,
.version-committee-about .header__menu-item-link_committees,
.version-committee-products .header__menu-item-link_committees,
.version-committee-events .header__menu-item-link_committees,
.version-committee-news .header__menu-item-link_committees {
	color: #E42313;
}

.version-advantages .header__menu-item-link_advantages,
.version-members .header__menu-item-link_advantages,
.version-application .header__menu-item-link_advantages {
	color: #E42313;
}

.version-products .header__menu-item-link_products,
.version-vocabulary .header__menu-item-link_products,
.version-product .header__menu-item-link_products {
	color: #E42313;
}

.version-events .header__menu-item-link_events,
.version-event .header__menu-item-link_events {
	color: #E42313;
}

.version-association-news .header__menu-item-link_news {
	color: #E42313;
}

.version-experts .header__menu-item-link_experts {
	color: #E42313;
}

.version-contacts .header__menu-item-link_contacts {
	color: #E42313;
}

.main {
	background: #cfcfcf url(../img/main/bg.jpg) no-repeat 50% 0;
	background-size: cover;
}

.main__head {
	width: 50%;
	padding-bottom: 106px;
	padding-top: 80px;
}

.main__title {
	margin-bottom: 27px;
}

.main__description {
	font-size: 24px;
	line-height: 140%;
	margin-bottom: 50px;
}

.main__description-part {
	font-weight: 700;
}

.main__buttonbox {
	max-width: 303px;
}

.main__bar {
	background: rgba(255, 255, 255, 0.6);
	-webkit-box-shadow: 0px -17px 23px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px -17px 23px rgba(0, 0, 0, 0.05);
	-webkit-backdrop-filter: blur(20px);
	        backdrop-filter: blur(20px);
}

.main__bar .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.main__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 60%;
	padding: 20px 0 30px 0;
}

.main__info-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	padding: 20px 0;
}

.main__info-number {
	font-size: 70px;
	line-height: 50%;
}

.main__info-text {
	max-width: 160px;
	padding-left: 22px;
}

.main__sections {
	position: relative;
	width: 40%;
}

.main__sections-box {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	min-height: 422px;
	padding: 100px 60px 60px 60px;
	background: #E42313 url(../img/main/bg_sections.png) no-repeat 50% 0/cover;
	color: #fff;
}

.main__sections-box:before {
	position: absolute;
	top: -91px;
	left: -91px;
	content: '';
	display: block;
	width: 182px;
	height: 182px;
	background: url(../img/main/circle.svg) no-repeat 50% 0/cover;
	-webkit-animation-name: rotation;
	        animation-name: rotation;
	-webkit-animation-duration: 10s;
	        animation-duration: 10s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
}

@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

.main__carousel .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.main__carousel .slick-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: auto;
}

.main__carousel-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 100%;
	min-height: 100%;
}

.main__carousel-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 100%;
	padding-bottom: 18px;
	margin: 0 auto;
}

.main__carousel-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 100%;
}

.main__carousel-title {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
	margin-bottom: 20px;
}

.main .slick-count {
	width: 20px;
	font-size: 20px;
	line-height: 130%;
}

.main .slick-slider-dots ul li {
	position: relative;
	margin: 0 8px;
}

.main .slick-slider-dots ul li button {
	background: rgba(255, 255, 255, 0.26);
}

.main .slick-slider-dots ul li button:after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 0;
	height: 2px;
	background: #fff;
}

.main .slick-slider-dots ul li.slick-active button:after {
	-webkit-transition: width 4s ease-in-out;
	transition: width 4s ease-in-out;
	width: 100%;
}

.products-section {
	padding: 120px 0 90px 0;
}

.product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 -9px;
}

.product__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.33333%;
	        flex: 0 0 33.33333%;
	max-width: 33.33333%;
	min-height: 1px;
	padding: 0 9px;
	margin-bottom: 30px;
}

.product__slide_hidden {
	display: none;
}

.product__slide_wide {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	max-width: 50%;
}

.product__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
}

.product__item:hover {
	opacity: 1;
}

.product__inner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	min-height: 430px;
	padding: 97px 30px 65px 30px;
	background: #F5F5F5 url(../img/product/bg.png) no-repeat 50% 0/cover;
	overflow: hidden;
	-webkit-transition: .3s;
	transition: .3s;
}

.product__inner:after {
	position: absolute;
	left: 30px;
	bottom: 27px;
	content: '';
	display: block;
	width: 57px;
	height: 16px;
	background: url(../img/common/icons.png) no-repeat 0 -40px;
}

.product__inner:hover {
	background: #E42313 url(../img/product/bg_hover.png) no-repeat 50% 0/cover;
	color: #fff;
}

.product__inner:hover:after {
	background-position: 0 -70px;
}

.product__inner > DIV {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

.product__typebox {
	position: absolute;
	top: 29px;
	left: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.product__type {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: 10px;
}

.product__type SPAN {
	padding: 0 20px;
	background: #E42313;
	font-weight: 700;
	font-size: 15px;
	line-height: 167%;
	color: #fff;
}

.product__name {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
	margin-bottom: 20px;
}

.product__inner:hover .product__type SPAN {
	background: #fff;
	color: #E42313;
}

.product__inner:hover .product__name {
	text-decoration: underline;
}

.product__slide_wide .product__inner {
	min-height: 338px;
	background: #F5F5F5 url(../img/product/bg_wide.png) no-repeat 50% 0/cover;
}

.product__slide_wide .product__inner:hover {
	background: #E42313 url(../img/product/bg_wide_hover.png) no-repeat 50% 0/cover;
}

/* первая правка */

.product__slide_selected .product__inner {
	/* background: #E42313 url(../img/product/bg_wide_hover.png) no-repeat 50% 0/cover;
	color: #fff; */
}

/* первая правка */

.product__slide_selected .product__inner:after {
	/* background-position: 0 -70px; */
}

.product__slide_selected .product__type SPAN {
	background: #fff;
	color: #E42313;
}

.members-section {
	padding: 120px 0;
	background: #F5F5F5;
}

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

.member__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
	min-height: 1px;
	margin: -1px 0 0 -1px;
}

.member__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	min-height: 100%;
	border: 1px solid #DADADA;
}

.member__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	min-height: 214px;
	padding: 10px 30px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	overflow: hidden;
}

.member__inner:hover IMG {
    -webkit-filter: none!important;
    filter: none!important;
}

.committee-section__top {
	position: relative;
	padding-top: 120px;
	background: #1e1a1a url(../img/committee-section/bg.png) no-repeat 50% 0/cover;
}

.committee-section__top:before {
	position: absolute;
	top: 85px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	content: '';
	width: 249px;
	height: 249px;
	background: url(../img/committee-section/circle.svg) no-repeat 0 0/cover;
}

.committee-section .container {
	position: relative;
}

.committee-section .section-head {
	color: #fff;
}

.committee-section .committee {
	position: relative;
	bottom: -244px;
	margin-top: -244px;
}

.committee-section__more {
	display: none;
}

.committee {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 -9px;
}

.committee__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.33333%;
	        flex: 0 0 33.33333%;
	max-width: 33.33333%;
	min-height: 1px;
	padding: 0 9px;
	margin-bottom: 18px;
}

.committee__slide_hidden {
	display: none;
}

.committee__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
}

.committee__item:hover {
	opacity: 1;
}

.committee__inner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	min-height: 100%;
	padding: 28px 30px 120px 30px;
	background: #F5F5F5 url(../img/committee/bg.png) no-repeat 50% 0/cover;
	overflow: hidden;
	-webkit-transition: .3s;
	transition: .3s;
}

.committee__inner:before {
	content: '';
	display: block;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: #E42313;
	margin-bottom: 18px;
}

.committee__inner:after {
	position: absolute;
	left: 30px;
	bottom: 47px;
	content: '';
	display: block;
	width: 57px;
	height: 16px;
	background: url(../img/common/icons.png) no-repeat 0 -40px;
}

.committee__inner:hover {
	background: #E42313 url(../img/committee/bg_hover.png) no-repeat 50% 0/cover;
	color: #fff;
}

.committee__inner:hover:before {
	background: #fff;
}

.committee__inner:hover:after {
	background-position: 0 -70px;
}

.committee__inner > DIV {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

.committee__title {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
	margin-bottom: 20px;
}

.committee__text {
	margin-bottom: 50px;
}

.committee__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 24px 30px;
	border: solid rgba(151, 151, 151, 0.14);
	border-width: 1px 0;
	margin: 0 -30px;
}

.committee__info B {
	display: block;
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
}

.committee__inner:hover .committee__title {
	text-decoration: underline;
}

.committee__inner:hover .committee__info {
	border-color: rgba(255, 255, 255, 0.14);
}

.events-section {
	padding: 355px 0 60px 0;
}

.events-section__more {
	display: none;
}

.event {
	border-bottom: 1px solid #DADADA;
}

.event__item:hover {
	opacity: 1;
}

.event__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 35px 0;
	border-top: 1px solid #DADADA;
}

.event__photo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 28%;
	        flex: 0 0 28%;
}

.event__photo IMG {
	-webkit-filter: grayscale(100%);
	        filter: grayscale(100%);
	-webkit-transition: .6s;
	transition: .6s;
}

.event__inner:hover .event__photo IMG {
	-webkit-filter: grayscale(0);
	        filter: grayscale(0);
}

.event__date {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 35%;
	        flex: 0 0 35%;
	padding-left: 8%;
	-ms-flex-item-align: center;
	    align-self: center;
}

.event__day {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
	margin-bottom: 10px;
}

.event__info {
	position: relative;
	padding-bottom: 50px;
}

.event__info:after {
	position: absolute;
	bottom: 8px;
	left: 0;
	content: '';
	width: 57px;
	height: 16px;
	background: url(../img/common/icons.png) no-repeat 0 -40px;
}

.event__inner:hover .event__info:after {
	background-position: 0 -100px;
}

.event__type {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 16px;
}

.event__type_mob {
	display: none;
}

.event__type SPAN {
	padding: 0 20px;
	background: #E42313;
	font-weight: 700;
	font-size: 15px;
	line-height: 167%;
	color: #fff;
}

.event__name {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
	-webkit-transition: .6s;
	transition: .6s;
}

.event__inner:hover .event__name {
	color: #E42313;
	text-decoration: underline;
}

.event__text {
	padding-top: 20px;
}

.event__item_wide {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 120px;
}

.event__item_wide .event__inner {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0;
	border-top: 0;
}

.event__item_wide .event__type {
	position: absolute;
	top: 20px;
	left: 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.event__item_wide .event__photo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	padding-right: 15px;
}

.event__item_wide .event__content {
	padding-left: 15px;
}

.event__item_wide .event__date {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100%;
	        flex: 0 0 100%;
	padding: 0 0 30px 0;
}

.news-section {
	position: relative;
	padding: 60px 0 120px 0;
}

.news-section:before {
	position: absolute;
	z-index: -1;
	top: 37px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	content: '';
	width: 249px;
	height: 250px;
	background: url(../img/news-section/circle.svg) no-repeat 0 0/cover;
}

.news-section .slide {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}

.news-section__carousel {
	overflow: hidden;
}

.news-section__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.news-section__item:hover {
	opacity: 1;
}

.news-section__item_big {
	width: 100%;
	background: #1E1A1A url(../img/news-section/photo3.jpg) no-repeat 50% 0/cover;
	color: #fff;
	margin-bottom: 50px;
}

.news-section__item_big:hover, .news-section__item_big:focus {
	color: #fff;
}

.news-section__photo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 43%;
	        flex: 0 0 43%;
}

.news-section__content {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	position: relative;
	padding: 0 10% 35px 20px;
}

.news-section__content:after {
	position: absolute;
	bottom: 8px;
	left: 20px;
	content: '';
	width: 57px;
	height: 16px;
	background: url(../img/common/icons.png) no-repeat 0 -40px;
}

.news-section__type {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 40px;
}

.news-section__type SPAN {
	padding: 0 20px;
	font-weight: 700;
	font-size: 14px;
	line-height: 167%;
	color: #fff;
}

.news-section__type_red SPAN {
	background: #E42313;
}

.news-section__type_black SPAN {
	background: #1E1A1A;
}

.news-section__date {
	font-size: 15px;
	margin-bottom: 10px;
}

.news-section__title {
	font-weight: 700;
	font-size: 25px;
	line-height: 120%;
}

.news-section__item_big .news-section__content {
	width: 40%;
	padding: 70px 40px 110px 40px;
}

.news-section__item_big .news-section__content:after {
	bottom: 70px;
	left: 40px;
	background-position: 0 -70px;
}

.news-section__item_big .news-section__title {
	font-size: 30px;
	line-height: 117%;
}

.news-section__more {
	display: none;
}

.digest {
	padding: 40px 0;
	background: #E30B13 url(../img/digest/bg.png) no-repeat 50% 0;
	background-size: cover;
	color: #fff;
}

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

.digest__left {
	max-width: 670px;
	padding-right: 30px;
}

.digest__title {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
	margin-bottom: 15px;
}

.digest__buttonbox {
	width: 100%;
	max-width: 287px;
}

.footer {
	background: #000 url(../img/footer/bg.png) no-repeat 50% 0;
	background-size: cover;
	color: #fff;
}

.footer__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 50px 0 16px 0;
}

.footer__logo {
	width: 160px;
	margin-bottom: 40px;
}

.footer__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 calc(100% - 160px);
	        flex: 0 0 calc(100% - 160px);
	min-height: 100%;
	margin-bottom: 40px;
}

.footer__menu-link {
	font-weight: 700;
	font-size: 15px;
	line-height: 167%;
}

.footer .social {
	width: 50%;
	white-space: nowrap;
}

.footer .social__link {
	display: inline-block;
	width: 50px;
	height: 50px;
	margin-right: 30px;
}

.footer .social__link:last-child {
	margin: 0;
}

.footer .social__link.facebook {
	background-position: 0 0;
}

.footer .social__link.twitter {
	background-position: 0 -70px;
}

.footer .social__link.instagram {
	background-position: 0 -140px;
}

.footer__contacts {
	width: 50%;
	font-weight: 700;
	font-size: 25px;
	line-height: 30px;
	text-align: right;
}

.footer__contacts-phone {
	padding-bottom: 30px;
}

.footer__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 23px 0 15px 0;
	border-top: 1px solid #2F2F2F;
	font-size: 15px;
	line-height: 167%;
}

.footer__bottom DIV {
	max-width: 300px;
}

.popup {
	max-width: 535px;
	/* padding: 80px 87px 50px 87px; */
	background: #fff url(../img/popups/bg_popup.png) no-repeat 50% 0;
}


.top {
	padding: 142px 0 0 0;
}

.top__title {
    margin-bottom: 50px;
}
.events {
	padding: 0 0 120px 0;
}

.events .tabs {
	margin-bottom: 50px;
}

.events .tabs .subsections__link {
	cursor: pointer;
}

.events .tabsbox {
	display: none;
}

.events .tabsbox.visible {
	display: block;
}

.events__filter {
	padding-bottom: 20px;
}

.article {
	padding: 0 0 20px 0;
}

.article__bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

.article__video {
	margin-bottom: 50px;
	margin-top: 50px;
}

.article__video-link {
	position: relative;
	display: block;
}

.article__video-link:after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: '';
	display: block;
	width: 85px;
	height: 86px;
	background: url(../../img/@product/article/play.png) no-repeat 0 0/cover;
}

.article__bigtext {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
	margin-bottom: 80px;
}

.article__text {
	padding-bottom: 30px;
}

.article__text P {
	margin-bottom: 20px;
}

.article__text ul {
	margin-bottom: 20px;
}

.article__text h2 {
	margin-top: 30px;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 2.5rem;
}

.article__text h3 {
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 20px;
}

.article__text h4 {
	font-weight: bold;
	margin-bottom: 15px;
    margin-top: 20px;
}

.article__cite {
	padding: 45px;
	background: #F5F5F5;
	margin-bottom: 40px;
}

.article__cite-head {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.article__cite-photo {
	flex: 0 0 120px;
}

.article__cite-photo IMG {
	border-radius: 50%;
}

.article__cite-author {
	font-weight: 700;
	margin-bottom: 10px;
}

.article__cite CITE {
	position: relative;
	display: block;
	margin: 0 30px 0 50px;
	font-weight: 700;
	font-style: normal;
	font-size: 25px;
	line-height: 120%;
}

.article__cite CITE:before {
	position: absolute;
	top: 0;
	left: -48px;
	content: '';
	display: block;
	width: 30px;
	height: 24px;
	background: url(../../img/@product/article/quotation.png) no-repeat 0 0/cover;
}

.article__photo {
	margin: 0 0 50px 0;
}

.article__photo FIGCAPTION {
	padding-top: 10px;
}

.article__subtitle {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
	margin-bottom: 30px;
}

.article__list-item {
	position: relative;
	padding: 0 0 20px 28px;
}

.article__list-item:before {
	position: absolute;
	left: 0;
	top: 8px;
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #f00;
}
.person {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.person__slide {
	display: flex;
	flex: 0 0 25%;
	max-width: 25%;
	min-height: 1px;
	padding: 0 12px;
	margin-bottom: 50px;
}

.person__slide_hidden {
	display: none;
}

.person__item {
	display: flex;
	min-height: 100%;
	margin: 0 auto;
}

.person__item_link {
	cursor: pointer;
}

.person__item:hover {
	opacity: 1;
}

.person__inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 308px;
	min-height: 100%;
	overflow: hidden;
}

.person__photo {
	margin-bottom: 30px;
}

.person__photo IMG {
	display: block;
	filter: grayscale(100%);
	margin: 0 auto;
}

.person__info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
}

.person__info > DIV {
	display: flex;
	flex-direction: column;
}

.person__name {
	font-weight: 700;
	font-size: 25px;
	line-height: 120%;
	margin-bottom: 30px;
}

.person__email {
	padding-top: 30px;
	color: #f00;
}

.person__email-link {
	text-decoration: underline;
}

.person__theme {
	padding-top: 30px;
}

.person__theme-part {
	font-weight: 700;
}

.person__more {
	display: flex;
	align-items: center;
	margin-top: 30px;
	font-weight: 700;
}

.person__more:after {
	content: '';
	width: 28px;
	height: 8px;
	background: url(../../../img/common/icons.png) no-repeat 0 0;
	margin-left: 10px;
}

.person__item:hover .person__photo IMG {
	filter: grayscale(0);
}

.person__item:hover .person__more {
	color: #f00;
}

.person__item:hover .person__more:after {
	background-position: 0 -13px;
}

.person__all {
	max-width: 287px;
	margin: 0 auto;
}
.news-block {
	padding: 0 0 120px 0;
  }
  .news-block__filter {
	padding-bottom: 20px;
  }
  .news-block .news__slide[data-more-hidden] {
	position: absolute;
	left: -99999px;
	opacity: 0;
  }
  .news-block .news_main .news__slide[data-more-hidden] {
	position: static;
	opacity: 1;
  }
  .news-block__more-btn {
	display: flex;
	max-width: 320px;
	margin: 30px auto 0 auto;
  }
  .news {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
  }
  .news_main {
	padding-bottom: 70px;
	margin: 0 -20px;
  }
  .news__slide {
	display: flex;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
	min-height: 1px;
	padding: 0 12px;
	margin-bottom: 50px;
  }
  .news__slide_hidden {
	display: none;
  }
  .news__slide_wide {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 20px;
  }
  .news__item {
	display: flex;
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
  }
  .news__item:hover {
	opacity: 1;
  }
  .news__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	overflow: hidden;
  }
  .news__photo {
	margin-bottom: 30px;
  }
  .news__photo IMG {
	display: block;
	filter: grayscale(100%);
	margin: 0 auto;
	transition: 0.6s;
  }
  .news__info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
  }
  .news__type {
	position: absolute;
	top: 25px;
	left: 25px;
	display: flex;
  }
  .news__type SPAN {
	padding: 0 20px;
	background: #f00;
	font-weight: 700;
	font-size: 15px;
	line-height: 167%;
	color: #fff;
  }
  .news__date {
	font-size: 15px;
	line-height: 167%;
	margin-bottom: 20px;
  }
  .news__name {
	font-weight: 700;
	font-size: 25px;
	line-height: 120%;
	transition: 0.6s;
  }
  .news__text {
	padding-top: 30px;
  }
  .news__more {
	display: flex;
	align-items: center;
	margin-top: 30px;
	font-weight: 700;
	transition: 0.6s;
  }
  .news__more:after {
	content: "";
	width: 28px;
	height: 8px;
	background: url(../../../img/common/icons.png) no-repeat 0 0;
	margin-left: 10px;
  }
  .news__item:hover .news__photo IMG {
	filter: grayscale(0);
  }
  .news__item:hover .news__name {
	color: #f00;
  }
  .news__item:hover .news__more {
	color: #f00;
  }
  .news__item:hover .news__more:after {
	background-position: 0 -13px;
  }
  .news__slide_wide .news__name {
	font-size: 30px;
	line-height: 117%;
  }
  .news__slide_wide .news__more {
	text-indent: -10000px;
  }
  .news__slide_wide .news__more:after {
	width: 57px;
	height: 16px;
	background: url(../../img/common/icons.png) no-repeat 0 -40px;
	margin-left: 0;
  }
  .news__slide_wide .news__item:hover .news__more:after {
	background-position: 0 -100px;
  }
  .intro {
	padding: 0 0 40px 0;
}

.intro__bar {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}

.intro__info {
	display: flex;
}

.intro__info-box {
	max-width: 220px;
	margin-right: 50px;
}

.intro__info-box:last-child {
	margin: 0;
}

.intro__info-title {
	color: #848484;
	margin-bottom: 14px;
}

.intro__info-text {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
}

.intro__info-time {
	padding-top: 10px;
}

.intro__text {
	margin-bottom: 50px;
}

.intro__text P {
	margin-bottom: 25px;
}

.intro__buttonbox {
	max-width: 303px;
}
.search {
	padding: 0 0 90px 0;
}

.search__box {
	padding: 14px;
	border: 1px solid #DEE2E5;
	margin-bottom: 50px;
}

.search .form__item {
	margin: 0;
}

.search .form__item_text {
	margin-right: 20px;
}

.search .form__item_button {
	flex: 0 0 228px;
}

.search .form__input {
	height: 65px;
	max-width: none;
	border: 0;
	font-size: 25px;
}

.search__item {
	padding-top: 30px;
	border-top: 1px solid #DEE2E5;
	margin-bottom: 30px;
}

.search__item[data-more-hidden] {
	position: absolute;
	left: -99999px;
	opacity: 0;
}

.search__item-title {
	margin-bottom: 10px;
}

.search__item-title-link {
	font-weight: 700;
	font-size: 30px;
	line-height: 117%;
}

.search__item-title-link:hover {
	text-decoration: underline;
}

.search__item-path {
	font-size: 15px;
	line-height: 167%;
	margin-bottom: 30px;
}

.search__item-path A {
	color: #848484;
}

.search__item-text {
	font-size: 16px;
	line-height: 125%;
}

.search__more-btn {
	display: flex;
	max-width: 320px;
	margin: 50px auto 0 auto;
}

.thanks {
	display: flex;
	align-items: center;
	flex-grow: 1;
	min-height: 700px;
	padding: 200px 0 30px 0;
	background: url(../img/thanks/bg_hands.png) no-repeat 50% 50%;
	text-align: center;
}

.thanks__title {
	font-weight: 700;
	font-size: 55px;
	line-height: 67px;
	margin-bottom: 30px;
}

.thanks__title_big {
	font-size: 150px;
	line-height: 160px;
	margin-bottom: 0;
}

.thanks__text {
	font-weight: 700;
	font-size: 25px;
	line-height: 120%;
	margin-bottom: 50px;
}

.thanks__text_small {
	font-size: 18px;
	line-height: 139%;
	margin-bottom: 55px;
}

.thanks__button {
	max-width: 287px;
	margin: 0 auto;
}

.loader {
	color: #ff0000;
	font-size: 20px;
	margin: 100px auto;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	position: relative;
	text-indent: -9999em;
	-webkit-animation: load4 1.3s infinite linear;
	animation: load4 1.3s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
  }
  @-webkit-keyframes load4 {
	0%,
	100% {
	  box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
	}
	12.5% {
	  box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	25% {
	  box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	37.5% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	50% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	62.5% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
	}
	75% {
	  box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
	}
	87.5% {
	  box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
	}
  }
  @keyframes load4 {
	0%,
	100% {
	  box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
	}
	12.5% {
	  box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	25% {
	  box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	37.5% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	50% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	62.5% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
	}
	75% {
	  box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
	}
	87.5% {
	  box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
	}
  }







/* попапы */

.block-content{
	display: flex;
	justify-content: center;
}



#iab_registration_form{

}

.wrapper__form{
    /* padding: 0 25px 0 65px; */
	display: flex;
	/* align-items: baseline; */
}

.title__form{
	margin: 0;
	padding: 60px 0 30px 0;
	font-size: 50px;
}

.form__items_content{
	display: flex;
    flex-flow: wrap;
    flex-direction: row;
}

.items__form{
	padding-left: 65px;
	padding-bottom: 74px;
	/* flex-direction: row; */
	/* width: 100%;
	height: 100%; */
}

.item__form{
	margin-right: 20px;
	max-width: 253px;
    /* width: 100%; */
    flex: none;
}

.form__item:nth-child(3){
	margin-right: 0;
}

.form__item:nth-child(6){
	margin-right: 0;
}

.form__item_label{
	padding: 0 0 11px 0;
}



.benefits{
	padding: 0 28px 0 32px;
	max-width: 343px;
	width: 100%;
	background-image: url('bg.png');
	background-repeat: no-repeat;
	background-size: cover;
}

.benefits__title{
	margin: 0;
	padding: 60px 0 30px;
	width: 95%;
	font-size: 30px;
	line-height: 35px;
	display: inline-block;
}

.benefits__text{
	margin: 0;
	padding-bottom: 30px;
	display: inline-block;
	max-width: 343px;
	width: 100%;
}

.form__btn{
	border: 0;
	background: transparent;
	font-size: 18px;
	cursor: pointer;
	text-decoration: underline;
}

.reg__input{
	/* max-width: 253px; */
	max-width: 333px;
}

.btn__form{
	margin: 0 80px 0 0;
	padding: 20px 54px;
	background: #ff0000;
	color: #fff;
	text-decoration: none;
}


.popup-changes{
    margin: 0 auto;
	
}
.closes{
	top: auto!important;
}
.close{
	margin: 10px 20px 0 0;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
    justify-content: center;
    width: 30px;
    height: 30px;
	cursor: pointer;
}
.close::after{
	position: absolute;
	content: '';
	width: 3px;
	height: 30px;
	background: #000;
	transform: rotate(45deg);
}
.close::before{
	position: absolute;
	content: '';
	width: 3px;
	height: 30px;
	background: #000;
	transform: rotate(-45deg);
}

.popup-reg{
    margin: 0 auto;
	position: absolute;
	top: 4%;
	z-index: 99;
    max-width: 1309px;
	display: none;
}

.form.reg-popup{
	padding: 0;
}

.popup-login{
    margin: 0 auto;
	/* position: absolute; */
	position: fixed;
	top: 8%;
	display: none;
	z-index: 99;
}

.popup-password{
    margin: 0 auto;
	/* position: absolute; */
	position: fixed;
	display: none;
    top: 10%;
    display: none;
    z-index: 99;
}

.popup-changes{
    margin: 0 auto;
	/* position: absolute; */
	position: fixed;
	display: none;
    top: 8%;
    display: none;
    z-index: 99;
}


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


#iab_login_form{
	padding: 80px 87px 50px 87px;
	position: relative;
}

#iab_recover_pass_form{
	padding: 80px 87px 50px 87px;
	position: relative;
}

.form_vertical{
	padding: 80px 87px 50px 87px;
	position: relative;
}

/* попапы */



/* доп. классы */

.d-none{
	display: none;
}

.d-block{
	display: block;
}

/* доп. классы */



@media (max-width: 576px){
	#iab_login_form{
		padding: 0;
	}
	#iab_recover_pass_form{
		padding: 0;
	}
	.popup-login{
		position: fixed;
		top: 0;
		height: 100vh;
	}
	.popup-password{
		padding: 150px 20px 20px 20px!important;
		position: fixed;
		top: 0;
		height: 100vh;
	}
	.popup-reg{
		position: absolute;
		top: 0;
	}
	.wrapper__form{
		flex-direction: column;
	}
	.benefits{
		padding: 0;
		background: transparent;
	}
	.items__form{
		padding: 0;
	}
	.item__form{
		width: 100%;
	}
	.btn__form{
		margin-right: 0;
		margin-bottom: 30px;
		padding: 20px 74px;
	}
	.form__more{
		padding-bottom: 50px;
	}
	.close{
		margin: 0;
		top: -40px;
	}
	.closes{
		top: -30px!important;
	}
}

section {
	overflow: hidden;
}

section.main {
	overflow: inherit;
}

.top {
    padding: 30px 0 0 0!important;
}

.lazy-loaded {
	overflow: inherit;
}


.butNrf {
      display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    border: 0;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    line-height: normal;
    border-radius: 0;
    background: none;
    outline: 0!important;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

  position: fixed;
    z-index: 99;
    bottom: 20px;
    left: 20px;
}

.butNrf:hover {
	background-color: transparent;
}

.adpassLink .butPrimary {
    text-transform: uppercase;
    outline: none;
    border: none;
    transition: all .2s;
    background: #ed1c24;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;

    font-weight: bold;
    letter-spacing: 3px;
}

.butNrfWrap {
  display: flex;
  align-items: center;
}

.butNrfWrapC {
    position: absolute;
    left: 20px;
}

.butNrfWrap  img {
  max-width: 100%
}

.butNrfWrap .animate {
    animation-name: rotation;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.adpassLink {
  text-align: center;
  margin-top: 20px;
}


.modalVideoImg {
  text-align: center;
}

.modalVideoImg img {
  max-width: 100px;
  margin-bottom: 15px
}

.modalVideoFrame .modalDialog {
  max-width: 900px;
}

.modalVideoFrame .modalContent {
  padding: 50px
}

.modalVideoFrame .modalClose {
    right: -25px;
    top: -25px;
}

@keyframes scale {
  0% {    
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 569px) {



  .modalVideoFrame .modalContent {
	    padding: 30px 20px!important;
	}

	.modalVideoFrame .modalClose {
	    right: 0px!important;
	    top: -10px!important;
	}

	.modalBody iframe {
		height: 300px
	}

}



.modalOpen {overflow: hidden;}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  
  display: none;
  overflow: hidden;
  
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.fade {
  opacity: 0;

  transition: opacity .2s linear;
}

.fade.in {
  opacity: 1;
}

.modal.fade .modalDialog {
  transform: translateY(-25%);

  transition: transform .2s ease-out;
}

.modal.in .modalDialog {
  transform: none;
}

.modalOpen .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modalDialog {
  position: relative;
  
  max-width: 770px;
  margin: 40px auto;
}

.modalLg {}
.modalSm {}

.modalContent {
  position: relative;
  padding: 60px 100px;
  background-color: #fff;
}

.modalBackdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  
  background-color: #000;
}

.modalBackdrop.fade {
  opacity: 0;
}

.modalBackdrop.in {
  opacity: .7;
}

.modalHeader {
  position: relative;
}

.modalClose {
  position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    border: 0;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    line-height: normal;
    border-radius: 0;
    background: none;
    outline: 0;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  
  position: absolute;
      width: 31px;
    height: 24px;
    background: url(../img/header/icons.png) no-repeat;
    background-position: 50% -90px;
  right: -80px;
  top: -40px;
}


.modalTitle {
  font-weight: 800;
  font-size: 50px;
  line-height: 59px;
  margin-bottom: 15px;
}

.modalText {
  font-size: 18px;
  line-height: 170%;
  color: #7A7A7A;
  margin-bottom: 45px;
}



.modalOpen .main {
  filter: blur(5px);
}

.modalVideoTitle {
  font-weight: 800;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 25px;
    text-align: center;
}

.modalVideoImg {
  text-align: center; 
}

.modalVideoImg img {
  max-width: 100px;
  margin-bottom: 15px
}

.modalVideoFrame .modalDialog {
  max-width: 900px;
}

.modalVideoFrame .modalContent {
  padding: 50px
}

.modalVideoFrame .modalClose {
    right: -25px;
    top: -25px;
}

.backNews {
	color: #E42313;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
    padding-left: 20px;
    position: relative;
}

.backNews:hover {
	color: #E42313;
	opacity: 0.8
}

.backNews:before {
	content: '';
	background: url('../img/back.svg') no-repeat center;
	position: absolute;
	width: 10px;
    height: 20px;
    left: 0;
}

.program2 {
	margin-top: 50px;
}

.program2 .person__inner:hover .person__more {
    color: #E42313;
}

.program2 .person__inner:hover .person__more {
    color: #E42313;
}

.program2 .person__inner:hover .person__more:after {
	background-position: 0 -13px;
}

.program2 .person__post a {
	display: block;
}

@media (max-width: 991px) {
	.program2 .person__slide {
		-ms-flex: 0 0 50%;
	    flex: 0 0 50%;
	    max-width: 50%;
	}
}

@media (max-width: 569px) {
	.program2 .person__slide {
		-ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	}

	.program2 .person__inner {
		max-width: 100%;
	}

	.program2 .person__more {
		margin-top: 10px;
	}
}

@media (max-width: 1199px) {
	.person {
		margin: 0 -8px;
	}
	.person__slide {
		padding: 0 8px;
		margin-bottom: 37px;
	}
	.person__photo {
		margin-bottom: 20px;
	}
	.person__name {
		font-size: 20px;
		line-height: 100%;
		margin-bottom: 21px;
	}
	.person__email {
		padding-top: 20px;
	}
	.person__more {
		font-size: 16px;
	}
	.person__more:after {
		width: 20px;
		height: 6px;
		background-size: 40px auto;
		margin-left: 10px;
	}
	.person__item:hover .person__more:after {
		background-position: 0 -9px;
	}
}

@media (max-width: 991px) {
	.person {
		margin: 0 -20px 0 -7px;
	}
	.person__list {
		margin: 0 -7px;
	}
	.person__slide {
		padding: 0 7px;
		margin-bottom: 37px;
	}
	.person__name {
		font-size: 25px;
		line-height: 120%;
		margin-bottom: 21px;
	}
	.person__carousel {
		display: block;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}
	.person__carousel .slick-track {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.person__carousel .slick-slide {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		height: auto;
	}
	.person__carousel .person__slide {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 auto;
		        flex: 0 0 auto;
		max-width: none;
		min-height: 100%;
		margin-bottom: 22px;
	}
	.person__carousel .person__inner {
		max-width: 213px;
	}
	.person__more {
		font-size: 15px;
	}
	.person__more:after {
		width: 28px;
		height: 8px;
		background-position: 0 0;
		background-size: auto auto;
		margin-left: 10px;
	}
	.person__item:hover .person__more:after {
		background-position: 0 -13px;
	}
	.person__list .person__slide {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
		max-width: 50%;
	}
	.person__list .person__item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

@media (max-width: 575px) {
	.person__list .person__slide {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.popup-person {
		padding: 20px;
	}
	.popup-person__item-header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.popup-person__item-right {
		padding: 20px 0 0 0;
	}
	.popup-person__item-photo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		-ms-flex-item-align: center;
		    align-self: center;
	}
	.popup-person__item-name {
		font-size: 25px;
		margin-bottom: 20px;
	}
	.popup-person__item-post {
		font-size: 18px;
	}
	.popup-person__item-description {
		padding-top: 40px;
	}
	.popup-person__item-description LI {
		padding: 0 0 22px 20px;
		font-size: 18px;
	}
}

.applicationP {
	margin-bottom: 50px
}

.redLink {
	color: #E42313;
	border-bottom: 1px solid;
}

.applicationText {
	margin-bottom: 8px;
}

.applicationImg {
	margin-bottom: 18px;
}

.button_save {
	display: flex;
	justify-content: center;
	align-items: center;
}

.button_save, .button_save:hover, .button_save:focus {
    background: #fff;
    border: 1px solid #E42313;
    color: #E42313;
}

.button_submit:hover, .button_submit:focus, .button_submit:hover, .button_submit:focus {
    opacity: 1;
    background: #CF1F10;
    color: #fff;
}

.button_submit {
	background: #E42313;
    color: #fff;
}

.profile__upload-area {
    position: relative;
    width: 100%;
    min-height: 80px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 12px;
    padding: 20px;
    border: 1.7px dashed #DEE2E5;
}

.profile__upload {
    text-align: center;
    font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	color: #DEE2E5;
}

.profile__upload-input {
    width: 0;
    display: 0;
    opacity: 0;
}

.profile__upload-btn {
    text-decoration: underline;
    cursor: pointer;
}

.profile__upload-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: none;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1e1e1e;
    visibility: hidden;
    opacity: 0;
    background: #fff;
}

.selected .profile__upload-list {
    z-index: 10;
    visibility: visible;
    opacity: 1;
    display: flex;
}

.uploadError .profile__upload-list {
  z-index: 10;
  visibility: visible;
  opacity: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #1E1A1A;
}
.selected .profile__upload-list {
  z-index: 10;
  visibility: visible;
  opacity: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.preview__remove {
	display: flex;
    width: 24px;
    height: 24px;
    background: url('../img/newImages/close.svg') center/contain no-repeat;
    cursor: pointer;

    position: absolute;
    right: 0;
    top: 0;
}

.preview__name {
	display: inline-block;
    align-items: center;
    word-wrap: break-word;
    max-width: 90%;
}

.profile__upload-close {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: -1;
    width: 19px;
    height: 18px;
    cursor: pointer;
}

.uploadError .profile__upload-close {
    visibility: visible;
    opacity: 1;
    z-index: 20;
}

.profile_foot_text {
	margin-bottom: 10px;
}

.article__text a {
	color: #E42313;
}

.vocabulary__result a {
	color: #E42313;
}