margin-top: 25px;border-radius: 5px;body {
    padding-top: env(safe-area-inset-top);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
}

/*NOWRAP*/

.nowrap {
    white-space: nowrap;
}


/*HEADER*/

.h1 {
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
    font-family: 'Roboto Regular';
}

.h2 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    font-family: 'Roboto Regular';
}

.h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    font-family: 'Roboto Regular';
}

.h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: 'Roboto Regular';
}

/*FONT*/

.font-1 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: 'Roboto Regular';
}

.font-1_bold {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    font-family: 'Roboto Bold';
}

.font-2 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Stolzl Book';
}

.font-3 {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    font-family: 'Stolzl Bold';
}

/*COLOR*/

.-color-blue  {
    color: #2BA8CA;
}

.-color-green {
    color: #AEDC6B;
}

/*BTN*/

.btn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #00B760;
    border-radius: 10px;
    padding: 11px 20px;
    color: #fff;
    font-family: 'Stolzl Book';
    font-size: 16px;
    line-height: 24px;
}

.btn-color {
    background: #00B760;
}
.btn-color_dark {
    background: #003333;
    border-color: #003333;
}

.btn-primary {
    color: #00B760;
    background: #fff;
}

.btn:hover,
.btn:active,
.btn:focus {
    box-shadow: 0 0 8px -3px black;
}

.btn-color:hover,
.btn-color:active,
.btn-color:focus {
    background: #10d175;
    border: 2px solid #10d175;
}
.btn-color_dark:hover,
.btn-color_dark:active,
.btn-color_dark:focus {
    background: #034444;
    border-color: #034444;
}

/*INPUT*/

