/* ------------------------------------------ */
/*  1. Genreral & Basic Styling
/* ------------------------------------------ */

html {
    font-size: 1em; /* 1 */
    -webkit-text-size-adjust: 1em; /* 2 */
    -ms-text-size-adjust: 1em; /* 2 */
    height: 100%;
}

body{
	color: #7e7e7e;
	font-family: 'Oxygen', sans-serif;
	font-size: 1em;
	line-height: 1.7em;
	font-weight: 300;
	text-rendering: optimizedLegibility;
	font-size-adjust:0.508;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-smooth: always;
	height: 100%;
}

h1, h2, h3{
	color: #43494c;
	margin-top: 0px;
}

h1{
	font-size: 4.0em;
	font-weight: 400;
	margin-bottom: 10px;
}

h2{
	font-size: 2.5em;
	font-weight: 300;
	margin-bottom: 25px;
}

a{
	-webkit-transition: background-color 0.5s ease, color 0.5s ease;
    -moz-transition: background-color 0.5s ease, color 0.5s ease;
    -o-transition: background-color 0.5s ease, color 0.5s ease;
    transition: background-color 0.5s ease, color 0.5s ease;
}

p{
	text-align: justify;
}

section{
	padding-top: 13%;
	padding-bottom: 13%;
}

.button{
	color: #629db8;
	font-size: 1.3em;
	font-weight: 400;
	border: 1px solid #629db8;
	border-radius: 2px;
	padding: 15px 25px;
}

.button:hover{
	color: #ffffff;
	background-color: #629db8;
	text-decoration: none;
}

.button-white{
	color: #ffffff;
	font-size: 1.3em;
	font-weight: 300;
	border: 1px solid #ffffff;
	border-radius: 2px;
	padding: 15px 25px;
}

.button-white:hover{
	background-color: #ffffff;
	color: #7e7e7e;
	text-decoration: none;
}






/* ------------------------------------------ */
/*  2. Navigation
/* ------------------------------------------ */

/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(97, 157, 184, 0.9)
}

.overlay-close{
	position: fixed;
	top:20px;
	right:25px;
	color: #ffffff;
}

.overlay-close:hover{
	color: #43494c;
	cursor: pointer;
}

/* Menu style */
.overlay nav {
	text-align: center;
	font-weight: 500;
	position: relative;
	top: 40%;
	height: 60%;
	font-size: 2.0em;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	height: 100%;
	position: relative;
}

.overlay ul li {
	display: block;
	height: 20%;
	height: calc(100% / 5);
	min-height: 54px;
}

.overlay ul li a {
	font-weight: 300;
	display: block;
	color: #fff;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
	color: #43494c;
	text-decoration: none;
}

/* Animations*/
.overlay-hugeinc {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s;
}

.overlay-hugeinc nav {
	perspective: 1200px;
}

.overlay-hugeinc nav ul {
	opacity: 0.4;
	transform: translateY(-25%) rotateX(35deg);
	transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
	opacity: 1;
	transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
	transform: translateY(25%) rotateX(-35deg);
}

.nav-icon{
	margin-right: 15px;
}





/* ------------------------------------------ */
/*  3. Intro
/* ------------------------------------------ */

#intro{
	background: url(../img/background_start_02.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;	
	height: 100vh;
	min-height: 350px;
	padding-top: 30px;
}

.logo{
	width: 250px;
}

.menu-trigger{
	position: fixed;
	top: 30px;
	right:30px;
}

#intro h1, #intro h2{
	color: #ffffff;
}

#intro i{
	cursor: pointer;
}

#intro i:hover{
	color: #f3787a;
}

.intro-content{
	margin-top: 8%;
	text-align: right;
}

.intro-content a{
	display: block;
	text-align: center;
}

.intro-content .button-first{
	margin: 20px 0px 25px 0px;
}






/* ------------------------------------------ */
/*  4. About
/* ------------------------------------------ */

#about{
	background: url(../img/background_about.jpg) no-repeat center center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#about .about-content{

}

#about p{
	text-align: justify;
}

#about .highlight{
	font-style:italic;
	display: block;
	margin: 30px 0px;
	padding-left: 15px;
	border-left: 4px solid #f3787a;
}


/* ------------------------------------------ */
/*  5. Leistungen
/* ------------------------------------------ */

#leistungen{
	background: url(../img/background_person.jpg) no-repeat center center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.leistungen-collapse{
	border: 1px solid #629db8;
	border-radius: 2px;
	padding: 15px;
	margin-bottom: 15px;
	background-color: #ffffff;
	border-radius: 2px;
}

.leistungen-collapse a{
	display: block;
	color: #43494c;
	text-decoration: none;
	padding:5px 5px 5px 10px;
}

