/* CSS Document */

html, body{
	margin:0px;
	height:100%;
	background-color: #ffffff;
}

img{
	border: 0;
	max-width: 100%
}

a{
	text-decoration: none;
	color: #333;
}

a:hover{
	text-decoration: none;
}

a.botones {
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
	font-size: 13px;
	font-weight:400;
	line-height: normal;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	display: inline-block;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.boton-color { color: #fff; background: #000;}
a.boton-color:hover{ background: #111; border-radius: 6px}

.boton-blanco { color: #ffffff; border: 1px solid #ffffff;}
a.boton-blanco:hover{ color: #0099cc; background: #ffffff;}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: #000;
	margin: 0;
	padding: 0;
}

h1{	font-size: 60px; line-height: 62px;}
h2{	font-size: 60px; line-height: 62px;}
h3{	font-size: 36px; line-height: 38px;}
h4{	font-size: 24px; line-height: 26px;}
h5{	font-size: 20px; line-height: 22px;}
h6{	font-size: 10px; line-height: 12px;}

.thin{ font-weight: 100;}
.extra-light { font-weight: 200;}
.semi-bold { font-weight: 600;}
.extra-bold{ font-weight: 800;}


.white{ color: #fff;}
.color{ color: #bca04a;}
.black{ color: #000;}
.dark{ color: #333;}



p {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #333;
	margin: 0;
	padding: 0;
}

p.copy{ font-size: 10px;}


.expand { letter-spacing: 10px;}
.expand2 { letter-spacing: 5px;}
.line-big { line-height: 24px;}



/* ==================================================
   HEADER
================================================== */

#header{
	background-color: #fff;
	height: 80px;
	width: 100%;
	position: fixed;
	top: 0px;
	z-index: 99991;
}

#logo {
    position: absolute;
    top: 0px;
    z-index: 100;
	left: 40px;
}

/* ==================================================
   NUEVO MENU DESPLEGABLE
================================================== */

ul#nav {
    margin: 0px;
    padding: 0px;
}

#nav {
  	list-style:none;
  	position: relative;
  	text-align: center;
}

#nav li {
	display: inline-block;
	margin: auto;
	text-align: left;
}

#nav a {
	font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    color: #000;
    padding: 59px 10px 8px 10px;
    margin: 0px 10px 0px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display:block;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#nav a:hover {
    background-color: #111;
    color: #fff;
}


/* ==================================================
   SOCIAL BUTTONS
================================================== */

ul#socialButtons {
    margin: 0px;
    padding: 0px;
}

#socialButtons {
    list-style: none;
    display: inline;
    float: right;
    position: absolute;
    right: 40px;
    top: 47px;
    z-index: 99999;
}

#socialButtons li{
	float: left;
	background-repeat: no-repeat;
	background-position: center center;
}

#socialButtons a{
	display: block;
	text-indent: -9999px;
	height: 30px;
	width: 30px;
}

#facebook {background-image: url(../images/ico-facebook.png);}
#instagram {background-image: url(../images/ico-instagram.png);}
#linkedin {background-image: url(../images/ico-linkedin.png);}
#twitter {background-image: url(../images/ico-twitter.png);}
#pinterest {background-image: url(../images/ico-pinterest.png);}


/* ==================================================
  MAIN
================================================== */

#main {
    width: 100%;
    margin: auto;
    overflow: hidden;
    background-color: #ffffff;
}

/* ==================================================
  GENERAL - CONTENT
================================================== */

.content{
	/* max-width: 1600px; */
	position: relative;
	overflow: hidden;
	margin:	auto;
	text-align: left;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 40px;
	padding-right: 40px;
}


/* ==================================================
   COLUMNAS
================================================== */

.fila{
	width: 100%;
	overflow: hidden;
}

.columna{
	width: 50%;
	float: left;
}

.columna .columna50 {
    width: 50%;
    float: left;
}

.columna .columna100{
	width: 100%;
	float: left;
}

