@charset "UTF-8";
/* 
Name: style.css
Description: CSS-Datei für Santmann Treuhand und Revisions AG
Version: 1.0
*/

/* ########## STANDARTEINSTELLUNGEN ########## */

html {
	padding: 0;
	font-size: medium;
}

body {
	background-color: #e3e3e3;
	background-image: url();
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	margin: 0;
	padding: 0;
}

/* ########## HEADER ########## */

/* Header ----------*/
header {
	width: 100%;
	background-color: #000066;
}

header .flex-box-sm {
	height: 120px;
	align-items: center;
}

/* Logo ----------*/
header .logo img {
	height: 100px;
}

/*Menu-Button ----------*/
header .menu .menu-button {
	display: none;

}

/* Menu ----------*/
header .menu {
	text-align: right;
	font-size: 18px;
}

header .menu ul li {
	list-style: none;
	display: inline;
	margin: 0 0 0 15px;
}

header .menu ul li:first-child {
	margin: 0;
}

header .menu ul li a {
	color: #fff;
	text-decoration: none;
	transition: all 500ms;
	position: relative;
	top: 0;
}

header .menu ul li a:hover {
	color: #A3D0FF;
}

.nav-img {
	height: 15px;
	padding-right: 8px;
	text-shadow: #333333;
}

/* ########## BANNER & INHALT ########## */

/* Banner ----------*/

.banner {
	width: 100%;
	height: 550px;
	background-image:url(../images/wasserspiel.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-top: -34px;
}

.banner .overlay {
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(227, 227, 227, 0.01) 80%, rgba(227, 227, 227, 0.8) 100%)
}

.banner h1 {
	text-align: center;
	color: rgba(244, 244, 244, 0.9);
	font-family: 'Courgette', cursive;
	font-size: 3.125rem;
	padding-top: 120px;
	text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
}

/* Inhalt ---------*/
.inhalt .flex-box-sm {
	margin: 50px 15px 10px 15px;
	padding: 30px 0px 30px 0px;
	width: auto;
}

.inhalt h2 {
	font-size: 1.188rem;
	padding: 0px 10px 0px 20px;
	margin-top: -20px;
	color: #0B64DD;
}

.inhalt h3 {
	font-size: 1.063rem;
	color: #003399;
	padding: 10px 10px 0px 20px;
	margin: 0;
}

.inhalt p {
	text-align: justify;
	color: #003399;
	line-height: 1.5;
	font-size: 1rem;
	padding: 0px 10px 0px 20px;

}

.inhalt ul {
	line-height: 1.8;
	padding: 15px 10px 15px 20px;
	list-style: none;
	border: solid 1px #DADADA;
}


.inhalt a {
	text-decoration: none;
	color: #003399;
}

.inhalt a:hover {
	color: #0066FF;
}

.inhalt img {
	height: 200px;
}

table {
	border-collapse: collapse;
}

tr:first-child {
	border-top: 0 none;
}

th, td {
	font-size: 1rem;
	padding: 15px 15px 15px 20px;
	vertical-align: top;
	text-align: left;
	line-height: 1.5;
	color: #003399;
}

thead tr, tr:nth-child(even) {
	background-color: #EAEAEA;
}

th {
	font-size: 1.2em;
}

tbody th {
	text-align: left;
}

td:last-child {
	min-width: 180px;
}

img:not(:first-child) {
	margin-left: 5px;
}

table {
	width: 100%;
}

td {
	text-align: left;
}

table a {
	white-space: nowrap;
}


/* ################# FOOTER ################# */
footer {
    width: 100%;
    background-color: #000066;
    color: #fff;
	text-align: center;
}

footer .flex-box-sm {
    height: 100px;
    align-items: center;
	padding-top: 10px;
	margin-top: 30px;
}

footer .adresse p{
font-size:12px;
}

footer .adresse a {
	color: #fff;
    text-decoration: none;
	transition: all 500ms;
}

footer .adresse a:hover {
 text-decoration: none;
	color: #A3D0FF;
}

footer .copyright p{
font-size:10px;
}


/* ################### MOBILE ANPASSUNG ################################## */
@media screen and (max-width: 1024px) {

/* Header ----------*/
header .flex-box-sm {
	height: 100px;
}

/* Logo ----------*/
header .logo img {
	height: 80px;
}

.banner h1 {
	font-size: 2.5rem;
	text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.8);
}