.input {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    padding: 13px 20px;
    border-width: 0;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

.input-color {
    border: 1px solid #00a154;
}
.input-color_dark {
    border: 1px solid #014c4c;
}
.input-outline {
    border: 1px solid #00b760;
}
.input-error {
    border: 1px solid #b81b1b;
}

.input:hover,
.input:active,
.input:focus {
    box-shadow: 0 0 8px -3px black;
}

.input:invalid {
    border: 1px solid #b81b1b;
}

/*SELECT*/

.select-block {
    position: relative;
}

.select-block:after {
    content: "";
    position: absolute;
    top: 21px;
    right: 13px;
    width: 15px;
    height: 9px;
    background-repeat: no-repeat;
    background-image: url(/src/svg/vector.svg);
    background-size: contain;
    transform: rotate(180deg);
    transition-property: transform;
    transition-duration: 0.5s;
}
.select-block.select-block__active:after {
    transform: rotate(0deg);
    transition-property: transform;
    transition-duration: 0.5s;
}

.select {
    font-size: 14px;
    line-height: 24px;
    width: 100%;
    padding: 13px 35px 13px 20px;
    border-width: 0;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.select:hover,
.select:active,
.select:focus {
    box-shadow: 0 0 8px -3px black;
}

.select:invalid {
    border: 1px solid #b81b1b;
}

/*DATE*/

.date {
    background-repeat: no-repeat;
    background-image: url(/src/svg/date.svg);
    background-size: 22px;
    background-position: 92% 50%;
}
.date::-webkit-inner-spin-button {
  display: none;
}
.date::-webkit-calendar-picker-indicator {
  opacity: 0;
}

/*.date {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    box-sizing: border-box;
}
.date::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
}*/

/*<div class="date-block">

.date-block {
    position: relative;
}
.date-block:after {
    content: "";
    position: absolute;
    top: 28px;
    right: 22px;
    width: 20px;
    height: 22px;
    background-repeat: no-repeat;
    background-image: url(/src/svg/date.svg);
    background-size: contain;
}*/

/*TEXTAREA*/

.textarea {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    padding: 13px 20px;
    border-width: 0;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

.textarea-color {
    border: 1px solid #00a154;
}
.textarea-color_dark {
    border: 1px solid #014c4c;
}

.textarea:hover,
.textarea:active,
.textarea:focus {
    box-shadow: 0 0 8px -3px black;
}

.textarea:invalid {
    border: 1px solid #b81b1b;
}

/*CHECKBOX*/

.checkbox {
    
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: 1em;
    height: 1em;
    top: 5px;
    left: 1px;
}
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid #ffffff;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/*PRIM*/

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

.wrap {
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}

/*HEADER TOP*/

.header {
    
}
.-header_bg {
    background: #19b8a9;   
}
.-header-border-l {
    
}


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


.header__mobile-menu {
    display: none;
}

.mobile-menu__wrap {
    display: none;
}


.header-logo {
    position: relative;
    width: 140px;
    /*height: 22px;*/
	height: 60px;
    margin-left: 35px;
    /*background: #2faed1;*/
    /*flex-basis: 12%;*/
}

.header-logo__img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #19b8a9;
	border-radius: 0px 0px 3px 3px;
}

.header-logo__link {

}

.header-logo__object {
    width: 100%;
    z-index: 2;
}

/*.header-logo__img::after {
    content: '';
    position: absolute;
    top: 179px;
    left: 1px;
    border: 107px solid transparent;
    border-bottom: 82px solid #2ba8ca;
    transform: rotate(180deg);
}*/

.header-logo__rectangle {
    width: 100%;
    position: absolute;
    bottom: -50%;
    left: 0px;
    z-index: 1;
}

/*main-menu*/

.header-menu {
    font-size: 14px;
    /*flex-basis: 45%;*/
    margin-left: 20px;
}

.main-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu-item {
    position: relative;
}

.main-menu-item__link {
    position: relative;
    color: #fff;
    padding: 2px 10px;
}
.main-menu-item__link:hover {
    color: #aedc6b;
}

.main-menu-item__arrow::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #fff;
    vertical-align: middle;
    display: inline-block;
    margin-left: 5px;
}
.mobile-menu .main-menu-item__arrow::after {
    border-top: 5px solid #2e2e2e;
}


/*main-menu*/

/*submenu*/

.main-menu__submenu {
    display: none;
}
.main-menu-item__hover:hover .main-menu__submenu {
	position: absolute;
    display: block;
	box-shadow: 2px 2px 5px -2px black;
    width: 100%;
    min-width: 140px;
    z-index: 10;
}
.main-menu__submenu.main-menu__submenu-open {
	display: block;
}

.submenu-list {
	list-style: none;
    background: #fff;
    padding: 5px 10px;
    margin: 0;
}

.submenu-list__item {
    margin-top: 5px;
}
.submenu-list__item:first-child {
    margin-top: 0;
}

.submenu-list__link {
    
}

/*submenu*/


.header-contact {
    /*flex-basis: 12%;*/
    white-space: nowrap;
    color: #fff;
    margin-left: 20px;
}

.header-contact__text {
    color: #fff;
}


.header-social {
    /*flex-basis: 15%;*/
    margin-left: 20px;
}

.social {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.social-item {
    width: 26px;
	box-sizing: content-box;
    padding: 2px 5px;
}

.social-link {
    background: #fff;
    border-radius: 50%;
    padding: 6px 5px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #19b8a9;
}

.social-link .fa {
    
}


.header-acc {
    /*flex-basis: 12%;*/
    white-space: nowrap;
    margin-left: 20px;
}

.header-acc__text {
    position: relative;
    color: #fff;
    padding-left: 30px;
}
.header-acc__text::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 18px;
    background: url(/src/svg/acc.svg);
    background-repeat: no-repeat;
    background-position: center;
    left: 0px;
    top: 0px;
}


.header-search {
	max-width: 200px;
}
.header-search .navbar-form {
    border-top: none;
    border-bottom: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.header-search .navbar-form .form-control {
	width: 100%;
	box-sizing: border-box;
}


.header-blind {
    background: #AEDC6B;
    display: flex;
    height: 82px;
    width: 82px;
    /*flex-basis: 4%;*/
    margin-left: 20px;
}
.header-blind:hover {
    background: #bceb78;
}

.header-blind__link {
    font-size: 0;
    background: url(/src/svg/blind.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    padding: 30px 41px;
}

/*BANNER*/

.banner {
    background: #F2F2F2;
	margin-bottom: 40px;
}

.banner-container {
    display: flex;
}


.banner-text {
    flex-basis: 45%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 38px 30px 38px;
    margin-left: 250px;
}

.banner-text_title {
    font-size: 24px;
    line-height: 32px;
    color: #2BA8CA;
}

.banner-text__date {
    font-size: 24px;
    line-height: 32px;
}

.banner-text__button {
    
}

.banner-text__button-link {
    display: inline-block;
    font-size: 12px;
    background: #9CD116;
    border-radius: 25px;
    color: #fff;
    padding: 6px 35px;
}


.banner-img {
    flex-basis: 55%;
    box-sizing: border-box;
}

.banner-img__item {
    height: 100%;
    object-fit: cover;
}

/*DIRECTIONS*/

.directions {
    
}

.directions-container {
    display: flex;
}

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

.directions-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*flex-basis: 30%;*/
	width: calc((100% - 40px)/3);
    height: 375px;
    border: 1px solid #D5D4D4;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 3%);
    padding: 35px 25px 25px;
    margin-bottom: 22px;
}

.directions-img {
    box-sizing: border-box;
    display: flex;
    width: 171px;
    height: 181px;
    box-shadow: 0px 0px 9px rgb(0 0 0 / 10%);
    border-radius: 15px;
    padding: 24px;
}

.directions-img img {
    object-fit: contain;
}

.directions-title {
    text-align: center;
	max-width: 180px;
    margin-top: 25px;
}

.directions-title__link {
    
}
.directions-title__link:hover {
    text-decoration: underline;
}

/*INFO*/

.info-list {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}

.director {
    display: flex;
    border: 1px solid #D5D4D4;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 3%);
    height: 375px;
    box-sizing: border-box;
    padding: 30px;
    margin-bottom: 22px;
}

.director-info {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
}

.director-title {
    font-size: 14px;
}

.director-title__sub {
	font-size: 16px;
    font-weight: bold;
    color: #105880;
	margin-top: 10px;
}

.director-text {
	font-size: 14px;
	margin-top: 10px;
}

.director-button {
	display: flex;
    align-self: flex-end;
    max-height: 34px;
    margin-top: auto;
}

.director-button__link {
    font-size: 12px;
    background: #9CD116;
    border-radius: 25px;
    color: #fff;
    white-space: nowrap;
    padding: 6px 12px;
}

.director-img {
    flex-basis: 50%;
    margin-left: 20px;
}
.director-img img {
    height: 100%;
	min-width: 182px;
    object-fit: cover;
}


.anons {
    display: flex;
    flex-direction: column;
    border: 1px solid #D5D4D4;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 3%);
    height: 375px;
    box-sizing: border-box;
    padding: 30px;
}

.anons-info {

}

.anons-title {
    font-weight: bold;
    color: #105880;
}

.anons-text {
    margin-top: 16px;
}

.anons-img {
	display: flex;
	overflow: hidden;
    margin-top: 13px;
}

.anons-img img {
    height: 100%;
    object-fit: cover;
}

/*ITEM*/

/*.item {
    max-width: 584px;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    border: 1px solid black;
    padding: 25px;
}

.item-info {
    margin-left: 25px;
    flex-basis: 50%;
}

.item-date {
    margin-bottom: 10px;
}

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

.item-anons {
    margin-bottom: 10px;
}

.item-button {
    
}

.item-img {
    display: flex;
    overflow: hidden;
}

.item-img img {
    object-fit: contain;
}*/

/*SLIDER*/

.slider {
    background: #19b8a9;
    margin-top: 50px;
}

.slider-container {
	display: flex;
    flex-direction: column;
    max-width: 1400px;
    padding: 42px 0;
    margin: 0 auto;
}


.slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 auto;
}

.slider-head__title {
    color: #fff;
    font-size: 34px;
    line-height: 40px;
    margin: 0;
}

.slider-head__more {
    color: #fff;
    text-decoration: underline;
}
.slider-head__more:hover,
.slider-head__more:active,
.slider-head__more:focus {
    color: #9CD116;
}


.slider-name {
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 50px;
    margin: 0 auto;
    margin-top: 30px;
}

.slider-name__item {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    margin-right: 30px;
}
.slider-name__item:last-child {
    margin-right: 0;
}

.slider-name__item:hover,
.slider-name__item:active,
.slider-name__item:focus {
    color: #9CD116;
}


.slider-list {
    display: flex;
    margin-top: 30px;
}

.slider-list__item {
    padding: 10px 20px;
}

.slider-list__img {
	box-shadow: 1px 1px 8px -3px black;
}

/*ABOUT*/

.about {
    overflow: hidden;
    margin-top: 40px;
}

/*about new*/

.about-container {
	display: flex;
}

.about-left {
    width: 50%;
}

.about-left__title {
	font-size: 48px;
    line-height: 63px;
    color: #2BA8CA;
}

.about-left__text {
	font-size: 18px;
    line-height: 30px;
    margin-top: 30px;
}


.about-slider {
	margin-top: 60px;
}
.about-slider .slick-list {
    padding: 10px 2px 10px 2px;
    margin: 0px 85px;
}
.about-slider .slick-prev:before,
.about-slider .slick-next:before {
	color: #2ba8ca;
}

.about-slider .about-slider__item {
	background: #aedc6b;
	text-align: center;
    border-radius: 10px;
    box-shadow: 1px 1px 4px -1px black;
    overflow: hidden;
	height: 150px;
    width: 240px;
    padding: 25px 25px 30px;
	margin-left: 20px;
}
.about-slider .about-slider__item:first-child {
	margin-left: 0;
}
.about-slider__item:nth-child(2n) {
	background: #2ba8ca;
}

.about-slider__title {
    font-size: 32px;
    line-height: 34px;
    font-weight: bold;
    color: #2ba8ca;
}
.about-slider__item:nth-child(2n) .about-slider__title {
    font-size: 26px;
    line-height: 28px;
    font-weight: bold;
    color: #aedc6b;
}

.about-slider__desc {
	font-size: 18px;
    line-height: 20px;
    color: #fff;
	margin-top: 20px;
}


.about-list {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
.about-list__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 30px;
    margin-top: 20px;
}
.about-list__item:first-child {
    margin-top: 0;
}
.about-list__item:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 99;
    border: 5px solid #aedc6b;
    border-radius: 50%;
}
.about-list__title {
    font-size: 35px;
    line-height: 40px;
    color: #2ba8ca;
    font-weight: bold;
}
.about-list__desc {
    font-size: 18px;
    line-height: 40px;
    margin-left: 15px;
}


