
section.contenedor-tarjeta-giratoria {
	/*font-family: Helvetica, Arial, sans-serif;*/
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

section.tarjeta-giratoria {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	transform-style: preserve-3d;
	width: 500px;
	max-width: 100%;
}

section.tarjeta-giratoria .tarjeta {
	position: relative;
	width: 375px;
	height: 400px;
	margin: 20px;
	transform-style: preserve-3d;
	perspective: 1000px;
}

section.tarjeta-giratoria .tarjeta .box {
	position: absolute;
	/* background-color: var(--color-curso); */
	background: linear-gradient(45deg, var(--color-curso), #ffffff);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: 1s ease;
}

section.tarjeta-giratoria .tarjeta:hover .box {
	transform: rotateY(180deg);
}

section.tarjeta-giratoria .tarjeta .box .contenedor1 {
	position: absolute;
	top: 30px;
	left: 0;
	width: 100%;
	height: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
    
}
section.tarjeta-giratoria .tarjeta .box .contenedor1a {
	position: absolute;
	top: 340px;
	left: 0;
	width: 100%;
	height: 30%;
	display: flex;
	justify-content: center;
	align-items: baseline;
    
}
section.tarjeta-giratoria .tarjeta .box .contenedor1a p {
    font-size: 11px;
    word-break: break-all;
    text-align: center;
    padding-left: 2px;
    padding-right: 2px;
    line-height: normal;
}

section.tarjeta-giratoria .tarjeta .box .contenedor1 img {
	width: 90%;
}

section.tarjeta-giratoria .tarjeta .box .contenedor2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: top;
	background: #ffffff;
	backface-visibility: hidden;
	transform-style: preserve-3d;
	transform: rotateY(180deg);
    border: #000000 solid thin;
}

section.tarjeta-giratoria .tarjeta .box .contenedor2 div {
	display: flex;
	flex-direction: column;
	transform-style: preserve-3d;
	width: 100%;
	padding: 29px;
	/* background: linear-gradient(45deg, var(--color-curso), #ffeb3b); */
	background-color: var(--color-curso);
	transform: translateZ(100px);
    height: 90%;
    
}

section.tarjeta-giratoria .tarjeta .box .contenedor2 div h2 {
	color: #222222;
	font-size: 16px;
	margin-bottom: 10px;
}

section.tarjeta-giratoria .tarjeta .box .contenedor2 div p {
	color: #2c2c2c;
	font-size: .8em;
	line-height: 25px;
}

section.tarjeta-giratoria .tarjeta .box .contenedor2 div a.info {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	display: inline-block;
	text-decoration: none;
	padding: 7px 10px;
	background: #000;
	color: #fff;
	-webkit-box-shadow: 0 0 1px #000;
	-moz-box-shadow: 0 0 1px #000;
	box-shadow: 0 0 1px #000;
	font-size: 12px;
	width: 100px;
	text-align: center;
	margin: 0 auto;
	margin-top: 10px;
}