@import url(https://fonts.googleapis.com/css?family=Open+Sans);

@font-face {
 	font-family: 'AllerRegular';
	src: local('Aller Regular'), url('../fonts/Aller_Rg.woff2') format('woff2'), url('../fonts/Aller_Rg.woff') format('woff'), url('../fonts/Aller_Rg.ttf') format('truetype');
}
@font-face {
 	font-family: 'AllerBold';
	src: local('Aller Regular'), url('../fonts/Aller_Rg.woff2') format('woff2'), url('../fonts/Aller_Rg.woff') format('woff'), url('../fonts/Aller_Rg.ttf') format('truetype');
}
@font-face {
 	font-family: 'AllerItalic';
	src: local('Aller Italic'), url('../fonts/Aller_It.woff2') format('woff2'), url('../fonts/Aller_It.woff') format('woff'), url('../fonts/Aller_It.ttf') format('truetype');
}
@font-face {
 	font-family: 'AllerLight';
	src: local('Aller Light'), url('../fonts/Aller_Lt.woff2') format('woff2'), url('../fonts/Aller_Lt.woff') format('woff'), url('../fonts/Aller_Lt.ttf') format('truetype');
}
@font-face {
 	font-family: 'AllerLightItalic';
  	src: local('Aller Light Italic'), url('../fonts/Aller_LtIt.woff2') format('woff2'), url('../fonts/Aller_LtIt.woff') format('woff'), url('../fonts/Aller_LtIt.ttf') format('truetype');
}
ul, ul li{
	margin: 0;
 	padding: 0;
 	list-style: none;
}
html,body{
	height: 100%;
}
body {
  color: #333;
  font-family: "Open Sans";
}
hr{
	width: 40px;
	height: 1px;
	margin:0 auto;
	border-bottom: 2px solid #ddd;
}
h1{
	font-family: "AllerBold";
	font-weight: bold;
	margin-top: 0;
}
h2{
	margin-top: 0;
	font-family: "AllerLight";
}
body.hide-scroll{
	overflow-y: hidden;
}
section{
	padding-top:30px;
	padding-bottom: 30px;
}
section h1{
 	font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
}
section h2{
	font-size: 18px;
    line-height: 32px;
    margin-top: 25px;
}
section.hero{
	padding-top: 0;
	padding-bottom: 0;
}
.container-fluid{
	padding-right: 30px;
	padding-left: 30px;
}
.hero{
	position: relative;
	background-color: #222;
	height: 100%;
	overflow: hidden;	
}
	.hero:before{
		top: -25%;
		bottom:0;
		/*background: url(../img/hero.jpg) no-repeat center 0;*/
		background: url(../img/bwhome.jpg) no-repeat center 0;
		background-size: cover;
	}
	.hero:before{
		position: absolute;
		content: "";
		left: 0;
		right: 0;
		z-index: 1;
		opacity: 0.1;
	}
	.page .hero{
		top:0;
		height: 65%;
	}
	.page .hero:before{
		background: url(../img/working-at-colpix-s.jpg) no-repeat center 0;
		background-size: cover;
	}
	.page.page-careers .hero:before{
		background: url(../img/bwcareers.jpg) no-repeat center 80px;
		background-size: cover;
		opacity: 0.2;
	}
	.page.page-work .hero:before{
		background: url(../img/bwwork.jpg) no-repeat 0 0;
		background-size: cover;
		opacity: 0.2;
	}
	.page.page-contact .hero{
		height: 55%;
	}
	.page.page-contact .hero:before{
		background-image: none;
	}
	
	.hero-title{
		padding:15px 25px;
		color: #fff;
		text-align: center;
		min-height: 100px;
		position: relative;
		top: 50%;
		transform: translateY(-50%);	
		z-index: 2;
	}
		.page .hero-title h1{
			text-transform: uppercase;
		}
		.hero h1,.hero h2{
			margin: 0;
			line-height: inherit;
			text-transform: none;
		}
		.hero h2{
			font-style: italic;
			text-transform: uppercase;
			font-size:12px;
		}
		.hero svg{
			margin:0 auto;
			width: 60%;
			max-width: 240px;
		}
		.home .hero-title h1{
			font-size: 43px;
		}
		.hero-title h1 span{
			display: block;
			font-size: 12px;
			font-weight: normal;
		}
		.hero-title h1 span:before{
			display: none;
		}
		


.logo{
	text-indent: -9999999999px;
	overflow: hidden;
	display: inline-block;
	width: 80px;
	height: 30px;
	background: url(../img/colpix-isologo-wh.svg) no-repeat 0 0;
	transition: background .5s ease;
}
.logo:hover,.logo.colored{
	background: url(../img/colpix-isologo.svg) no-repeat 0 0;
}

.menu-hamburger{
	float: right;
	cursor: pointer;
	margin-top: 5px;
}
	.menu-hamburguer .menu-icon{
		display: inline-block;
	    width: 25px;
	    margin-top: 3px;
	}
		.menu-hamburger .menu-icon .menu-icon-bar {
			width: 25px;
		    height: 3px;
		    margin-bottom:5px;
		    background-color: #fff;
		    transition: background-color .5s ease;
		 }
		 .menu-hamburger .menu-icon:hover .menu-icon-bar{
		 	background-color: #009de1;
		 }
		 .menu-hamburger[aria-expanded="true"] .menu-icon-bar{
		 	display: none;
		 }
		 .menu-hamburger[aria-expanded="true"] .menu-icon-close{
		 	display: block;
		 	font-size: 40px;
		    color: #fff;
		    margin-top: -18px;
		    transition: color .5s ease;
		 }
		 .menu-hamburger[aria-expanded="true"] .menu-icon-close:hover{
		 	color:#009de1;
		 }
		  .menu-hamburger[aria-expanded="false"] .menu-icon-close{
		 	display: none;
		 }

nav.navbar{
	position: absolute;
	z-index: 10;
 	margin: 0;
 	min-height: auto;
 	border-radius: 0;
 	border:0;
 	-webkit-transition: background-color 100ms linear ;
    -moz-transition: background-color 100ms linear ;
    -o-transition: background-color 100ms linear ;
    transition: background-color 100ms linear ;
 }
 nav.navbar.sticky {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  border-top: 0;
}
 .menubar{
 	padding: 30px 0;
 }
 .navbar.open-menu{
 	padding-bottom: 30px;
 	height: 100%;
 }
 .navbar.open-menu, .navbar.sticky{
 	background-color:#222
 }

 .menu .nav>li>a,.menu .nav>li>a:visited{
 	display: inline-block;
 	color: #fff;
 	font-size: 24px;
 	font-family: "AllerBold";
 	letter-spacing: -1px;
 	text-transform: uppercase;
 	transition: color .5s ease;
 	background-color: transparent;
 }
 .menu .nav>li>a:hover, .menu .nav>li>a:active{
 	color:#009de1;
 	background-color: transparent;
 }
 .menu li{
 	text-align: right;
 	padding-right: 30px;
 }

.menu .lang{
	margin-top: 30px;
	margin-right: 15px;
}
.menu .nav>li.lang>a{
	font-size: 14px;
	padding: 5px 8px;
}
 section.about{
 	background:#0b3f95;
 	color: #fff;
 }
.about p{
 	font-family: "AllerLightItalic";
 	text-align: center;
 	font-size: 20px;
 	line-height: 28px;
 }
 .about .carousel-inner{
 	margin-bottom: 25px;
 }
 .carousel-indicators{
 	position: relative;
 	margin: 0 auto;
 	bottom: inherit;
    left: 0;
    z-index: inherit;
 }
  .carousel-indicators li{
 	background-color: #2b60a3;
 	border:0;
 }
 .carousel-indicators li.active{
 	background-color: #e3e3e3;
 }
 .carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
section.work, section.weare, section.clients {
	text-align: center;
}
 section.clients, section.careers-offer, .home section.work{
 	background: #eaeaea;
 }
 .home section.clients{
 	background:transparent;
 }
 section.clients h1{
 	font-family: "AllerLight";
	font-size: 16px;
}
section.weare h2{
	margin-top: 0;
}
 section.tech, section.contact{
 	background-color: #f4f4f4;
 }
 section.tech ul, section.tech ul li{
 	margin: 0;
 	padding: 0;
 	list-style: none;
 	font-family: "Open Sans";
 	font-size: 14px;
 	line-height: 36px;
 }
 section button, section .button{
 	margin-top: 25px;
 }
 section.rrhh button, section.contact button, section.rrhh .button, section.contact .button{
 	margin-top: 0;
 }
 section.contact button, section.contact .button{
 	float: right;
 }
 section.lets-connect{
 	margin:0;
 	padding: 0;
 }
 .mega-link{
 	display: block;
 	padding-top:60px;
	padding-bottom: 60px;
 	text-decoration: none;
 	text-align: center;
 	color: #fff;
 	font-family: "AllerRegular";
 	font-weight: normal;
 	background-color: #222;
 	-webkit-transition: opacity .5s,background-color .5s;
    -moz-transition: opacity .5s,background-color .5s;
    -o-transition: opacity .5s,background-color .5s;
    transition: opacity .5s,background-color .5s;
 }
  .mega-link:hover,.mega-link:focus, .mega-link:active, .mega-link:visited{
  	text-decoration: none;
 	color: #fff;
  	background-color: #111;
  }
    .mega-link:hover em{
    	text-decoration: underline;
    }
 .mega-link em{
 	text-transform: uppercase;
 	display: block;
 	margin-top: 10px;
 	font-size: 24px;
 	font-style: normal;
 }
 button, .button, .button:active, .button:visited{
 	display: inline-block;
 	padding: 13px 0;
 	min-width: 180px;
 	text-decoration: none;
 	text-align: center;
 	color: #fff;
 	font-family: "AllerRegular";
 	font-weight: normal;
 	text-transform: uppercase;
 	background-color: #0b3f95;
 	border-radius: 4px;
 	border:0;
 	-webkit-transition: opacity .5s,background-color .5s;
    -moz-transition: opacity .5s,background-color .5s;
    -o-transition: opacity .5s,background-color .5s;
    transition: opacity .5s,background-color .5s;
 }
 button:hover, .button:hover, .button:focus{
 	text-decoration: none;
 	color: #fff;
 	background-color: #009de1;
 }
 section.rrhh, section.team{
 	text-align: center;
 }
section.rrhh h2{
	margin-top: 0;
}
 input[type="text"], textarea{
 	margin-bottom: 8px;
 	padding: 5px;
 	min-height: 45px;
 	border:0;
 	border-bottom:1px solid #ccc;
 	background-color: #f4f4f4;
 	text-transform: uppercase;
 	color: #5b5b5b;
 	font-family: "AllerRegular";
 	font-size: 16px;
 	min-width: 100%;
 	outline: none;
 }
textarea{
 	min-height: 150px;
 }
  input[type="text"]:hover, textarea:hover{
 	border-color: #888;
 	-webkit-transition: opacity .5s,border-color .5s;
    -moz-transition: opacity .5s,border-color .5s;
    -o-transition: opacity .5s,border-color .5s;
    transition: opacity .5s,border-color .5s;
 }
 input[type="text"]:focus, textarea:focus{
 	border-color: #666;
 	-webkit-transition: opacity .5s,border-color .5s;
    -moz-transition: opacity .5s,border-color .5s;
    -o-transition: opacity .5s,border-color .5s;
    transition: opacity .5s,border-color .5s;
 }
.map{
	margin-top: 10%;
}
.hero .contact-card{
	margin-top: 10px;
}
.hero .contact-card a:first-child{
	margin-right: 10px;
}

footer .contact-card{
	color: #fff;
	text-align: left;
	background-color: #0b3f95;
}
.contact-card a{
	color: #fff;
}
footer{
 	font-family: "AllerRegular";
 }
 .social-media{
 	float: none;
 }
.social-media li, .social-media a{
 	display: inline-block;
 	overflow: hidden;
 	width: 20px;
 	height: 24px;
 	font-size: 20px;
 	color: #f1f1f1;
 	-webkit-transition: opacity .5s,color .5s;
    -moz-transition: opacity .5s,color .5s;
    -o-transition: opacity .5s,color .5s;
    transition: opacity .5s,color .5s;
}
.social-media a:hover{
	color: #009de1;
}
.client-list .thumbnail{
	background: transparent none;
	border:0;
}
.client-list .thumbnail img{
	height: 45px;
}
.panel-heading h4{
	margin-top: 0;
	margin-bottom: 0;
}
.work-list{
	overflow:hidden;
}
.work-list img{
	object-fit: contain;
}
.work-list .col-xs-12, 
.work-list .col-sm-6{
	padding: 0;
}
.work-list-item .work-list-item-overlay{
	visibility:hidden;
	opacity: 0;
}
.work-list-item-overlay{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 0 0 30px;
    color: #fff;
    text-align: left;  
    background: rgba(51,51,51,.7);
}
.work-list-item-name{
	font-size: 1.5vw;
	text-transform: uppercase;
}
.work-list-item-description span{
	display: block;
    margin-top: 15px;
    font-weight: 400;
    font-size: 18px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all .5s;
    transition-property: transform,opacity;
    text-transform: uppercase;
}
.services{
	text-align: center;
	background-color: #f9f9f9;
}
.services h4{
	font-weight: bold;
}
.services h4:before{
	display: block;
	color: #ccc;
	font-size: 260%;
	margin-bottom: 10px;
	border:0;
}
.service-item{
	border-bottom:1px solid #ddd;
	padding: 20px 0;
}
.services div[class^="col"]:last-child .service-item{
	border-bottom: 0;
}
.services .button{
	margin-top: 60px;
}
.careers-offer ul li{
	margin-left: 20px;
}
.careers-offer ul li{
	list-style-position: inside;
	list-style: disc;
	vertical-align: bottom;
}
section.team{
	font-family: "AllerRegular";
}
.team p{
	padding: 20px 0;
	border-bottom: 1px solid #ccc;
}
.team div[class^="col"]:last-child p{
	border:0;
}
.team-world span,.team-since span, .team-projects em,.team-expert span{
	font-weight: bold;
}
.team-world span,.team-expert span,.team-since span, .team-projects em{
	display: block;
}
.team-since span, .team-projects em{
	font-size: 32px;
	font-style: normal;
}

@media screen and (min-width: 767px) {
	.container-fluid{
		max-width: 1200px;
	}
	section{
		padding-top:80px;
		padding-bottom: 80px;
	}
	section h1{
		font-size: 24px;
		margin-bottom: 30px;
	}
	section h2{
		font-size: 20px;
	}
	section.hero h1{
		margin-bottom: 0;
	}
	.hero-title{
    	margin: 0 auto;
	}
		.home .hero-title h1, .hero-title h1{
			font-size: 28px;
		}
		.hero-title h2{
			font-size: 18px;
		}
		
		
		.hero-title h1 span{
			display: inline;
			font-size: inherit;
			font-weight: inherit;
		}
		.hero-title h1 span:before{
			content: " • ";
			display: inline-block;
		}
		
	.about .carousel-inner{
		max-width: 460px;
		margin: 0 auto 20px;
	}	
	.about p{
	 	font-size: 22px;
 		line-height: 40px;
	 }
	 .social-media{
	 	float: right;
		margin: 0 auto;
		width: 120px;
		text-align: center;
	}
	 .map{
	 	margin-top: -10%;
	 }
	.copy{
		text-align: left;
	}
	input[type="text"]{
	 	min-height: 60px;
 	}
 	textarea{
	 	min-height: 180px;
 	}
	section.tech{
 		background:#f4f4f4 url(../img/bgtech.gif) repeat-y right -40px;
 	}
 	section.team{
 		overflow: hidden;
 		position: relative;
 		background: url(../img/geometry-side.svg) 110% -2% no-repeat;
 	}
 	section.team:before{
 		content: "";
 		left:-18%;
 		right: 0;
 		top: -25%;
 		bottom: 0;
 		position: absolute;
 		width: 50%;
 		background: url(../img/geometry-side.svg) 25% -2% no-repeat transparent;
 		-moz-transform:scale(0.8)  rotate(235deg);
        -webkit-transform: scale(0.8) rotate(235deg);
        transform:  scale(0.8) rotate(235deg);
 	}
 	section.contact{
 		overflow: hidden;
 		position: relative;
 		background: url(../img/geometry-side.svg) 110% -2% no-repeat, #f4f4f4;
 	}
 	section.contact:before{
 		content: "";
 		left:-10%;
 		right: 0;
 		top: -45%;
 		bottom: 0;
 		position: absolute;
 		width: 50%;
 		background: url(../img/geometry-side.svg) left 0 no-repeat transparent;
 		-moz-transform:rotate(230deg);
        -webkit-transform:rotate(230deg);
        transform:rotate(230deg);
 	}
 	.work-list-item .work-list-item-overlay{
		transition: background-color .3s ease,opacity .3s ease,visibility .3s ease;
	}
	.work-list-item:hover .work-list-item-overlay{
		visibility:visible;
		opacity: 1;
	}
	.services h4:before{
		display: block;
		padding: 10px 0;
	}
	.service-item{
		border-bottom: 0;
		padding: 0 20px;
	}
	.team p{
		padding:0;
		border-bottom: 0;
		border-right: 1px solid #ccc;
	}

}

@media screen and (max-width: 767px) and (orientation:landscape) {
	 .menu .nav{
	 	text-align: right;
	 }
	 .menu .nav>li{
 		display: inline-block;

 	}
}