#frame_contenido {
	padding: 0;
	padding-top: 2em;
	margin: 0;
	/* background-color: #3b4791; */
	background: #3B4791;
	background: linear-gradient(180deg, rgba(59, 71, 145, 1) 0%, rgba(59, 71, 145, 1) 80%, rgba(59, 71, 145, 0) 100%);
	margin-bottom: 0;
}

#frame_contenido .contenedor {
	width: 90%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#frame_contenido .contenedor article {
	width: 100%;
	margin: .5em;
	height: auto;

	/* opacity: 0;
	transition: all 1s; */
}

/* PARA ANIMACIONDE SCROLL */
.mostrarArriba {
	animation: mostrarArriba 1s;
}
@keyframes mostrarArriba {
	0% {
		transform: translateX(-80px);
	}
	100% {
		transform: translateX(0);
	}
}
/* FIN DE ANIMACIONDE SCROLL */

#frame_contenido article img {
	margin: auto;
	margin-left: 0;
	width: 100%;
}

#frame_contenido #title {
	margin: 0;
	padding-top: 0;
	padding-left: .2em;
	font-size: 1.4em;
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-weight: 200;
	color: #ffffff;
}

#frame_contenido article a:hover img{
	/*-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	filter: blur(2px);*/

	-webkit-filter: brightness(70%);
	-moz-filter: brightness(70%);
	filter: brightness(70%);
}

/* 
========================
      BUTTON OTRO
#frame_contenido .ton a {
		background-color: steelblue;
		color: orange;
		border-radius: 30px;
		border: 1px solid orange;
		padding: 20px;
		margin: 1em;
	}

	#frame_contenido .ton a:hover {
		border-radius: 30px;
		color: #fff;
		background-color: steelblue;
		border: 0px;
	}
		========================
*/

	div[class*=box] {
  		height: 28%;
  		width: 100%; 
  		display: flex;
  		justify-content: center;
  		align-items: center;
  		font-family: 'Raleway', sans-serif;
	}

/* 
========================
      BUTTON THREE
========================
*/
.btn-three  {
  color: #FFF;
  transition: all 0.5s;
  position: relative;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 50px;
}
.btn-three::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255,255,255,0.1);
  transition: all 0.3s;
  border-radius: 30px;
}
.btn-three:hover::before {
  opacity: 0 ;
  transform: scale(0.5,0.5);
}
.btn-three::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.5);
  transform: scale(1.1,1.1);
  border-radius: 30px;
}
.btn-three:hover::after {
  opacity: 1;
  transform: scale(1,1);
  cursor: pointer;
}
a:visited {
  text-decoration: none;
}

/* Media Querys MEDIANO */
@media screen and (min-width: 768px) {

	#frame_contenido .contenedor article {
		width: 40%;
		height: auto;
		margin: 30px 30px;
	}


	#frame_contenido #title {
		margin: 0;
		padding-top: 0;
		padding-left: .2em;
		font-size: 1.7em;
		color: #ffffff;
	}

	#frame_contenido article img {
		width: 100%;
	}

}

/* Media Querys COMPLETO */
@media (min-width: 1120px) {

	#frame_contenido .contenedor article {
		width: 36%;
		height: auto;
		margin: 3em .3em;
		margin-top: 0;
		/*outline: 1px solid #B6B6B6;*/
	}

	#frame_contenido article img {
		margin: .6em .6em;
		width: 95%;
	}

}