﻿/*
-----  COLORS  -----
GREEN		#18a096;
GREY		#393939:
--------------------
*/
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,800,900');
@font-face {
    font-family: "icos";
    src: url("fonts/fontawesome-webfont.ttf");
}




																	/*-----------*/
																	/*   BASICS  */
																	/*-----------*/
html{
}
body{
    font-family: 'Open Sans', sans-serif;
	margin:0;
    color: #393939;
	font-size:14px;
	line-height:28px;
	font-weight:500;
}
em{
	font-style:italic;
}
strong{
	font-weight:700;
}
mark{
	color: #18a096;
	font-weight:600;
	background:none;
}
a{
	color: #18a096;
	transition:all cubic-bezier(0.2, 1, 0.2, 1) 0.5s;
}
a:hover{
	color: #393939;
}
a span{
	display:none;
}
ul{
	font-size:0;
}
ul li{
	font-size:1em;
}

																	/*-----------*/
																	/*   HEADER  */
																	/*-----------*/
header{
	background-color: white;
	position: fixed;
	height: 70px;
	width: 100%;
	z-index: 1;
}
header a{
	display: inline-block;
}

/**** LOGO ****/
header .logo{
	position: absolute;
	left: 0;
	top: 0;
}
header .logo div{
	display: inline-block;
}
header .logo .box{
	background: url('images/header_logo-mensialis.png') no-repeat center #393939;
	width: 70px;
	height: 70px;
	float: left;
}
header .logo .txt{
	transition:all cubic-bezier(0.2, 1, 0.2, 1) 0.5s;
    font-family: 'Quicksand', sans-serif;
	color: #393939;
	text-transform: uppercase;
	line-height: 70px;
	font-size: 20px;
	letter-spacing: 2px;
	padding: 0 20px;
}
header .logo .txt::before, header .logo .txt::after{
	font-family: "icos";
	content: "\f111";
	display: block;
	float: left;
	padding: 0 10px;
	color: #18a096;
	font-size: 4px;
}
header .logo .txt::after{
	float: right;
}
header .logo:hover .txt{
	color: #18a096;
}



/**** NAV PATH****/
.navPath{
	position: absolute;
	right: 70px;
}
.navPath h2{
	display: inline-block;
    font-family: 'Quicksand', sans-serif;
	color: #393939;
	text-transform: uppercase;
	line-height: 70px;
	font-size: 14px;
	font-weight: 800;
}
.navPath h2 a{color: #393939; padding: 0 40px;}
.navPath ul{float: right;}
.navPath ul li{
    font-family: 'Quicksand', sans-serif;
	display: inline-block;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 70px;
	font-weight: 800;
	text-transform: uppercase;
}
.navPath ul li a{
	display: block;
	padding: 0 40px;
}
.navPath h2 a.selected, .navPath ul li a.selected{
	background-color: #f2f2f2;
}

/**** MENU SWITCHER ****/

.menuSwitcher{
	display: block;
	position: absolute;
	right: 0;
	background-color: #18a096;
	width: 70px;
	height: 70px;
	float: right;
}
.menuSwitcher:hover{
	cursor: pointer;
}

/* #toggle menu styles*/
#toggle {
  display: block;
  width:20px;
  height:22px;
  padding:32px 0px 16px 26px;
}
#toggle span:after,
#toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
}
#toggle span:after{
  top: 5px;
}
#toggle span {
  position: relative;
  display: block;
}
#toggle span,
#toggle span:after,
#toggle span:before {
  width: 100%;
  height: 3px;
  background-color: #fff;
  backface-visibility: hidden;
  transition: all 0.3s;
}

/* on activation */
#toggle.on span {
  background-color: transparent;
}
#toggle.on span:before {
  transform: rotate(45deg) translate(4px, 3px);
  -webkit-transform: rotate(45deg) translate(4px, 3px);
}
#toggle.on span:after {
  transform: rotate(-45deg) translate(4px, -3px);
  -webkit-transform: rotate(-45deg) translate(4px, -3px);
}

																	/*-----------*/
																	/*    MENU   */
																	/*-----------*/
.menuOverlay{
	transition:all cubic-bezier(0.2, 1, 0.2, 1) 0.5s;
	display: block;
	position: fixed;	
	background-color: rgba(24,160,150,0);
	top: 70px;
	bottom: 70px;
	left: 100%;
	right: 70px;
	z-index: 200;
}
.menuOverlay.on{
	background-color: rgba(24,160,150,0.95);
	top: 70px;
	left: 70px;
}
.menuOverlay.on ul{
	display: flex;
	height: 100%;
}
.menuOverlay li{
	position: relative;
	transition:all cubic-bezier(0.2, 1, 0.2, 1) 0.5s;
	display: block;
	width: 18%;
	padding: 0 1%;
	height: 100%;
	border-left: 2px solid white;
}
.menuOverlay li a{
	display: inline-block;
	position: absolute;
	color: white;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	overflow: hidden;
	width: 90%;
	bottom: 2%;
}
.menuOverlay li strong{
	transition:all cubic-bezier(0.2, 1, 0.2, 1) 0.5s;
	position: absolute;
	display: block;
	opacity: 0;
	text-transform: uppercase;
	letter-spacing: 0;
	font-size: 30px;
	line-height: 30px;
	font-weight: 100;
	color: #afafaf;
	padding-right: 10%;
	bottom: 0%;
}
.menuOverlay li:hover{
	background-color: #393939;
	cursor: pointer;
}
.menuOverlay li:hover a{
	color: #18a096;
	letter-spacing: 2px;
}
.menuOverlay li:hover strong{
	opacity: 100;
	bottom: 10%;
}

																	/*-----------*/
																	/*  CONTENT  */
																	/*-----------*/
