* {
	margin:0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}



a {
	text-decoration: none;
}

#list {
	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;
    cursor: default;
}

.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 {
	
	
}

figure {
	width: 300px;
	height: 350px;
	margin:0;
	position: relative;
	transition: all ease .5s;
	transform-style: preserve-3d;
	
	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;

	
	/*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:#BA882C;
	background: -moz-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%,#BA882C), color-stop(100%, #77858c));
	background: -webkit-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: -o-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: -ms-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: linear-gradient(to bottom,#BA882C 0%, #77858c 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#192c48', GradientType=0 );
}

.contenedor_tarjeta:nth-child(2) figure .trasera {
	background:#BA882C;
	background: -moz-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%,#BA882C), color-stop(100%, #77858c));
	background: -webkit-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: -o-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: -ms-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: linear-gradient(to bottom,#BA882C 0%, #77858c 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#192c48', GradientType=0 );
}

.contenedor_tarjeta:nth-child(3) figure .trasera,
.contenedor_tarjeta:nth-child(4) figure .trasera {
	background:#BA882C;
	background: -moz-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%,#BA882C), color-stop(100%, #77858c));
	background: -webkit-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: -o-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: -ms-linear-gradient(top,#BA882C 0%, #77858c 100%);
	background: linear-gradient(to bottom,#BA882C 0%, #77858c 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#192c48', 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;
}
.frontal{
    box-shadow: 0 1.5em 0.5em -0.4em #9f9f9f9f;
}