
.modal-header img {
    width: auto;
    height: auto;
    border-radius: 16px;
}

.research__item {
    background-image: url(/local/templates/main/images/hero.png);
}

.trends__container:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(/local/templates/main/images/form-background.jpg);
    background-position: center;
    background-size: cover;
    opacity: .5;
    z-index: 1;
    border-radius: 16px;
}

.has-error {
    border-color: #ff6b6b !important;
    background-color: #fff6f6 !important;
    border-bottom: 1px solid #ff6b6b !important;
}

.error-message {
    display: block;
    color: #cc0000;
    font-size: 0.85em;
    margin: 5px 0 10px 0;

}

.marquee-container {
    width: 100%;
    overflow: hidden;
    height: 75px;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    position: relative;
    animation: marquee linear infinite;
    will-change: transform;
    padding-right: 20px; /* Компенсация последнего margin */
}

.marquee-item {
    flex: 0 0 auto;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.marquee-item img {
    max-height: 75px;
    display: block;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 20px));
    }
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@media (max-width: 767px) {
    .marquee-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .marquee-track {
        animation: none !important;
        padding-bottom: 8px;
        padding-right: 0;
    }

    .marquee-container::-webkit-scrollbar {
        height: 4px;
    }

    .marquee-container::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 2px;
    }

    .marquee-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
}

.call-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    z-index: 999;
}

.call-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.call-modal__content {
    position: relative;
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    margin: 24px;
    max-width: 648px;
    min-width: 300px;
    min-height: 50px;
    overflow: auto;
    height: max-content;
    width: 100%;
    z-index: 1;

    @media (max-width: 767px) {
        height: 90vh;
    }
}

.call-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.call-modal__title {
    font-size: 32px;
    line-height: 1.1;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;

    @media (max-width: 1199px) {
        font-size: 24px;
    }
    @media (max-width: 767px) {
        font-size: 20px;
    }
}

.call-modal__subtitle {
    font-size: 16px;
    color: #a8a8a8;
    margin-top: 8px;
    margin-bottom: 16px;
}

.call-modal__badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.call-modal__badge {
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.call-modal__separator {
    height: 1px;
    background-color: #eee;
    margin: 20px 0;
}

.call-modal__section-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.call-modal__form-group {
    margin-bottom: 20px;
}

.call-modal__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.call-modal__input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.call-modal__phone-input {
    display: flex;
    align-items: center;
}

.call-modal__phone-prefix {
    padding: 0 10px;
    color: #666;
}

.call-modal__textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-height: 100px;
    resize: vertical;
}

.call-modal__checkbox-group {
    margin: 25px 0;
}