.columna-content{
	padding: 0;
	margin: 0;
	position: relative;
	background-color: #f5f5f5;
	background-image: url(../images/three-dots.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px;
}

.columna-content2{
	padding: 5px;
	margin: 0;
	position: relative;
}

.columna-item {
    width: 100%;
    height: 100%;
	position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid #fff 5px;
}

.progressive {

}

.progressive__img {
	width:100%;
	height:100%;
}

.progressive--not-loaded {
	opacity: 0;

}

.progressive--is-loaded {
	opacity: 1;
	-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1s; /* Firefox < 16 */
        -ms-animation: fadein 1s; /* Internet Explorer */
         -o-animation: fadein 1s; /* Opera < 12.1 */
            animation: fadein 1s;

}

@keyframes fadein {
	from { opacity: 0; }
    to   { opacity: 1; }
}

.columna-item-video {
    border: solid #fff 5px;
}


/* ==================================================
   SLIDE
================================================== */
#home-slide{
	width: 100%;
	overflow: hidden;
}

#ico-scroll {
    position: absolute;
    bottom: 60px;
    z-index: 2;
    width: 16px;
    left: 50%;
    margin-left: -8px;
    text-align: center;
}

#info {
    position: absolute;
    bottom: 12px;
    z-index: 999;
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #000;
    letter-spacing: 10px;
}


/* ==================================================
   HOME PROJECTS
================================================== */

#home-projects{
	width: 100%;
	overflow: hidden;
}

#home-projects .content{
	padding-left: 35px;
	padding-right: 35px;
}

#home-projects h5 {
    line-height: 30px;
	padding: 20px;
}

#home-projects h5 span {
    background: #000;
    color: #fff;
    padding: 0px 5px;
}

a.viewmore {
	cursor: pointer;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	background-color: rgba(255,255,255, 0.9);
	background-image: url(../images/info.png);
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0;
	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear; /* Firefox 4 */
	-webkit-transition: all 0.3s linear; /* Safari and Chrome */
	-o-transition: all 0.3s linear; /* Opera */
}

a.viewmore:hover {
    opacity: 1;
}

.viewmore-info {
    position: absolute;
    width: 100%;
	display: block;
	top: 120%;
    padding: 10px 0;
    text-align: center;
	transition: all 0.3s ease-out;
  	-moz-transition: all 0.3s ease-out; /* Firefox 4 */
  	-webkit-transition: all 0.3s ease-out; /* Safari and Chrome */
  	-o-transition: all 0.3s ease-out; /* Opera */
}

a.viewmore:hover .viewmore-info {
    top: 50%;
}

.viewmore-tit {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 20px;
	line-height: 22px;
    color: #000;
	padding-bottom: 5px;
}

.viewmore-info span {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    line-height: 13px;
    font-weight: 400;
    color: #fff;
    background-color: #000;
    padding: 2px 6px 3px 6px;
    border-radius: 4px;
    margin: 0 1px 2px 1px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ==================================================
   HOME EMPRESA
================================================== */

#home-empresa{
	width: 100%;
	display: table;
	overflow: hidden;
	margin-top: 5px;
}


.empresa-left{
	width: 50%;
	display: table-cell;
    float: none;
    vertical-align: bottom;
	padding: 80px 40px 0 0;
}

.empresa-right{
	width: 50%;
	display: table-cell;
    float: none;
    vertical-align: bottom;
	padding: 80px 40px 0 40px;
	border-left-width: 5px;
    border-left-color: #fff;
    border-left-style: solid;
	background: url(../images/empresa-bg.jpg) no-repeat center top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.empresa-right-content {
    padding: 40px 40px 0 40px;
    background: #fff;
}


#home-empresa h2{
	line-height: 48px;
}

#home-empresa h4{
	margin: 0 0 20px 0;
}

#home-empresa h6{
	margin: 5px 0 20px 0;
}

/* ==================================================
   HOME SERVICIOS
================================================== */

#home-servicios{
	width: 100%;
	display: table;
	overflow: hidden;
}


