.top_games_banner {
    width: 100%;
    min-width: 400px;
    height: auto;
    min-height: 100px;
    max-height: 100vh;
    overflow: hidden;
}
.games_banner_pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 0;
    img{
        width: 80%;
        border-radius: 15px;
        margin: 20px auto;
    }
}
.swiper-slide{
    img{
        width: 100%;
    }
}
.paginationBox{
    display: flex;
    align-items: center;
    background-color: #313131;
    width: 15%;
    min-width: 250px;
    height: auto;
    padding: 5px 15px;
    border-radius: 15px;
    margin: 0 30px;
    position: relative;
    bottom: 40vh;
    z-index: 2;
    .game_name{
        font-size: 20px;
        color: #fff;
        transition: all .5s ease;
    }
}
.swiper-pagination-bullet{
    opacity: 1;
    background-color: #00000000;
    border: 2px solid #00000000;
}
.swiper-pagination-bullet-active{
    opacity: 1;
    background-color: #313131a8;
    border: 2px solid #0d6efd;
}

@media (max-width: 750px) {
    .paginationBox {
       display: none;
    }
}