/* GENERALES */

*{
	margin: 0;
	padding: 0;
	box-sizing:border-box;
}

img{
	max-width: 100%;
}

body{
	font-family: 'Raleway', sans-serif;
	font-family: 'Open Sans', sans-serif;
}

.center{
	text-align: center;
}

.left{
	text-align: left;
}

.right{
	text-align: right;
}

.clear{
	clear: both;
}

.hide{
	display: none;
}



/*  POPUP  */

.body-popup{
	overflow: hidden;
}

.popup{
	position: fixed;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	z-index: 0;
	text-align: center;
	transition: all .5s ease-in-out;
	opacity: 0;
}

.popup-open{
	z-index: 9999;
	opacity: 1;
}

.popup-inner{
	margin: 0 auto;
	position: relative;
	display: inline-block;
	height: 100%;
	padding: 20px;
}

.popup-inner span{
	position: absolute;
	cursor: pointer;
	right: 0;
	top: -2px;
	width: 55px;
	height: 55px;
}

.popup-inner img{
	max-width: 100%;
	max-height: 100%;
}



/* FUENTES */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Raleway:300,400,500,600,700,800');


h1,h2,h3,h4{
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
}


h1{
	font-size:70px;
    font-weight: 700;
}

h2{
	font-size: 40px;
    font-weight: 700;
}

h3{
	font-size:24px;
	font-weight: 700;
}

h4{
	font-size:16px;
	font-weight: 500;
}

p{
	font-family: 'Open sans';
	font-size: 16px;
	color: #555555;
	font-weight: 300;
}


#email_confirm-error,#name-error,#email-error,#adress-error,#file-error,#company-error,#message-error{
	color: red;
	font-size:12px; 
	transition:all .5s;
}



/* COLORES */

.orange{
	color:#ef7d00;
}

.orange-bg{
	background-color:#ef7d00;
}

.blue{
	color:#224b6d;
}

.blue-bg{
	background-color:#224b6d;
}

.white{
	color: white;
}

.transparent-bg{
	background-color: transparent;
}




/* SPACE */

.space-10{
	height: 10px;
}

.space-20{
	height: 20px;
}

.space-30{
	height: 30px;
}

.space-40{
	height: 40px;
}

.space-50{
	height: 50px;
}




/* BOTONES */

.blue-button{
	display: inline-block;
	background-color: #224b6d;
	font-size: 'Raleway';
	font-size: 14px;
	color: white;
	letter-spacing: 1px;
	padding: 15px 40px;
	text-transform: uppercase;
	font-weight: 500;
	transition:all .5s;
		outline: 0;
	border:none;
}

.blue-button:hover{
	background-color: #183a51;
	text-decoration: none;
	color: white;
}

.orange-button{
	display: inline-block;
	background-color: #ef7d00;
	font-size: 'Raleway';
	font-size: 14px;
	color: white;
	letter-spacing: 1px;
	padding: 15px 40px;
	text-transform: uppercase;
	font-weight: 500;
	transition:all .5s;
	outline: 0;
	border:none;
}

.orange-button:hover{
	display: inline-block;
	background-color: #ff7f00;
	font-size: 'Raleway';
	font-size: 14px;
	color: white;
	letter-spacing: 1px;
	padding: 15px 40px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	transition:all .5s;
}

.white-button{
	display: inline-block;
	background-color: transparent;
	font-size: 'Raleway';
	font-size: 14px;
	color: white;
	border:2px solid white;
	letter-spacing: 1px;
	padding: 15px 40px;
	text-transform: uppercase;
	font-weight: 700;
	transition:all .5s;
}

.white-button:hover{
	background-color: white;
	text-decoration: none;
	color: #224b6d;
}

.blue-button:disabled,.orange-button:disabled,.blue-button:disabled:hover,.orange-button:disabled:hover{
	background-color: #ccc;
	cursor: default;
}


/* BOTON SCROLL TOP */


#button {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 15px;
  right: -20%;
  transition: all .5s;
  z-index: 1000;
}

#button:hover {
  cursor: pointer;
  background-color: #ef7d00;
}

#button:active {
  background-color: #ef7d00;
}

#button.show {
  right: 15px;
}

#button i {
  font-size: 1em;
  line-height: 50px;
  color: #fff;
}


/*------------   MAIN SADOW   --------------*/