.servicios-left{
	width: 50%;
	display: table-cell;
    float: none;
    vertical-align: top;
	padding: 40px 40px 0 0;
}

.servicios-right{
	width: 50%;
	display: table-cell;
    float: none;
    vertical-align: top;
	padding: 40px 40px 0 45px;
}

.servicios-right-content {
    padding: 0px 40px 0 40px;
}


.servicios-left h5{
	line-height: 30px;
	margin-bottom: 20px;
}

.servicios-left span {
    background: #000;
    color: #fff;
    padding: 0px 5px;
}

.servicios-right h4{
	margin: 0 0 20px 0;
}

/* ==================================================
   CONTACTO
================================================== */

#contacto{
	width: 100%;
	overflow: hidden;
	margin-top: 80px;
}

.contacto-left{
	width: 50%;
    float: left;
}

.contacto-left-content{
	padding: 80px 40px 0 0;
}

.contacto-right{
	width: 50%;
    float: left;
}

.contacto-right-content{
	padding: 175px 40px 0 40px;
	background: url(../images/empresa-bg.jpg) no-repeat center top;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.contacto-right-content-info {
    padding: 40px 40px 0 40px;
    background: #fff;
}

#contacto h2{
	line-height: 48px;
}

#contacto h4{
	margin: 0 0 20px 0;
}

#contacto h5{
	line-height: 36px;
    margin-bottom: 40px;
    margin-top: 40px;
}

#contacto h5 span {
    background: #000;
    color: #fff;
    padding: 0px 5px;
}

#contacto h6{
	margin: 5px 0 20px 0;
}

.contacto-right-form {
    padding: 40px 80px 0px 80px;
}

.form100 {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    color: #666666;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 12px 20px;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.form100:focus {
    border: 1px solid #999;
    outline: -webkit-focus-ring-color auto 0px;
}

label {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: normal;
    color: #666666;
    background-color: #fff;
    position: absolute;
    margin: -7px 0px 0 10px;
    padding: 0px 10px;
	letter-spacing: 2px;
}

input#enviar {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    padding-top: 12px;
    padding-right: 22px;
    padding-bottom: 12px;
    padding-left: 22px;
    display: inline-block;
    cursor: pointer;
	border: 1px solid #000;
	background: #000;
    color: #fff;
}

input#enviar:hover {
    border: 1px solid #333;
	background: #333;
}

.contacto-100{
	width: 100%;
    float: left;
}

.contacto-100-content{
	padding: 120px 40px 0 40px;
	background: url(../images/contacto-respuesta-bg.jpg) no-repeat center top;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.contacto-100-content-info {
    padding: 40px 40px 0 40px;
    background: #fff;
}

.contacto-100 p{
	margin-bottom: 20px;
}


/* ==================================================
   PROYECTO TIT
================================================== */

#proyecto-tit {
	width: 100%;
	overflow: hidden;
	margin-top: 80px;
}

.proyecto-tit-bg {
	background-color: #272727;
	overflow: hidden;
    padding: 40px 20px;
	position: relative;
}

#proyecto-tit h6 {
    padding: 15px 0 5px 0;
}

#proyecto-tit .description {
   padding-top: 45px;
}

#proyecto-tit .back {
	position: absolute;
	width: 24px;
	height: 24px;
	background-image: url(../images/close.png);
	background-repeat: no-repeat;
	background-position: center center;
	top: 10px;
    right: 10px;
    padding: 10px;
}


.proyecto-tit-columna{
	width: 50%;
    float: left;
}

.proyecto-tit-columna-content{
	padding: 20px;
}

/* ==================================================
   GALLERY PROJECTS
================================================== */

#gallery-projects {
	width: 100%;
	overflow: hidden;
	margin-top: 5px;
}

#gallery-projects .content {
    padding-left: 35px;
    padding-right: 35px;
}

/* ==================================================
   PROYECTO CONTACT
================================================== */

#proyecto-contact {
	width: 100%;
	overflow: hidden;
	margin-top: 35px;
}

