.intern-card {
    position: relative;
    display: flex;
    height: calc(100% - 25px);
    padding: 20px;
    margin-bottom: 25px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 26px;
    background: #F4F4F4;

    a.anchor {
        display: block;
        position: relative;
        top: -100px;
        visibility: hidden;
    }

    .copy-btn {
        position: absolute;
        left: 20px;
        bottom: 30px;
        cursor: pointer;
        border: none;
        background: none;
        font-size: 16px;
    }

    .tooltip {
        visibility: hidden;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        bottom: 150%;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .copy-btn:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }

    .intern-card__header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
    }

    .intern-card__date {
        width: 100%;
        color: #424B5A;
        text-align: right;
        font-size: 15px;
        font-style: normal;
        font-weight: 300;
        line-height: 145%; /* 21.75px */
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .intern-card__ttl {
        color: #000;
        font-size: 25px;
        font-style: normal;
        font-weight: 600;
        line-height: 93.6%;
    }

    .intern-card__affiliation {
        color: #000;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }

    .intern-card__text {
        color: #424B5A;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;

    }

    .intern-card__quote {
        margin-top: 26px;
        width: 100%;
        display: flex;
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        align-self: stretch;
        border-radius: 5px;
        background: #FFF;
        color: #424B5A;
        text-align: center;
        font-size: 16px;
        font-style: italic;
        font-weight: 400;
        line-height: 130%;

    }

    .intern-card__signature {
        width: 100%;
        color: #424B5A;
        font-size: 16px;
        font-style: italic;
        font-weight: 700;
        line-height: 130%;
    }


    .spoiler-switcher {
        margin-top: 26px;
        align-self: flex-end;
        border-bottom: none;
        display: none;
        position: absolute;
        right: 20px;
        bottom: 20px;

    }

    .button-wrapper {
        height: 42px;
        display: block;
    }


    .text-container {
        overflow: hidden;
        line-height: 1.5;
        max-height: 4.5em;
        transition: max-height 1s ease-in-out;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .expanded {
        max-height: 999px;
        -webkit-line-clamp: unset;
    }
}

.organization-card {
    border-radius: 5px;
    background: #F4F4F4;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;

    a.anchor {
        display: block;
        position: relative;
        top: -100px;
        visibility: hidden;
    }

    .copy-btn {
        position: absolute;
        left: 20px;
        bottom: 20px;
        cursor: pointer;
        border: none;
        background: none;
        font-size: 16px;
    }

    .tooltip {
        visibility: hidden;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        bottom: 150%;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .copy-btn:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }

    .header {
        display: flex;
        gap: 32px;

        .logo {
            flex-basis: 33%;
            min-width: 33%;

            img {
                width: 100%;
                object-fit: contain;
            }
        }

        .title-wrapper {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;


            .title {
                display: flex;
                justify-content: space-between;
                gap: 16px;
                color: #000;
                font-size: 25px;
                font-style: normal;
                font-weight: 600;
                line-height: 120%;

                .years {
                    color: #424B5A;
                    text-align: right;
                    font-size: 15px;
                    font-style: normal;
                    font-weight: 300;
                    line-height: 145%;
                    letter-spacing: 1px;
                    text-transform: uppercase;
                    white-space: nowrap;
                }

            }

            .city, .name {
                color: #000;
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 130%;
            }

            .name {
                margin-top: 12px;

            }
        }
    }

    .spoiler {
        width: 100%;
        display: flex;
        flex-direction: column;

        .spoiler-switcher {
            align-self: flex-end;
            border-bottom: none;
        }
    }

    .textContainer {
        max-height: 100%;
        margin: 24px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: max-height 1s ease; /* Анімація зміни висоти */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        align-self: stretch;
        -webkit-mask-image: none;
        mask-image: none;
        padding: 10px;
        background: #fff;
        border-radius: 5px;

        .project-date, .project-title {
            color: #000;
            font-size: 15px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }

        .project-title {
            font-weight: 400;

            a {
                color: #E88874;
                text-decoration: underline;
            }
        }
    }

}


.cms-editor {
    text-align: justify;
}

.single-scholarship .cms-editor {
    margin-top: -25px;
}

.prime-head__ttl {
    margin: -5px 0 0;
}

.prime-subhead {
    margin: 20px 0 20px;
}

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

.prime-link {
    margin-bottom: 30px;
}

.prime-link .btn-href {
    padding-bottom: 10px;
}

.prime-link .btn-href::after {
    content: '';
    background: #b2223e;
    position: absolute;
    width: calc(100%);
    height: 1px;
    bottom: 0;
}

.shift-text.mb30 strong {
    font-weight: 600;
}

.related-posts span {
    width: 100%;
    margin-top: -15px;
    display: block;
}

.post-featured {
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    margin-bottom: 50px;
    color: #fff;
    padding: 29px 21px 28px 10px;
    background-color: #e88874;
}

.post-featured__ttl {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.post-featured__subttl {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
}

.post-featured__descr {
    color: #3e4244;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 38px;
}

.post-featured__additional {
    font-size: 17px;
    font-weight: 600;
}

.pub-list__cell-row {
    display: flex;
    width: 100%;
    align-items: center;
}

.pub-list__cell-row .pub-list__ttl {
    margin-bottom: 0;
}

.pub-list__cell-row .pub-info__desc {
    margin-bottom: 5px;
}

.pub-list__cell-row p.pub-info__desc {
    margin-bottom: 8px;
}

.hello {
    position: fixed;
    z-index: 999999;
    height: 200px;
    width: 100px;
    transition: all .5s;
}

.hello.top {
    top: -200px;
    transform: rotate(180deg);
}

.hello.bottom {
    top: auto;
    bottom: -200px;
    transform: rotate(0);
}

.hello.left {
    top: -50px;
    left: -150px;
    transform: rotate(90deg);
}

.hello.right {
    top: -50px;
    left: auto;
    right: -150px;
    transform: rotate(270deg);
}

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

.a2a_kit {
    width: auto !important;
    display: inline-block;
}

.a2a_kit .a2a_svg {
    display: none !important;
}

.sg-hide {
    display: none;
}

.admin-bar .quick-srch:before {
    height: 102px;
}

.btn {
    cursor: pointer;
}

.pagination-block .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    font-size: 16px;
    line-height: 26px;
    cursor: pointer;
    padding: 1px 10px;
    margin: 0 1px;
    border: solid 1px transparent;
}

.pagination-block .current,
.pagination-block a:hover {
    border: 1px solid #3e4244;
}

.pagination-block .next {
    font-size: 0;
    position: relative;
}

.pagination-block .next:before {
    font-family: 'icomoon' !important;
    content: "\e910";
    font-size: 23px;
}

.nav-links {
    display: flex;
    justify-content: center;
}

.pagination-block .prev {
    font-size: 0;
    position: relative;
}

.pagination-block .prev:before {
    font-family: 'icomoon' !important;
    content: "\e910";
    font-size: 23px;
    transform: rotate(180deg);
}

.year-nav .active {
    background-color: #e88874;
    color: #000;
}

.year-nav .active:after {
    background-color: #e88874;
}

.sg_course_title {
    font-size: 24px;
    color: #000;
}

.sg_link {
    text-decoration: underline;
}

.content-wrapper__sidebar ul.aside-nav {
    padding: 0;
    list-style: none;
}

.content-wrapper__sidebar ul.aside-nav li {
    margin-bottom: 8px;
}

.content-wrapper__sidebar ul.aside-nav li a {
    font-size: 18px;
}

.content-wrapper__sidebar ul.aside-nav li a:hover {
    font-weight: 700;
    transition: all .3s;
}

.content-wrapper__sidebar ul.aside-nav .current_page_item a {
    font-weight: 700;
}

.post.post--horizontal-center .post__pict img {
    width: 100%;
}

.project-team__short-article .post__pict img {
    height: 170px;
    width: 300px;
    max-width: 255px;
}

.single-team .post__capt,
.project-team__short-article .post__capt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-team__short-article .post__capt {
    max-width: 255px;

    h3, p {
        font-weight: 600;
        font-size: 18px;
        line-height: 130%;
        margin: 0;
    }

    p {
        font-weight: 400;
    }
}

.single-team {

    .singleCV {
        display: flex;
        justify-content: space-between;

        .tdu {
            display: flex;
            align-items: center;
            padding: 12px 18px;
            border: 1px solid #606363;
            text-decoration: none;

            a {
                color: #000;
                text-align: center;
                font-size: 18px;
                font-weight: 400;
                line-height: 130%;
            }
        }
    }

    .post__capt {
        padding-left: 0;
        margin-bottom: 48px;

        h3 {
            font-size: 25px;
            font-weight: 700;
            line-height: 130%;
            margin: 0;
        }

        p {
            margin: 0;
            font-weight: 400 !important;
        }
    }

    .post__pict {
        margin-bottom: 0;
    }

    .breadcrumb-nav {
        max-width: 350px;
    }

    .post {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .tab {
        position: relative;
    }

    .tab input {
        position: absolute;
        opacity: 0;
        z-index: -1;
    }

    .tab__content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.35s;

        p {
            padding: 1rem 1rem 1rem 0;
        }

        ul, ol {
            padding: 1rem 1rem 1rem 1.5rem;
        }
    }

    .tab input:checked ~ .tab__content {
        max-height: 1000rem;
    }

    .accordion {
        color: #606363;
        overflow: hidden;
    }

    .tab__label,
    .tab__close {
        display: flex;
        color: #606363;
        background: #fff;
        cursor: pointer;
        font-weight: 400;
        font-size: 24px;
    }

    .tab__label {
        justify-content: space-between;
        padding: 1rem 1rem 1rem 0;
        border-bottom: 1px solid #606363;
    }

    .tab__label::after {
        content: "▾";
        width: 1em;
        height: 1em;
        text-align: center;
        transition: all 0.5s;
    }

    .tab input:checked + .tab__label::after {
        transform: translateY(0.5em) rotate(-180deg);
    }
}

.textContainer {
    max-height: 24em;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: max-height 1s ease; /* Анімація зміни висоти */
}

.textContainer.expanded {
    -webkit-mask-image: none;
    mask-image: none;
}

.toggleButton-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#toggleButton {
    border-bottom: none;
    display: none;
}

#toggleButton.show {
    display: block;
}

