@charset "utf-8";
/* CSS Document */

.contenido-galeria .col-6 {
    overflow: hidden;
}
.contenido-galeria .col-6 a img {
    height: 100% !important;
    -webkit-transition: all 0.2s linear;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.contenido-galeria .col-6 a:hover img {
    width: auto !important;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}
.contenido-galeria .col-img a img {
	object-fit: cover;
}