@charset "UTF-8";

/**//* RESET */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav {
	margin-top: 0.3em;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

/**//* MAIN ELEMENTS */

body {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: lighter;
	color:#d3cfca;
	background-color: #181A1B;
	position: relative;
	z-index: 0;
}

#contact_container {
	max-width: 960px;
	margin: 0 auto;
	/*position: relative;*/
}

header, section, footer {
	max-width: 960px;
	margin: 0 auto;
	padding: 0.5em 3em;
	//transition: max-width 0.5s;
}

#contact_container:after, header:after { /* fix height due to floating */
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

#header_container {
	position: relative;
	z-index: 11;
	background-color:#004750;
	width:100%;
	height: 4em;
	/* fix painting issue in iOS */
	transform: translateZ(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
	-o-transform: translatez(0);
	-webkit-transform: translateZ(0);
}

#header_container.sticky {
	position:fixed;
	left:0;
	top:0;
	transition: height 0.5s ease-in-out;
}

#language {
	float: left;
	padding: 0.2em 2em 0.2em 0.1em;
}
#GDPR {
	float: left;
	padding: 0.5em 0.1em;
	font-size: 75%;
}
#contact_mail
{
	float: right;
	margin-right: 1em;
	padding: 0.2em 0.1em;
}
#contact_phone {
	float: right;
	padding: 0.2em 0.1em;
}

#logo {
	width: 100%;
	max-width: 9em; /* 100% */
	height: 3em; /* 33% */
	margin: 0;
	transition: max-width 0.5s, height 0.5s, margin 0.5s;
	float: left;
}
#logo a {
	display: block;
	clear: both;
	background-image: url('content/images/Agedo_Logo_invers.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	height: 100%;
	margin-top: 0;
	transition: width 0.5s, height 0.5s, margin-top 0.5s;
	float: left;
}

nav {
	font-family: Frutiger Linotype, Frutiger, Verdana, Geneva, sans-serif;
	float: left;
}

#socialmedia {
	float: right;
	margin-top: 0.33em;
	opacity:1;
	transition: opacity 1s 1s;
}
#socialmedia a {
	display: block;
	width: 32px;
	height: 32px;
	float: left;
	text-indent: 100%; /* send text off-screen */
	white-space: nowrap; /* because only the first line is indented */
	overflow: hidden;
	outline: none;
	margin-left: 1em;
}
#socialmedia a:first-child {
	margin-left: 0;
}
#socialmedia #twitter {
	background-image: url('content/images/twitter_w.png');
	background-position: center;
	background-size: 100%;
}
#socialmedia #pinterest {
	background-image: url('content/images/pinterest_w.png');
	background-position: center;
	background-size: 100%;
}

#content {
	position: relative;
	z-index: 1;
	background-color: #181A1B;
}

#footer_container {
	position: relative;
	z-index: -1;
	height: 12em;
	width:100%;
	background-color:#004750;
}

footer {
	position: fixed;
	z-index: -1;
	bottom: 1em;
	left: 0;
	right: 0;
	text-align: center;
}

footer section {
	padding-bottom: 1em;
}

/**//* Header Links + NAVIGATION */

header a, header a:visited {
	color: #AAAAAA;
	text-align: right;
}

header a:hover, .language a:hover {
	color:#4296B4;
}

nav > a {
	display: none;
}
nav li {
	position: relative;
}
nav > ul
{
	height: 3.75em;
}
nav > ul > li
{
	height: 100%;
	float: left;
	padding-left: 2em;
}
nav ul li a {
	color: #FFFFFF;
	display: block;
	padding: 0.75em 1.5em 0.5em 1.5em;
	font-size: 1em;
	line-height:0.75em;
	text-decoration: none;
	text-align: center;
}
nav ul li a:hover, nav ul li a:active {
	background-color: #4296B4;
	color: #FFFFFF;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}

nav ul li .current {
	color:#FFFFFF;
	
	border: 1px solid #4296B4; /* TBD */
	margin:-1px;
	
	-moz-border-radius: 3px; /* FF1-3.6 */
	-webkit-border-radius: 3px; /* Saf3-4, iOS 1-3.2, Android <1.6 */
	border-radius: 3px; /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
	/* useful if you don't want a bg color from leaking outside the border: */
	-moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
}

.menu-icon {
	display: none; /* block */
	/* width: 1em; */
	height: 1em;
	position: relative;
	padding-left: 1.25em;
}

.menu-icon:before {
	content: "";
	position: absolute;
	top: 0.25em;
	left: 0.25em;
	width: 1em;
	height: 0.125em;
	border-top: 0.375em double #FFF;
	border-bottom: 0.125em solid #FFF;
}

/* offset anchor to set relative to sticky menu */
.sticky .anchor {
    display: block;
    position: relative;
    top: -3em;
    visibility: hidden;
}

/**//* BIG */

#header_container.big  {
	height: 20em;
	transition: height 0.5s;
}

