body,
html,
* {
	font-family: 'PF Centro Sans Pro', sans-serif;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

* {
	outline: none;
}

[disabled] {
	pointer-events: none;
}

html.scroll-lock,
body.scroll-lock {
	overflow: hidden;
	height: 100%;
}

body {
	/*display: none;*/
	min-height: calc(100vh - 180px);
}

h1,
h2,
h3,
h4,
h5 {
	margin: 0;
}

fieldset {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	background: none;
	padding: 0;
	margin: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	border: none;
	background: transparent;
}

:focus {
	outline-color: #0079C1;
	-webkit-transition: outline .3s ease;
	-o-transition: outline .3s ease;
	transition: outline .3s ease;
}

a {
	border: none;
	text-decoration: none;
	color: inherit;
	transition: all .2s ease;
}

ul,
ol {
	list-style: none;
}

::-webkit-scrollbar {
	width: 6px;
}


::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px #E7E8E9;
	box-shadow: inset 0 0 6px #E7E8E9;
}

::-webkit-scrollbar-thumb {
	background-color: #0079C1;
	border-radius: 4px;
}

.timeline__slide:not(.ajax-loaded) > span {
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.timeline__slide-popup {
	display: none;
}

.artefact_info .timeline__slide-popup,
.artefact_student_info .timeline__slide-popup {
	display: block;
}

.fancybox__slide {
	padding: 24px;
}

.fancybox__slide>div {
	cursor: default !important;
}

.fancybox__backdrop {
	background: rgba(0, 0, 0, .3);
}

.fancybox__content>.carousel__button.is-close {
	top: 24px;
	right: 16px;
	width: 24px;
	height: 24px;
	background-image: url(../img/icons/close.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 100;
}

.carousel__button svg {
	display: none;
}

.fancybox__content {
	background: #FFFFFF;
	border: 1px solid #F0F2F7;
	-webkit-box-shadow: 0px 35px 60px -15px rgb(6 25 56 / 25%);
	box-shadow: 0px 35px 60px -15px rgb(6 25 56 / 25%);
	border-radius: 4px;
	padding: 80px 140px;
	max-width: 1200px;
}

.artefact_student_info .fancybox__content {
	max-width: 1440px;
	padding: 0;
}

.popup_student_list {
	padding: 60px 140px;
	overflow: hidden;
}

.timeline_popup_list .fancybox__content {
	max-width: none;
	padding: 0;
	height: 100%;
	width: 100%;
}

.timeline_popup_list .fancybox__slide {
	padding: 0;
}

.artefact_info .fancybox__content {
	padding: 0;
}

.add_info .fancybox__content {
	padding: 0;
}

.carousel__button {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 80px;
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.carousel__button.is-next:before,
.carousel__button.is-prev:before {
	content: '';
	width: 32px;
	height: 94px;
	position: absolute;
	background-image: url(../img/icons/timeline-arrow-back.svg);
	background-size: 32px 94px;
	background-repeat: no-repeat;
	-webkit-transition: .4s ease;
	-o-transition: .4s ease;
	transition: .4s ease;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);

}

.carousel__button.is-next:after,
.carousel__button.is-prev:after {
	content: '';
	position: absolute;
	width: 17px;
	height: 50px;
	background-image: url(../img/icons/timeline-arrow-front.svg);
	background-size: 17px 50px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transition: .4s ease;
	-o-transition: .4s ease;
	transition: .4s ease;
	margin-left: 24px;
	-webkit-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}

.carousel__button:hover:before {
	background-image: url(../img/icons/timeline-arrow-front.svg);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.carousel__button:hover:after {
	background-image: url(../img/icons/timeline-arrow-back.svg);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	margin-left: 50px;
}

.carousel__button.is-prev {
	-webkit-transform: translateY(-50%) scale(-1, 1);
	-ms-transform: translateY(-50%) scale(-1, 1);
	transform: translateY(-50%) scale(-1, 1);
}

.about__dsc-wrapper {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.img_wrap_about_column {
	flex: 0 0 250px;
	max-width: 250px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.text_wrap_about_column {
	margin-bottom: 20px;
	text-align: justify;
}

.img_wrap_about_column img {
	width: 100%;
	height: auto;
}

.text_wrap_about_column p {
	margin-bottom: 20px;
}

.timeline__slide-popup-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.timeline__slide-popup-col:first-child {
	width: 376px;
	height: 100%;
	margin-right: 55px;
	flex: 0 0 376px;
	max-height: 500px;
}

.timeline__slide-popup-img {
	border-radius: 4px;
	width: auto;
	-o-object-fit: contain;
	object-fit: contain;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.timeline__slide-popup-img-wrapper,
.timeline__slide-popup-row {
	height: 100%;
}

.timeline__slide-popup-col:last-child {
	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-positive: 1;
	flex-grow: 1;
	box-shadow: 0px 35px 60px -15px rgba(6, 25, 56, 0.25);
	overflow: hidden;
	padding: 15px 25px;
	height: 500px;
}

.timeline__slide-popup-col.post {
	box-shadow: none;
	overflow: hidden;
	padding: 15px 25px;
	margin: 0;
	text-align: center;
}

.timeline__slide-popup-title {
	font: 500 15px/20px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	text-transform: uppercase;
}

.timeline__slide-popup-name {
	margin-top: 18px;
	font: 700 19px/25px 'PF Centro Sans Pro', sans-serif;
}

.timeline__slide-popup-name.blue {
	background: #0079C1;
	margin: 0 -25px;
	padding: 15px 25px;
	color: #fff;
	margin-top: -15px;
}

.timeline__slide-popup-name.blue span {
	font: 700 19px/25px 'PF Centro Sans Pro', sans-serif;
	display: block;
	color: #fff;
	margin-top: 0;
}

.timeline__slide-popup-name.blue div {
	font: 700 19px/25px 'PF Centro Sans Pro', sans-serif;
	display: block;
	color: #fff;
	margin-top: 0;
}

.timeline__slide-popup-dsc {
	font: 400 17px/26px 'PF Centro Sans Pro', sans-serif;
	color: #414652;
	margin-top: 15px;
	overflow: auto;
}

.carousel__button[disabled] {
	cursor: default;
	opacity: .3;
}

.timeline__slide-popup-dsc p {
	margin-bottom: 10px;
}

.container {
	max-width: 1914px;
	margin: 0 auto;
	padding: 0 32px;
}

.main-wrapper {
	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;
	min-height: 100vh;
	overflow: hidden;
}

.main-wrapper:after {
	display: none;
}

.main {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.header__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 112px;
}

.header__row-logo {
	display: flex;
	align-items: center;
}

.header__logo-wrapper {
	margin-right: 0;
	line-height: 0;
}

.header__minDesc {
	color: #B5B7BC;
	font-size: 17px;
	line-height: normal;
	padding-left: 24px;
	margin-left: 24px;
	position: relative;
}

.header__minDesc:before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #B5B7BC;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
}

.header__logo {
	width: 300px;
	display: inline-block;
	height: auto;
}

.header__menu {
	position: absolute;
	left: 0;
	width: 100%;
}

.header__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -24px;
	justify-content: center;
}

.header__list-item {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: 0 24px;
}

.header__list-link {
	font: 500 19px/22px 'PF Centro Sans Pro', sans-serif;
	text-transform: none;
	padding-bottom: 4px;
	color: #2B8CEE;
}

.header__list-link:hover {
	color: #000;
}

.header__list-link:focus {
	outline: none;
	color: #000;
}

.header__list-item.active .header__list-link {
	color: #000;
	border-bottom: 4px solid #7AC143;
	cursor: default;
}

.header__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: auto;
	position: relative;
	z-index: 1;
}

.header__search-btn {
	width: 32px;
	height: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 32px;
}

.header__search-btn.hide {
	opacity: 0;
	visibility: hidden;
}

.btn {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background: #fff;
	color: #000;
	border: 2px solid #00A94F;
	border-radius: 10px;
	height: 46px;
	font: 600 19px/22px 'PF Centro Sans Pro', sans-serif;
	padding: 0 32px;
	margin-right: 32px;
	-webkit-transition: background .3s ease;
	-o-transition: background .3s ease;
	transition: background .3s ease;
}

.btn:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url(../img/bg-btn.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.popup-new__form-btn.btn {
	/* color: #fff;
	border-radius: 4px;
	z-index: 1;
	text-transform: uppercase;
	transition: all .2s ease; */
}

.popup-new__form-btn.btn:before {
	/* background-color: #00A94F;
	z-index: -1;
	transition: all .2s ease; */
}

.btn:hover {
	background: #00A94F;
	color: #fff;
}

.popup-new__form-btn.btn:hover {
	/* color: #000;  */
}

.popup-new__form-btn.btn:hover:before {
	/* background-color: #fff; */
}

.header__block-animation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	height: 50px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.header-search-wrapper {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	z-index: 99;
	transform: translateY(-105%);
	transition: all .3s ease;
	padding: 50px 30px;
	background: #fff;
	width: 100%;
	opacity: 0;
	-webkit-box-shadow: 0px 4px 13px -4px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 4px 13px -4px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 4px 13px -4px rgba(0, 0, 0, 0.2);
}

.header {
	position: relative;
	z-index: 12;
}

.header-search-wrapper.active {
	transform: translateY(0);
	opacity: 1;
}

.header-search-wrapper>span {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 25%);
	width: 40px;
	height: 40px;
	display: inline-block;
	background: #000;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: all .2s ease;
}

.header-search-wrapper.active>span {
	opacity: .5;
	pointer-events: unset;
}

.header-search-wrapper>span:after,
.header-search-wrapper>span:before {
	content: '';
	display: inline-block;
	width: 2px;
	height: 20px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	border-radius: 2px;
}

.header-search-wrapper>span:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.header-search-wrapper>span:hover {
	opacity: 1;
}

.header-search__container {
	width: 100%;
}

.header-search-wrapper.active .header-search__container {}

.header-search__form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.history__tab .header-search__form {
	max-width: none;
}

.header-search__form-input {
	margin-right: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 10px;
	height: 50px;
	border: 2px solid #e4e4e4;
	padding-left: 48px;
	font: 400 17px/25px 'PF Centro Sans Pro', sans-serif;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	background-image: url(../img/icons/search.svg);
	background-size: 24px 24px;
	background-position: left 16px center;
	background-repeat: no-repeat;
	outline: none;
}


.header-search__form-btn {
	margin-right: 0;
	height: 50px;
}

.header__language-wrapper {
	position: relative;
	margin-right: 20px;
}

.header__language {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font: 600 19px/22px 'PF Centro Sans Pro', sans-serif;
}

.header__language:after {
	content: '';
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 2px;
	width: 24px;
	height: 24px;
	background-image: url(../img/icons/btn-arrow-bottom.svg);
	background-size: 10px 10px;
	background-position: center center;
	background-repeat: no-repeat;
}

.header__language .header__eye {
	width: 28px;
	height: 28px;
}

.header__eye {
	line-height: 0;
}

.header__language-list {
	display: none;
	position: absolute;
	left: 0;
	background: #FFFFFF;
	border: 1px solid #E7E8E9;
	border-radius: 4px;
	padding: 4px 0;
	z-index: 5;
}

.header__language-list-item {
	cursor: pointer;
	padding: 8px 20px;
	font: 500 16px/18px 'PF Centro Sans Pro', sans-serif;
	-webkit-transition: color .5s ease;
	-o-transition: color .5s ease;
	transition: color .5s ease;
}

.header__language-list-item:hover {
	color: #0079C1;
}

.header__language-wrapper.active .header__language-list {
	display: block;
}

.header__language-wrapper.active .header__language:after {
	-webkit-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}

.default-popup {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	z-index: -1;
}

.add_info .default-popup {
	position: relative;
	z-index: 0;
}

.default-popup.active {
	visibility: visible;
	opacity: 1;
	z-index: 1012;
}

.default-popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
}

.popup-share__content {
	position: relative;
	z-index: 1;
	background: #FFFFFF;
	border: 1px solid #F0F2F7;
	-webkit-box-shadow: 0px 35px 60px -15px rgba(6, 25, 56, 0.25);
	box-shadow: 0px 35px 60px -15px rgba(6, 25, 56, 0.25);
	border-radius: 4px;
	padding: 24px 32px;
	min-width: 630px;
}

.popup-share__title {
	font: 700 24px/32px 'PF Centro Sans Pro', sans-serif;
}

.popup-share__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 24px;
}

.popup-share__input {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin-right: 12px;
	padding-left: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font: 400 17px/16px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
	background: #FFFFFF;
	border: 1px solid #E7E8E9;
	border-radius: 4px
}

.popup-share__btn {
	margin: 0;
}

.popup-share__socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
}