#proyecto-contact .content{
	max-width: 680px;
    margin: 0;
}

#proyecto-contact h5 {
    line-height: 30px;
    margin-bottom: 20px;
}

#proyecto-contact span {
    background: #000;
    color: #fff;
    padding: 0px 5px;
}


/* ==================================================
   FOOTER
================================================== */

#footer{
	width: 100%;
	overflow: hidden;
	margin-top: 40px;
}

#footer .footer-content {
	border-top-width: 1px;
    border-top-color: #000;
    border-top-style: solid;
	padding: 20px 70px 40px 0;
}


ul#socialButtons-footer {
    margin: 0px;
    padding: 0px;
}

#socialButtons-footer {
    list-style: none;
    display: inline;
}

#socialButtons-footer li{
	background-repeat: no-repeat;
	background-position: center center;
	width: 45px;
}

#socialButtons-footer a{
	display: block;
	text-indent: -9999px;
	height: 30px;
	width: 45px;
}

#facebook-footer {background-image: url(../images/ico-facebook.png);}
#instagram-footer {background-image: url(../images/ico-instagram.png);}
#linkedin-footer {background-image: url(../images/ico-linkedin.png);}
#twitter-footer {background-image: url(../images/ico-twitter.png);}
#pinterest-footer {background-image: url(../images/ico-pinterest.png);}


#logo-footer {
    margin: 10px 0 5px 0;
}


#button-top {
	position: absolute;
	display: block;
	width: 50px;
	height: 50px;
	background-color: #000;
	background-image: url(../images/button-top.png);
	background-repeat: no-repeat;
	background-position: center center;
	bottom: 40px;
    right: 40px;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#button-top:hover {
	background-color: #111;
	border-radius: 6px;
}




/* ==================================================
   MEDIA
================================================== */
#img-mobile { display: none;}

@media screen and (orientation:portrait) {

#img-desktop { display: none;}
#img-mobile { display: block;}

}

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

#logo { left: 20px;}
#socialButtons { right: 20px;}
.content{ padding-left: 20px; padding-right: 20px;}
#home-projects .content { padding-left: 15px; padding-right: 15px;}
#footer .footer-content { padding: 20px 70px 20px 0;}
#button-top { bottom: 20px; right: 20px;}

#gallery-projects .content { padding-left: 15px; padding-right: 15px;}

}


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

#nav { display: none;}
.columna { width: 100%;}

#home-projects h5 { padding: 20px 0px;}

.empresa-left { width: 100%; display: block; padding: 20px 0 20px 0;}
.empresa-right { width: calc(100% - 40px); display: block; padding: 160px 20px 0 20px; border-left-width: 0px;}
.empresa-right-content { padding: 20px 20px 0 20px;}

.servicios-left { width: 100%; display: block; padding: 20px 0 0 0;}
.servicios-right { width: 100%; display: block; padding: 40px 0 0 0;}
.servicios-right-content { padding: 0;}

.proyecto-tit-bg { padding: 30px 0px 10px 0px;}
.proyecto-tit-columna { width: 100%;}
#proyecto-tit .description { padding-top: 0;}

.contacto-left { width: 100%;}
.contacto-left-content { padding: 20px 40px 0 0;}
#contacto h5 { margin-bottom: 20px; margin-top: 20px;}
.contacto-right { width: 100%;}
.contacto-right-content { padding: 160px 20px 0 20px;}
.contacto-right-content-info { padding: 20px 20px 0 20px;}
.contacto-right-form { padding: 40px 20px 0px 20px;}

.contacto-100-content{	padding: 120px 20px 0 20px;}
.contacto-100-content-info { padding: 20px 20px 0 20px;}

}

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

#info { letter-spacing: 5px;}
.expand { letter-spacing: 5px;}
.expand2 { letter-spacing: 2px;}

.contacto-right-content { padding: 80px 20px 0 20px;}
.contacto-100-content{	padding: 80px 20px 0 20px;}

}