.single-team .action-list__el {

    div, a {
        font-weight: 700;
        font-size: 18px;
        line-height: 130%;
        margin-bottom: 8px;
    }

    a {
        font-weight: 400;
    }

}

.cms-editor a {
    color: #e88874;
    font-weight: 500;
}

.no-found {
    padding: 0 15px;
    margin: 25px 0;
    font-size: 18px;
}

.sg-read-more__button {
    display: flex;
    margin-left: auto;
}

.sg-read-more__button.opened::before {
    transform: rotate(180deg);
    top: 6px;
}

.cms-editor ul {
    padding-left: 40px;
}

.top-photo__img img {
    object-position: 50% 50%;
}

.aside-nav--md .aside-nav__link {
    max-width: 200px;
}

.cms-editor .posts.persons {
    border-bottom: solid 1px;
    border-top: solid 1px;
    padding-top: 30px;
    margin-bottom: 30px;
}

a figcaption.post__capt h3,
a figcaption.post__capt p {
    color: #3e4244;
}

span.aside-action__reload:before {
    padding-top: 10px;
}

.icon-refresh.aside-action__reload {
    cursor: pointer;
}

.search-year {
    color: #3e4244;
    font-size: 28px;
    font-weight: 600;
    border-bottom: 2px solid #3e4244;
    padding-bottom: 20px;
}

.demo-tabs__item a {
    color: #000;
}

.demo-tabs__btn.btn-ico {
    color: #fff
}

.sg-active {
    font-weight: bold;
}

.projects img {
    height: 315px;
    object-fit: cover;
    width: 100%;
}

.elected img {
    height: 320px;
    object-fit: cover;
    width: 100%;
}

.events img {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.sg_top {
    margin-top: 10px;
}

.participants-info__main a {
    color: #000
}

.detail-list a {
    color: #000
}

.sg_tdu {
    float: right;
    position: relative;
    padding: 10px 25px 10px 10px;
    border-bottom: 1px solid #3e4244;
    color: #3e4244;
    font-weight: 400;
}

.sg_tdu:before {
    content: '';
    position: absolute;
    top: 100%;
    right: 100%;
    width: 0;
    height: 1px;
    background-color: #000;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.sg_tdu:hover::before {
    width: 20px;
}

.shedule-block .shedule-info a {
    color: #1b1b1b;
    font-weight: 300;
}

.shedule-block .shedule-info a:hover {
    color: #f4d0a8;
}

.shedule-info__lng {
    margin-top: 15px;
}

.post__pict--max-315 {
    flex: 0 0 315px;
    max-width: 315px;
}

.post__pict--max-350 {
    max-width: 350px;
    height: 220px;
}

.post__pict--max-350.post__pict img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.persons .post__pict--max-350.post__pict,
.persons .post__pict--max-350.post__pict img {
    height: auto;
    max-width: 300px;
}

.page-id-21681 #footer,
.page-id-21683 #footer,
.page-id-1000 #footer,
.page-id-202 #footer,
.page-id-1841 #footer,
.page-id-1841 #footer,
.page-id-8638 #footer {
    background-color: #edb39f;
}

