/* Roboto font */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap');

/* General */
*{
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
}

body{
	font-family: 'Roboto', sans-serif;
	font-size: x-large;
	font-weight: 300;
}

/* Navbar */
nav{
	top: 0;
	position: sticky;
	background: #88a5bd;
}

nav label.logo a{
	color: white;
	font-size: 35px;
	line-height: 80px;
	padding: 20px;
	cursor: pointer;
}

nav ul{
	float: right;
	margin-right: 20px;
}

nav ul li{
	display: inline-block;
	line-height: 80px;
	margin-right: 20px;
}

nav ul li a{
	color: white;
	font-size: 16px;
	text-transform: uppercase;
	/*transition: 0.5s;*/
}

nav ul li a:hover, nav ul li a.active{
	font-weight: 500;
	/*transition: 0.5s;*/
}

.checkbtn{
	font-size: 30px;
	color: white;
	float: right;
	line-height: 80px;
	margin-right: 40px;
	cursor: pointer;
	display: none;
	user-select: none;
}

#check{
	display: none;
}

@media (max-width: 1300px) /* Switch to hamburger menu */{
	nav label.logo a{
		font-size: min(30px, calc(5.3vw));
		padding: 16px;
	}
	nav ul li a{
		font-size: 16px;
	}
	.checkbtn{
		display: block;
	}
	nav ul{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #7990a5;
		top: 80px;
		left: 100%;
		text-align: center;
		transition: all 0.5s;
	}
	nav ul li{
		display: block;
	}
	nav ul li a{
		color: #fff;
		font-size: 20px;
		transition: 0.5s;
	}
	nav ul li a:hover, nav ul li a.active{
		color: #fff;
		font-size: 24px;
		font-weight: 500;
		transition: 0.5s;
	}
	#check:checked ~ ul{
		left: 0%;
	}
}

@media (max-width: 1020px){
	body{
		hyphens: auto;
	}
}

/* Subtitle */
div.subtitle {
	background: #88a5bd;
}

div.subtitle h3 {
	font-size: 24px;
	font-weight: 300;
	color: white;
	padding: 20px;
	padding-top: 0;
	top: -12px;
}



/* Main section */
.welcome .container{
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1020px){
	.welcome .container{
		display: inline;
		height: auto;
		max-width: 40%;
	}
}

.welcome-heading{
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
}

.profile-img img{
	padding: 50px;
	height: auto;
	max-width: 100%;
}

.welcome-heading{
	color: #7990a5;
}

.welcome-text{
	padding: 50px;
}

/* Psychotherapy */
.page-psychotherapy{
	padding-left: 10%;
	padding-right: 10%;
}

@media (max-width: 1020px){
	.page-psychotherapy{
		padding-left: 5%;
		padding-right: 5%;
		word-break: break-word;
	}
}

h3{
	color: #4472c4;
	font-weight: 300;
	text-transform: uppercase;
	padding: 20px;
}

.legend{
	border: 2px solid #4472c4;
	margin: auto;
	float: center;
}

.legend li{
	padding: 10px;
	padding-left: 0px;
	padding-bottom: 3px;
}

.legend li a{
	color: #4472c4;
	font-weight: 500;
}

div.filledbox{
	background: #88a5bd;
	text-align: center;
	padding: 10px;
	font-size: 25px;
	color: white;
}

section div.text{
	padding: 10px;
	font-size: 25px;
}

section hr{
	color: #88a5bd;
}

section h4{
	color: #4472c4;
	font-weight: 500;
	font-size: 40px;
	padding: 20px;
	text-align: center;
}

section h5{
	color: #4472c4;
	font-weight: 500;
	font-size: 30px;
	padding: 20px;
	text-align: center;
}

section ul li{
	list-style-type: disc;
}

section ul li ul li{
	list-style-type: circle;
}

section em{
	font-style: normal;
	color: #4472c4;
}

/* About */
.page-about{
	padding-left: 10%;
	padding-right: 10%;
}

/* Contact */
.page-contact{
	padding-left: 10%;
	padding-right: 10%;
}

/* Impressum */
.page-impressum{
	padding-left: 10%;
	padding-right: 10%;
}
