/* Variablen für Farben */
:root {
    --white: #ffffff;
	--black: #000000;
    --blue: #274a70;
	--blue2: #336091;
    --red: #dd0a51;
    --green: #dcefe7;
    --greyb: #f7f7f7;
    --greyd: #e3e6ea;
}

/* Stil für den quadratischen Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;             /* Abstand vom unteren Rand der Seite */
  right: 20px;              /* Abstand vom rechten Rand der Seite */
  width: 50px;              /* Quadratische Breite */
  height: 50px;             /* Quadratische Höhe */
  background-color: var(--blue);
  color: var(--white);	  		/* Weiße Schriftfarbe */
  font-size: 16px;          /* Schriftgröße für den Text */
  border-radius: 5px;       /* Abgerundete Ecken mit 2px */
  text-decoration: none;    /* Entfernt die Unterstreichung */
  display: flex;            /* Flexbox für zentrierten Text */
  justify-content: center;  /* Horizontal zentrieren */
  align-items: center;      /* Vertikal zentrieren */
  opacity: 0;               /* Anfangs unsichtbar */
  visibility: hidden;       /* Anfangs unsichtbar */
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Sanftes Einblenden */
  z-index: 1000;            /* Höherer z-index, damit der Button immer oben bleibt */
}

#top {
  position: relative;
  top: -70px;        /* zieht das Ziel 60px höher */
  visibility: hidden; /* unsichtbar, damit kein Layout entsteht */
  height: 0;          /* kein zusätzlicher Platzbedarf */
}

/* Wenn der Benutzer nach unten scrollt, wird der Button sichtbar */
body:not(:first-child) .scroll-to-top {
	opacity: 1;
	visibility: visible;
}

/* Hover-Effekt */
.scroll-to-top:hover {
	background-color: var(--blue2);
	color: var(--white);
}

a.myb:link {color: var(--blue); text-decoration: none;}
a.myb:hover {color: var(--black);}
a.myb:visited {color: var(--blue);}
a.myb:active {color: var(--blue);}

a.myw:link {color: var(--white); text-decoration: none;}
a.myw:hover {color: var(--greyb);}
a.myw:visited {color: var(--white);}
a.myw:active {color: var(--white);}

p {
	font-size: 15px;
}

.my15 {
	font-size: 15px;
}


strong {
  font-weight: 900;
}

h2 {
	font-size: 26px;
    font-weight: bold;
	text-transform: uppercase;
	margin-top: 2px;
}

h3 {
	font-size: 25px;
    font-weight: bold;
}

h4 {
	font-size: 18px;
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: -20px;
}

h5 {
	font-size: 30px;
    font-weight: bold;
	margin-top: 20px;
}

h6 {
	font-size: 18px;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: -5px;
}

h7 {
	font-size: 16px;
	font-weight: bold;
}

li {
	font-size: 13px;
}

.listsmal li {
	font-size: 12px;
	margin-left: -30px;
	padding-bottom: 3px;
}

.listsmal a {
	text-decoration: none;
}

.unterlistsmal li {
	font-size: 12px;
	margin-left: -60px;
}

.unterlistsmal a {
	text-decoration: none;
}


.big {
	font-family: "Arial Black", Gadget, sans-serif;
}

.big-blue {
	color: var(--blue);
	font-weight: bold;
}

.big-red {
	color: var(--red);
	font-weight: bold;
}


body {
	font-family: Arial, sans-serif;
    background-color: var(--white);
	color: var(--blue);
}


/* Content */
.content {
	position: relative;
	max-width: 80%;
	margin-left: 10%;
}


.header-container {
    display: flex;
    justify-content: space-between; /* Platziert Logo und Navigation nebeneinander */
    align-items: center; /* Vertikale Ausrichtung */
    margin-top: 20px; /* Abstand vom oberen Rand */
}


/* Logo */
.logo {
    position: left;
	margin: 10px 30px 30px 0px;
}

.logo img {
    max-width: 100%;
	height: auto;
}


/* Navigation */
nav {
    position: relative;
}

nav ul {
    display: flex;
    list-style-type: none;
    justify-content: flex-start;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
	font-weight: bold;
	color: var(--blue);
    font-size: 14px;
    transition: color 0.3s ease; /* sanfter Übergang bei Hover */
}

nav ul li a:hover {
	border-bottom: 3px solid var(--red);
}

/* Burger-Menü Button (initial nicht sichtbar) */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
	z-index: 1000;
}

.burger-menu div {
    background-color: var(--blue);
    height: 5px;
    width: 100%;
}


