html, body  {
    padding: 0;
    margin: 0;
    border: 0;
    width: 100%;
    height: 100%;
    font: 300 16px 'Open Sans',Helvetica,Arial,sans-serif;
    color: #111;
    background-color: #181818; 
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-align: center;
}
*, *:before, *:after { box-sizing: inherit;}
body { 
	overflow-y:scroll; 
	padding-top: 80px;	
}
/*
body.w-top-slider { 
	padding-top: 100vh;	
}
body.w-top-logo { 
	padding-top: 253px;	
}
*/
/* MAIN NAV */
nav.main-nav {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 80px;
	display: block;
	color: #fff;
	z-index: 3;
}
nav.main-nav:before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	width: 100%;
	height: 100%;
	transition: background-color .2s linear, height .2s ease-out;
	background-color: rgba(255,255,255,1);
	box-shadow: 0 0 30px rgba(0,0,0,.2);
}
nav.main-nav .main-nav-body {
	position: relative;
	margin: 0 0 0 auto;
	display: none;
}
body.w-top-slider nav.main-nav.nv-bg:before,
nav.main-nav.nv-bg:before {
	background-color: rgba(255,255,255,1);
	box-shadow: 0 0 30px rgba(0,0,0,.2);
}

/* LOGO */
.main-nav .logo {
    position: absolute;
    top: 12px;
    left: 20px;
    text-align: left;
}
.main-nav .logo .img {
	width: 206px;
	height: 56px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../grp/logo.png);
}

/* NAV SHOW */
.nav-show {
    position: absolute;
    top: 19px;
    right: 20px;
    width: 42px;
    height: 42px; 
    overflow: hidden;
    display: flex;     
    color: #fff;
    text-decoration: none;
    padding: 7px;
	cursor: cursor;
    z-index: 4;
    background-color: #000;
    border-radius: 50%;
}
.nav-show .icon span {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 21px;
    height: 3px;
    background-color: #fff;
    transition: transform .3s ease, top .1s ease, left .1s ease;
    border-radius: 3px;
}
.nav-show .icon {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
}
.nav-show .icon .shape-1 {
    top: 6px;
    left: 4px;
}
.nav-show .icon .shape-2 {
    top: 13px;
    left: 4px;
}
.nav-show .icon .shape-3 {
    top: 20px;
    left: 4px;
}

/* MAIN BOTS */
nav ul.main-bots {
	position: relative;
	width: 100%;
	height: auto;
	padding: 0px 5px 20px;	
	display: -webkit-flex;
 	display: flex;
 	-webkit-justify-content: center;
  	justify-content: center;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
  	align-items: center;
  	font-family: 'Open Sans';
}
nav .main-bots li {
	z-index: 2;
	display: block;
	margin: 0px auto;
	opacity: 0;
	padding: 0 10px;
	transition: opacity .0s linear .0s;	
	width: 100%;
	max-width: 320px;
	text-align: center;
}
nav.main-nav:not(.show) li {
	transition-delay: 0s !important;
}
nav .main-bots li h2{
	text-align: right;
	font-size: 11px;
	font-weight: 400;
	padding:4px 10px 1px;
	color: #ccc;
	border-bottom: solid 5px rgba(0,0,0,.2);
}
nav .main-bots li a {
	position: relative;
	display: block;
	font-size: 22px;
	line-height: 48px;
	font-weight: 700;
	color: #0a1418;
	z-index: 2;
	padding: 2px 0px;
	border-bottom: solid 1px rgba(0,0,0,.05);
	width: 100%;
	transition: padding .1s ease-in;
}
nav .main-bots li a:hover {
	padding-left: 4px;
	color: #393185;
}
nav .main-bots li:last-child a {
	border-bottom: none;
}
nav.main-nav .options {
	position: absolute;
	top: 0px;
	right: 80px;
	height: 80px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
  	align-items: center;
}
@media (max-width: 620px) {   
    nav.main-nav .options {
        display: none;
    }
}
/* LANGUAGE */

/* SOCIAL NETWORKS */
nav.main-nav .social-networks {
	width: 100%;
	display: -webkit-flex; /* Safari */
  	display: flex;
  	-webkit-flex-direction: row-reverse; /* Safari */
	flex-direction: row-reverse;
	padding: 10px 0;
}
nav.main-nav .social-networks li {
	padding: 10px;
}
nav.main-nav .social-networks a {
	display: block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	background-position: center;
}

nav.main-nav .social-networks  a.facebook {
	background-image: url(../grp/facebook.svg);
}
nav.main-nav .social-networks  a.twitter {
	background-image: url(../grp/twitter.svg);
}
nav.main-nav .social-networks  a.youtube {
	background-image: url(../grp/youtube.svg);
}
nav.main-nav .social-networks  a.google-plus {
	background-image: url(../grp/google-plus.svg);
}
nav.main-nav .social-networks  a.instagram {
	background-image: url(../grp/instagram.svg);
}
nav.main-nav .social-networks  a.dribbble {
	background-image: url(../grp/dribbble.svg);
}