.content{
	padding: 70px;
}
.content article{
	background-color: #f2f2f2;
	display: block;
	padding: 100px;
	min-height: calc(100vh - 340px);
	min-height: -o-calc(100vh - 340px);
	min-height: -moz-calc(100vh - 340px);
	min-height: -webkit-calc(100vh - 340px);
}
.content .content_box{
	width: 50%;
}
.content h1,.content h3{
	font-size: 24px;
	line-height: 40px;
}
.content h2, .content h4{
	font-size: 48px;
	line-height: 54px;
}
.content h5{
	padding: 30px 0 0;
	font-size: 20px;
	line-height: 28px;
	font-weight: 800;
}
.content p{
	padding: 20px 0 0 0;
	font-size: 18px;
	line-height: 28px;
}
.content ul li{
	position: relative;
	font-size: 18px;
	margin: 15px 0 0 40px;
	padding-left: 20px;
}
.content ul li+li{
	margin-top: 10px;
}
.content ul li::before{
	font-family: "icos";
	content: "\f105";
	display: block;
	color: #393939;
	position: absolute;
	top: 0;
	left: 0;
}
/* BIG LINKS */
.content .biglink{
    font-family: 'Quicksand', sans-serif;
	position: relative;
	transition:all cubic-bezier(0.2, 1, 0.2, 1) 0.5s;
	display: inline-block;
	margin: 40px 0 0;
	padding: 10px 30px;
	font-size: 18px;
	line-height: 28px;
	border: 1px solid #909090;
	text-transform: uppercase;
}
.content .biglink:hover{
	background: white;
	padding: 10px 30px 10px 40px;
}
.content .biglink::before{
	transition:all cubic-bezier(0.2, 1, 0.2, 1) 0.5s;
	font-family: "icos";
	content: "\f061";
	display: block;
	position: absolute;
	left: 20px;
	font-size: 12px;
	color: white;
	transform: scaleX(0);
}
.content .biglink:hover::before{
	color: #18a096;
	margin-right: 10px;
	transform: scaleX(1);
}

/* NEXT ARROW */
.content .next{
	display: inline-block;
	position: relative;
	padding: 40px 40px 40px 20px;
	z-index: 0;
}
.content .next::before{
	position: absolute;
	transition:all cubic-bezier(0.2, 1, 0.2, 1) 0.5s;
	display: block;
	font-family: "icos";
	content: "\f063";
	font-size: 18px;
	color: #393939;
	top: 40px;
}
.content .next:hover::before{
	top: 50px;
	color: #18a096;
}
/*		----------	HOME ----------		*/

#home article aside {
	position: fixed;
	display: block;
	background: url(../images/homepage_logo-mensialis.png) no-repeat center;
	width: 462px;
	height: 318px;
	bottom: 20%;
	right: 15%;
}
#home article aside a{
	position: absolute;
	text-transform: uppercase;
	font-size: 18px;
	line-height: 40px;
	color: #393939;
	text-align: center;
}
#home article aside a.before::before{
	transition:all ease-in 0.1s;
	font-family: "icos";
	content: "\f111";
	display: block;
	color: #18a096;
}
#home article aside a.after::after{
	font-family: "icos";
	content: "\f111";
	display: block;
	color: #18a096;
}
#home article aside a:hover{color: #18a096;}
/*#home article aside a:hover::after, #home article aside a:hover::before{font-size: 22px;}*/
#home article aside #audit{top:214px; left: -10px;}
#home article aside #cloud{top:30px; left: 82px;}
#home article aside #managed{top:-38px; left: 287px;}
#home article aside #infra{top:266px; left: 355px;}


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

#services .graphics{
	transition:all cubic-bezier(0.2, 1, 0.2, 1) 1s;
	/*transition:all ease-in 2s;*/
	position: fixed;
	display: block;
	bottom: 0;
	right: 0;
	transform: scale(0.5);
	transform: translateY(100px);
	transform-origin: right bottom;
	opacity: 0;
	z-index: 100;
}
#services .graphics.under{
	bottom: 70px;
	right: 70px;
	z-index: 0;
}
#services #intro .graphics.under{ right: 280px; bottom:200px;}

#services .graphics.activ{ transform: scale(1); opacity: 1;}


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

#about article{
	background: url('../images/about_background.jpg') #f2f2f2 no-repeat right;
	background-size: contain;
	background-attachment: scroll;
}


/*		----------	PARNTERS ----------		*/

