.main-page .main-banner {
    padding-top: 20px;
}
.main-page .main-banner:after {
    content: unset;
}
.main-page .main-banner__img {
    padding-top: 0;
}
.main-page .amount {
    padding-top: 64px;
}
.main-page .projects__title {
    margin-bottom: 32px;
}

.main-page .projects__title + .projects__text {
    margin: -16px auto 32px auto;
}
.cooperation__block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cooperation__dropdown {
    padding: 0 24px;
    border-radius: 16px;
    border: 1px solid #D7D5F4;
    background:  #FFF;
}
.cooperation__summary {
    padding: 16px 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.cooperation__summary:after {
    content: url(../images/dropdown-icon.svg);
    transition: all 0.3s;
}
.cooperation__content {
    display: none;
}
/* .cooperation__dropdown.opened {
    animation: dropdownOpen 0.4s ease;
} */
.cooperation__dropdown.opened .cooperation__content {
    display: block;
    padding-bottom: 16px;
}
.cooperation__dropdown.opened .cooperation__summary:after{
    transform: rotate(180deg);
}
.cooperation__subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
}
.cooperation__text {
    font-size: 12px;
    color: var(--color-title);
    margin-bottom: 12px;
}
.cooperation__dropdown.opened .cooperation__text {
    margin-top: -8px;
}
.cooperation__btn {
    display: block;
    width: fit-content;
    padding: 10px 16px;
    min-height: 40px;
    height: 40px !important;
    margin-bottom: 24px;
    display: flex;
    gap: 8px;
}
.cooperation__btn span {
    font-size: 12px;
}
.cooperation__btn svg {
    width: 20px;
    height: 20px;
}
.cooperation__img-desktop {
    display: none;
}
.cooperation__img,
.cooperation__img-desktop {
    position: relative;
    height: 0;
    padding-top: 58.245%;
    border-radius: 16px;
    overflow: hidden;
}
.cooperation__img img,
.cooperation__img-desktop img {
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (min-width: 860px) {
    .cooperation__wrapper {
        position: relative;
        display: flex;
        gap: 10%;
    }
    .cooperation__block {
        flex: 0 0 49.3077%;
        gap: 24px;
    }
    .cooperation__summary {
        padding: 24px 0;
    }
    .cooperation__img {
        display: none;
    }
    .cooperation__img-desktop {
        padding-top: 21.924%;
        display: block;
        flex: 0 0 37.61539%;
    }
}
@media screen and (min-width: 1024px) {
.main-page .project.active .see-case {
    left: -6%;
}
.cooperation__text,
.cooperation__btn span {
        font-size: 14px;
    }
}
@media screen and (min-width: 1025px) {
    .main-page .amount {
        padding-top: 80px;
    }
    .main-page .projects__title {
        margin-bottom: 56px;
    }

    .main-page .projects__title + .projects__text {
        margin: -40px auto 32px auto;
    }
}
@media screen and (min-width: 1280px) {
    .main-page .project.active .see-case {
        left: -8%;
    }
}
@media screen and (min-width: 1281px) {
    .main-page .amount {
        padding-top: 120px;
    }
    .cooperation__title {
        margin-bottom: 16px;
    }
    .cooperation__subtitle {
        margin-bottom: 56px;
    }
    .cooperation__wrapper {
        gap: 130px;
    }
    .cooperation__dropdown.opened .cooperation__content {
        padding-bottom: 24px;
    }
    .cooperation__dropdown.opened .cooperation__text {
        font-size: 16px;
        margin-top: -16px;
        margin-bottom: 16px;
    }
    .cooperation__btn span {
       font-size: 16px;
    }
    .cooperation__btn {
        height: 44px;
        min-height: 44px;
        margin-bottom: 0;
    }
        .cooperation__btn svg {
            width: 24px;
            height: 24px;
        }
    .main-page .amount__text {
        width: 80%;
    }
}

/* @keyframes dropdownOpen {
    from {
       height: auto;
       max-height: fit-content;
    }

    to {
       height: 100%;
        max-height: 1000px;
    }
} */