.page-id-159 .bg-red,
.page-id-1006 .bg-red,
.page-id-1006 #footer,
.page-id-159 #footer {
    background-color: #f4d0a8;
}

.page-id-159.menu-opened header:after,
.page-id-1006.menu-opened header:after {
    background-color: #edb39f;
}

.persons .post__capt span {
    font-weight: 600;
    color: #3e4244;
    margin-top: -15px;
    display: block;
}

.top-visual .visual-graph__img img {
    height: 520px;
    width: 100%;
    object-fit: cover;
}

.aside-accordion__opener {
    font-size: 16px;
}

.sub-nav {
    margin-top: -37px;
    top: auto;
}

.post__time {
    font-weight: 400;
}

.action-list__el .hover-line {
    font-weight: 600;
}

.cms-editor p {
    margin-top: 20px;
}

.img-list.logo-list img {
    height: 200px;
}

.participants-info__detail {
    display: flex;
}

.participants-info__detail a {
    color: #3e4244;
    text-decoration: underline;
}

.participants-info__detail a:hover {
    color: #000;
}

.participants-info__main .participants-info__ttl:not(:first-child) {
    margin-top: 10px;
}

a .participants-info__main h4 {
    text-decoration: underline;
    color: #000;
}

.cms-editor .posts.persons p {
    text-align: left;
    font-size: 18px !important;
}

.participants-list__cell {
    margin-bottom: 25px;
}

.pub-info__name {
    min-height: 10px;
    flex-shrink: 0;
}

.cms-editor p,
.cms-editor ul,
.cms-editor ol,
.cms-editor span {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 18px !important;
    font-weight: 300 !important;
}

.list-style.img-list.logo-list,
.list-style.img-list.logo-list strong {
    width: 100%;
    display: inline-block;
}

.list-style.img-list.logo-list li,
.list-style.img-list.logo-list strong li {
    width: auto;
    float: left;
    display: inline-block;
}

.img-list.logo-list img {
    max-width: 225px;
    height: auto;
}

.aside-accordion__content:before {
    display: none;
}

.aside-accordion__itm.aside-accordion__itm--opened::before {
    content: '';
    position: absolute;
    right: 0;
    left: 10px;
    bottom: -10px;
    height: 1px;
    background-color: #3e4244;
}

.aside-accordion__itm.aside-accordion__itm--opened .aside-accordion__content {
    overflow-y: auto !important;
}

.aside-accordion__itm.aside-accordion__itm--opened .aside-accordion__content .aside-filter {
    padding: 30px 5px 5px 10px;
}

.aside-nav__link.current-link {
    position: relative;
}

.aside-nav__link.current-link::before {
    content: '';
    border: solid 4px transparent;
    border-left-color: #3e4244;
    margin-top: 0;
    display: flex;
    position: absolute;
    left: -8px;
    top: 6px;
}

.cms-editor .alignleft {
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.cms-editor .alignright {
    display: inline-block;
    float: right;
    margin-left: 20px;
}

.cms-editor p.wp-caption-text {
    margin-top: 5px;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 18px;
}

.page-template-research-theme .posts .post {
    width: 100%;
}

.media-about .post__capt {
    width: calc(100% - 350px);
    word-break: break-word;
}

.media-about .post__capt p a {
    font-weight: 600;
}

.media-about .post__capt .post__ttl {
    margin-bottom: 15px;
    display: flex;
}

.visual-intro .visual-intro__ttl--big {
    font-size: 47px;
    overflow: hidden;
    word-break: break-word;
}

.event-block__ttl {
    font-size: 18px;
    font-weight: 600;
}

.event-block__subttl {
    font-size: 18px;
    font-weight: 300;
    margin: 5px 0 15px;
}

.event-list__elem.event-block p {
    margin-top: 0;
}

.event-block__details {
    margin-bottom: 10px;
}

.opportunities .slider4 {
    width: calc(100% + 30px);
    padding: 0 15px;
}

.opportunities .slider4.min .slick-track,
.opportunities .slider4.min .slick-list.draggable {
    display: flex;
    width: 100% !important;
}

.opportunities .post {
    padding-right: 15px;
}

.donors-main .underline-list__ttl {
    margin-bottom: 0;
}

.donors-main .underline-list__cell * + * {
    margin-top: 0;
}

.donors-main .underline-list__ttl,
.donors-main .underline-list q {
    text-decoration: none;
}

.donors-main .underline-list__ttl a,
.donors-main .underline-list q a {
    text-decoration: underline;
    color: #3e4244;
}

.post__capt .post__subttl {
    color: #3e4244;
    font-size: 16px;
    font-weight: 300;
    display: flex;
}

header {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 9;
}

.logged-in.admin-bar header {
    top: 32px;
}

#page-wrapper {
    padding-top: 70px;
}

footer {
    margin-top: auto;
}

#footer {
    /* background-color: #ccc; */
    color: #3e4244;
}

.footer__cont {
    padding-bottom: 70px;
}

.nav-list {
    font-size: 16px;
    line-height: 1.3;
}

.nav-list dt {
    margin-bottom: 15px;
}

.nav-list dd + dd {
    margin-top: 6px;
}

.nav-list + .nav-list,
.nav-list dd + dt {
    margin-top: 28px;
}

.nav-list__ttl {
    font-weight: bold;
}

.nav-list__link {
    display: inline-block;
    vertical-align: top;
    color: #3e4244;
}

.nav-list__link:hover {
    text-decoration: underline;
}

.site-logo--footer {
    margin: -15px 0 0;
    position: absolute;
    left: -50px;
    display: inline-block;
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}

.site-logo--footer:before {
    font-size: 40px;
}

.company-info address span,
.company-info * + * {
    display: flex;
}

.company-info__row .list-style.visit-list {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.company-info address {
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
}

footer .company-info a {
    font-size: 16px;
    text-decoration: none;
    margin-left: 3px;
}

.company-link {
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 28px;
    font-size: 12px;
    text-transform: uppercase;
    color: #3e4244;
}

#footer .company-link {
    font-size: 16px;
}

.social-nav__elem.icon-twitter {
    padding-top: 0;
    position: relative;
    display: inline-block;
}

.social-nav__elem.icon-twitter svg {
    top: 1px;
    position: absolute;
    width: 28px;
    height: 20px;
}

.social-nav__elem.icon-twitter:hover svg path {
    fill: #000;
}

.company-link:hover {
    text-decoration: underline;
}

