/* * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
} */

section.contenedor-tarjeta-giratoria {
	font-family: 'Open Sans', 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: 100%;
	max-width: 100%;
    height: 100%;
}

section.tarjeta-giratoria .tarjeta {
	position: relative;
	width: 1000px;
	height: 100%;
	margin: 20px;
	transform-style: preserve-3d;
	perspective: 1000px;
}

section.tarjeta-giratoria .tarjeta .box {
	position: absolute;
	/* background-color: var(--color-curso); */
	background: #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: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

section.tarjeta-giratoria .tarjeta .box .contenedor1 i.fas.fa-redo.fa-flip-vertical {
	position: fixed;
	bottom: 1em;
	right: 5em;
	color: #444444;
	transform: rotateX(45deg) rotateY(180deg);
}

section.tarjeta-giratoria .tarjeta .box .contenedor1 img {
	width: 100%;
}

section.tarjeta-giratoria .tarjeta .box .contenedor2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #aaaaaa;
	backface-visibility: hidden;
	transform-style: preserve-3d;
	transform: rotateY(180deg);
}

section.tarjeta-giratoria .tarjeta .box .contenedor2 div {
	display: flex;
	flex-direction: column;
	transform-style: preserve-3d;
	width: 100%;
	padding: 20px;
	/* background: linear-gradient(45deg, var(--color-curso), #ffeb3b); */
	background-color: var(--color-curso);
	transform: translateZ(100px);
}

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: #222222;
	font-size: 1.0em;
    font-weight: lighter;
	line-height: normal;
}

section.tarjeta-giratoria .tarjeta .box .contenedor2 div a.info {
	font-family: 'Open Sans', 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;
}