html{
	overflow-x: hidden;
}
body {

	background-color: #fff;

	text-align: center;
	
	font-family: 'GOTHICR', Arial, Helvetica, sans-serif;
	
	font-size:16px;

	color: #555;
	
	margin:0;
	
	padding:0;

	overflow-x: hidden;

	-webkit-font-smoothing: subpixel-antialiased;

	-webkit-overflow-scrolling: touch;

}

ul,
ol,
li,
section,
header {
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
input[type='text'],
textarea {
	display: block;
	float: left;
	width: 	100%;
	height: 50px;
	margin: 5px 0;
	line-height: 50px;
	font-family: 'GOTHICB';
	color: #323232;
	border-radius: 3px;
	border: 1px solid #bbb;
	-webkit-appearance: none;
	-moz-appearance:    none;
	appearance:         none;
	outline: none;
	padding: 0 20px;
}

/* ============================================== index.php */
.index section {
	position: relative;
	z-index: 100;
}
header {
	display: block;
	position: relative;
	float: left;
	width: 100%;
	z-index: 999999;
	padding: 0 5%;
	height: 100px;
	max-height: 100px;
	background-color: #000;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
	overflow: visible;
}
.fixed header {
	position: fixed;
	top: 0;
	left: 0;
}
header .logo {
	display: block;
	float: left;
	width: auto;
	height: 80px;
	margin: 10px 0;
	padding: 0;
}
header .logo img {
	height: 100%;
	margin: 0;
	padding: 0;
}
header .menu {
	display: block;
	float: right;
	width: auto;
	height: 40px;
	margin: 30px 0;
}
header .menu li {
	display: block;
	float: left;
	width: auto;
	height: 100%;
	line-height: 35px;
	border: 2px solid transparent;
	border-radius: 15px;
	padding: 0 15px;
	margin: 0;
	cursor: pointer;
	font-family: 'GOTHICB';
	color: #fff;
}
header .menu li.active {
	border: 2px solid #fff600;
}
header .menu li:hover{
	color: #fff600;
}
header .menu li.close {
	display: none;
}
header .menu.show {
	transform: translateY(0%);
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
}

header .mobile-menu {
	display: none;
	position: absolute;
	top: 10px;
	right: 30px;
	width: 50px;
	height: 50px;
}
header .mobile-menu li {
	display: block;
	float: left;
	width: 100%;
	height: 5px;
	border-radius: 3px;
	background-color: #eee;
	margin: 2.5px 0;
	cursor: pointer;
}
header .mobile-menu li:first-child {
	margin-top: 12.5px;
}

.index-1 {
	background-image: url(../images/index-1.jpg?1);
	background-attachment: fixed;
}
.index-1 .content {
	display: block;
	position: absolute;
	z-index: 10;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	left: 50%;
	top: 50%;

	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.index-1 .content img {
	height: 180px;

	animation: fadeIn ease-in-out 1s forwards;
	-webkit-animation: fadeIn ease-in-out 1s forwards;
	-moz-animation: fadeIn ease-in-out 1s forwards;
	-o-animation: fadeIn ease-in-out 1s forwards;
}
@-webkit-keyframes fadeIn {
	from {opacity: 0;-webkit-transform: translateY(10%);}
	to {opacity: 1;-webkit-transform: translateX(0);}
}
@-moz-keyframes fadeIn {
	from {opacity: 0;-moz-transform: translateY(10%);}
	to {opacity: 1;-moz-transform: translateX(0);}
}
@-o-keyframes fadeIn {
	from {opacity: 0;-o-transform: translateY(10%);}
	to {opacity: 1;-o-transform: translateX(0);}
}
@keyframes fadeIn {
	from {opacity: 0;transform: translateY(10%);}
	to {opacity: 1;transform: translateX(0);}
}

.index-1 .content ul{
	margin-top: 50px;
}
.index-1 .content ul li {
	display: inline-block;
	float: none;
	width: 200px;
	padding: 4px 10px;
	color: #fff;
	border-radius: 10px;
	line-height: 25px;
	background-color: #104e82;
	border: 2px solid #104e82;
	font-family: 'GOTHICB';
	font-size: 15px;
	cursor: pointer;
}
.index-1 .content ul li b {
	display: inline-block;
	width: 100%;
	font-weight: normal;
	text-transform: uppercase;
}
.index-1 .content ul li:first-child{
	margin-right: 80px;
	border: 2px solid #df0309;
	background-color: #df0309;
}
.index-1 .content ul li:hover{
	background-color: transparent;
}

.index-2 {
	background-image: url(../images/index-2.jpg);
	min-height: 350px;
	background-attachment: fixed;
}
.fixed .index-2 {
	margin-top: 100px;
}
.index-2 div {
	display: block;
	position: absolute;
	left: 5%;
	top: 50%;
	width: 70%;
	text-align: left;

	font-size: 50px;
	font-family: 'GOTHICB';
	color: #db9600;
	text-shadow: 2px 2px 2px #fff ;

	transform: translate(-5%, -50%);
	-webkit-transform: translate(-5%, -50%);
	-moz-transform: translate(-5%, -50%);
	-ms-transform: translate(-5%, -50%);
	-o-transform: translate(-5%, -50%);

	opacity: 0;
}

.index-2 div.positioned {
	opacity: 1;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
}

.index-3,
.index-4,
.index-5,
.index-6,
.index-7 {
	padding: 0 5%;
}

.index-3{
	padding-top: 100px;
}
.index-3 .item {
	display: block;
	float: left;
	position: relative;
	width: 25%;	
	margin: 0;
	padding: 0;
}

.index-3 .item,
.index-6 ul li,
.index-5 .bolsas-de-trabajo a {
	opacity: 0;

	transform: translateY(20%);
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	-o-transform: translateY(20%);
}
.index-3 .item.positioned,
.index-6 ul li.positioned,
.index-5 .bolsas-de-trabajo a.positioned {
	opacity: 1;

	transform: translateY(0%);
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
}
.index-3 .item div {
	display: block;
	width: 95%;
	min-height: 150px;
	line-height: 25px;
	margin: 0 2.5%;
	padding: 0;
}
.index-3 .item span {
	display: inline-block;
	width: 160px;
	height: 160px;
	background-image: url(../images/nosotros-1.png?1);
	background-size: 480px 320px;
}
.index-3 .item:nth-child(1) span { background-position: 0 -160px; }
.index-3 .item:nth-child(2) span { background-position: -160px -160px; }
.index-3 .item:nth-child(3) span { background-position: -320px -160px; }
.index-3 .item:nth-child(4) span { background-position: -320px 0; }


.index-4 {
	padding-bottom: 100px;
}

h1.title {
	display: block;
	float: left;
	width: 100%;
	height: 400px;
	margin: 80px 0;
	padding: 0;
	color: #fff;
	font-size: 50px;
	line-height: 400px;
	font-family: 'GOTHICB';
	background-attachment: fixed;
	text-shadow: 2px 2px 8px #000 ;
}
h1.title:nth-of-type(1){ background-image: url(../images/bg-2.jpg); }
h1.title:nth-of-type(2){ background-image: url(../images/bg-3.jpg); }
h1.title:nth-of-type(3){ background-image: url(../images/bg-1.jpg); }
h1.title:nth-of-type(4){ background-image: url(../images/bg-5.jpg); }

.index-4 div {
	display: block;
	float: left;
	position: relative;
	width: 25%;
	margin: 0 0 20px 0;
	padding: 0 10px;

	-webkit-touch-callout: none; 
	-webkit-user-select: none;
	-khtml-user-select: none; 
	-moz-user-select: none;
	-ms-user-select: none; 
	user-select: none; 
}

.index-4 div,
#contact-frm {
	opacity: 0;

	transform: scale(1.5, 1.5);
	-webkit-transform: scale(1.5, 1.5);
	-moz-transform: scale(1.5, 1.5);
	-ms-transform: scale(1.5, 1.5);
	-o-transform: scale(1.5, 1.5);
}
.index-4 div.positioned,
#contact-frm.positioned {
	opacity: 1;

	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
}

