:root {
    --main-color: #8dc63f;
    --main-color-hover: #5c8426;
    --main-text-color: #000;
    --light-text-color: #fdfdfd;
    --gray-text-color: #b0b0b0;
    --light-color: #fff;
    --dark-color: #000;
    --gray-color: #5e5e5e;
    --gray-link: #8b8b8b;
    --light-gray-color: #e3e3e3;
    --border-main-color: #b0b0b0;
    --additional-color: #bfe38c;

    --transition-delay: 0.5s;
}

html {
    background-color: #fff;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
    color: var(--main-text-color);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

* {
    outline: none;
}

*, *:before, *:after {
    box-sizing: inherit;
}

p {
    padding: 0;
    margin: 0 0 10px 0;
}

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

a {
    text-decoration: none;
    color: #000;
    transition: color var(--transition-delay);
}

a:hover {
    color: var(--main-color);
}

figure {
    padding: 0;
    margin: 0;
}

iframe {
    border-radius: 20px;
}

img {
    max-width: 100%;
}

h1 {
    padding: 0;
    margin: 0 0 40px 0;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: normal;
}

h2 {
    padding: 0;
    margin: 0 0 40px 0;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: normal;
}

h3 {
    padding: 0;
    margin: 0 0 30px 0;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: normal;
}

h4 {
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: normal;
}

h5 {
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: normal;
}

h6 {
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 1rem;
    line-height: normal;
}

.video-frame.video-frame-16by9 {
    padding-bottom: 56.25%;
}

.video-frame.video-frame-4by3 {
    padding-bottom: 75%;
}

.video-frame {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.video-frame .video-frame-item, .video-frame iframe, .video-frame embed, .video-frame object {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more {
    background-image: none !important;
    padding: 0 !important;
}

.share-btn {
    background-image: url(/images/new/share.svg) !important;
    background-size: cover !important;
    width: 24px !important;
    height: 24px !important;
}

.ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more {
    background: transparent !important;
}

.ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short {
    background: transparent !important;
}

#bx-panel {
    z-index: 9999999 !important;
}

.container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.header {
    padding: 0;
    margin: 0 0 40px 0;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
}

.btn {
    display: inline-flex;
    padding: 8px 50px;
    margin: 0;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
    color: var(--light-color);
    cursor: pointer;
    transition: color var(--transition-delay), background-color var(--transition-delay), border-color var(--transition-delay);
}

.btn:focus {
    background-color: var(--main-color-hover);
    border: 1px solid var(--main-color-hover);
    color: var(--light-color);
}

.btn:hover {
    background-color: var(--main-color-hover);
    border: 1px solid var(--main-color-hover);
    color: var(--light-color);
}

.btn:disabled {
    background-color: var(#ddeec5);
    border: 1px solid var(#ddeec5);
    color: var(--light-color);
}

.list li {
    margin-bottom: 10px;
}

.list li:last-child {
    margin-bottom: 0;
}

/*----- Шапка сайта -----*/
.main-header {
    z-index: 2000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    /*border-bottom: 1px solid rgba(253, 253, 253, 0.45);*/
}

.main-header__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

.main-header__left {
    display: flex;
    align-items: flex-end;
}

.main-header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.main-header__logo {
    display: block;
    width: 116px;
    margin-right: 30px;
}

.main-header__logo-img {
    width: 100%;
    height: auto;
}

.main-header__hamburg-link-mobile {
    display: none;
}

.main-header-nav {
    display: block;
    padding-bottom: 20px;
}

.main-header-nav__list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-header-nav__item {
    margin-right: 20px;
}

.main-header-nav__item:last-child {
    margin-right: 0;
}

.main-header-nav__link {
    color: var(--light-text-color);
    font-size: 1rem;
    transition: border-bottom 0s;
}

.main-header-nav__link:hover {
    padding-bottom: 18px;
    color: var(--light-text-color);
    border-bottom: 2px solid var(--light-text-color);
}

.main-header__right-top {
    margin-bottom: 18px;
}

.main-header__right-bottom {
    margin-bottom: 20px;
}

.main-header__scheme-link {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--light-text-color);
}

.main-header__scheme-link:hover {
    color: var(--light-text-color);
}

.main-header__scheme-link svg {
    margin-right: 15px;
}

.main-header__search-link {
    margin-right: 36px;
}

.header-search {
    background: rgba(41, 41, 41, 0.75);
    height: 0;
    width: 100%;
}

.header-search--show {
    top: 0;
    left: 0;
    height: 100vh;
    position: fixed;
    z-index: 10000000;
}

.header-search__form {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 84px;
    padding: 2rem 1rem;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.header-search__form--show {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header-search input {
    height: 1.5rem;
    margin-left: 1.5rem;
    width: 100%;
}

.header-search__close {
    margin-left: auto;
}

.header-search .icon--search,
.header-search .icon--x {
    stroke: #000;
    stroke-width: 2;
    opacity: 0.4;
}

.header-search__close {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.header-search__submit-btn {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.search-suggest {
    border: none;
}

/*----- Конец шапки сайта -----*/

/*----- Бургер меню -----*/
.icon {
    height: 1.5rem;
    width: 1.5rem;
}

.burger-menu {
    background: url(/upload/images/template/burger-menu-bg.png) no-repeat;
    background-size: cover;
    color: #fff;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    width: 100vw;
    z-index: 0
}

.burger-menu--open {
    opacity: 1;
    position: fixed;
    -webkit-transform: translate(0);
    transform: translate(0);
    z-index: 4000
}

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

.burger-menu__toggle {
    display: none
}

@media (min-width:1024px) {
    .burger-menu__toggle {
        display: block
    }
}

.burger-menu__wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
    height: 90vh;
    justify-content: center;
    width: 100%
}

.burger-menu__wrapper--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (min-width:1024px) {
    .burger-menu__wrapper--mobile {
        display: none
    }

    .burger-menu__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 80vh;
        padding-left: 244px;
        padding-right: 160px
    }
}

.burger-menu__list {
    width: 100%
}

.burger-menu__item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    position: relative
}

@media (min-width:1024px) {
    .burger-menu__item {
        -ms-grid-columns: 1fr 1fr;
        display: -ms-grid;
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .burger-menu__item--hidden {
        display: none
    }
}

.burger-menu__item-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.25rem;
    line-height: 1.75rem
}

.burger-menu__item-title:hover {
    color: #fff;
    text-decoration: none
}

.burger-menu__item:not(:last-child) {
    margin-bottom: .75rem
}

.burger-menu__item-title span {
    -webkit-box-flex: 1;
    background: #e5e5e5;
    display: none;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    margin-left: 27px;
    margin-right: 32px;
    margin-top: 2px;
    opacity: .5
}

.burger-menu__dropdown {
    display: none;
    max-height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    list-style: none;
    padding-left: 0;
}

.burger-menu__dropdown-item a, .burger-menu__dropdown-item a:hover {
    color: #fff;
    text-decoration: none
}

.burger-menu__dropdown-item:not(:first-child) {
    padding-top: 12px
}

.burger-menu__dropdown-item:first-child {
    padding-top: 6px
}

.burger-menu__dropdown-toggle svg {
    fill: #fff
}

@media (min-width:1024px) {
    .burger-menu__dropdown-toggle svg {
        display: none
    }
}

.burger-menu__item:hover {
    color: #fff;
    text-decoration: none
}

.burger-menu__item:hover .burger-menu__dropdown {
    display: block;
    z-index: 1
}

.burger-menu__item:hover .burger-menu__item-title span {
    display: block
}

.burger-menu .icon {
    stroke: #fff;
    stroke-width: 2
}

/*----- Конец бургер меню -----*/

/*----- Мобильное меню -----*/
.mobile-menu {
    background: url(/images/new/mobile-menu-bg.png) no-repeat;
    background-size: cover;
    color: #fff;
    height: 100vh;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: relative;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    width: 100vw;
    z-index: 0
}

.mobile-menu--open {
    opacity: 1;
    position: fixed;
    -webkit-transform: translate(0);
    transform: translate(0);
    z-index: 10000
}

@media (min-width:1024px) {
    .mobile-menu__toggle {
        display: none
    }
}

.mobile-menu__toggle svg {
    width: 64px
}

.mobile-menu__close, .mobile-menu__dropdown-close {
    z-index: 3
}

.mobile-menu__dropdown-close {
    display: none;
    position: absolute;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

.mobile-menu__header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    border-bottom: 1px solid hsla(0, 0%, 100%, .25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    min-height: 84px;
    padding-bottom: 1rem;
    padding-top: 1rem
}

.mobile-menu__list {
    padding-left: 0;
    margin-top: 2rem;
}

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

.mobile-menu__item, .mobile-menu__item-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.mobile-menu__item-title {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1rem
}

.mobile-menu__dropdown {
    background: url(/images/new/mobile-menu-bg.png) no-repeat;
    background-size: contain;
    height: 100vh;
    left: 0;
    padding-left: 16px;
    padding-top: 150px;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translate(100vw);
    transform: translate(100vw);
    width: 100vw;
    z-index: 2;
    list-style: none;
}

.mobile-menu__dropdown--open {
    -webkit-transform: translate(0);
    transform: translate(0)
}

.mobile-menu__dropdown-item {
    margin-bottom: 1rem
}

.mobile-menu__dropdown-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    padding: 0;
    background: none;
    border: none;
    margin: 0 0 1rem 0;
}

.mobile-menu__dropdown-toggle svg {
    fill: #fff;
    height: 24px;
    width: 24px
}

.mobile-menu .icon {
    stroke: #fff;
    stroke-width: 2
}

/*----- Конец мобильного меню -----*/

/*----- Слайдер на главной -----*/
.main-slider {
    position: relative;
}

.main-slider__carousel {
    height: 100%;
}

.main-slider__container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 0 76px 75px 76px;
}

.main-slider__item {
    z-index: 1;
    position: relative;
    height: 630px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-slider__item::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(83, 83, 83, 0.38);
}

.main-slider__header {
    margin-bottom: 36px;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--light-text-color);
}

.main-slider__header:last-child {
    margin-bottom: 0;
}

.main-slider__desc {
    margin-bottom: 36px;
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--light-text-color);
}

.main-slider__desc:last-child {
    margin-bottom: 0;
}

.main-slider__btn {
    align-self: flex-start;
    padding: 12px 74px;
    border: 1px solid var(--light-color);
    border-radius: 6px;
    text-transform: uppercase;
    color: var(--light-color);
    transition: color var(--transition-delay), border-color var(--transition-delay);
}

.main-slider__btn:hover {
    border: 1px solid var(--gray-color);
    color: var(--gray-color);
}

.main-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.main-slider__dots .owl-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0 10px 0 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--light-gray-color);
    cursor: pointer;
}

