.menu-page-item p{
    transition: color 0.5s ease-in-out;

}
.menu-page-item svg path:first-child{
    stroke: var(--wp--preset--color--primary);
    transition: stroke 0.5s ease-in-out;
}
.menu-page-item svg path:last-child{
    fill: var(--wp--preset--color--primary);
    transition: fill 0.5s ease-in-out;
}

.menu-page-item:hover svg path:last-child{
    fill: var(--wp--preset--color--secondary);
}
.menu-page-item:hover svg path:first-child{
    stroke: var(--wp--preset--color--secondary);
}
.menu-page-item:hover p{
    color: var(--wp--preset--color--secondary) !important;
}
.horizontal-scroll {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
.horizontal-scroll::-webkit-scrollbar {
    display: none; 
}
.horizontal-scroll > li {
    max-width: 200px;
    scroll-snap-align: start;
    flex: 0 0 auto;
}