@charset "utf-8";
/* CSS Document */
/*----------------------------------------  RESET --------------------------------------*/
/**
 * Eric Meyer's Reset CSS v2.0 
(http://meyerweb.com/
eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*---------------------------------------- 
*******************ALL
-----------------------------------------*/
html, body {
	height:100%;
	}
body {
	font-family: 'geomanist_regularregular', Arial, Helvetica, sans-serif;
	background-color:#252525;
	color:#929CA4;
	}
.red {
	color:#EC2024;
	}
.blue {
	color:#429BD5;
	}
.yellow {
	color:#F2E92F;
	}
.gray {
	color:#929CA4;
	}
.green {
	color:#25D366;
	}
h1, h2 {
	font-family: 'geomanistbold', Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	}
h1 {
	font-size:120px;
	line-height:120px;
	margin-bottom:40px;
	}
h2 {
	font-size:90px;
	line-height:90px;
	margin-bottom:10px;
	}
h3, h4 {
	font-family: 'geomanistmedium', Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	}
h3 {
	font-size:16px;
	line-height:16px;
	margin-bottom:10px;
	}
h4 {
	font-size:24px;
	line-height:24px;
	}
p {
	font-size:14px;
	line-height:16px;
	}
.row.no-pad {
  margin-right:0;
  margin-left:0;
}
.row.no-pad > [class*='col-'] {
  padding-right:0;
  padding-left:0;
}
a,a:hover,a:focus {
	color:#429BD5;
	text-decoration:none;
	outline:none;
	}
/*---------------------------------------- 
*******************HEADER
-----------------------------------------*/
header {
	width:100%;
	height:150px;
	top:0;
	z-index:99;
	position: absolute;
	}
header figure {
	margin-top:20px;
	}
header .contact {
	font-size: 13px;
	text-align: center;
	width: 100%;
	padding: 20px 0;
	color: #ffffff;
}
span.data {
	margin: 0 15px;
}
.data .fa{
	margin-right: 8px;
}
nav {
	margin-top:15px;
	width:500px;
	position:absolute;
	right:0;
	}
nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
nav li {
  line-height: 50px;
  height: 50px;
  width: 100px;
  display: inline-block;
  margin-right: -4px;
  font-size:12px;
  text-transform:uppercase;
}
nav a {
  text-decoration: none;
  color:#EBEDED;
  display: block;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
nav a:hover, nav a:active, nav a:focus {
  text-decoration: none;
  color:#F2E92F;
}
.nav-line {
	width:100px;
	position:absolute;
	border-bottom:solid 2px #F2E92F;
	bottom:0;
	opacity:0;
}
nav .active  {
	color:#F2E92F;
	}
.target-nav{
	width:100%;
	background:#252525;
	height:80px;
	position:fixed;
	top:-80px;
	z-index:999;
	}
.target-nav nav {
	margin-top:0;
	}
.target-nav nav li {
	line-height: 80px;
  	height: 80px;
	}
#logo {
	display: none;
}
/*---------------------------------------- 
******************* HERO
-----------------------------------------*/
.hero {
	width:100%;
	color:#FFF;
	text-align:center;
	position:relative;
}
.hero h1 {
	font-size: 18px;
	line-height: 20px;
	margin: 0;
	padding: 30px 0;
}
.hero img {
	width: 300px
}
.hero h2 + p {
	font-size:24px;
	line-height:26px
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-25px);
    transform: translateY(-25px);
  }
  60% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }
  60% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  background-image: url(../img/svg/arrow_down.svg);
  background-size: contain;
  cursor:pointer;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
/*---------------------------------------- 
*******************COMMON
-----------------------------------------*/
footer, 
.quick-contact
 {
	width:100%;
	background:#252525;
	color:#FFF;
	}
.content {
	padding:120px 0;
	background-color:#EBEDED;
	}
/*---------------------------------------- 
*******************QUICK CONTACT
-----------------------------------------*/
.quick-contact {
	text-align:center;
	padding:40px 0;
	font-size:12px;
	}
.quick-contact .fa {
	font-size:24px;
	margin-bottom:20px;
	}
/*---------------------------------------- 
*******************Proyects
-----------------------------------------*/
.proyects {
	padding:0 0 120px;
	background-color:#EBEDED;
	}
.proyects img {
	width:100%;
	height:auto;
	}
.proyects article {
	padding:10px;
	}
.proyects article > div {
	padding:20px;
	background-color:#FFF;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.2);
	-moz-box-shadow:    0px 0px 2px 0px rgba(50, 50, 50, 0.2);
	box-shadow:         0px 0px 2px 0px rgba(50, 50, 50, 0.2);
	min-height:500px;
	}
