body {
  background-image: url(../../img/wallpapers/fondo_de_empresas_01.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #66999;
    min-height: 100vh;
    font: normal 16px sans-serif;
}

.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    text-shadow: -1px 5px 10px rgb(35, 35, 35);
}

.gallery-container p.page-description {
    text-align: center;
    margin: 30px auto;
    font-size: 18px;
    color: #000000;
    font-family: 'Montserrat Alternates', sans-serif;
}

* {
	margin:0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}



a {
	text-decoration: none;
}

.contenedor {
	max-width: 1200px;
	margin:50px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.contenedor_tarjeta {
	margin: 20px;
}

.contenedor_tarjeta a {
	display: inline-block;
}

.contenedor_tarjeta:hover figure {
	transform: perspective(600px) rotateY(180deg);
	-webkit-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.25);
	box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.25);
}

.contenedor_tarjeta:hover figure img {
	/* Si queremos podemos aplicar un efecto blur a nuestra imagen al girar */
	/*filter:blur(2px);*/
}

figure {
	width: 300px;
	height: 350px;
	margin:0;
	position: relative;
	transition: all ease .5s;
	transform-style: preserve-3d;

	/* Nota:
		Establecemos que la imagen tendra una rotacion de 0grados al inicio porque si no
		ponemos esta propiedad nos da un poco de problemas en algunos navegadores al pasar el cursor.
	*/
	transform: perspective(600px) rotateY(0deg);
}

figure .frontal,
figure .trasera {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	transition: all ease .5s;
}

figure .frontal {
	display: block;
	background: #000;

	/* Podemos ocultar la imagen al da la vuelta si lo queremos */
	/*backface-visibility: hidden;*/
}

figure .trasera {
	position: absolute;
	top: 0;
	padding: 20px;
	color: #fff;
	transform: perspective(600px) rotateY(180deg);
	backface-visibility: hidden;
	overflow: auto;
}
/* ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------ */
.contenedor_tarjeta:nth-child(1) figure .trasera{
	background: rgba(223,234,241,0.7);
	background: -moz-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(223,234,241,0.7)), color-stop(100%, rgba(15,99,144,1)));
	background: -webkit-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -o-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -ms-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: linear-gradient(to bottom, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
}

.contenedor_tarjeta:nth-child(2) figure .trasera{
	background: rgba(233, 114, 211, 0.7);
	background: -moz-linear-gradient(top, rgba(233, 114, 211, 0.7) 0%, rgba(231, 0, 222, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(233, 114, 211, 0.7)), color-stop(100%, rgba(231, 0, 222, 1)));
	background: -webkit-linear-gradient(top, rgba(233, 114, 211, 0.7) 0%, rgba(231, 0, 222, 1) 100%);
	background: -o-linear-gradient(top, rgba(233, 114, 211, 0.7) 0%, rgba(231, 0, 222, 1) 100%);
	background: -ms-linear-gradient(top, rgba(233, 114, 211, 0.7) 0%, rgba(231, 0, 222, 1) 100%);
	background: linear-gradient(to bottom, rgba(233, 114, 211, 0.7) 0%, rgba(231, 0, 222, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#e700de', GradientType=0 );
}

.contenedor_tarjeta:nth-child(3) figure .trasera{
	background: rgba(237, 167, 85, 0.7);
	background: -moz-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237, 167, 85, 0.7)), color-stop(100%, rgba(255, 130, 0, 1)));
	background: -webkit-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -o-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -ms-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: linear-gradient(to bottom, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#ff8200', GradientType=0 );
}

.contenedor_tarjeta:nth-child(4) figure .trasera{
	background: rgba(223,234,241,0.7);
	background: -moz-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(223,234,241,0.7)), color-stop(100%, rgba(15,99,144,1)));
	background: -webkit-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -o-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -ms-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: linear-gradient(to bottom, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
}

.contenedor_tarjeta:nth-child(5) figure .trasera{
	background: rgba(95,58,53,0.7);
	background: -moz-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(95,58,53,0.7)), color-stop(100%, rgba(221,32,47,1)));
	background: -webkit-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -o-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -ms-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: linear-gradient(to bottom, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f3a35', endColorstr='#dd202f', GradientType=0 );
}