nav .main-nav-body {
	pointer-events: none;	
	display: block;
}
/* SHOW */
.show .nav-show .shape-1 {
    top: 13px;
    left: 4px;
    transform: rotate(45deg);
}
.show .nav-show .shape-2 {
	top: 13px;
    left: 4px;
    transform: rotate(-45deg);
}
.show .nav-show .shape-3 {
    top: 13px;
    left: 4px;
    transform: rotate(45deg);
}
nav.main-nav.show{
	height: 100%;
	padding: 80px 0 0;
}
body.w-top-slider nav.main-nav.show:before,
nav.main-nav.show:before {
	position: fixed;
	background-color: rgba(255,255,255,1);
	height: 100%;
}
nav.main-nav.show .main-nav-body{
	display: block;
	height: 100%;
	pointer-events: auto;
	overflow: auto;
}
nav.main-nav.show .main-bots li {
	opacity: 1;
	transition-duration: .3s;
	/*transition: opacity .5s linear .2s;*/
}
nav .main-bots li a.en {
	border-bottom: none;
}

/* HEADER */
.top-slider {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    overflow: hidden;
}
.top-slider {
    height: calc( ( 100vw * 531 / 1339 ));
    max-height: 531px;
}
.top-slider slider {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
	backface-visibility: hidden;
}
.top-slider figure {
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: -webkit-flex;
  	display: flex;
  	-webkit-justify-content: center;
  	justify-content: center;
	-webkit-align-items: center;
  	align-items: center;
}
@media (max-width: 580px) {   
    .top-slider {
        height: calc( ( 100vw * 820 / 580 ));
        max-height: calc( 100vh - 80px );
    }
    .top-slider figure {
		background-size: cover;
    }
}
.top-slider .prev,
.top-slider .next {
    position: absolute;
    top: 50%;
    left: 5%;
    margin-top: -50px;
    display: block;
    width: 44px;
    height: 60px;
    z-index: 2;
    cursor: pointer;
    transition: background .2s linear;
    display: none;
}
.top-slider .next {
    right: 5%;
    left: auto;
}
.top-slider .prev:before,
.top-slider .next:before,
.top-slider .prev:after,
.top-slider .next:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 13px;
    width: 43px;
    height: 43px;
    border-right: solid 5px rgba(0,0,0,.5);
    border-top:solid 5px rgba(0,0,0,.5);
    display: block;
    transform: rotate(-135deg);
    border-radius: 0px;
    transition: border .2s linear;
}
.top-slider .prev:after {
    left: 15px;
    border-right: solid 2px #fff;
    border-top:solid 2px #fff;
}
.top-slider .next:before,
.top-slider .next:after {
    left: -12px;
    transform: rotate(45deg);
}
.top-slider .next:after {
    left: -14px;
    border-right: solid 2px #fff;
    border-top:solid 2px #fff;
}

.top-slider .prev:hover,
.top-slider .next:hover {    
}
.top-slider .prev:hover:before,
.top-slider .next:hover:before {
}
.top-slider .slider-control {
    position: absolute;
    bottom:0px;
    left:0px;
    width: 100%;
    z-index: 2;
    text-align: center;
    display: -webkit-flex; /* Safari */
  display: flex;
    -webkit-justify-content: center; /* Safari */
  	justify-content:         center;
}

.top-slider .slider-control li {
    display: inline-block;
    margin:0px;
    width: 100%;
    max-width: 320px;
    height: 13px;
    padding: 0 2px;
    cursor: pointer;
    transition: background-color .3s linear;
}
.top-slider .slider-control::-moz-selection { background:transparent; }
.top-slider .slider-control::selection { background:transparent; }
.top-slider .slider-control li:active {
    background-color: rgba(255,255,255,.1);
    transition: background-color .0s linear;
}
.top-slider .slider-control li:after {
    content: '';
    width: 100%;
    height: 5px;
    display: block;
    margin:4px 0;
    background-color: #00fff6;
    border-radius: 2px;
    transition: background-color .3s linear;
}
.top-slider .slider-control li:active:after,
.top-slider .slider-control li.sel:after {
    background-color: #ff0034;
    transition: background-color .2s linear;
}

/* SECTIONS */
.section {
	position: relative;
	width: 100%;
	margin: 0 auto;
	height: auto;
	z-index: 2;
}
.section .body {
	position: relative;
	width: 100%;
	max-width: 1366px;
	margin: 0 auto;
	height: auto;
	z-index: 2;
}

/* SECTION CONTACT */
.contact {
	background-color: #fff;
	width: 100%;
}
.contact .body {
	min-height: auto;
	max-width: 1366px;
	padding: 110px 20px;
}
.contact h1 {
	color: #7a7a7a;
	font-weight: 400;
	font-size: 36px;
	line-height: 36px;
	padding: 10px;
	margin-bottom: 40px;
}

