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

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



.col-row.image-s {
    flex:0 0 9.0625rem;
}

.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: 1.5rem;
}

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



.col-title {
    color: #D9EFFD;
    text-align: center;
    font-family: "Trebuchet MS";
    font-size: 0.6875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.13063rem;
    text-transform: uppercase;
}


.col-link {text-decoration: none;}
a:hover .col-title {color:#84CDF3; }

.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:  #84CDF3 !important;
}


/* Délai pour chaque panneau */
.col-row:nth-child(1) { animation-delay: 0.1s; }
.col-row:nth-child(2) { animation-delay: 0.2s; }
.col-row:nth-child(3) { animation-delay: 0.3s; }
.col-row:nth-child(4) { animation-delay: 0.4s; }
.col-row:nth-child(5) { animation-delay: 0.5s; }

@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%;

}
}