.slider-menu {
    position: absolute;
    bottom: 160px;
    left: calc(20vh - 26px);
    display: flex;
    padding: 0 16px;
    gap: 16px;
    overflow-x: auto;
}

.slider-menu__item {
    background-color: rgba(0, 0, 0, 0.6);
    width: 115px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: white;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    font-family: 'Poppins';
    font-weight: 300;
}

.slider-menu__item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slider-menu__item:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-menu__item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
    .slider-menu {
        flex-wrap: wrap;
        position: static;
        margin: 32px auto;
    }

    .slider-menu__item {
        flex: 1 1 calc(50% - 16px);
        background-color: white;
        color: #444;
        border: 1px solid #bbb;
        font-family: 'Poppins';
        height: 120px;
        max-width: 48%;
    }

    .slider-menu__item:hover {
        background-color: #444;
        color: white;
    }

    .slider-menu__item img {
        filter: brightness(0) invert(0.2);
    }

    .slider-menu__item:hover img {
        filter: brightness(0) invert(1);
    }

    .slider-menu__item span {
        padding-inline: 30px;
    }

}