.cooperation-row {
    display: flex;
    align-items: flex-start;
}

.cooperation-block:nth-child(1) {
    width: 70%;
    margin-right: 20px;
}

.cooperation-block:nth-child(1) p {
    hyphens: auto;
    line-height: 22px;
    margin-bottom: 30px;
}

.cooperation-block:nth-child(1) ul li:before {
    display: none;
}

.cooperation-block:nth-child(1) span {
    display: block;
    margin-bottom: 10px;
}

.cooperation-block:nth-child(1) ul li {
    margin-bottom: 4px;
}

.cooperation-block:nth-child(2) {
    width: 30%
}

.cooperation-block:nth-child(2) img {
    width: 100%;
}

@media (max-width: 1024px) {
    .cooperation-block:nth-child(1) {
        width: 65%;
        margin-right: 15px;
    }
    .cooperation-block:nth-child(2) {
        width: 35%;
    }
}

@media (max-width: 768px) {
    .cooperation-row {
        flex-direction: column;
    }
    .cooperation-block:nth-child(1),
    .cooperation-block:nth-child(2) {
        width: 100%;
        margin-right: 0;
    }
    .cooperation-block:nth-child(2) {
        margin-top: 20px;
    }
}

.document-container {
    margin-top: 80px;
}

.document-title {
    font-weight: 500;
    margin-bottom: 40px;
}

.document-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.document-block {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid transparent;
}

.document-title--row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding: 0 10px 15px 0;
}

.document-title--row h3 {
    hyphens: auto;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;word-wrap: break-word;
}

.document-title--row .document-title--img {
    display: flex;
    justify-content: end;
}

.document-title--row .document-title--img img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

.document-block p {
    margin: 40px 0;
    hyphens: auto;
}

.document-block .document-download {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.document-block .document-download a {
    background: red;
    padding: 5px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

@media(max-width: 1200px) {
    .document-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media(max-width: 768px) {

    .document-row {
        gap: 10px;
    }

    .document-title--row h3 {
        font-size: 16px;
    }

    .document-title--row span {
        font-size: 12px;
    }

    .document-title--row .document-title--img {
        display: none;
    }

    .document-title--block {
        width: 100%;
    }
}

@media(max-width: 576px) {
    .document-row {
        grid-template-columns: repeat(1, 1fr);
    }
}