/*Estilos Galería*/

.galeria{
    display: flex;
    flex-flow: column;
}

.galeria a,.galeria .imagen{
    width: 100%;
    transition: all .5s ease-in-out;
}

.galeria .imagen{
    height: 200px;
    border: 1px solid #000;
}

.galeria a{
    margin: 10px 0;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    position: relative;
    cursor: pointer;
}

.galeria a::after{
    width: 100%;
    content: '\f31e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 25px;
    color: #FFF;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease-in-out;
}

    /*Media Queries*/

    @media only screen and (min-width: 768px){
        
        .galeria{
            flex-flow: row wrap;
            justify-content: space-between;
        }
        
        .galeria a{
            width: 47.5%;
        }
        
    }

    @media only screen and (min-width: 1024px){

        .galeria a{
            width: 32.5%;
        }
        
        .galeria a:hover::after{
            opacity: 1;
        }
        
        .galeria a:hover img{
            transform: scale(1.1);
        }

    }

    @media only screen and (min-width: 1440px){

        .galeria a{
            width: 22.5%;
        }

    }

    /*Fin Media Queries*/

/*Fin Estilos Galería*/