.main-slider__dots .owl-dot:last-child {
    margin-right: 0;
}

.main-slider__dots .owl-dot:hover {
    background-color: var(--main-color);
}

.main-slider__dots .owl-dot.active {
    background-color: var(--main-color);
}

.main-slider__arrow-left {
    z-index: 1000;
    position: absolute;
    top: calc(50% + 12px);
    left: calc(50% - 580px);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.main-slider__arrow-right {
    z-index: 1000;
    position: absolute;
    top: calc(50% + 12px);
    left: calc(50% + 556px);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}

/*----- Конец слайдера на главной -----*/

/*----- О фонде на главной -----*/
.main-about {
    padding: 30px 0;
}

.main-about__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.main-about__top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-about__header {
    margin-bottom: 0;
}

.main-about__top-desc {
    display: inline-flex;
    padding: 8px 12px;
    margin-right: 60px;
    border: 2px solid var(--main-color);
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    color: var(--main-color);
}

.main-about__btn {
    padding: 8px 20px;
}

.main-about__btn_mobile {
    display: none;
}

/*----- Конец о фонде на главной -----*/

/*----- Новости на главной -----*/
.main-news {
    padding: 60px 0;
    background-color: #f2fbe7;
}

.main-news__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.main-news__header {
    margin-bottom: 0;
}

.main-news__items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.main-news__item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 120px) / 4);
}

.main-news__item-img-link {
    position: relative;
    display: block;
    height: 160px;
    margin-bottom: 20px;
}

.main-news__item-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.main-news__item-video-icon {
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.main-news-item__date {
    margin-top: auto;
}

.main-news__item-name {
    display: block;
    margin-bottom: 20px;
}

/*----- Конец новостей на главной -----*/

/*----- Календарь событий -----*/
.footer {
    padding: 60px 0;
}

.footer-calendar__row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-calendar__left {
    width: 900px;
}

.footer-calendar__right {
    width: calc(100% - 900px);
    padding-left: 60px;
}

.footer-calendar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-main-color);
}

.footer-calendar-item:first-child {
    border-top: 1px solid var(--border-main-color);
}

.footer-calendar-item__left {
    display: flex;
    align-items: center;
}

.footer-calendar-item__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-calendar-item__date {
    display: flex;
    flex-direction: column;
    width: 160px;
}

.footer-calendar-item__date-day {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.footer-calendar-item__date-month-year {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
}

.footer-calendar-item__img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    margin-right: 40px;
}

.footer-calendar-item__img {
    max-width: 100px;
    height: auto;
    max-height: 86px;
    border-radius: 7px;
}

.footer-calendar-item__name {
    font-size: 0.875rem;
}

.footer-calendar-item__name-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 360px;
}

.footer-calendar-item__name-date {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1;
    color: var(--gray-color);
}

.footer-calendar-item__name-link {
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--dark-color);
}

.footer-calendar-item__city {
    display: inline-flex;
    padding: 8px 18px;
    background-color: #e7e7e7;
    border: none;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
}

.highlight-day A {
    color: limegreen !important;
    font-weight: bold !important;
}

.footer-calendar .ui-datepicker table {
    background: transparent;
    font-size: 0.9em;
}

.footer-calendar .ui-datepicker td a,
.footer-calendar .ui-datepicker td span {
    font-size: 12px;
    text-decoration: none;
}

.footer-calendar table tr td {
    background-color: transparent;
}

.footer-calendar .ui-datepicker-days-cell-over.highlight-day.ui-datepicker-current-day.ui-datepicker-today {
    background: #8cc63f !important;
}

.footer-calendar .ui-datepicker-days-cell-over.highlight-day.ui-datepicker-current-day.ui-datepicker-today a {
    color: #f7f8e2 !important;
}

.footer-calendar .highlight-day.ui-datepicker-current-day {
    background: #8cc63f !important;
}

.footer-calendar .highlight-day.ui-datepicker-current-day a {
    color: #f7f8e2 !important;
}

.footer-calendar .ui-datepicker-calendar tbody {
    font-size: 12px;
}

.footer-calendar .ui-state-default {
    background: transparent !important;
    border: 0 !important;
    text-align: center;
}

.footer-calendar .highlight-day {
    background-color: var(--main-color) !important;
}

.footer-calendar .highlight-day a {
    color: #fff !important;
}

.footer-calendar th span {
    color: #ccc !important;
}

.footer-calendar .ui-datepicker .ui-datepicker-header {
    background: none;
    border: 0;
    border-bottom: 1px solid #eee;
    border-radius: 0;
}

.footer-calendar .ui-datepicker-title {
    font-size: 14px;
}

.footer-calendar .ui-datepicker .ui-datepicker-prev {
    background: url(/upload/icons/template/chevron_left.svg) no-repeat;
}

.footer-calendar .ui-datepicker .ui-datepicker-next {
    background: url(/upload/icons/template/chevron_right.svg) no-repeat;
}

.footer-calendar .ui-widget-header .ui-icon {
    display: none;
}

.footer-calendar .ui-datepicker {
    width: 100%;
}

@media (min-width: 1024px) {
    .footer-calendar .ui-datepicker {
        width: 200px;
    }
}

/*----- Конец календаря событий -----*/

/*----- Подвал сайта -----*/
.footer-bottom {
    padding: 60px 0;
}

.footer-bottom__row {
    display: flex;
    justify-content: space-between;
    padding: 60px 0 60px 0;
    border-top: 1px solid var(--dark-color);
}

.footer-bottom__left-header {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
}

.footer-bottom__left-text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: normal;
}

.footer-bottom__left-link {
    color: var(--gray-link);
}

.footer-bottom__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-bottom__right-header {
    align-self: flex-start;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
}

