/*Extra small devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap*/


/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { 

}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    
}

/*---------------------------------------------*/

/* Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    
}

/* Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    
}

/* Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .logo img {
        margin-left: 0;
        max-width: 100%;
    }    
    .logo {
        text-align: center;
    }
    .nav-soc .nav_lang {
        justify-content: flex-start;
        padding: 0;
        margin-top: -30px;
    }
    .navbar-collapse {
        background-image: url(../img/bg_gen.png);
        background-size: cover;
        background-position: center;
        position: absolute;
        right: 0;
        left: 0;
        top: 50px;
        z-index: 99;
        padding: 15px;
    }
    .gallerycont a {
        max-width: 50%;
        padding: 10px;
    }
    .steam_btn {
        max-width: 100%;
        overflow-x: scroll;
    }
    /*
    .steam_btn iframe {
        max-width: 100%;
    }*/
}
    
/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    
}

/* Extra large devices (large desktops)
// No media query since the extra-large breakpoint has no upper bound on its width/*