html {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

body {
    background: #effafd;
    font-family: inherit;
    height: inherit;
    font-size: 14px;
}

.wrapper {
    font-family: "Montserrat", sans-serif;
    max-width: 1170px;
}

.content {
    font-family: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input::-ms-clear {
    display: none;
}

::-webkit-input-placeholder {
    color: #838383;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

::-moz-placeholder {
    color: #838383;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

:-moz-placeholder {
    color: #838383;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

:-ms-input-placeholder {
    color: #838383;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

:focus::-webkit-input-placeholder {
    color: transparent;
}

:focus::-moz-placeholder {
    color: transparent;
}

:focus:-moz-placeholder {
    color: transparent;
}

:focus:-ms-input-placeholder {
    color: transparent;
}

::-moz-selection {
    color: #fff;
    background: #006ae8;
}

::selection {
    color: #fff;
    background: #006ae8;
}

/* .header {
    background: #effafd;
    position: relative;
    z-index: 10;
}

.header__content {
    position: relative;
    padding: 5px 30px 8px;
    max-width: 1170px;
    margin: 0 auto;
    background: #004479;
    padding-bottom: 0;
}

.header__content:after {
    content: "";
    display: block;
    height: 10px;
    background: #004479;
    margin-left: -30px;
    margin-right: -30px;
}

.header__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__logo {}

.header__logo__img {
    display: inline-block;
    vertical-align: middle;
}

.header__logo__name {
    display: inline-block;
    vertical-align: middle;
    margin-left: 28px;
}

.header__logo__head {
    font-size: 171%;
    font-weight: 600;
    color: #fff;
}

.header__logo__text {
    margin-top: 5px;
    font-size: 94%;
    font-weight: 600;
    color: #fff;
    opacity: 0.5;
}

html.is-active .header__logo__text {
    opacity: 1;
}

.header__logo__text--first {
    margin-top: 20px;
    font-size: 120%;
}

.header__tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 0 0 42%;
}

.header__tools--mobile {
    display: none;
}

.header__tool {
    position: relative;
    max-width: 200px;
    cursor: pointer;
}

.header__tool:not(:first-child) {
    margin-left: 85px;
    margin-left: 25px;
}

.header__tool__addition {
    position: absolute;
    bottom: -40px;
    left: 0;
    display: none;
    justify-content: center;
    width: 100%;
}

html.is-active .header__tool__addition {
    display: flex;
} */

.js-lightBoxGallery_preview {
    height: 180px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.media__album-item.half li {
    width: 50%;
}

@media only screen and (max-width: 450px) {

    .media__album-item.half li {
        width: 100%;
    }
}

/* .header__body__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: inherit;
    -webkit-transition: all 0.75s linear 0.1s;
    -o-transition: all 0.75s linear 0.1s;
    transition: all 0.75s linear 0.1s;
}

.header__controls {
    display: none;
} */

blockquote {
    margin-bottom: 30px;
}

.header__socials {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 120px;
}

.burger {
    width: 35px;
    height: 30px;
    padding: 5px;
    border: none;
    background: #004479;
    outline: none;
}

.burger__content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.burger__line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2.5px;
    opacity: 1;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

.burger__line--top {
    top: 0;
}

.burger.is-active .burger__line--top {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 40%;
}

.burger__line--middle {
    top: 8px;
    width: 70%;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.burger.is-active .burger__line--middle {
    left: 100%;
    opacity: 0;
    -webkit-transition: left 0.5s linear 0.1s, opacity 0.3s linear 0.1s;
    -o-transition: left 0.5s linear 0.1s, opacity 0.3s linear 0.1s;
    transition: left 0.5s linear 0.1s, opacity 0.3s linear 0.1s;
}

.burger__line--bottom {
    top: 16px;
}

.burger.is-active .burger__line--bottom {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 40%;
}

.logo {}

.logo__link {
    display: block;
    text-decoration: none;
}

.logo__link:focus,
.logo__link:active {
    text-decoration: none;
}

.logo__img {
    width: 65px;
    height: 90px;
}

.tool {
    cursor: pointer;
}

.tool--textSize {
    padding: 0.5px 1.5px;
    margin: 0 5px;
    border: 2px solid #fff;
    transition: all 0.175s linear;
}

.tool--textSize.tool.is-disabled {
    opacity: 0.5;
}

.tool__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 10px;
    text-decoration: none;
    outline: none;
    /* -webkit-box-shadow: 0 0 0 rgba(29, 161, 242, 0); */
    /* box-shadow: 0 0 0 rgba(29, 161, 242, 0); */
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: box-shadow;
    font-weight: 600;
    color: #fff;
}

a.tool__link {
    display: flex;
    align-items: center;
}

html.is-active .tool__link:focus,
html.is-active .tool__link:hover {
    color: #fff;
}

.tool__link--textSize {
    display: none;
    margin: 5px 10px;
    border: 2px solid #fff;
}

.tool.is-disabled {
    pointer-events: none;
}

.tool__link:focus,
.tool__link:active {
    /* -webkit-box-shadow: 0 0 15px rgba(255, 172, 0, 0.9); */
    /* box-shadow: 0 0 15px rgba(255, 172, 0, 0.9); */
    text-decoration: none;
}

.tool__icon {
    display: inline-block;
    /*width: 47px;
    height: 30px;*/
    min-width: 40px;
    height: 30px;
    opacity: 0.4;
    fill: #fff;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: opacity;
    background-repeat: no-repeat;
    background-position: center;
}
.tool__icon-log-out {
    min-width: 30px;
    background-size: 80%;
    background-position: left;
}
.tool__link:focus .tool__icon,
.tool__link:active .tool__icon,
.tool__link:hover .tool__icon {
    fill: rgb(255, 172, 0);
    opacity: 0.8;
}

.tool__text {
    margin-left: 10px;
    width: 130px;
    font-size: 94%;
    font-weight: 400;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    will-change: color;
}

.tool__link:active .tool__text,
.tool__link:focus .tool__text,
.tool__link:hover .tool__text {
    color: rgba(255, 172, 0, 0.8);
}

html.is-active .tool__link:active .tool__text,
html.is-active .tool__link:focus .tool__text,
html.is-active .tool__link:hover .tool__text {
    color: #fff;
}


.mainNav__list {
    /*position: relative;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mainNav__sublist {
    position: absolute;
    top: 100%;
    z-index: 5;
    max-height: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    background: #004479;
    transition: all 0.4s ease-out;
}

@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {

    /* IE10+ specific styles go here */
    .mainNav__sublist {
        height: 0;
        max-height: none;
        right: 0;
        transition: none;
    }

}

@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {

    /* IE10+ specific styles go here */
    .mainNav__item.active .mainNav__sublist {
        height: auto;
    }


}

.mainNav__sublist.is-active {
    max-height: 10000px;
    opacity: 1;
    background: #1d2c42;
    transition: max-height 2s cubic-bezier(0, 0, 0.19, 1.12),
        opacity 0.3s cubic-bezier(0, 0, 0.19, 1.12),
        background 0.3s cubic-bezier(0, 0, 0.19, 1.12),
        z-index 0.3s cubic-bezier(0, 0, 0.19, 1.12);

    transition: height 0.6s cubic-bezier(0, 0, 0.46, 0.99), background 0.7s cubic-bezier(0, 0, 0.46, 0.99), z-index 0.7s cubic-bezier(0, 0, 0.46, 0.99);
}

.mainNav__list--sublist {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px 50px 30px;
    width: 100%;
}


.mainNav__item {
    cursor: pointer;
}

.mainNav__item:nth-child(1) {
    margin-left: 0;
}

.mainNav__item--search {
    margin-left: 60px;
}

.mainNav__item--sublist {
    display: inline-block;
    vertical-align: top;
    width: 30%;
}

.mainNav__button {
    display: inline-block;
    padding: 15px 8px;
    background: #004479;
    border: 1px solid #004479;
    outline: none;
    font-size: 114%;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.7s cubic-bezier(0, 0, 0.46, 0.99);
    -o-transition: all 0.7s cubic-bezier(0, 0, 0.46, 0.99);
    transition: all 0.7s cubic-bezier(0, 0, 0.46, 0.99);
    will-change: color;
}

.mainNav__button:focus {
    color: #fff;
    text-decoration: none;
}

.mainNav__button:hover {
    color: rgba(255, 172, 0, 1);
}

.mainNav__button.is-active {
    color: rgba(255, 172, 0, 1);
    background: #1d2c42;
    border: 1px solid #1d2c42;
}

.mainNav__linkWrap {
    display: block;
    max-width: 90%;
    margin: 20px 0 0;
    font-size: 114%;
    font-weight: 700;
    line-height: 1.4;
}

.mainNav__link {
    font-size: 105%;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: color;
}

.mainNav__link:focus,
.mainNav__link:active {
    color: #ffac00;
    text-decoration: none;
}

.mainNav__link:hover {
    color: rgba(255, 172, 0, 1);
}

.search {
    cursor: pointer;
}

.search__content {
    position: relative;
}

.search__show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 10px;
    border: none;
    background: inherit;
    outline: none;
    cursor: pointer;
}

.search__icon {
    width: 25px;
    height: 25px;
    opacity: 0.6;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

.search:hover .search__icon {
    opacity: 1;
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.search__text {
    margin-left: 10px;
    font-size: 94%;
    font-weight: 700;
    color: #fff;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

.search:hover .search__text {
    color: #ffac00;
}

html.is-active .search:hover .search__text {
    color: #fff;
}

.search__controls {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 55px;
    margin-top: -22.5px;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.75s cubic-bezier(0, 0, 0.58, 1.05);
    -o-transition: all 0.75s cubic-bezier(0, 0, 0.58, 1.05);
    transition: all 0.75s cubic-bezier(0, 0, 0.58, 1.05);
}

.search__field {
    position: relative;
    background: #fff;
}

.search__message {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    width: 0;
    padding: 15px 0 20px;
    height: 100%;
    font-size: 114%;
    color: red;
    overflow: hidden;
    background: blue;
    transition: all 0.3s linear;
}

.search__message.is-active {
    padding: 15px 51.5px 20px 20px;
    width: 100%;
}

.search__input {
    padding: 15px 51.5px 15px 20px;
    width: 100%;
    font-size: 114%;
    border: none;
    color: #838383;
}

.search__submit {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    padding: 0;
    width: 50px;
    height: 100%;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}

.search__button__icon {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    fill: rgba(0, 68, 121, 1);
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: fill;
}

.search__submit:hover .search__button__icon {
    fill: rgba(255, 138, 0, 1);
}

.social {}

.social__link {
    display: block;
    text-decoration: none;
}

.social__link:focus,
.social__link:active {
    text-decoration: none;
}

.social__img {
    width: 27px;
    height: 27px;
    opacity: 0.5;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: opacity;
}

.social__link:hover .social__img,
.social__link:focus .social__img,
.social__link:active .social__img {
    opacity: 1;
}

.breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background: #effafd;
    transition: .3s ease all;
}

.breadcrumb__content {
    max-width: 1170px;
    padding: 7px 15px;
    margin: 0 auto;
    background: #fff;
    transition: all 0.2s linear;
}

.breadcrumb.is-active .breadcrumb__content {
    background: #004479;
}

html.is-active .breadcrumb.is-active .breadcrumb__content {
    background: #000;
}

.breadcrumb__item {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb__item.active {
    /*color: #004479;*/
    max-width: 100%;
    font-size: 94%;
}

html.is-active .breadcrumb__item.active {
    color: #000;
}

.breadcrumb.is-active .breadcrumb__item.active {
    color: #ffac00;
}

html.is-active .breadcrumb.is-active .breadcrumb__item.active {
    color: #fff;
}

.breadcrumb__item:not(:last-child):after {
    content: "/\00a0";
    padding: 0 5px;
    color: #45484a;
}

.breadcrumb.is-active .breadcrumb__item:not(:last-child):after {
    color: #fff;
}

.breadcrumb__link {
    font-size: 94%;
    color: #45484a;
    transition: 0.175s all ease;
}

.breadcrumb.is-active .breadcrumb__link {
    color: #fff;
}

.breadcrumb__link:active,
.breadcrumb__link:focus,
.breadcrumb__link:visited {
    color: #45484a;
}

.breadcrumb.is-active .breadcrumb__link:active,
.breadcrumb.is-active .breadcrumb__link:focus,
.breadcrumb.is-active .breadcrumb__link:visited {
    color: #fff;
}

.breadcrumb__link:hover {
    color: #ffac00;
}

.breadcrumb.is-active .breadcrumb__link:hover {
    color: #ff8a00;
}

.breadcrumb.is-active {
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    position: fixed;
}






.mainBoard {}

.mainBoard__content {
    position: relative;
    padding: 10px 30px 20px;
    max-width: 1170px;
    margin: 0 auto;
    background: #fff;
}

.mainBoard__content:after,
.mainBoard__content:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 7px;
}

.mainBoard__header {
    background: #effafd;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
}

.mainBoard__header:after,
.mainBoard__header:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    height: 65px;
    width: 30px;
    background: #fff;
}

.mainBoard__header:after {
    left: 0;
    top: 20px;
}

.mainBoard__header:before {
    right: 0;
    top: 20px;
}

.mainBoard__header {
    width: 100%;
    background: #ffffff;
}

.mainBoard__select {
    display: none;
    position: relative;
}

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

.timeline__tab-npa .slick-track a.active {
    background-color: #ffffff;
}

.mainBoard__control {
    padding: 15px 20px;
    border: none;
    border-bottom: 3px solid rgba(0, 68, 121, 0);
    background: none;
    font-size: 128%;
    font-weight: 600;
    color: #004479;
    outline: none;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

.mainBoard__control:focus,
.mainBoard__control:active,
.mainBoard__control:hover {
    color: #000;
    border-bottom: 3px solid rgba(0, 68, 121, 1);
}

.mainBoard__control {
    border-bottom: 3px solid transparent;
}

.mainBoard__control.is-active {
    background-color: #ffffff;
    border-bottom: 3px solid rgba(0, 68, 121, 1);
}

html.is-active .mainBoard__control {
    color: #000;
}

html.is-active .previewOnTab__date {
    color: #000;
}

html.is-active .new_label_event {
    background-color: #000000;
}

html.is-active .button-calendar {
    background-color: #000000;
}

html.is-active .mainBoard__control:focus,
html.is-active .mainBoard__control:active,
html.is-active .mainBoard__control:hover {
    color: #000;
    border-bottom: 3px solid #000;
}

html.is-active .mainBoard__control.is-active {
    border-bottom: 3px solid #000;
    color: #000000;
}

.js-main-slider {
    padding: 0;
    padding-top: 15px;
    background-color: #ffffff;
}
.js-main-slider .timeline-control {
    transform: translate(0,0);
    top: 40px;
    right: 0px;
    margin-top: -20px !important;
}
.js-main-slider .slick-track .slick-slide:first-child a {
    border-bottom: none;
}

.timeline__tab-npa .slick-track a {
    margin: 0;
    margin-right: 10px;
    border: none;
}

.timeline__tab .timeline__tab-item.slick-slide a {
    border-bottom: 3px solid transparent;
}
.timeline__tab .timeline__tab-item.slick-slide:hover a {
    border-bottom: 3px solid rgba(0, 68, 121, 1) !important;
}
.timeline__tab .timeline__tab-item.slick-slide.slick-active.active a {
    background-color: #ffffff;
    border-bottom: 3px solid rgba(0, 68, 121, 1);
    color: #000000;
}
.timeline__tab .timeline__tab-item.slick-slide.slick-active.active:hover a {
    border-bottom: 3px solid rgba(0, 68, 121, 1) !important;
}
.timeline__tab  .timeline__tab-item a {
    border-bottom: 3px solid transparent;
    color: #004479;
}

.timeline__tab .timeline__tab-item a:hover {
    border-bottom: 3px solid rgba(0, 68, 121, 1);
    color: #000000;
}


.mainBoard__body {
    margin-top: 20px;
}

.mainBoard__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mainBoard__item {
    width: 30%;
    margin-top: 30px;
}

.mainBoard__item:nth-child(3n + 2) {
    margin-left: 3.5%;
    margin-right: 3.5%;
}

.mainBoard__footer {
    padding: 2rem 0 2rem;
    border-bottom: 1px solid #e5e5e5;
    text-align: right;
}

.mainBoard__showMore {
    display: inline-block;
}

.showMore {
    display: block;
    border: none;
    background: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

.showMore:active,
showMore:focus {
    text-decoration: none;
}

.showMore__text {
    font-size: 94%;
    font-weight: 600;
    color: #004479;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: color;
}

.showMore:hover .showMore__text {
    color: #ffac00;
}

html.is-active .showMore__text {
    color: #000;
}

.showMore__icon {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    margin-left: 10px;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.showMore__icon--down {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.showMore.is-active .showMore__icon--down {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.showMore__icon__round {
    fill: #c9e1f0;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: fill;
}

.showMore:hover .showMore__icon__round {
    fill: #ffac00;
}

html.is-active .showMore__icon__round {
    fill: #000;
}

html.is-active .showMore:hover .showMore__icon__round {
    fill: #000;
}

.showMore__icon__arrow {
    fill: #004479;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: fill;
}

.showMore:hover .showMore__icon__arrow {
    fill: #ffac00;
}

html.is-active .showMore__icon__arrow {
    fill: #000;
}

html.is-active .showMore:hover .showMore__icon__arrow {
    fill: #000;
}

.previewOnTab {
    position: relative;
}

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

.previewOnTab__left {
    display: none;
    margin-right: 15px;
}

.previewOnTab.is-active .previewOnTab__right {
    /* margin-left: 0; */
    display: block;
}

.previewOnTab.is-active .previewOnTab__left {
    position: relative;
    display: block;
}


.logo__link,
.previewOnTab__img,
.services__part--img {
    position: relative;
    display: block;
}


.previewOnTab__img {
    width: 95px;
    height: 95px;
}

.previewOnTab__name {
    font-size: 94%;
    line-height: 1.25em;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

.previewOnTab__name:focus,
.previewOnTab__name:active {
    text-decoration: none;
}

.previewOnTab__name:hover {
    color: #ffac00;
}

html.is-active .previewOnTab__name {
    color: #000;
}

.previewOnTab__date {
    /* margin-top: 5px;
    font-size: 86%;
    font-weight: 600;
    color: #8f8f8f; */
    margin-top: 1em;
    font-size: 100%;
    font-weight: 600;
    color: #598ba5;
}

.previewOnTab__place {
    margin-top: 4px;
    font-size: 86%;
    font-weight: 600;
    position: relative;
}

.previewOnTab__place .icn {
    height: 20px;
    width: 24px;
    position: absolute;
    top: -1px;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxwYXRoIGQ9Ik0yNTYsMEMxNTYuNzQ4LDAsNzYsODAuNzQ4LDc2LDE4MGMwLDMzLjUzNCw5LjI4OSw2Ni4yNiwyNi44NjksOTQuNjUybDE0Mi44ODUsMjMwLjI1Nw0KCQkJYzIuNzM3LDQuNDExLDcuNTU5LDcuMDkxLDEyLjc0NSw3LjA5MWMwLjA0LDAsMC4wNzksMCwwLjExOSwwYzUuMjMxLTAuMDQxLDEwLjA2My0yLjgwNCwxMi43NS03LjI5Mkw0MTAuNjExLDI3Mi4yMg0KCQkJQzQyNy4yMjEsMjQ0LjQyOCw0MzYsMjEyLjUzOSw0MzYsMTgwQzQzNiw4MC43NDgsMzU1LjI1MiwwLDI1NiwweiBNMzg0Ljg2NiwyNTYuODE4TDI1OC4yNzIsNDY4LjE4NmwtMTI5LjkwNS0yMDkuMzQNCgkJCUMxMTMuNzM0LDIzNS4yMTQsMTA1LjgsMjA3Ljk1LDEwNS44LDE4MGMwLTgyLjcxLDY3LjQ5LTE1MC4yLDE1MC4yLTE1MC4yUzQwNi4xLDk3LjI5LDQwNi4xLDE4MA0KCQkJQzQwNi4xLDIwNy4xMjEsMzk4LjY4OSwyMzMuNjg4LDM4NC44NjYsMjU2LjgxOHoiLz4NCgk8L2c+DQo8L2c+DQo8Zz4NCgk8Zz4NCgkJPHBhdGggZD0iTTI1Niw5MGMtNDkuNjI2LDAtOTAsNDAuMzc0LTkwLDkwYzAsNDkuMzA5LDM5LjcxNyw5MCw5MCw5MGM1MC45MDMsMCw5MC00MS4yMzMsOTAtOTBDMzQ2LDEzMC4zNzQsMzA1LjYyNiw5MCwyNTYsOTB6DQoJCQkgTTI1NiwyNDAuMmMtMzMuMjU3LDAtNjAuMi0yNy4wMzMtNjAuMi02MC4yYzAtMzMuMDg0LDI3LjExNi02MC4yLDYwLjItNjAuMnM2MC4xLDI3LjExNiw2MC4xLDYwLjINCgkJCUMzMTYuMSwyMTIuNjgzLDI4OS43ODQsMjQwLjIsMjU2LDI0MC4yeiIvPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K') center no-repeat;
    background-size: contain;
}

.previewOnTab__place span {
    margin-left: 30px;
    font-size: 13px;
    line-height: 17px;
}

.previewOnTab__right.old_event .previewOnTab__place .icn {
    opacity: 0.2;
}

.previewOnTab__right.old_event .previewOnTab__name,
.previewOnTab__right.old_event .previewOnTab__place,
.previewOnTab__right.old_event .previewOnTab__date {
    color: #b0b0b0 !important;
}

.services {
    margin-top: 0;
    margin-bottom: 0;
}

.services__wrap {
    background: #effafd;
}

.services__content {
    position: relative;
    padding: 25px 20px 0;
    max-width: 1170px;
    margin: 0 auto;
    background: #fff;
    //overflow: hidden;
}

.services__content:after,
.services__content:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 7px;
}

.services__content:before {
    -webkit-box-shadow: -7px 0px 7px -7px rgba(0, 0, 0, 0.35) inset;
    box-shadow: -7px 0px 7px -7px rgba(0, 0, 0, 0.35) inset;
    left: -5.5px;
}

.services__content:after {
    -webkit-box-shadow: 7px 0 7px -7px rgba(0, 0, 0, 0.35) inset;
    box-shadow: 7px 0 7px -7px rgba(0, 0, 0, 0.35) inset;
    right: -5.5px;
}

.services__content .download-attach-link {
    display: flex;
    align-items: center;
}

.services__content .download-attach-link:after {
    margin-left: 5px;
    content: "";
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGcgZGF0YS1uYW1lPSLQqNCw0YAgMiI+PGcgZGF0YS1uYW1lPSJMYXllciAxMCIgZmlsbD0iIzJkNWNhNiI+PHBhdGggZD0iTTEyIDBhMTIgMTIgMCAxIDAgMTIgMTJBMTIgMTIgMCAwIDAgMTIgMHptMCAyMmExMCAxMCAwIDEgMSAxMC0xMCAxMCAxMCAwIDAgMS0xMCAxMHoiIG9wYWNpdHk9Ii40Ii8+PHBhdGggZD0iTTEyLjcxIDE0Ljk1bDQuMjQtNC4yNC0xLjQxLTEuNDJMMTMgMTEuODNWNmgtMnY1LjgzTDguNDYgOS4yOWwtMS40MSAxLjQyIDQuMjQgNC4yNC4wOC4wNUg3djJoMTB2LTJoLTQuMzd6Ii8+PC9nPjwvZz48L3N2Zz4=') center no-repeat;
    background-size: contain;
}

.services__header {
    padding: 30px 10px 20px;
}

.services__head {
    margin: 0;
    font-size: 171%;
    font-weight: 600;
    color: #000;
    line-height: 20px;
}

.services__head--center {
    text-align: center;
}

.services__body {}

.services__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    -webkit-transition: all 0.75s cubic-bezier(0, 0, 0.46, 0.99);
    -o-transition: all 0.75s cubic-bezier(0, 0, 0.46, 0.99);
    transition: all 0.75s cubic-bezier(0, 0, 0.46, 0.99);
}



.services__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 30%;
    min-height: auto;
    overflow: hidden;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    margin: 0;
    margin-bottom: 30px;
}

.services__item:nth-child(3n+2) {
    margin-left: 3.5%;
    margin-right: 3.5%;
}

.services__item .services__linkWrap a {
    margin-bottom: 5px;
}

.services__img {
    margin: 0;
    max-width: 50px;
    height: 60px;
}

.services__link {
    display: block;
    margin-top: 2.5px;
    border: none;
    font-size: 93%;
    font-family: "Montserrat", sans-serif;
    color: #004479;
    text-decoration: none;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

.services__link:focus,
.services__link:active {
    text-decoration: none;
}

.services__link:hover {
    color: #ff8a00;
    border: none;
}

html.is-active .services__link {
    color: #000;
}

.services__part--info {
    margin: 0 0 0 25px;
    text-align: left;
}

.services__previewImg {
    max-width: 300px;
}

.services__name {
    display: block;
    margin-bottom: 7.5px;
    border-bottom: none;
    font-size: 114%;
    font-weight: 600;
    color: #000;
    text-align: left;
    text-decoration: none;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

.services__item .services__name:focus,
.services__item .services__name:active {
    border-bottom: none;
    text-decoration: none;
}

.services__item .services__name:hover {
    border-bottom: none;
    color: #ff8a00;
    text-decoration: none;
}

.services__footer {
    padding: 35px 30px;
    text-align: right;
}

.services__showMore {
    display: inline-block;
}

.news {
    background: #effafd;
    max-width: 1170px;
    margin: 0 auto;
    background-color: #fff;
}

.message {
    max-width: 1170px;
    margin: 0 auto;
    background: #e0e9ed;
}

.message__content {
    position: relative;
    padding-top: 50px;
}

.message__content:after,
.message__content:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 7px;
}

.message__content:before {
    -webkit-box-shadow: -7px 0px 7px -7px rgba(0, 0, 0, 0.35) inset;
    box-shadow: -7px 0px 7px -7px rgba(0, 0, 0, 0.35) inset;
    left: -5.5px;
}

.message__content:after {
    -webkit-box-shadow: 7px 0 7px -7px rgba(0, 0, 0, 0.35) inset;
    box-shadow: 7px 0 7px -7px rgba(0, 0, 0, 0.35) inset;
    right: -5.5px;
}

.message--shadowDisabled .message__content:before,
.message--shadowDisabled .message__content:after {
    display: none;
}

.gov {}

.gov__top,
.gov__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gov__flag {
    width: 10px;
    height: 20px;
    margin-right: 10px;
}

.gov__flag--blue {
    background: #006ae8;
}

.gov__flag--yellow {
    background: #ffe349;
}

.gov__head {
    font-size: 128%;
    font-weight: 700;
    color: #fff;
}

.gov__text {
    display: inline-block;
    opacity: 0.6;
    font-size: 94%;
    color: #fff;
}

.persons__item {
    margin: 10px;
}

.person {
    position: relative;
    display: block;
    padding: 20px 0 0 0;
    width: 275px;
    height: 430px;
    /*height: 380px;*/
    border: 3px solid #fff;
    text-decoration: none;
    text-align: center;
    transition: all 0.175s linear;
}

.person:hover {
    border: 3px solid lightgrey;
}

.person__info {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    padding: 0 20px;
}

.person__previewImg {
    display: inline-block;
    max-width: 100%;
    max-height: 280px;
}

.person__position {
    margin: 12.5px 0 7.5px;
    font-size: 94%;
    color: #004479;
}

.person__name {
    font-size: 114%;
    font-weight: 600;
    color: #004479;
}

.footer {
    height: 523px;
    padding-top: 0;
    background: #effafd;
}

.footer__content {
    position: relative;
    padding: 0 30px;
    max-width: 1170px;
    background: #004479;
    margin: 0 auto;
}

.footer__content:after,
.footer__content:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 7px;
}

.footer__content:before {
    -webkit-box-shadow: -7px 0px 7px -7px rgba(0, 0, 0, 0.35) inset;
    box-shadow: -7px 0px 7px -7px rgba(0, 0, 0, 0.35) inset;
    left: -5.5px;
}

.footer__content:after {
    -webkit-box-shadow: 7px 0 7px -7px rgba(0, 0, 0, 0.35) inset;
    box-shadow: 7px 0 7px -7px rgba(0, 0, 0, 0.35) inset;
    right: -5.5px;
}

.footer__header {
    position: relative;
    padding: 20px 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

.footer__header__content {
    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;
}

.footer__header__sites {
    display: none;
}

.footer .slick-slider .slick-track {
    height: 110px;
}

.footer__sites.is-active {
    opacity: 1;
}

.footer__sites__list {
    padding: 30px 15px 0;
    height: 140px;
}

.footer__sites__list .slick-slider .slick-track,
.footer__sites__list .slick-slider .slick-list {
    height: 140px;
}

.footer__sites .slick-list {
    max-width: 95% !important;
}

.footer__sites__item {
    width: 25%;
    display: block;
    margin: 0 5px;
}

.footer__sites__link {
    display: block;
    width: 100%;
    height: 100%;
}

.footer__sites__img {
    display: inline-block;
    width: 100%;
}

.footer__showMore {
    padding: 0;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    outline: none;
    -webkit-transition: all 0.35s linear;
    -o-transition: all 0.35s linear;
    transition: all 0.35s linear;
    will-change: transform;
}

.footer__showMore.is-active {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.footer__showMore__icon {
    width: 100%;
    height: 100%;
    opacity: 0.6;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: opacity;
}

.footer__showMore:hover .footer__showMore__icon {
    opacity: 1;
}

.footer__logo {}

.footer__logo__img {
    display: inline-block;
    vertical-align: middle;
}

.footer__logo__name {
    display: inline-block;
    vertical-align: middle;
    margin-left: 13px;
}

.footer__logo__head {
    margin-bottom: 15px;
    font-size: 144%;
    font-weight: 600;
    color: #fff;
}

.footer__logo__text {
    margin-top: 5px;
    font-size: 86%;
    font-weight: 600;
    color: #fff;
    opacity: 0.5;
}

.footer__body {
    padding: 50px 0 40px;
}

.footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer__block:not(:first-child) {
    margin-top: 30px;
}

.footer__link {
    display: block;
    font-size: 128%;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    text-decoration: none;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: color;
}

.footer__link:focus,
.footer__link:active {
    text-decoration: none;
}

.footer__link:hover {
    color: #ffac00;
}

html.is-active .footer__link:hover {
    color: #fff;
}

.footer__link--disabled {
    cursor: inherit;
}

.footer__link--disabled:hover {
    color: #fff;
}

.footer__text {
    font-size: 93%;
    color: #fff;
}

.footer__cityLink {
    display: block;
    font-size: 114%;
    font-weight: 600;
    color: #fff;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
    will-change: color;
}

.footer__cityLink:not(:first-child) {
    margin-top: 18px;
}

.footer__cityLink:focus,
.footer__cityLink:active {
    color: #fff;
    text-decoration: none;
}

.footer__cityLink:hover {
    color: #ffac00;
}

.footer__footer {
    padding: 45px 0 65px;
}

.footer__footer span {
    font-size: 93%;
    color: rgba(255, 255, 255, 0.4);
}

.footer__copyright__link {
    color: #fff;
    line-height: 1.4;
    text-decoration: none;
    -webkit-transition: all 0.175s linear;
    -o-transition: all 0.175s linear;
    transition: all 0.175s linear;
}

.footer__copyright__link--margin {
    margin: 0 10px;
}

.footer__copyright__link:focus,
.footer__copyright__link:active {
    color: #fff;
    text-decoration: none;
}

.footer__copyright__link:hover {
    color: #ffac00;
}

html.is-active .footer__copyright__link:hover {
    color: #fff;
}

html.is-active .header__content::after {
    background-color: #000;
}

html.is-active .person__position {
    color: #000000;
}

html.is-active .person__name {
    color: #000000;
}

html.is-active .timeline {
    background-color: #ffffff;
}

/* TODO:  If need, add other Montsserrat fonts */

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/мontserrat/Montserrat-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/мontserrat/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/мontserrat/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/мontserrat/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}











html * {
    word-break: break-word;
}

/* For low vision */
.bwWrapper {
    position: relative;
    display: block;
}

html.is-active .header {
    background-color: #ffffff;
}

html.is-active .footer {
    background-color: #ffffff;
}

html.is-active .scrollToTop {
    background-color: #000000;
}

html.is-active {}

html.is-active {}



html.is-active img {
    -webkit-filter: grayscale(100%);
    -webkit-filter: grayscale(1);
    filter: grayscale(100%);
    filter: gray;
    filter: url('../img/svg/filters.svg#grayscale');
}

html.is-active {
    -webkit-filter: grey;
    filter: grayscale(1);
    filter: url('../img/svg/filters.svg#grayscale');
    filter: gray;
    -webkit-filter: grayscale(1);
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
    will-change: filter;
}

html.is-active .header__content.test {
    background-color: #000000 !important;
    color: #fff !important;
    font-weight: bold !important;
}

html.is-active .beta_sign {
    background-color: #000000;
}

html.is-active .gov__flag--blue {
    background-color: #5d5d5d;
}

html.is-active .gov__flag--yellow {
    background-color: #dedede;
}

html.is-active .message {
    background-color: #ffffff;
}

html.is-active .top-services__item {
    background: #000 !important;
}

html.is-active {}

html.is-active {}


html.is-active .header__content {
    background: #000;
}

html.is-active .tool__link:focus .tool__icon,
html.is-active .tool__link:active .tool__icon,
html.is-active .tool__link:hover .tool__icon {
    fill: #fff;
}

html.is-active .search__input {
    color: #000;
}

html.is-active .footer__content {
    background: #000;
}

html.is-active .mainNav__list--sublist {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

html.is-active .mainNav__sublist.is-active {
    background: #000;
    color: #000;
}

html.is-active .mainNav__list--sublist .mainNav__link {
    color: #000;
}

html.is-active .previewOnTab__name:hover {
    color: #000;
}

html.is-active .mainNav__button {
    background: #fff;
    border: 1px solid #000;
    color: #000;
}

html.is-active .showMore:hover .showMore__text {
    color: #000;
}

html.is-active .showMore__icon:hover .showMore__icon__round {}

html.is-active .showMore__icon:hover .showMore__icon__arrow {}

html.is-active .services__item .services__name:hover {
    color: #000;
}

html.is-active .button-subscribe:hover {
    background: #000;
}






/* In default.css we need delete !important declaration */

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .header__tools {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 0 1 auto;
    }

    .headre__logo {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 0 1 4;
    }

    .mainBoard__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
    }

    .previewOnTab__right {
        flex: 1 0 65%;
    }

    .previewOnTab__left {
        flex: 0 0 30%;
    }

    .tool__icon {
        flex: 0 1 40px;
    }
}






/* Change old style */

.timeline {
    padding: 0;
    background: #effafd;
}

@media only screen and ( max-width: 1199px) {
    .timeline {
        background: #fff;
    }
}


/* Sorry :( */

.notfound__head-text {
    color: #004479;
}

.notfound__inner-error {
    color: #004479;
}

.notfound__inner-title {
    color: #004479;
}

.notfound__inner-text a {
    color: #004479;
}

.button-subscribe {
    background-color: #004479;
}

.button-subscribe:hover {
    background-color: #ff8a00;
}

html.is-active .button-subscribe {
    background: #000;
}

.button-service {
    background-color: #004479;
}

.button-service:hover {
    background-color: #ff8a00;
}

html.is-active .button-service {
    background: #000;
}

.timeline__wrap {
    background: #fff;
}






/* Styles that I have to change without vision */

.fullpage__inner a {
    color: #004479;
    color: #2d5ca6;
}

.fullpage__inner ul li:before {
    background-color: #004479;
    border: 5px solid #004479;
}

.fullpage__inner ul ul>li:before {
    border: 3px solid #004479;
}

.timeline__tabs {
    background: #fff;
}

.news__sidebar-item-title {
    color: #004479;
}

.news__sidebar-item-title:hover {
    color: #ff8a00;
    border-bottom: 1px solid #ff8a00;
}

.news__inner-btn {
    color: #004479;
}

html.is-active .news__inner-btn {
    color: #000;
}

.news__inner-btn:hover {
    color: #ff8a00;
}

.social-share a:hover .a {
    fill: #ff8a00;
}

.social-share .a {
    fill: #004479;
}

.theme {
    padding: 0 30px;
    margin: 0 auto;
    background: #effafd;
}


.fullpage__inner a {
    color: #004479;
    color: #2d5ca6;
    text-decoration: underline;
}

.fullpage__inner a:hover {
    color: #ff8a00;
    border-bottom: 1px solid #ff8a00;
    border-bottom: none;
}

.theme__item-link a {
    color: #ff8a00;
}

.theme__item-link a:hover {
    color: #004479;
}

.modal-body .close:hover {
    color: #ff8a00;
}

.scrollToTop {
    background-color: #004479;
}

.scrollToTop:hover {
    background-color: #ff8a00;
}

.searchfield {
    background: #effafd;
}

.searchfield__sidebar ul li a {
    color: #004479;
}

html.is-active .searchfield__sidebar ul li a {
    color: #000;
}

.searchfield__sidebar ul li a:hover {
    border-bottom: 1px solid #004479;
}

html.is-active .searchfield__sidebar ul li a:hover {
    border-bottom: 1px solid #000;
}

.searchfield .container {
    background: #fff;
}

.button-timeline {
    background-color: #004479;
}

.button-timeline:hover {
    background-color: #ff8a00;
}

.burron-timeline:active {
    background-color: #ff8a00;
}

.daterange {
    color: #004479;
}

html.is-active .daterange {
    color: #000;
}

.daterangepicker td.active,
.daterangepicker td.start-date.end-date {
    background-color: #004479;
}

.daterangepicker table thead tr:nth-child(2) {
    color: #004479;
}

.fullpage .fullpage__inner {
    text-align: justify;
}

.fullpage__inner img {
    max-width: 100%;
}



.services__content::after {
    display: none;
}

.services__content::before {
    display: none;
}

.message__content::after {
    display: none;
}

.message__content::before {
    display: none;
}

.footer__content::after {
    display: none;
}

.footer__content::before {
    display: none;
}

.services__head h2 {
    font-size: 120%;
}

.news__inner-crumb span a {
    background-color: #effafd !important;
}

.news__inner-crumb span a:hover {
    background-color: #78a0b4 !important;
}

.timeline__item-inner-crumb span a {
    background-color: #effafd !important;
}

.timeline__item-inner-crumb span a:hover {
    background-color: #78a0b4 !important;
    color: #ffffff;
}

.news__inner-crumb span a {
    background-color: #effafd;
}

.news__inner-crumb span a :hover {
    /*background-color: #78a0b4;*/
    color: #ffffff;
}

.news__inner-crumb span a:hover::before {
    border-right-color: #78a0b4;
}

.timeline__item-inner-crumb span a:hover::before {
    border-right-color: #78a0b4;
}

.timeline__item-inner-crumb span a:before {
    border-right: 6px solid #effafd;
}

.news__inner-crumb span a:before {
    border-right: 6px solid #effafd;
}

.news__inner iframe {
    margin-bottom: 25px;
}

.js-news-slider-nav {
    margin-bottom: 2em;
}

.slick-slide .js-lightBox img {
    height: 500px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.js-news-slider-nav .slick-slide img {
    cursor: pointer;
}

.timeline-control.slick-next svg {
    background-color: rgba(255, 255, 255, .3);
    background-color: transparent;
}

.timeline-control.slick-prev svg {
    background-color: rgba(255, 255, 255, .3);
    background-color: transparent;
}

.footer__header__sites .slick-initialized .slick-slide {
    max-height: 110px;
}

.footer__sites__item .slider_bg {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-size: contain;
    background-position: center center;
    width: 100%;
    height: 110px;
}

.fullpage__inner p {
    line-height: 1.4em;
    margin-bottom: 2em;
    text-align: left;
}

.searchfield__inner-title {
    padding-bottom: 1em;
}

.searchfield__inner-title .services__item {
    min-height: unset;
    margin: 0;
}

.searchfield__inner-title .services__item .services__part--info {
    margin: 15px 0px 0px 25px;
}

.message__subscribe .input-group .form-control {
    border-radius: 0px
}

.footer__sites .slick-prev {
    top: 60%;
}

.footer__sites .slick-next {
    top: 60%;
}

table {
    max-width: 100% !important;
}

html.is-active * {
    -webkit-transition: all 0s linear !important;
    -o-transition: all 0s linear !important;
    transition: all 0s linear !important;
}


.timeline__item-inner-title a:before {
    display: none;
}

iframe+.media__item-title {
    border-bottom: none !important;
}

html.is-active body {
    background-color: #ffffff;
}

html.is-active.fix_search .search__show {
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 25px;
}

html.is-active.fix_search .mainNav__item--search {
    margin: 0;
}

html.is-active.fix_search .search__text {
    margin: 0;
}

html.is-active.fix_search .search__icon {
    position: absolute;
    top: -2px;
    left: 0;
}

html.is-active.fix_search .header__socials {
    margin-top: 15px;
}

html.is-active .theme__item-subscribe .form-control {
    color: #000 !important;
    border: 2px solid #000 !important;
}

html.is-active ::placeholder {
    color: #000;
    opacity: 1;
}

html.is-active :-ms-input-placeholder {
    color: #000;
}

html.is-active ::-ms-input-placeholder {
    color: #000;
}

.services__head h2 {
    margin-top: 60px;
    margin-bottom: 65px;
}

.services__content .services__head {
    margin-bottom: 40px;
}

.js-services .services__content .services__head {
    margin-bottom: 20px;
}

.js-news-slider-for {
    z-index: 1;
}

.tags_preview {
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    background-position: center center;
}

.tags_preview+.services__img {
    display: none;
}


a[target].services__link {
    display: inline-block;
    margin-right: 0px;
}

.services__linkWrap a[target].services__link {
    display: block;
}

.media__album-overlay {
    display: none;
}

.footer__logo__head {
    position: relative;
}

.beta_sign {
    width: 80px;
    margin: 10px 0;
    background: #0069ec;
    padding: 5px 10px;
}






/* sorry , very bad old styles... I just reassigned the old version   */

.timeline__inner__searchfield .col-md-6 .form-group .chosen-container .chosen-results .active-result.highlighted {
    background: #004479;
}





/* styles that I must make according to the needs of the customer */

@media only screen and (max-width: 1200px) {
    .slick-slide .js-lightBox img {
        height: 400px;
    }

    .header__content {
        padding: 20px 15px 25px;
    }

    .header__content:before,
    .header__content:after {
        display: none;
    }

    .header__socials {
        max-width: 200px;
        margin: 0 auto;
    }

    .mainNav__item--search {
        margin-left: 0;
    }

    .mainNav__button {
        padding: 10px 15px;
    }

    .mainBoard__content:before,
    .mainBoard__content:after {
        display: none;
    }

    .services__content:before,
    .services__content:after {
        display: none;
    }

    .message__content:after,
    .message__content:before {
        display: none;
    }

    .footer__content:before,
    .footer__content:after {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {

    .header__content {
        padding: 20px 15px 25px;
    }

    .header__body__content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    html.is-active .header__body__content {
        position: static;
        justify-content: left;
    }

    .header__tool__addition {
        bottom: -25px;
    }

    .mainNav__button {
        font-size: 107%;
    }


    .mainBoard__content {
        padding: 20px 15px;
    }

    .services {
        padding: 0;
        background: #fff;
    }

    .services__wrap {
        padding: 0;
    }

    .services__content {
        padding: 0 15px;
    }

    .wrapper .content {
        /*padding-bottom: 523px;*/
    }

    .footer__content {
        padding: 0 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrapper .content {
        padding-bottom: 523px;
    }
}






html.is-active .header__body__content {
    position: static;
}

html.is-active .header__nav {
    position: static;
}

html.is-active .mainNav.js-mainNav {
    position: static;
}

html.is-active .mainNav__content {
    position: static;
}

html.is-active .mainNav__list {
    position: static;
}

html.is-active .header__body {
    margin-bottom: 63px;
    position: relative;
}

html.is-active .mainNav__item.mainNav__item--search {
    position: absolute;
    right: 0;
    top: 80px;
    margin: 0;
    left: unset;
}

html.is-active.fix_search_4 .mainNav__item.mainNav__item--search {
    right: 41px;
}

html.is-active.fix_search_4 .person__info {
    bottom: 0px;
    position: static;
}

html.is-active.fix_search_4 .person {
    height: 430px;
}

html.is-active.fix_search_4.fix_search .person {
    height: 480px;
}

html.is-active.fix_search .subtheme__link a {
    line-height: 25px;
}

@media only screen and (max-width: 950px) {

    html.is-active.fix_search .mainNav__item--search {
        margin: 0;
        position: absolute;
        right: 0;
        top: 60px;
    }

    .header__controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mainNav__item--search {
        display: none;
    }

}

@media only screen and (max-width: 992px) {
    .header__control--burger {
        display: block;
    }
}



@media only screen and (max-width: 768px) {


    .header__header {
        margin-top: 5px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .header__logo {
        text-align: center;
    }

    .header__logo__name {
        margin-left: 0;
    }

    .header__logo__head {
        font-size: 128%;
    }

    .header__tools {
        justify-content: space-between;
        width: 70%;
        margin-top: 2%;
    }

    .header__tool:not(:first-child) {
        margin-left: 2.5%;
    }

    .header__tool__addition {
        top: 80%;
        bottom: inherit;
        left: 30%;
        width: auto;
    }

    .header__body__content {
        margin-top: 25px;
    }

    .header__nav {
        width: 100%;
    }

    .header__socials {
        margin: 10px auto;
    }

    .mainNav__button {
        font-size: 114%;
    }

    .mainNav__sublist {
        left: -15px;
    }

    .mainNav__list--sublist {
        padding: 25px 20px;
    }

    .mainBoard__header {
        border-bottom: none;
    }

    .mainBoard__select {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 15px;
        background: #effafd;
    }

    .mainBoard__select__name {
        font-size: 128%;
        font-weight: 600;
        color: #004479;
    }

    .mainBoard__select__icon {
        width: 25px;
        height: 25px;
        opacity: 0.6;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transition: all 0.175s linear;
        -o-transition: all 0.175s linear;
        transition: all 0.175s linear;

        will-change: opacity;
    }

    .mainBoard__select:hover .mainBoard__select__icon {
        opacity: 1;
    }

    .mainBoard__select.is-active .mainBoard__select__icon {
        opacity: 1;
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .mainBoard__select__round {
        fill: #c9e1f0;
        -webkit-transition: all 0.175s linear;
        -o-transition: all 0.175s linear;
        transition: all 0.175s linear;
        will-change: fill;
    }

    .mainBoard__select__arrow {
        fill: #004479;
        -webkit-transition: all 0.175s linear;
        -o-transition: all 0.175s linear;
        transition: all 0.175s linear;
        will-change: fill;
    }

    .mainBoard__controlsWrap {
        height: 0;
        opacity: 0;
        overflow: hidden;
        -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.4, 1.02);
        -o-transition: all 0.5s cubic-bezier(0, 0, 0.4, 1.02);
        transition: all 0.5s cubic-bezier(0, 0, 0.4, 1.02);
    }

    .mainBoard__controls {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border: 2px solid #effafd;
    }

    .mainBoard__control {
        width: 100%;
        padding: 15px;
        border-bottom: rgba(255, 255, 255, 0);
        font-size: 114%;
        color: #000;
        text-align: left;
        cursor: pointer;
        background: #fff;
    }

    .mainBoard__control.is-active {
        border-bottom: none;
        color: #000;
    }

    .mainBoard__list {
        justify-content: space-between;
    }

    .mainBoard__item {
        width: 45%;
    }

    .mainBoard__item:nth-child(3n+2) {
        margin-left: 0;
        margin-right: 0;
    }

    .services__header {
        padding: 0;
    }

    .services__list--person {
        justify-content: center;
    }

    .services__item {
        width: 45%;
    }

    .services__item:nth-child(3n+2) {
        margin-left: 0;
        margin-right: 0;
    }

    .breadcrumb__item.active {
        display: none;
    }

    .news__inner-btn {
        font-size: 114%;
    }

    div .js-news-slider-nav {
        display: none;
    }

    .mainBoard__header:before,
    .mainBoard__header:after {
        display: none;
    }

    .footer__footer {
        display: flex;
        flex-direction: column-reverse;
    }

    .footer__copyright {
        text-align: center;
    }

    .footer__footer span {
        text-align: center;
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}






/* styles that I must make according to the needs of the customer */

@media only screen and (max-width: 720px) {
    .tool__text {
        font-size: 93%;
    }

    .mainNav__list {
        justify-content: center;
    }

    .mainNav__button {
        padding: 5px 10px;
        font-size: 94%;
    }

    .mainNav__link {
        font-size: 94%;
    }
}






/* styles that I must make according to the needs of the customer */

@media only screen and (max-width: 620px) {
    body {
        background: #fff;
    }

    .wrapper .content {
        padding-bottom: 0;
    }

    .header__controls {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header__control--burger {
        display: block;
    }

    .header__header {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .header__logo {
        width: 100%;
        text-align: left;
    }

    .header__logo__name {
        max-width: 79%;
        margin-left: 2.5%;
    }

    .header__logo__head {
        font-size: 114%;
    }

    .header__logo__text {
        font-size: 73%;
    }

    .header__logo__text--first {
        margin-top: 5px;
    }

    .header__tools {
        display: none;
    }

    .header__tools--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-left: 7.5px;
        width: 100%;
        /* margin-top: 6%; */
    }

    .header__tools--mobile .header__old-verion {
        justify-content: flex-start;
    }

    .header__tools--mobile .header__old-verion a {
        margin-left: 0;
    }

    .header__tool:not(:first-child) {
        margin-left: 0;
    }

    .header__tool__addition {
        display: none;
    }

    html.is-active .header__tool__addition {
        position: static;
        display: flex;
        justify-content: space-around;
        margin: 15px 0;
    }

    /* .header__tool--vision {
      display: none;
      justify-content: center;
      width: 100%;
    } */
    /* html.is-active .header__tool--vision {
      display: flex;
    } */
    .header__body {
        height: 0;
        overflow: hidden;
        transition: all 0.55s ease-out;
    }

    .header__body.is-active {
        height: auto;
        transition: all 0.45s cubic-bezier(0, 0, 0.46, 0.99);
    }

    .header__body__content {
        margin-top: 0;
    }

    .logo__img {
        width: 50px;
        height: 80px;
    }

    .mainNav {}

    .mainNav__item {
        position: relative;
        width: 100%;
    }

    .mainNav__item_search {
        width: 100%;
    }

    .mainNav__button {
        width: 100%;
        padding: 15px 10px;
        text-align: left;
        border-bottom: 1px solid #004479;
    }

    .mainNav__button.is-active {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mainNav__sublist {
        padding: 0 15px;
        background: #004479;
    }

    .mainNav__sublist.is-active {
        background: #004479;
        -webkit-transition: all 0.75s cubic-bezier(0, 0, 0.46, 0.99);
        -o-transition: all 0.75s cubic-bezier(0, 0, 0.46, 0.99);
        transition: all 0.75s cubic-bezier(0, 0, 0.46, 0.99);
    }

    .mainNav__list--sublist {
        padding: 0 20px 15px;
        background: #1d2c42;
    }

    .mainNav__list--sublist .mainNav__item {
        width: 100%;
    }


    .tool__link {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    html.is-active .tool__link--textSize {
        display: inline-block;
    }

    .footer__logo__head {
        font-size: 114%;
    }

    .footer__link {
        font-size: 94%;
    }

    .social-share li {
        width: 30px;
        height: 30px;
    }

    .news__inner-btn {
        font-size: 94%;
    }

    .footer__sites__item .slider_bg {
        background-size: contain;
    }

    .person-main .person-photo {
        display: block;
        width: 100%;
        min-height: 285px;
        height: unset;
        background-size: contain;
    }
}

@media only screen and (max-width: 425px) {
    .persons__item {
        margin: 0;
    }

    .media__album-item li img {
        height: unset;
    }

    .media__sidebar .hidden-md.hidden-lg {
        margin: 20px 0;
    }

    .timeline__inner__searchfield .col-md-6,
    .timeline__inner__searchfield .col-md-4,
    .timeline__inner__searchfield .col-md-3 {
        padding: 0;
    }

    .news__inner-social a.print {
        margin-top: 8px;
        transform: scale(.95);
    }

    .slick-slide .js-lightBox img {
        height: 250px;
    }

    .mainBoard__item {
        width: 90%;
    }


    .services__head h2 {
        font-size: 128%;
        word-wrap: break-word;
    }

    .services__item {
        width: 100%;
    }

    .services__footer {
        padding: 35px 0;
    }

    .message__wrap {
        padding: 0 15px;
    }

    .timeline {
        background: #ddeaee;
    }

    .footer {
        height: auto;
        padding: 0;
    }

    .media__pagination .news__inner-btn-next svg {
        top: -3px;
    }

    .news__inner-btn svg {
        top: -2px;
    }

    .fullpage__inner img {
        max-width: 100%;
        /*height: 100%;*/
    }

    .footer__body {
        padding: 40px 0 15px;
    }

    .footer__item {
        width: 100%;
        margin-top: 10px;
    }

    .footer__item:last-child {
        display: none;
    }

    .footer__logo__head {
        margin-bottom: 10px;
        font-size: 114%;
    }

    .footer__logo__text {
        margin-top: 0;
        font-size: 73%;
    }

    .footer__logo__name {
        max-width: 79%;
        margin-left: 2.5%
    }

    .footer__link {
        font-size: 114%;
    }

    .footer__footer {
        padding: 0 0 45px;
    }

    .footer__copyright--main {
        margin-top: 15px;
    }

    .footer__copyright--main a {
        display: block;
        margin: 10px 0;
    }

    .footer__copyright__block {
        margin-top: 15px;
        display: block;
    }

    .news__inner-btn {
        font-size: 94%;
    }

    .breadcrumb__content {
        padding: 7px 10px;
    }

    .breadcrumb__link {
        font-size: 86%;
    }
}


.input-group .input-group-btn {
    font-size: 100%;
}

.fullpage table tr {
    cursor: unset;
}





/* test styles for display of news images*/

.js-news-slider-for .slick-slide div {
    margin: 0 auto;
    background-size: contain;
}



.font-btn-dis {
    pointer-events: none;
    opacity: .2;
}

li.relative.attach a {
    display: block;
    padding-left: 40px;
    color: #004479;
}

.logo_for_print {
    display: none;
}

.header__content.logo_for_print {
    border-bottom: 1px solid #ccc;
}

.slick-slide img {
    width: 100%;
}

.btn-success {
    color: #fff;
    background-color: #004479;
    border-color: #004479;
}

html.is-active .mainNav__item_search.mainNav__item--search {
    margin: 0;
    position: absolute;
    right: 0;
}

html.is-active .header__socials {
    position: absolute;
    right: 0;
    top: 80px;
}

html.is-active .search__field {
    background: #000000;
}

html.is-active .search__input {
    color: #000;
    border: 2px solid;
    box-sizing: border-box;
    top: -3px;
    position: relative;
}

html.is-active .mainNav__content {
    padding-top: 80px;
}

html.is-active .mainNav__item_search.mainNav__item--search {
    top: 20px;
}

html.is-active .header__socials {
    top: 60px;
}

html.is-active .header__body {
    margin-bottom: 20px;
}

html.is-active.fix_search .mainNav__content {
    padding-top: 115px;
}

html.is-active.fix_search .beta_sign {
    right: -60px;
    top: -45px;
}

html.is-active .message__subscribe .input-group {
    max-width: 670px;
}

html.is-active .message__subscribe .input-group .form-control {
    font-size: 100%;
    height: 44px;
}

html.is-active .message__subscribe .input-group span button {
    height: 45px;
}


@media print {

    link,
    .header__body__content,
    div.modal,
    div.js-breadcrumb,
    div.js-fix-social,
    div.events__sidebar,
    div.news__sidebar,
    div.news__inner-social,
    a.js-print,
    div.news__inner-pagination,
    div.input-group,
    div.message__subscribe,
    input,
    footer,
    .news__inner-crumb,
    .news__inner-attach li>a,
    .js-news-slider-for .slick-slide div,
    li.relative.attach a,
    .js-lightBoxGallery_preview,
    .slick-arrow {
        display: none;
    }

    .slick-slide {
        float: none !important;
    }

    .logo_for_print {
        display: block;
    }

    .slick-slide img {
        display: block !important;
        max-width: 100%;
    }

    .header {
        position: absolute;
        right: 1000px;
        opacity: 0;
    }

    .media__album-item li img {
        display: block !important;
        width: 100%;
        height: unset;
        max-width: 100%;
    }

    .person__previewImg {
        max-width: 210px;
    }

    .logo_for_print {
        display: block;
        background: #fff;
    }

    a[href]:after {
        content: "";
    }

    a[href]:before {
        content: "";
    }

    .fullpage__inner {
        clear: both;
    }

    .header__logo__head {
        font-size: 150%;
    }

    iframe {
        width: 100%;
    }
}

/* .header__tools {
    max-width: 425px;
    flex-wrap: wrap;
}

.header__old-verion {
    flex-basis: 100%;
    height: 46px;
    padding-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__old-verion a {
    width: 200px;
    margin-left: 20px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    padding-right: 0;
}

.header__old-verion img {
    width: 25px;
    margin-right: 10px;
}

.header__old-verion a span {
    min-width: 130px;
    margin-left: 10px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    font-size: 98%;
    transition: .2s ease-in-out;
    opacity: 0.5;
}

.header__old-verion a span:hover {
    opacity: 1;
} */

.mainNav__sublist.active {
    height: unset;
    max-height: unset;
    opacity: 1;
    width: 100%;
    left: 0;
    background: #1d2c42;
    margin-top: 0;
    top: inherit;
}

.mainNav__item.active {}

.mainNav__item.active .mainNav__button {
    color: rgba(255, 172, 0, 1);
    background: #1d2c42;
    border: 1px solid #1d2c42;
}

.mainNav__item.active .mainNav__sublist {
    height: unset;
    max-height: unset;
    opacity: 1;
    width: 100%;
    left: 0;
    background: #1d2c42;
    margin-top: 0;
    top: inherit;
}

.header__content.test:after {
    display: none;
}

@media only screen and (max-width: 620px) {

    .mainNav__item.active .mainNav__sublist {
        position: relative;
        top: 0;
    }
}

@media only screen and (max-width: 1200px) {
    .footer__sites .slick-prev {
        left: -5px;
    }

    .footer__sites .slick-next {
        right: -5px;
    }
}



.wrapper .content .content {
    padding-bottom: 20px;
}

html.is-active .top-services__text {
    font-size: 115%;
    line-height: 1.4;
    margin: 0 5px 0 10px;
    position: static;
}

html.is-active .top-services__item {
    /*height: 125px;*/
}

.mainBoard__control {
    position: relative;
}

.new_announces_count {
    position: absolute;
    right: 0;
    top: 0;
    background: #00427c;
    color: #fff;
    border-radius: 50%;
    padding: 3px;
    font-size: 15px;
    width: 21px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .new_announces_count {
        right: 10px;
    }
}

.previewOnTab__date.new {
    box-shadow: 1px 1px 11px 1px #004479;
    border-radius: 11px;
    padding: 0px 5px;
}

.new_label_event {
    position: absolute;
    right: 0;
    top: -20px;
    color: #fff;
    background: #00427c;
    border-radius: 15px;
    padding: 5px;
    font-size: 12px;
    font-weight: 600;
}

.previewOnTab__right.old_event a {
    color: #5e8fad;
}

.previewOnTab__right.old_event .previewOnTab__place {
    color: #5e8fad;
}

.past {
    color: #b0b0b0;
}

@media only screen and (min-width: 993px) {
    html.is-active.fix_search .count-materials {
        top: -30px;
    }
}

.list-special li::before,
.list-special li::after {
    display: none;
}

.list-special li {
    padding-left: 0 !important;
}

/*.fullpage__inner ul li:before,
.fullpage__inner ol li:before {
    border: 5px solid transparent;
    background-color: transparent;
}*/
.kmr-test {
    max-width: 1170px;
    margin: 0 auto;
    padding: 10px;
    background-color: #007eff;
    text-align: center;
    color: #Fff;
    font-weight: 600;
}

.kmr-test p {
    margin-bottom: 0;
}

.message__wrap,
.message__subscribe {
    display: none !important;
}

.timeline__tab-npa .slick-list {
    max-width: 95%;
}
