  @font-face {
	font-family: 'Sanierung Nunito';
	font-style: normal;
	font-weight: 400;
	src: url(fonts/Nunito-Regular.ttf) format('truetype');
  }
  @font-face {
	font-family: 'Sanierung Nunito';
	font-style: normal;
	font-weight: 500;
	src: url(fonts/Nunito-SemiBold.ttf) format('truetype');
  }
  @font-face {
	font-family: 'Sanierung Nunito';
	font-style: normal;
	font-weight: 600;
	src: url(fonts/Nunito-Bold.ttf) format('truetype');
  }


*, *:before, *:after {
	box-sizing: border-box;
}


/* Main styles */
body {
	font-family: 'Sanierung Nunito', sans-serif;
	background-color: white;
	color: black;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.35em;
}

html {
	scroll-behavior: smooth;
}

a {
	color: black;
	text-decoration-color: black;
	transition: color 0.3s;
}

a:hover {
	color: #329cc6;
	text-decoration: none;
	transition: color 0.3s;
}

h1 {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.35em;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

h2 {
	font-size: 24px;
	font-weight: 500;
	color: #b90100;
	line-height: 1.35em;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.anchor {
	scroll-margin-top: 50px;
	overflow: initial !important;
}

@media screen and (max-width: 768px) {
	
	.anchor {
		scroll-margin-top: 150px;
		overflow: initial !important;
	}

}

.header-wrapper {
	box-sizing: border-box;
	width: 100%;
	background: linear-gradient(60deg, rgba(238,241,244,1) 0%, rgba(156,172,185,1) 40%, rgba(96, 120, 155, 1) 100%);
}

.header {
	margin: 0px auto;
	max-width: 996px;
	padding: 10px 0px 5px 0px;
	text-align: center;
}

@media screen and (max-width: 768px) {

	.header {
		width: 100%;
		padding: 5px 0px 5px 0px;
	}

	.logo {
		width: 100%;
	}

	.top-part {
		
		position: sticky;
		top: 0;
		z-index: 3333;
	}

}

.logo-mobile {
	width: 20px;
	display: none;
	opacity: 0;
	margin-right: 140px;
}

.logo-mobile-visible {
	display: block !important;
	animation-name: slide-left-frames;
	animation-fill-mode: forwards;
	animation-duration: 1.5s;
	animation-delay: 0s;
}

.blue-line {
	width: 100%;
	height: 3px;
	background-color: rgba(96, 120, 155, 1);
}

.nav-wrapper {
	width: 100%;
	margin: 0px auto;
	position: relative;
	z-index: 200;
	background: linear-gradient(180deg, rgba(238,241,244,1) 0%, rgba(197,203,208,1) 100%);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(156,172,185,1), 0 1px 0 rgba(156,172,185,1);
}


#nav-mobile-toggle-content {
	display: none;
}

@media screen and (min-width: 768px) {

	.nav-wrapper-mobile {
		display: none;
	}

}

@media screen and (max-width: 768px) {

	.nav-wrapper {
		display: none;
	}

	.nav-wrapper-mobile {
		width: 100%;
		min-height: 42px;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		background: linear-gradient(180deg, rgba(238,241,244,1) 0%, rgba(197,203,208,1) 100%);
		box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(156,172,185,1), 0 1px 0 rgba(156,172,185,1);
		font-weight: 500;
		font-size: 19px;
	}

	#nav-mobile-toggle-content {
		width: 100%;
		font-weight: 500;
		font-size: 19px;
		padding: 0px 0px 10px 10px;
	}

	.nav-mobile-toggle {
		text-decoration: none;
	}
	
}

.nav {
	width: 70%;
	max-width: 996px;
	margin: 0px auto;
	height: 50px;
	display: flex;
	align-items: center;
	font-size: 19px;
}


.nav-link {
	color: black;
	text-shadow: 0px 0px 2px rgba(255,255,255,0.9);
	text-decoration: none;
	transition: color 0.3s;
	font-weight: 500;
}

.nav-link:hover {
	color: #329cc6;
	text-decoration: none;
	transition: color 0.3s;
	animation-name: nav-link-hover-frames;
	animation-fill-mode: forwards;
	animation-duration: 0.3s;
	animation-delay: 0s;
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 100%;
	background-repeat: no-repeat;
	/*background-size: 100% 2px;*/

}


.content-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
	overflow: hidden;
}


.content-inner {
	width: 70%;
	max-width: 996px;
	margin: 0px auto 0px auto;
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 1024px) {

	.content-inner {
		width: 80%;
	}

}

@media screen and (max-width: 576px) {

	.content-inner {
		width: 90%;
		flex-wrap: wrap;
	}

}

.content {
	width: 100%;
	padding: 30px 36px 30px 36px;
	backdrop-filter: blur(5px);
	background: rgb(255,255,255,0.7);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
	opacity: 0;
	outline: 1px solid #92a6b6;
	align-self: flex-start;
}