.about-right {
    width: calc((100% - 170px)/2);
    padding-top: 40px;
    margin-left: 40px;
}

.about-photo {

}

.about-photo__full {
    border-radius: 10px;
    overflow: hidden;
}
.about-photo__full .full-photo {
	display: flex;
}

.about-photo__previews {
    display: flex;
	margin-top: 20px;
}
.about-photo__preview {
	width: calc((100% - 40px)/3);
    border-radius: 10px;
    overflow: hidden;
    margin-left: 20px;
}
.about-photo__preview:first-child {
	margin-left: 0px;
}
.about-photo__preview:hover {
	cursor: pointer;
}
.about-photo__preview .mini-photo {
	display: flex;
}

.about-block__bottom {
	font-size: 20px;
    line-height: 22px;
    width: 75%;
    text-align: right;
    font-style: italic;
    margin-left: auto;
    margin-top: 20px;
}

/*about new*/

/*.about-container {
    display: flex;
    justify-content: space-between;
}


.about-block {
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
    padding-bottom: 80px;
}

.about-block__title {
    font-size: 48px;
    line-height: 63px;
    color: #2BA8CA;
}

.about-block__text {
    width: 88%;
    margin-top: 20px;
}

.about-block__bottom {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    width: 57%;
    margin-top: 40px
}
.about-block__bottom:before {
    position: absolute;
    content: "";
    width: 32px;
    height: 3px;
    background: #5f5f5f;
    top: -20px;
}


.about-img {
    align-self: flex-end;
    position: relative;
    flex-basis: 55%;
}

.about-img__picture {
    position: absolute;
    bottom: 0;
    left: calc(100% / 2 - 200px);
    max-height: 530px;
    width: auto;
    z-index: 2;
}


.about-info {
    position: absolute;
    bottom: 0;
    left: -22%;
    z-index: 3;
}

.about-info__list {
    display: flex;
}

.about-info__item {
    display: flex;
    flex-direction: column;
    width: 170px;
    text-align: center;
    background: #fff;
    padding: 20px 0 21px 0;
}
.about-info__item:first-child {
    background: #D1D4D9;
}

.about-info__number {
    font-size: 48px;
    line-height: 63px;
}

.about-info__text {
    margin-top: 12px;
}

.about__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% + 50%);
    height: 800px;
    background: #d1d4d9;
    z-index: 1;
}*/

