/* Hero */

.hero-section {
    background-image: url("../images/research-documents.png");
    height: calc(100vw / 2.69);
}

/* Main */

.documents-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
}

.documents-el{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

.documents-download i{
    color: var(--accent-color);
}

@media (max-width: 501px) {
    section{
        padding-top: 0;
        padding-bottom: 20px;
    }

    .hero-section{
        background-image: url("../images/mobile-images/research-hero.png");
        background-size: cover;
        height: 20vh;
    }

    .documents-list{
        padding-bottom: 20px;
    }

    .documents-el {
        gap: 20px;
        max-width: 100%;
    }

    .documents-img {
        max-width: 90vw;
        height: auto;
        border-radius: 5px;
    }

    .documents-download {
        font-size: 16px;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        text-align: left;
        padding-left: 5px;
    }

}


