/* All block */
.about {
    margin-top: 50px;
    width: 100%;
}

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

/* All cards */
.about-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    width: 100%;
}

/* Card */
.about-card {
    width: 25%;
    padding: 30px;
    border-radius: 46px;
    border: 2px solid #434343;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    margin-bottom: 20px;

    min-width: 290px;

    align-self: stretch;
    justify-content: start;
}

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

/* Adaptivity */

@media (max-width: 575px) {


    .about-card {
        width: 100%;
    }

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

}


@media (min-width: 576px) {


    .about-card {
        width: 100%;
    }

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

}

@media (min-width: 768px) {

    .about-card {
        width: 25%;
    }

    .about-cards{
        justify-content: space-between;
    }

}


@media (min-width: 992px) {

    .about-card {
        width: 40%;
    }

    .about-cards{
        justify-content: space-between;
    }
}

@media (min-width: 1200px) {
    .about-card {
        width: 25%;
    }

    .about-cards{
        justify-content: space-between;
    }
}