.call-modal__checkbox-label {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.call-modal__checkbox {
    margin-right: 10px;
}

.call-modal__submit {
    width: 100%;
    padding: 12px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.call-modal__submit:hover {
    background-color: #003d82;
}

.call-modal--visible {
    display: flex;
}



.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    z-index: 1000;
}

.event-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.event-modal__content {
    position: relative;
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    margin: 24px;
    max-width: 648px;
    min-width: 300px;
    min-height: 50px;
    overflow: auto;
    height: max-content;
    width: 100%;
    z-index: 1;

    @media (max-width: 767px) {
        height: 90vh;
    }
}

.event-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.event-modal__title {
    font-size: 32px;
    line-height: 1.1;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;

    @media (max-width: 1199px) {
        font-size: 24px;
    }
    @media (max-width: 767px) {
        font-size: 20px;
    }
}

.event-modal__subtitle {
    font-size: 16px;
    color: #a8a8a8;
    margin-top: 8px;
    margin-bottom: 16px;
}

.event-modal__badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.event-modal__badge {
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.event-modal__separator {
    height: 1px;
    background-color: #eee;
    margin: 20px 0;
}

.event-modal__section-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.event-modal__form-group {
    margin-bottom: 20px;
}

.event-modal__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.event-modal__input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.event-modal__phone-input {
    display: flex;
    align-items: center;
}

.event-modal__phone-prefix {
    padding: 0 10px;
    color: #666;
}

.event-modal__textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-height: 100px;
    resize: vertical;
}

.event-modal__checkbox-group {
    margin: 25px 0;
}

.event-modal__checkbox-label {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.event-modal__checkbox {
    margin-right: 10px;
}

.event-modal__submit {
    width: 100%;
    padding: 12px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.event-modal__submit:hover {
    background-color: #003d82;
}

.event-modal--visible {
    display: flex;
}




.eventDoc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    z-index: 1000;
}

.eventDoc-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.eventDoc-modal__content {
    position: relative;
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    margin: 24px;
    max-width: 648px;
    min-width: 300px;
    min-height: 50px;
    overflow: auto;
    height: max-content;
    width: 100%;
    z-index: 1;

    @media (max-width: 767px) {
        height: 90vh;
    }
}

.eventDoc-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.eventDoc-modal__title {
    font-size: 32px;
    line-height: 1.1;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;

    @media (max-width: 1199px) {
        font-size: 24px;
    }
    @media (max-width: 767px) {
        font-size: 20px;
    }
}

.eventDoc-modal__subtitle {
    font-size: 16px;
    color: #a8a8a8;
    margin-top: 8px;
    margin-bottom: 16px;
}

.eventDoc-modal__badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.eventDoc-modal__badge {
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.eventDoc-modal__separator {
    height: 1px;
    background-color: #eee;
    margin: 20px 0;
}

.eventDoc-modal__section-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.eventDoc-modal__form-group {
    margin-bottom: 20px;
}

.eventDoc-modal__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.eventDoc-modal__input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.eventDoc-modal__phone-input {
    display: flex;
    align-items: center;
}

.eventDoc-modal__phone-prefix {
    padding: 0 10px;
    color: #666;
}

.eventDoc-modal__textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-height: 100px;
    resize: vertical;
}

.eventDoc-modal__checkbox-group {
    margin: 25px 0;
}

.eventDoc-modal__checkbox-label {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.eventDoc-modal__checkbox {
    margin-right: 10px;
}

.eventDoc-modal__submit {
    width: 100%;
    padding: 12px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.eventDoc-modal__submit:hover {
    background-color: #003d82;
}

.eventDoc-modal--visible {
    display: flex;
}

.services-page .main-research__container {
    margin-bottom: 80px;
}

.services__arrow-icon {
    position: relative;
    margin-top: -3px;
}

.research__slider .research__item-title {
    background-color: transparent !important;
    color: #fff !important;
}

section.trends {
    margin: 0 0 60px;
}

@media (hover: hover) {
    .research__slider .research__item-title:hover {
        color: #2b7b73 !important;
        background-color: rgba(255, 255, 255, 0.8) !important;
    }
}


.services-page {
    margin-bottom: 130px;
}

@media (max-width: 767px) {
    .services__content {
        margin-bottom: 64px;
    }

    .service__load-more {
        width: 100%;
        max-width: 250px;
    }

}


@media (max-width: 767px) {
    .services__card-arrow {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 1199px) {
    .services-page {
        margin-bottom: 80px;
    }

    .services__content {
        margin-bottom: 64px;
    }
}

@media (max-width: 767px) {
    .services__content {
        margin-bottom: 48px;
    }
}

@media (max-width: 1199px) {
    .services-page .done-projects__title-container {
        margin-bottom: 40px;
    }
}

/* Аккордеон на странице услуги */
/* Базовые стили группы */

/* Гарантируем правильное отображение кастомных элементов */
collapse, collapse-group {
    display: block;
    contain: content;
}

/* Убедитесь в работоспособности анимации */
collapse content {
    transition: max-height 0.3s ease, opacity 0.2s ease;
    opacity: 0;
}

collapse.active content {
    opacity: 1;
    max-height: 1000px !important;
}

/* Фиксируем анимацию */
collapse content {
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s linear 0.1s !important;
    will-change: max-height, opacity;
}

/* Отключаем анимацию при первом открытии */
collapse:not(.active) content {
    transition: none !important;
}

/* Фиксируем стрелку */
collapse title::after {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) !important;
}


collapse-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

/* Стили отдельного блока */
collapse {
    display: block;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: rgb(229 235 237);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Заголовок блока */
collapse title {
    padding: 15px 60px 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.3;
    background: rgb(229 235 237);
    transition: background 0.3s ease;
    min-height: 100px;
    display: flex;
    align-items: center;
}

/* Стрелка-индикатор */
collapse title::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='35' viewBox='0 0 34 35' fill='%23505050' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m28.344 14.466-2.633-2.632-8.568 8.55-8.569-8.55-2.632 2.632 11.2 11.201 11.202-11.2Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Контент блока */
collapse content {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease 0.1s;
    will-change: max-height, opacity;
}

/* Активное состояние */
collapse.active content {
    max-height: 2000px !important; /* Большое значение для плавной анимации */
    opacity: 1;
    transform: translateZ(0); /* Фикс для аппаратного ускорения */
}

/* Гарантируем видимость контента */
collapse content > * {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.2s,
    transform 0.3s ease 0.2s;
}

collapse.active content > * {
    opacity: 1;
    transform: translateY(0);
}

/* Активное состояние */


collapse.active title::after {
    transform: translateY(-50%) rotate(180deg);
}

collapse.active content {
    max-height: 1000px;
    padding: 30px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    collapse-group {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0px;
    }

    collapse title {
        font-size: 18px;
        padding: 10px;
    }

    collapse title::after {
        width: 28px;
        height: 28px;
        right: 20px;
        background-size: contain;
    }
}

/* Ховер-эффекты */
collapse title:hover {
    background: #e5ebed;
}

/* Оптимизация для мобильных */

@media (max-width: 767px) {
    .service__hero-block {
        padding: 10px 20px;
    }

    .header__logo {
        margin-left: 20px;
    }

    .service__hero-block {
        .button {
            margin-top: 20px;
        }
    }

    .details-description__container {
        padding: 0;
    }

    .author-card {
        display: flex;
        flex-direction: column;
    }

    collapse title {
        font-size: 14px;
        padding: 25px 60px 25px 15px;
    }

    collapse content {
        font-size: 12px;
        padding: 0 15px;
    }

    collapse.active content {
        padding: 5px 15px;
        display: block;
        height: auto;
        max-height: 1000px;
    }

    collapse title::after {
        width: 20px;
        height: 20px;
        right: 20px;
        background-size: contain;
    }


    .service-page {
        margin: 0;
    }

}

@media (max-width: 767px) {
    .breadcrumbs {
        padding: 14px 0;
    }

    .breadcrumbs__container {
        .breadcrumbs_link {
            font-size: 14px;
            color: darkgray;
            max-width: unset;
            border-bottom: 0.5px solid darkgray;
            padding-bottom: 2px;

            img {
                width: 16px;
                height: 16px;
            }
        }

        .breadcrumbs_link:first-of-type {
            border-bottom: 0;
        }

        div.breadcrumbs_link {
            border-bottom: none;
        }

        span {
            max-width: unset;
            border-bottom: none;
        }
    }

    .breadcrumbs__container {
        gap: 8px;
        flex-wrap: wrap;
    }

    .breadcrumbs__divider {
        background: transparent;
        width: 14px;
        height: 14px;

        background-image: url('/local/templates/main/images/right-bc-icon.svg');
        background-size: 100%;
        transform: rotate(-90deg);
    }
}

.main-video {
    overflow: hidden;
    position: relative;
}

.main-video__video {
    min-height: 385px;
}

.main-video__button {
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    color: #09AD67;
    border-radius: 50% !important;
    gap: 0 !important;
    padding: 0 !important;
    position: absolute;
    bottom: 24px;
    right: 32px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #09AD67;
}

.main-video__button:hover {
    background-color: #09AD67;
    color: #ffffff;
}

.main-video__button-play {
    margin-left: 4px;
    display: flex;
}

.main-video__button-pause {
    display: none;
}

.main-video__button.is-active .main-video__button-play {
    display: none;
}

.main-video__button.is-active .main-video__button-pause {
    display: flex;
}

@media (max-width: 767px) {
    .main-video__video {
        min-height: 0;
    }
}

@media (max-width: 576px) {
    .main-video__button {
        width: 32px;
        height: 32px;
        position: absolute;
        bottom: 16px;
        right: 16px;
    }
}

.main-about__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 1.5;
}

.main-about__content_main {
    padding: 24px;
}

.main-about__text {
    margin-top: 16px;
}

.img-cover {
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: 50% 50%;
}

.g-row {
    display: flex;
}

.g-row_xl {
    margin-right: -16px;
    margin-left: -16px;
}

.g-row_xl > .g-col {
    padding-left: 16px;
    padding-right: 16px;
}

.g-row_lg {
    margin-right: -12px;
    margin-left: -12px;
}

.g-row_lg > .g-col {
    padding-left: 12px;
    padding-right: 12px;
}

.g-row_md {
    margin-right: -8px;
    margin-left: -8px;
}

.g-row_md > .g-col {
    padding-left: 8px;
    padding-right: 8px;
}

.g-row_sm {
    margin-right: -2px;
    margin-left: -2px;
}

.g-row_sm > .g-col {
    padding-left: 2px;
    padding-right: 2px;
}

.g-row_middle {
    align-items: center;
}

.g-row_between {
    justify-content: space-between;
}

.g-row_center {
    justify-content: center;
}

.g-row_wrap {
    flex-wrap: wrap;
}

.g-row_end {
    justify-content: flex-end;
}

.g-row_reverse {
    flex-direction: row-reverse;
}

@media (max-width: 1200px) {
    .g-row_xl-wrap {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .g-row_md-md {
        margin-right: -8px;
        margin-left: -8px;
    }

    .g-row_md-md > .g-col {
        padding-left: 8px;
        padding-right: 8px;
    }

    .g-row_md-wrap {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .g-row_sm-wrap {
        flex-wrap: wrap;
    }
}

.g-col_25 {
    width: 25%;
    min-width: 25%;
}

.g-col_33 {
    width: 33.3333%;
    min-width: 33.3333%;
}

.g-col_50 {
    width: 50%;
    min-width: 50%;
}

.g-col_66 {
    width: 66.6667%;
    min-width: 66.6667%;
}

.g-col_100 {
    width: 100%;
    min-width: 100%;
}

.g-col_full {
    flex-grow: 1;
    min-width: 0;
}

.g-col_same {
    flex: 1;
    min-width: 0;
}

@media (max-width: 1200px) {
    .g-col_xl-100 {
        width: 100%;
        min-width: 100%;
    }

    .g-col_xl-33 {
        width: 33.3333%;
        min-width: 33.3333%;
    }

    .g-col_xl-66 {
        width: 66.6667%;
        min-width: 66.6667%;
    }

    .g-col_xl-auto {
        width: auto;
        min-width: min-content;
    }
}

@media (max-width: 992px) {
    .g-col_lg-50 {
        width: 50%;
        min-width: 50%;
    }

    .g-col_lg-100 {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 767px) {
    .g-col_md-100 {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .g-col_sm-100 {
        width: 100%;
        min-width: 100%;
    }
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}

.d-flex {
    display: flex;
}

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

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

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

@media (max-width: 1200px) {
    .d-xl-none {
        display: none;
    }

    .d-xl-block {
        display: block;
    }
}

@media (max-width: 992px) {
    .d-lg-none {
        display: none;
    }
}

@media (max-width: 767px) {
    .d-md-block {
        display: block;
    }

    .d-md-none {
        display: none;
    }

    .d-md-flex {
        display: flex;
    }
}

@media (max-width: 576px) {
    .d-sm-block {
        display: block;
    }

    .d-sm-none {
        display: none;
    }
}

.mt-2 {
    margin-top: 2px;
}

.mt-4 {
    margin-top: 4px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .mt-md-0 {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .mt-sm-8 {
        margin-top: 8px;
    }

    .mt-sm-24 {
        margin-top: 24px;
    }
}

.p-8 {
    padding: 8px;
}

.p-16 {
    padding: 16px;
}

.p-24 {
    padding: 24px;
}

.pt-8 {
    padding-top: 8px;
}

.pt-16 {
    padding-top: 16px;
}

.pb-24 {
    padding-bottom: 24px;
}

.pl-8 {
    padding-left: 8px;
}

.pr-12 {
    padding-right: 12px;
}

.pr-16 {
    padding-right: 16px;
}

.button_secondary {
    padding: 0 24px;
    border-radius: 6px;
    font-weight: 600;
    background-color: #D0E9DD;
    color: #2B7B73;
    height: 48px;
    max-width: 172px;
}

.bg-primary {
    background-color: #09AD67;
}

.main-about__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 1.5;
}

.nowrap {
    white-space: nowrap;
}

.color-white {
    color: #ffffff;
}

.button_secondary:hover, .button_secondary:active, .button_secondary:focus {
    background-color: #2B7B73;
    color: #ffffff;
    border-radius: 50px;
}

.radius-16 {
    border-radius: 16px;
}
@media screen and (min-width: 768px) {
    .radius-m-16 {
        border-radius: 16px;
    }
}
@media screen and (max-width: 767px) {
    .radius-s-8 {
        border-radius: 8px;
    }
}

.h-100 {
    height: 100%;
}

.fw-medium {
    font-weight: 500;
}

h2, .title2 {
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    font-family: "Raleway", serif;
    letter-spacing: -0.03em;
}

.sign-24 {
    width: 24px;
    min-width: 24px;
    height: 24px;
}

.sign {
    border-radius: 50%;
    background-color: #09AD67;
}

.main-hero-slider {
    overflow: hidden;
    position: relative;
}

.main-hero-slider__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px;
    z-index: 10;
}

.main-hero-slider .swiper-slide {
    height: auto;
}

.main-hero-slider__item {
    background: rgba(255, 255, 255, 0.8509803922);
    backdrop-filter: blur(5px);
    padding: 12px 24px 16px;
    height: 100%;
}

@media (max-width: 1200px) {
    .main-hero-slider__content {
        height: 262px;
    }

    .main-hero-slider .swiper {
        height: 100%;
    }

    .main-hero-slider .swiper-slide {
        height: 100%;
    }
}

@media (max-width: 992px) {
    .main-hero-slider__content {
        height: 228px;
    }
}

.color-primary-dark {
    color: #2B7B73;
}

.main-hero-block h1, .title1 {
    font-size: 56px;
    line-height: 0.85;
    font-weight: 600;
    font-family: "Raleway", serif;
    letter-spacing: -0.05em;
}

h4, .title4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Raleway", serif;
}

h5, .title5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Raleway", serif;
}

.mt-4 {
    margin-top: 4px;
}

.bg-primary-dark {
    background-color: #2B7B73;
}

.main-hero-block {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.main-hero-block__button {
    flex-grow: 1;
    margin-top: 56px;
}

.button_xl {
    max-width: 280px;
    height: 56px;
    background-color: #09AD67 !important;
}

.bg-grey {
    background-color: #F1F1F2;
}

.quote.bg-grey, .quote.bg-grey .quote__text {

    color: #3A3B39;

}

.quote.bg-grey .quote__text {

    font-family: "Inter", serif;
    font-optical-sizing: auto;
    scroll-behavior: smooth;
    line-height: 1.25;
    font-size: 16px;
    max-width: 678px;
}

.quote.bg-grey .quote__text p {
    font-weight: 400 !important;
    margin-top: 24px;
    font-weight: 500;
}

.quote__content {
    padding: 24px 100px 24px 24px;
    background-image: url(/local/templates/main/images/quote-icon.svg);
    background-repeat: no-repeat;
    background-size: 45px;
    background-position: right 16px top 16px;
    height: 100%;
}

.bg-white {
    background-color: #ffffff;
}

.quote__autor {
    width: 312px;
}

.quote__autor img {
    width: 100%;
}

.color-descriptor {
    color: #A8A8A8;
}

.fw-medium {
    font-weight: 500;
}

.section .team__slider {
    padding-right: 0 !important;
}

.section .team__slider-button_next {
    right: 0 !important;
}


.filter__aside {
    width: 312px;
    height: 100%;
    min-height: 408px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.filter__link {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    border-bottom: 2px solid #D0E9DD;
    justify-content: center;
}

.filter__link.is-active {
    border-color: #2B7B73;
    color: #2B7B73;
}

.filter__menu .g-col:first-child .filter__link {
    padding-left: 0;
    justify-content: flex-start;
}

.filter__menu .g-col:last-child .filter__link {
    padding-right: 0;
    justify-content: flex-end;
}

.filter__button {
    display: flex;
}

.filter__button-text {
    flex-grow: 1;
    min-width: 0;
    text-align: left;
}

.filter__button-icon {
    opacity: 0;
    margin-right: -16px;
    transition: 0.3s;
}

.filter__button:hover .filter__button-icon {
    opacity: 1;
    margin-right: 0;
}

.filter__button.is-active {
    background-color: #2B7B73;
    color: #ffffff;
}

.filter__button.is-active .filter__button-icon {
    opacity: 1;
    margin-right: 0;
}

.filter__list {
    height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #2B7B73 #cfded8;
    -webkit-overflow-scrolling: touch;

    margin-right: 4px;
    padding-right: 24px;
}

.filter__list-banner {
    flex: 1 1 33.333%;
}

.filter__item {
    height: 196px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.filter__item-name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1;
}

.filter__more {
    padding: 0 8px;
    overflow: hidden;
}

.filter__more-text {
    width: 0;
    opacity: 0;
}

.filter__more:hover {
    padding: 0 12px;
}

.filter__more:hover .filter__more-text {
    opacity: 1;
    width: auto;
    padding-right: 8px;
    transition: 0.3s;
}

.filter__banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 196px;
}

.filter__banner-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(84.82deg, #2D7B74 48.72%, rgba(45, 123, 116, 0) 97.95%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.filter__banner-sign {
    position: absolute;
    right: 24px;
    top: 24px;
}

@media (max-width: 992px) {
    .filter__aside {
        width: 240px;
    }
}

@media (max-width: 767px) {
    #experience{
        max-height: 350px;
        overflow-y: scroll;
    }
    .filter__list {
        height: auto;
        overflow: visible;

        padding-right: 0;
        margin-right: 0;
    }

    .filter__aside {
        width: 100%;
        min-height: 0;
    }

    .filter__item {
        padding: 16px;
    }

    .filter__banner-content {
        padding: 16px;
    }

    .filter__banner-sign {
        position: absolute;
        right: 16px;
        top: 16px;
    }
}

@media (max-width: 576px) {
    .filter__item {
        height: auto;
    }

    .filter__banner {
        height: 180px;
    }
}

.link {
    transition: 0.3s;
    cursor: pointer;
}


@media (max-width: 576px) {
    .main-hero-block h1, .title1 {
        font-size: 32px;
    }
}

.main__hero {
    padding: 16px !important;
}

.sign-54 {
    width: 54px;
    min-width: 54px;
    height: 54px;
}

.button_sm-sm {
    max-width: 168px;
    height: 48px;
    padding: 16px;
}

.sign-wrap {
    display: flex;
    align-items: center;
}
.services__list__wrap,
.filter__aside__wrap {
    padding-top: 16px;
}
.done__projects__button {
    background-color: #D0E9DD!important;
    color: #2B7B73!important;
}
.SmartCaptcha-Shield {
    z-index: 1000;
}
.main-hero-slider__content .swiper-slide {
    cursor: pointer;
}
.main-hero-slider__item {
    width: 100%;
    height: 112px;
    padding-top: 16px;
    padding-bottom: 16px;

}
.main-hero-slider__item h5 {
    margin-top: 16px;
    line-height: 1;
}
.events-page__container .events-hero__block .button.small:hover {
    background-color: #D0E9DD;
    color: #2B7B73;
}

.other-events__slider  .swiper-wrapper {
    align-items: stretch;
}
.other-events__slider .swiper-slide {
    height: auto;
    align-items: stretch;
}
.other-events__slider .events-section__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.project__authors-list {
    max-height: 100%;
}



.services-page .services__card-arrow-wrap {
    display: flex;
    justify-content: flex-end;
}
@media screen and (min-width: 992px) and (max-width: 1350px) {
    .mainpage-project {
        width: 100%;
    }
    .project__content {
        min-width: 100%;
    }
}
/* desktop */
@media screen and (min-width: 1200px) {
    .services__card {
        border-radius: 16px;
    }
    .services__card__wrap {
        padding-bottom: 16px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .filter__banner-text-description{
        max-width: 300px;
    }
    .filter__banner__button {
        width: fit-content;
    }
    .filter__banner__button:hover {
        background-color: #09ad67;
    }
    .filter__menu .g-col:last-child .filter__link {
        justify-content: center;
    }


    .research-page-background-wrap {
        overflow: hidden;
    }
    .research-page-background {
        background-image: url('/local/templates/main/images/research-city-img-d.jpg');
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
}
/* tablet&mobile */
@media screen and (max-width: 1199px) {
    .sign-md-24 {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    

}
/* tablet */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .main-hero-block {
        padding-left: 24px;
        padding-right: 24px;
    }
    .main-hero-block h1 {
        font-size: 40px;
    }
    .main-hero-block__sign {
        margin-top: 75px;
    }
    .services__card {
        border-radius: 12px;
    }
    h2, .title2 {
        font-size: 32px;
    }
    .button_secondary span:not(.icon) {
        font-size: 14px;
    }

    .services__list__wrap {
        padding-left: 0px!important;
    }
    .services__card__list {
        margin-left: -4px!important;
        margin-right: -4px!important;
    }
    .filter__aside__wrap {
        padding-right: 8px!important;
    }
    .services__card__wrap {
        padding-bottom: 8px;
        padding-left: 4px!important;
        padding-right: 4px!important;
    }
    .filter__list-banner {
        width: 100%!important;
        padding-bottom: 8px;
        padding-left: 4px!important;
        padding-right: 4px!important;
        flex: unset;
    }
    .filter__aside {
        min-height: 465px;
        width: 230px;
    }
    .filter__list {
        padding-right: 0;
        margin-right: 0;
    }
    .filter__banner-text h4 {
        font-size: 20px;
    }
    .filter__banner-text-description {
        font-size: 14px;
    }
    .main-about {
        margin-top: 0!important;
    }
    .main-video {
        margin-top: -48px;
    }
    .quote__autor .color-descriptor {
        font-size: 14px;
    }
    .quote__text h4 {
        font-size: 20px;
    }
    .quote__text p {
        font-size: 14px;
    }
    .quote__autor {
        width: auto;
    }
    .quote__autor img {
        width: 211px;
        height: 266px;
        object-fit: cover;
    }
    .quote__autor .title4 {
        font-size: 20px;
    }
    .quote__content {
        padding-top: 72px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
        background-position: 16px 16px;
        background-size: 32px;
    }
    .team__member-name {
        font-size: 20px;
    }
    #modal .modal-content {
        max-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    #modalImage {
        max-width: 326px;
        min-width: 326px;
        height: 268px;
        object-fit: cover;
    }
    .estates__select option {
        font-size: 16px;
        color: black;
    }
    .mainpage-project {
        width: 100%;
    }
    .research-page__what-new {
        display: block;
    }

    .whats-new-title-wrap {
        margin-bottom: 40px;
    }
    .research-page__what-new .news-item {
        /* border-top: none; */
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 0;
        padding-top: 24px;
    }
    .research-page__what-new .news-item__date {
        font-size: 16px;
        /* margin-bottom: 16px; */
    }   
    .research-page__what-new .news-item__date img {
        width: 16px;
        height: 16px;
    }
    .research-page__what-new .news-item__title {
        font-size: 20px;
    }
    .main-hero-slider__content .swiper-slide {
        width: 100%!important;
    }
    .main-hero-slider__item  {
        height: 73px;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 16px;
    }
    .main-hero-slider__item .title1 {
        font-size: 32px;
    }
    .main-hero-slider__item h5 {
        font-size: 18px;
        margin-top: 4px;
    }
    .main-hero-slider__content {
        height: 202px;
    }
    .mainpage-startblock {
        margin-left: -8px;
        margin-right: -8px;
    }
    .mainpage-startblock-item {
        padding-left: 8px!important;
        padding-right: 8px!important;
    }



    .contact__image-container--square .contact__image-overlay {
        display: none;
    }
    .contact__image-container--square .contact__caption::before {
        content: '';
        background-image: url('/local/templates/main/images/square-shadow-t.svg');
        width: 67vw;
        height: 61vw;
        top: 2.5vw;
        left: -45vw;
        position: absolute;
    }




    .research-page {
        margin: 0;
    }
    .research-page-background-wrap {
        overflow: hidden;
    }
    .research-page-background {
        background-image: url('/local/templates/main/images/research-city-img-t.jpg');
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .research-detail__container,
    .details-page,
    .projects-page__container {
        margin: 0;
    }

    .services__grid > .service__load-more {
        margin-left: calc(-50% + 16px);
    }

    .service-page,
    .services-page {
        margin-left: 0!important;
        margin-right: 0!important;
    }

    .events-page__container {
        margin: 0;
    }
    .events-hero__block {
        height: auto;
    }
    .events-hero__banner {
        height: auto;
    }
}
/* Mobile */
@media screen and (max-width: 767px) {
    .main-hero-block {
        display: flex;
        padding-top: 24px;
        padding-bottom: 24px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .main-hero-block__sign {
        margin-top: 0;
        display: flex;
        justify-content: flex-end;
    }
    .main-hero-block__button {
        order: 3;
        margin-top: 16px;
    }
    .main-hero-block__button .button {
        margin-top: 0;
        font-size: 14px;
    }

    .sign-wrap {
        display: flex;
        align-items: flex-start;
        margin-top: 4px;
    }
    .sign-md-16 {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }
    
    h2, .title2 {
        font-size: 24px;
    }
    .quote__autor {
        width: 100%;
    }

    .button_secondary {
        width: 40px;
        height: 40px;
        margin-top: 0;
        padding: 0;
    }
    .button_secondary span:not(.icon) {
        display: none;
    }

    .services__list__wrap {
        padding-top: 8px;
    }
    .services__card__wrap {
        padding-top: 8px;
    }
    .filter__banner {
        height: 158px;
        margin-top: 8px;
    }
    .filter__banner-content {
        justify-content: flex-start;
    }
    .filter__banner-text h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .filter__banner-text-description {
        font-size: 13px;
        margin-top: 0;
    }
    .filter__banner__button {
        font-size: 13px;
        margin-top: 24px;
        padding-left: 24px;
        padding-right: 24px;
        height: 40px;
        width: fit-content;
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .trends__container {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
        padding-top: 32px;
    }
    .main-about {
        margin-top: 0!important;
    }
    .main-video {
        margin-top: -32px;
    }
    .trends {
        margin-bottom: 0;
    }
    .quote__autor .color-descriptor {
        font-size: 14px;
    }
    .quote__content.bg-white {
        background-color: transparent;
        background-size: 32px;
        padding: 0;
        padding-top: 48px;
        background-position: left top;
    }
    .team__member-name,
    .quote__text h4 {
        font-size: 18px;
    }
    .quote__text p {
        font-size: 14px;
    }
    .quote-person-wrap {
        flex-direction: column;
    }
    .team__member-role,
    .quote__autor .color-descriptor {
        font-size: 13px;
    }
    .trust.container {
        margin-bottom: 0;
    }
    .estates__select option {
        font-size: 16px;
        color: black;
    }
    .mainpage-project {
        display: flex;
        max-height: 459px;
        min-height: 459px;
    }
    .research-page__what-new {
        display: block;
    }
    .research-page__what-new {
        padding-top: 24px;
        padding-bottom: 24px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .research-page__what-new-title-container {

    }
    .research-page__what-new .news-item {
        border-top: none;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 0;
        padding-top: 24px;
    }
    .research-page__what-new .news-item__date {
        font-size: 14px;
        /* margin-bottom: 16px; */
    }   
    .research-page__what-new .news-item__date img {
        width: 16px;
        height: 16px;
    }
    .research-page__what-new .news-item__title {
        font-size: 18px;
    }

    .main-hero-slider__item  {
        height: 62px;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 16px;
    }
    .main-hero-slider__content .swiper-slide {
        max-width: 100%;
    }
    .main-hero-slider__item .title1 {
        font-size: 24px;
    }
    .main-hero-slider__item h5 {
        font-size: 16px;
        margin-top: 4px;
    }
    .main-hero-slider__content {
        height: 180px;
    }









    .contact__image-container--square {
        max-width: 100%;
        height: auto;
        background-color: transparent;
    }
    .contact__image-container--square .contact__image {
        position: relative;
    }
    .contact__image-container--square .contact__image-overlay {
        display: none;
    }
    .contact__image-container--square .contact__caption::before {
        content: '';
        background-image: url('/local/templates/main/images/square-shadow-m.svg');
        width: 162vw;
        height: 148vw;
        top: 2.5vw;
        left: -45vw;
        position: absolute;
    }


    .research-page {
        margin: 0;
    }
    .research-page-background-wrap {
        overflow: hidden;
    }
    .research-page-background {
        background-image: url('/local/templates/main/images/research-city-img-t.jpg');
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .research-pagination-m a.btn:nth-child(n+5) {
        /* width: 24px;
        height: 24px; */
        display: none;
    }
    .research-pagination-m a.next-btn {
        display: flex!important;
    }


    .research__item-title--hover {
        overflow-wrap: break-word;
        word-break: keep-all;
        hyphens: auto;
    }
    .research-detail__hero-block .title {
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        max-width: 100%;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }


    .research-detail__container,
    .details-page,
    .projects-page__container {
        margin: 0;
    }

    .projects-page__container .projects-detail__container .details-description__container {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 40px;
        padding-bottom: 24px;
    }

    .services-page .services__card {
        display: flex;
        flex-direction: row;
    }

    .service-page,
    .services-page {
        margin-left: 0!important;
        margin-right: 0!important;
    }


    .project__content {
        width: 100%;
    }
    .events-page__container {
        margin: 0!important;
    }
}




/* SPECIAL MEDIA'S */

@media screen and (max-height: 922px) {
    .call-modal__content {
        max-height: calc(100vh - 48px);
    }
}
@media screen and (max-width: 1359px) {
    .news-page__container {
        margin: 0!important;
    }
}
@media screen and (max-width: 767px) {
    .events-page__container .event-section__tabs {
        display: none;
    }
}
@media screen and (min-width: 1200px) {
    .service-inner-page-form .trends__content {
        position: relative;
        padding-right: 96px;
    }
    .service-inner-page-form .green-circle {
        left: unset;
        right: 0;
        top: calc(50% - 48px);
        bottom: 0;
    }
}
/* SPECIAL MEDIA'S END */

/*     max-height: calc(100vh - 48px); */