.col-wrapper {
    display: flex;
    max-width: 75rem;
    gap: 2rem;
    margin: auto;
   
}

.col-row {
    flex: 1;
    padding: 1rem 0;
    transition: all 0.5s ease;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.col-elements {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.col-row .col-image {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-width: 60px;
}

.col-image img,
.col-image svg {
    width: 100%;

    height: 36px;
       object-fit: contain;
}

.col-button {
    background-color: var(--primary-500);
    padding: 1rem;
    color: var(--black-900);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.68rem;
    transition: all .3s;
}

.col-button:hover {
    background-color: var(--primary-100);
}

.col-title {
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

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


.mon-svg g path,
.mon-svg g circle,
.mon-svg g rect,
.mon-svg g polygon  {
    fill:  var(--primary-100);
}


/* 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: 100%;
    flex-wrap: wrap;
}

}