.practices-container {

    display: flex;
    flex-direction: column;

    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: auto;

    padding: 2em 2em 2em 2em;

    gap: 1em;
}

#practices-brief p {
    text-align: center;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}

.practices-list-container {
    display: flex;
    flex-direction: row;
    width: 100%;

    justify-content: space-between;
    align-items: top;
    flex-wrap: wrap;

    gap: 2em;
}

.practice-container {
    flex: 1 1 31%;
    
    display: flex;
    flex-direction: column;
    
    justify-content: start;
    align-items: center;
    
    padding: 2em 2em;
    gap: 1em;

    border: 1px dotted rgba(58,154,54,1);
}

.practice-container .practice-picto img {
    width: auto;
    height: 4em;

    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0em;
    margin-inline-end: 0em;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.practice-brief {
    text-align: left;
}

@media screen and (max-width: 1366px) {
    
}

@media screen and (max-width: 768px) {
    .practices-container {
        padding: 1em;
    }

    .practices-list-container {
        flex-direction: column;
        height: auto;
        width: 100%;
    }    
}

@media screen and (max-width: 480px) {
    
}
