/* Wrapper des colonnes */
.col-wrapper {
    display: flex;
    max-width: 85rem;
    gap: 2rem;
    justify-content: center;
    align-items: start;
    margin: auto;
    flex-flow: row wrap;
}

.col-row {
    flex: 1;
    text-align: center;
    padding: .5rem;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.col-row.image-s {
    flex:0 0 22%;
}

.col-row.image-m {
    flex:0 0  11.5rem;
    padding: 0;
 
}

.col-row.image-l {
    flex:0 0 15rem;

}


.col-row .col-image {
      aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
    transform: translateY(0);
    transition: all .2s;
}

.col-row .col-image:hover {
    transform: translateY(-5px);
}

.col-image img,
.col-image svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.col-title {
    text-align: center;
    font-size: 0.6875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.col-intro {
    color: #000;
    font-size: .90rem;
}


.col-link {text-decoration: none;}
a:hover .col-title {color:var(--primary-500); }

.mon-svg {
    padding: 4px;
    transition: all 0.5s ease;
}

.col-row.image-s .mon-svg {
    max-width: 5.61063rem;
    
}

.col-row.image-m .mon-svg {
    max-width: 8.61063rem;
  
}

.col-row.image-l .mon-svg {
    max-width: 12rem;
   
}

a .mon-svg path,
a .mon-svg circle,
a .mon-svg rect,
a .mon-svg polygon  {
   transition: all .5s;
}


a:hover .mon-svg path,
a:hover .mon-svg circle,
a:hover .mon-svg rect,
a:hover .mon-svg polygon  {
    fill:  var(--secondary-300) !important;
}



@media (max-width:768px) {
.col-wrapper {
    flex-wrap: wrap;
    gap: 0;
    padding: 0.5rem;

}
.col-row {flex: 0 1 40%;}
.col-row.image-s {
    flex:40%;
}

.col-row.image-m {
    flex:40%;
   
 
}

.col-row.image-l {
    flex:40%;

}
}