table {
	width: 100%;
	margin: 0;
	border: none;
}


td {
	hyphens: auto;
}

table a {
	white-space: normal;
	hyphens: none;
}


@media screen and (max-width: 768px) {

header {
	background-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
}

header .flex-box-sm {
	height: auto;
}

/* Logo ----------*/
header .logo {
	font-size: 1.125rem;
	padding-top: 10px;
	background-color: #000066;
	height: 75px;
	z-index: 10;
}

header .logo img {
	height: 65px;
	padding-left: 25px;
}


/*Menu-Button ----------*/
header .menu .menu-button {
	display: block;
	position: absolute;
	top: 20px;
	right: 30px;
	height: 19px;
	cursor: pointer;
	z-index: 20;
}

/* Menu ----------*/
header .menu {
	text-align: center;
	font-size: 1rem;
}

header .menu nav {
	background-color: rgba(62, 82, 154, 0.98);
	padding: 10px 0;
	display: none;
	position: relative;
}

header .menu nav.open-menu {
	display: block;
	animation: open-menu 250ms ease-out 0s normal forwards;
}

header .menu nav.close-menu {
	display: block;
	animation: close-menu 250ms ease-out 0s normal forwards;
}

header .menu ul li, header .menu ul li:first-child { 
	list-style: none;
	display: block;
	margin: 0;
	padding: 7px 0 14px 0;
	border-bottom: solid 1px #67729a;
}

.menu ul li:last-child {
	border-bottom: 0;
}



/* ########## BANNER & INHALT ########## */
/* Banner ----------*/

.banner {
	margin-top: 60px;
	height: 380px;
}

.banner .overlay {
	width: 100%;
}

.banner .overlay h1 {
	font-size: 1.875rem;
	color: rgba(255, 255, 255, 0.9);
	padding-bottom: 6px;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8);
}

.banner .overlay p {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}


/* Inhalt ---------*/

.inhalt .flex-box-sm {
	margin: 0px 15px 20px 15px;
	padding: 30px 0px 0px 0px;
	width: auto;
}

.inhalt h2 {
	font-size: 1.125rem;
	padding: 120px 10px 0px 15px;
	margin-left: 5px;
}

.inhalt h3 {
	font-size: 1rem;
}

.inhalt p {
	text-align: left;
	line-height: 1.5;
	padding-left: 20px;
	font-size: 0.938rem;
}

tr, th, td {
 	display: block;
}
	
tr {
	padding: 15px;
	border-top: 0 none;
}
	
th {
	padding: 0;
}
	
td {
	padding: 0px 5px 5px 5px;
	font-size: 0.938rem;
}	
	

/* ########## FOOTER ########## */
footer .flex-box-sm {
height: auto;
padding: 15px; 
flex-direction: column-reverse;
}

footer .copyright, footer .adresse {
text-align: center;
margin-bottom: 5px;
}


@media screen and (max-width: 450px) {

header .flex-box-sm {
	height: 100px;
}

/* Logo ----------*/
header .logo img {
	padding-left: 20px;
}

/* Banner ----------*/
.banner {
	margin-top: -10px;
	height: 320px;
}

/*Menu-Button ----------*/
header .menu .menu-button {
	right: 20px;
	height: 18px;
}

/* Menu ----------*/
header .menu {
	font-size: 0.938rem;
}

header .menu nav {
	padding: 8px 0;
}

header .menu ul li, header .menu ul li:first-child { 
padding: 5px 0 8px 0;
}

/* Inhalt ---------*/

.inhalt .flex-box-sm {
	margin: 0px 10px 20px 10px;
	padding: 30px 10px 0px 10px;
}

.inhalt p {
	font-size: 0.875rem;
}

td {
	font-size: 0.875rem;
}

footer .flex-box-sm {
padding: 15px 20px; 
}



@media screen and (max-width: 380px) {

/* Logo ----------*/
header .logo img {
	padding-left: 15px;
}

header .menu .menu-button {
	height: 15px;
}

header .menu ul li a {
	font-size: 0.75rem;
}

.banner .overlay h1 {
	font-size: 1.75rem;
	padding-top: 140px;
}

.inhalt .flex-box-sm {
	margin: 0;
	padding: 30px 10px 10px 10px;
}

.inhalt h2 {
	padding: 110px 0px 0px 15px;
}

.inhalt p {
	font-size: 0.813rem;
}

td {
	font-size: 0.813rem;
}