.footer-bottom__form {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.footer-bottom__form-input {
    display: inline-flex;
    width: 260px;
    height: 50px;
    padding: 8px 10px;
    margin: 0;
    background-color: #d9d9d9;
    border-radius: 6px 0 0 6px;
    border: none;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    color: var(--light-color);
}

.footer-bottom__form-submit {
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    padding: 8px 10px;
    border-radius: 0 6px 6px 0;
}

.footer-bottom__agree {
    display: inline-block;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-link);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    color: var(--gray-link);
    transition: border-color var(--transition-delay);
}

.footer-bottom__agree:hover {
    border-bottom: 1px solid var(--main-color);
}

.footer-bottom__socials {
    display: flex;
    align-items: center;
}

.footer-bottom__socials-header {
    display: flex;
    margin-right: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
}

.footer-bottom__socials-list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-bottom__socials-item {
    margin-right: 15px;
}

.footer-bottom__socials-item:last-child {
    margin-right: 0;
}

.footer-bottom__socials-link {
    display: block;
    width: 24px;
    height: 24px;
}

.footer-bottom__copy-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #d9d9d9;
}

.footer-bottom__copy {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    color: var(--gray-link);
}

.footer-bottom__policy {
    display: inline-flex;
    align-self: flex-end;
    border-bottom: 1px solid var(--gray-link);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    color: var(--gray-link);
    transition: border-color var(--transition-delay);
}

.footer-bottom__policy:hover {
    border-bottom: 1px solid var(--main-color);

}

/*----- Конец подвала сайта -----*/

/*----- Гранты на главной -----*/
.main-grants {
    padding: 30px 0 60px 0;
}

.main-grants__tabs-list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 0 40px 0;
    list-style: none;
}

.main-grants__tabs-item {
    margin-right: 66px;
}

.main-grants__tabs-item:last-child {
    margin-right: 0;
}

.main-grants__tabs-link_active {
    color: var(--main-color);
}

.main-grants__carousel-wrapper {
    position: relative;
}

.main-grants__carousel-item {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 310px;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    color: var(--light-text-color);
}

.main-grants__carousel-item::before {
    z-index: -1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(68, 68, 68, 0.5);
    border-radius: 12px;
}

.center>.main-grants__carousel-item {
    width: 360px;
    height: 345px;
    margin-top: 0;
}

.main-grants__carousel .owl-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-grants__carousel-arrow-left {
    z-index: 2000;
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    transition: background-color var(--transition-delay);
    cursor: pointer;
}

.main-grants__carousel-arrow-left:hover {
    background: var(--main-color);
}

.main-grants__carousel-arrow-left svg path {
    fill: var(--light-color);
}

.main-grants__carousel-arrow-right {
    z-index: 2000;
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: background-color var(--transition-delay);
    cursor: pointer;
}

.main-grants__carousel-arrow-right:hover {
    background: var(--main-color);
}

.main-grants__carousel-arrow-right svg path {
    fill: var(--light-color);
}

/*----- Конец грантов на главной -----*/

/*----- Первый блок на странице -----*/
.first-block {
    position: relative;
    height: 364px;
}

.first-block__container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.first-block__img {
    position: absolute;
    width: auto;
    max-height: 364px;
    bottom: 0;
    right: 0;
}

.first-block__header {
    z-index: 10;
    margin-bottom: 60px;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: normal;
    color: var(--light-text-color);
}

.first-block__header_mb {
    margin-bottom: 20px;
}

.first-block__header_font_small {
    font-size: 1.25rem !important;
}

.first-block__header-desc {
    z-index: 10;
    margin-bottom: 20px !important;
    color: #fff;
}

/*----- Конец первого блока на странице -----*/

/*----- Хлебные крошки -----*/
.breadcrumbs {
    padding: 60px 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumbs__item {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    color: var(--dark-color);
}

.breadcrumbs__arrow {
    margin: 0 10px;
    color: var(--gray-color);
}

.breadcrumbs__link {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    color: var(--gray-color);
}

/*----- Конец хлебных крошек -----*/

/*----- Чистая страница -----*/
.page__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.page__aside {
    width: 260px;

}

.page__inner {
    width: calc(100% - 300px);
}

.page__inner_wide {
    width: 100%;
}

/*----- Конец чистой страницы -----*/

/*----- Левое меню раздела -----*/
.section-left-menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.section-left-menu__item {
    display: block;
    width: 100%;
    border: 1px solid var(--light-gray-color);
    border-bottom: none;
    overflow: hidden;
}

.section-left-menu__item:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.section-left-menu__item:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom: 1px solid var(--light-gray-color);
}

.section-left-menu__link {
    display: block;
    padding: 18px;
    color: var(--dark-color);
    transition: background-color var(--transition-delay);
}

.section-left-menu__link:focus {
    background-color: var(--light-gray-color);
    color: var(--dark-color);
}

.section-left-menu__link:hover {
    background-color: var(--light-gray-color);
    color: var(--dark-color);
}

.section-left-menu__item_select .section-left-menu__link {
    background-color: var(--light-gray-color);
}

/*----- Конец левого меню раздела -----*/

/*----- Блок документов -----*/
.documents-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 20px;
}

.documents-list__btn {
    display: flex;
    align-items: center;
    align-self: flex-end;
    padding: 18px;
    line-height: 1;
    color: var(--main-color);
}

.documents-list__btn:hover {
    color: var(--main-color-hover);
}

.documents-list__btn svg {
    margin-left: 30px;
}

.documents-list__btn svg path {
    fill: var(--main-color);
    transition: fill var(--transition-delay);
}

.documents-list__btn:hover svg path {
    fill: var(--main-color-hover);
}

.documents-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--light-gray-color);
    border-bottom: none;
    transition: background-color var(--transition-delay);
}

.documents-list__item:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.documents-list__item:nth-child(2) {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.documents-list__item:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom: 1px solid var(--light-gray-color);
}

.documents-list__item:focus {
    background-color: var(--light-gray-color);
}

.documents-list__item:hover {
    background-color: var(--light-gray-color);
}

.documents-list__item-left {
    display: flex;
    align-items: center;
}

.documents-list__item-left svg {
    flex-shrink: 0;
    margin-right: 20px;
}

.documents-list__text-block {
    display: flex;
    flex-direction: column;
}

.documents-list__text {
    color: var(--dark-color);
}

.documents-list__size {
    color: var(--gray-link);
}

.documents-list__item .documents-list__right-icon svg path {
    fill: var(--main-color);
    transition: fill var(--transition-delay);
}

.documents-list__item:hover .documents-list__right-icon svg path {
    fill: var(--main-color-hover);
}

/*----- Конец блока документов -----*/

/*----- Попечительских совет -----*/
.trustee-council {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trustee-council__item {
    position: relative;
    width: calc((100% - 60px) / 3);
    height: 340px;
    border-radius: 10px;
}

.trustee-council__item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.trustee-council__item:hover .trustee-council__item-img {
    -webkit-filter: brightness(0.4);
    filter: brightness(0.4);
}

.trustee-council__item-data {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
}

.trustee-council__item-data {
    display: flex;
    flex-direction: column;
}

.trustee-council__item-surname {
    font-size: 1.25rem;
    color: var(--light-color);
}

.trustee-council__item-name {
    font-size: 1.125rem;
    color: var(--light-color);
}

.trustee-council__item-desc {
    height: 0;
    padding-top: 10px;
    font-size: 0.875rem;
    line-height: 1rem;
    color: var(--light-color);
    overflow: hidden;
}

.trustee-council__item:hover .trustee-council__item-desc {
    height: 100%;
}

/*----- Конец попечительского совета -----*/

/*----- Деятельность фонда -----*/
.fond-activity__top-links {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
    gap: 40px;
}

.fond-activity__top-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: calc((100% - 80px) / 3);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-main-color);
    text-align: center;
    font-size: 1.25rem;
    transition: border-color var(--transition-delay), background-color var(--transition-delay);
}

.fond-activity__top-link:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.fond-activity__top-link:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.fond-activity__top-link:active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.fond-activity-partners {
    margin-bottom: 60px;
}

.fond-activity-partners__header {
    margin-bottom: 30px;
    font-size: 1.75rem;
    line-height: 1;
}

