.button-slider {
    padding: 1.5rem 0;
}

.button-slider h2 {
    font-size: 18px;
    text-transform: none;
    text-align: center;
}

.button-slider__list {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    justify-content: center;
    overflow: auto;
}

.button-slider__button {
    display: inline-block;
    font-size: 16px;
    padding: 12px 18px;
    text-decoration: none;
    border-radius: 4px;
}

.button-slider__button:hover {
    text-decoration: none;
    opacity: .8;
}

@media screen and (max-width: 767px) {
    .button-slider {
        position: fixed;
        bottom: 0;
        padding: 1rem 0;
        width: 100%;
        background: #fff !important;
        border-radius: 12px;
        box-shadow: 0 0px 4px rgba(0, 0, 0, 0.5);
        z-index: 30;
    }

    .button-slider__list {
        justify-content: unset;
    }
}