.icon-row {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
    justify-content: center;
}
.wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    /*transition: all 0.3s ease;*/
    position: relative;
    overflow: visible;
}
.btn-icon {
    background: #AF9CFB;
    border-radius: 8px;
    border: 2px solid #AF9CFB;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-icon:hover{
    background: #7A5AF8;
    border: 2px solid #7A5AF8;
}
.hover-title {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F2EFFE;
    color: black;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-font: 'Red Rose';
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}
.wrapper:hover .hover-title {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}
/*Mobile */
@media (max-width: 767px) {
    .icon-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .btn-icon {
        width: 64px;
        height: 64px;
    }
    .wrapper:hover .hover-title {
        opacity: 1;
        transform: translateX(-10%) translateY(-5px);
    }
}
/*Tablette*/
@media (min-width: 768px) and (max-width: 1023px) {
    .icon-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    .btn-icon {
        width: 72px;
        height: 72px;
    }
}