@charset "utf-8";
/* CSS Document */
* {
    box-sizing: border-box;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
    font-size: 16px;
    color: #000000;
    text-align: left;
    overflow-x: hidden;
	scroll-behavior: smooth;
}

:root {
    --mobile:false;
}

*::-webkit-scrollbar-track, *::-webkit-scrollbar-button {
	display: none;
}
*::-webkit-scrollbar-thumb {
    display: inline;
	background-color: rgba(0, 0, 0 , 0.5);
	border-radius: 2px;
    z-index: 10;
}
*::-webkit-scrollbar {
	width: 5px;
	height: 5px;
    z-index: 10;
}
*::selection {
    color: #FFFFFF;
    background-color: #000000;
}


html, body {
    display: block;
    width: 100%;
    min-height: 100vh;
    background-color: #FFFFFF;
}

.logo {
    display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
    color: #FFFFFF;
	font-size: 3em;
    text-decoration: none;
	overflow: hidden;
    -moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 75px;
	padding: 0 5%;
    background-color: #0066FF;
    color: #FFFFFF;
    z-index: 10;
    -moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;
}
nav menu {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    height: 100%;
}
nav menu a {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    padding: 0 50px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
}
nav menu a:hover {
    background-color: #1E78FF;
}

main {
    display: block;
    width: 100%;
    height: auto;
}
main section {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}
main section:first-of-type {
    display: block;
    width: 100%;
	height: calc(100vh - 125px);
	margin-top: 100px;
}
main section h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 125px;
    margin-bottom: 25px;
    background-color: #0066FF;
	color: #FFFFFF;
    font-size: 2em;
	font-weight: 500;
    text-transform: uppercase;
}
main section h1::before, main section h1::after {
    content: '✧';
    margin: 0px 10px;
    transform-origin: center;
    transition: 0.5s;
}
main section:hover h1::before, main section:hover h1::after {
    transform: scale(1.2);
}
main section h3 {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 0;
    font-size: 1.5em;
    text-transform: uppercase;
}
main section h5 {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 0;
    padding-top: 25px;
    font-size: 1em;
    text-transform: uppercase;
}
main section h6 {
    display: block;
    width: 100%;
    height: auto;
    font-size: 1em;
    padding-top: 20px;
    font-weight: 600;
}
main section img {
    display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	border-radius: 5px;
	object-fit: cover;
	object-position: center center;
}
main section br {
    display: block;
    width: 100%;
    height: 1px;
	margin-bottom: 10px;
}
.text br {
    display: block;
    width: 100%;
    height: 1px;
	margin-bottom: 5px;
}
main section a {
    display: block;
    width: 100%;
    padding: 5px 0;
}
main section a[href^="https://"]::before, main section a[href^="http://"]::before {
    content: '\238B Website:';
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    pointer-events: none;
}
main section a[href^="mailto:"]::before {
    content: '\2709 E-Mail:';
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    pointer-events: none;
}
main section a[href^="callto:"]::before {
    content: '\260F Handy:';
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    pointer-events: none;
}
main section a[href^="tel:"]::before {
    content: '\260F Telefon:';
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    pointer-events: none;
}
main section a[href^="fax:"]::before {
    content: '🖷 Fax:';
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    pointer-events: none;
}
main section .LinkInline {
    display: inline-block;
    width: auto;
    padding: 0 5px;
    margin-bottom: -4px;
}
main section .text {
	display: block;
	width: 100%;
	height: 100%;
    padding: 5px 5%;
	overflow: hidden;
}
main section .ImgGridBig {
	display: grid;
	grid-template-columns: 50% 50%;
	width: 100%;
	height: 100%;
    padding: 5px 5%;
	overflow: hidden;
}
main section .ImgGridBig img {
	width: 90%;
	height: 100%;
}
main section .ImgGridBig div {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: center;
	width: 90%;
	height: 100%;
	margin: 0 auto;
	text-align: justify;
}
main section .ImgGridSmall {
	display: grid;
	grid-template-columns: 50% 50%;
	width: 100%;
    padding: 5px 5%;
	overflow: hidden;
}
main section .ImgGridSmall img {
	width: 90%;
	height: 100%;
}
main section .ImgGridSmall div {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: center;
	width: 90%;
	height: 100%;
	margin: 0 auto;
	text-align: justify;
}
main section .ReviewGridFour {
    display: grid;
    grid-template-columns: calc(25% - 1px) 1px calc(25% - 1px) 1px calc(25% - 1px) 1px calc(25% - 1px);
    width: 100%;
    padding: 5px 5%;
}
main section .ReviewGridFour hr {
    display: block;
    width: 1px;
    height: 100%;
}
main section .ReviewGridFour div {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 5%;
}
main section .ReviewGridFour div p {
    display: block;
    width: 100%;
    height: auto;
}
main section .ReviewGridFour div span {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 5px;
}
main section .ReviewGridFour div span::before {
    content: '-';
    margin-right: 10px;
    transition: 0.5s;
}
main section .ReviewGridFour div:hover span::before {
    margin-left: 15px;
}

footer {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
	padding: 0 5%;
    background-color: #0066FF;
    -moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;
}
footer p {
    display: block;
    padding: 0 15px;
}
footer menu {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    height: 100%;
}
footer menu a {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    padding: 0 50px;
	color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
}
footer menu a:hover {
    background-color: #1E78FF;
}

@media only screen and (min-width: 2500px) {
	html, body {
		max-width: 2500px;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 1000px) {
	nav {
		flex-flow: column;
    	height: 125px;
	}
    nav menu {
        height: 75px;
        overflow: hidden;
	}
    nav menu a {
        height: auto;
        padding: 15px 20px;
        overflow: hidden;
	}
	main section:first-of-type {
		height: calc(100vh - 150px);
		margin-top: 125px;
	}
	main section .ImgGridBig {
		grid-template-columns: 100%;
		grid-template-rows: 50% auto;
		padding: 5px 5%;
		overflow: hidden;
	}
	main section .ImgGridSmall {
		grid-template-columns: 100%;
		grid-row-gap: 20px;
		height: auto;
	}
    main section .ReviewGridFour {
		grid-template-columns: 100%;
		grid-row-gap: 20px;
	}
	main section .ReviewGridFour hr {
		width: 100%;
		height: 1px;
	}
	footer {
		flex-flow: column;
    	height: 100px;
	}
}
@media only screen and (max-width: 600px) {
    :root {
        --mobile:true;
    }
    nav {
		height: auto;
	}
    nav::after {
		content: attr(nav-icon);
        position: absolute;
        top: calc(50% - (35px / 2));
        right: 5px;
        display: block;
        width: 35px;
        height: 35px;
        font-size: 2.7em;
        line-height: 30px;
        text-align: center;
        overflow: hidden;
	}
	nav menu {
		flex-flow: column;
        width: auto;
        height: 0px;
	}
    nav menu a {
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        padding: 10px 50px;
    }
    main section:first-of-type {
		height: calc(100vh - 100px);
		margin-top: 75px;
	}
    main section h1 {
        font-size: 1.5em;
    }
    main section h1 {
        font-size: 1.25em;
    }
}