#formRes {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    transform: translateX(-50%);
    z-index: 1;
    left: 50%;
    bottom: 50px;
}

#formRes.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 50px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 50px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 50px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 50px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

.subscribe-form {
    font-size: 15px;
}

.subscribe-form__holder {
    display: flex;
    border-style: solid;
    border-width: 0 0 2px;
    border-color: #3e4244;
    height: 40px;
}

.subscribe-form__ctrl {
    border: none;
    width: 100%;
    padding: 5px 0;
    color: #3e4244;
    background: transparent;
}

.subscribe-form__ctrl .visual-form__control::-webkit-input-placeholder {
    font-size: inherit;
    font-family: inherit;
}

.subscribe-form__ctrl .visual-form__control::-moz-placeholder {
    font-size: inherit;
    font-family: inherit;
}

.subscribe-form__ctrl .visual-form__control:-ms-input-placeholder {
    font-size: inherit;
    font-family: inherit;
}

.subscribe-form__ctrl .visual-form__control:-moz-placeholder {
    font-size: inherit;
    font-family: inherit;
}

.subscribe-form__btn {
    font-size: 0;
    line-height: 0;
    border: none;
    background: none;
}

.aside-nav__link:hover,
.aside-nav__link.active {
    font-weight: 600;
}

.subscribe-form__btn:before {
    font-size: 25px;
}

.subscribe-form__btn:focus,
.subscribe-form__btn:active {
    outline: 1px solid #3e4244;
}

.subscribe-form__ttl {
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 10px;
}

.social-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.social-list__lnk {
    display: inline-block;
    vertical-align: top;
    margin: 2px;
}

.social-list__lnk:hover svg path {
    fill: #000;
}

.page-template-page-parent .col-md-6 {
    margin-bottom: 30px;
}

.visual-search__link-2 {
    color: #3e4244;
    border-color: #3e4244;
    justify-content: left;
}

.visual-search__link-2:hover {
    background: #3e4244;
    color: #fff;
}

.aside-search-2 {
    border-bottom: 2px solid #3e4244;
    margin-bottom: 10px;
}

.aside-search-2 .aside-search__btn {
    border: solid 1px;
    border-bottom: 0;
    padding: 0 5px;
}

.aside-search-2:hover .aside-search__btn {
    background: #3e4244;
    border-color: #3e4244;
    color: #fff;
}

/* calendar page*/

.evts-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
    padding-bottom: 30px;
}


.evts-list::-webkit-scrollbar-track {
    background-color: transparent;
}

.evts-list::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;

}

.evts-list::-webkit-scrollbar-thumb {
    background-color: #606363;
}

.evts-list:hover::-webkit-scrollbar-thumb {
    background-color: #000;
}

.calendar__ttl {
    font-size: 18px;
    position: relative;
    padding-bottom: 16px;
    max-width: 255px;
    margin-bottom: 25px;
}

.calendar__ttl:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #3E4244;
}

.evts-list__evt + .evts-list__evt {
    margin-top: 35px;
}

.evt-block {
    font-size: 26px;
    font-weight: 600;
    display: grid;
    grid-template-columns: 1fr 6fr;
    padding: 20px 0 15px;
    grid-column-gap: 30px;
    position: relative;
}

.evt-block__first,
.evt-block__second {
    display: flex;
}

.evt-block__first {
    align-items: center;
}

.evt-block__second {
    flex-direction: column;
    justify-content: center;
    font-size: 21px;
    font-weight: 400;
}

/*.evt__cell {*/
/*    border-bottom: 1px solid transparent;*/
/*}*/

/*.evt__cell--border,*/
/*.evt__cell:hover {*/
/*    border-bottom-color: #3E4244;*/
/*}*/

.evt__head {
    border-bottom: 3px solid #3E4244;
    padding-bottom: 13px;
    margin-bottom: 13px;
    color: #3E4244;
}

.today .evt__head {
    color: #ef9e89;
    border-color: #ef9e89;
}

.page-template-calendar .evt__head {
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-template-calendar .evt-block {
    padding-bottom: 10px;
}

.evt__head .evt-block__first {
    font-size: 30px;
}

.evt__cell + .evt__cell {
    margin-top: 3px;
}

.evt-type {
    font-size: 16px;
    font-weight: 600;
}

.evt-name {
    font-size: 26px;
    font-weight: 600;
    text-decoration: underline;
    margin: 8px 0;
}

.evt-desc {
    font-size: 16px;
    font-weight: 400;
}

.evt-type,
.evt-desc {
    display: inline-block;
    vertical-align: top;
}

.evt-info {
    display: block;
    padding: 10px 20px 9px;
    background-color: #fcf1e5;
    font-weight: 600;
}

.evt-info:hover {
    background-color: #F4D0A8;
}

.evt-info__name {
    font-size: 18px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 5px;
    text-decoration: underline;
}

.evt-info__type {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}

.posts .fz15 {
    font-size: 18px;
    line-height: 1.6;
}

#cldr .datepicker {
    width: 100%;
    border: none;
    font-family: inherit;
}

#cldr .datepicker--nav {
    border-bottom: 1px solid #3E4244;
    padding: 5px 5px 10px;
}

#cldr .datepicker--nav-title {
    font-size: 22px;
    color: #3E4244;
}

#cldr .datepicker--nav-title i {
    color: inherit;
}

#cldr .datepicker--cells-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 1px;
}

#cldr .datepicker--cells-days .datepicker--cell {
    width: 100%;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 3px 3px 0 0;
    padding-bottom: 67%;

}

#cldr .datepicker--cell {
    border-radius: 0;
    border: 1px solid #E8E8E8;
    font-size: 12px;
    height: initial;
}

#cldr .datepicker--cell:not(.-other-month-) {
    /* border: 1px solid #fff; */
    background: #E8E8E8;
    color: #3E4244;
    border: none;
}


#cldr .datepicker--cell.-other-month-:hover {
    background: inherit;
}

#cldr .datepicker--cell.exh-is-exist {
    background: #f2cabc;
}

#cldr .datepicker--cell.evt-is-exist {
    background: #F4D0A8;
}

#cldr .datepicker--cell.evt-is-exist:hover,
#cldr .datepicker--cell.-current-,
#cldr .datepicker--cell.-selected- {
    background: #EDB39F;
}

#cldr .datepicker--day-name {
    font-size: 12px;
    line-height: 1;
    color: #9A9DA0;
    min-height: 30px;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2px 2px 0 0;
}


#cldr .datepicker--nav-action,
#cldr .datepicker--nav-action svg {
    width: 50px;
    /* width: 40%; */
}

