@font-face {
    font-family: 'Segoe UI Bold';
    src: url('../fonts/SegoeUI-Bold.eot');
    src: url('../fonts/SegoeUI-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI-Bold.woff2') format('woff2'),
        url('../fonts/SegoeUI-Bold.woff') format('woff'),
        url('../fonts/SegoeUI-Bold.ttf') format('truetype'),
        url('../fonts/SegoeUI-Bold.svg#SegoeUI-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SegoeUI-Semibold.eot');
    src: url('../fonts/SegoeUI-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SegoeUI-Semibold.woff2') format('woff2'),
        url('../fonts/SegoeUI-Semibold.woff') format('woff'),
        url('../fonts/SegoeUI-Semibold.ttf') format('truetype'),
        url('../fonts/SegoeUI-Semibold.svg#SegoeUI-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}




/* CSS RESET */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	vertical-align: baseline;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	
	
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {
	display: block;
}
:focus {
	outline: 0;
}
ol, ul {
	list-style: none;
}
a{
	text-decoration: none;
	margin: 0;
  	padding: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
  width: 100%;
  display: block;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}

html{
    font-size: 100%;
    /* scroll-behavior: smooth; */
    
}

p{
	font-size: 1.25rem;
	font-family: 'Segoe UI Bold', Tahoma, Geneva, Verdana, sans-serif;
}

h1{
	font-size: 2rem;
	font-family: 'Segoe UI Bold', Tahoma, Geneva, Verdana, sans-serif;
}

a{
	font-family: 'Segoe UI Bold', Tahoma, Geneva, Verdana, sans-serif;
}



/* BASE STYLES */

body{
	background-color: var(--grey);
}

:root{
	--blue:#007CAF;
	--grey:#F5F5F5;
}

.wrapper{
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
	gap: 25px;
	align-items: center;
    justify-content: space-between;

}


.mob{
	display: none;
}



/* Scroll Spy */
.navigation li a.isactive {
	color: var(--blue);
}
/* scroll SPy end */


.scroll-margin{
	scroll-margin: 40px;
}

.scroll-margin2{
	scroll-margin: 80px;
}



/* BASE STYLEZ ENDE */










/* NAV */
.impdat {
	display: none;
}





/* NAVIGATION */
.navbar {
	max-width: 1500px;
	margin: 0 auto;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 2fr;
	grid-template-columns: 1fr 2fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	height: 90px;
	overflow: hidden;
	padding: 0 1rem;
	/* gap: 50px;
	*/
}
.logo {
	width: 100%;
	max-width: 180px;
}
.navbar ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-grid-column-align: end;
	justify-self: end;
}
.navbar ul li a {
	font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
	font-size: 20px;
	letter-spacing: 1.8px;
	color: #fff;
	margin: 0px 8px;
	/* padding: 0.5rem 0rem 0.2rem 0rem;
	*/
	padding-bottom: 0.2rem;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}


.navbar ul li a:hover {
	color: var(--blue);
}
/* SOCIALS */
.instagram img{
	max-width: 30px;
	margin-left: 15px;
}
.facebook img{
	max-width: 30px;
	margin-left: 15px;
}
/* MOBILE MENU & ANIMATION */
.menu-toggle .bar {
	width: 25px;
	height: 3px;
	background-color: var(--blue);
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.menu-toggle {
	-ms-grid-column-align: end;
	justify-self: end;
	margin-right: 15px;
	top: 30%;
	display: none;
	z-index: 10000;
}
.menu-toggle:hover {
	cursor: pointer;
}
#mobile-menu.is-active .bar:nth-child(2) {
	opacity: 0;
}
#mobile-menu.is-active .bar:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
	background-color: var(--blue);
}
#mobile-menu.is-active .bar:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
	background-color: var(--blue);
}
/* NAV END --> */




.start-header{
	position: relative;
}

header {
	position: -webkit-sticky;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border-bottom: 1px solid var(--grey);
	z-index: 1000000;
	-webkit-filter: drop-shadow(0px -8px 10px rgba(0, 0, 0, 0.5));
	filter: drop-shadow(0px -8px 10px rgba(0, 0, 0, 0.5));
}


.nav-elements{
	width: 100%;
	max-width: 1088px;
	position: absolute;
	top: 130px;
	place-self: center;
	display: flex;
	justify-content: space-between;
	padding:0 2rem 20px 2rem;
	border-bottom: 1px solid grey;


}

.nav-elements  img{
	max-width: 20px;
	margin-right: 10px;
}

.element{
	display: flex;
	align-items: center;

}

