/* All block */
.news {
    margin-top: 90px;
}

/* Heading of block */
.news h2 {
    text-align: left;
    margin-bottom: 25px;
}

/* All cards */
.news-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    flex-wrap: wrap;
    width: 100%;
}

/* Card */
.news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    width: 45%;

    margin-bottom: 50px;

    min-width: 320px;
}

/* Text in card */
.news-text {
    color: #B3B7BC;
}

/*Header in card*/
.news-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/*Date in card*/
.news-date {
    border-radius: 41px;
    background-color: #00D95F40;
    color: #00D95F;

    height: 31px;
    margin: .83em 0;
    width: 130px;
    text-align: center;
}

.news-date span {
    font-size: 16px;
    font-weight: 700;
    line-height: 31px;
    text-align: right;

}

/* Adaptivity */

@media (max-width: 575px) {


    .news-card {
        width: 100%;
    }

    .about-cards{
        justify-content: center;
    }

}

@media (min-width: 576px) {
    .news-card {
        width: 100%;
    }


}

@media (min-width: 768px) {
    .news-card {
        width: 100%;
    }

}


@media (min-width: 992px) {
    .news-card {
        width: 45%;
    }
}