#partners article aside{
	position: absolute;
	display: block;
	width: 462px;
	top: 18%;
	right: 15%;
}
#partners article aside ul{
	text-align: center;
}
#partners article aside ul li{
	display: inline-block;
}
#partners article aside ul li img{
	display: inline-block;
	margin: 20px 0;
}
#partners article aside ul li::before{
	content: none;
}

/*		----------	CONTACT ----------		*/

#contact article .content_box{
	width: 100%;
	text-align: center;
}
#contact article #Gmap{
	margin: 40px 0;
	height: 300px;
	border: 25px solid white;
}
#contact article ul{
	display: flex;
}
#contact article ul li{
	margin: 0;
	display: block;
	text-align: center;
	width: 33%;
}
#contact article ul li strong{
	display: block;
}
#contact article ul li::before{
	content: none;
}


/*		----------	LEGAL ----------		*/

#legal article{
	background: url('../images/about_background.jpg') #f2f2f2 no-repeat right;
	background-size: contain;
	background-attachment: fixed;
}
																	/*-----------*/
																	/*   FOOTER  */
																	/*-----------*/

footer{
    font-family: 'Open Sans', sans-serif;
	background-color: #fff;
	position:fixed;
	height:70px;
	width:100%;
	bottom:0;
	text-align: center;
	z-index: 2;
}
footer p{
	text-transform: uppercase;
	letter-spacing:1px;
	font-size: 12px;
	line-height:70px;
	font-weight: 600;
	z-index: 200;
}
footer em{
	display: inline-block;
	color: #18a096;
	font-weight: 800;
	padding: 0 5px;
}
footer p a{
	color: #393939;
}
footer p a:hover{
	color: #18a096;
}

																	/*---------------*/
																	/* MEDIA QUERIES */
																	/*---------------*/
@media (max-width:1480px){
	.menuOverlay li strong{
		font-size: 24px;
	}
	.content .content_box{
		width: 100%;
	}
	#home .content_box{
		width: 100%;
	}
	#home article aside {
		position: relative;
		margin: 80px auto 0;
		right: auto;
		bottom: auto;
	}
	#services #intro .graphics.under{
		bottom: 140px;
		right: 140px;
	}
	#services .graphics{display: none}
	#about article{background-size: cover;}
	
	#partners article aside{position: relative; top: 0; left: 0; width: 100%;}
	#partners article aside ul{margin-top: 40px; }
	#partners article aside ul li{display: inline-block; text-align: left; margin-left: 10px;margin-right: 10px; padding-left: 0;}
}

@media (max-width:1260px){
	.navPath h2 a, .navPath ul li a{padding: 0 20px;}
	#about article{background-attachment: fixed}
	.menuOverlay ul{
		flex-direction: column;
	}
	.menuOverlay ul li{
		text-align: center;
		width: 100%;
		padding: 0;
		border-left: none;
		border-bottom: 2px solid white;
		display: block;
	}
	.menuOverlay ul li a{
		position: relative;
		bottom: auto;
		width: auto;
		display: block;
		padding: 0;
		line-height:  calc((100vh - 140px )/ 5);
	}
	.menuOverlay ul li strong{
		display: none !important;			
	}
}

@media (max-width:1023px){
	.navPath ul{display: none;}
	.navPath h2 a.selected{background-color: transparent;}
	.content article{padding: 40px;}
	#home article aside {display: none;}
	#about article {background:#f2f2f2; }
	#contact article ul{display: block;}
	#contact article ul li{width: 100%;margin-bottom: 30px;padding-left: 0}
}


@media (max-width:800px){
	footer p{font-size: 0;}
	footer p a+em+a{display: block; position: absolute; font-size: 12px; bottom: 0; width: 100%; text-align:center;}
}

@media (max-width:550px){
	header{
		-webkit-box-shadow: 0px 4px 5px 0px rgba(100,100,100,0.25);
		-moz-box-shadow: 0px 4px 5px 0px rgba(100,100,100,0.25);
		box-shadow: 0px 4px 5px 0px rgba(100,100,100,0.25);
	}
	header .logo .box{background-color: white;}
	header .logo .txt{padding: 0;}
	.navPath{display: none;}
	.menuOverlay{right: 0;bottom: 0;}
	.menuOverlay.on{left: 0;}
	.menuOverlay.on ul{
		background-color: transparent;
	}
	.menuOverlay.on ul li a{
		line-height:  calc((100vh - 90px )/ 5);
	}
	.content{padding: 70px 0 0;}
	.content article{padding: 20px 20px 40px;}
	.content h1, .content h3{letter-spacing: 1px; font-size: 20px;line-height:24px; text-transform: uppercase; padding: 20px 0;}
	.content h2, .content h4{font-size: 24px;line-height:36px; font-weight: 700;}
	.content ul li{margin-left: 20px;}
	#contact article ul li{padding-left: 0;}
	footer{display: none;}
}
@media (max-height:550px){
	.menuOverlay{bottom: auto;}
	.menuOverlay ul li a{height:calc((100vh - 70px )/ 5) }
	footer{display: none;}
}

