.game-provider-slider {
    border-radius: 15px;
    background-color: #4958b8;
    margin-top: 25px;
    display: flex;
}

.game-provider-slider .game-providers {
    flex-grow: 1;
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.game-provider-slider .game-providers a {
    border-radius: 15px;
    color: #fff;
    background: #0f0f0f;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(100% / 6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border: 4px solid #393a99;
}

.game-provider-slider .game-providers a:hover {
    background: #411530;
}

.game-provider-slider .game-providers a h5 {
    color: #fff;
    font-size: 13px;
    margin: 10px 0 0;
    text-align: center;
}

.game-provider-slider>button {
    color: #2A0944;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: none;
    border: none;
    outline: none;
}

.game-provider-slider>button:hover {
    background-color: #2A0944;
}

@media (max-width: 992px) {
    .game-provider-slider .game-providers a {
        flex-basis: calc(100% / 3);
    }
}