.index-4 div b {
	display: inline-block;
	width: 130px;
	height: 130px;
	background-image: url(../images/soluciones-1.png);
	background-size: 1040px 390px;
}
.index-4 div span {
	display: block;
	width: 100%;
	margin: 10px 0;
	padding: 0;
	font-family: 'GOTHICB';
}
.index-4 div z {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 11;
	width: 100%;
	height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	background-color: #fff;

	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
}

.index-4 div.hover z{
	height: 100px;
}


.index-4 div:nth-of-type(1) b { background-position: -390px -130px; }
.index-4 div:nth-of-type(1):hover b { background-position: -260px -130px; }
.index-4 div:nth-of-type(2) b { background-position: -910px -260px; }
.index-4 div:nth-of-type(2):hover b { background-position: -780px -260px; }
.index-4 div:nth-of-type(3) b { background-position: 0 -260px; }
.index-4 div:nth-of-type(3):hover b { background-position: -130px -260px; }
.index-4 div:nth-of-type(4) b { background-position: -650px 0; }
.index-4 div:nth-of-type(4):hover b { background-position: -520px 0; }

.index-4 div:nth-of-type(5) b { background-position: -130px 0; }
.index-4 div:nth-of-type(5):hover b { background-position: 0px 0; }
.index-4 div:nth-of-type(6) b { background-position: -910px -130px; }
.index-4 div:nth-of-type(6):hover b { background-position: -780px -130px; }
.index-4 div:nth-of-type(7) b { background-position: -650px -130px; }
.index-4 div:nth-of-type(7):hover b { background-position: -520px -130px; }
.index-4 div:nth-of-type(8) b { background-position: -650px -260px; }
.index-4 div:nth-of-type(8):hover b { background-position: -520px -260px; }


.index-4 div:nth-of-type(9) b { background-position: -390px 0; }
.index-4 div:nth-of-type(9):hover b { background-position: -260px 0; }
.index-4 div:nth-of-type(10) b { background-position: -910px 0; }
.index-4 div:nth-of-type(10):hover b { background-position: -780px 0; }
.index-4 div:nth-of-type(11) b { background-position: -130px -130px; }
.index-4 div:nth-of-type(11):hover b { background-position: 0 -130px; }
.index-4 div:nth-of-type(12) b { background-position: -390px -260px; }
.index-4 div:nth-of-type(12):hover b { background-position: -260px -260px; }