.leistungen-collapse a:hover{
	color: #629db8;
}

.leistungen-collapse-inner{
	margin-top: 15px;	
}

#leistungen ul{
	list-style: none;
	margin-left: 15px;
	padding-left: 0;
}

#leistungen li{
	padding-left: 10px;
	text-indent: -10px;
	margin-bottom: 6px;
}

#leistungen li:before {
  content: "-";
  padding-right: 5px;
}







/* ------------------------------------------ */
/*  6. FlexibilitŠt
/* ------------------------------------------ */
#flexibilitaet{
	background-color: #f4f4f4;
}







/* ------------------------------------------ */
/*  7. Person/Vita
/* ------------------------------------------ */
#person-vita{
	background: url(../img/background_person.jpg) no-repeat center top; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#person-vita .image{
	width: 100%
}







/* ------------------------------------------ */
/*  8. Unsere Mandanten
/* ------------------------------------------ */
#mandanten{
	background-color: #f4f4f4;
}

#mandanten .button-wrapper{
	margin: 40px 0px;
}







/* ------------------------------------------ */
/*  9. Kontakt
/* ------------------------------------------ */
#kontakt{
	background-color: #ffffff;
	padding: 0px;
}

#map-canvas{
	height: 700px;
}

.kontakt-content{
	padding-left: 17%;
	padding-top: 10%;
}

#kontakt .typo-small{
	font-size: 0.8em;
}

#kontakt .contact-data td{
	padding-right: 30px;
}

#kontakt table{
	margin-bottom: 10px;
}





/* ------------------------------------------ */
/*  10. Footer
/* ------------------------------------------ */
#footer{
	background-color: #f4f4f4;
	padding: 40px 0px;
}

#footer p{
	margin: 0px;
}

#footer a{
	color: #43494c;
}

#footer a:hover{
	text-decoration: none;
	color: #ee777b;
}

.back-to-top{
	padding: 10px;
	background-color: #ffffff;
	color: #43494c;
	border-radius: 4px;
	margin-left: 15px;	
}




/* ------------------------------------------ */
/*  11. Impressum
/* ------------------------------------------ */

.overlay-impressum {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(97, 157, 184, 0.9);
	color: #ffffff;
}

.overlay-impressum h2{
	font-size: 4.0em;
	font-weight: 300;
	margin-top: 10%;
	margin-bottom: 40px;
	color: #ffffff;
	text-align: center;
}

.overlay-impressum .right{
	border-left: 8px solid #ffffff;	
}

.overlay-impressum .left p{
	text-align: right;
}


.overlay-impressum-close{
	position: fixed;
	top:20px;
	right:25px;
	color: #ffffff;
}

.overlay-impressum-close:hover{
	color: #43494c;
	cursor: pointer;
}


/* ------------------------------------------ */
/*  12. Media Query
/* ------------------------------------------ */


/* Extra Small Devices, .visible-xs-* */
@media (max-width: 767px) {
	.kontakt-content{
		padding-left: 17%;
		padding-top: 10%;
		padding-bottom: 10%;
	}
	
	.overlay-impressum{
		font-size: 0.8em;
		line-height: normal;
	}
	
	.overlay-impressum h2{
		text-align: left;
	}
	
	.overlay-impressum .left p{
		text-align: left;
	}
	
	.overlay-impressum .right{
		border-left: 0px solid #ffffff;	
	}
}






/* Small Devices, .visible-sm-* */
@media (min-width: 768px) and (max-width: 991px) {
	.kontakt-content{
		padding-left: 17%;
		padding-top: 10%;
		padding-bottom: 10%;
	}
	
	.overlay-impressum{
		font-size: 0.8em;
		line-height: normal;
	}
	
	.overlay-impressum h2{
		text-align: left;
	}
	
	.overlay-impressum .left p{
		text-align: left;
	}
	
	.overlay-impressum .right{
		border-left: 0px solid #ffffff;	
	}


}






/* Medium Devices, .visible-md-* */
@media (min-width: 992px) and (max-width: 1199px) {
	.overlay nav {
	text-align: left;
	margin-left: 40%;
	}
	
	.kontakt-content{
		padding-left: 17%;
		padding-top: 10%;
		padding-bottom: 10%;
	}
	
		.overlay-impressum{
		font-size: 0.8em;
		line-height: normal;
	}
	
	.overlay-impressum h2{
		text-align: left;
	}
	
	.overlay-impressum .left p{
		text-align: left;
	}
	
	.overlay-impressum .right{
		border-left: 0px solid #ffffff;	
	}

}






/* Large Devices, .visible-lg-* */
@media (min-width: 1200px) {
	.overlay nav {
	text-align: left;
	margin-left: 40%;
	}
}