.contenedor_tarjeta:nth-child(6) figure .trasera{
	background: rgba(251,232,202,0.7);
	background: -moz-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(251,232,202,0.7)), color-stop(100%, rgba(25,44,72,1)));
	background: -webkit-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -o-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -ms-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: linear-gradient(to bottom, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#192c48', GradientType=0 );
}

.contenedor_tarjeta:nth-child(7) figure .trasera{
	background: rgba(11, 107, 35, 0.7);
	background: -moz-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11, 107, 35, 0.7)), color-stop(100%, rgba(13, 84, 25, 1)));
	background: -webkit-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -o-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -ms-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: linear-gradient(to bottom, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#074511', GradientType=0 );
}

.contenedor_tarjeta:nth-child(8) figure .trasera{
	background: rgba(237, 167, 85, 0.7);
	background: -moz-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237, 167, 85, 0.7)), color-stop(100%, rgba(255, 130, 0, 1)));
	background: -webkit-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -o-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -ms-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: linear-gradient(to bottom, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#ff8200', GradientType=0 );
}

.contenedor_tarjeta:nth-child(9) figure .trasera{
	background: rgba(11, 107, 35, 0.7);
	background: -moz-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11, 107, 35, 0.7)), color-stop(100%, rgba(13, 84, 25, 1)));
	background: -webkit-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -o-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -ms-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: linear-gradient(to bottom, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#074511', GradientType=0 );
}

.contenedor_tarjeta:nth-child(10) figure .trasera{
	background: rgba(251,232,202,0.7);
	background: -moz-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(251,232,202,0.7)), color-stop(100%, rgba(25,44,72,1)));
	background: -webkit-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -o-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -ms-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: linear-gradient(to bottom, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#192c48', GradientType=0 );
}

.contenedor_tarjeta:nth-child(11) figure .trasera{
	background: rgba(95,58,53,0.7);
	background: -moz-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(95,58,53,0.7)), color-stop(100%, rgba(221,32,47,1)));
	background: -webkit-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -o-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -ms-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: linear-gradient(to bottom, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f3a35', endColorstr='#dd202f', GradientType=0 );
}

.contenedor_tarjeta:nth-child(12) figure .trasera{
	background: rgba(237, 167, 85, 0.7);
	background: -moz-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237, 167, 85, 0.7)), color-stop(100%, rgba(255, 130, 0, 1)));
	background: -webkit-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -o-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -ms-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: linear-gradient(to bottom, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#ff8200', GradientType=0 );
}

.contenedor_tarjeta:nth-child(13) figure .trasera{
	background: rgba(150, 162, 9, 0.7);
	background: -moz-linear-gradient(top, rgba(150, 162, 9, 0.7) 0%, rgba(179, 156, 7, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(150, 162, 9, 0.7)), color-stop(100%, rgba(179, 156, 7, 1)));
	background: -webkit-linear-gradient(top, rgba(150, 162, 9, 0.7) 0%, rgba(179, 156, 7, 1) 100%);
	background: -o-linear-gradient(top, rgba(150, 162, 9, 0.7) 0%, rgba(179, 156, 7, 1) 100%);
	background: -ms-linear-gradient(top, rgba(150, 162, 9, 0.7) 0%, rgba(179, 156, 7, 1) 100%);
	background: linear-gradient(to bottom, rgba(150, 162, 9, 0.7) 0%, rgba(179, 156, 7, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#b8b608', GradientType=0 );
}

.contenedor_tarjeta:nth-child(14) figure .trasera{
	background: rgba(223,234,241,0.7);
	background: -moz-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(223,234,241,0.7)), color-stop(100%, rgba(15,99,144,1)));
	background: -webkit-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -o-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -ms-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: linear-gradient(to bottom, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
}

.contenedor_tarjeta:nth-child(15) figure .trasera{
	background: rgba(95,58,53,0.7);
	background: -moz-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(95,58,53,0.7)), color-stop(100%, rgba(221,32,47,1)));
	background: -webkit-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -o-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -ms-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: linear-gradient(to bottom, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f3a35', endColorstr='#dd202f', GradientType=0 );
}