.fond-activity-partners__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.fond-activity-partners__item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 44px;
    margin-bottom: 30px;
    font-size: 1.25rem;
}

.fond-activity-partners__item:last-child {
    margin-bottom: 0;
}

.fond-activity-partners__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url('/upload/icons/template/hands.svg');
}

.fond-activity-partners__item-desc {
    font-size: 1rem;
}

.fond-activity-promote__header {
    margin-bottom: 40px;
    font-size: 1.75rem;
    line-height: 1;
}

.fond-activity-promote__items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.fond-activity-promote__item {
    width: calc((100% - 80px) / 3);
    padding-top: 20px;
    border-top: 2px solid var(--main-color);
    font-size: 1.25rem;
    color: var(--main-text-color);
}

/*----- Конец деятельности фонда -----*/

/*----- Целевые ориентиры -----*/
.fond-goals-list__header {
    margin-bottom: 40px;
    font-size: 1.75rem;
}

.font-goals-list__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.font-goals-list__item:last-child {
    margin-bottom: 0;
}

.fond-goals-list__item-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.fond-goals-list__item-name {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--main-text-color);
}

.fond-goals-list__item-detail-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 20px;
}

.fond-goals-list__item-detail {
    display: inline-flex;
    align-self: flex-end;
    flex-shrink: 0;
    padding: 6px 40px;
    background-color: var(--main-color);
    border-radius: 6px;
    font-size: 0.9375rem;
    line-height: 1;
    color: var(--light-color);
    transition: background-color var(--transition-delay);
}

.fond-goals-list__item-detail:focus {
    background-color: var(--main-color-hover);
    color: var(--light-color);
}

.fond-goals-list__item-detail:hover {
    background-color: var(--main-color-hover);
    color: var(--light-color);
}

.fond-goals-list__item-detail:active {
    background-color: var(--main-color-hover);
    color: var(--light-color);
}

.fond-goals-list__item-goals {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 20px 0;
    gap: 40px;
    list-style: none;
}

.fond-goals-list__item-goals-item {
    position: relative;
    display: flex;
    width: calc((100% - 80px) / 3);
    padding-left: 31px;
}

.fond-goals-list__item-goals-item::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url('/upload/icons/template/goals-check.svg');
    background-size: contain;
}

.fond-goals-list__item-basis {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    background-color: var(--additional, var(--additional-color));
    border-radius: 8px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-color);
}

.fond-goals-detail__top-links {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
    gap: 40px;
}

.fond-goals-detail__top-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: calc((100% - 80px) / 3);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-main-color);
    text-align: center;
    font-size: 1.25rem;
    transition: border-color var(--transition-delay), background-color var(--transition-delay);
}

.fond-goals-detail__top-link:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.fond-goals-detail__top-link:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.fond-goals-detail__top-link:active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.fond-goals-detail__header {
    margin-bottom: 40px;
    font-size: 1.4375rem;
}

/*----- Конец целевых ориентира -----*/

/*----- Ключевые программы фонда -----*/
.about-fond-programs__header {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 1.4375rem;
    color: var(--main-text-color);
}

.about-fond-programs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-fond-programs-list__item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 80px) / 3);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    transition: border-color var(--transition-delay), background-color var(--transition-delay), color var(--transition-delay);
}

.about-fond-programs-list__item:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.about-fond-programs-list__item:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.about-fond-programs-list__item:active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.about-fond-programs-list__img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

/*----- Конец ключевых программ фонда -----*/

/*----- Архив фонда -----*/
.about-fond-archive__header {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 1.4375rem;
    color: var(--main-text-color);
}

.about-fond-archive-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.about-fond-archive-list__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc((100% - 80px) / 3);
    padding: 18px;
    border-radius: 8px;
    border: 1px solid var(--main-color);
    text-align: center;
    transition: border-color var(--transition-delay), background-color var(--transition-delay), color var(--transition-delay);
}

.about-fond-archive-list__item:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.about-fond-archive-list__item:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.about-fond-archive-list__item:active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

/*----- Конец архива фонда -----*/

/*----- Бибилиотека. Информационно-методические материалы -----*/
.library-methods__top-desc {
    margin-bottom: 40px;
}

.library-methods-sections {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.library-methods-sections__item {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 25%;
    padding: 16px;
    margin: 0;
    background-color: transparent;
    border: 1px solid var(--light-gray-color);
    border-right: none;
    white-space: nowrap;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--transition-delay), border-color var(--transition-delay), color var(--transition-delay);
}

.library-methods-sections__item:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.library-methods-sections__item:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-right: 1px solid var(--light-gray-color);
}

.library-methods-sections__item:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--dark-color);
}

.library-methods-sections__item:hover {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--dark-color);
}

.library-methods-sections__item:active {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--dark-color);
}

.library-methods-sections__item_active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.library-methods__filter-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-color);
}

#library-methods-years-button {
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

#library-methods-years-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: normal;
    color: var(--light-color);
}

.library-methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.library-methods-list__item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 80px) / 3);
}

.library-methods-list__item_hidden {
    display: none;
}

.library-methods-list__item-img-link {
    margin-bottom: 20px;
}

.library-methods-list__item-img {
    border-radius: 10px;
}

.library-methods-list__item-name {
    margin-bottom: 40px;
}

.library-methods-list__item-year-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.library-methods-list__item-year {
    font-weight: 700;
}

.library-methods-detail__img {
    max-width: 460px;
    margin-bottom: 40px;
    border-radius: 20px;
}

.library-methods-detail__text {
    margin-bottom: 40px;
}

.library-methods-detail__docs {
    margin-top: -20px;
    margin-bottom: 40px;
}

.library-methods-detail__section {
    display: inline-flex;
    padding: 8px 35px;
    border-radius: 6px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    transition: background-color var(--transition-delay), color var(--transition-delay);
}

.library-methods-detail__section:hover {
    background-color: var(--main-color);
    color: var(--light-color);
}

/*----- Конец бибилиотеки. Информационно-методические материалы-----*/

/*----- Бибилиотека. Материалы семинаров и конференций -----*/
.library-materials__top-desc {
    margin-bottom: 40px;
}

.library-materials-sections {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.library-materials-sections__item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    margin: 0;
    background-color: transparent;
    border: 1px solid var(--light-gray-color);
    border-right: none;
    white-space: nowrap;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--transition-delay), border-color var(--transition-delay), color var(--transition-delay);
}

.library-materials-sections__item:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.library-materials-sections__item:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-right: 1px solid var(--light-gray-color);
}

.library-materials-sections__item:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--dark-color);
}

.library-materials-sections__item:hover {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--dark-color);
}

.library-materials-sections__item:active {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--dark-color);
}

.library-materials-sections__item_active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.library-materials__filter-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-color);
}

#library-materials-years-button {
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

#library-materials-years-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: normal;
    color: var(--light-color);
}

.library-materials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.library-materials-list__item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 80px) / 3);
}

.library-materials-list__item_hidden {
    display: none;
}

.library-materials-list__item-img-link {
    margin-bottom: 20px;
}

.library-materials-list__item-img {
    border-radius: 10px;
}

.library-materials-list__item-name {
    margin-bottom: 40px;
}

.library-materials-list__item-year-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.library-materials-list__item-year {
    font-weight: 700;
}

.library-materials-detail__img {
    max-width: 460px;
    margin-bottom: 40px;
    border-radius: 20px;
}

.library-materials-detail__text {
    margin-bottom: 40px;
}

.library-materials-detail__docs {
    padding-top: 0;
    margin-bottom: 40px;
}

.library-materials-detail__section {
    display: inline-flex;
    padding: 8px 35px;
    border-radius: 6px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    transition: background-color var(--transition-delay), color var(--transition-delay);
}

.library-materials-detail__section:hover {
    background-color: var(--main-color);
    color: var(--light-color);
}

/*----- Конец бибилиотеки. Материалы семинаров и конференций -----*/

/*----- Страница детский телефон доверия -----*/
.dtd-list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dtd-list__item {
    display: inline-flex;
    width: calc((100% - 40px) / 2);
}

.dtd-list__item-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 24px 50px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-main-color);
    text-align: center;
    transition: color var(--transition-delay), background-color var(--transition-delay), border-color var(--transition-delay);
}