/*
.about-img {
    position: absolute;
    background: url(/src/img/about.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-position-x: -20px;
    width: 55%;
    height: 100%;
    right: 0px;
    bottom: 0px;
}
*/

/*NEWS*/

.news {
    margin-top: 40px;
}

.news .h2 {
    margin: 0;
}

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

.news-item {
    box-sizing: border-box;
    flex-basis: 30%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    border: 1px solid #D5D4D4;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 3%);
    padding: 22px;
    margin-top: 40px;
}

.news-info {
    
}

.news-date {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 18px;
    line-height: 24px;
    color: #9CD116;
    margin-bottom: 10px;
}

.news-title__lik {
    color: #9CD116;
}
.news-title__lik:hover {
    color: #36adcd;
}

.news-anons {
    font-size: 14px;
}

.news-img {
    
}


.news-item.-news-big {
    flex-basis: 65%;
    flex-direction: row;
}

.-news-big .news-info {
    flex-basis: 45%;
    padding-left: 40px;
}

.-news-big .news-img {
    flex-basis: 55%;
}

.-news-big .news-img img {
    height: 100%;
    object-fit: cover;
}


.news-more {
    display: flex;
    margin-top: 40px;
}

.news-more__link {
    font-size: 14px;
    line-height: 18px;
    background: #9CD116;
    border-radius: 25px;
    color: #fff;
    padding: 6px 12px;
}