.contenedor_tarjeta:nth-child(16) figure .trasera{
	background: rgba(233, 114, 211, 0.7);
	background: -moz-linear-gradient(top, rgba(233, 114, 211, 0.7) 0%, rgba(231, 0, 222, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(233, 114, 211, 0.7)), color-stop(100%, rgba(231, 0, 222, 1)));
	background: -webkit-linear-gradient(top, rgba(233, 114, 211, 0.7) 0%, rgba(231, 0, 222, 1) 100%);
	background: -o-linear-gradient(top, rgba(233, 114, 211, 0.7) 0%, rgba(231, 0, 222, 1) 100%);
	background: -ms-linear-gradient(top, rgba(233, 114, 211, 0.7) 0%, rgba(231, 0, 222, 1) 100%);
	background: linear-gradient(to bottom, rgba(233, 114, 211, 0.7) 0%, rgba(231, 0, 222, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#e700de', GradientType=0 );
}

.contenedor_tarjeta:nth-child(17) figure .trasera{
	background: rgba(251,232,202,0.7);
	background: -moz-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(251,232,202,0.7)), color-stop(100%, rgba(25,44,72,1)));
	background: -webkit-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -o-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -ms-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: linear-gradient(to bottom, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#192c48', GradientType=0 );
}

.contenedor_tarjeta:nth-child(18) figure .trasera{
	background: rgba(223,234,241,0.7);
	background: -moz-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(223,234,241,0.7)), color-stop(100%, rgba(15,99,144,1)));
	background: -webkit-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -o-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -ms-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: linear-gradient(to bottom, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
}

.contenedor_tarjeta:nth-child(19) figure .trasera{
	background: rgba(237, 167, 85, 0.7);
	background: -moz-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237, 167, 85, 0.7)), color-stop(100%, rgba(255, 130, 0, 1)));
	background: -webkit-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -o-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -ms-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: linear-gradient(to bottom, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#ff8200', GradientType=0 );
}

.contenedor_tarjeta:nth-child(20) figure .trasera{
	background: rgba(95,58,53,0.7);
	background: -moz-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(95,58,53,0.7)), color-stop(100%, rgba(221,32,47,1)));
	background: -webkit-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -o-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -ms-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: linear-gradient(to bottom, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f3a35', endColorstr='#dd202f', GradientType=0 );
}

.contenedor_tarjeta:nth-child(21) figure .trasera{
	background: rgba(11, 107, 35, 0.7);
	background: -moz-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11, 107, 35, 0.7)), color-stop(100%, rgba(13, 84, 25, 1)));
	background: -webkit-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -o-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -ms-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: linear-gradient(to bottom, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#074511', GradientType=0 );
}

.contenedor_tarjeta:nth-child(22) figure .trasera{
	background: rgba(223,234,241,0.7);
	background: -moz-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(223,234,241,0.7)), color-stop(100%, rgba(15,99,144,1)));
	background: -webkit-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -o-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -ms-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: linear-gradient(to bottom, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
}

.contenedor_tarjeta:nth-child(23) figure .trasera{
	background: rgba(11, 107, 35, 0.7);
	background: -moz-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11, 107, 35, 0.7)), color-stop(100%, rgba(13, 84, 25, 1)));
	background: -webkit-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -o-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -ms-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: linear-gradient(to bottom, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#074511', GradientType=0 );
}

.contenedor_tarjeta:nth-child(24) figure .trasera{
	background: rgba(251,232,202,0.7);
	background: -moz-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(251,232,202,0.7)), color-stop(100%, rgba(25,44,72,1)));
	background: -webkit-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -o-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -ms-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: linear-gradient(to bottom, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#192c48', GradientType=0 );
}

