/* nuevo proyecto aqui comienza la galeria linear simple */
.contenedor {
  height: 200px;
  width: 350px;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: 0 10px 20px #dbdbdb;
  font-family: sans-serif;
}

.palette {
  display: flex;
  height: 86%;
  width: 100%;
}

.color {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: flex 0.1s linear;
}

.color span {
  opacity: 0;
  transition: opacity 0.1s linear;
}

.color:hover {
  flex: 2;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.color:hover span {
  opacity: 1;
}

#stats {
  height: 14%;
  width: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5em;
  box-sizing: border-box;
  color: #bebebe;
}

#stats svg {
  fill: #bebebe;
  transform: scale(1.2);
}
/* aqui termina la galeria linear simple */


/* Iniciamos GALERIA de IMAGENES con efecto lightbox HTML y CSS  ALEX CG DESIGN*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.linea {
		background: #550b51;
		height: 5px;
		width: 100%;
		display: block;
}

.galeriainicial	 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	width: 95%;
	margin: auto;
	grid-gap: 10px;
	padding: 30px 0;
	overflow: hidden;
}

.galeriainicial > a{
	display: block;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 6px rgba(0, 0, 0, .5);
	border-radius: 10%
}

.galeriainicial a:hover img {
	filter: blur(2px);
	transform: rotate(30deg) scale(1.3);
}

.galeriainicial img {
	width: 100%;
	vertical-align: top;
	height: 300px;
	object-fit: cover;
	transition: transform 0.5s;
}

cuerpo {
	font-family: 'Raleway', sans-serif;
}
	
.light-box {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.5);
	transition: transform .3s ease-in-out;
	width: 100%;
	height: 100vh;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
}

.light-box img{
	width: 95vm;
	max-height: 80vh;
}

.light-box:target {
	transform: scale(1);
}

.close {
	display: block;
	position: absolute;
	top: 80px;
	right: 40px;
	background: #851919;
	color: #fff;
	text-decoration: none;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
}

/* esto es para colocar las flechas de navegacion entre las imagenes 
.next {
	display: block;
	background: #851919;
	color: #fff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-decoration: none;
	text-align: center;
}*/
/* aqui terminamos con la galeria de imagenes ALEX CG DESIGN */


/* aqui comienza la prueba de carrusel */

/*.thumbnail-mary-figure2 {
	display: block;
}*/

.thumbnail-mary-figure2 img {
	width: 300px;
	height: 320px;
	transition: all .4s ease-in-ont;
	border-radius: 10%;
	box-shadow: 0 0 6px rgba(0, 0, 0, .5);
}

.lineaarriba {
		background: #550b51;
		height: 5px;
		width: 100%;
		display: block;
}



	