html, body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-weight: 300;
	color: #898989;
	margin: 0px;
	max-width: 100%;
	overflow-x: hidden;
}

h1 {
	font-weight: 300;
	color: #303030;
	letter-spacing: 7.5px;
	text-transform: uppercase;
}

strong {
	font-weight: 300;
}

a {
	font-weight: 400;
	color: #898989;
	text-decoration: none;
	
	transition-property: all;
	transition-timing-function: ease-in-out;
	transition-duration: .2s;
	-webkit-transition-duration: .2s;
	-moz-transition-duration: .2s;
}

a:hover {
	color: #01a2dd;
	text-decoration: underline;
}

ul {
	list-style-type: none;
	padding-inline-start: 0px;
	margin: auto;
}

input, textarea {
	font-family: inherit;
	font-size: 13px;
	-webkit-appearance: none;
}

/* HEADER */

.navbar {
	background-color: white;
	
	position: fixed;
	top: 0;
	width: 100%;
	height: 100px;
	z-index: 99;

	transition: 0.4s;
}

.navbar-content {
	height: 100%;
	margin: 0 20px;
}

.logo-container {
	float: left;
	width: 200px;
	height: 100%;
}

.logo-container img {
	height: 100%;
	object-fit: scale-down;
}

.desktop-menu-container {
	display: flex;
	height: 100%;
}

.menu-item {
	text-transform: uppercase;
}

.menu-item a {
	color: #303030;
	text-decoration: none;
	letter-spacing: 0.075em;
}

.menu-item a:hover, .current-menu-item a {
	color: #01a2dd;
}

.desktop-menu-item {
	float: left;
	padding: 0 16px;
}

.desktop-menu-item a {
	font-size: 12px;
	font-weight: 500;
}

.mobile-menu-item {
	text-align: center;
	padding: 12px;
}

.mobile-menu-item a {
	font-size: 14px;
	font-weight: 500;
}

.mobile-menu-icon {
	position: relative;
	display: none;
	top: 50%;
	width: 1.5em;
	height: 1.5em;
	margin-left: auto;
	
	color: white;
	cursor: pointer;
	background: currentColor;
	
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.mobile-menu-icon span,
.mobile-menu-icon span:before,
.mobile-menu-icon span:after {
	content: '';
	position: absolute;
	height: 2px;
	width: 1.5em;
	background: #303030;
	transition: all .2s ease;
}

.mobile-menu-icon span {
	top: 0.75em
}

.mobile-menu-icon span:before {
	top: -0.4em
}

.mobile-menu-icon span:after {
	top: 0.4em
}

.mobile-menu-active .mobile-menu-icon span {
	background: transparent;
	transform: rotate(-135deg)
}

.mobile-menu-active .mobile-menu-icon span:before,
.mobile-menu-active .mobile-menu-icon span:after {
	top: 0
}

.mobile-menu-active .mobile-menu-icon span:before {
	transform: rotate(90deg)
}

.mobile-menu-container {
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	margin-top: 100px;
	padding: 20px;
	background: white;
	z-index: 99;
}

@media (max-width:960px) {
	#navbar {
		height: 60px!important;
	}

	#home, #impressum, #privacy, .mobile-menu-container {
		margin-top: 60px!important;
	}

	.desktop-menu-container {
        display: none;
	}
	
    .mobile-menu-icon {
        display: block;
	}
}

/* CONTENT */

#home {
	margin-top: 100px;
	height: 100%;
}

#impressum {
	margin-top: 100px;
}

.background-container {
	position: relative;
	height: 100%;
}

#scrollBtn {
	display: none;
	position: fixed;
	width: 32px;
	height: 32px;
	bottom: 20px;
	right: 20px;
	background-color: white;
	color: #898989;
	border: 1px solid #898989;
	border-radius: 50%;
    font-size: 30px;
    line-height: 32px;
    text-align: center;
    vertical-align: bottom;
	cursor: pointer;
	z-index: 99;
}

/* HOME */

.home-content-container {
	position: relative;
	top: 25%;
	bottom: 50%;
	left: 15%;
	max-width: 400px;
	padding: 20px;
}

.home-title {
	color: #303030;
	font-size: 32px;
}

.home-text {
	font-size: 17px;
}

@media screen and (max-width: 650px) {
	.home-content-container {
		left: 0;
		max-width: unset;
	}

    .service-content-container, .service-row {
        display: block;
	}
	
    .service-cell {
        display: inline-block;
    }
}

/* SERVICE */

