.galeria{
    padding-top: 150px;
    padding-bottom: 12vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.galeria .banner_img{
    height: 100svh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.galeria .banner_img img{
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.galeria .bar{
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%,50%);
    width: 150px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    color: rgb(227, 227, 227);
    font-size: 1.2em;
    z-index: 3;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/36.png);
    background-size: cover;
    background-position: center;
    border-radius: 9px;
    border: 1px solid #cdab7c93;;
}

.galeria h2{
    margin-block: 30px;
    color: rgb(210, 210, 210);
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3);
    
}
.galeria .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    flex-basis:30%;
    width: 80%;
}

.galeria .container .box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    flex-basis:30%;
}

.galeria .container .box img{
    width: 80%;
    max-width: 300px;
}

.banner_mob{display: none;}


@media screen and (max-width:940px){
    .galeria{
        padding-top: 180px;
        padding-bottom: 12vh;
        width: 100%;
    }
    .galeria .bar{
        top: 100px;
    }
    .galeria .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        flex-basis:30%;
        width: 95%;
    }
}


@media screen and (max-width:780px){
    .galeria .banner_img{display: none;}

    .galeria .banner_mob{
        display: inline-block;
        object-fit: cover;
        object-position: center;
        height: 100svh;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .galeria .banner_mob img{
        height: 100%;
        width: 100%;
        position: fixed;
    }

}