.main-wrapper{
	position: relative;
}

.shadow-top{
	position: absolute;
    pointer-events: none;
    background-image: url(img/shadow-top.png);
    background-repeat: no-repeat;
    background-position: top center;
    height: 42px;
    width: 100%;
    top: -1px;
    z-index: 99;
}





/*-----------  HEADER   --------------*/






/*  UTILITIES */

.utilities-wrapper{
	font-family: 'Open Sans';
	padding: 8px 0;
}


.utilities-contact ul li, .utilities-language button, .utilities-language button:hover{
	color: #b6c7ff;
	font-size: 14px;
}

.utilities-language button:focus{
	outline: 0;
	box-shadow: none;
}

.utilities-language .language-dropdown-menu{
	min-width: 80px;
	top: 5px!important;
}

.utilities-language .language-dropdown-menu a{
	font-size: 14px;
}

.utilities-contact ul li{
	color: #b6c7ff;
}

.utilities-contact ul li i{
	margin-right: 5px;
}

.utilities-contact ul li:last-of-type{
	padding-left: 25px;
}

.utilities-language button{
	padding: 0;
}











/*  LOGO */

.logo-inner{
	padding: 10px 0;
	text-align:center;
}





/*  NAVBAR */


.navbar-wrapper{
	position: sticky;
	top: 0;
	background-color: white;
	z-index: 999;
	border-top:1px solid #d8d6d6;
	border-bottom: 1px solid #d8d6d6;
}

.navbar-wrapper{
	padding: 10px 0;
}

.navbar-wrapper .navbar-inner .navbar{
	padding: 0;
}

.header-navbar {
	margin:auto!important; 
}

.header-navbar li a{ 
	font-family: 'Raleway',sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	color: #444444;
	padding-top: 10px; 
	border-bottom: 3px solid transparent;
	margin-left:10px!important;
	margin-right: 10px!important; 
	transition:border-color .5s, color .3s;
}

.header-navbar li a:hover{
	border-bottom: 3px solid #ef7d00;
	color: #ef7d00;
	text-decoration: none;
}

.header-navbar .active a{
	border-bottom: 3px solid #ef7d00;
	color: #ef7d00;
}

.header-navbar .active:hover{
	border-bottom: none;
	color: #ef7d00;
}

.navbar-toggler-icon{
	border-color: red;
}



/*  HEADER MEDIA QUERIES */

@media (max-width: 768px) {

	h1{
		font-size:45px;
	}

	h2{
		font-size: 35px;
	}

	.logo-inner{
		padding-left:20px;
		text-align:left;
	}

	.logo-inner img{
		max-width: 80%;
		height: auto;
	}

	.navbar-toggler{
		position: absolute;
    	top: -80px;
    	right: 10px;
	}

	.navbar-toggler:focus{
		outline: none;
	}

	.navbar-wrapper{
		padding-bottom: 0;
		border-top: 0;
	}
	
	  .header-navbar li a{ 
		font-family: 'Raleway',sans-serif;
		font-size: 14px;
		padding: 12px 20px!important;
		font-weight: 700;
		color: #444444;
		margin: 0!important;
		border-top: 1px solid #dadada;
		border-bottom: none;
		background-color: #f6f6f6;
	}

	.header-navbar .nav-link:hover{
	border-bottom: none;
	}

	.header-navbar .active a{
	border-bottom: none;
	}

	.utilities-contact{
		display: none;
	}
}






/*----------------------------  HOME   --------------------------------*/





/*  BANNER */

.banner-wrapper{
	padding: 60px 0;
	background-position: center top;
}



/*  FEATURES */

.features-wrapper img{
	width: 30%;
	height: auto;
}


/*  TECNOLOGY */


.tec-home-content{
	padding: 100px 10% 100px 50px;
}

.tec-home-bg{
	background-size: auto 100%;
	background-position: right top;
	background-repeat: no-repeat;
}

@media (min-width: 1700px) {

	.tec-home-content {
	    padding: 160px 10% 160px 50px;
	}
	
}










/*  SERVICIOS INICIO */


.services-home-item-wrapper{
	padding: 0;
	position: relative;
	border-right:2px solid white;
	border-top:2px solid white;
}

.services-home-item1{
	display: block;
	width: 100%;
	padding:85% 0 0 0;
}