/*FOOTER*/

.footer {
    /*margin-top: 40px;*/
}
.footer__bg {
    background: #19b8a9;
}

.footer-container {
    display: flex;
    padding: 40px 0;
}

.footer-col {
    display: flex;
    flex-basis: 33%;
}


.footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo__img {
    max-width: 330px;
}

.footer-logo__list {
    display: flex;
    flex-direction: column;
}

.footer-logo__item {
    color: #fff;
    margin-top: 10px;
}

.footer-logo__item.-font-gray {
    color: #b9b8bf;
    font-size: 12px;
    line-height: 14px;
    max-width: 330px;
}

/*footer-menu*/

.footer-menu .main-menu {
	flex-direction: column;
    align-items: flex-start;
}

.footer-menu .main-menu-item {
    margin-top: 20px;
}
.footer-menu .main-menu-item:first-child {
    margin-top: 0;
}

.footer-menu .main-menu-item__link {
    color: #fff;
    text-decoration: none;
	padding: 0;
}
.footer-menu .main-menu-item__link:hover,
.footer-menu .main-menu-item__link:active,
.footer-menu .main-menu-item__link:focus {
    color: #AEDC6B;
}

/*footer-menu*/

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-info__text {
    max-width: 200px;
    color: #fff;
}

/*event*/

.news-detail-event {
	display: flex;
    flex-direction: column;
}

.detail-event-img .detail_picture {
	max-width: 400px;
}

.detail-event-text {
	margin-top: 30px;
}


.news-item.list-detail-event {
	flex-direction: column;
}

.list-event-text {
	display: flex;
    flex-direction: column;
    margin-top: 20px;
}

/*вакансии*/

.vacancy-block {
	padding: 0 20px 40px 20px;
    margin-top: 40px;
}

.vacancy-tabs {
    box-shadow: 0 5px 20px 0 rgb(0 51 51 / 15%);
    border-radius: 10px;
    margin-top: 20px;
}

.vacancy-item {
    position: relative;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    padding: 20px 40px;
}
.vacancy-item:hover {
    border-radius: 10px;
    box-shadow: 5px 5px 12px -8px black;
}

