/* VISUAL MENU */
.visual-menu-container{
    display: flex;  
    column-gap: 15px;
}
.visual-menu-container .menu-item.icon_sticky {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #FFF;
    transition: all 0.5s ease;
}
.visual-menu-container .menu-item.icon_sticky p,
.visual-menu-container .menu-item.icon_sticky a{
    font-size: 16px;
    line-height: 18px;
    color:#000;
    display: block;
    width: 100%;
    margin-bottom: 0;
    transition: all 0.5s ease;
}
/* .menu-item.icon_sticky img {
    max-height: 50px;
    margin-bottom: 5px !important;
} */
.elementor-sticky--active .menu-item.icon_sticky img{
    max-width: 30px !important;
    min-height: 30px;
    max-height: 30px;
    transition: all 0.5s ease;
    margin: 0 !important;
    padding: 0;
}
.elementor-sticky--active .menu-item.icon_sticky a{
    display: flex;
    width: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}
.visual-menu-container .menu-item.icon_sticky {
    flex-grow: 1;
}
@media (max-width: 768px) {
    .visual-menu-container {
        flex-wrap: wrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 10px 0;
        padding: 0 0 10px;
        column-gap: 10px;
        justify-content: center;
    }
    .menu-item.icon_sticky {
        width: 48%;
        min-width: 48%;
        max-width: 48%;
        scroll-snap-align: center;
    }
    
}