.services-home-item1-inner{
	display: block;
	width: 80%;
	position: absolute;
	left: 50%;
    bottom: 50%;
    -webkit-transform: translateX(-50%) translateY(50%);
    -moz-transform: translateX(-50%) translateY(50%);
    -o-transform: translateX(-50%) translateY(50%);
    transform: translateX(-50%) translateY(50%);
}

.services-home-img{
	display: block;
	background-size: 100% auto;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	padding:85% 0 0 0;
    transition: all .3s;
}

.services-home-item-wrapper a:hover .services-home-img{
	opacity: 0.3;
	background-size: 110% auto;
}

.services-home-text{
	position: absolute;
	text-align: center;
	display: block;
	opacity: 0;
	left: 50%;
    bottom: 40%;
    color: #353535;
	font-family: 'Raleway',sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 29px;
    -webkit-transform: translateX(-50%) translateY(50%);
    -moz-transform: translateX(-50%) translateY(50%);
    -o-transform: translateX(-50%) translateY(50%);
    transform: translateX(-50%) translateY(50%);
    transition: all .3s;
}

.services-home-item-wrapper a:hover .services-home-text{
	opacity: 1;
	bottom: 50%;
}







/*----------------------------  ABOUT --------------------------------*/




.page-title-wrapper{
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	position: relative;
	z-index: -1;
}

.page-title-wrapper:after{
	display: block;
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	background-color: rgba(0, 0, 0, 0.45);
}


.page-title-wrapper h3.page-title-title{
	padding: 120px 0 120px 45px;
	font-size: 30px;
	color: white;
	z-index: 1;
}



.page-section-wrapper{
	padding-top: 45px;
	padding-bottom: 45px;
}

@media (min-width: 1200px) {
	
    .page-section-wrapper{
		padding: 45px;
	}

}


/*----------------------------  SERVICES --------------------------------*/




.service-page-item,.service-page-item-inner{
	padding: 0;
}

.service-page-item-inner > .row{
	margin: 0;
}

.service-item-text{
	padding: 50px 30px;
}

.service-item-img-sm{
	display: none;
}

.service-item-img-lg{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.service-item-img img{
	width: 100%;
}

.service-page-item ul{
	list-style: none;
}

.b-top{
	border-top:4px solid #ee7d00;
}

.b-right{
	border-right:4px solid #ee7d00;
}

.b-bottom{
	border-bottom:4px solid #ee7d00;
}

.b-left{
	border-left:4px solid #ee7d00;
}



@media (max-width: 768px) {
	
	.service-item-img-lg{
		display: none;
	}

	.service-item-img-sm{
		display: block;
		text-align: center;
		padding: 40px 40px 20px;
	}

	.service-item-text{
		padding: 20px 40px 40px;
	}

}




/*----------------------------  TECNOLOGY --------------------------------*/




.tecnology-video-wrapper{
	background-color: #efefef;
	padding-top: 50px;
	padding-bottom: 50px;
}

.tecnology-video-wrapper iframe{
	max-width: 100%;
}





/*----------------------------  CONTACTO  --------------------------------*/



.medios-contacto{
	padding: 40px 35px;
}

.medios-contacto td{
	padding-top: 0;
	vertical-align: top;
}

.medios-contacto td{
	padding-bottom: 10px;
}

.medios-contacto p,.medios-contacto i{
	color: white;
}

.medios-contacto i{
	padding-right: 25px;
	font-size: 18px;
}

.form-contacto label{
	font-weight: 600;
}

.form-contacto .form-control{
	border:1px solid #a7a7a8;
}

.required:after{
	content: "*";
	color: red;
	display: inline-block;
}



@media (max-width: 768px) {

	.medios-contacto{
		margin-top: 40px;
	}
	


}



/*----------------------------  QUOTE --------------------------------*/


.quote-process-list{
	list-style: none;
	position: relative;
	margin-left: 10px;
}

.quote-process-list:before{
	content : "";
  position: absolute;
  left    : 0;
  top  : 3px;
  width  : 2px;
  height   : 80%;  /* or 100px */
  background: #224b6d;
}

.quote-process-list li{
	padding-bottom: 40px;
	font-size:15px; 
	padding-left: 40px;
	position: relative;
}

.quote-process-list li:before{
	content:"";
	display: block;
	position: absolute;
	right: 100%;
	top: 3px;
	transform:translateX(11px);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #224b6d;
}


.quote-form label{
	font-weight: 600;
}

.quote-form .form-control{
	border:1px solid #a7a7a8;
}

.barra{
	height: 25px;
	background-color: #f3f3f3;
	border-radius:5px;
}

.barra_azul{
	text-align: center;
	height: 25px;
	background-color: #0080ff;
	line-height: 25px;
	display: block;
	width: 0%;
	border-radius:10px;
	transition: all .3s ease;
}

.barra_verde{
	background-color: #009900;
}

#barra_estado span{
	font-family:'Open Sans'; 
	color: white;
	line-height: 25px;
}



