.galary{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content:space-between;
    align-items:center;
    padding: 20px 0px;
    padding-left: 10px;
}
.games{
    width: 150px;
    height: 250px;
    margin: 3px;
    border-left: 20px;
    cursor: pointer;
    padding-top: 0px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rbga(0,0,0,0.22);
    transition: .4s;
    background: transparent;
    border-radius: 5px;
}
.games:hover{
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transform: translate(0px, -8px);
}
.games img{
    width: 150px;
    height: 100%;
    text-align:center;
    margin: 0;
    display: block;
    padding: 0;
    border-radius: 5px;
}
@media (min-width: 772px) {
    .galary{
        padding-left: 30px;
    }
    .image_card{
        padding-left: 20px;
    }
}

.games .game_img{
    background: transparent;
    border-radius: 5px;
    height: 180px;
    display: flex;
    justify-content:center;
    align-items:center;
}
.games .game_name{
    margin-top: 5px;
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
    margin-left: 1px;
}
.games .catagori{
    color: #8e80a4;
    margin-left: 1px;
}
.games .catagori i{
    color: #c5bed0;
}
@media (max-width: 400px) {
    .galary{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content:space-between;
        align-items:center;
        padding: 5px;
        margin-top: -15px;
        
    }
    .games{
        width: 109px;
        height: 200px;
        margin: 1px;
        border-left: 5px;
        cursor: pointer;
        padding-top: 0px;
        transition: .4s;
        background: transparent;
        border-radius: none;
        margin-bottom: 10px;
    }
    .games img{
        width: 109px;
        height: 145px;
        text-align:center;
        margin: 0;
        padding: 0;
        border-radius: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .games .game_name{
        margin-top: -15px;
        color: #fff;
        font-size: 13px;
        margin-bottom: 5px;
        margin-left: 1px;
    }
    .games .catagori{
        font-size: 12px;
    }
    .games .catagori i{
        font-size: 12px
    }
}

/* Slider */
.slideshow-container {
    max-width: 100%;
    margin: auto;
    max-height: 300px;
    margin-top: 55px;
    background: #351c5e;
    position: relative;
    z-index: -1;
    }
    .mySlides {
    display: none;
    }
    .mySlides img{
        width:100%; 
        height: 400px;
    }
    .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    margin-bottom: 10px;
    }

    .active, .dot:hover {
    background-color: #717171;
    }
    .fade {
    animation-name: fade;
    animation-duration: 1.5s;
    }
    @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
    }

    @media (max-width: 772px) {
        .slideshow-container {
            max-width: 100%;
            margin: auto;
            max-height: 250px;
            margin-top: 55px;
        }
        .mySlides img{
            width:100%; 
            height: 290px;
        } 
    }
    /* Bottom nav */
    .bottom_nav{
        background: #0d0d0d;
        padding: 15px;
        margin-top: -62px;
    }
    .bottom_nav .content_bottom_nav{
        min-height: 0;
        background:transparent;
        display: flex;justify-content:space-between;align-items:center;
        padding-top: 0;
        margin: 0;
    }
    .bottom_nav .left ul{
        display: flex;
        justify-content: space-between;
    }
    .bottom_nav .left ul li{
       list-style-type: none;
       padding: 5px;
    }
    .right{
        display: grid;
        grid-template-columns: auto auto;
        grid-column-gap: 10px;
    }
    .right .abc{
        font-size: small;
        background: #2e2c47;
        padding: 5px 7px;
        color: #fff;
        border-radius: 3px;
        width: 100%;
    }
    .right a{
        background: #2e2c47;
        padding: 5px 7px;
        color: #fff;
        border-radius: 3px;
        width: 100%;
    }
    .bottom_nav .left ul li a{
        color: #fff;
    }
    @media (max-width: 500px) {
        .bottom_nav .left ul li{
            list-style-type: none;
            padding: 0;
            margin-right: 7px;
        }
        .bottom_nav .left ul li:last-child{
            margin-right: 0px;
        }
        .bottom_nav .left ul li a{
            font-size: small;
        }
        .right{
            display: grid;
            grid-template-columns: auto auto;
            grid-column-gap: 10px;
        }
        .right a{
            font-size: small;
            background: #2e2c47;
            padding: 5px 7px;
            color: #fff;
            border-radius: 3px;
            width: 100%;
        }
    }
    @media (max-width: 400px) {
        .bottom_nav .content_bottom_nav{
            display:block;
        }
        .right{
            margin-top: 10px;
            display: grid;
            grid-template-columns: auto auto;
            grid-column-gap: 10px;
        }
        .right .abc{
            background: #2e2c47;
            padding: 5px;
            color: #fff;
            border-radius: 3px;
            text-align: center;
            width: 100%;
        }
    }