@charset "utf-8";

/*
==================================================================
Style-Sheet Diplom-Psychologin Isabell Reuß
Copyrights: www.werbemanufaktur-bodensee.de - Dominik Wolff (Dipl.-Kfm./Uni)
Webdesign: www.werbemanufaktur-bodensee.de - Dominik Wolff (Dipl.-Kfm./Uni)
Stand: Dezember 2017 | Juni 2022
Inhalt:

1. Kalibrierung
2. Allgemeine Styles
3. Layout-Styles
4. Formular
5. Responsive
==================================================================
*/

/*
==================================================================
1. Kalibrierung
==================================================================
*/

* {
	margin: 0;
  	padding: 0;
	border: 0;
}

html {height: 101%;} /* Kein Sprung bei Mozilla, wenn die Seite sehr kurz ist (Erscheinen und Verschwinden der Scrollbalken). */

main {display: block;} /* main - Element nicht im IE unterstüzt. */

/*
==================================================================
2. Allgemeine Styles
==================================================================
*/

/*
Text
*/



@font-face {
    font-family: 'alegreya_sansregular';
    src: url('../fonts/alegreyasans-regular-webfont.woff2') format('woff2'),
         url('../fonts/alegreyasans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body, p { 
	font-family: 'alegreya_sansregular', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
}

p { 
	padding-bottom: 15px; 
	text-align:  justify;
}

@media only screen and (max-width: 600px) { 
	p { 
		font-size: 16px;
		line-height: 24px;
	}
}

h1, h2, h3 { font-family: 'alegreya_sansregular', sans-serif; }

h1 { 
	font-size: 40px;
	font-weight : 300;
	line-height: 50px;
	padding: 10px 0px 0px 0px;
}

h2 { 
	font-size: 22px;
	font-weight : 300;
	line-height: 40px;
	padding: 0px 0px 40px 0px;
}

@media only screen and (max-width: 600px) { 
	h1 { 
		font-size: 26px;
		line-height: 30px;
		padding: 0px 0px 0px 0px;
	}
	
	h2 { 
		font-size: 18px;
		line-height: 24px;
		padding: 0px 0px 20px 0px;
	}
}

h3 { 
	font-size: 18px;
	font-weight : 700;
	line-height: 30px;
}

.lighter { background-color: #FFFFFF; }
.lighter h1 { color: #9dcef2; }
.lighter h2 { color: #5c99d3; }
.lighter h3 { color: #9dcef2; }
.lighter p  { color: #4a81b5; }
.lighter ul { color: #4a81b5; }

.darker { background-color: #5c99d3; }
.darker h1 { color: #FFFFFF; }
.darker h2 { color: #9dcef2; }
.darker h3 { color: #9dcef2; }
.darker p  { color: #FFFFFF; }
.darker ul { color: #FFFFFF; }

/*
Hyperlinks
*/

a {
	outline: none;
	text-decoration: none;
}

a:link, a:visited {
	color: #4a81b5;
	text-decoration: underline;
	-webkit-transition: color 0.5s ease-in-out;
	transition: color 0.5s ease-in-out;
}

a:hover, a:focus { 
	color: #9dcef2;
	text-decoration: underline;
}


#mainnav a:link { /* #mainnav a:visited wegen highlighting.js */
	color: #4a81b5;
	text-decoration: none;
}

#mainnav a:hover { /* #mainnav a:focus wegen highlighting.js */
	color: #9dcef2;
	text-decoration: none;
}

/* highlighting.js*/

.nav-active { color: #9dcef2 !important; }

footer a:link, footer a:visited {
	color: #FFFFFF;
	text-decoration: none;
	-webkit-transition: color 0.5s ease-in-out;
	transition: color 0.5s ease-in-out;
}

footer a:hover, footer a:focus { 
	color: #9dcef2;
	text-decoration: underline;
}

/*
Trennlinie
*/

hr {
	border-bottom: 1px dotted #4a81b5;
	border-width: medium;
	width: 100%;
	margin: 40px 0px;
	text-align: left; /* Extra für Opera und IE - das Sie eine Linie automatisch in der Mitte zentrieren und damit margin nicht wirkt. */
 }
 
.darker hr {
	border-bottom: 1px dotted #FFFFFF;
	border-width: medium;
}

/*
==================================================================
3. Layout-Styles
==================================================================
*/

body {
  -webkit-animation: fadeinBody 3s;
	animation: fadeinBody 3s;
}

@-webkit-keyframes fadeinBody {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeinBody {
    from {opacity: 0;}
    to {opacity: 1;}
}

#header {
	height: 90px;
	width: 100%;
	position: fixed;
	top: 0px;
	background-color: #FFFFFF;
  -webkit-animation: slideInHeader 2s;
	animation: slideInHeader 2s;
}

@-webkit-keyframes slideInHeader {
    from {top: -90px;}
    to {top: 0px;}
}

@keyframes slideInHeader {
    from {top: -90px;}
    to {top: 0px;}
}

@media only screen and (max-width: 399px) { #header { height: 60px; } }

#logoHeader {
	float: left;
	margin: -7px 0px 0px 0px;
	-webkit-transition: -webkit-transform 1s ease;
	transition: transform 1s ease;
}

#logoHeader:hover {
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}

#logoHeader img {
	max-width: 200px;
	height: auto;
}

@media only screen and (min-width: 400px) and (max-width: 959px) { #logoHeader { margin: 10px 0px 0px 0px; } }

@media only screen and (max-width: 399px) { 
	
	#logoHeader img { max-width: 130px; }

	#logoHeader { margin: 5px 0px 0px 0px; }
}

/* Start Navigation */

#navigation { 
	display: block; 
	margin-left: 10px; 
	text-align: right;
	margin-top: 15px;
}

#mainnav li { 
	display: inline-block;
	font-size: 22px;
	margin: 15px 10px 0px 10px;
}

#mainnav li:last-child { margin-right: 0px; }

.menu-icon { 
	display: none;  
	position: absolute;
	width: 24px;
	height: 24px;
	background: url(../images/navigation.png) left top no-repeat;
	background-size: 100%;
	right: 0px;
	top: 30px;
	cursor: pointer;
}

@media only screen and (max-width: 960px) {
	
	#navigation { 
		display: none; 
		width: 100%;
		top: 75px;
		background: #FFFFFF;
		position: absolute;
		z-index: 9999;
		margin-left: -2%;
		text-align: left;
	}
	
	#mainnav { 
		padding: 0px;
		margin: 0px; 
	}
	
	#mainnav li { 
		display: block;
		border-bottom: 1px solid #4a81b5;
		padding: 0 !important;
		margin: 0px; 
	}
	
	/*#mainnav li:last-child { border-bottom: 0px; }*/
	
	#mainnav li a {
		padding: 10px 15px;
		display: block;
		margin: 0px !important;
	}
	
	#mainnav li a:hover {
		background-color: #4a81b5;
		color: #FFFFFF;
	}
	
	.menu-icon { display: block !important; right: 20px; }
}

@media only screen and (max-width: 479px) { #navigation { margin-left: -3%; } }

@media only screen and (max-width: 399px) { 
	
	#navigation { top: 45px; }
	
	.menu-icon { top: 18px; } 
}

/* Ende Navigation */

/*#bildHintergrundEins {
	background: url(../images/eins.jpg) 50% 0 repeat fixed;
	height: 500px;
}

#bildHintergrundZwei {
	background: url(../images/zwei.jpg) 50% 0 repeat fixed;
	height: 500px;
}

#bildHintergrundDrei {
	background: url(../images/drei.jpg) 50% 0 repeat fixed;
	height: 500px;
}

#bildHintergrundEinsResponsive,
#bildHintergrundZweiResponsive,
#bildHintergrundDreiResponsive { 
	display:none;
	height:0px;
}*/

/*@media only screen and (max-width: 900px) { */
	
	#bildHintergrundEins,
	#bildHintergrundZwei,
	#bildHintergrundDrei {
		display: none;
		height: 0px
	}
	
	#bildHintergrundEinsResponsive,
	#bildHintergrundZweiResponsive,
	#bildHintergrundDreiResponsive {
		display: block;
		width: 100%;
		height: auto;
	}
/*}*/

.section { 
	min-height: 100px;
	overflow: hidden;
}

.double-space { height: 110px; }
.double-spaceTop { height: 90px; }

@media only screen and (max-width: 399px) { 
	.double-space { height: 80px; } 
	.double-spaceTop { height: 60px; }
}

.centered-wrapper { 
	margin: 0 auto;
	max-width: 98%;
	/*overflow: hidden;*/
}

@media only screen and (min-width: 1480px) { .centered-wrapper { max-width: 1400px !important; } }

@media only screen and (min-width: 480px) and (max-width: 1479px) { .centered-wrapper { width: 96% !important; } }

@media only screen and (max-width: 479px) { .centered-wrapper { width: 94% !important; } }

.leftBox {
	float: left;
	width: 48%;
	padding-right: 2%;
}

.rightBox { 
	float: right;
	width: 48%;
	padding-left: 2%;
}

@media only screen and (max-width: 599px) {
	.leftBox, .rightBox {
		float: none;
		width: 100%;
		padding-left: 0%;
	}
}

.lighter .rightBoxAufzaehlung { 
	padding: 15px;
	background-color: rgba(74,129,181,0.10);  
}

.lighter .leftBoxAufzaehlung { 
	padding: 15px;
	margin-bottom: 30px;
	background-color: rgba(74,129,181,0.05);  
}

.darker .rightBoxAufzaehlung { 
	padding: 15px;
	background-color: rgba(255,255,255,0.10);  
}

#logoGross {
	max-width: 420px;
	height:  auto;
	display: block;
	margin: 0 auto;
}

@media only screen and (max-width: 959px) { 
	#einleitung .rightBox {display: none; } 
	#einleitung .leftBox { 
		width: 100%;
		padding-right: 0%;
	}
}

.leistungsKasten {
	width: 26%;
	margin-right: 5%;
	padding: 2%;
	background-color: rgba(255,255,255,0.90);
	float: left;
}

.leistungsKasten:last-child { margin-right: 0; }

.leistungsKasten h3 { 
	font-size: 22px;
	font-weight: 300;
	line-height: 50px;
	color: #5c99d3;
}

.leistungsKasten p { 
	color: #4a81b5;
	text-align: left;
}

.leistungsKasten button {
	background-color: #4a81b5;
	font-family: 'alegreya_sansregular', sans-serif;
	color:  #FFFFFF;
	font-size: 18px;
	padding: 10px;
	float: right;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.leistungsKasten button:hover { 
	background-color: #9dcef2;
	color: #FFFFFF;
}

@media only screen and (min-width: 600px) and (max-width: 959px) { 
	.leistungsKasten {
		width: 42%;
		margin-right: 2%;
		margin-left:  2%;
		margin-bottom: 4%;
		padding: 2%;
	}
	
	.leistungsKasten p { text-align: left; }
}

@media only screen and (max-width: 599px) { 
.leistungsKasten {
		float: none;
		width: 96%;
		padding: 2%;
		margin-right: 0%;
		margin-left:  0%;
		margin-bottom: 4%;
	}
}

.leftBox ul, .rightBox ul {
	padding-left: 15px;
	list-style-image: url(../images/liste.png);
	line-height: 30px;
}

#ueber ul li {
	margin-left: 15px;
	padding-bottom: 5px;
}

@media only screen and (max-width: 600px) { 
	ul li { 
		font-size: 16px;
		line-height: 24px;
	}
}

/* Sliding Div */

.show_hide {
	background-color: #4a81b5;
	font-family: 'alegreya_sansregular', sans-serif;
	color: #FFFFFF;
	font-size: 18px;
	padding: 10px;
	margin: 15px 0px 0px 0px;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.show_hide:hover { 
	background-color: #9dcef2;
	color: #FFFFFF;
}

#slidingDiv {padding-top: 30px; }

/* Ende Sliding Div */

#foto {
	float: right;
	margin-left: 30px;
	max-height: 320px;
	width: auto;
}

@media only screen and (max-width: 599px) {
	#foto {
		max-width: 40%;
		height: auto;
	}
}

#kontakt .leftBox { width: 28%; }

#kontakt .rightBox { width: 68%; }

@media only screen and (max-width: 899px) {
	#kontakt .leftBox, #kontakt .rightBox { 
		float: none; 
		width: 100%;
		padding: 0;
	}
}

#karte img {
    width: 100% !important;
    height: auto;
}

footer { 
	background-color: #5c99d3;
	padding: 8px 0px;
}

footer p { 
	color: #FFFFFF;
	font-size: 16px;
	padding: 0px;
	text-align: left;
}

@media only screen and (max-width: 479px) { footer p { font-size: 14px; } }

.clear {
	clear: both;
	width: 0px;
	height: 0px;
}

/*
==================================================================
Ende Stylesheet
==================================================================
*/