/*----------------------------  PROJECTS --------------------------------*/


.page-projects-section-wrapper{
	padding-top: 45px;
	padding-bottom: 65px;
}

.projects-item {
	position: relative;
	overflow: hidden;
	padding-right: 25px;
	padding-left: 25px;
	margin-bottom: 50px;
}

.projects-item a{
	display: block;
	transition:all .5s ease;
}

.projects-item a:after{
	content:"ver proyecto";
	text-transform: uppercase;
	position: absolute;
	padding: 10px 15px;
	border:1px solid white;
	border-radius:20px;
	top: 50%;
	right: 50%;
	transform:translateX(50%)translateY(-50%);
	color: white;
	letter-spacing: 1px;
	font-weight: 700;
	opacity: 0;
	transition:all .3s ease;
	transition-delay:0s;
}

.projects-item a:hover:after{
	opacity: 1;
	transition-delay:.3s;
}

.projects-item .projects-img{
	display: block;
	padding: 90% 0 0 0;
	background-position: center top;
	background-size: auto 100%;
	transition: all .5s ease;
}

.projects-item .projects-text{
	display: block;
	width: 100%;
	position: absolute;
	padding: 15px 15px 0;
	bottom: 0;
	background-color: white;
	transition: all .5s ease;
}

.projects-item .projects-text .projects-title{
	font-size: 15px;
}

.projects-item .projects-text p{
	margin-bottom: 0;
}

.projects-item a:hover {
	background:#ef7d00;
}

.projects-item a:hover .projects-img{
	background-size: auto 110%;
	opacity: 0.3;
}

.projects-item a:hover .projects-text{
	transform:translateY(100%);
}

/*----------------------------  PROJECT SINGLE --------------------------------*/


.post-carousel-wrapper{
	padding: 0 90px;
}

.project-single-title{
	font-size: 24px;
}



@media (max-width: 1200px) {

	.post-carousel-wrapper{
		padding: 0;
	}

	.projects-item{
		padding-right: 15px;
		padding-left:15px;
		margin-bottom: 50px; 
	}

	.projects-item a:hover .projects-img{
		background-size: auto 100%;
		opacity: 0.5;
	}

	.projects-item a:hover .projects-text{
		transform:translateY(0);
	}

	.projects-item a:hover:after{
		transition-delay:0s;
	}

}





/*-----------  FOOTER   --------------*/









/*  COTIZAR */

.cotizar-home-wrapper{
	padding: 55px 0 70px;
	background-size: cover;
	background-position: center top;
}

.cotizar-button{
	padding: 15px 100px;
}














/*  FOOTER */

.footer-inner{
	padding: 35px 0 20px;
}

.footer-table table tbody tr td{
	vertical-align: top;
	font-family: 'Open sans';
	font-size: 14px;
	font-weight: 600;
}

.footer-table-icon{
	padding: 0 10px 15px 0;
}

.footer-power-logos{
	border-left: 1px solid #b5b5b5;
}

.footer-power-logos p{
	margin: 0 auto;
	width: 80%
}



.copy-utilities{
	float: right;
}

.copy-utilities li{
	text-decoration: none;
	padding-right: 15px;
	padding-left:15px; 
}

.copy-utilities li a{
	color: #555555;
}

.copy-utilities li a:hover{
	color: #222222;
	text-decoration: none;
}











@media (max-width: 768px) {
	.cotizar-button{
		padding: 15px 60px;
	}

	.footer-inner,.copy{
		text-align: center;
	}

	.footer-table{
		padding-top: 30px;
	}

	.footer-table table{
		margin:auto;
	}

	.footer-power-logos{
		border: none;
		padding-top:30px;
		padding-bottom: 30px;
	}

	.copy-utilities{
		display: none;
	}
}