.index-4 div:nth-of-type(1),
.index-4 div:nth-of-type(2),
.index-4 div:nth-of-type(3),
.index-4 div:nth-of-type(4){
	z-index: 10;
}
.index-4 div:nth-of-type(5),
.index-4 div:nth-of-type(6),
.index-4 div:nth-of-type(7),
.index-4 div:nth-of-type(8){
	z-index: 5;
}
.index-4 div:nth-of-type(9),
.index-4 div:nth-of-type(10),
.index-4 div:nth-of-type(11),
.index-4 div:nth-of-type(12){
	z-index: 1;
}

.index-4 div:nth-of-type(5),
.index-4 div:nth-of-type(9) {
	clear: both;
}

.index-5,
.index-6 {
	font-family: 'GOTHICB';
}

.index-5 p.mf,
.index-6 p {
	text-align: justify;
}

.index-5 .logo {
	display: block;
	float: left;
	width: 100%;
	margin: 40px 0;
	line-height: 60px;
}
.index-5 .logo img {
	height: 60px;
	margin: 0 20px 0 0;
	padding: 0;
	vertical-align: middle;
}

.index-5 ul.mf:nth-of-type(1){
	width: 45%;
	margin-right: 5%;
}
.index-5 ul.mf:nth-of-type(2){
	width: 50%;
}

.index-5 ul.mf li {
	padding: 5px 0;
	position: relative;
}
.index-5 ul.mf li span {
	display: block;
	float: left;
	margin: 0;
	padding: 10px 0 0 0;
	text-align: left;
}

.index-5 ul.mf li b{
	color: #195a8e;
	cursor: pointer;
	text-transform: uppercase;
}
.index-5 ul.mf li b,
.index-5 ul.mf li input[type='text'],
.index-5 ul.mf li input[type='text']:focus,
.index-6 ul li.r input[type='text'],
.index-6 ul li.r input[type='text']:focus,
.index-7 input[type='text'],
.index-7 input[type='text']:focus,
.index-7 textarea {
	display: block;
	float: left;
	margin: 0;
	padding: 5px;
	font-size: 20px;
	height: 40px;
	line-height: 26px;
	border: 2px solid #195a8e;
	border-radius: 8px;
}
.index-5 ul.mf li input[type='file']{
	display: block;
	position: absolute;
	left: -99999px;
}
.index-5 ul.mf li span z{
	font-size: 10px;
}

.index-5 ul.mf li.chk {
	text-align: left;
	font-family: 'GOTHICR';
}
.index-5 ul.mf li.chk label {
	margin-left: 10px;
}

.index-5 ul.mf:nth-of-type(1) li span {
	width: 90px;
}
.index-5 ul.mf:nth-of-type(1) input[type='text'],
.index-5 ul.mf:nth-of-type(1) input[type='text']:focus {
	width: calc(100% - 90px);
	width: -webkit-calc(100% - 90px);
	width: -moz-calc(100% - 90px);
	width: -ms-calc(100% - 90px);
	width: -o-calc(100% - 90px);
}
.index-5 ul.mf:nth-of-type(2) li span {
	width: 150px;
}
.index-5 ul.mf:nth-of-type(2) li b,
.index-5 ul.mf:nth-of-type(2) input[type='text'],
.index-5 ul.mf:nth-of-type(2) input[type='text']:focus {
	width: calc(100% - 150px);
	width: -webkit-calc(100% - 150px);
	width: -moz-calc(100% - 150px);
	width: -ms-calc(100% - 150px);
	width: -o-calc(100% - 150px);
}
.index-5 ul.left,
.index-7 .map,
.index-7 .g-map
{
	opacity: 0;
	transform: translate(-20%, 0);
	-webkit-transform: translate(-20%, 0);
	-moz-transform: translate(-20%, 0);
	-ms-transform: translate(-20%, 0);
	-o-transform: translate(-20%, 0);
}
.index-5 ul.left.positioned,
.index-5 ul.right.positioned,
.index-7 .map.positioned,
.index-7 .ciudades.positioned,
.index-7 .g-map.positioned,
.index-7 .info.positioned {
	opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
}

.index-5 ul.right,
.index-7 .ciudades,
.index-7 .info {
	opacity: 0;
	transform: translate(20%, 0);
	-webkit-transform: translate(20%, 0);
	-moz-transform: translate(20%, 0);
	-ms-transform: translate(20%, 0);
	-o-transform: translate(20%, 0);
}

.index-5 .bolsas-de-trabajo {
	display: block;
	float: left;
	margin:60px 0 100px 0;
	padding: 0;
	width: 100%;
	height: auto;
	overflow: hidden;
}
.index-5 .bolsas-de-trabajo a {
	display: inline-block;
	width: 300px;
	height: 150px;
	margin: 0 20px;

	background-image: url(../images/bolsas-de-trabajo.png);
	background-size: 900px 300px;
	background-repeat: no-repeat;
}

.index-5 .bolsas-de-trabajo a:nth-of-type(1){ background-position: 0 0; }
.index-5 .bolsas-de-trabajo a:nth-of-type(1):hover{ background-position: 0 -150px; }
.index-5 .bolsas-de-trabajo a:nth-of-type(2){ background-position: -300px 0; }
.index-5 .bolsas-de-trabajo a:nth-of-type(2):hover{ background-position: -300px -150px; }
.index-5 .bolsas-de-trabajo a:nth-of-type(3){ background-position: -600px 0; }
.index-5 .bolsas-de-trabajo a:nth-of-type(3):hover{ background-position: -600px -150px; }

