@charset "UTF-8";
/* CSS Document */

/*zurücksetzen der browser-css*/
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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/*HTML5 display-role reset for older browsers*/
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}




/*-----custom css-----*/

/*-----allgemein-----*/
@font-face {
	font-family: "Barlow-Regular", sans-serif;
	src: url("font/Barlow-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Barlow-Medium", sans-serif;
	src: url("font/Barlow-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}

:root {
	--orange: #ff7800;
	--brown: #803216;
	--beige: #ece0dc;
	--white: #ffffff;
}

html {scroll-behavior: smooth;}

body {
	font-family: "Barlow-Regular", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1em;
	line-height: 1.4;
	color: var(--brown);
	background-color: var(--white);
}

img {width: 100%;}

.wrapper {
	width: 90%;
	max-width: 90em;
	margin: 0 auto;
}

hr {
	border: none;
	background-color: rgba(128, 50, 22, 0.2);
	height: 1px;
	margin: 1.5em 0;
}


/*-----grid-----*/
.col_2 {
	width: 50%;
	float: left;
	padding: 1em;
}

.col_1-3 {
	width: calc(100%/3);
	float: left;
	padding: 1em;
}

.col_2-3 {
	width: calc((100%/3)*2);
	float: left;
	padding: 1em;
}


/*-----schriftdeklaration-----*/
h1{
	font-family: "Barlow-Medium", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 2em;
	line-height: 1.2;
	text-align: center;
	text-wrap: balance;
	color: var(--orange);
	display:flex;
	justify-content: center;
}

p {
	font-family: "Barlow-Regular", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.25em;
}

a {
	font-family: "Barlow-Regular", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1em;
	text-decoration: none;
}


/*-----navigation-----*/
nav {
	width: 100%;
	background-color: var(--beige);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.nav {
	min-height: 10em;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-left {
	display: flex;
	align-items: flex-end;
}

.logo {
	max-width: 11em;
	cursor: pointer;
}

nav p {
	font-size: 1em;
	padding: 0 0 0.25em 2em;
}

.BAG {
	font-family: "Barlow-Medium", sans-serif;
	font-weight: 500;
	font-style: normal;
}

/*-----content-----*/

/*-----video-start-----*/

header {
	height: 88vh;
	padding-top: 10em;
}

.background-video, video[poster] {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*-----video-end-----*/

#leistungen {
	height: 12vh;
	display: flex;
	align-items: center;
}

#person {
	background-color: var(--beige);
	padding: 5em 0;
	display: flex;
}

#person img {padding-left: 0;}

#person .wrapper {max-width: 70em;}

footer {
	color: var(--white);
	background-color: var(--orange);
	padding: 4em 0;
	display: flex;
	justify-content: center;
	text-align: center;
}

.footer a {color: var(--white);}

.footer a:is(:hover, :focus) {color: var(--brown);}






/*-----responsive-----*/

/*-----desktop-----*/
@media screen and (min-width: 48.000em) {}


/*-----tablet-----*/
@media screen and (min-width: 36.000em) and (max-width: 48.000em) {
	
	.wrapper, #person .wrapper {max-width: 44em;}
	
	header {height: 72vh;}
	
	#leistungen {height: 23vh;}
	
}


/*-----smartphone-----*/
@media screen and (min-width: 0.000em) and (max-width: 36.000em) {
	
	.wrapper, #person .wrapper {max-width: 36em;}
	
	.col_1-3, .col_2-3 {width: 100%; padding: 1em 0;}
	
	h1 {font-size: 1.5em;}
	p, a {font-size: 1em;}
	
	.nav {min-height: 7.5em;}
	.logo {max-width: 9em; padding-top: 0.4em}
	nav p {display: none;}

	header {height: 67vh; padding-top: 7.5em;}

	#leistungen, #person {height: auto; padding: 2em 0;}
	
	footer {padding: 2em 0;}
	
}