.dtd-list__item-link:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

/*----- Конец страницы детский телефон доверия -----*/

/*----- Страница поможем вместе -----*/
.help-together-top {
    padding-bottom: 35px;
}

.help-together-top__row {
    display: flex;
    justify-content: space-between;
    background-color: #f2fbe7;
    border-radius: 12px;
}

.help-together-top__left {
    width: 500px;
    height: auto;
    border-radius: 12px;
}

.help-together-top__right {
    width: calc(100% - 500px);
    padding: 34px 50px;
    font-size: 1.25rem;
}

.help-together-top__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.help-together-props {
    padding: 35px 0 40px 0;
}

.help-together-props__header {
    margin-bottom: 40px;
    font-size: 2.25rem;
    line-height: 1;
}

.help-together-props__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help-together-props__left {
    width: 620px;
}

.help-together-props__right {
    width: 500px;
}

.help-together-props__table {
    border-radius: 12px;
    border: 1px solid var(--light-gray-color);
}

.help-together-props__table-row {
    display: flex;
    border-bottom: 1px solid var(--light-gray-color);
}

.help-together-props__table-row:last-child {
    border-bottom: none;
}

.help-together-props__table-left {
    flex-shrink: 0;
    width: 220px;
    padding: 10px 16px 10px 16px;
    border-right: 1px solid var(--light-gray-color);
    font-size: 0.875rem;
}

.help-together-props__table-right {
    padding: 10px 16px 10px 16px;
    font-size: 0.875rem;
}

.help-together-props__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.help-together-partners {
    padding: 60px 0;
    background-color: #f2fbe7;
}

.help-together-partners__header {
    margin-bottom: 20px;
}

.help-together-partners__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.help-together-partners__left {
    max-width: 840px;
}

.help-together-partners__carousel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

.help-together-partners__carousel-item-img-link {
    display: block;
    flex-shrink: 0;
    width: 600px;
}

.help-together-partners__carousel-item-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.help-together-partners__carousel-item-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 600px);
    padding-left: 40px;
}

.help-together-partners__carousel-item-name {
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
}

.help-together-partners__carousel-item-desc {
    margin-bottom: 0;
}

.help-together-partners__carousel-block {
    position: relative;
}

.help-together-partners__carousel-arrow-left {
    z-index: 1000;
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.help-together-partners__carousel-arrow-left svg path {
    fill: var(--dark-color);
    transition: fill var(--transition-delay);
}

.help-together-partners__carousel-arrow-left:hover svg path {
    fill: var(--main-color);
}

.help-together-partners__carousel-arrow-right {
    z-index: 1000;
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.help-together-partners__carousel-arrow-right svg path {
    fill: var(--dark-color);
    transition: fill var(--transition-delay);
}

.help-together-partners__carousel-arrow-right:hover svg path {
    fill: var(--main-color);
}

.help-together-work {
    padding: 60px 0 44px 0;
}

.help-together-work__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}

.help-together-work__left {
    width: 660px;
}

.help-together-work__right {
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 660px);
}

.help-together-work__header {
    margin-bottom: 30px;
}

.help-together-work__desc {
    margin-bottom: 20px;
}

.help-together-work__img {
    border-radius: 12px;
}

.help-together-work__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.help-together-work__item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 31px;
    margin-bottom: 15px;
}

.help-together-work__item:last-child {
    margin-bottom: 0;
}

.help-together-work__item::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url('/upload/icons/template/goals-check.svg');
    background-size: contain;
}

.help-together-work__bottom-row {
    display: flex;
    justify-content: space-between;
}

.help-together-work__bottom-left {
    width: 560px;
    padding: 20px 30px;
    background-color: #5C8426;
    border-radius: 12px;
    color: var(--light-gray-color);
}

.help-together-work__bottom-right {
    width: 560px;
    padding: 20px 30px;
    background-color: #5C8426;
    border-radius: 12px;
    color: var(--light-gray-color);
}

.help-together-success {
    padding: 44px 0 16px 0;
}

.help-together-success__top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.help-together-success__header {
    margin-bottom: 0;
}

.help-together-success__become-link {
    flex-shrink: 0;
}

.help-together-success__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.help-together-success__item {
    width: calc((100% - 80px) / 3);
    padding-top: 20px;
    border-top: 2px solid var(--main-color);
}

.help-together-contacts {
    padding: 16px 0 0 0;
}

.help-together-contacts__row {
    display: flex;
    justify-content: space-between;
}

.help-together-contacts__left {
    width: 590px;
    padding: 60px;
    border: 2px solid var(--main-color);
    border-radius: 12px;
}

.help-together-contacts__right {
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 590px);
}

.contacts-together-contacts__name {
    margin-bottom: 20px;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--main-color);
}

.contacts-together-contacts__position {
    margin-bottom: 40px;
}

.contacts-together-contacts__label {
    margin-bottom: 0;
    color: var(--main-color);
}

.contacts-together-contacts__text {
    margin-bottom: 20px;
}

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

/*----- Конец страницы поможем вместе -----*/

/*----- Конкурсы в грантах -----*/
.grants-comps-sections {
    display: flex;
    margin-bottom: 40px;
}

.grants-comps-sections__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    padding: 16px;
    margin: 0;
    background-color: transparent;
    border: 1px solid var(--light-gray-color);
    border-right: none;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--transition-delay), border-color var(--transition-delay), color var(--transition-delay);
}

.grants-comps-sections__item:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.grants-comps-sections__item:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-right: 1px solid var(--light-gray-color);
}

.grants-comps-sections__item:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--dark-color);
}

.grants-comps-sections__item:hover {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--dark-color);
}

.grants-comps-sections__item:active {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--dark-color);
}

.grants-comps-sections__item_active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.grants-comps-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.grants-comps-list__item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 80px) / 3);
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
}

.grants-comps-list__item_hidden {
    display: none;
}

.grants-comps-list__item-img-link {
    margin-bottom: 20px;
}

.grants-comps-list__item-img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.grants-comps-list__item-name {
    margin-bottom: 20px;
    font-weight: 700;
}

.grants-comps-list__item-preview {
    margin-bottom: 20px;
}

.grants-comps-list__item-status {
    padding: 6px 20px;
    margin: 0 -15px 20px -15px;
    background-color: #f2fbe7;
    font-weight: 700;
}

.grants-comps-list__item-program-label {
    margin-bottom: 5px;
    font-size: 0.875rem;
    line-height: 1;
    color: var(--gray-text-color);
}

.grants-comps-list__item-program {
    margin-bottom: 15px;
}

.grants-comps-list__item-program:last-child {
    margin-bottom: 0;
}

.grants-comps-detail img {
    border-radius: 20px;
}

.grants-comps-detail__top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.grants-comps-detail__top-left {
    display: flex;
    align-items: center;
}

.grants-comps-detail__top-left .share {
    margin-right: 20px;
}

.grants-comps-detail__img {
    margin-bottom: 60px;
    border-radius: 20px;
}

.grants-comps-detail__text {
    margin-bottom: 60px;
}

.grants-comps-detail__docs {
    margin-top: -20px;
    margin-bottom: 40px;
}

#grants-comps-tabs {
    margin-bottom: 40px;
    border: none;
}

#grants-comps-tabs .ui-tabs-panel {
    padding: 0;
}

#grants-comps-tabs .ui-tabs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 40px;
    background: none;
    border: none;
}

#grants-comps-tabs .ui-tabs-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 45px;
    margin: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0;
    border: 1px solid var(--border-main-color);
    border-right: none;
    transition: border-color var(--transition-delay), background-color var(--transition-delay), color var(--transition-delay);
}

#grants-comps-tabs .ui-tabs-tab:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

#grants-comps-tabs .ui-tabs-tab:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-right: 1px solid var(--border-main-color);
}

#grants-comps-tabs .ui-tabs-tab:focus {
    background-color: var(--border-main-color);
    border-color: var(--border-main-color);
    color: var(--light-color);
}

#grants-comps-tabs .ui-tabs-tab:hover {
    background-color: var(--border-main-color);
    border-color: var(--border-main-color);
    color: var(--light-color);
}