.index-6 ul {
	margin-top: 50px;
}
.index-6 ul li {
	position: relative;
}
.index-6 ul li.l {
	width: 400px;
	margin: 0;
	background-color: #195a8e;
	color: #fff;
	padding: 20px 0 20px 20px; 
}
.index-6 ul li.l img {
	float: left;
	height: 70px;
	margin: 0 20px 20px 0;
}
.index-6 ul li.l h2 {
	display: block;
	width: auto;
	float: left;
	color: #fac100;
	line-height: 70px;
	padding: 0;
	margin: 0 0 20px 0;
	font-size: 18px;
}
.index-6 ul li.l span {
	display: block;
	float: left;
	width: 50%;
	text-align: left;
	margin: 0;
	padding: 10px 20px 10px 0;
}
.index-6 ul li.l span:nth-of-type(3),
.index-6 ul li.l span:nth-of-type(5) {
	clear: both;
}

.index-6 ul li.r {
	float: right;
	width: calc(100% - 430px);
	width: -webkit-calc(100% - 430px);
	width: -moz-calc(100% - 430px);
	width: -ms-calc(100% - 430px);
	width: -o-calc(100% - 430px);
}
.index-6 ul li.r h2 {
	line-height: 20px;
	margin: 0;
	padding: 0;
	text-align: left;
}
.index-6 ul li.r b {
	display: block;
	float: left;
	width: 120px;
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 40px;
	text-align: left;
}
.index-6 ul li.r input[type='text'],
.index-6 ul li.r input[type='text']:focus
{
	width: calc(100% - 120px);
	width: -webkit-calc(100% - 120px);
	width: -moz-calc(100% - 120px);
	width: -ms-calc(100% - 120px);
	width: -o-calc(100% - 120px);
	margin: 0 0 10px 0;
}
.index-6 ul li.r .btn{
	margin-top: 10px;
}


section.index-7 {
	padding-bottom: 80px;
	overflow:visible;
}
.index-7-1 {
	display: block;
	float: left;
	position: relative;
	width: 100%;
	max-width: 1200px;
	left: 50%;

	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.index-7 .map {
	display: block;
	float: left;
	position: relative;
	width: 700px;
	height: 465px;
	background-image: url(../images/mapa.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.index-7 .map strong {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 78px;
	background-image: url(../images/pin.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	opacity: 0.1;
	cursor: pointer;
}
.index-7 .map strong.active {
	opacity: 1;
}
.index-7 .map strong[data-id='1'] { top: 130px; left: 220px; }
.index-7 .map strong[data-id='2'] { top: 240px; left: 370px; }
.index-7 .map strong[data-id='3'] { top: 230px; left: 360px; }
.index-7 .map strong[data-id='4'] { top: 245px; left: 395px; }
.index-7 .map strong[data-id='5'] { top: 195px; left: 350px; }
.index-7 .map strong[data-id='6'] { top: -50px;  left: 30px; }
.index-7 .map strong[data-id='7'] { top: 255px; left: 320px; }
.index-7 .map strong[data-id='8'] { top: 230px; left: 630px; }

.index-7 .ciudades,
.index-7 .info {
	display: block;
	float: right;
	width: calc(100% - 740px);
	width: -webkit-calc(100% - 740px);
	width: -moz-calc(100% - 740px);
	width: -ms-calc(100% - 740px);
	width: -o-calc(100% - 740px);
	margin: 0;
	padding: 0;
}
.index-7 .ciudades img {
	height: 100px;
	float: left;
}
.index-7 .ciudades ul {
	margin-top: 20px;
	padding-left: 5%;
}
.index-7 .ciudades ul li {
	line-height: 35px;
	font-size: 25px;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
}
.index-7 .ciudades ul li.active {
	color: #de1313;
	font-family: 'GOTHICB';
}
.index-7 .ciudades ul li::before {
	display: block;
	float: left;
	position: relative;
	width: 5px;
	height: 5px;
	background-color: #f00;
	border-radius: 50%;
	margin: 12.5px 0 0 -15px;
	content: "";
}
.index-7 .g-map {
	display: block;
	float: left;
	position: relative;
	width: 700px;
	height: 300px;
	background-color: #ddd;
	margin: 50px 0 0 0;
	padding: 0;
}
.index-7 .info{
	position: relative;
	margin-top: 110px;
}
.index-7 .info z,
.index-7 .info div,
.index-7 .info div span {
	display: block;
	position: relative;
	float: left;
	width: 100%;
	margin: 10px 0;
	padding: 0;
}
.index-7 .info z{
	display: none;
	margin: 0;
}
.index-7 .info z.active{
	display: block;
}
.index-7 .info div span
{
	margin: 0;
	padding: 10px 0 0 50px;
	text-align: left;
}
.index-7 .info div b
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
}
.index-7 .info div:nth-of-type(1) b { background-position: -250px 0; }
.index-7 .info div:nth-of-type(2) b { background-position: -250px -50px; }
.index-7 .info div:nth-of-type(3) b { background-position: -300px -50px; }
.index-7 .info div:nth-of-type(4) b { background-position: -300px 0; }

.index-7 #contact-frm {
	display: block;
	float: left;
	clear: both;
	position: relative;
	width: 100%;
	margin: 100px 0 0 0;
	padding: 0;
	text-align: left;
}
.index-7 #contact-frm .txt {
	display: block;
	float: left;
	width: 400px;
	margin: 0;
	padding: 0;
}
.index-7 #contact-frm h1,
.index-7 #contact-frm h2 {
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	line-height: 30px;
	font-size: 30px;
	font-family: 'GOTHICB';
}
.index-7 #contact-frm h2 {
	margin-top: 40px;
	font-family: 'GOTHICR';
}