#cldr .datepicker--nav-title:hover,
#cldr .datepicker--nav-action:hover {
    background: none;
}

.participants-info__main a h4 {
    text-decoration: underline;
}

.participants-info__main a + a {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

.main-nav__itm:nth-child(6),
.main-nav__itm:nth-child(3n) {
    margin-bottom: 0;
}

.main-nav__itm:nth-child(7),
.main-nav__itm:nth-child(8),
.main-nav__itm:nth-child(3) {
    margin-bottom: 10px;
}

.page-template-calendar #content-wrapper {
    min-height: 0;
}

.page-template-calendar #content-wrapper .container {
    min-height: 65vh;
    border-bottom: solid 1px;
}

.demo-info {
    margin: 20px 0 30px;
}

.cms-editor .demo-info__cell p {
    margin-top: 0;
    line-height: 17px;
    margin-bottom: 5px;
    text-align: left;
}

.space-list__el {
    position: relative;
    padding-left: 50px;
    line-height: 22px;
}

.page-template-hosts .list-style.space-list.mb50.mt-2 {
    margin: 20px 0 20px;
}

.sub-nav__link.this,
.main-nav__link.this {
    font-weight: 600;
}

.sub-nav__link.this::before,
.main-nav__link.this::before {
    content: '';
    position: absolute;
    top: 100%;
    width: 100%;
    max-width: 160px;
    left: 0;
    margin-top: -2px;
    height: 2px;
    background-color: #3e4244;
}

.team-sub-title .line-ttl {
    font-weight: 600;
    font-size: 16px;
}

.team-sub-title .line-ttl:before {
    max-width: 100px;
}

.content-form form {
    border-style: none;
    display: flex;
    flex-direction: column;
}

.content-form input,
.content-form textarea,
.content-form select {
    width: 100%;
    color: #3e4244;
    border-bottom: solid 2px;
    font-size: 18px;
    padding: 7px 17px;
    font-weight: 400;
    margin-top: 3px;
}

.content-form select {
    border: none;
    border-bottom: solid 2px;
}

.content-form textarea {
    resize: none;
    height: 100px;
}

.content-form label {
    width: 50%;
    display: flex;
    flex-direction: column;
    color: #3e4244;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
}

.content-form input[type=submit],
.content-form button {
    transition: all .5s;
    background: #f4d0a8;
    color: #3e4244;
    width: 50%;
    border: none;
    padding: 15px;
}

.content-form input[type=submit]:hover,
.content-form button:hover {
    background: #e88874;
    color: #fff;
}

.aside-nav--md .aside-nav__link {
    margin-bottom: 10px;
}

.prime-head.none-margin {
    margin: 0;
}

.demo-tabs__lnk,
.demo-tabs__btn.btn-ico {
    height: 45px;
    font-size: 17px;
}

.demo-tabs__btn.btn-ico {
    border: solid 2px #e88874;
    transition: all .5s;
}

.demo-tabs__btn.btn-ico:hover {
    color: #000;
    background: transparent;
}

.btn.btn-dark {
    background-color: #3e4244;
    color: #fff;
}

.btn.btn-dark:hover {
    background-color: #fff;
    color: #3e4244;
}

.btn.btn-dark:before {
    color: #fff;
}

.btn.btn-dark:hover:before {
    color: #3e4244;
}

span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 1em;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    border: 2px solid #f4d0a8;
}

div.wpcf7-response-output {
    margin: 25px 0 0;
    padding: 20px;
    border: 2px solid #e88874;
    width: 50%;
    text-align: center;
}

.cms-editor .tabs.demo-tabs p {
    margin-top: 5px;
}

.page-template-team-main #page-wrapper,
.page-template-cooperation #page-wrapper,
.page-template-hosts-conference #page-wrapper,
.page-template-hosts #page-wrapper,
.page-template-residence #page-wrapper {
    overflow: visible;
}

.page-template-residence .content-wrapper__sidebar,
.page-template-cooperation .content-wrapper__sidebar,
.page-template-hosts-conference .content-wrapper__sidebar,
.page-template-hosts .content-wrapper__sidebar,
.page-template-team-main .content-wrapper__sidebar {
    height: 100%;
    position: sticky;
    top: 135px;
}

.calendar-featured {
    width: calc(100% + 6px);
    margin-left: -3px;
    border-bottom: 1px solid #3e4244;
}

.calendar-featured .slick-slide div {
    display: flex;
}

.calendar-featured.slider-with-arrow .slick-arrow {
    bottom: 7px;
}

.calendar-featured--link {
    padding: 0 3px;
}

.calendar-featured .evt-info {
    padding: 15px 20px 15px;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    transition: all .5s;
}

.calendar-featured .evt-info.dark {
    background: rgba(242, 202, 188, .5);
    border-bottom: solid 3px #edb39f;
}

.calendar-featured .evt-info.dark:hover {
    background: #f2cabc;
}

.calendar-featured .evt-info.light {
    background: rgba(247, 222, 194, .5);
    border-bottom: solid 3px #f4d0a8;
}

.calendar-featured .evt-info.light:hover {
    background: #f7dec2;
    border-bottom: solid 3px #f4d0a8;
}

.calendar-featured .evt-info__type {
    font-weight: 600;
    color: #626564;
    font-size: 12px;
}

.calendar-featured .evt-info__name {
    font-weight: 600;
    margin: 7px 0 12px;
    height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
}

.calendar-featured .evt-info__date {
    font-weight: 400;
    font-size: 13px;
    color: #626564;
}

.calendar-featured .evt-info__date strong {
    font-weight: 900;
    font-size: 14px;
    margin-left: 20px;
}

/*homepage update*/

.top-slider .visual-intro__time {
    font-weight: 600;
    color: #292c2d;
    margin-bottom: 20px;
}

#home-library img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    margin-bottom: 20px;
}

#home-library .row {
    align-items: flex-start;
}

#home-library .row .post__capt {
    padding-top: 20px;
}

.home-page .section-ttl {
    margin-top: 40px;
}

.home-page .events {
    margin-top: -40px;
}

.posts-children .post {
    margin-bottom: 15px;
    width: 100%;
}

.single-team .post__pict img {
    width: 100%;
}

.post .post__cont {
    position: relative;
}

.persons .post--horizontal-center .post__cont {
    align-items: flex-start;
}

.post__pict:before,
.media-about__short-article .post__capt::before,
.projects .post .post__cont::before,
.elected .post .post__cont::before,
.quick-srch-opener::after,
.evt-block::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #3e4244;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
}

.projects .post .post__cont::before,
.elected .post .post__cont::before {
    top: calc(100% + 15px);
}

