/* Wrapper des colonnes */
.col-wrapper {
    display: flex;
    max-width: 75rem;
    gap: 5rem;
    justify-content: center;
    margin: auto;
}

.col-row {
    flex: 1;
    text-align: center;
    padding: 1rem;
    transition: all 0.5s ease;
}

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

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

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

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

a:hover .mon-svg path,
a:hover .mon-svg circle,
a:hover .mon-svg rect {
    fill:  #84CDF3;
}


/* 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 0 40%; ;}
}