#grants-comps-tabs .ui-tabs-tab:active {
    background-color: var(--border-main-color);
    border-color: var(--border-main-color);
    color: var(--light-color);
}

#grants-comps-tabs .ui-tabs-tab.ui-tabs-active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.grants-comps-detail__order-link {
    background-color: var(--gray-link);
    border-color: var(--gray-link);
    cursor: not-allowed;
}

/*----- Конец конкурсов в грантах -----*/

/*----- Пилотные проекты -----*/
.pilot__row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pilot__item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 80px) / 3);
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
}

.pilot__item_hidden {
    display: none;
}

.pilot__item-img-link {
    margin-bottom: 20px;
}

.pilot__item-img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.pilot__item-name {
    margin-bottom: 20px;
    font-weight: 700;
}

.pilot__item-preview {
    margin-bottom: 20px;
}

.pilot__item-status {
    padding: 6px 20px;
    margin: 0 -15px 20px -15px;
    background-color: #f2fbe7;
    font-weight: 700;
}

.pilot__item-program-label {
    margin-bottom: 5px;
    font-size: 0.875rem;
    line-height: 1;
    color: var(--gray-text-color);
}

.pilot__item-program {
    margin-bottom: 15px;
}

.pilot__item-program:last-child {
    margin-bottom: 0;
}

.pilot__item-tags {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pilot__item-tag {
    margin-bottom: 10px;
    word-wrap: break-word;
}

.pilot__item-tag:last-child {
    margin-bottom: 0;
}

.pilot-detail__image {
    margin-bottom: 40px;
    border-radius: 12px;
}

.pilot-detail__text-block {
    margin-bottom: 40px;
}

.pilot-detail__share {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

/*----- Конец пилотных проектов -----*/

/*----- Региональные комплексы мер -----*/
.grants-info-sections {
    display: flex;
    margin-bottom: 40px;
}

.grants-info-sections__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    padding: 16px;
    margin: 0;
    background-color: transparent;
    border: 1px solid var(--light-gray-color);
    border-right: none;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--transition-delay), border-color var(--transition-delay), color var(--transition-delay);
}

.grants-info-sections__item:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.grants-info-sections__item:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-right: 1px solid var(--light-gray-color);
}

.grants-info-sections__item:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--dark-color);
}

.grants-info-sections__item:hover {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--dark-color);
}

.grants-info-sections__item:active {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--dark-color);
}

.grants-info-sections__item_active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.grants-info__item-name {
    margin-bottom: 20px;
    font-weight: 700;
}

/*----- Конец региональных комплексов мер -----*/

/*----- Реестр получателей грантов -----*/
.grants-register-sections {
    display: flex;
    margin-bottom: 40px;
}

.grants-register-sections__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    padding: 16px;
    margin: 0;
    background-color: transparent;
    border: 1px solid var(--light-gray-color);
    border-right: none;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--transition-delay), border-color var(--transition-delay), color var(--transition-delay);
}

.grants-register-sections__item:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.grants-register-sections__item:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-right: 1px solid var(--light-gray-color);
}

.grants-register-sections__item:focus {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--dark-color);
}

.grants-register-sections__item:hover {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--dark-color);
}

.grants-register-sections__item:active {
    background-color: var(--light-gray-color);
    border-color: var(--light-gray-color);
    color: var(--dark-color);
}

.grants-register-sections__item_active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.grants-register__filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-color);
}

#grants-register-years-button {
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

#grants-register-years-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: normal;
    color: var(--light-color);
}

/*----- Конец реестра получателей грантов -----*/

/*----- Стажировочные площадки -----*/
.interns__top-desc {
    margin-bottom: 40px;
}

.interns__filter-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-color);
}

.interns__filter-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#interns-subject-button {
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

#interns-subject-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: normal;
    color: var(--light-color);
}

#interns-subject-menu {
    max-width: 350px;
    max-height: 250px;
}

#interns-sections-button {
    width: auto;
    max-width: 200px;
    padding: 0;
    margin: 0 60px 0 0;
    background: none;
    border: none;
}

#interns-sections-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: normal;
    color: var(--light-color);
}

#interns-sections-menu {
    max-width: 350px;
    max-height: 250px;
}

#interns-topic-button {
    width: auto;
    max-width: 200px;
    padding: 0;
    margin: 0 60px 0 0;
    background: none;
    border: none;
}

#interns-topic-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: normal;
    color: var(--light-color);
}

#interns-topic-menu {
    max-width: 350px;
    max-height: 250px;
}

.interns-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.interns-list__item {
    width: calc((100% - 80px) / 3);
    height: auto;
}

.interns-list__item_hidden {
    display: none;
}

.interns-list__item-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    transition: color var(--transition-delay), background-color var(--transition-delay), border-color var(--transition-delay);
}

.interns-list__item-link:hover {
    background-color: var(--main-color);
    color: var(--light-text-color);
}

.interns-list__item-img {
    border-radius: 8px;
    margin-bottom: 15px;
}

.interns-list__item-section {
    margin-bottom: 15px;
}

.interns-detail__header {
    margin-bottom: 15px;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--main-color);
}

.interns-detail__header_with_border {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--main-color);
}

.interns-detail__direction {
    padding: 0;
    margin-bottom: 60px;
    font-size: 1.5rem;
    font-weight: 700;
}

.interns-detail__row {
    display: flex;
    justify-content: space-between;
}

.interns-detail__left {
    display: flex;
    flex-direction: column;
    width: calc((100% - 80px) / 3);
}

.interns-detail__center {
    display: flex;
    flex-direction: column;
    width: calc((100% - 80px) / 3);
}

.interns-detail__right {
    display: flex;
    flex-direction: column;
    width: calc((100% - 80px) / 3);
}

.interns-detail__desc {
    margin-bottom: 40px;
}

.interns-detail__desc:last-child {
    margin-bottom: 0;
}

.interns-detail__image {
    margin-bottom: 40px;
    border-radius: 12px;
}

.interns-detail__image:last-child {
    margin-bottom: 0;
}

/*----- Конец стажировочных площадок -----*/

/*----- Карта деятельности фонда -----*/
.fond-activity-map {
    margin-bottom: 60px;
}

.fond-activity-map__map svg path {
    cursor: pointer;
    transition: fill var(--transition-delay), stroke var(--transition-delay);
}

.fond-activity-map__map svg path:hover {
    fill: var(--gray-color);
}

/*----- Конец карты деятельности фонда -----*/

/*----- Лучшие практики -----*/
.best-practices-top__top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.best-practices-top__top-left {
    flex-shrink: 0;
    width: 360px;
}

.best-practices-top__top-right {
    flex-shrink: 0;
    width: 760px;
}

.best-practices-top__bottom-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.best-practices-top__bottom-left {
    flex-shrink: 0;
    width: 360px;
}

.best-practices-top__bottom-right {
    flex-direction: column;
    flex-shrink: 0;
    width: 760px;
}

.best-practices-top__image {
    border-radius: 8px;
}

.best-practices-top__goals-row {
    display: flex;
    margin-bottom: 40px;
}

.best-practices-top__goals-left {
    flex-shrink: 0;
    width: 260px;
    padding-right: 20px;
    border-right: 2px solid var(--main-color);
    text-align: right;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--main-color);
}

.best-practices-top__goals-right {
    padding-left: 20px;
}

.best-practices-top__tasks-row {
    display: flex;
    margin-bottom: 20px;
}

.best-practices-top__tasks-row:last-child {
    margin-bottom: 0;
}

.best-practices-top__tasks-left {
    flex-shrink: 0;
    width: 260px;
    padding-right: 20px;
    border-right: 2px solid var(--main-color);
    text-align: right;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--main-color);
}

.best-practices-top__tasks-right {
    padding-left: 20px;
}

.best-practices-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    margin: 0 0 40px 0;
    list-style: none;
}

.best-practices__item {
    width: calc((100% - 120px) / 4);
    height: auto;
}

.best-practices__item_hidden {
    display: none;
}

.best-practices__item-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    transition: color var(--transition-delay), background-color var(--transition-delay), border-color var(--transition-delay);
}

.best-practices__item-link:hover {
    background-color: var(--main-color);
    color: var(--light-text-color);
}

.best-practices__item-img {
    border-radius: 8px;
    margin-bottom: 15px;
}