.grid-elem .post:hover .post__pict:before,
.media-about__short-article .post__cont:hover .post__capt::before,
.events .post:hover .post__pict:before,
.projects .post:hover .post__cont::before,
.elected .post:hover .post__cont::before,
.evt-block:hover::before,
.quick-srch-opener:hover::after {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

a.post:hover,
a.post:hover .post__ttl,
a.post:hover figcaption.post__capt h3,
a.post:hover figcaption.post__capt p,
.media-about__short-article .post__cont:hover p,
.media-about__short-article .post__cont:hover a,
.media-about__short-article .post__cont:hover time,
a.post:hover .post__capt .post__subttl {
    color: #000;
}

.btn-more::before,
.btn-menu::before,
.site-logo strong::before,
.language-select__opener::before {
    content: '';
    position: absolute;
    top: 100%;
    right: 100%;
    width: 0;
    height: 1px;
    background-color: #000;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn-more {
    overflow: visible;
}

.btn-menu,
.site-logo strong,
.language-select__opener {
    position: relative;
}

.btn-more:hover::before {
    width: 20px;
}

.btn-menu::before,
.site-logo strong::before,
.language-select__opener::before {
    left: 0;
    right: auto;
    top: calc(100% + 3px);
}

.language-select__opener::before {
    left: -1px;
}

.btn-menu:hover::before,
.site-logo:hover strong::before,
.language-select__opener:hover::before {
    width: 100%;
}

.btn:hover {
    background-color: #3e4244;
    color: #fff;
}

.btn:hover:before {
    color: #fff;
}

.site-header__center {
    justify-content: center;
    display: flex;
}

.site-header__center.site-header__donation {
    justify-content: space-between;
}

.site-header__donation .btn.btn-ico {
    width: 200px;
    margin-left: auto;
    margin-right: 15px;
}

.add-to-cart {
    width: 200px;
}

.menu-opened .site-header__donation .btn.btn-ico {
    display: none;
}

header .social-nav__elem + .social-nav__elem {
    margin-left: 10px;
}

.btn-footer-donation {
    background-color: #E88874;
    border-color: #E88874;
    color: #fff;
    margin-top: 30px;
}

.btn-footer-donation:hover {
    border-color: #3e4244;
}

.home .site-logo:hover strong::before {
    display: none;
}

.aside-filter__checkbox:hover + label {
    color: #000;
}

.section-ttl {
    margin-bottom: 35px;
    font-size: 1.3rem;
    font-weight: 400;
}

.projects .post {
    margin-bottom: 70px;
}

.projects .post__pict {
    margin-bottom: 25px;
}

.team-main-body {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
}

.pub-info {
    margin-bottom: 50px;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}

.pub-info img {
    width: 255px;
    object-fit: contain;
    object-position: top;
}

.pub-info .pub-list__cell-wrapper {
    width: calc(100% - 255px);
    padding-left: 25px;
}

.pub-info a {
    text-decoration: none;
}

.pub-list__cell-row .mobile {
    display: none;
}

.line-ttl:before {
    max-width: 100%;
}

.page-template-team-main .line-ttl {
    font-weight: 400;
    font-size: 24px;
}

.team-main-title {
    margin-top: 40px;
}

.page-template-team-main .aside-nav a:last-child {
    margin-top: 20px;
}

.media-about__short-article .post__capt {
    padding-top: 10px;
    position: relative;
}

.media-about__short-article .post__capt::before {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    margin-top: -1px;
}

.media-about__short-article .post__ttl {
    font-size: 17px;
    margin-bottom: 15px;
}

.post__time {
    margin-top: 10px;
}

.main-nav {
    font-size: 20px;
}

.media-about__short-article .mb20 {
    font-size: 16px;
}

.media-about__short-article .mb10 {
    height: 75px;
    overflow: hidden;
    font-size: 16px;
}

.page-template-media-about-us .post__pict--max-350.post__pict img,
.page-template-media-about-us .post__pict--max-350.post__pict {
    height: 250px;
}

h1.explanation__ttl.deco-border {
    font-size: 25px;
    margin-top: 0;
}

.explanation__content .cms-editor p:first-child {
    margin: 0;
}

.explanation__content .cms-editor .sg-hide p {
    margin-top: 20px;
}

.sg-readmore.active::before {
    transform: rotate(180deg);
    top: auto;
}

.sg-social {
    position: relative;
    display: inline-flex;
    z-index: 8;
}

.sg-social a {
    width: 32px;
    height: 32px;
    padding: 1px;
}

.sg-social img {
    background-color: #3e4244;
}

.sg-social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    width: 45px;
    height: 45px;
    transition: all .3s;
}

.sg-social-button::before {
    font-family: 'icomoon' !important;
    content: "\e914";
    font-size: 40px;
}

.sg-social:hover .sg-social-button {
    background-color: #3e4244;
    color: #fff;
}

.sg-social-pop {
    position: absolute;
    display: flex;
    width: 96px;
    top: 100%;
    flex-wrap: wrap;
    right: calc(100% - 46px);
    opacity: 0;
    transition: all .3s;
}

.sg-social:hover .sg-social-pop {
    opacity: 1;
}

.mega-ttl:before {
    height: 2px;
}

.page-template-research .post {
    margin-bottom: 0;
}

.page-template-research .post .mb25 {
    margin-bottom: 10px;
}

.page-template-research .col-md-6 {
    margin-bottom: 30px;
}

.mt50 {
    margin-top: 50px;
}

.post__ttl--lg {
    line-height: 28px;
}

.prime-head + .shift-text.mb30 {
    margin: 25px 0 10px;
}

.prime-head {
    margin-bottom: 25px;
}

.single-news .prime-head + .shift-text.mb30 {
    margin-top: 20px;
}

.single-news .prime-head {
    margin-bottom: 20px;
}

.gallery {
    margin: 30px 0;
}

.cms-editor .gallery p {
    font-size: 16px !important;
    line-height: 20px;
    margin-top: 0;
}

.list-style.img-list.logo-list {
    padding-left: 0;
}

