@charset "utf-8";
/* CSS Document */
#empleados {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-bottom: 3em;
}
#empleados > section {
	width: 70%;
	text-align: justify;
	background-size: 30% auto;
	background-repeat: no-repeat;
	overflow: hidden;
	transition: transform 1s ease-in-out 0s;
    transform: translateX(100%);
}
#empleados > section:nth-of-type(2n+1) {
	margin-left: 0px;
	margin-right: auto;
	background-position: left top;
	
}
#empleados > section:nth-of-type(2n) {
	margin-left: auto;
	margin-right: 0px;
	background-position: right top;
	flex-direction: row-reverse;
    transform: translateX(-100%);
} 
#empleados > section.dentro {
    transform: translateX(0px);
}
#empleados > section:nth-of-type(2n) h2 {
	text-align: right;
}
#empleados > section:nth-of-type(1) {
	background-image:url("../imagenes/foto-candi1.jpg");
}
#empleados > section:nth-of-type(2) {
	background-image:url("../imagenes/foto-candido.jpg");
}
#empleados > section > div {
	padding: 2em;
	background-color: rgba(255,255,255,0.5);
	margin-top: 6em;
	
}
#empleados > section:nth-of-type(2n+1) > div {
	margin-left: 20%;
}
#empleados > section:nth-of-type(2n) > div {
	margin-right: 20%;
}
#navegador a:nth-of-type(2) {
	background-color: white;
	color:black;
}
@media (max-width: 800px) {
	#empleados > section {
		width: 100%;
	}
	#empleados > section > div {
		padding: 1.5em;
		margin-top: 3em;
	}
	#empleados h3 {
		text-align: center;
	}
}