.service-content-container {
	position: relative;
	display: table;
	left: 45%;
	width: 40%;
	padding: max(150px, 20%) 0;
    table-layout: fixed;
}

.service-row {
	display: table-row;
	width: 100%;
}

.service-cell {
	display: table-cell;
	padding: 20px;
}

.service-image {
	width: 50px;
	height: 50px;
}

.service-image {
    width: 60px;
    height: 60px;
	color: #01a2dd;
	border: 1px solid #01a2dd;
	border-radius: 50%;
    font-size: 36px;
    line-height: 60px;
    text-align: center;
    vertical-align: bottom;
}

.service-title {
	color: #303030;
	height: 50px;
	font-size: 18px;
	letter-spacing: 3.06px;
	padding: 20px 0 10px;
	text-transform: uppercase;
}

.service-text {
	font-size: 14px;
	font-weight: 400;
}

@media (max-width:960px) {
	.service-content-container {
		left: 35%;
		width: 55%;
	}
}

@media screen and (max-width: 650px) {
	.service-content-container {
		left: 0;
		width: 100%;
	}

    .service-content-container, .service-row {
        display: block;
	}
	
    .service-cell {
        display: inline-block;
    }
}

/* ABOUT ME */

.uebermich-content-container {
	position: relative;
	width: 300px;
	margin: 0 15%;
	padding: max(150px, 20%) 20px;
	text-align: center;
}

.uebermich-image {
	position: relative;
	width: 100%;
	max-width: 300px;
	max-height: 300px;
	object-fit: scale-down;
	border-radius: 50%;
}

.uebermich-name {
	font-size: 20px;
	margin-top: 20px;
	letter-spacing: 7.5px;
	text-transform: uppercase;
}

.uebermich-name strong {
	font-weight: 400;
}

.uebermich-position {
	font-size: 14px;
	font-weight: 300;
	color: #01a2dd;
	margin-bottom: 40px;
	letter-spacing: 1.3px;
	line-height: 26px;
}

@media screen and (max-width: 650px) {
	.uebermich-content-container {
		width: unset;
		margin: 0;
	}
}

/* CONTACT */

.contact-content-container {
	border-radius: 5px;
	padding: max(100px, 10%) 20px max(350px, 35%);
	margin: 0 auto;
	text-align: center;
}

.contact-image {
	color: #01a2dd;
    font-size: 52px;
    margin: auto;
}

.contact-title {
	color: #303030;
	font-size: 18px;
	letter-spacing: 3.06px;
	padding: 20px 0;
	text-transform: uppercase;
}

.contact-text {
	font-size: 15px;
	font-weight: 400;
}

.contact-message {
	margin: 30px auto;
	max-width: 300px;
}

.contact-message-info {
	display: none;
	color: red;
	font-size: 12px;
	font-weight: 500;
}

input[type=text], input[type=email], select, textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-sizing: border-box;
	margin: 5px 0;
	resize: vertical
}

input:focus, textarea:focus {
    outline: none;
    border:1px solid #01a2dd!important;
}

input[type=submit] {
	background-color: #01a2dd;
	color: white;
	padding: 10px 18px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	margin: 5px 0;
	text-transform: uppercase;
}

input[type=submit]:hover {
	background-color: #0195cb;
}

/* IMPRESSUM */

.impressum-content-container {
	font-weight: 300;
	max-width: 500px;
	padding: max(150px, 10%) 20px;
	margin: 0 15%;
}

.impressum-content-container h1 {
	margin-bottom: 40px;
}

.impressum-companyname {
	font-weight: 500;
	font-size: 20px;
}

.impressum-contact {
	display: table;
}

.impressum-contact-row {
	display: table-row;
}

.impressum-contact-cell {
	display: table-cell;
	padding-right: 20px;
}

.impressum-header {
	font-weight: 400;
}

@media screen and (max-width: 650px) {
	.impressum-content-container {
		width: unset;
		margin: 0;
	}
}

/* FOOTER */

.footer {
	display: flex;
	padding: 30px 60px;
}

.copyright {
	margin: auto 0;
	color: #a9a9a9;
	font-size: 12px;
	text-align: center;
	letter-spacing: 0.1em;
}

.bottom-menu-container {
	float: left;
	margin-left: auto;
	text-align: center;
}

@media screen and (max-width: 650px) {
    .footer {
        display: block;
	}

	.bottom-menu-container {
		display: flex;
		padding-top: 20px;
		float: none;
	}
	
	.desktop-bottom-menu-item {
		float: none;
		padding: 8px 0;
	}
	
	.desktop-bottom-menu-item a {
		font-size: 14px;
	}
}