/* EDITORES FORM */
.contact form {
	position: relative;
	
  	max-width: 640px;
  	margin: 0 auto;
}
.fieldset {
	width: 100%;
	display: -webkit-flex; 
  	display: flex; 
  	-webkit-flex-direction: row; 
  	flex-direction: row;
  	-webkit-justify-content: flex-start; 
  	justify-content: flex-start;
  	-webkit-flex-wrap: wrap; 
  	flex-wrap: wrap;
  	-webkit-align-items: flex-start; 
  	align-items: flex-start;
}
.fieldsetfull {
	width: 100%;
}
label {
	position: relative;
	display: block;
	width: 33.333%;
	padding: 8px;
}
@media (max-width: 580px){
	label {
		width: 100%;
	}
}
.fieldsetfull label {
	width: 100%;
}
label span{
	display: none;
}
label span.error-text {
	display: block;
    font-size: 14px;
    line-height: 18px;
    color: #fc5858;
    margin-top: 4px;
    text-align: left;
}
input,
select,
textarea {
	display: block;
	width: 100%;
	border:solid 1px #cbcbcb;
	border-radius: 8px;
	padding: 10px;
	background-color: #fff;
	transition: border .3s linear, box-shadow .3s linear;
}
textarea {
	height: 102px;
	resize: none;
}
label.invalid input, 
label.invalid textarea {
    border: solid 1px transparent;
    box-shadow: 0 0 10px rgba(255,0,0,.3), inset 0 0 10px rgba(255,0,0,.3);
}

label .bot {
	background:none;
	color:#fff;
	font-weight: 300;
	background-color: rgba(0,205,255,1);
	transition: background-color .2s linear;
	padding: 10px 30px;
	border-color: transparent;
}
label .bot:hover {
	background-color: rgba(0,105,255,1);
}
input:focus,
textarea:focus,
select:focus {
	border: solid 1px #66afe9;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

/* FOOTER */
.footer {
	background-color: #0b1418;
	min-height: auto;
}
.footer .body {
	margin: 0 auto;
  	min-height: 100px;
  	text-align: left;
  	font-size: 16px;
  	line-height: 26px;
  	padding: 60px 20px;
  	color: #a9a9a9;
  	display: -webkit-flex; 
  	display: flex; 
  	-webkit-flex-direction: row; 
  	flex-direction: row;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	max-width: 1200px;
}
@media (max-width: 768px){  
	.footer .body {
		-webkit-flex-wrap: wrap; /* Safari */
  		flex-wrap:         wrap;
	}
}

/* FOOTER CONTACT */
.footer .footer-contact {
	width: 58%;
	margin-bottom: 50px;
}
@media (max-width: 768px){  
	.footer .footer-contact {
		width: 100%;
	}
}
.footer .footer-contact h1 {
	font-size: 34px;
	line-height: 38px;
	font-weight: 300;
	color: #fff;
	padding: 10px;
}
.footer .footer-contact .alert {
	text-align: center;
}
/* FOOTER COMPANY */
.footer .company {
	position: relative;	
	text-align: right;
	padding: 0 20px;
	width: 42%;
}
@media (max-width: 768px){  
	.footer .company {
		width: 100%;
		text-align: left;
	}
}
.footer .company-info {
	font-size: 18px;
	font-weight: 300;
	line-height: 28px;
	margin: 15px auto;
	color: #fff;
}

/* SOCIAL NETWORKS */
.footer .social-networks {
	width: 100%;
}
@media (max-width: 768px){  
	.footer .social-networks {
		max-width: none;
	}
}
.footer .social-networks h1 {
	font-size: 34px;
	line-height: 38px;
	font-weight: 300;
	color: #fff;
	padding: 10px 0;
}
.footer .social-networks ul {
	display: -webkit-flex; /* Safari */
  	display: flex;
  	-webkit-flex-wrap: wrap; /* Safari */
  	flex-wrap:         wrap;
  	-webkit-flex-direction: row-reverse; /* Safari */
	flex-direction: row-reverse;
	border-bottom: solid 1px #fff;
	padding: 10px 0;
}
@media (max-width: 768px){  
	.footer .social-networks ul {

  		-webkit-flex-direction: row; /* Safari */
		flex-direction: row;
	}
}
.footer .social-networks ul li {
	padding:10px;
}
.footer .social-networks a {
	display: block;
	width: 32px;
	height: 32px;
	background-repeat: no-repeat;
	background-size: 32px 32px;
	background-position: center;
}
.footer .social-networks a.facebook {
	background-image: url(../grp/facebook-ffffff.svg);
}
.footer .social-networks a.twitter {
	background-image: url(../grp/twitter-ffffff.svg);
}
.footer .social-networks a.youtube {
	background-image: url(../grp/youtube-ffffff.svg);
}
.footer .social-networks a.google-plus {
	background-image: url(../grp/google-plus-ffffff.svg);
}
.footer .social-networks a.instagram {
	background-image: url(../grp/instagram-ffffff.svg);
}
.footer .social-networks a.dribbble {
	background-image: url(../grp/dribbble-ffffff.svg);
}

.w-auto {
	width: auto;
}
.pull-right {
	float: right;
}
.none {
	display: none !important;
}