* {
	margin: 0;
	padding: 0;
}

h1 {	
	font-family: "Courgette", cursive;
}
h3 {	
	font-family: "Raleway", sans-serif;
	font-weight: bold;
}
p {	
	font-family: "Raleway", sans-serif;
}

#content {
	margin-top: 136px;
}

#nosotros-container {
	color: white;
	text-align: center;
	position: relative;
	width: 100%;
	padding: 8px 0;
	background: url(../imgs/textures/back-1.jpg) no-repeat center;
	background-size: cover;
}

#datos-container {
	margin-top: 16px;
}
#datos-container > ul {
	list-style: none;
	text-align: center;
	width: 100%;
}
#datos-container > ul > li {
	vertical-align: top;
	position: relative;
	width: 33.333%;
	text-align: center;
	display: inline-block;
	margin-right: -6px;
	max-width: 800px;
}
#datos-container > ul > li:nth-child(1) {
	position: relative;
	left:50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	width: 100%;
	display: block;
}
#datos-container > ul > li:nth-child(1) > .datos-separator {
	top:20px;
}
#datos-container > ul > li > * {
	margin: 10px 0;
}
#datos-container > ul > li > .datos-separator {
	position: absolute;
	top:31px;
	left:50%;
	transform: translate(-50%,0%);
	transform: translate(-50%,0%);
	width: 80%;
	border-top:2px dotted #7f2e2f;
}
#datos-container > ul > li > .icon-container {
	position: relative;
	left:50%;
	transform: translate(-50%,0%);
	-webkit-transform: translate(-50%,0%);
	border:4px solid #7f2e2f;
	border-radius: 48px;
	width: 54px;
	height: 54px;
	background-color: white;
	padding: 0;
}
#datos-container > ul > li > .icon-container > img {
	position: relative;
	height:48px;
	top:2px;
}
#datos-container > ul > li:hover > .icon-container > img {
	animation: vibrate 0.5s 1;
	-webkit-animation: vibrate 0.5s 1;
}
#datos-container > ul > li.selected > .icon-container > img {
	animation: vibrate 0.5s 1;
	-webkit-animation: vibrate 0.5s 1;
}
#datos-container > ul > li > .title-separator {
	position: relative;
	left:50%;
	transform: translate(-50%,0%);
	-webkit-transform: translate(-50%,0%);
	width: 0;
	height: 0;
	margin: -6px 0;
	border-top:1px solid #7f2e2f;
	transition: width 0.25s ease-in-out;
}
#datos-container > ul > li:hover > .title-separator {
	width: 40%;
}
#datos-container > ul > li.selected > .title-separator {
	width: 40%;
}
#datos-container > ul > li > h3 {
	color: #7f2e2f;
}
#datos-container > ul > li > p {
	padding: 0 32px;
	text-align: center;
}

#servicios-container {
	position: relative;
	margin: 20px 0;
	width: 100%;
}
#servicios-container > #heachoamano-back {
	position: relative;
	width: 100%;
	min-height: 300px;
	max-height: 500px;
	height: 100%;
	background: url("../imgs/nosotros/hechoamano.jpg") no-repeat 50% 75%;
	background-size: cover;
}
#servicios-container > #heachoamano-back > img {
	padding: 8px;
	width: 128px;
}
#servicios-container > p {
	outline: 1px dotted rgba(147,42,45,0.75);
	outline-offset: 6px;
	color: white;
	padding: 16px;
	background-color: rgba(147,42,43,0.75);
	bottom: 0;
}

#hechoenmexico-banner {
	width: 100%;
	height: 80px;
	background: url("../imgs/nosotros/hechoenmexico.png") repeat-x center;
	background-size: 80px;
}

.dotted-separator {
	width: 100%;
	border-top: 1px dotted rgba(147,42,45,0.75);
}

@media screen and (max-width:940px) {
	#datos-container > ul > li {
		margin: 32px 0;
		position: relative;
		left:50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		width: 100%;
		display: block;
	}
	#datos-container > ul > li > .datos-separator {
		top:21px;
	}
}

@keyframes vibrate {
	0% { transform: rotate(0deg); }
	20% { transform: rotate(45deg); }
	40% { transform: rotate(-45deg); }
	100% { transform: rotate(0deg); }
}
@-webkit-keyframes vibrate {
	0% { transform: rotate(0deg); }
	20% { transform: rotate(45deg); }
	40% { transform: rotate(-45deg); }
	100% { transform: rotate(0deg); }
}