#header_container.big header {
	max-width: 36em; /* width of logo etc. */
	transition: max-width 0.5s;
}

#header_container.big #logo {
	max-width: 100%;
	height: 12em;
}

#header_container.big #logo a {
	background-image: url('content/images/Agedo_Development.png');
	margin-top: 1em;
}

#slogan {
	display: none;
	clear: both;
	font-size: 1.3em;
	color: #FFFFFF;
	padding-top: 0.75em;
	text-align: center;
}

@media screen and (min-width: 650px) { /* Center Nav if .big but not Mobile Menu */
	.big nav {
		margin-top: 1em;
		float: none;
		text-align:center;
	}
	.big nav ul {
		display: inline-block;
	}
	.big nav ul li {
		display: inline;
		float: none;
		padding: 0;
	}

	.big nav li a {
		float: left;
	}
}

.big #socialmedia {
	display: none;
}

#content.big {
	padding-top: 0;
}

/**//* QuoteParallax */
.quotebox {
	overflow: hidden;
	position: relative;
	height: 23em;
}
#content .quotebox p {
	line-height: 1.2em;
}
#content .quotebox br {
	margin-bottom: 0;
}
.quoteparallax {
	background-color: #4296B4;
	background-position: center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 200%;
	top:0;
	left:0;
	z-index: -1;
	/* fix painting issue in iOS */
	transform: translateZ(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
	-o-transform: translatez(0);
	-webkit-transform: translateZ(0);
}
#content .quote {
	box-sizing: border-box;
	min-width: 13em;
	width: 50%;
	padding: 0.5em 1em;
	margin-top: 10em;
	font-size: 130%; /* influencing margin-top! */
	font-variant: small-caps;
	color: #FFFFFF;
	text-shadow: 0.1em 0.1em 1em #000000;
	background-color: #004750;
	background-color: rgba(0,79,90,0.5);
}

/**//* CONTENT & TEXT */

/* main grünblau #004750 */
/* hell-grünblau #D0D4D5 */
/* kontrast hellblau #4296B4 */
/* hell-hellblau #D3E0E7 */
/* highlight rot #B62B00 */
/* link blau #0022B6 */
/* link hellblau #00CFE9 */
/* grün #00A93D */
/* gelb #E9C417 */
.whitebg {
		background-color: #181A1B;
}
.lightgreenbg {
	background-color:#313537;
}
.lightbluebg {
	background-color:#2B2F31;
}

#contact_container, #contact_container a {
	font-family: Frutiger Linotype, Frutiger, Verdana, Geneva, sans-serif;
	color: #cfcbc4;
}

#contact_container a:hover {
	color: #4296B4;
}

hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0,79,90,0), rgba(0,79,90,1), rgba(0,79,90,0));
	margin: 2em 0;
}

#content p {
	/* line-height: 1.5em; /**/
	line-height: 1.7;
	letter-spacing: 0.03em;
}

#content p + p {
	margin-top: 1.8em;
}

#content p br {
	display: block;
	content: "";
	margin-bottom: 1.5em;
}

#content p + img {
	margin-top: 4em;
	margin-bottom: 4em;
}

h1 {
	font-size:180%;
	font-weight: lighter;
	margin-top:3em;
	margin-bottom:2em;
}

header h1 {
	margin: 0;
}

footer h1 {
	margin-top:0.5em;
	margin-bottom:0.5em;
}