.content-inner-column-left {
	margin-right: 30px;
	width: 50%;
}

.content-inner-column-right {
	width: 50%;
}

@media screen and (max-width: 576px) {
	.content-inner-column-left,.content-inner-column-right {
		margin-right: 0px;
		width: 100%
	}
}

.content-inner-column-seperator {
	width: 0px;
	height: 0px;
}

@media screen and (max-width: 576px) {
	.content-inner-column-seperator {
		width: 100%;
		height: 30px;
	}
}

.content-header {
	display: flex;
	align-items: center;
	font-size: 28px;
	color: #329cc6;
	text-shadow: 0px 0px 2px rgba(255,255,255,0.9)
}

.content-header-line {
	width: 100%;
	height: 3px;
	background-color: #b90100;
	margin: 5px 0px 15px 0px;
}

.content-wrapper-img {
	padding: 50px 0px 50px 0px;
	min-height: 100vh;
}


@media screen and (max-width: 576px) {

	.content-wrapper-img {
		padding: 50px 0px 50px 0px;
		min-height: auto;
	}

}

.content-wrapper-gradient-1 {
	padding: 50px 0px 50px 0px;
	background: rgb(238,241,244);
	/*background: linear-gradient(240deg, rgba(238,241,244,1) 0%, rgba(156,172,185,1) 100%);*/
	background: linear-gradient(240deg, rgba(238,241,244,1) 0%, rgba(156,172,185,1) 40%, rgba(96, 120, 155, 1) 100%);
}


.content-wrapper-gradient-2 {
	padding: 50px 0px 50px 0px;
	background: rgb(238,241,244);
	background: linear-gradient(60deg, rgba(238,241,244,1) 0%, rgba(156,172,185,1) 40%, rgba(96, 120, 155, 1) 100%);
}

.content-wrapper-img-1 {
	background-image: url(../img/img-1.webp);
	background-size: cover;
}

.content-wrapper-img-2 {
	background-image: url(../img/img-2.webp);
	background-size: cover;
}

.sticky {
	position: fixed !important;
	top: 1px;
	z-index: 500 !important;
	animation-name: fadeinboxx3;
	animation-fill-mode: forwards;
	animation-duration: 0.5s;
	animation-delay: 0s;
}


.slide-left {
	animation-name: slide-left-frames;
	animation-fill-mode: forwards;
	animation-duration: 1.3s;
	animation-delay: 0s;
	opacity: 0;
}

.slide-right {
	animation-name: slide-right-frames;
	animation-fill-mode: forwards;
	animation-duration: 1.3s;
	animation-delay: 0s;
	opacity: 0;
}


@keyframes nav-link-hover-frames {
	from { background-size: 0% 2px; }
	to { background-size: 100% 2px; }
}


@keyframes slide-left-frames {
	from { transform: translate(-100%, 0%); opacity: 0; }
	to { transform: translate(0%, 0%); opacity: 1; }
}


@keyframes slide-right-frames {
	from { transform: translate(100%, 0%); opacity: 0; }
	to { transform: translate(0%, 0%); opacity: 1; }
}

@keyframes fadeinboxx3 {
	from { transform: translate(0%, -100%); }
	to { transform: translate(0%, 0%); }
}



.active {
	color: #329cc6;
	text-decoration: none;
}


input,textarea,button {
	border: 1px solid #92a6b6;
	font-size: 16px;
	background-color: rgba(255,255,255,0.5);
	padding: 2px 7px 2px 7px;
}

button {
	padding: 4px 7px 4px 7px;
}

input:hover,textarea:hover {
	background-color: white;
}

.leistungen-subtitle {
	font-size: 16px;
}

.spacer-30 {
	height: 30px;
}

.spacer-20 {
	height: 20px;
}

.spacer-10 {
	height: 10px;
}

.spacer-2 {
	height: 2px;
}

.leistungen-bull {
	font-size: 22px;
	color: #b90100;
	font-weight: 500;
	margin-right: 5px;
}

.leistungen-title-line {
	width: 100%;
	height: 2px;
	background-color: black;
	margin: 5px 0px 10px 0px;
}

.leistungen-bieten-title {
	font-weight: 500;
	color: #b90100;
}

.leistungen-bull-line {
	width: 100%;
	height: 2px;
	background-color: black;
	margin: -1px 0px 2px 0px;
}

.vorher-nachher-img {
	box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.4), inset 0px 0px 3px rgba(0, 0, 0, 0.2);
	padding: 5px 5px 5px 5px;
	background-color: white;
	transition: scale 0.5s;
}

.vorher-nachher-img:hover {
	transition: scale 0.5s;
	z-index: 6;
	scale: 1.8;
}


.referenzen-wrapper {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 768px) {

	.weitere-eindruecke {
		flex-wrap: wrap;
	}

}

@media screen and (min-width: 768px) {

	.weitere-eindruecke-column {
		width: 100%;
	}

}

.emailfield {
	display: none;
}