/* IMAGENES GALERIA */

.imagenes_galeria {
	background-color: white;
}


.imagenes_galeria > .imagenes {

}

.imagenes_galeria > .imagenes .item:hover {
	box-shadow: 0 8px 10px -2px rgba(0,0,0,0.1);
}

.imagenes_galeria > .imagenes .item img { 
	width: 100%; 
	border-radius: 16px;
}


.imagenes_galeria > .imagenes .item .link {

}

.imagenes_galeria > .imagenes .item .overlay,
.imagenes_galeria > .imagenes .item .overlay:before  {
	transition: all 0.3s ease;
}


.imagenes_galeria > .imagenes .item:hover .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.6); 
	z-index:10;
	display: flex;
	justify-content: center;
	align-items: center;
}

.imagenes_galeria > .imagenes .item .icono {
	position: absolute;
	top: -200px; 
	right: 20px;
	transition: all 0.3s ease;
}

.imagenes_galeria > .imagenes .item:hover .icono {
	top: 10px;
	color: #fff;
	z-index: 30;
	text-align: left;
	display: block;
}

.imagenes_galeria > .imagenes .item:hover .icono:before {
	content: '\e924';
	font-size: 30px;
	font-family: 'sdelsol_icon';
	color: #fff;
	
}


.imagenes_galeria > .imagenes .item img { padding: 0; }

.imagenes_galeria > .imagenes .item:hover img {
    transform: none;
	margin:0;
}


.imagenes_galeria > .imagenes .item .info_img {
	position: absolute;
	bottom: -200px;
	transition: all 0.3s ease;
}

.imagenes_galeria > .imagenes .item .info_img > .titulo {
	font-weight: bold;
	padding: 20px 20px 0px;
}
.imagenes_galeria > .imagenes .item .info_img > .descripcion {
	font-size: 12px;
	padding: 0 20px 20px;
}

.imagenes_galeria > .imagenes .item:hover .info_img {
	bottom: 0px;
	color: #fff;
	z-index: 30;
	text-align: left;
	display: block;
	background: rgba(0, 0, 0, 0.6);
	width: 100%;
}





/* IMAGENES BASICA */


.imagenes_basica {
	margin-bottom: 40px;
	background-color: white;
}


.imagenes_basica > .imagenes {
	display: flex;
	flex-wrap: wrap;
}

.imagenes_basica > .imagenes .item {
	background: #fff;
	box-shadow: 0 1px 5px rgba(0,0,1,.05);
	/* padding: 25px 30px; */
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	border: 1px solid #eaeaea;
}



.imagenes_basica > .imagenes .item img {width: 100%;}

.imagenes_basica > .imagenes .item .zoom { overflow:hidden; position: relative; }
.imagenes_basica > .imagenes .item .zoom .overlay,
.imagenes_basica > .imagenes .item .zoom .overlay:before  {
	transition: all 0.3s ease;
}


.imagenes_basica > .imagenes .item .zoom:hover .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.4); 
	z-index:10;
	display: flex;
	justify-content: center;
	align-items: center;
}

.imagenes_basica > .imagenes .item .zoom .icono {
	position: absolute;
	top: -200px; 
	right: 20px;
	transition: all 0.3s ease;
}

.imagenes_basica > .imagenes .item .zoom:hover .icono {
	top: 20px;
	color: #fff;
	z-index: 30;
	text-align: left;
	display: block;
}

.imagenes_basica > .imagenes .item .zoom:hover .icono:before {
	content: '\e929';
	font-size: 30px;
	font-family: 'sdelsol_icon';
	color: #fff;
	
}

.imagenes_basica > .imagenes .item > .info_img {
	padding: 25px 30px;
}

.imagenes_basica > .imagenes .item > .info_img > .titulo {
	font-size: 24px;
	margin-bottom: 10px;
	line-height: 1.2;
	font-weight: 700;
	z-index: 10;
	position: relative;
}


.imagenes_basica > .imagenes .item > .info_img > .titulo > a {
	color: #151515;
}
.imagenes_basica > .imagenes .item > .info_img > .titulo > a:hover {
	color: #666;
}

.imagenes_basica > .imagenes .item > .info_img > .descripcion {
	color: #999;
	position: relative;
	z-index: 20;
	flex-grow: 1;
}


.imagenes_basica > .imagenes .item > .info_img > .link {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eaeaea;
	text-align: right;
}