.contenedor_tarjeta:nth-child(25) figure .trasera{
	background: rgba(150, 162, 9, 0.7);
	background: -moz-linear-gradient(top, rgba(150, 162, 9, 0.7) 0%, rgba(179, 156, 7, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(150, 162, 9, 0.7)), color-stop(100%, rgba(179, 156, 7, 1)));
	background: -webkit-linear-gradient(top, rgba(150, 162, 9, 0.7) 0%, rgba(179, 156, 7, 1) 100%);
	background: -o-linear-gradient(top, rgba(150, 162, 9, 0.7) 0%, rgba(179, 156, 7, 1) 100%);
	background: -ms-linear-gradient(top, rgba(150, 162, 9, 0.7) 0%, rgba(179, 156, 7, 1) 100%);
	background: linear-gradient(to bottom, rgba(150, 162, 9, 0.7) 0%, rgba(179, 156, 7, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#b8b608', GradientType=0 );
}

.contenedor_tarjeta:nth-child(26) figure .trasera{
	background: rgba(251,232,202,0.7);
	background: -moz-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(251,232,202,0.7)), color-stop(100%, rgba(25,44,72,1)));
	background: -webkit-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -o-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -ms-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: linear-gradient(to bottom, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#192c48', GradientType=0 );
}

.contenedor_tarjeta:nth-child(27) figure .trasera{
	background: rgba(223,234,241,0.7);
	background: -moz-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(223,234,241,0.7)), color-stop(100%, rgba(15,99,144,1)));
	background: -webkit-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -o-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -ms-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: linear-gradient(to bottom, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
}

.contenedor_tarjeta:nth-child(28) figure .trasera{
	background: rgba(95,58,53,0.7);
	background: -moz-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(95,58,53,0.7)), color-stop(100%, rgba(221,32,47,1)));
	background: -webkit-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -o-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: -ms-linear-gradient(top, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	background: linear-gradient(to bottom, rgba(95,58,53,0.7) 0%, rgba(221,32,47,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f3a35', endColorstr='#dd202f', GradientType=0 );
}

.contenedor_tarjeta:nth-child(29) figure .trasera{
	background: rgba(223,234,241,0.7);
	background: -moz-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(223,234,241,0.7)), color-stop(100%, rgba(15,99,144,1)));
	background: -webkit-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -o-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -ms-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: linear-gradient(to bottom, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
}

.contenedor_tarjeta:nth-child(30) figure .trasera{
	background: rgba(251,232,202,0.7);
	background: -moz-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(251,232,202,0.7)), color-stop(100%, rgba(25,44,72,1)));
	background: -webkit-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -o-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: -ms-linear-gradient(top, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	background: linear-gradient(to bottom, rgba(251,232,202,0.7) 0%, rgba(25,44,72,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#192c48', GradientType=0 );
}

.contenedor_tarjeta:nth-child(31) figure .trasera{
	background: rgba(11, 107, 35, 0.7);
	background: -moz-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11, 107, 35, 0.7)), color-stop(100%, rgba(13, 84, 25, 1)));
	background: -webkit-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -o-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: -ms-linear-gradient(top, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	background: linear-gradient(to bottom, rgba(11, 107, 35, 0.7) 0%, rgba(13, 84, 25, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#074511', GradientType=0 );
}

.contenedor_tarjeta:nth-child(32) figure .trasera{
	background: rgba(223,234,241,0.7);
	background: -moz-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(223,234,241,0.7)), color-stop(100%, rgba(15,99,144,1)));
	background: -webkit-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -o-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -ms-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: linear-gradient(to bottom, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
}

.contenedor_tarjeta:nth-child(33) figure .trasera{
	background: rgba(237, 167, 85, 0.7);
	background: -moz-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237, 167, 85, 0.7)), color-stop(100%, rgba(255, 130, 0, 1)));
	background: -webkit-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -o-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: -ms-linear-gradient(top, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	background: linear-gradient(to bottom, rgba(237, 167, 85, 0.7) 0%, rgba(255, 130, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#ff8200', GradientType=0 );
}

figure .trasera .titulo {
	color: #fff;
	font-weight: normal;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
}

figure .trasera hr {
	height: 2px;
	background: #fff;
	border: none;
	margin-bottom: 20px;
	opacity: .5;
}

figure .trasera p {
	font-family: 'Open Sans', sans-serif;
	line-height: 22px;
	font-size: 14px;
}

@media screen and (max-width: 992px) {
	figure .trasera {
		/*position: relative;*/
		backface-visibility:visible;
		transform: perspective(600px) rotateY(0deg);
	}

	.contenedor_tarjeta:hover figure {
		transform: perspective(600px) rotateY(0deg);
	}

}