.list-style.img-list.logo-list li {
    width: 25%;
    padding: 10px;
    height: 175px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.list-style.img-list.logo-list li img {
    max-width: 90%;
    max-height: 100%;
}

.aside-nav__link {
    margin-bottom: 12px;
}

.slider-with-arrow--gallery .post__capt {
    padding: 0 10%;
    align-items: center;
    justify-content: center;
    display: flex;
    min-height: 25px;
}

.slider-with-arrow--gallery .post__pict {
    margin-bottom: 15px;
}

.slider-with-arrow--gallery {
    padding-bottom: 15px;
}

.participants-info__ttl {
    text-align: left;
}

.participants-list__ttl {
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.cms-editor .posts.persons .post {
    margin-bottom: 30px;
    width: 100%;
}

.cms-editor p br {
    display: none;
}

.cms-editor .sg_top + br {
    display: none;
}

.cms-editor .col-lg-12 {
    padding: 0;
}

.participants-list__cell.mb80 {
    margin-bottom: 50px;
}

.participants-list__ttl {
    padding-bottom: 20px;
}

.single-course .cms-editor {
    margin-top: -7px;
}

.single-course .cms-editor p:first-child,
.page-template-digital .cms-editor p {
    margin-top: 0;
}

.single-course .post__capt {
    padding-left: 0;
}

.page-template-digital .breadcrumb-nav {
    margin-bottom: 50px;
}

.posts--digital .btn {
    margin-top: 0;
}

.page-template-digital .mega-ttl {
    padding-bottom: 25px;
}

.page-template-hosts .slider-with-arrow--gallery .post__capt h3 {
    font-size: 18px;
}

.page-template-residence .post--horizontal-center .post__cont {
    align-items: flex-start;
}

.page-template-residence .post--horizontal-center .post__capt {
    padding-top: 5px;
    line-height: 20px;
}

.main-nav__link.this + .sub-nav,
.main-nav__link.active + .sub-nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin: 0;
    height: 100%;
    justify-content: center;
    top: -37px;
}

.main-nav__link.this.mouseoff + .sub-nav {
    display: none;
}

.quick-srch-opener {
    border-bottom: none;
    position: relative;
}

.quick-srch-opener::after {
    margin-top: -2px;
}

.main-search__ctrl {
    border-left: none;
}

#footer .nav-list__ttl {
    text-transform: uppercase;
}

.company-info {
    font-size: 16px;
}

.single-news .cms-editor p:first-child {
    margin-top: 0;
}

.page-template-scholarship .year-nav__lnk:first-child {
    background-color: #e88874;
    color: #000;
}

.page-template-scholarship .year-nav__lnk:first-child::after {
    display: none;
}

.page-template-expansion #footer {
    background-color: #edb39f;
}

.page-template-expansion .posts .post {
    width: 100%;
}

.calendar-refresh span {
    font-size: 20px;
    flex-basis: 100%;
    line-height: 37px;
}

.calendar-refresh span::before {
    margin-right: 10px;
}

#cookie-notice {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    display: none;
    position: fixed;
    min-width: 100%;
    height: auto;
    z-index: 100000;
    font-size: 13px;
    line-height: 20px;
    left: 0;
    text-align: center
}

#cookie-notice .button.bootstrap,
#cookie-notice .button.wp-default {
    font-family: sans-serif;
    display: inline-block;
    font-style: normal;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    outline: 0;
    background: #3e4244;
    color: #bcbfc1;
    padding: 3px 14px;
    border: solid 1px #3e4244;
}

#cookie-notice .button.bootstrap:hover,
#cookie-notice .button.wp-default:hover {
    background: #bcbfc1;
    color: #3e4244;
}

.cookie-notice-container {
    padding: 10px;
    text-align: center;
    background: #bcbfc1;
    color: #333E44;
}

.cn-top {
    top: 0
}

.cn-bottom {
    bottom: 0
}

#cookie-notice .button {
    margin-left: 10px
}

#cookie-notice .button.wp-default {
    line-height: 18px;
    padding: 2px 12px;
    background: linear-gradient(to bottom, #fff, #eee) #eee;
    border-color: #BBB;
    color: #333;
    text-shadow: 0 1px 0 #FFF;
    border-radius: 3px;
    white-space: nowrap
}

.site-header__right {
    display: flex;
}

.link-calendar {
    align-self: center;
    margin-right: auto;
}

.page-template-hosts .demo-tabs__cont .slider-with-arrow--gallery .post__capt,
.page-template-hosts-conference .demo-tabs__cont .slider-with-arrow--gallery .post__capt {
    height: 100% !important;
    flex-direction: column;
    margin-top: 20px
}

.page-template-hosts .slider-with-arrow--gallery,
.page-template-hosts-conference .slider-with-arrow--gallery,
.page-template-hosts .demo-tabs__cont,
.page-template-hosts-conference .demo-tabs__cont {
    padding-bottom: 0;
}

.page-template-hosts .demo-tabs__cont .gallery,
.page-template-hosts-conference .demo-tabs__cont .gallery {
    margin: 0;
}

.page-template-hosts .cms-editor .gallery .demo-info-ttl,
.page-template-hosts-conference .cms-editor .gallery .demo-info-ttl {
    font-size: 21px !important;
    font-weight: 600 !important;
    margin-bottom: 0;
}

.page-template-hosts .cms-editor ul.list-style.tabs-content,
.page-template-hosts-conference .cms-editor ul.list-style.tabs-content {
    padding-left: 0;
}

.slider-two.full-width.slick-slider .slick-track,
.slider-two.full-width.slick-slider .slick-list {
    width: 100% !important;
}

.page-template-simple .cms-editor p:first-child {
    margin-top: 0;
}

.footer__row .right-align {
    text-align: right;
}

.footer__row .right-align a:hover,
footer .company-info a:hover {
    text-decoration: underline;
}

.footer__button {
    font-size: 12px;
}

.footer__created {
    margin-top: 25px;
}

.side-program-link a {
    font-weight: 300;
}

.side-program-link a:hover {
    font-weight: 600;
}

/*newsletter*/

.news__short-article {
    margin-top: 50px;
}

.news__short-article:first-child {
    margin-top: 0;
}