.index-7 #contact-frm .frm {
	display: block;
	float: right;
	width: calc(100% - 420px);
	width: -webkit-calc(100% - 420px);
	width: -moz-calc(100% - 420px);
	width: -ms-calc(100% - 420px);
	width: -o-calc(100% - 420px);
	margin: 0;
	padding: 0;
}

.index-7 #contact-frm .frm b {
	display: block;
	float: left;
	width: 45%;
	margin: 15px 2.5% 0 2.5%;
	padding: 0; 
	color: #000;
}
.index-7 #contact-frm .frm input {
	width: 45%;
	margin: 0 2.5%;
}
.index-7 #contact-frm .frm textarea {
	width: 95%;
	margin: 0 2.5%;
	height: 100px;
	resize: none;
}
.index-7 #contact-frm .frm .btn {
	margin: 20px 2.5% 0 0;

}


footer,
footer .anuncio,
footer .developed-by
{
	display: block;
	position: relative;
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
}
footer .anuncio {
	padding: 30px 0;
	background-color: #fff600;
	color: #de1313;
	font-family: 'GOTHICB';
	font-weight: bold;
	opacity: 0;
}
footer .anuncio.positioned {
	opacity: 1;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;

	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;	
}
footer .developed-by {
	background-color: #000;
	color: #ccc;
	padding: 10px 80px 10px 20px;
	font-size: 14px;
}
footer .developed-by span {
	color: #fff;
}
footer .developed-by img {
	display: inline-block;
	height: 70px;
	margin: 0 30px 0 0;
	vertical-align: middle;
}
footer .developed-by div {
	display: inline-block;
	margin: 0;
	padding: 0;
}
footer .developed-by a,
footer .developed-by a:visited {
	color: #fff;
	text-decoration: none;
}
footer .developed-by a:hover {
	text-decoration: underline;
}
footer .developed-by a.aviso {
	color: #ccc;
}

footer .go-top {
	display: block;
	position: absolute;
	z-index: 99999;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 45px;
	font-size: 20px;
	border: 2px solid #fff600;
	cursor: pointer;
	border-radius: 3px;
	bottom: 20px;
	right: 20px;
	color: #fff600;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
}
@-webkit-keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}


/* ============================================== / index.php */





/* ============================================== Miscelaneos */

.index-3 ul li b:after,
header .menu li:after,
.index-7 .info div b
{
	background-image: url(../images/iconset-white.png);
	background-repeat: no-repeat;
}
.index-3 ul li b:after { /* 60 x 60 */
	background-size: 900px 120px;
}
header .menu li:after,
.index-7 .info div b
{ /* 50 x 50 */
	background-size: 750px 100px;
}
.class { /* 30 x 30 */
	background-size: 450px 60px;
}

.index-1 .mask, 
.index-1 .content{
	transition: opacity 0.8s;
	-webkit-transition: opacity 0.8s;
	-moz-transition: opacity 0.8s;
	-ms-transition: opacity 0.8s;
	-o-transition: opacity 0.8s;
}
.index-5 .bolsas-de-trabajo a {
	transition: background 0.3s ease-in-out;
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-ms-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
}
.index-1 .content ul li {
	transition: background 0.8s;
	-webkit-transition: background 0.8s;
	-moz-transition: background 0.8s;
	-ms-transition: background 0.8s;
	-o-transition: background 0.8s;
}
.index-4 div z {
	transition: height 0.8s;
	-webkit-transition: height 0.8s;
	-moz-transition: height 0.8s;
	-ms-transition: height 0.8s;
	-o-transition: height 0.8s;
}
header .menu li {
	transition: color 0.8s;
	-webkit-transition: color 0.8s;
	-moz-transition: color 0.8s;
	-ms-transition: color 0.8s;
	-o-transition: color 0.8s;
}

header .menu {
	transition: transform 0.5s;
	-webkit-transition: -webkit-transform 0.5s;
	-moz-transition: -moz-transform 0.5s;
	-ms-transition: -ms-transform 0.5s;
	-o-transition: -o-transform 0.5s;
}
.animateme {
	transition: all 0.8s!important;
	-webkit-transition: all 0.8s!important;
	-moz-transition: all 0.8s!important;
	-ms-transition: all 0.8s!important;
	-o-transition: all 0.8s!important;
}

