/*****-----CARDS-----*****/


.info-presentation .cards {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 40px;

    flex-wrap: wrap;
}

.info-presentation .cards .card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 10px;

    width: 242px;
    height: 222px;


    margin-left:16px;
    margin-right:16px;
    background: #545BE8;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.info-presentation .cards .header-card {
    width: 48px;
height: 48px;
    background: #fff;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.info-presentation .cards .title-card {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    margin:0;
}

.info-presentation .cards .description-card {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    margin:0;
}


@media screen  and (min-width: 641px) and (max-width: 1024px) {
    .info-presentation .cards .card{
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 640px) {
    .info-presentation .cards .card{
        margin-bottom: 16px;
    }
}