/* Head */
.head {
    position: relative;
	
}

.head img {
	max-width: 100%;
}


/* Sektionen */
section {
}


.box {
	margin: -20px;
	margin-top: -10px;
	padding: 20px;
}

/* Eine Spalte */
.col1 {
	padding-left: 20%;
	padding-right: 20%;
	padding: 50px;
}

/* Zwei Spalten */
.col2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.col2 .column {
    padding: 30px;
    width: 50%;
    box-sizing: border-box;
}

/* Padding für die linke und rechte Spalte */
.col2 .column.left {
    padding-left: 22%;
}

.col2 .column.right {
    padding-right: 22%;
}

.col2 .img1 {
    max-width: 100%;
    height: auto;
}

.col2 .img2 {
	object-fit: cover;
    width: 100%;
    height: 100%;
}

.col2 .img3 {
	object-fit: cover;
    width: calc(100% + 50px);
    height: calc(100% + 100px);
	margin: -50px 0px -50px;
}


/* Eine Spalte */
.colj1 {
	margin-left: 15%;
	margin-right: 15%;
	padding-left: 7%;
	padding-right: 7%;
	padding-top: 50px;
	padding-bottom: 10px;
}

/* Eine Spalte */
.coljs1 {
	margin-left: 22%;
	margin-right: 22%;
	margin-top: -20px;
	padding-top: 16px;
}

/* Zwei Spalten */
.colj2 {
    display: flex;
    justify-content: space-between;
    width: 85%;
	padding-left: 15%;
    box-sizing: border-box;
}

.colj2 .column {
    padding: 50px;
    width: 50%;
    box-sizing: border-box;
}

/* Padding für die linke und rechte Spalte */
.colj2 .column.left {
    padding-left: 10%;
}

.colj2 .column.right {
    padding-right: 10%;
}

.colj2 .img1 {
    max-width: 100%;
    height: auto;
}

.colj2 .img2 {
	object-fit: cover;
    width: 100%;
    height: 100%;
}

.colj2 .img3 {
	object-fit: cover;
    width: calc(100% + 50px);
    height: calc(100% + 100px);
	margin: -50px 0px -50px;
}


.greyb {
	background-color: var(--greyb);
}

.greyd {
	background-color: var(--greyd);
}

.blue {
	background-color: var(--blue);
	color: var(--white);
}
.red {
	background-color: var(--red);
	color: var(--white);
}

.green {
	background-color: var(--green);
}



@media (max-width: 1400px) {
	.content {
		max-width: 100%;
        margin-left: 0;
        margin-right: 0;
	}
}

@media (max-width: 800px) {
    .col2 {
        flex-direction: column; /* Spalten untereinander anordnen */
    }

    .col2 .column {
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
		padding-top: 20px;
		padding-bottom: 20px;
    }
	
    .colj2 {
        flex-direction: column; /* Spalten untereinander anordnen */
    }

    .colj2 .column {
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
		padding-top: 20px;
		padding-bottom: 20px;
    }

	.col2 .column.left {
    padding-left: 10%;
	}

	.col2 .column.right {
		padding-right: 10%;
	}
	
    .burger-menu {
        display: flex;
    }

    /* Navigation */
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: -110px;
        width: 140px;
        background-color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 9999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
		 box-sizing: border-box;
    }

    /* Navigation anzeigen, wenn das Burger-Menü geöffnet wird */
    nav ul.open {
        display: flex;
        transform: translateY(0);
    }

    nav ul li {
        margin-right: 0;
        margin-bottom: 10px;
		text-align: right;
        padding-right: 20px;
    }

    nav ul li a {
        font-size: 14px;
    }
}


@media (max-width: 600px) {
	.colj1 {
		margin-left: 0%;
		margin-right: 0%;
		padding-left: 7%;
		padding-right: 7%;
		padding-top: 50px;
		padding-bottom: 10px;
	}

	/* Eine Spalte */
	.coljs1 {
		margin-left: 0%;
		margin-right: 0%;
		padding-top: 20px;
	}
	
    .colj2 {
        flex-direction: column; /* Spalten untereinander anordnen */
    }

    .colj2 .column {
        width: 144%;
		margin-left: -22%;
        padding-left: 10%;
        padding-right: 10%;
		padding-top: 20px;
		padding-bottom: 20px;
    }
	
	.col2 .column.left {
    padding-left: 10%;
	}

	.col2 .column.right {
		padding-right: 10%;
	}

	
	a.myw:link {
		font-size: 12px;
	}
}

