.articles {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}



.article {}

.btn {
    text-decoration: none;
}

.green {
    background-color: #2DA478 !important;
}

.bck_btn {
    margin: 20px 0;
    background: #2D498E !important;
}

.article_full {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn_container {
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

@media screen and (max-width:750px) {
    .btn_container {
        flex-direction: column;
    }

    .btn {
        margin: 10px 0;
    }

    .article_full {
        padding: 85px 20px 40px 20px !important;
    }
}