.popup-share__social {
	width: 40px;
	height: 40px;
	margin: 0 10px;
}

.default-popup__close {
	position: absolute;
	right: 12px;
	top: 12px;
	width: 24px;
	height: 24px;
	background-image: url(../img/icons/close.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.popup-new__content {
	position: relative;
	z-index: 1;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 35px 60px -15px rgba(6, 25, 56, 0.25);
	box-shadow: 0px 35px 60px -15px rgba(6, 25, 56, 0.25);
	border-radius: 4px;
}

.popup-new__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
}

.popup-new__block:first-child {
	width: 618px;
	padding: 50px 60px;
	background-image: url(../img/bg-popup-new.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.popup-new__block:last-child {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 80px 95px;

}

.popup-new__form {
	max-width: 472px;
}

.popup-new__title {
	font: 700 32px/38px 'PF Centro Sans Pro', sans-serif;
}

.popup-new__dsc-wrapper {
	margin-top: 24px;
}

.popup-new__dsc {
	font: 400 19px/25px 'PF Centro Sans Pro', sans-serif;
}

.popup-new__dsc+.popup-new__dsc {
	margin-top: 8px;
}

.popup-new__form-label+.popup-new__form-label,
.popup-new__form-btn,
.default-label+.default-fieldset,
.default-dropzone,
.default-dropzone+.default-label {
	margin-top: 24px;
}

.default-fieldset__legend {
	font: 400 17px/19px 'PF Centro Sans Pro', sans-serif;
	color: #6C7A96;
}

.default-fieldset__legend+.default-label {
	margin-top: 8px;
}

.default-dropzone {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 24px;
	border: 2px dashed #E6EAF2;
	cursor: pointer;
}

.default-dropzone.dragover {
	border-color: green;
}

.default-dropzone:before {
	content: '';
	display: block;
	margin-left: 12px;
	margin-right: 16px;
	width: 32px;
	height: 32px;
	background-image: url(../img/icons/dropzone-file-plus.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.default-dropzone__file {
	display: none;
}

.default-dropzone__title {
	font: 400 16px/18px 'PF Centro Sans Pro', sans-serif;
}

.default-dropzone__subtitle {
	margin-top: 5px;
	font: 400 12px/14px 'PF Centro Sans Pro', sans-serif;
	color: green;
	display: block;
}

.default-popup.success .default-popup__container {
	display: none;
}

.popup-success__content {
	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;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 60px;
	padding-right: 20px;
	max-width: 735px;
	position: relative;
	z-index: 1;
	background: #FFFFFF;
	border: 1px solid #F0F2F7;
	-webkit-box-shadow: 0px 35px 60px -15px rgba(6, 25, 56, 0.25);
	box-shadow: 0px 35px 60px -15px rgba(6, 25, 56, 0.25);
	border-radius: 4px;
}

.popup-success__title {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font: 700 32px/38px 'PF Centro Sans Pro', sans-serif;
}

.popup-success__title:before {
	content: '';
	display: block;
	margin-right: 32px;
	height: 72px;
	width: 72px;
	background-image: url(../img/icons/popup-success.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.welcome {
	padding: 30px 0;
}

.welcome__container {
	max-width: 1740px;
	margin: 0;
}

.welcome__row {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 1740px;
	padding-left: 40px;
	height: 506px;
}

.welcome__col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.welcome__col:first-child {
	max-width: 890px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.welcome__col:last-child {
	padding-top: 75px;
	max-width: 776px;
	z-index: 1;
}

.welcome__img {
	position: absolute;
	left: 0;
	top: -80px;
	max-width: 860px;
	max-height: 630px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
}

.welcome__title {
	font: 500 45px/55px'PF Centro Sans Pro', sans-serif;
	text-align: center;
	color: #0178c0;
	display: none;
}

.welcome__tiser {
	margin-top: 0;
	width: 100%;
	text-align: center;
	overflow: hidden;
}

@media(min-height: 980px) {
	.welcome__tiser {
		height: 60vh;
	}
}

@media(min-height: 768px) {
	.welcome__tiser {
		height: 50vh;
	}
}

.welcome__tiser img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
	width: auto;
}

.welcome__dsc-wrapper {
	margin-top: 32px;
	font: 400 20px/27px 'PF Centro Sans Pro', sans-serif;
	color: #414652;
}

.welcome__dsc {
	font: inherit;
	color: inherit;
}

.welcome__dsc b {
	font: inherit;
	color: inherit;
	font-weight: 500;
}

.welcome__dsc+.welcome__dsc {
	margin-top: 16px;
}

.welcome__link {
	font: 500 34px/40px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	margin-top: auto;
	position: absolute;
	bottom: 100%;
	left: 52%;
}

.welcome__line-wrapper {
	position: relative;
	display: block;
}

.welcome__line {
	position: relative;
	padding-left: 90px;
	padding-top: 25px;
	max-width: 1400px;
	-webkit-transition: max-width .6s ease;
	-o-transition: max-width .6s ease;
	transition: max-width .6s ease;
	margin-top: 25px;
}

.welcome__line.active {
	max-width: 1700px;
}

.welcome__line:before {
	content: '';
	display: block;
	height: 2px;
	background: #0079C1;
	width: 100%;
}

.welcome__line:after {
	content: '';
	position: absolute;
	top: 12px;
	width: 169px;
	height: 27px;
	background: -webkit-gradient(linear, right top, left top, from(#FFFFFF), color-stop(67.32%, rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(right, #FFFFFF 0%, rgba(255, 255, 255, 0) 67.32%);
	background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 67.32%);
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.welcome__line-arrow {
	position: absolute;
	right: 10px;
	top: -4px;
	display: block;
	width: 60px;
	height: 60px;
	border-top: 2px solid #0079C1;
	border-left: 2px solid #0079C1;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}

.welcome__line-link:hover .welcome__line:before {
	width: 1700px;
}

.welcome__line-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 85px;
}

.welcome__line-text {
	position: relative;
	font: 500 19px/22px 'PF Centro Sans Pro', sans-serif;
	margin-top: 22px;
}

.welcome__line-text:before {
	content: '';
	position: absolute;
	top: -22px;
	background: #0079C1;
	width: 2px;
	height: 12px;
}

.welcome__line-text--red {
	color: #EE2A24;
}

.welcome__line-text--green {
	color: #00A94F;

}

.welcome__line-text--blue {
	color: #0079C1;
}

.welcome__line-text:first-child {
	margin-right: 60px;
}

.welcome__line-text:nth-child(2) {
	margin-right: 48px;
}

.welcome__line-text:nth-child(3) {
	margin-right: 48px;
}

.main-timeline-wrapper {
	overflow: hidden;
}

.main-timeline {
	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: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	background: #FAFAFA;
}

.timeline {
	position: relative;
	margin-bottom: 100px;
}

.timeline.new {
	margin-bottom: 30px;
}

.timeline__container {
	max-width: 1488px;
	padding: 0;
}

.timeline__slider {
	padding-top: 35px;
	padding-bottom: 105px;
	overflow: visible;
	opacity: 0;
}

.timeline__slide {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	background: #fff;
	padding: 40px;
	border-radius: 40px;
}

.timeline__slide.swiper-slide-active {
	opacity: 1;
	visibility: visible;
}

.timeline__slide-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.timeline__slide-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	flex: 1 1 auto;
}

.timeline__slide.padding-bottom-1 .timeline__slide-col:nth-child(2) {
	padding-bottom: 50px;
	height: 100%;
}

.timeline__slide.padding-bottom-2 .timeline__slide-col:nth-child(2) {
	padding-bottom: 50px;
	height: 100%;
}

.timeline__slide-col:first-child {
	width: 60%;
	max-width: 727px;
	margin-right: 80px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	max-height: 600px;
	height: 600px;
	background: rgb(242, 242, 242);
	background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 50%, rgba(255, 255, 255, 1) 100%);
	display: flex;
	align-items: center;
	box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
	justify-content: center;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.timeline__slide-col:first-child:after {
	content: '';
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: .2;
	z-index: 0;
}

.timeline__slide-col:last-child {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.timeline__slide-img {
	border-radius: 4px;
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.timeline__slide-col {
	max-height: 600px;
}

.timeline__slide-col:nth-child(2) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}

.timeline__slide-date {
	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;
	font: 500 17px/17px 'PF Centro Sans Pro', sans-serif;
	letter-spacing: 1.6px;
	color: #B5B7BC;
	text-transform: uppercase;
	min-height: -webkit-fit-content;
	min-height: -moz-fit-content;
	min-height: fit-content;
	max-width: none;
}

.timeline__slide-date:after {
	content: '';
	width: 40px;
	height: 1px;
	background-color: #B5B7BC;
	margin-top: 12px;
}

.timeline__slide-title {
	margin-top: 20px;
	font: 600 35px/40px 'PF Centro Sans Pro', sans-serif;
	min-height: -webkit-fit-content;
	min-height: -moz-fit-content;
	min-height: fit-content;
	color: #0079C1;
}

.timeline__slide-dsc-wrapper {
	margin-top: 25px;
	overflow-y: auto;
	padding-right: 15px;
}

.timeline__slide-dsc * {
	font-size: 20px;
	line-height: 29px;
}

.timeline__slide-dsc strong {
	color: #0079C1;
	font-size: 32px;
}

.timeline__slide-dsc.grey {
	background: #F1F2F4;
	padding: 25px;
}

.timeline__slide-dsc.grey ul li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 30px;
}

.timeline__slide-dsc p {
	margin-bottom: 15px;
}

.timeline__slide-dsc ul {
	margin: 0;
	margin-bottom: 15px;
	list-style: none;
	padding: 0;
}

.timeline__slide-dsc ol {
	margin: 0;
	margin-bottom: 15px;
	list-style: auto;
	padding: 0;
	padding-left: 20px;
}

.timeline__slide-dsc ul li {
	position: relative;
	padding-left: 20px;
}

.timeline__slide-dsc ol li {
	position: relative;
	padding-left: 5px;
}

.timeline__slide-dsc ol li::marker {
	color: #0079c1;
	font-weight: 500;
}

.mt15 {
	margin-top: 15px;
}

.timeline__slide-dsc ul.date_flex li {
	display: flex;
	gap: 20px;
}

.timeline__slide-dsc ul.date_flex li b {
	flex: 0 0 100px;
	max-width: 100%;
}

.timeline__slide-dsc ul li:after {
	content: '';
	display: inline-block;
	background: #0079c1;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 0;
}

.timeline__slide-dsc ol li::after {
	content: none;
}

.timeline__slide-dsc blockquote {
	margin-bottom: 15px;
	padding: 20px;
	background: #F1F2F4;
	border-left: 5px solid #0079c1;
	border-radius: 0;
	font-style: italic;
	position: relative;
	padding-left: 50px;
}

.timeline__slide-dsc blockquote:after {
	content: '\201D';
	font-family: 'PF Centro Sans Pro';
	font-weight: 700;
	font-size: 64px;
	color: #0079c1;
	position: absolute;
	top: 30px;
	left: 0px;
	line-height: 30px;
}

.timeline__slide-dsc blockquote>* {
	font-style: italic;
}

.timeline__slide-dsc small {
	margin-bottom: 15px;
	font-size: 16px;
	display: block;
	line-height: 23px;
}

.timeline__slide-dsc a {
	cursor: pointer;
	color: #0079C1;
	transition: color 0.2s;
}

.timeline__slide-dsc a:hover {
	color: #111827;
	transition: color 0.2s;
}

.timeline__slide-dsc+.timeline__slide-dsc {
	margin-top: 16px;
}

.timeline__slide-files {
	margin-top: 24px;
	min-height: -webkit-fit-content;
	min-height: -moz-fit-content;
	min-height: fit-content;
	position: relative;
	bottom: 0;
	right: 0;
	left: 0;
}

.timeline__slide-file,
.timeline__slide-fileslider {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	font: 400 19px/28px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	text-align: left;
}

.timeline__slide-file:before,
.timeline__slide-fileslider:before {
	content: '';
	width: 24px;
	height: 24px;
	margin-right: 8px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.timeline__slide-file.img:before,
.timeline__slide-fileslider.img:before {
	background-image: url(../img/icons/image.svg);
}

.timeline__slide-file.file:before,
.timeline__slide-fileslider.file:before {
	background-image: url(../img/icons/timeline-file.svg);
}

.timeline__slide-file+.timeline__slide-file,
.timeline__slide-fileslider+.timeline__slide-file,
.timeline__slide-file+.timeline__slide-fileslider,
.timeline__slide-fileslider+.timeline__slide-fileslider {
	margin-top: 7px;
}

.timeline__slide-file:hover,
.timeline__slide-fileslider:hover {
	color: #111827;
}

.timeline__slide-file.file:hover:before,
.timeline__slide-fileslider:hover:before {
	background-image: url(../img/icons/timeline-file-active.svg);
}

.timeline__slide-file.img:hover:before,
.timeline__slide-fileslider.img:hover:before {
	background-image: url(../img/icons/image-active.svg);
}

.sliderNew {
	overflow: hidden;
	padding: 60px 120px 50px;
}

.artefact_student_info .sliderNew {
	overflow: unset;
	padding: 0;
}

.sliderNew:after {
	content: '';
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 15;
}

.sliderNew:before {
	content: '';
	background-image: url(../img/loaders.gif);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	display: inline-block;
	transform: translate(-50%, -50%);
	z-index: 16;
	background-size: contain;
}

.sliderNew.init:before,
.sliderNew.init:after {
	content: none;
}

.timeline__slide-popup-newslider-wrapper {
	height: auto;
	width: auto;
	max-height: 500px;
}

.timeline__slide-popup-newslider-wrapper {
	overflow: hidden;
}

.timeline__slide-popup-newslider-wrapper .timeline__slide-popup-link {
	display: flex;
	align-items: center;
}

.timeline__slide-popup-newslider-desc {
	overflow: hidden;
}

.timeline__slide-popup_descNew {
	font-size: 19px;
	font-weight: 700;
	text-align: center;
	padding: 20px;
	display: block;
	background: #fff;
}

.timeline__slide-popup_descNew small {
	font-size: 15px;
	font-weight: 400;
	display: block;
	margin-top: 15px;
}

.footer-timeline {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	padding-left: 32px;
	height: 160px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 241, 238, 0)), color-stop(39.11%, #F2F1EE));
	background: -o-linear-gradient(top, rgba(242, 241, 238, 0) 0%, #F2F1EE 39.11%);
	background: linear-gradient(180deg, rgba(242, 241, 238, 0) 0%, #F2F1EE 39.11%);
	padding-bottom: 28px;
	z-index: 1;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin-top: -68px;
}

.footer-timeline.new {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	padding-left: 30px;
	height: auto;
	background: #fff;
	padding-bottom: 0;
	padding-top: 10px;
	z-index: 1;
	position: relative;
	bottom: auto;
	left: auto;
	right: auto;
	margin-top: 0;
	box-shadow: 0px 0px 10px 2px rgb(34 60 80 / 20%);
	margin-bottom: 40px;
}

.footer-timeline.new.abs {
	position: fixed;
	bottom: 0;
	width: 100%;
	left: 0;
	margin: 0;
	z-index: 1011;
	box-shadow: 0px -5px 5px -5px rgba(34, 60, 80, 0.6);
}

.footer-timeline__menu-btn {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: end;
	align-self: flex-end;
	font: 700 36px/48px 'PF Centro Sans Pro', sans-serif;
	margin-right: 60px;
}

.footer-timeline.new .footer-timeline__menu-btn {
	-ms-flex-item-align: center;
	align-self: center;
	margin-bottom: 20px;
}

.footer-timeline__menu-btn:after {
	content: '';
	margin-left: 20px;
	width: 40px;
	height: 40px;
	background-image: url(../img/icons/timeline-menu-lines.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.footer-timeline__pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	width: 100%;
	overflow-x: scroll;
	z-index: 1;
	cursor: move;
	padding-left: 20px;
	padding-top: 25px;
	padding-bottom: 25px;
}

.footer-timeline__pagination::-webkit-scrollbar {
	display: none;
}

.footer-timeline__pagination.active {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.footer-timeline__pagination-bullet {
	position: relative;
	height: 23px;
	padding: 0 10px;
	cursor: pointer;
}

.footer-timeline__pagination-bullet:before {
	content: '';
	display: block;
	width: 5px;
	border-radius: 3px;
	height: inherit;
	opacity: 0.4;
	background: #B5B7BC;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.footer-timeline__pagination-bullet.decorate:before,
.footer-timeline__pagination-bullet.active:before {
	background: #0079c1;
	opacity: 0.4;
}

.footer-timeline__pagination-bullet.year {
	position: relative;
	height: 50px;
	width: auto;
	opacity: 1;
}

.footer-timeline__pagination-bullet.year::before {
	opacity: 1;
}

.footer-timeline__pagination-bullet.year span {
	position: absolute;
	top: -28px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	font: 800 19px/24px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
}

.footer-timeline__pagination-bullet.year.active:before {
	background: #0079c1;
}

.footer-timeline__pagination-bullet.year.active span {
	color: #0079c1;
}

.footer-timeline__pagination-bullet.year.active.current {
	height: 50px;
}

.timeline__year {
	position: absolute;
	left: -.85em;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-90deg);
	-ms-transform: translateY(-50%) rotate(-90deg);
	transform: translateY(-50%) rotate(-90deg);
	color: #0079C1;
	opacity: .2;
	z-index: 0;
	font: 600 280px/280px 'PF Centro Sans Pro', sans-serif;
}

.timeline__year.new {
	-webkit-transform: translateY(-10%) rotate(-90deg);
	-ms-transform: translateY(-10%) rotate(-90deg);
	transform: translateY(-10%) rotate(-90deg);
}

.timeline__head {
	position: absolute;
	top: -7px;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 4;
}

.timeline__head-edit {
	width: 30px;
	height: 30px;
	background-image: url(../img/icons/edit.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: all .2s ease;
}

.timeline__head-share {
	width: 25px;
	height: 25px;
	margin-right: 15px;
	background-image: url(../img/icons/share.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: all .2s ease;
}

.timeline__head-edit:hover {
	background-image: url(../img/icons/edit_h.svg);
}

.timeline__head-share:hover {
	background-image: url(../img/icons/share_h.svg);
}

.default__arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 106px;
	height: 106px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.default__arrow-next:before,
.default__arrow-prev:before {
	content: '';
	width: 32px;
	height: 94px;
	position: absolute;
	background-image: url(../img/icons/timeline-arrow-back.svg);
	background-size: 32px 94px;
	background-repeat: no-repeat;
	-webkit-transition: .4s ease;
	-o-transition: .4s ease;
	transition: .4s ease;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);

}

.default__arrow-next:after,
.default__arrow-prev:after {
	content: '';
	position: absolute;
	width: 17px;
	height: 50px;
	background-image: url(../img/icons/timeline-arrow-front.svg);
	background-size: 17px 50px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transition: .4s ease;
	-o-transition: .4s ease;
	transition: .4s ease;
	margin-left: 24px;
	-webkit-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}

.default__arrow:hover:before {
	background-image: url(../img/icons/timeline-arrow-front.svg);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.default__arrow:hover:after {
	background-image: url(../img/icons/timeline-arrow-back.svg);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	margin-left: 50px;
}

.default__arrow-prev {
	-webkit-transform: translateY(-50%) scale(-1, 1);
	-ms-transform: translateY(-50%) scale(-1, 1);
	transform: translateY(-50%) scale(-1, 1);
}

.timeline-menu-popup {
	background: #FFFFFF;
	transition: 1s;
}

.timeline-menu-popup:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	max-width: 1586px;
	background-image: url(../img/bg-lines.svg);
	background-position: top left;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
	display: none;
}

.timeline-menu-popup.active {
	opacity: 1;
	visibility: visible;
	transition: 1s;
}

.timeline-menu-popup__container {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
	width: 100%;
	height: 100%;
	padding-left: 100px;
}

.timeline-menu-popup__container:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 217px;
	height: 100%;
	background: -o-linear-gradient(183.22deg, #FFFFFF 2.29%, rgba(255, 255, 255, 0) 96.97%);
	background: linear-gradient(266.78deg, #FFFFFF 2.29%, rgba(255, 255, 255, 0) 96.97%);
	-webkit-transition: opacity .5s ease, visibility .5s ease;
	-o-transition: opacity .5s ease, visibility .5s ease;
	transition: opacity .5s ease, visibility .5s ease;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
}

.timeline-menu-popup__container:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 217px;
	height: 100%;
	background: -o-linear-gradient(183.22deg, #FFFFFF 2.29%, rgba(255, 255, 255, 0) 96.97%);
	background: linear-gradient(266.78deg, #FFFFFF 2.29%, rgba(255, 255, 255, 0) 96.97%);
	-webkit-transition: opacity .5s ease, visibility .5s ease;
	-o-transition: opacity .5s ease, visibility .5s ease;
	transition: opacity .5s ease, visibility .5s ease;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transform: rotate(180deg);
}

.timeline-menu-popup__container.end-decore:after {
	opacity: 1;
	visibility: visible;
}

.timeline-menu-popup__container.end-decore:before {
	opacity: 1;
	visibility: visible;
}

.timeline-menu-popup__head {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding-right: 50px;
	z-index: 2;
}

.timeline-menu-popup__head-close {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font: 400 20px/24px 'PF Centro Sans Pro', sans-serif;
}

.timeline-menu-popup__head-close:before {
	content: '';
	margin-right: 12px;
	width: 24px;
	height: 24px;
	background-image: url(../img/icons/close.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.timeline-menu-popup__content {
	margin-top: 50px;
}

.timeline-menu-popup__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.timeline-menu-popup__blocks .swiper-slide {
	width: calc(100% / 4 - 80px);
}

.timeline-menu-popup__block-img-wrapper {
	width: 304px;
	height: 213px;
	overflow: hidden;
	-webkit-box-shadow: 30px 30px 80px rgba(17, 24, 39, 0.08);
	box-shadow: 30px 30px 80px rgba(17, 24, 39, 0.08);
	border-radius: 4px;
}

.timeline-menu-popup__block-img {
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	max-width: 100%;
}

.timeline-menu-popup__block-between {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 40px;
	font: 700 60px/60px 'PF Centro Sans Pro', sans-serif;
}

.timeline-menu-popup__block-between small {
	font: 400 24px/24px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
	margin-left: 10px;
}

.visible_mobile {
	display: none;
}

.timeline-menu-popup__block-years {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 50px;
}

.timeline-menu-popup__block-year+.timeline-menu-popup__block-year {
	margin-top: 24px;
}

.timeline-menu-popup__block-year {
	cursor: pointer;
}

.timeline-menu-popup__block-year-title {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font: 500 19px/19px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	text-transform: uppercase;
}

.timeline-menu-popup__block-year-title:after {
	content: '';
	width: 24px;
	height: 24px;
	margin-left: 8px;
	background-image: url(../img/icons/timeline-menu-popup-arrow-down.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
	outline: none;
}

.timeline-menu-popup__months {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-height: 200px;
	overflow: auto;
	margin-top: 15px;
}

.timeline-menu-popup__month {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 12px;
	cursor: pointer;
}

.timeline-menu-popup__month-date {
	font: 400 17px/24px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
	margin-right: 8px;
}

.timeline-menu-popup__month-name {
	font: 400 17px/24px 'PF Centro Sans Pro', sans-serif;
}

.footer {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.footer__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 92px;
}

.footer__col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.footer__copyright {
	font: 400 17px/22px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
}

.footer__rudn {
	font: 400 17px/22px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
}

.footer__block {
	margin-left: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer__support {
	font: 400 17px/28px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
}

.footer__support a {
	color: #0079C1;
	font: 400 17px/28px 'PF Centro Sans Pro', sans-serif;
}

.footer__link {
	font: 400 17px/28px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
}

.footer__link:nth-child(2) {
	margin: 0 40px;
}

.contacts {
	max-width: 1228px;
	margin: 0 auto;
	margin-top: 70px;
	padding-bottom: 164px;
}

.main-title {
	font: 700 80px/106px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.contacts__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 80px;

}

.contacts__col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.contacts__col:first-child {
	width: 503px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.contacts__col:last-child {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding-left: 126px;
}

.contacts__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.contacts__block+.contacts__block {
	margin-top: 40px;
}

.contacts__block-title {
	font: 500 17px/20px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.contacts__block-name {
	font: 700 20px/26px 'PF Centro Sans Pro', sans-serif;
	text-transform: uppercase;
	margin-top: 12px;
}

.contacts__block-tel {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: baseline;
	align-self: baseline;
	margin-top: 24px;
	font: 400 19px/24px 'PF Centro Sans Pro', sans-serif;
}

.contacts__block-tel:before {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	margin-right: 12px;
	background-image: url(../img/icons/tel.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.contacts__block-email {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: baseline;
	align-self: baseline;
	margin-top: 12px;
	font: 400 19px/24px 'PF Centro Sans Pro', sans-serif;
}

.contacts__block-email:before {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	margin-right: 12px;
	background-image: url(../img/icons/email.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.contacts__block-socials {
	margin-top: 24px;
}

.contacts__block-social {
	width: 40px;
	height: 40px;
	margin-right: 16px;
}

.contacts__block-social:last-child {
	margin: 0;
}

.contacts__block-address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 24px;
	font: 400 19px/24px 'PF Centro Sans Pro', sans-serif;
}

.contacts__block-address:before {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	margin-right: 12px;
	background-image: url(../img/icons/address.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.contacts__form-wrapper {
	padding: 32px 48px;
	background: #FFFFFF;
	border: 1px solid #E7E8E9;
	-webkit-box-shadow: 30px 30px 80px rgba(17, 24, 39, 0.12);
	box-shadow: 30px 30px 80px rgba(17, 24, 39, 0.12);
	border-radius: 4px;
}

.contacts__form-title {
	font: 700 36px/48px 'PF Centro Sans Pro', sans-serif;
}

.contacts__form {
	margin-top: 24px;
}

.default-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.contacts__form-label {
	margin-top: 24px;
}

.contacts__form-label:first-child {
	margin-top: 0;
}


.default-input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 4px;
	height: 50px;
	border: 1px solid #E7E8E9;
	padding-left: 20px;
	font: 400 19px/25px 'PF Centro Sans Pro', sans-serif;
	width: 100%;
	outline: none;
}

.default-input-placeholder {
	position: absolute;
	top: 11px;
	left: 20px;
	color: #92959C;
	cursor: text;
	-webkit-transition: top .3s ease 0s;
	-o-transition: top .3s ease 0s;
	transition: top .3s ease 0s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.default-input:focus,
.default-textarea:focus {
	border: 1px solid #0079C1;
}

.default-input:focus+.default-input-placeholder,
.default-textarea:focus+.default-input-placeholder {
	top: -10px;
	color: #0079C1;
	background: #FFFFFF;
	padding: 0 4px;
	font: 500 13px/20px 'PF Centro Sans Pro', sans-serif;
}

.default-label.active .default-input,
.default-label.active .default-textarea {
	border: 1px solid #0079C1;
}

.default-label.active .default-input-placeholder {
	top: -10px;
	color: #0079C1;
	background: #FFFFFF;
	padding: 0 4px;
	font: 500 13px/20px 'PF Centro Sans Pro', sans-serif;
}

.default-textarea {
	position: relative;
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #E7E8E9;
	border-radius: 4px;
	padding-top: 14px;
	padding-left: 20px;
	font: 400 17px/25px 'PF Centro Sans Pro', sans-serif;
	resize: none;
	outline: none;
}

.default-textarea::-webkit-input-placeholder {
	color: #92959C;
}

.default-textarea::-moz-placeholder {
	color: #92959C;
}

.default-textarea:-ms-input-placeholder {
	color: #92959C;
}

.default-textarea::-ms-input-placeholder {
	color: #92959C;
}

.default-textarea::placeholder {
	color: #92959C;
}

.contacts__form-textarea {
	height: 84px;
}

.default-form__checkbox {
	position: absolute;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	left: -99999999px;
}

.default-form__custom-checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 20px;
	height: 20px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border: 1px solid #E7E8E9;
	border-radius: 4px;
	margin-right: 8px;
	cursor: pointer;
}

.default-form__checkbox:checked+.default-form__custom-checkbox {
	border: 1px solid #0079C1;
	background-color: #0079C1;
	background-image: url(../img/icons/checkbox-active.svg);
	background-size: 11px 8px;
	background-position: center center;
	background-repeat: no-repeat;
}

.default-form__checkbox:focus+.default-form__custom-checkbox {
	border: 1px solid #0079C1;
}

.default-form__text {
	font: 400 18px/19px 'PF Centro Sans Pro', sans-serif;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.default-form__text a {
	color: #0079C1;
	font: 400 18px/19px 'PF Centro Sans Pro', sans-serif;
}

.contacts__form-btn {
	margin-top: 24px;
}

.about {
	margin-top: 70px;
	padding-bottom: 136px;
	background-image: url(../img/bg-about.svg);
	background-position: center;
	background-repeat: no-repeat;
}

.about__container {
	max-width: 1228px;
}

.about__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.about__title {
	font: 700 42px/55px 'PF Centro Sans Pro', sans-serif;
	max-width: 900px;
	color: #0079C1;
}

.about__logo-wrapper {
	margin-left: auto;
}

.about__logo {
	max-width: 262px;
	max-height: 172px;
	height: auto;
}

.about-content__gallery {
	display: grid;
	grid-template: auto / repeat(3, 1fr);
	gap: 20px;
}

.about-content__gallery a {
	display: block;
	max-width: 100%;
	overflow: hidden;
	min-height: 300px;
	position: relative;
	background-size: cover;
	background-position: center;
}

.about-content__gallery a img {
	width: 100%;
}

.about-content__section {
	margin-top: 70px;
}

.about-content__title {
	font: 700 28px/37px 'PF Centro Sans Pro', sans-serif;
}

.about__dsc {
	font: 400 19px/28px 'PF Centro Sans Pro', sans-serif;
	margin-top: 24px;
	display: flex;
	align-items: flex-start;
	gap: 35px;
}

.about__dsc >.text_p > b {
	font-weight: 600;
}

.about__dsc >.icon_svg {
	flex: 0 0 55px;
	max-width: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about__dsc >.icon_svg>img {}

.about__management {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -50px;
	margin-top: 32px;
}

.about__management-block {
	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-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: calc(100% / 3);
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-start;
	margin: 0 50px;
}


.management-block__img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
	-o-object-fit: cover;
	object-fit: cover;
	height: 420px;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	-webkit-transition: -webkit-filter 0.2s;
	transition: -webkit-filter 0.2s;
	-o-transition: filter 0.2s;
	transition: filter 0.2s;
	transition: filter 0.2s, -webkit-filter 0.2s;
}

.management-block__img:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	-webkit-transition: -webkit-filter 0.2s;
	transition: -webkit-filter 0.2s;
	-o-transition: filter 0.2s;
	transition: filter 0.2s;
	transition: filter 0.2s, -webkit-filter 0.2s;
}

.management-block__img-wrapper {
	width: 100%;
	position: relative;
}

.management-block__img-wrapper>span {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	padding: 0 20px;
	text-transform: uppercase;
	font-weight: bold;
}

.management-block__name {
	margin-top: 32px;
	font: 700 20px/26px 'PF Centro Sans Pro', sans-serif;
	text-transform: uppercase;
	text-align: center;
}

.management-block__position {
	margin-top: 16px;
	font: 500 17px/17px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	text-align: center;
}

.about-content__title+.about__dsc-wrapper {
	margin-top: 8px;
}

.about__dsc-wrapper.col-2 {
	-moz-columns: 2;
	-webkit-columns: 2;
	columns: 2;
	-moz-column-gap: 60px;
	-webkit-column-gap: 60px;
	column-gap: 60px;
}

.about__dsc-wrapper.col-2 .about__dsc {
	display: inline-block;
}

.history {
	padding-top: 30px;
	padding-bottom: 100px;
	background: #FAFAFA;
}

.history__title {
	font: 700 50px/56px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.history__content {
	max-width: 1440px;
	margin: 0 auto;
	margin-top: 30px;
}

.history__tab {
	padding-top: 40px;
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.history__tab-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	justify-content: flex-start;
}

.history__tab-item {
	flex: 0 0 auto;
	transition: all .2s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid #0079C1;
	border-radius: 10px;
	display: inline-block;
	padding: 7px 15px;
}

.history__tab-item:hover,
.history__tab-item.active {
	background: #0079C1;
	color: #fff;
}

.history__filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex: 0 0 auto;
	gap: 15px;
}

.history__filter-select-wrapper {
	min-width: 160px;
}

.default-select {
	width: 100%;
}

.select2-container--default .select2-selection--single {
	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;
	height: 48px;
	border: 1px solid #E7E8E9;
	padding-right: 16px;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
	float: none;
	position: absolute;
	right: 40px;
	width: 24px;
	height: 24px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.select2-selection.select2-selection--single.select2-selection--clearable {
	border: 1px solid #0079C1;
}

.select2-container--default .select2-selection--single .select2-selection__clear span {
	font: 400 24px/24px 'PF Centro Sans Pro', sans-serif;
	color: #B5B7BC;
}

.history__calendar-wrapper {
	position: relative;
	min-width: 160px;
}

.history__calendar-select {
	cursor: pointer;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: grid;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 48px;
	border: 1px solid #E7E8E9;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	background: #fff;
	border-radius: 4px;
	grid-template: auto / 50px auto;
}

.history__calendar-select.active {
	grid-template: auto / 50px auto 50px;
}

.history__calendar-icon {
	flex: 0 0 50px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.history__calendar-icon svg {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	stroke: #2C3E50;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

.history__calendar-name {
	font: 400 17px/25px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	padding-right: 15px;
}

.history__calendar-delete {
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	line-height: 0;
	position: relative;
	width: 50px;
}

.history__calendar-delete:after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 30px;
	background: #E7E8E9;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.history__calendar-delete svg {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	stroke: #2C3E50;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

.history__calendar-select:not(.active):hover {
	background: #0079C1;
	border: 1px solid #0079C1;
}

.history__calendar-select:not(.active):hover .history__calendar-icon svg {
	stroke: #fff;
}

.history__calendar-select:not(.active):hover .history__calendar-name {
	color: #fff;
}

.history__calendar-select.active .history__calendar-delete {
	display: flex;
}

.history__calendar-select.active .history__calendar-delete:hover svg {
	stroke: #0079C1;
}

.default-select-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.default-select__name {
	position: absolute;
	left: 20px;
	font: 400 17px/25px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
	cursor: pointer;
	-webkit-transition: top .3s ease 0s;
	-o-transition: top .3s ease 0s;
	transition: top .3s ease 0s;
}

.default-select__name.active {
	top: -10px;
	color: #0079C1;
	background: #FFFFFF;
	padding: 0 4px;
	font: 500 13px/20px 'PF Centro Sans Pro', sans-serif;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	position: relative;
	width: 24px;
	height: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background-image: url(../img/icons/select-arrow-down.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
	-webkit-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 20px;
	color: #92959C;
	font: 400 17px/17px 'PF Centro Sans Pro', sans-serif;
}

.select2-container--default .select2-selection--single.select2-selection--clearable .select2-selection__rendered {
	color: #111827;
}

.select2-dropdown {
	border: 1px solid #E7E8E9;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #E7E8E9;
	border-radius: 4px;
	height: 36px;
	padding-left: 4px;
	color: #92959C;
	font: 400 17px/17px 'PF Centro Sans Pro', sans-serif;
	outline: none;
}

.select2-container--default .select2-results__option--selected {
	background: #E7E8E9
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background: #0079C1;
	border-radius: 4px;
}

.empty_list {
	text-align: center;
	border: 1px solid #0079c1;
	border-radius: 5px;
	padding: 20px;
}

.history__stories-wrapper {
	margin-top: 35px;
}

.history__stories-wrapper.active {
	display: block;
}

.history__stories {
	display: grid;
	gap: 40px 80px;
	grid-template: auto / repeat(3, 1fr);
}

.history__videos {}

.history__videos-year {
	margin-top: 45px;
}

.history__videos-year:first-child {
	margin-top: 0;
}

.history__videos-year_head {
	font-family: 'PF Centro Sans Pro';
	font-weight: 700;
	font-size: 50px;
	color: #AEAB9B;
	margin-bottom: 35px;
	line-height: normal;
}

.history__videos-year_list {
	display: grid;
	grid-template: auto / repeat(4, 1fr);
	grid-gap: 55px;
}

.history__video {
	line-height: 0;
	width: 100%;
	transition: all .2s ease;
}

.history__video-img {
	width: 100%;
	height: 240px;
	line-height: 0;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.history__video-img img {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
	width: 100%;
	transition: all .3s ease;
}

.history__video:hover .history__video-img img {
	transform: scale(1.05);
}

.history__video-img:after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 5px;
	right: 5px;
	background: url(../img/icons/play_n.svg);
	width: 32px;
	height: 32px;
	z-index: 2;
}

.history__video-text {
	margin-top: 15px;
	line-height: normal;
}

.history__video-text span:first-child {
	text-transform: uppercase;
	color: #0079C1;
	display: block;
	font-size: 15px;
	line-height: normal;
}

.history__video-text span:last-child {
	font-family: 'PF Centro Sans Pro';
	font-weight: 600;
	font-size: 17px;
	line-height: 24px;
	color: #0079C1;
	margin-top: 10px;
	display: block;
}

.history__video-hashtag {
	display: flex;
	gap: 0px 10px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.history__video-hashtag a {
	transition: all .3s ease;
	font: 400 14px/22px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.history__video-hashtag a:hover {
	color: #000;
}

.history__story {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.history__story.small:after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 100%;
	background: #000;
	position: absolute;
	right: -40px;
	top: 0;
	opacity: .15;
}

.history__story.big+.history__story.small+.history__story.small+.history__story.small:after,
.history__story.big+.history__story.small+.history__story.small+.history__story.small+.history__story.small+.history__story.small+.history__story.small:after {
	content: none;
}

.history__story.big {
	margin-top: 0;
	width: 100%;
	grid-column: 1 / 4;
	background: #fff;
	padding: 30px;
	border-radius: 10px;
}

.history__story-img-wrapper {
	width: 240px;
	height: 240px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 10px;
	-webkit-box-shadow: 20px 20px 40px rgba(17,24,39,.12);
	box-shadow: 20px 20px 40px rgba(17,24,39,.12);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
}

.history__story-img-wrapper:after {
	content: '';
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: .2;
	z-index: 0;
}

.history__story.big .history__story-img-wrapper {
	width: 330px;
	height: 330px;
	margin-right: 35px;
}

.history__story-img {
	-o-object-fit: cover;
	object-fit: cover;
	height: auto;
	width: auto;
	transition: all .3s ease;
	z-index: 1;
	position: relative;
	max-width: 100%;
	max-height: 100%;
}

.history__story:not(.big) .history__story-img-wrapper:hover .history__story-img {
	transform: scale(1.05);
}

.history__story-content {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 11.5px 0;
}

.history__story-content-date {
	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;
	font: 500 17px/17px 'PF Centro Sans Pro', sans-serif;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: #B5B7BC;
	width: 100%;
}

.history__story:not(.big) .history__story-content-date {
	font: 500 20px/20px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.history__story-content-date>.timeline__head {
	top: -5px;
}

.history__story-content-date:after {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	margin-top: 12px;
	background: #B5B7BC;
}

.history__story:not(.big) .history__story-content-date:after {
	background: #0079C1;
}

.history__story-content-title {
	margin-top: 16px;
	color: #0079C1;
}

.history__story-content-title > a {
	font: 700 20px/30px 'PF Centro Sans Pro', sans-serif;
}

.history__story:not(.big) .history__story-content-title {
	margin-bottom: 15px;
}

.history__story:not(.big) .history__story-content-title a {
	margin-top: 12px;
	font: 700 17px/24px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	display: block;
	height: 72px;
	overflow: hidden;
}

.history__story-content-dsc {
	margin-top: 24px;
	font: 400 19px/28px 'PF Centro Sans Pro', sans-serif;
	color: #414652;
	text-align: justify;
}

.history__story-content-readmore {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 24px;
	font: 400 17px/20px 'PF Centro Sans Pro', sans-serif;
	color: #60646E;
	text-transform: uppercase;
}

.history__stories-nav-wrapper {
	margin-top: 70px;
	grid-column: 1 / 4;
}

.history__videos-year_list .history__stories-nav-wrapper {
	grid-column: 1 / 5;
}

.history__tags {
	display: flex;
	gap: 15px;
	margin-top: 25px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.history__tags label {}

.history__tags label input {
	display: none;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: -99999px;
}

.history__tags label input+span {
	background: #fff;
	border: 1px solid #0079C1;
	border-radius: 10px;
	padding: 10px 10px;
	color: #414652;
	font-size: 17px;
	transition: all .2s ease;
	cursor: pointer;
	display: inline-block;
}

.history__tags label input+span:hover,
.history__tags label input:checked+span {
	background: #0079C1;
	color: #fff;
}

.nav-wrapper {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.history__videos-year .nav-wrapper {
	grid-column: 1/5;
	margin-top: 40px;
}

.loadmore {
	width: 100%;
	height: 48px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #92959C;
	border-radius: 4px;
	font: 400 16px/20px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
	text-transform: uppercase;
	transition: all .2s ease;
}

.loadmore:hover {
	background: #E7E8E9;
	border: 1px solid #E7E8E9;
}

.history__stories-nav {
	margin: 0 auto;
	margin-top: 40px;
}

.nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.nav__list-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 58px;
	height: 58px;
	background: #FFFFFF;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border: 1px solid #E7E8E9;
	cursor: pointer;
	font: 400 16px/16px 'PF Centro Sans Pro', sans-serif;
}

.nav__list-link.active {
	border: 1px solid #0079C1;
	background: #0079C1;
	color: #FFFFFF;
}

.nav__list-link:not(.active):hover {
	background: #E7E8E9;
}

.popup-history {
	max-width: 426px;
	-webkit-box-shadow: 0px 35px 60px -15px rgba(6, 25, 56, 0.25);
	box-shadow: 0px 35px 60px -15px rgba(6, 25, 56, 0.25);
	border-radius: 4px;
	z-index: 100;
	background: #FFFFFF;
	position: fixed;
	top: 120px;
	right: 24px;
	bottom: auto;
	left: auto;
	height: auto;
	padding: 0 24px;
	padding-top: 20px;
}

.popup-history .default-popup__close {
	top: 20px;
}

.popup-history__title {
	font: 700 24px/32px 'PF Centro Sans Pro', sans-serif;
}

.popup-history__blocks {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.popup-history__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 24px;
}

.popup-history__block-img-wrapper {
	margin-right: 24px;
}

.popup-history__block-img {
	width: 100px;
	height: 76px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-box-shadow: 10px 10px 30px rgba(17, 24, 39, 0.12);
	box-shadow: 10px 10px 30px rgba(17, 24, 39, 0.12);
	border-radius: 4px;
}

.popup-history__block-content {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.popup-history__block-date {
	font: 500 13px/18px 'PF Centro Sans Pro', sans-serif;
	text-transform: uppercase;
	color: #0079C1;
}

.popup-history__block-title {
	margin-top: 8px;
	font: 500 17px/20px 'PF Centro Sans Pro', sans-serif;
}

.popup-history__link {
	width: calc(100% + 48px);
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #00A94F;
	padding: 16px 10px;
	font: 400 17px/19px 'PF Centro Sans Pro', sans-serif;
	color: #FFFFFF;
	-webkit-transition: background .3s ease;
	-o-transition: background .3s ease;
	transition: background .3s ease;
	margin: 0 -24px;
	margin-top: 20px;
}

.popup-history__link:hover {
	background: #111827;
}

.history-day {
	padding-top: 40px;
	padding-bottom: 80px;
	overflow: hidden;
}

.history-day__content {
	max-width: 1228px;
	margin: 0 auto;
}

.history-day__prev {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font: 400 17px/24px 'PF Centro Sans Pro', sans-serif;
	color: #95A3BA;
}

.history-day__prev:before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	margin-right: 8px;
	background-image: url(../img/icons/history-prev.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.history-day__date {
	margin-top: 40px;
	font: 500 20px/20px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	text-transform: uppercase;
}

.history-day__title {
	margin-top: 24px;
	font: 700 36px/48px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.history-day__dsc-wrapper {
	font: 400 19px/27px 'PF Centro Sans Pro', sans-serif;
	color: #374151;
	text-align: justify;
	margin: 0 -80px;
	padding: 40px 80px;
	box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.19);
	margin-top: 40px;
	background: #fff;
	position: relative;
}

.history-day__dsc {
	font: inherit;
	color: inherit;
}

.history-day__dsc p {
	font-weight: 400;
	margin-bottom: 10px;
}

.history-day__dsc strong {
	color: #0079C1;
	font-weight: 500;
}

.history-day__dsc .column {
	display: grid;
	grid-template: auto / repeat(2, 1fr);
	gap: 50px;
}

.history-day__dsc .column>* {
	margin: 50px 0;
}

.history-day__dsc ol {
	margin: 0;
	list-style: auto;
	padding: 0;
	padding-left: 20px;
}

.history-day__dsc ol li {
	position: relative;
	padding-left: 5px;
}

.history-day__dsc ol li::marker {
	color: #0079c1;
	font-weight: 500;
}

.history-day__dsc blockquote {
	margin: 40px 0;
	padding: 30px;
	background: #F1F2F4;
	border-left: 5px solid #0079c1;
	border-radius: 0;
	font-size: 18px;
	line-height: 23px;
	font-style: italic;
	position: relative;
	padding-left: 60px;
}

.history-day__dsc blockquote:after {
	content: '\201D';
	font-family: 'PF Centro Sans Pro';
	font-weight: 700;
	font-size: 64px;
	color: #0079c1;
	position: absolute;
	top: 40px;
	left: 5px;
	line-height: 30px;
}

.history-day__dsc-quote {
	padding-top: 40px;
	margin-top: 40px;
	padding-bottom: 340px;
	margin-bottom: -340px;
	position: relative;
}

.history-day__dsc-quote span {
	z-index: 1;
	position: relative;
	color: #fff;
	font-size: 30px;
	line-height: normal;
}

.history-day__dsc-quote:after {
	content: '';
	background: url('../img/back_history.jpg') #0079c1 no-repeat center;
	background-size: cover;
	display: block;
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
}

.history-day__img {
	max-width: 433px;
	max-height: 433px;
	margin-top: 40px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.history-day__img.right {
	float: right;
	margin-left: 65px;
}

.history-day__img.left {
	float: left;
	margin-right: 65px;
}

.search {
	padding-bottom: 72px;
	margin-top: 70px;
}

.search__content {
	max-width: 1228px;
	margin: 0 auto;
}

.search__title {
	font: 700 40px/54px 'PF Centro Sans Pro', sans-serif;
}

.search__title span {
	font: inherit;
}

.search__filter {
	margin-top: 40px;
}

.search__filter-title {
	font: 500 17px/20px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.search__filter-select-wrapper {
	margin-top: 16px;
	max-width: 285px;
}

.search__blocks {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.search__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 70px;
}

.search__block-img-wrapper {
	margin-right: 72px;
}

.search__block-img {
	width: 200px;
	height: 200px;
	-webkit-box-shadow: 20px 20px 32px rgba(17, 24, 39, 0.08);
	box-shadow: 20px 20px 32px rgba(17, 24, 39, 0.08);
	border-radius: 4px;
}

.search__block-content {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.search__block-date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font: 500 15px/15px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.search__block-date:after {
	content: '';
	display: block;
	margin-top: 12px;
	width: 40px;
	height: 1px;
	background: #0079C1;
}

.search__block-title {
	margin-top: 16px;
	font: 700 20px/26px 'Playafir Display', sans-serif;
}

.search__block-dsc {
	font: 400 17px/27px 'PF Centro Sans Pro', sans-serif;
	color: #414652;
}

.search__nav-wrapper {
	margin-top: 70px;
}

.graduates-years {
	margin-top: 70px;
	padding-bottom: 55px;
}

.graduates-years__container {
	max-width: 1228px;
	margin: 0 auto;

}

.graduates-years__title {
	font: 700 80px/106px 'PF Centro Sans Pro', sans-serif;
}

.graduates-years__subtitle {
	font: 500 24px/29px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	margin-top: 48px;
}

.graduates-years__blocks {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 40px;
	border: 1px solid #E7E8E9;
	-webkit-box-shadow: 30px 30px 80px rgba(17, 24, 39, 0.08);
	box-shadow: 30px 30px 80px rgba(17, 24, 39, 0.08);
	border-radius: 4px;
}

.graduates-years__block {
	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: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 32px;
	width: calc(100% / 3);
	border-style: solid;
	border-color: #E7E8E9;
	border-width: 0px 1px 1px 0px;
	min-height: 271px;
	background-color: #FFFFFF;
}

.graduates-years__block:after {
	content: '';
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-image: url(../img/icons/arrow-graduates-block.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	visibility: hidden;
}

.graduates-years__block:hover {
	background-color: #00A94F;
	background-image: url(../img/bg-graduates-block.svg);
	background-position: right bottom;
	background-repeat: no-repeat;
	color: #FFFFFF;
}

.graduates-years__block:hover:after {
	margin-top: 32px;
	width: 32px;
	height: 32px;
	visibility: visible;
}

.graduates-years__block:hover .graduates-years__block-year {
	color: #FFFFFF;
}

.graduates-years__block:hover .graduates-years__block-count {
	color: #FFFFFF;
}

.graduates-years__block-year {
	font: 700 64px/64px 'PF Centro Sans Pro', sans-serif;
}

.graduates-years__block-count {
	font: 400 17px/17px 'PF Centro Sans Pro', sans-serif;
	margin-top: 24px;
	color: #60646E;
}

.graduates-faculty {
	margin-top: 70px;
	padding-bottom: 164px;
}

.graduates-faculty__container {
	max-width: 1228px;
	margin: 0 auto;
}

.graduates-faculty__title {
	font: 700 80px/106px 'PF Centro Sans Pro', sans-serif;
}

.graduates-faculty__link-prev {
	margin-top: 48px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font: 500 24px/29px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.graduates-faculty__link-prev:before {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	background-image: url(../img/icons/arrow-graduates-link.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	margin-right: 20px;
}

.graduates-faculty__blocks {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border: 1px solid #E7E8E9;
	-webkit-box-shadow: 30px 30px 80px rgba(17, 24, 39, 0.08);
	box-shadow: 30px 30px 80px rgba(17, 24, 39, 0.08);
	border-radius: 4px;
	margin-top: 40px;
	background: #FFFFFF;
}

.graduates-faculty__block {
	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: calc(100% / 3);
	height: 335px;
	padding: 32px;
	border-width: 0px 1px 1px 0px;
	border-style: solid;
	border-color: #E7E8E9;
	background: #FFFFFF;
}

.graduates-faculty__block:hover {
	color: #FFFFFF;
	background-color: #0079C1;
	background-image: url(../img/bg-graduates-faculty.svg);
	background-position: right bottom;
	background-repeat: no-repeat;
}

.graduates-faculty__block-icon-wrapper {
	width: 80px;
	height: 80px;
}

.graduates-faculty__block-icon {
	width: inherit;
	height: inherit;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	border-radius: 4px;
}


.graduates-faculty__block-name {
	font: 700 24px/29px 'PF Centro Sans Pro', sans-serif;
}

.graduates-faculty__block-count {
	margin-top: 20px;
	font: 400 17px/20px 'PF Centro Sans Pro', sans-serif;
	color: #60646E;
}

.graduates-faculty__block:hover .graduates-faculty__block-name,
.graduates-faculty__block:hover .graduates-faculty__block-count {
	color: #FFFFFF;
}

.graduates-faculty__block:hover .graduates-faculty__block-icon {
	opacity: 0;
}

.graduates {
	margin-top: 70px;
	padding-bottom: 164px;
}

.graduates__container {
	max-width: 1228px;
	margin: 0 auto;
}

.graduates__title {
	font: 700 80px/106px 'PF Centro Sans Pro', sans-serif;
}

.graduates__link-prev {
	margin-top: 48px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font: 500 24px/29px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.graduates__link-prev:before {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	background-image: url(../img/icons/arrow-graduates-link.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	margin-right: 20px;
}

.graduates__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 40px;
}

.graduates__filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 285px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 50px;
}

.graduates__filter-search-wrapper {
	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;
}

.graduates__filter-search {
	background-image: url(../img/icons/search.svg);
	background-size: 24px 24px;
	background-position: right 16px center;
	background-repeat: no-repeat;
}

.graduates__filter-search-result {
	margin-top: 16px;
	font: 400 15px/22px 'PF Centro Sans Pro', sans-serif;
	color: #92959C;
}

.graduates__filter-search-result span {
	color: inherit;
	font: inherit;
}

.graduates__filter-title {
	margin-top: 40px;
	font: 500 17px/20px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.graduates__filter-select-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 28px;
}

.graduates__filter-select-wrapper .select2-container--default .select2-selection--single {
	max-width: 285px;
}

.graduates__blocks-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.graduates__blocks {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	border: 1px solid #E7E8E9;
	background: #FFFFFF;
	-webkit-box-shadow: 30px 30px 80px rgba(17, 24, 39, 0.08);
	box-shadow: 30px 30px 80px rgba(17, 24, 39, 0.08);
	border-radius: 4px;
	width: 100%;
}

.graduates__block {
	width: calc(100% / 3);
	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;
	background: #FFFFFF;
	border-width: 0px 1px 1px 0px;
	border-style: solid;
	border-color: #E7E8E9;
	padding: 24px 32px;
	height: 287px;
}

.graduates__block-fullname {
	font: 700 20px/26px 'PF Centro Sans Pro', sans-serif;
	text-transform: uppercase;
}

.graduates__block-country {
	margin-top: 12px;
	font: 400 16px/19px 'PF Centro Sans Pro', sans-serif;
	color: #95A3BA;
}

.graduates__block-institute {
	font: 500 17px/17px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.graduates__block-direction {
	margin-top: 12px;
	font: 400 16px/19px 'PF Centro Sans Pro', sans-serif;
}

.graduates__nav-wrapper {
	margin-top: 60px;
}

.footer-timeline-tooltip {
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #FFFFFF;
	border-radius: 0;
	position: relative;
	display: none;
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
	bottom: auto;
	left: auto;
	z-index: 2;
	width: auto;
	max-width: 380px;
}

.tippy-box[data-theme~='tomato'] {
	background-color: #fff;
	color: #000;
	padding: 8px;
	box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
}

.tippy-box[data-theme~='tomato'] .tippy-arrow {
	color: #fff;
}

#share_but {
	display: none;
}

.tippy-box #share_but {
	display: block;
}

.footer-timeline-tooltip__img {
	border-radius: 4px;
	width: 92px;
	min-width: 92px;
	max-width: 92px;
	min-height: 70px;
	max-height: 70px;
	height: 70px;
	margin-right: 16px;
	-o-object-fit: cover;
	object-fit: cover;
}

.footer-timeline-tooltip__title {
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-size: 17px;
	line-height: 120%;
	color: #111827;
}

.footer-timeline-tooltip__date {
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-size: 12px;
	line-height: 140%;
	text-transform: uppercase;
	color: #0079C1;
	margin-bottom: 4px;
}

.tippy-box .footer-timeline-tooltip {
	opacity: 1;
	display: flex;
	-webkit-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.timeline__slide-popup.slider.fancybox__content {
	width: 1440px;
	max-width: 1440px;
	padding-top: 60px;
	padding-bottom: 60px;
	height: auto;
	max-height: 100%;
}

.timeline__slide-popup-img {
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-box-shadow: unset;
	box-shadow: unset;
}

.carousel__button {
	width: 106px;
	height: 106px;
	outline: none !important;
}

.carousel__button.is-next:after,
.carousel__button.is-prev:after {
	width: 17px;
	height: 50px;
	background-size: 17px 50px;
}

.carousel__button.is-next:before,
.carousel__button.is-prev:before {
	width: 32px;
	height: 94px;
	background-size: 32px 94px;
}

.carousel__button.is-prev,
.carousel__button.is-next {
	top: calc(50% - 20px);
}

.sliderNew .carousel__button.is-prev {
	left: 0;
	height: 100%;
	box-shadow: -2px 3px 24px rgba(0, 0, 0, 0.19) !important;
	border-radius: 0;
	z-index: 10;
	background: #fff;
	top: 50%;
}

.sliderNew .carousel__button.is-next {
	right: 0;
	height: 100%;
	box-shadow: -2px 3px 24px rgba(0, 0, 0, 0.19) !important;
	border-radius: 0;
	z-index: 10;
	background: #fff;
	top: 50%;
}

.sliderNew .swiper-pagination-bullet {
	width: 40px;
	height: 6px;
	border-radius: 0;
}

.sliderNew .swiper-pagination-bullets {
	bottom: 20px;
}

.graduates-years__block-count,
.graduates-faculty__block-count {
	display: none;
}

.fancybox__nav .carousel__button.is-next {
	right: unset;
	left: calc(50% + 630px);
	bottom: unset;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.fancybox__nav .carousel__button.is-prev {
	right: calc(50% + 630px);
	left: unset;
	bottom: unset;
	top: 50%;
	-webkit-transform: translate(50%, -50%) scale(-1, 1);
	-ms-transform: translate(50%, -50%) scale(-1, 1);
	transform: translate(50%, -50%) scale(-1, 1);
}

.fancybox__slide.has-image .fancybox__content {
	-webkit-box-shadow: unset;
	box-shadow: unset;
	border: unset;
}

.fancybox__slide.has-image .fancybox__nav {
	display: none;
}

.timeline__slide-link,
.timeline__slide-popup-link {
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
	justify-content: center;
	max-height: 100%;
	z-index: 1;
}

.timeline__slide-link blockquote {
	position: absolute;
	padding: 20px;
	text-align: center;
	background: rgb(255 255 255 / 88%);
	width: 100%;
	left: 0;
	font-weight: 400;
	line-height: normal;
	font-size: 17px;
	top: 100%;
	transition: all .3s ease;
}

.timeline__slide-link blockquote b {
	display: block;
}

.timeline__slide-link blockquote:after {
	content: '\2191';
	display: flex;
	width: 50px;
	height: 50px;
	background: rgb(255 255 255 / 88%);
	position: absolute;
	bottom: calc(100% + 20px);
	left: 20px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	color: #3b3b3b;
	font-size: 30px;
	font-weight: bold;
	opacity: 1;
	transition: all .3s ease;
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 31%);
}

.timeline__slide-col:hover .timeline__slide-link blockquote {
	transform: translateY(-100%);
}

.timeline__slide-col:hover .timeline__slide-link blockquote:after {
	opacity: 0;
}

.blur {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	height: 100%;
	width: 100%;
	z-index: 0;
	position: absolute;
	left: 0;
	top: 0;
}

.timeline__slide-popup-link {
	height: 100%;
	display: inline-block;
	position: relative;
	width: 100%;
	text-align: center;
}

.timeline__slide-popup-img-wrapper blockquote {
	position: absolute;
	bottom: 0;
	padding: 20px;
	text-align: center;
	background: rgb(255 255 255 / 60%);
	width: 100%;
	left: 0;
	font-weight: 400;
	line-height: normal;
	font-size: 17px;
}

.example {
	display: -ms-grid;
	display: grid;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
	background: -o-linear-gradient(top, white, black);
	background: linear-gradient(to bottom, white, black);
}

.graduates__block-bottom {
	min-height: 64px;
}

.graduates__block-top {
	height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.red-paragraph {
	text-indent: 30px;
	padding-left: 30px;
	font-style: italic;
}

.left {
	width: 100%;
	display: inline-block;
	text-align: right;
}

small {
	line-height: normal;
}

.visible_tablet {
	display: none;
}

input.error,
textarea.error {
	border-color: red !important;
}

input[name="privacy"].error+.default-form__custom-checkbox {
	border-color: red !important;
}

.popup-video {
	margin: 0 auto;
	background: #fff;
	padding: 30px;
	transition: all .3s ease;
	width: 100%;
	max-width: 1200px;
}

.popup_video_info .fancybox__content {
	padding: 0;
	width: 100%;
}

.popup-video__content {}

.popup-video__header {}

.popup-video__header-title {
	font: 600 35px/45px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.popup-video__body {
	padding: 50px 150px 50px;
}

.popup-video__header-flex {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 40px;
	margin-top: 15px;
}

.popup-video__header-flex>span {
	position: relative;
	font-size: 17px;
	color: #0079C1;
	line-height: normal;
	text-transform: uppercase;
}

.popup-video__hashtag {
	display: flex;
	gap: 10px;
	position: relative;
}

.popup-video__hashtag:after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	background: #0079C1;
	left: -22px;
	border-radius: 50%;
}

.popup-video__hashtag a {
	transition: all .3s ease;
	font: 400 17px/normal 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.popup-video__hashtag a:hover {
	color: #000;
}

.popup-video__body audio {
	width: 100%;
}

.popup-video__body img {
	max-width: 100%;
	max-height: 550px;
	display: block;
	margin: 0 auto;
}

.history__video-img.photo:after {
	content: none;
}


.popup-calendar {
	margin: 0 auto;
	background: #fff;
	padding: 30px;
	transition: all .3s ease;
	display: none;
	visibility: hidden;
	opacity: 0;
	max-width: none;
}

.fancybox__container .popup-calendar {
	visibility: visible;
	opacity: 1;
	z-index: 1012;
	display: block;
}

.popup-calendar__content {}

.popup-calendar__header {}

.popup-calendar__header-title {
	font: 600 50px/66px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
}

.popup-calendar__header-year {
	font: 700 20px/30px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.popup-calendar__header-year .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 20px;
	color: #0079c1;
	font: 700 20px/30px 'PF Centro Sans Pro', sans-serif;
}

.popup-calendar__header-year .select2-selection.select2-selection--single.select2-selection--clearable {
	border: 1px solid #E7E8E9;
}

.popup-calendar__body {
	padding: 45px 0 0;
	position: relative;
}

.popup-calendar__body>span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(255 255 255 / 50%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	display: none;
}

.popup-calendar__body>span.active {
	opacity: 1;
	pointer-events: auto;
	display: flex;
}

.popup-calendar__grid {
	display: grid;
	grid-template: auto / repeat(8, 160px);
}

.popup-calendar__grid span {
	display: inline-block;
	padding: 65px 0;
	text-align: center;
	border: 1px solid rgb(239 239 239);
	margin-right: -1px;
	margin-bottom: -1px;
	font: 500 17px/17px 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	cursor: pointer;
	transition: all .3s ease;
	background: #fff;
}

.popup-calendar__grid span.disabled {
	pointer-events: none;
	color: #92959C;
}

.popup-calendar__grid span.active {
	background: #0079C1;
	color: #fff;
}

.popup-calendar__grid span:not(.active, .disabled):hover {
	background: #0079C1;
	color: #fff;
}

.search_block_one {
	margin-top: 50px;
}

.search_block_one h2 {
	font: 700 30px/normal 'PF Centro Sans Pro', sans-serif;
	color: #0079C1;
	margin: 0;
	margin-bottom: 25px;
}

.popup-video__col {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;	
}

.popup-video__column:first-child {
    flex: 0 0 40%;
    max-width: 40%;	
}

.popup-video__column:last-child {
    flex: 0 0 60%;
    max-width: calc(60% - 40px);	
}

.heroes_head {
    font-size: 20px;
    font-weight: 900;
    color: #0079C1;
    margin-bottom: 15px;	
}

.popup-video__body.popup-video__nopadding {
	padding-right: 0;
	padding-left: 0;
}

.popup-video__column img {
    border-radius: 10px;
}

.animate_button {
	position: relative;
	appearance: none;
	cursor: pointer;
	outline: none;
	overflow: hidden;
	z-index: 1;
	background: unset!important;
	transition: all 0.4s ease-in-out;
}
.animate_button span {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.animate_button:hover span {
	width: 225%;
	height: 250px;
}
.animate_button.green span {
	background-color: #00A94F;
}
.animate_button.green:active {
	background-color: #00A94F;
}
.animate_button.blue span {
	background-color: #0079C1;
}
.animate_button.blue:active {
	background-color: #0079C1;
}
.text_wrap_info {
	margin-top: 35px;
}
.text_wrap_info p {
	margin-bottom: 15px;
}
.text_wrap_info ul {
	list-style: unset;
	padding-left: 20px;
	margin: 15px 0;
}
.text_wrap_info h2 {
	font-size: 28px;
	line-height: normal;
	margin-bottom: 25px;
}
.text_wrap_info h3 {
	font-size: 23px;
	line-height: normal;
	margin-bottom: 15px;
}
.text_wrap_info a {
	color: #0079C1;
}