@font-face {
	font-family:"Font Awesome 5 Free";
	font-style:normal;
	font-display:swap;
	src:url(fa-solid-900.eot);
	src:url(fa-solid-900.eot?#iefix) format("embedded-opentype"),
		url(fa-solid-900.woff2) format("woff2"),
		url(fa-solid-900.woff) format("woff"),
		url(fa-solid-900.ttf) format("truetype"),
		url(fa-solid-900.svg#fontawesome) format("svg");
}
.fas{font-family:"Font Awesome 5 Free";font-style:normal;}
.fa-map-marker-alt:before{content:"\f3c5"}
.fa-phone-alt:before{content:"\f879"}
.fa-fax:before{content:"\f1ac"}
.fa-envelope:before{content:"\f0e0"}

html, body {
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
}

body {
	font-family: arial, helvetica, sans-serif;
	font-size: 12px;
	position: relative;
}

body::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 20vh;
	height: 200px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
body[class^="theme-"]::before {
	box-shadow: 0px 0px 50px 50px rgba(255, 255, 255, 0.5);
}

body.theme-aluminium::before {
	background-image: url(../images/background_aluminium.jpg);
}
body.theme-darkwood::before {
	background-image: url(../images/background_darkwood.jpg);
}
body.theme-frostedglass::before {
	background-image: url(../images/background_frostedglass.jpg);
}
body.theme-lightwood::before {
	background-image: url(../images/background_lightwood.jpg);
}

a {
	transition: all 0.3s ease-in-out;
}
a,
a:link,
a:visited {
	color: #958A85;
	text-decoration: none;
}
a.active {
	color: #EB6909;
}
a:hover,
a:focus {
	color: #EB6909;
	text-decoration: underline;
}

img {
	height: auto;
	max-width: 100%;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link:focus {
	left: 0;
	top: 0;
	width: auto;
	height: auto;
	padding: 1rem;
	background: #000;
	color: #FFFFFF;
	z-index: 1000;
}

.container {
	background-color: #FFFFFF;
	box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
	z-index: 1;
}

#header {
	margin-bottom: 1rem;
}
#navigation ul,
#footernavigation ul {
	margin: 0;
	padding: 0 ;
	list-style: none;
}

#navigation a {
	font-size: 1rem;
}

#main-content {
	color: #773a07;
	flex-grow: 2;
	font-size: 1rem;
}
#main-content a,
#main-content a:link,
#main-content a:visited {
	text-decoration: underline;
}
#main-content a:hover,
#main-content a:focus {
	text-decoration: none;
}
#main-content .card {
	border: 0 none;
	border-radius: unset;
	height: 100%;
}

@media (max-width: 991px) {
	.navbar {
		height: 100px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.175);
	}
	#navigation {
		position: absolute;
		top: 100%;
		background: white;
		left: -1rem;
		right: -1rem;
		box-shadow: 0px 5px 3px -1px rgba(0, 0, 0, 0.5);
	}
	#navigation ul {
		padding: 0 2rem 1rem 2rem;
	}
	#navigation li {
		border-bottom: 1px solid rgba(0, 0, 0, 0.175);
	}
	#navigation li:last-child {
		border-bottom: 0 none;
	}
	#navigation a {
		display: block;
		line-height: 2.5rem;
		padding-left: 1rem;
	}
	#navigation a:hover,
	#navigation a:focus {
		background-color: #EEEEEE;
	}
	.navbar-toggler:focus {
		box-shadow: none;
	}
	.navbar-brand {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	.navbar-brand img {
		max-height: 75px;
		max-width: fit-content;
	}
	#footernavigation a {
		line-height: 2rem;
	}
}
@media (min-width: 992px) {
	#header {
		margin-bottom: 3rem;
	}
	#header .navbar > .container-fluid {
		align-items: end;
	}
	#navigation {
		position: relative;
	}
	#navigation ul {
		position: relative;
		float: left;
	}
	#navigation li {
		margin: 0;
		padding: 0 12px 0 12px;
		border: 0px solid;
		border-right: 1px #d7d0cb solid;
		float: left;
	}
	#navigation li:first-child {
		padding: 0 12px 0 0;
		border-right: 1px #d7d0cb solid;
	}
	#navigation li:last-child {
		padding: 0 0 0 12px;
		border: 0px;
	}
	#footernavigation ul {
		float: right;
		position: relative;
	}
	#footernavigation li {
		margin: 0;
		padding: 0 12px 0 12px;
		border: 0px solid;
		border-right: 1px #d7d0cb solid;
		float: left;
	}
	#footernavigation li:last-child {
		border-right: 0 none;
	}
}