.vacancy-item.active {
    color: #fff;
    background: #19b8a9;
    transition-property: transform;
    transition-duration: 3s;
}
.vacancy-item.active:hover {
    border-radius: 10px 10px 0 0;
    box-shadow: none;
}

.vacancy-item:after {
    content: "";
    position: absolute;
    right: 32px;
    top: 25px;
    height: 10px;
    width: 10px;
    border-top: 2px solid #2ba8ca;
    border-left: 2px solid #2ba8ca;
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
    transition-property: transform;
    transition-duration: 0.5s;
}
.vacancy-item.active:after {
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    transition-property: transform;
    transition-duration: 0.5s;
    
}

.vacancy-tabs-content {
    display: none;
}
.vacancy-item.active+.vacancy-tabs-content {
    display: block;
    padding: 28px 40px;
}

/*вакансии*/

/*партнеры*/

.partners-list {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-around;
	padding-bottom: 40px;
}
.partners-list-item {
	width: 23.2%;
    box-shadow: 0 5px 20px 0 rgb(0 51 51 / 15%);
	padding: 15px;
	margin: 10px;
	margin-bottom: 20px;
}
.partners-list-item:hover {
    box-shadow: 0px 5px 20px -8px black;
}
.partners-list-img {
    
}
.partners-list-name {
	margin-top: 10px;
}
.partners-list-link {
    border-top: 1px solid #c1c1c1;
    padding-top: 10px;
	margin-top: 10px;
}
.partners-list-docs {
    margin-top: 10px;
}

/*партнеры*/

/*достижения*/