.index-1,
.index-2,
h1.title {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
}
.btn {
	display: block;
	position: relative;
	z-index: 100;
	float: right;
	width: auto;
	margin: 0;
	padding: 10px 20px;
	background-color: #195a8e;
	border: 1px solid #195a8e;
	color: #fff;
	border-radius: 8px;
	cursor: pointer;
	text-transform: uppercase;
	overflow: visible;
}
.btn:hover {
	background-color: #fff;
	color: #195a8e;
}
.btn:hover z {
	color: #195a8e;
}
.btn:before{
	display: none;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 8px;
	content: "";
}
.btn:after{
	display: none;
	position: absolute;
	z-index: 2;
	width: 15px;
	height: 15px;
	border: 2px solid #195a8e;
	border-top-color: #fff;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	margin: -9.5px 0 0 -9.5px;
	animation: rotation linear 0.6s infinite;
	-webkit-animation: rotation linear 0.6s infinite;
	-moz-animation: rotation linear 0.6s infinite;
	-ms-animation: rotation linear 0.6s infinite;
	-o-animation: rotation linear 0.6s infinite;
	content: "";
} 
.btn.spin:after,
.btn.spin:before {
	display: block;
}
.alert {
	display: none;
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 400px;
	height: auto;
	padding: 20px;	
	margin: 0;
	font-size: 14px;
	line-height: 18px;
	text-align: justify;
	font-family: 'GOTHICR';
	text-transform: none;
	border-radius: 8px;
}
.alert.error {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1
}
.alert.success{
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6
}

@-webkit-keyframes rotation {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes rotation {
	from {-moz-transform: rotate(0deg);}
	to {-moz-transform: rotate(360deg);}
}
@-o-keyframes rotation {
	from {-o-transform: rotate(0deg);}
	to {-o-transform: rotate(360deg);}
}
@keyframes rotation {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
}

/* ============================================== / Miscelaneos */




@media only screen and (max-width:1130px) {
	.index-4 div.hover z{
		height: 150px;
	}
}
@media only screen and (max-width:1100px) {

	.index-7 .map {
		width: 600px;
		height: 399px;
	}
	.index-7 .map strong {
		width: 43px;
		height: 67px;
	}
	.index-7 .g-map {
		width: 600px;
	}
	.index-7 .ciudades,
	.index-7 .info {
		width: calc(100% - 640px);	
		width: -webkit-calc(100% - 640px);	
		width: -moz-calc(100% - 640px);	
		width: -ms-calc(100% - 640px);	
		width: -o-calc(100% - 640px);	
	}
	.index-7 .ciudades img {
		width: 150px;
		height: auto;
	}

	.index-7 .map strong[data-id='1'] { top: 111px; left: 189px; }
	.index-7 .map strong[data-id='2'] { top: 204px; left: 315px; }
	.index-7 .map strong[data-id='3'] { top: 196px; left: 306px; }
	.index-7 .map strong[data-id='4'] { top: 208px; left: 336px; }
	.index-7 .map strong[data-id='5'] { top: 166px; left: 298px; }
	.index-7 .map strong[data-id='6'] { top: -43px; left: 26px;  }
	.index-7 .map strong[data-id='7'] { top: 217px; left: 272px; }
	.index-7 .map strong[data-id='8'] { top: 196px; left: 536px; }


}
@media only screen and (max-width:1050px) {


}
@media only screen and (max-width:990px) {
	.index-1 .content {
		width: 100%;

	}
	.index-1 .content ul li:first-child{
		margin-right: 50px;
	}

	header {
		padding: 0 20px;
	}

	.index-2 div {
		font-size: 40px;
		width: 80%;
	}

	.index-4 div {
		width: 33.33%;
	}
	.index-4 div:nth-of-type(1),
	.index-4 div:nth-of-type(2),
	.index-4 div:nth-of-type(3){
		z-index: 10;
	}
	.index-4 div:nth-of-type(4),
	.index-4 div:nth-of-type(5),
	.index-4 div:nth-of-type(6) {
		z-index: 5;
	}
	.index-4 div:nth-of-type(7),
	.index-4 div:nth-of-type(8),
	.index-4 div:nth-of-type(9){
		z-index: 4;
	}
	.index-4 div:nth-of-type(10),
	.index-4 div:nth-of-type(11),
	.index-4 div:nth-of-type(12){
		z-index: 3;
	}

	.index-4 div:nth-of-type(4),
	.index-4 div:nth-of-type(7),
	.index-4 div:nth-of-type(10) {
		clear: both;
	}
	.index-4 div:nth-of-type(5),
	.index-4 div:nth-of-type(9) {
		clear: none;
	}

	.index-5 ul.mf:nth-of-type(2) li b{
		font-size: 12px;
	}

	.index-7 .g-map {
		width: 100%;
		float: right;
	}
	.index-7 .info {
		width: 100%;
		float: left;
		margin: 0;
	}
	.index-7-1 {
		max-width: 600px;
	}
	.index-7 .map {
		width: 400px;
		height: 266px;
	}
	.index-7 .map strong {
		width: 29px;
		height: 45px;
	}
	.index-7 .ciudades{
		width: calc(100% - 440px);	
		width: -webkit-calc(100% - 440px);	
		width: -moz-calc(100% - 440px);	
		width: -ms-calc(100% - 440px);	
		width: -o-calc(100% - 440px);	
	}
	.index-7 .ciudades ul li{
		font-size: 18px;
		line-height: 22px;
	}
	.index-7 .ciudades img {
		width: 120px;
		height: auto;
	}
	.index-7 .map strong[data-id='1'] { top: 74px;  left: 126px; }
	.index-7 .map strong[data-id='2'] { top: 137px; left: 211px; }
	.index-7 .map strong[data-id='3'] { top: 131px; left: 205px; }
	.index-7 .map strong[data-id='4'] { top: 139px; left: 225px; }
	.index-7 .map strong[data-id='5'] { top: 111px; left: 199px; }
	.index-7 .map strong[data-id='6'] { top: -28px; left: 17px;  }
	.index-7 .map strong[data-id='7'] { top: 145px; left: 182px; }
	.index-7 .map strong[data-id='8'] { top: 131px; left: 358px; }

}
@media only screen and (max-width:930px) {
	.index-3 .item {
		width: 50%;	
	}
	.index-3 .item:nth-of-type(3),
	.index-3 .item:nth-of-type(4) {
		margin-top: 30px;
	}
}
@media only screen and (max-width:890px) {

	header .menu li {
		padding: 0 10px;
	}

	.index-7 #contact-frm .txt{
		width: 300px;
	}
	.index-7 #contact-frm .frm {
		width: calc(100% - 320px);
		width: -webkit-calc(100% - 320px);
		width: -moz-calc(100% - 320px);
		width: -ms-calc(100% - 320px);
		width: -o-calc(100% - 320px);
	}

}
@media only screen and (max-width:850px) {
	footer .developed-by div {
		margin-top: 20px;
	}
}
@media only screen and (max-width:820px) {

	header .logo {
		height: 40px;
		margin: 20px 0;
	}

	header .menu li {
		font-size: 14px;
		padding: 0 8px;
	}

	.index-6 ul li.l {
		margin: 0 15%;
		width: 70%;
	}
	.index-6 ul li.r {
		width: 100%;
	}
	.index-6 ul li.r {
		margin-top: 50px;
	}
}
@media only screen and (max-width:800px) {
	.index-7 #contact-frm .txt,
	.index-7 #contact-frm .frm {
		width: 100%;
	}
	.index-7 #contact-frm .frm {
		margin-top: 20px;
	}
	.index-7 #contact-frm .frm b {
		width: 47.5%;
		margin: 15px 2.5% 0 0;
	}
	.index-7 #contact-frm .frm input {
		width: 47.5%;
		margin: 0 2.5% 0 0;
	}
	.index-7 #contact-frm .frm input:nth-of-type(2),
	.index-7 #contact-frm .frm input:nth-of-type(4){
		width: 50%;
		margin: 0;
	}
	.index-7 #contact-frm .frm textarea {
		width: 100%;
		margin: 0 ;
	}
	.index-7 #contact-frm .frm .btn {
		margin: 20px 0 0 0;

	}

	.index-5 .bolsas-de-trabajo {
		width: 100%;
	}

}
@media only screen and (max-width:720px) {
	footer .developed-by {
		padding: 10px 5%;
	}
	footer .developed-by img {
		margin: 0;
	}
	footer .go-top {	
		bottom: 70px;
	}

	.index-1,
	.index-2,
	h1.title {
		background-attachment: scroll;
	}
}