.best-practices__item-name {
    margin-bottom: 15px;
}

.best-practices__item-subject {
    display: inline-flex;
    align-self: flex-start;
    padding: 10px 18px;
    margin-top: auto;
    background-color: #E7E7E7;
    border-radius: 24px;
    font-size: 0.875rem;
    color: var(--gray-color);
}

.best-practices__filter-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-color);
}

.best-practices__filter-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#best-practices-subject-button {
    width: auto;
    padding: 0;
    margin: 0 60px 0 0;
    background: none;
    border: none;
}

#best-practices-subject-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: normal;
    color: var(--light-color);
}

#best-practices-subject-menu {
    max-width: 350px;
    max-height: 250px;
}

#best-practices-year-button {
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

#best-practices-year-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: normal;
    color: var(--light-color);
}

#best-practices-year-menu {
    max-width: 350px;
    max-height: 250px;
}

#best-practices-direction-button {
    width: auto;
    padding: 0;
    margin: 0 60px 0 0;
    background: none;
    border: none;
}

#best-practices-direction-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: normal;
    color: var(--light-color);
}

#best-practices-direction-menu {
    max-width: 350px;
    max-height: 250px;
}

.best-practices-detail__top-row {
    display: flex;
    justify-content: space-between;
}

.best-practices-detail__top-left {
    width: 260px;
}

.best-practices-detail__top-right {
    width: calc(100% - 300px);
}

.best-practices-detail__header-left {
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid var(--main-color);
    font-size: 1.25rem;
    color: var(--main-color);
}

.best-practices-detail__text-left {
    margin: 0 0 40px 0;
}

.best-practices-detail__text-block {
    margin-bottom: 40px;
}

.best-practices-detail__detail-image {
    margin-bottom: 40px;
    border-radius: 20px;
}

.best-practices-detail__result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.best-practices-detail__result-left {
    width: 260px;
    text-align: right;
    font-size: 1.4375rem;
    line-height: 1;
    color: var(--main-color);
}

.best-practices-detail__result-right {
    width: calc(100% - 300px);
    padding-left: 40px;
    border-left: 2px solid var(--main-color);
}

.best-practices-detail__result-p {
    margin-bottom: 20px;
}

.best-practices-detail__result-p:last-child {
    margin-bottom: 0;
}

.best-practices-detail__video {
    margin-bottom: 40px;
}

.best-practices-detail__video iframe {
    border-radius: 20px;
}

.best-practices-detail__bottom-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.best-practices-detail__bottom-left {
    display: flex;
    justify-self: flex-end;
    width: 260px;
}

.best-practices-detail__bottom-right {
    width: calc(100% - 300px);
}

.best-practices-detail__section-link {
    display: inline-flex;
    align-self: flex-end;
    padding: 10px 28px;
    border-radius: 6px;
    border: 1px solid var(--main-color);
    font-weight: 700;
    color: var(--main-color);
    transition: background-color var(--transition-delay), color var(--transition-delay);
}

.best-practices-detail__section-link:focus {
    background-color: var(--main-color);
    color: var(--light-color);
}

.best-practices-detail__section-link:hover {
    background-color: var(--main-color);
    color: var(--light-color);
}

.best-practices-detail__section-link:active {
    background-color: var(--main-color);
    color: var(--light-color);
}

/*----- Конец лучших практик -----*/

/*----- Всероссийские проекты -----*/
.russian-projects__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.russian-projects__item {
    width: calc((100% - 120px) / 4);
    height: auto;
}

.russian-projects__item-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    transition: background-color var(--transition-delay), color var(--transition-delay);
}

.russian-projects__item-link:hover {
    background-color: var(--main-color);
    color: var(--light-color);
}

.russian-projects__item-image {
    margin-bottom: 25px;
    border-radius: 8px;
}

.russian-projects-detail__top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.russian-projects-detail__top-left {
    width: 660px;
}

.russian-projects-detail__top-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 460px;
}

.russian-projects-detail__detail-image {
    border-radius: 12px;
}

.russian-projects-detail__logo {
    border-radius: 12px;
}

.russian-projects-detail__center-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.russian-projects-detail__center-left {
    width: 660px;
}

.russian-projects-detail__center-left a {
    font-weight: bold;
    text-decoration: underline;
}

.russian-projects-detail__center-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 460px;
}

.russian-projects-detail__elements-carousel-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 40px;
    margin-bottom: 40px;
}

.russian-projects-detail__elements-carousel {
    width: 184px;
}

.russian-projects-detail__elements-item {
    display: inline-flex;
    padding: 8px 16px;
    background-color: var(--light-gray-color);
    border-radius: 40px;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--gray-color);
    transition: background-color var(--transition-delay), color var(--transition-delay);
}

.russian-projects-detail__elements-item:focus {
    background-color: var(--main-color);
    color: var(--light-text-color);
}

.russian-projects-detail__elements-item:hover {
    background-color: var(--main-color);
    color: var(--light-text-color);
}

.russian-projects-detail__elements-item:active {
    background-color: var(--main-color);
    color: var(--light-text-color);
}

.russian-projects-detail__elements-item_active {
    background-color: var(--main-color);
    color: var(--light-text-color);
}

.russian-projects-detail__arrow-left {
    padding: 4px 20px 0 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.russian-projects-detail__arrow-left svg path {
    fill: var(--gray-color);
}

.russian-projects-detail__arrow-right {
    padding: 4px 0 0 20px;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.russian-projects-detail__arrow-right svg path {
    fill: var(--gray-color);
}

.russian-projects-detail__right-inner {
    width: 100%;
    padding-left: 30px;
    border-left: 2px solid var(--main-color);
}

.russian-projects-detail__right-header {
    margin-bottom: 40px;
    color: var(--main-color);
}

.russian-projects-detail__docs {
    margin-bottom: 40px;
}

.russian-projects-detail__share {
    margin-bottom: 40px;
}

.russian-projects-detail__key-carousel-wrapper {
    position: relative;
    padding: 0 40px;
}

.russian-projects-detail__key-carousel-wrapper .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.russian-projects-detail__key-carousel-item {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 26px 16px;
    /* margin-top: 15px; */
    background-color: #f2fbe7;
    border-radius: 12px;
    color: var(--light-text-color);
}

/* .center>.russian-projects-detail__key-carousel-item {
    width: 360px;
    height: auto;
    margin-top: 0;
} */

.russian-projects-detail__key-carousel .owl-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.russian-projects-detail__key-carousel-arrow-left {
    z-index: 2000;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: var(--light-color);
    border: none;
    cursor: pointer;
}

.russian-projects-detail__key-carousel-arrow-left svg path {
    fill: var(--dark-color);
}

.russian-projects-detail__key-carousel-arrow-right {
    z-index: 2000;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: var(--light-color);
    border: none;
    cursor: pointer;
}

.russian-projects-detail__key-carousel-arrow-right svg path {
    fill: var(--dark-color);
}

.russian-projects-detail__key-header {
    margin-bottom: 40px;
    font-size: 2.25rem;
}

.russian-projects-detail__key-carousel-date {
    margin-bottom: 5px;
    color: var(--gray-text-color);
}

.russian-projects-detail__key-carousel-name {
    margin-bottom: 0;
    color: #000;
}

/*----- Конец всероссийских проектов -----*/

/*----- Методические пособия -----*/
.child-manuals {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.child-manuals__item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 80px) / 3);
}

.child-manuals__item-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.child-manuals__item-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
}

.child-manuals__item-icon {
    flex-shrink: 0;
}

/*----- Конец методических пособий -----*/

/*----- Всеросийские проекты. ДТД -----*/
.child-projects {
    display: flex;
    flex-direction: column;
}

.child-projects__container {
    margin-bottom: 40px;
}

.child-projects__top-desc {
    margin-bottom: 40px;
}

.child-projects-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.child-projects-list__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 80px) / 3);
    padding: 16px 36px;
    border-radius: 8px;
    border: 1px solid var(--border-main-color);
    text-align: center;
    text-decoration: none;
    transition: color var(--transition-delay), background-color var(--transition-delay), border-color var(--transition-delay);
}

.child-projects-list__item:focus {
    background-color: var(--border-main-color);
}

.child-projects-list__item:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.child-projects-list__item:active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--light-color);
}