.dostizheniya {
    
}
.dostizheniya-items {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
.dostizheniya-item {
    width: calc((100% - 120px)/4);
	margin: 15px;
}
.dostizheniya-item__img {
    
}
.dostizheniya-item__title {
    margin-top: 15px;
}
.dostizheniya-item__desc {
    margin-top: 15px;
}

/*достижения*/

/*важные ссылки*/

.links-detail-block {
    display: flex;
	justify-content: space-between;
}
.links-detail__img {
    width: 100%;
    max-width: 400px;
    flex-basis: 35%;
    padding-right: 30px;
}
.detail_picture {
	border-radius: 5px;
}
.links-detail__anons {
    flex-basis: 65%;
    padding-top: 20px;
}
.links-detail__desc {
    padding-top: 15px;
    margin-top: 15px;
}
.links-docs {
	margin-top: 20px;
}
.links-docs__item {
	position: relative;
    padding: 15px 0 15px 50px;
}
.links-docs__link {

}
.links-docs .links-docs__item a[href$=".pdf"]::before {
	content: "";
    position: absolute;
    display: block;
    width: 36px;
    height: 35px;
    background: url(/src/img/docs_types.png) 0px 0px no-repeat;
    top: 7px;
    left: 0px;
}
.links-docs .links-docs__item a[href$=".xlsx"]::before,
.links-docs .links-docs__item a[href$=".xls"]::before,
.links-docs .links-docs__item a[href$=".csv"]::before {
    content: "";
    position: absolute;
    display: block;
    width: 36px;
    height: 35px;
    background: url(/src/img/docs_types.png) 0px -415px no-repeat;
    top: 7px;
    left: 0px;
}

.links-docs .links-docs__item a[href$=".doc"]::before,
.links-docs .links-docs__item a[href$=".docx"]::before,
.links-docs .links-docs__item a[href$=".txt"]::before {
    content: "";
    position: absolute;
    display: block;
    width: 36px;
    height: 35px;
    background: url(/src/img/docs_types.png) 0px -60px no-repeat;
    top: 7px;
    left: 0px;
}

/*новость детально*/

.news-detail-block {
    display: flex;
	justify-content: space-between;
}
.news-detail__img {
	width: 100%;
    max-width: 400px;
    flex-basis: 35%;
    padding-right: 30px;
}
.news-detail__img img {

}
.news-detail__anons {
    flex-basis: 65%;
    padding-top: 20px;
}

/*новость детально*/

/*отделы о центре*/

.centers {
    padding: 0 10px;
}
.centers-tabs {
    
}
.centers-pills {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
.centers-pills__pill {
    list-style: none;
    margin: 5px 15px 15px 0;
}
.centers-pills__link {
	color: #333333;
}
.centers-pills__pill.active a {
	color: #2ba8ca;
	border-bottom: 1px solid #2ba8ca;
}

.centers-content {

}
.employee-items {
	display: flex;
    flex-wrap: wrap;
}
.employee-item {
	display: flex;
    width: calc((100% - 40px)/2);
    margin: 20px 20px 0 0;
}
.employee-item__left {

}
.employee-item__avatar {
	width: 180px;
    border-radius: 5px;
    box-shadow: 2px 2px 6px -2px #7d7d7d;
}
.employee-item__left + .employee-item__desc {
	margin-left: 20px;
}
.employee-item__name {
    font-size: 24px;
    line-height: 26px;
    font-weight: bold;
}
.employee-item__biography {
	margin-top: 10px;
}
.employee-item__email {
	font-weight: bold;
	margin-top: 5px;
}
.employee-item__email span {
    font-weight: normal;
}
.employee-item__adress {
	font-weight: bold;
	margin-top: 5px;
}
.employee-item__adress span {
    font-weight: normal;
}

/*отделы о центре*/

/*блок с видео*/

.reviews-video {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	padding-bottom: 20px;
	margin-top: 20px;
}

.reviews-video-item {
    flex-basis: 48%;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
}

.reviews-video-item iframe {
    width: 100%;
}

/*блок с видео*/

/*блок табов*/

.stage-block {
	margin-top: 15px;
}

.stage-items {
	display: flex;
    padding: 0;
}

.stage-item {
    padding: 10px 20px;
    border-bottom: 2px solid #2ba8ca;
    color: #373737;
    background: whitesmoke;
    font-weight: bold;
	width: calc(100%/7);
    margin: 0;
}
.stage-item::marker {
	content: none;
}
.stage-item.active {
    color: #fff;
    background: #19b8a9;
    border: none;
}
.stage-item:hover {
    cursor: pointer;
    background: #59c4e1;
    color: #fff;
}

.stage-content {
    display: none;
}
.stage-content.active {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 0 0;
}

.stage-content .stage-content__info {
	width: calc((100% - 30px)/4);
	margin-left: 10px;
}
.stage-content .stage-content__info:first-child {
	margin-left: 0;
}

/*блок табов*/

/*биография*/

.bio-block {
	display: flex;
}
.bio-block-left {
	flex-basis: 40%;
}
.bio-block-right {
	flex-basis: 60%;
	margin-left: 40px;
}
.bio-text {

}
.bio-gallery {
	display: flex;
}

/*биография*/

/*хлебные крошки*/

.breadcrumbs-wrapper {
  margin: 20px 0 40px 0;
}
.breadcrumb {
  padding-left: 0;
}

ol.breadcrumb { 
    margin: 0;
    padding: 0;
}
ol.breadcrumb li {
    display: inline;
    line-height: 20px;
    margin: 0;
    padding: 0 20px;
    position: relative;
    font-size: 13px;
    font-family: Verdana, sans-serif;      
}
ol.breadcrumb li:first-child {
	padding-left: 0;
}
ol.breadcrumb li:before,
ol.breadcrumb li:after {
    border-right: 3px solid #2ba8ca;
    content: '';
    display: block;
    height: 35%;
    position: absolute;
    left: 0;
    right: 0;
    top: 3px;
    z-index: -1;
    transform: skewX(45deg);   
}
ol.breadcrumb li:after {
    bottom: 1px;
    top: auto;
    transform: skewX(-45deg);
}
ol.breadcrumb li:last-of-type:before, 
ol.breadcrumb li:last-of-type:after { 
    display: none; 
}
ol.breadcrumb li a { 
    color: #333333;
    text-decoration: none;
    transition: all 0.3s;
}
ol.breadcrumb li a:hover { 
    color: #2ba8ca;
}

/*хлебные крошки*/

/*видео на главной*/

.detail__video {
	overflow: hidden;
    position: relative;
    max-width: 1360px;
    padding-bottom: 41%;
    margin: 0 auto;
    /*padding-bottom: 56.25%;*/
}

.detail__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
}

/*видео на главной*/