.documents-container  {
    padding: 36px 0;
    @media (max-width: 1024px) {
        padding: 21px 0 100px;
    }
    .content {
        display: flex;
        flex-direction: column;
        gap: 56px;
        .head-row {
            display: flex;
            flex-direction: column;
            gap: 24px;
            h1 {
                color: #000;
                font-family: Roboto;
                font-size: 56px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                letter-spacing: 1.12px;
                @media (max-width: 1024px) {
                    font-size: 28px;
                }
            }
        }
        .documents-chapters {
            display: flex;
            flex-direction: column;
            gap: 36px;
            .row {
                display: flex;
                flex-direction: column;
                gap: 10px;
                h2 {
                    color: #000;
                    font-family: Roboto;
                    font-size: 24px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 120%; /* 28.8px */
                    margin-bottom: 20px;
                    @media (max-width: 1024px) {
                        font-size: 22px;
                    }
                }
                .documents-list {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;

                    a {
                        width: 265px;
                        height: 126px;
                        padding: 12px;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                        align-items: flex-start;
                        border-radius: 22px;
                        background: #F2F3F5;
                        @media (max-width: 500px) {
                            width: 100%;
                            height: 100px;
                        }
                        span {
                            color: #000;
                            font-family: Roboto;
                            font-size: 12px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: normal;
                            letter-spacing: 0.24px;
                        }
                    }
                }
            }
        }
    }
}