.proyects .section {
	font-family: 'geomanistbold', Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	font-size:32px;
	text-align:center;
	margin-bottom:10px;
	}
.proyects h6 {
	margin-bottom:40px;
	text-align:center;
	}
/*---------------------------------------- 
*******************FOOTER
-----------------------------------------*/
footer {
	height:120px;
	}
footer p {
	font-size:12px;
	}
.legal {
	margin-top:55px;
	}
.legal-spacer {
	margin:0 5px;
	}
footer a {
  text-decoration: none;
  color:#fff;
}
footer a:hover, footer a:active, footer a:focus {
  text-decoration: none;
  color:#429BD5;
}

.social {
	position: fixed;
	bottom: 0;
	float: right;
	right: 0px;
	z-index: 9999;
}
.social > div {
	width:60px;
	height:60px;
	font-size:18px;
	text-align:center;
	line-height:60px;
	margin-left:0px;
	float:right;
	color:#FFF;
	margin-top:30px;
	}
.social a, .social a:hover {
	color:#fff;
	display:block;
	}
.social-fb {
	background-color:#3b5998;
	}
.social-tw {
	background-color:#00aced;
	}
.social-sc {
	background-color:#ff7700;
	}
.social-yt {
	background-color:#c4302b;
	}
/*---------------------------------------- 
*******************BRANDS
-----------------------------------------*/
.brands {
	padding:120px 0;
	background-color:#D9DEE2;
	}
.brands-carousel > div:nth-child(1) {
	width:50px;
	left:15px;
	position:absolute;
	z-index:99999;
	float:left
	}
.brands-carousel > div:nth-child(2) {
	width:50px;
	right:15px;
	position:absolute;
	z-index:99999;
	float:right;
	}	
.brands-carousel > div:nth-child(1),
.brands-carousel > div:nth-child(2) {
	height:100%;
	text-align:center;
	font-size:50px;
	cursor:pointer;
	color:#EBEDED;
	background-color:#252525;
	margin:0;
	padding:0;
	opacity:0;
	}
.brands-carousel > div:nth-child(1) > span,
.brands-carousel > div:nth-child(2) > span {
	width:50px;
	height:50px;
	text-align:center;
	top:calc(50% - 25px);
	position: absolute;
	margin:0;
	padding:0;
	}
.brands-carousel > div:nth-child(1) > span {
	left:0;
	}
.brands-carousel > div:nth-child(2) > span {
	right:0;
	}
.brands-carousel > div:nth-child(3) {
	width:100%;
	}
/*---------------------------------------- 
*******************CATALOGS
-----------------------------------------*/	
.catalogs article {
	overflow:hidden;
	cursor:pointer;
	}
.catalogs img {
	width:100%;
	height:auto;
	}
.catalogs .options {
	position:absolute;
	width:100%;
	height:100%;
	background-color:rgba(37,37,37,.5);
	z-index:99;
	color:#fff;
	text-align:center;
	display:none;
	font-size:12px;
	}
.catalogs .options > div {
	border:solid 1px #fff;
	width:75%;
	margin:0 auto;
	opacity:0;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	}
.catalogs .options > div:hover {
	letter-spacing:2px;
	}
.catalogs .options a {
	color:#fff;
	padding:15px;
	display:block;
	}
.catalogs .options>div:first-child {
	margin-bottom:30px;
	margin-top:50px;
	}
img { -ms-interpolation-mode: bicubic; }
/*---------------------------------------- 
*******************DEFAULT
-----------------------------------------*/
.default .container > div:first-child {
	margin-bottom:60px;
	}
.default article {
	padding:20px;
	background-color:#FFF;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.2);
	-moz-box-shadow:    0px 0px 2px 0px rgba(50, 50, 50, 0.2);
	box-shadow:         0px 0px 2px 0px rgba(50, 50, 50, 0.2);
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	}
.default article:hover {
	padding:20px;
	background-color:#FFF;
	-webkit-box-shadow: 0px 0px 12px 0px rgba(50, 50, 50, 0.4);
	-moz-box-shadow:    0px 0px 12px 0px rgba(50, 50, 50, 0.4);
	box-shadow:         0px 0px 12px 0px rgba(50, 50, 50, 0.4);
	cursor:pointer;
	}
h3 {
	margin-top:20px;
	}
/*---------------------------------------- 
*******************COMPANY
-----------------------------------------*/
.company-display-text {
	font-family: 'geomanistbold', Arial, Helvetica, sans-serif;
	font-size:4em;
	text-align:right;
	line-height:60px;
	}
