.card{
    margin:25px;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.categorie-contenue {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: space-between;
    border: 1px solid #c43ba2 ;   
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
	margin:15px;
    transition: transform .5s;
    border-radius: 10px;
}
.categorie-contenue:hover{
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transform: scale(1.1);
    overflow: hidden; 
}
.categorie-image {
    width: 240px !important;
    height:250px !important;
    object-fit: cover; 
}

.categorie-titre {
    color:white;
	background-color:  #c43ba2;
    font-size: 1em;
    padding: 20px;


}