h2 {
	font-size: 150%;
	margin-top:3em;
	margin-bottom:2em;
}

h3 {
	font-size: 130%;
	font-weight: bolder;
	margin-bottom:0.25em;
}

h4 {
	font-weight: bolder;
	margin-bottom:0.25em;
}

#content .columns > img:first-child {
	margin-top:10em; /* align img with text if no title */
}

small {
	/* font-size: 87%; */
}

#testifyer h3 {
	font-size: 100%;
	margin-top: 1em;
	padding: 0 1em;
}

#testifyer p {
	font-size: 100%;
	margin-bottom: 1em;
	padding: 0 1em;
}

blockquote {
	/* font-size: 87%; */
	font-style: italic;
	width: 80%;
	margin: 1em auto;
}

blockquote:before {
	content: "«";
}

blockquote:after {
	content: "»";
}

a {
	color:#5fa4ff;
}

a:hover {
	color:#4296B4;
}

a:visited {
	color:#cfcbc4;
}

#content ul {
	margin: 1em 0;
}

#content ul li {
	display: block;
	position: relative;
	list-style: none;
	line-height: 1.7em;
	background-image: url('content/images/Agedo_Bullet_Web.png');
	background-position: 0 0.42em;
	background-size: auto 0.66em;
	background-repeat: no-repeat;
	padding-left: 1.5em;
}

#content ul.tile li {
	margin-top: 3em;
}

#content ul.tile li::after {
	content:"";
	position: absolute;
	z-index: 0;
	top: -0.5em;
	left: -1em;
	width: 95%;
	height: 100%;
	border-radius: 6px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
	padding: 0.6em 1em 0.5em 1.5em;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

#content ul.tile li:hover::after {
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}

.columns {
	box-sizing: border-box;
	padding-bottom: 3em;
}

.columns.double {
	float:left;
	width: 50%;
}
.columns.double.left {
	padding-right: 2%;
}
.columns.double.right {
	padding-left: 2%;
}

.columns.triple {
	float:left;
	width: 33%;

}
.columns.triple.left {
	padding-right: 2%;
}
.columns.triple.middle {
	padding-right: 2%;
	padding-left: 2%;
}
.columns.triple.right {
	padding-left: 2%;
}

section:after, .columns.double.right + p:before, .columns.triple.right + p:before { /* fix columns height due to floating */
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

section {
	padding-bottom: 5em;
}

#content img {
	display: block;
	width: 80%;
	height: auto;
	margin: 0 auto;
}

#content img.portrait {
	width: 128px;
	margin-right: 1em;
	float: left;
}

#content .columns img {
	width: 100%;
}

.ico p {
	position:relative;
}

.ico p:after {
	content: "";
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.1;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

#inspiration p:after {
	background-image: url('content/icons/ico_inspiration.png');
}
#iteration p:after {
	background-image: url('content/icons/ico_iteration.png');
}
#validation p:after {
	background-image: url('content/icons/ico_validation.png');
}
#requirements p:after {
	background-image: url('content/icons/ico_requirements.png');
}
#agile p:after {
	background-image: url('content/icons/ico_agile.png');
}
#pm p:after {
	background-image: url('content/icons/ico_pm.png');
}
#ux p:after {
	background-image: url('content/icons/ico_ux.png');
}
#marketing p:after {
	background-image: url('content/icons/ico_marketing.png');
}
#social p:after {
	background-image: url('content/icons/ico_social.png');
}

footer, footer a {
	font-family: Frutiger Linotype, Frutiger, Verdana, Geneva, sans-serif;
	color: #D0D4D5;
}

footer a:hover {
	color: #00CFE9;
}

address {
	font-style: normal;
	margin-bottom: 1em;
}

/* Marquee *//*================================*//* Marquee */

#clients {
	background-color:#FFFFFF;
}

#clients h4 {
	margin: 1em 0 0.5em 3em;
	font-weight: lighter;
	color: #D0D4D5;
}

#content #marquee {
	position: relative;
	height: 144px;
	
	overflow: hidden;
	overflow-x: marquee-line;
	marquee-direction: forward;
	marquee-style: scroll;
	marquee-speed: normal;
	marquee-play-count: 5;
	
	white-space: nowrap;
	
	margin-bottom: 0.5em;
}