@media only screen and (max-width:690px) {

	header {
		height: 80px;
		padding: 0 5%;
	}

	header .logo {
		height: 50px;
		margin: 15px 0;
	}

	header .menu {
		position: absolute;
		z-index: 10;
		top: -20px;
		left: 0;
		width: 100%;
		height: 425px;
		margin: 15px 0 0 0;
		background-color: inherit;
		box-shadow: 0 0 15px 5px rgba(0,0,0,0.5);

		visibility: hidden;

		transform: translateY(-105%);
		-webkit-transform: translateY(-105%);
		-moz-transform: translateY(-105%);
		-ms-transform: translateY(-105%);
		-o-transform: translateY(-105%);
	}
	header .menu li {
		position: relative;
		width: 100%;
		height: 60px;
		line-height: 55px;
		text-align: right;
		background-color: inherit;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		padding-right: 90px;
		border-radius: 0;
	}
	header .menu li.close {
		display: block;
		padding-right: 32px;
		line-height: 55px;
		font-size: 40px;
		font-family: 'GOTHICR';
	}
	header .menu li:after {
		display: block;
		position: absolute;
		right: 20px;
		top: 5px;
		width: 50px;
		height: 50px;
		content: "";
	}
	header .menu li.close:after {
		display: none;
	}
	header .menu li:nth-child(2):after {
		background-position: -350px 0;
	}
	header .menu li:nth-child(3):after {
		background-position: -350px -50px;
	}
	header .menu li:nth-child(4):after {
		background-position: -100px -50px;
	}
	header .menu li:nth-child(5):after {
		background-position: -200px 0px;
	}
	header .menu li:nth-child(6):after {
		background-position: 0 -50px;
	}
	header .menu li:nth-child(7):after {
		background-position: -50px 0px;
	}
	header .menu li:last-child {
		border-bottom: none;
	}
	header .mobile-menu {
		display: block;
	}

	.index-2 div {
		width: 90%;
	}

	.index-4 div {
		width: 50%;
	}
	.index-4 div:nth-of-type(1),
	.index-4 div:nth-of-type(2){
		z-index: 10;
	}
	.index-4 div:nth-of-type(3),
	.index-4 div:nth-of-type(4){
		z-index: 9;
	}
	.index-4 div:nth-of-type(5),
	.index-4 div:nth-of-type(6){
		z-index: 8;
	}
	.index-4 div:nth-of-type(7),
	.index-4 div:nth-of-type(8){
		z-index: 7;
	}
	.index-4 div:nth-of-type(9),
	.index-4 div:nth-of-type(10){
		z-index: 6;
	}
	.index-4 div:nth-of-type(11),
	.index-4 div:nth-of-type(12){
		z-index: 5;
	}

	.index-4 div:nth-of-type(3),
	.index-4 div:nth-of-type(5),
	.index-4 div:nth-of-type(7),
	.index-4 div:nth-of-type(9),
	.index-4 div:nth-of-type(11){
		clear: both;
	}


	.index-4 div:nth-of-type(4),
	.index-4 div:nth-of-type(10) {
		clear: none;
	}

	.index-5 ul.mf {
		width: 100%!important;
		margin: 0!important;
	}
	.index-5 ul.mf:nth-of-type(1) li span,
	.index-5 ul.mf:nth-of-type(2) li span
	{
		width: 100px;
	}
	.index-5 ul.mf:nth-of-type(1) input[type='text'],
	.index-5 ul.mf:nth-of-type(1) input[type='text']:focus,
	.index-5 ul.mf:nth-of-type(2) li b,
	.index-5 ul.mf:nth-of-type(2) input[type='text'],
	.index-5 ul.mf:nth-of-type(2) input[type='text']:focus {
		width: calc(100% - 100px);
		width: -webkit-calc(100% - 100px);
		width: -moz-calc(100% - 100px);
		width: -ms-calc(100% - 100px);
		width: -o-calc(100% - 100px);
	}
}
@media only screen and (max-width:640px) {
	.index-7 .map {
		left: 50%;
		margin-left: -200px;
	}

	.index-7 .ciudades{
		width: 100%;
	}
	.index-7 .ciudades ul li {
		display: inline-block;
		float: none;
		width: auto;
		margin: 5px 20px 5px 0;
		font-size: 18px;
		line-height: 22px;
	}
	.index-7 .ciudades ul li::before {
		margin: 8px 0 0 -8px;
	}
}
@media only screen and (max-width:620px) {
	.index-6 ul li.l {
		margin: 0;
		width: 100%;
	}
}
@media only screen and (max-width:520px) {
	.index-3 .item {
		width: 100%;	
	}
	.index-3 .item:nth-of-type(2) {
		margin-top: 30px;
	}
}
@media only screen and (max-width:500px) {
	.index-1 .content img {
		width: 300px;
		height: auto;
	}
	.index-1 .content ul li{
		width: 60%;
		margin: 10px 0!important;
	}

	.index-4 div {
		width: 100%;
	}
	.index-4 div:nth-of-type(1){ z-index: 12; }
	.index-4 div:nth-of-type(2){ z-index: 11; }
	.index-4 div:nth-of-type(3){ z-index: 10; }
	.index-4 div:nth-of-type(4){ z-index: 9; }
	.index-4 div:nth-of-type(5){ z-index: 8; }
	.index-4 div:nth-of-type(6){ z-index: 7; }
	.index-4 div:nth-of-type(7){ z-index: 6; }
	.index-4 div:nth-of-type(8){ z-index: 5; }
	.index-4 div:nth-of-type(9){ z-index: 4; }
	.index-4 div:nth-of-type(10){ z-index: 3; }
	.index-4 div:nth-of-type(11){ z-index: 2; }
	.index-4 div:nth-of-type(12){ z-index: 1; }

	.index-5 .bolsas-de-trabajo a {
		margin: 0;
	}

}
@media only screen and (max-width:480px) {
	.index-6 ul li.r b {
		width: 100px;
	}
	.index-6 ul li.r input[type='text'],
	.index-6 ul li.r input[type='text']:focus {
		width: calc(100% - 100px);
		width: -webkit-calc(100% - 100px);
		width: -moz-calc(100% - 100px);
		width: -ms-calc(100% - 100px);
		width: -o-calc(100% - 100px);
	}

	h1.title:nth-of-type(2),
	h1.title:nth-of-type(3) {
		padding: 175px 5% 0 5%;
		line-height: 50px;
	}
}
@media only screen and (max-width:450px) {

	.index-2 div {
		font-size: 30px;
		/*width: 90%;*/
	}
	.index-7 .map {
		width: 300px;
		height: 199px;
		margin-left: -150px;
	}

	.index-7 .map strong {
		width: 21px;
		height: 33px;
	}

	.index-7 .map strong[data-id='1'] { top: 56px;  left: 94px; }
	.index-7 .map strong[data-id='2'] { top: 103px; left: 159px; }
	.index-7 .map strong[data-id='3'] { top: 99px;  left: 155px; }
	.index-7 .map strong[data-id='4'] { top: 106px; left: 170px; }
	.index-7 .map strong[data-id='5'] { top: 84px;  left: 151px; }
	.index-7 .map strong[data-id='6'] { top: -22px; left: 13px; }
	.index-7 .map strong[data-id='7'] { top: 110px; left: 138px; }
	.index-7 .map strong[data-id='8'] { top: 99px;  left: 272px; }

	footer .anuncio {
		padding: 30px 2.5%;
	}
	footer .anuncio br {
		display: none;
	}

	.alert {
		width: 90%;
	}
}
@media only screen and (max-width:350px) {
	.index-1 .content img {
		width: 220px;
	}
}

header, html, body, section, div, span, b, f, z, c1, c2, c3, table, tr, td, 
form, input, textarea, ul, ol, li, h1, h2 {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}