@import url('https://fonts.googleapis.com/css?family=Raleway|Roboto+Condensed');

#p_quienes {
	background: #3b4791;
	color: #fff;
	padding-top: 1em;
	padding-bottom: 1em;
}

#p_quienes .contenedor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#picture_qs {
	width: 100%;
	display: table;
}

#picture_qs img {
	width: 100%;
	height: auto;
}

.info_tarcredito {
	width: 100%;
	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 */

.info_tarcredito a {
	color: #000;
	text-decoration: none;
	font-size: 1.2em;
}

.info_tarcredito .titular {
	color: #d8dee7;
	text-align: left;
	font-size: 1.8em;
	font-family: 'Raleway', sans-serif;
	margin-top: 0;
	padding-top: .5em;
	padding-left: 1em;
	padding-bottom: 0;
	margin-bottom: 0;
}

.info_tarcredito p {
	margin-top: 0;
	padding: 1em;
	padding-top: 0;
	padding-left: 2em;
	font-size: 1em;
	color: #d8dee7;
	font-family: 'Raleway', sans-serif;
	text-align: justify;
}

#p_quienes ul {
	list-style: none;
	text-decoration: none;
}

.info_tarcredito li {
	margin-top: 0%;
	padding: .1em;
	padding-left: 0;
	font-size: 1.4em;
	color: #c0e3fa;
	text-align: justify;
	font-family: 'Raleway', sans-serif;
}

#p_quienes .ton a {
	list-style: none;
	color: #fff;
	border-radius: 25px;
	/*border: 1px solid #000;*/
	background-color: gray;
	padding: 2px 3%;
	margin: 1em;
	margin-left: 0;
}

#p_quienes .ton a:hover {
	border-radius: 25px;
	color: #fff;
	background-color: #000;
	border: 0px;
}

div[class*=box] {
  		height: 28%;
  		width: 100%; 
  		display: flex;
  		justify-content: center;
  		align-items: center;
	}

/* 
========================
      BUTTON THREE
========================
*/
.btn-three  {
  color: #FFF;
  transition: all 0.5s;
  position: relative;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
  margin-left: 34px;
  margin-bottom: 50px;
  font-family: 'Raleway', sans-serif;
  width: 140px;
}
.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 */

@media (min-width: 480px) {

	/* #p_fondo p { 
		color: #ffffff;
		text-align: center;
		font-size: 3.5em;
		font-family: 'Raleway', sans-serif;
		margin: 0;
		padding-top: 3em;
		padding-left: 2.2em;
		padding-bottom: 0;
		text-shadow: 3px 3px 6px #000;
	} */

	#p_quienes {
	color: #fff;
	padding-top: 1em;
	padding-bottom: 1em;
}

	#picture_qs {
		width: 35%;
		display: table;
	}

	#picture_qs img {
		padding-left: 0%;
		width: 100%;
		height: auto;
	}

	.info_tarcredito .titular {
		padding-top: 14%;
	}

}

@media (min-width: 1024px) {

	#picture_qs {
		width: 40%;
		display: table;
	}

	.info_tarcredito {
		width: 55%;
	}

	.info_tarcredito p {
		margin-top: 15px;
		padding: 0 2rem;
		padding-top: 0;
		padding-right: 100px;
		font-size: 1.3em;
	}

}