.nli--titles {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.nli--titles h2 {
    display: inline-flex;
    width: auto;
    margin: 0 5px 25px 0;
    background: #3e4244;
    color: #fff;
    padding: 7px 10px;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 25px;
}

.news__short-article.call h2 {
    background: #e88874;
}

.nli--element {
    padding: 25px 15px 10px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.news__short-article.call .nli--element {
    background: #eeb7a4;
    border: solid 1px #e88874;
}

.nli--part {
    display: flex;
    width: 50%;
    flex-direction: column;
    padding-right: 15px;
}

.nli--part-title {
    font-size: 23px;
    text-decoration: underline;
    font-weight: 600;
    color: #3e4244;
    margin-bottom: 15px;
    line-height: 33px
}

.nli--date {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.nli--date strong {
    font-size: 20px;
}

.nli-text {
    margin-bottom: 15px;
    line-height: 22px;
}

.nli-checkboxes {
    background: #e2e2e2;
    padding: 15px 10px 35px;
}

.nli-checkboxes .aside-filter__checkbox + label:before {
    color: #e2e2e2;
}

.nli-checkboxes .aside-filter__checkbox:checked + label:before {
    color: #3e4244;
}

.nli--part-link {
    margin-top: auto;
    display: inline-flex;
    align-self: flex-end;
    justify-content: flex-end;
    font-size: 13px;
    font-weight: 600;
    max-width: 110px;
    padding-bottom: 7px;
}

.nli--element img {
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-template-newsletter #aside-range .range-lbl {
    margin-bottom: 35px;
    justify-content: flex-end;
}

.page-template-newsletter .ui-slider-handle:first-of-type {
    display: none;
}

.page-template-newsletter header {
    background-color: #edb39f;
}

.page-template-newsletter.menu-opened header:after {
    background-color: #f4d0a8;
}

.posts.persons .post__capt a h3 {
    color: #3e4244;
    transition: all .3s;
}

.posts.persons .post__capt a:hover h3 {
    text-decoration: underline;
}

.subscribe-form .wpcf7 .wpcf7-form .wpcf7-form-control-wrap,
.subscribe-form .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input {
    max-width: 100%;
}

.subscribe-form .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .subscribe-form__ctrl {
    height: 38px;
}

.subscribe-form .wpcf7 .ajax-loader {
    display: none;
}

.subscribe-form .wpcf7 .wpcf7-form .subscribe-form__btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    flex: 0 0 30px;
    position: relative;
}

.subscribe-form .wpcf7 .wpcf7-form .subscribe-form__btn input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.subscribe-form .wpcf7 .wpcf7-form .subscribe-form__btn input:focus {
    outline: none;
}

.subscribe-form .wpcf7 .wpcf7-form .wpcf7-response-output {
    width: 100%;
    padding: 10px;
    margin-top: 50px;
}

.subscribe-form .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    margin-top: 25px;
}

.posts.related-posts .post__pict img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center;
}

.single-range {
    position: relative;
}

.single-range #range-slider {
    margin-left: 0;
}

.single-range .single-range-info-left {
    position: absolute;
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid #3e4244;
    left: 0;
    top: 0;
}

.aside-form .aside-accordion__itm {
    margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
    .project-team__short-article .post__pict img {
        height: 200px;
        width: 380px;
        max-width: 100%;
    }

    .visual-intro__ttl {
        font-size: 35px;
    }
}

@media screen and (max-width: 991.98px) {
    .btn-share:hover .share-after {
        height: 100%;
    }

    .footer__info {
        padding-bottom: 45px;
    }

    .footer__action {
        margin-top: -40px;
    }

    .page-template-residence .content-wrapper__sidebar,
    .page-template-hosts-conference .content-wrapper__sidebar,
    .page-template-hosts .content-wrapper__sidebar,
    .page-template-team-main .content-wrapper__sidebar {
        position: relative;
        top: initial;
    }

    .page-template-team-main .project-team__short-article .post__pict img {
        height: auto;
        width: 100% !important;
        max-width: inherit;
    }

    .link-calendar {
        display: none;
    }

    .site-header__donation .btn.btn-ico {
        display: none;
    }

    .site-header__donation {
        justify-content: center;
    }
}

@media screen and (max-width: 782px) {
    .nli {
        padding: 0 15px;
    }

    .nli--part {
        width: 100%;
        padding-right: 0;
    }

    .nli--element {
        padding: 25px 0 10px;
    }

    .nli--titles h2 {
        font-size: 20px;
        align-items: center;
        margin-bottom: 0;
    }

    .news__short-article.call .nli--element {
        background: transparent;
        padding: 25px 15px 10px;
        margin-top: 20px;
    }

    .nli--date {
        color: #e88874;
    }

    .nli--date {
        font-size: 18px;
    }

    .nli--date strong {
        font-size: 18px;
    }

    .nli--part-title {
        height: auto !important;
    }

    .nli--element .nli--part {
        margin-bottom: 20px;
    }

    .logged-in.admin-bar header {
        top: 46px;
    }

    .content-form label,
    .content-form input[type=submit],
    .content-form button,
    div.wpcf7-response-output {
        width: 100%;
    }

    .media-about .post__capt {
        width: 100%;
    }

    .project-team__short-article .post__pict img {
        height: 200px;
        width: auto !important;
        max-width: inherit;
    }

    .project-team__short-article .post__pict {
        text-align: left;
    }

    .cms-editor .alignleft,
    .cms-editor .right {
        margin: 15px 0 35px;
        width: 100% !important;
        float: left;
    }

    .cms-editor .alignleft img,
    .cms-editor .right img {
        width: 100%;
    }

    .footer__action {
        margin-top: initial;
    }

    .footer__dual {
        display: flex;
        padding: 0;
    }

    .footer__dual .nav-list {
        padding: 0 15px;
    }

    .nav-list + .nav-list {
        margin-top: initial;
    }

    .footer__row > div {
        margin-bottom: 20px;
    }

    .footer__info {
        padding-bottom: 10px;
    }

    .calendar__ttl {
        margin-bottom: 10px;
    }

    #cldr {
        margin-bottom: 60px;
    }

    .page-template-team-main .project-team__short-article .post__pict,
    .page-template-team-main .project-team__short-article .post {
        max-width: 100%;
        width: 100%;
    }

    .page-template-residence .content-wrapper__sidebar,
    .page-template-cooperation .content-wrapper__sidebar,
    .page-template-hosts-conference .content-wrapper__sidebar,
    .page-template-hosts .content-wrapper__sidebar,
    .page-template-team-main .content-wrapper__sidebar {
        height: 100%;
        position: relative;
        top: auto;
    }

}

@media screen and (max-width: 575.98px) {
    .footer__dual .nav-list {
        width: 50%;
    }

    .footer__action {
        margin-top: 40px;
        max-width: 320px;
    }

    .evts-list {
        max-height: 300px;
    }

    #cldr .datepicker--nav-action {
        width: 30%;
    }

    #cldr .datepicker--nav-action svg {
        width: 100%;
    }

    .icon-search.quick-srch-opener {
        display: none;
    }

    .pub-info {
        padding: 0 15px;
    }

    .pub-info img {
        width: 125px;
    }

    .pub-info .pub-list__cell-wrapper {
        width: calc(100% - 125px);
        padding-left: 15px;
    }

    .pub-list__ttl {
        font-size: 18px;
    }

    .pub-list__cell-row p.pub-info__desc {
        font-size: 14px;
    }

    .pub-list__cell-row .mobile {
        display: flex;
    }

    .pub-list__cell-row-date {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .project-team__short-article .post__pict img {
        width: 100% !important;
    }
}