.company p {
	line-height:21px;
	font-size:16px;
	}	
.company p + p {
	margin-top:20px;
	}		
.company  h4 {
	 margin-bottom:20px;
	 }
.company ul li {
	padding:4px 0;
	 }
.company  p + h4 {
	 margin-top:20px;
	 }
.ilu-logos {
	text-align:center;
	}
.ilu-logos img {
	margin-left: auto;
    margin-right: auto;
	}
.company > div > div:first-child {
	margin-bottom:80px;
	}
/*---------------------------------------- 
*******************SERVICES
-----------------------------------------*/	
.services div > div:not(:last-child){
	margin-bottom:40px;
	}
.services h3 {
	font-family: 'geomanistbold', Arial, Helvetica, sans-serif;
	}
.services article {
	padding:20px;
	background-color:#fff;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.2);
	-moz-box-shadow:    0px 0px 2px 0px rgba(50, 50, 50, 0.2);
	box-shadow:         0px 0px 2px 0px rgba(50, 50, 50, 0.2);
	height:450px
	}
.services figure {
	margin-bottom:20px;
	}
/*---------------------------------------- 
******************CONTACT
-----------------------------------------*/	
.contact input:focus,
.contact textarea:focus {
	outline:none !important;
	}
.contact input[type="text"],
.contact input[type="email"],
.contact input[type="tel"]{
	width:100%;
	margin-bottom:20px;
	border:solid 1px #D9DEE2;
	padding:5px 8px;
	height:50px;
	font-size:16px;
	box-sizing:border-box;
	}
.contact input[type="checkbox"] {
	float:left;
	margin-right:5px;
	margin-bottom:25px;
	}
.contact textarea{
	width:100%;
	margin-bottom:20px;
	border:solid 1px #D9DEE2;
	padding:5px 8px;
	height:200px;
	font-size:16px;
	box-sizing:border-box;
	}
.contact button {
	width:100%;
	border:solid 1px #429BD5;
	padding:5px;
	height:50px;
	font-size:16px;
	box-sizing:border-box;
	background-color:#429BD5;
	-webkit-transition: all .2s ease-in-out;
 	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	color:#FFF;
	}
.contact button:hover {
	background-color:#3A85AF;
	}
.contact button span {
	margin-right:10px;
	}
.contact  h3 {
	  margin-top:20px;
	}
.contact  h3 + div{
	  margin-bottom:10px;
	}
#map {
	width:100%;
	height:500px;
	}
.form-status {
	width:100%;
	margin-bottom:20px;
	height:50px;
	line-height:50px;
	font-size:16px;
	text-align:center;
	opacity:0;
	display:none;
	cursor:pointer;
	}
.form-status form span {
	margin-right:10px;
	}
.form-status.error {
	border:solid 1px #FF0000;
	background-color:#FFE1E1;
	color:#FF0000;
	}
.form-status.done {
	border:solid 1px #33CC00;
	background-color:#E8FFB0;
	color:#33CC00;
	}
.contact  figure {
	border:solid 10px #fff;
	margin-bottom:20px;
	cursor:pointer;
	}
.contact p + p {
	margin-top:5px;
	}
/*---------------------------------------- 
******************JQUERY & HELPERS
-----------------------------------------*/
.box {
	width:100%;
	height:100%;
	position:fixed;
	z-index:999;
	background:#252525;
	opacity:0;
	cursor:pointer;
}
#main {
	opacity:0;
	}
.box-container {
	position:fixed;
	z-index:9999;
	opacity:0;
	margin:0 auto;
	background-color:#fff;
	padding:10px;
	box-sizing:border-box;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.4);
	-moz-box-shadow:    0px 0px 2px 0px rgba(50, 50, 50, 0.4);
	box-shadow:         0px 0px 2px 0px rgba(50, 50, 50, 0.4);
}	
.blur {
    filter: blur(4px);
    filter: url("../img/svg/blur.svg#gaussian_blur");
    -webkit-filter: blur(4px);
    -o-filter: blur(4px);
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.close-box {
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	z-index:9999;
	position:fixed;
	top:20px;
	right:20px;
	color:#fff;
	font-size:24px;
	cursor:pointer;
	}
.load {
	z-index:999;
	position:fixed;
	background:#252525;
	opacity:0;
	padding:10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	bottom:20px;
	left:20px;
	}
.loadweb {
	z-index:999;
	position:fixed;
	top:50%;
	left:50%;
	width:40px;
	height:40px;
	margin:-20px -20px 0 0;
	background-image:url(../img/load.gif);
	}