.element a{
	color: var(--grey);
	transition: 0.3s ease;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.element a:hover{
	color: var(--blue);
}


/* CTA HEADER */

.cta-header{
position: absolute;

  top: 48%;
  left: 25%;
  transform: translate(-50%, -22%);
}

.cta-header h1{
	color: white;
	
}

.cta-header p{
	width: 100%;
	max-width: 470px;
	color: white;
	white-space: pre;
	margin-top: 18px;
}
.cta-header a{
	
	display: inline-block;
	background-color: var(--blue);
	padding: 12px 20px;
	border-radius: 10px;
	color: white;
	transition: 0.3s ease;
	margin-top: 40px;
}

.cta-header a:hover{
	color: var(--blue);
	background-color: white;
}



/* ÜBER UNS */

#ueberuns{
	
	padding: 81px 2rem 100px 2rem;
	

}

#ueberuns .wrapper{
	flex-wrap: wrap;
}

#ueberuns img{
	max-width: 550px;
}

#ueberuns p{
	width: 100%;
	max-width: 620px;
	white-space: pre-wrap;
	margin-top: 34px;
}

span.blue-text{
	color: var(--blue);
	font-family: 'Segoe UI Bold', Tahoma, Geneva, Verdana, sans-serif;
}

/* ÜBER UNS ENDE */

/* LEISTUNGEN */

#leistungen{
	padding: 0 2rem;
	background-color: white;
	position: relative;
}


.bg-leistung{
	position: absolute;
	width: 100%;
	max-width: 369px;
	left: 0;
	top: 180px;
}

#leistungen .wrapper{
	align-items: flex-start;
	flex-wrap: wrap;
}

#leistungen h1{
	text-align: center;
	padding: 80px 0;
}

.leistung{
	width: 100%;
	max-width: 320px;
	display: flex;
	flex-direction: column;
}

.leistung img{

	margin-bottom: 90px;
}

.leistung p{
	margin-left: 15px;
	white-space: pre-wrap;
	min-height: 530px;
	padding:20px 15px;
}

.leistung.grey p{
	background-color: rgba(128, 128, 128, 0.041);
}


/* CTA LEISTUNG */

.cta-leistungen{
	display: flex;
    justify-content: center;
	padding: 80px 0;
}


.cta-leistungen a{

	display: inline-block;
	background-color: var(--blue);
	padding: 12px 20px;
	border-radius: 10px;
	color: white;
	transition: 0.3s ease;
	margin-top: 40px;
}

.cta-leistungen a:hover{
	color: var(--blue);
	background-color: var(--grey);
}

/* LEISTUNGEN ENDE */


/* KONTAKT */

#kontakt{
	padding: 0 2rem;
}

#kontakt h1{
	text-align: center;
	padding: 80px 0;
}

#kontakt .wrapper{
	flex-wrap: wrap;
	justify-content: space-around;
}


.kontakt-info h2{
	margin-bottom: 50px;
}

.kontakt-info h2 span{
	color: var(--blue);
}

.kontakt-info img{
	width: 100%;
	max-width: 320px;
	margin-top: 50px;
}

.kontakt-info p a{
	color: black;
	transition: 0.3s ease;
}

.kontakt-info p a:hover{
	color: var(--blue);
}

.form{
	width: 100%;
	max-width: 560px;
	
}

#awf-ID99 > div > label:nth-child(3) > a{
	color: var(--blue) !important;
}

.cta-kontakt{
	text-align: center;
	padding: 110px 0;
}

/* KONTAKT ENDE */

/* FOOTER */

footer{
	background-color: white;
	padding: 18px 2rem;
	text-align: center;
}

footer a, footer p{
	font-size: 14px;
	transition: 0.3s ease;
	color: black;
}


footer a:hover{
	color: var(--blue);
}

footer p{
	margin-top: 8px;
}

/* FOOTER ENDE */


/* IMPRESSUM */
.impressum {
	max-width: 1364px;
	margin: 0 auto;
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 6;
	grid-area: datenschutz;
	color: black;
	padding: 2rem 2rem;
	z-index: 1;
	margin-top: 4rem;
	margin-bottom: 4rem;
}
.impressum p {
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 2px;
	text-align: justify;
}
.impressum span {
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--blue);
}
.impressum a {
	font-size: 1.05rem;
	color: black;
	-webkit-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}
.impressum a:hover {
	color: var(--blue);
}
/* IMPRESSUM ENDE ---> */


/* DATENSCHUTZ */

.datenschutz {
	max-width: 1364px;
	margin: 0 auto;
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 6;
	grid-area: datenschutz;
	color: black;
	padding: 2rem 2rem;
	z-index: 1;
	margin-top: 4rem;
	margin-bottom: 4rem;
}
.datenschutz p {
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 2px;
	text-align: justify;
}
.datenschutz span {
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--blue);
}
.datenschutz a {
	font-size: 1.05rem;
	color: black;
	-webkit-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}
.datenschutz a:hover {
	color: var(--blue);
}