#content #marquee a {
	float: left;
	position: relative;
	border: none;
}

#content #marquee img {
	display: inline-block;
	width: auto;
	border: none;
	margin-right: 23px; /* also adjust in marquee.php L:*/
}


/* Responsive *//*================================*//* Responsive */
@media screen and (min-width: 1056px) { /* fix for IE to center footer correctly // 960 (max-width) + 2 * 48 (padding) */
	footer {
		width: 100%;
	}
}

@media screen and (max-width: 800px) {
	#socialmedia {
		visibility: hidden;
		opacity:0;
		transition: opacity 1s 1s; /* not working? */
	}
	.columns.double {
		width: 100%;
	}
	.columns.double.left, .columns.double.right {
		padding: 0 0 1em 0;
	}
	.columns.triple {
		font-size: 85%;
	}
	#socialmedia {
		display:none;
	}
	nav ul li a {
	    padding: 0.75em 0.5em 0.5em 0.5em;
	}
}

@media screen and (max-width: 650px) {
	
	/**//* Responsive MAIN ELEMENTS */
	
	#site {
		width: auto;
	}
	
	header, section, footer {
		padding: 0.5em 1em;
	}
	
	#language {
		margin-left: 0;
	}
	
	#logo {
		max-width: 6em;
		height: 2em;
	}
	
	#header_container.big #logo {
		width: 100%;
	}
	
	#header_container {
		height: 3em; /* fixed because of menu */
	}
	
	#footer_container {
		height: 16em;
	}
	
	footer address > span {
		display: block;
	}
	
	footer .pipe {
		display: none;
	}
	
	/**//* Responsive NAVIGATION */
	
	#nav {
		position: relative;
	}
	
	nav {
		float: right;
		padding-left: 0.75em;
		padding-right: 0.75em;
		background-color: #004750;
	}
	
	nav:not( :target ) > a:first-of-type, nav:target > a:last-of-type {
		display: block;
		float: right;
		margin-right: 0.25em;
		z-index: 42;
	}
	
	nav > ul {
		height: auto;
		display: none;
		margin-top: 1em;
		padding-top: 0.5em;
		padding-bottom: 0.5em;
		position: relative;
		z-index: 23;
	}
	nav:target > ul { /* make dd-menu visible on click */
		display: block;
	}
	
	nav a:first-child:hover.menu-icon ~ ul, nav ul:hover { /* make dd-menu visible on hover */
		display: block;
	}
	
	nav > ul > li {
		width: 100%;
		float: none;
		padding: 0;
	}
	
	.big nav {
		margin-top: 1em;
	}
	
	/**//* Responsive CONTENT & TEXT */
	
	#content img {
		width: 100%
	}
	
	#content .columns > img:first-child {
		margin-top:3em;
		margin-bottom: 3em;
	}
	
	.columns.triple {
		width: 100%;
		font-size: 100%;
		padding-top: 2em;
		border-top: #004750 solid 1px;
	}
	.columns.triple.left {
		margin-top: 1em;
	}
	.columns.triple.right {
		border-bottom: #004750 solid 1px;
		margin-bottom: 2em;
	}
	.columns.triple.left, .columns.triple.middle, .columns.triple.right {
		padding-left: 1%;
		padding-right: 1%;
	}
	#clients h4 {
		margin-left: 1em;
	}
	
}


/* 404 Page *//*================================*//* 404 Page */

#fof nav{
	float: none;
	text-align: left;
	background-color: #181A1B;
}

#fof nav ul li {
	margin: 0;
	padding: 0;
	float: none;
	background-image: url('content/images/Agedo_Bullet_Web.png');
	background-position: 0 0.23em;
	background-size: auto 0.66em;
	background-repeat: no-repeat;
}

#fof nav ul li a {
	padding: 0.35em 1em;
	text-align: left;
	line-height: 1em;
	color: #004750;
}

#fof nav > ul {
	display: inline-block;
    height: auto;
}

#fof footer {
	position: relative;
	padding-top: 2em;
}