.child-projects-detail {
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
}

.child-projects-detail__left {
    flex-shrink: 0;
    width: 840px;
}

.child-projects-detail__left a {
    font-weight: bold;
    text-decoration: underline;
    color: #0000ff;
}

.child-projects-detail__left a:hover {
    color: var(--main-color);
}

.child-projects-detail__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    width: calc(100% - 840px);
}

.child-projects-detail__elements {
    padding: 0;
    margin: 0;
    list-style: none;
}

.child-projects-detail__elements-item {
    position: relative;
}

.child-projects-detail__elements-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: calc(50% - 1px);
    width: 2px;
    height: 25px;
    background-color: var(--main-color);
}

.child-projects-detail__elements-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    width: 100px;
    height: 42px;
    background-color: var(--main-color);
    border-radius: 40px;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--light-color);
}

.child-projects-detail__elements-link:hover {
    color: var(--light-color);
}

.child-projects-detail__all-docs {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
    margin-bottom: 60px;
    border-top: 1px solid var(--main-color);
}

.child-projects-detail__all-docs-item {
    width: calc((100% - 80px) / 3);
}

.child-project-detail__section-link {
    display: inline-flex;
    padding: 10px 30px;
    border-radius: 6px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    transition: color var(--transition-delay), background-color var(--transition-delay), border-color var(--transition-delay);
}

.child-project-detail__section-link:focus {
    background-color: var(--border-main-color);
    border: 1px solid var(--border-main-color);
    color: var(--light-color);
}

.child-project-detail__section-link:hover {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--light-color);
}

.child-project-detail__section-link:active {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--light-color);
}

.child-projects-slider {
    position: relative;
    margin-top: auto;
}

.child-projects-slider__item-image {
    border-radius: 20px;
}

.child-projects-slider__arrow-left {
    z-index: 1000;
    position: absolute;
    top: calc(50% - 12px);
    left: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.child-projects-slider__arrow-right {
    z-index: 1000;
    position: absolute;
    top: calc(50% - 12px);
    right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}

/*----- Конец Всеросийские проекты. ДТД -----*/

/*----- Фотогалерея -----*/
.photo-gallery__container {
    display: flex;
}

.photo-gallery__container iframe {
    border-radius: 20px;
    width: 100%;
}

.photo-gallery__left {
    display: flex;
    flex-direction: column;
    width: 400px;
    padding-right: 20px;
}

.photo-gallery__right {
    width: calc(100% - 400px);
}

.photo-gallery__list {
    max-height: 700px;
    overflow-y: scroll;
    direction: rtl;
    padding-left: 5px;
}

.photo-gallery__list::-webkit-scrollbar-button {
    background-repeat: no-repeat;
    width: 10px;
    height: 0px
}

.photo-gallery__list::-webkit-scrollbar-track {
    background-color: #fff;
    border: 1px solid var(--main-color);
    border-radius: 4px;
}

.photo-gallery__list::-webkit-scrollbar-thumb {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: var(--main-color);
}

.photo-gallery__list::-webkit-scrollbar-thumb:hover {
    background-color: var(--main-color);
}

.photo-gallery__list::-webkit-resizer {
    background-image: url('');
    background-repeat: no-repeat;
    width: 10px;
    height: 0px
}

.photo-gallery__list::-webkit-scrollbar {
    width: 10px;
    border-radius: 4px;
}

.photo-gallery__item {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
    direction: ltr;
}

.photo-gallery__image {
    margin-right: 15px;
    border-radius: 10px;
}

.photo-gallery__name {
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    color: #000;
}

.photo-gallery-slider__wrapper {
    position: relative;
    border-radius: 10px;
}

.photo-gallery-slider__for {
    margin-bottom: 40px;
}

.photo-gallery-slider__image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

.photo-gallery-slider__name {
    text-align: center;
}

.photo-gallery-slider__nav-item {
    padding: 20px;
    cursor: pointer;
}

.photo-gallery-slider__nav-image {
    border-radius: 10px;
}

.photo-gallery-slider__arrow-left {
    z-index: 500;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    background-color: var(--border-main-color);
    border: none;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    transition: background-color var(--transition-delay);
}

.photo-gallery-slider__arrow-left:focus {
    background-color: var(--main-color);
}

.photo-gallery-slider__arrow-left:hover {
    background-color: var(--main-color);
}

.photo-gallery-slider__arrow-left:active {
    background-color: var(--main-color);
}

.photo-gallery-slider__arrow-right {
    z-index: 500;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    background-color: var(--border-main-color);
    border: none;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    cursor: pointer;
    transition: background-color var(--transition-delay);
}

.photo-gallery-slider__arrow-right:focus {
    background-color: var(--main-color);
}

.photo-gallery-slider__arrow-right:hover {
    background-color: var(--main-color);
}

.photo-gallery-slider__arrow-right:active {
    background-color: var(--main-color);
}

/*----- Конец фотогалереи -----*/

/*----- Новости -----*/
.news__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.news__item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 120px) / 4);
}

.news__item-img-link {
    position: relative;
    display: block;
    height: 160px;
    margin-bottom: 20px;
}

.news__item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.news__item-video-icon {
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.news__item-date {
    margin-top: auto;
}

.news__item-name {
    display: block;
    margin-bottom: 20px;
}

.news-detail__video-block {
    margin-bottom: 40px;
}

.news-detail {
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.news-detail a {
    font-weight: bold;
    text-decoration: underline;
}

.news-detail img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.news-detail__detail-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 40px;
}

.news-detail__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.news-more__container {
    position: relative;
}

.news-more__item {
    display: flex;
    flex-direction: column;
}

.news-more__item-img-link {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.news-more__item-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.news-more__item-video-icon {
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.news-more__item-date {
    margin-top: auto;
}

.news-more__item-name {
    display: block;
    margin-bottom: 20px;
}

.news-more__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-more__header {
    margin-bottom: 0;
}

.news-more__arrows {
    display: flex;
}

.news-more__arrow-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.news-more__arrow-left svg path {
    fill: var(--dark-color);
}

.news-more__arrow-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.news-more__arrow-right svg path {
    fill: var(--dark-color);
}

/*----- Конец новостей -----*/

/*----- Карта активности фонда -----*/
.fond-activity-map__modal {
    border-radius: 12px;
}

/*----- Конец карты активности фонда -----*/

/*----- Рекламно информационные материалы -----*/
.inform-inner img {
    border-radius: 20px;
}

/*----- Конец рекламно информационных материалов -----*/

/*----- Закупки -----*/
.purchases-detail__header {
    margin-bottom: 20px;
}

.purchases-detail__item {
    margin-bottom: 60px;
}

.purchases-detail__item:last-child {
    margin-bottom: 0;
}

.interns-detail__return-link {
    display: inline-flex;
    align-self: flex-start;
    padding: 10px 28px;
    margin-top: auto;
    border-radius: 6px;
    border: 1px solid var(--main-color);
    font-weight: 700;
    color: var(--main-color);
    transition: background-color var(--transition-delay), color var(--transition-delay);
}

.interns-detail__return-link:focus {
    background-color: var(--main-color);
    color: var(--light-color);
}

.interns-detail__return-link:hover {
    background-color: var(--main-color);
    color: var(--light-color);
}

.interns-detail__return-link:active {
    background-color: var(--main-color);
    color: var(--light-color);
}

/*----- Конец закупок -----*/

/*----- Страница поиска -----*/
.search-page {
    padding-bottom: 2rem;
}

.search-page h1 {
    margin-bottom: 1rem;
}

.search-page form {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2rem;
    padding: 14px;
}

.search-page input {
    background: transparent;
    border: none;
    width: 100%;
}

.search-page button[type="submit"] {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.search-page__item {
    border-top: 1px solid #ccc;
    margin-top: 1rem;
    padding-top: 1rem;
}

.search-page__item a {
    margin-bottom: 1rem;
    text-decoration: underline;
}

.search-page__item a:hover {
    color: #8cc63f;
}

.search-page__item small,
.search-page__item small a {
    color: #999;
}

.search-page__item small a:hover {
    color: #000;
}

.search-page__navigation {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.search-page .notetext {
    color: #999;
}

/*----- Конец страницы поиска -----*/