@charset "utf-8";
/* Mobile zuerst */
/* ===== MOBILE FIRST BASIS ===== */

* {
    box-sizing: border-box;
}

body {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
	padding-top:100px;
}
#topline {
    display: none;
}
.navbar {
    display: none;
}
#mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 14px;

	background-image:url(../headlineWaves.gif);
    background-size: cover;

    z-index: 10000;
}

/* Titel links */
#mobile-title {
    color: #000000;
	padding-left: 85px;
    font-weight:normal;
    line-height: 1;
}

/* oben (klein) */
.title-top {
    font-size: 24px;
    opacity: 0.85;
	margin-bottom: 0px;
}

/* mitte (groß) */
.title-main {
    font-size: 26px;
    font-weight: 600;
}

/* unten (klein) */
.title-bottom {
    font-size: 16px;
    opacity: 0.85;
	margin-top: 3px;
}
/* Hamburger rechts */
#mobile-menu-button {
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}

#catcher {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

#catcherLeft {
    width: 60%;
    padding-left: 15px;
}

#catcherRight {
    width: 40%;
    padding-top: 0;
    top: 95px;
    position: sticky;
	align-self: flex-start;
}

#catcherLefttextfield {
	float:left;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100%;
	height: 340px;
	padding-left: 0px;
	padding-right: 0px;
	background-color: #EEEEF0;
}

catcherLefttextfield200 {
	float:left;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100%;
	height: 260px;
	padding-left: 0px;
	padding-right: 0px;
	background-color: #EEEEF0;
}

#catcherRight img {
    display: block;
    width: 100%;
    max-width: 350px;
    height: auto;
}

    #impressum {
        text-align: left;
        float: none;
    	background-color: #EEEEF0; 
    	width: 100%;
    }

    #impressum a {
        text-decoration: none;
    }

/* Texte */
h1 {
    font-size: 28px;
    line-height: 1.2;
    margin: 18px 0 12px 0;
}

h2 {
    font-size: 22px;
    margin: 22px 0 10px 0;
}

p {
    margin-bottom: 16px;
}

/* Bilder */ 
img,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Mobile Menü */
@media (max-width: 767px) {
    .navbar {
        position: fixed;
        top: 64px;
        right: 0;
        width: 50%;
        height: calc(100% - 64px);
        background: white;
        z-index: 10000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -4px 0 12px rgba(0,0,0,0.2);
        display: block;
    }

    .navbar.active {
        transform: translateX(0);
    }
}
.navbar a {
    display: block;
    padding: 16px;
    border-bottom: 1px solid #eee;
    font-size: 17px;

    text-decoration: none;
    color: #333;

    transition: background-color 0.2s ease, transform 0.1s ease;
    -webkit-tap-highlight-color: transparent;
}
.navbar a:hover {
    background-color: #f0f4ff;
}

.navbar a:active {
    background-color: #c8c8ff;
    transform: scale(0.98);
}
.navbar a.aktuell {
    background-color: #e0e6ff;
    font-weight: 600;
}

#mobile-overlay {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0,0,0,0.4);

    display: none;
    z-index: 9999;
}

#mobile-overlay.active {
    display: block;
}/* CTA Button */
.cta-button,
#termin-box a {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    font-size: 18px;
    border-radius: 10px;
    background: #c8c8ff;
    color: #ffffff;
    text-decoration: none;
}

/* Termin-Box NICHT fixed auf Mobile */
#termin-box {
    position: static;
    margin: 18px 0 24px 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    opacity: 1;
}
.leistungen-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 30px 0 50px 0;
}

.leistung-card {
    display: block;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 14px;
    text-decoration: none;
    color: #2b2b2b;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    min-height: 100px;
}

.leistung-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    border-color: #7aa7d9;
}

.leistung-card h3 {
    margin: 0 0 12px 0;
    font-size: 26px;
    line-height: 1.2;
    color: #1f4f82;
}

.leistung-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #555555;
}

.leistung-card-cta {
    background: #2a7de1;
    border-color: #2a7de1;
}

.leistung-card-cta h3,
.leistung-card-cta p {
    color: #ffffff;
}

.leistung-card-cta:hover {
    background: #1f67be;
    border-color: #1f67be;
}

/* Ab Tablet/Desktop ********************************************************************************************************/
@media (min-width: 768px) {/* CSS Document */
* {
    box-sizing: content-box; 
}

    #mobile-header {
        display: none;
    }
    body {
        padding-top: 0;
    }
    #catcher {
        display: flex;
        gap: 20px;
        padding: 0 0px;
    }

    #catcherLeft {
        flex: 2;
    }

    #catcherRight {
        flex: 1;
    }
body {
	background-color:#DDD;
	overflow:auto;
	font-family: Century;
	font-size: 14px;
    line-height: 1;
	}

a:link {text-decoration: none; color: #858595;} 
a:visited {text-decoration: none; color: #858595;} 
a:hover {text-decoration: none; color: #454565;} 

#container {
	width:954px; /*954px;*/
	margin-top:12px;
	margin: 0px;
	margin-left:auto;
	margin-right:auto;
	padding-left: 10px;
	padding-right: 10px;
	overflow: visable;
	font-family: inherit;
	font-size: 14px;
	height: auto;
    min-height: 1000px;
	font-style: normal;
}
#topline {
    display: block;
	width: 100%;
	overflow: visible;
}
#toplineleft {
	float: left;
	width: 204px;
	margin: 0px;
    height: 270px;
	background-image:url(../portrait2013.jpg);
}

#toplineright {
	float: right;
	width: 740px;
	background-image:url(../waves.gif);
	padding-left: 10px;
	height: 270px;
}

#main_image {
	position: relative;
	height: 273px;
	width: 968px;
	overflow: hidden;
	background-repeat: no-repeat;
}
#ordWelcome font {
	color: #00F;
	height: 273px;
}

#catcher {
	float:right;
	overflow: visible;
	width: 100%;
	background-color: #FFF  /*A6AFEE;*/
}

#catcherText {
	float:right;
	overflow: none;
	width: 100%;
	height: 100%;
	background-color: #EEEEF0; 
	border-right-color: #D0E3F9;
	border-left-color: #D0E3F9;
}

#catcherLeft {
	float:left;
	overflow: visable;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #FFF;
}

#catcherLeftTiny {
	float:right;
	overflow: visable;
	width: 180px;
	height: 80px;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #FFF; /*#A6AFEE; */
}
#catcherLeftScroll {
	float:left;
	overflow-y: scroll;
	overflow-x: hidden;
	overflow: visable;
	width: 48%;
	height: 620px;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #FFF; /*#A6AFEE; */

}
#catcherLefttextfield {
	float:left;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100%;
	height: 340px;
	padding-left: 0px;
	padding-right: 0px;
	background-color: #EEEEF0;
}
#catcherLefttextfieldLOW {
	float:left;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100%;
	height: 100px;
	padding-left: 0px;
	padding-right: 0px;
	background-color: #EEEEF0;;
}
#catcherLefttextfield200 {
	float:left;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100%;
	height: 260px;
	padding-left: 0px;
	padding-right: 0px;
	background-color: #EEEEF0;
}
#catcherRight {
	overflow: visible;
	width: auto;
	top: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #FFF; /* #A6AFEE; */
}

#impressum{
	float:right;
    background-color: #EEEEF0;
	width: 100%;
	text-align: right;
}

#container #MenuBar1 li {
	width: auto;
	color:#003399;
}
#menuRow {
	float:right;
	background-color: #D0E3F9;
	width: 100%;
}

p font em {
	color: #000;
	font-size: 16px;
}
p {
	padding:0px 5px 0px 5px;
	color: #333333;
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
	text-align: justify;
}
pll {
	color: #333333;
	font-weight: normal;
	font-size: 16px;
	line-height: 26px;
	text-align: justify;
}
p strong {
	color: #555565;
	font-size: 24px;
	text-align: left;
	line-height: normal;
}
strong {
	color: #555565;
	font-size: 24px;
	text-align: left;
	line-height: normal;
}
p title2 {
	color: #333333;
	font-size: 36px;
	text-align: left;
	font-weight: bold;
	line-height: 24px;
}
#container #catcher #catcherLeft t {
	color: #333333;
	font-weight: normal;
	font-size: 16px;
	line-height: 16px;
	text-align: left;
}

#container #catcher #catcherLeft p {
	text-align: justify;
}



.navbar {
  display: block;
  overflow: hidden;
  float:right;
  background-color: #EEEEF0; /*#CCCCD0; /*#D0E3F9; */
  width: 100%;
  font-family: Century;
}

.navbar a {
  float: left;
  font-size: 14px;
  color: black;
  text-align: center;
  padding: 22px 22px;
  text-decoration: none;
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar a.aktuell {
	background-color: #FFF; /*#A6AFEE; */ 
	color: black; /*white; */
}

.navbar a.termin {
	font-weight: bolder;
	color: #FF7E0B; /*white; */
}
.navbar a.terminAktuell {
    font-weight: bolder; 
	background-color: #FFF; /*#A6AFEE; */ 
	color: #FF7E0B; /*white; */
}
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 14px;  
  border: none;
  outline: none;
  color: black;
  padding: 22px 22px;
  padding-top: 6.5px;
  padding-bottom: 6px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
  background-color: #33C;
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #dad;
}

.show {
  display: block;
}

#termin-box {
    position: fixed;
    right: max(20%, 2vw);
    bottom: max(15%, 2vh);
    z-index: 9999;
	opacity:0.8;

    background: #c8c8ff;
    border: 1px solid #bfdcbf;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);

    padding: 32px 36px;
    max-width: 280px;
}

#termin-box a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.3;
    font-weight: bold;
    color: #444444;
}

#termin-box a:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 900px) {
    #termin-box {
        right: 10px;
        bottom: 10px;
        padding: 11px 14px;
        max-width: 220px;
    }

    #termin-box a {
        font-size: 15px;
    }
}

/* Mobile 
@media (max-width: 600px) {
    #termin-box {
        right: 8px;
        bottom: 8px;
        left: 8px;
        max-width: none;
        padding: 10px 12px;
        border-radius: 7px;
    }

    #termin-box a {
        font-size: 15px;
        text-align: center;
    }
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 30px 0 50px 0;
}

.leistung-card {
    display: block;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 14px;
    text-decoration: none;
    color: #2b2b2b;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    min-height: 100px;
}

.leistung-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    border-color: #7aa7d9;
}

.leistung-card h3 {
    margin: 0 0 12px 0;
    font-size: 26px;
    line-height: 1.2;
    color: #1f4f82;
}

.leistung-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #555555;
}

.leistung-card-cta {
    background: #2a7de1;
    border-color: #2a7de1;
}

.leistung-card-cta h3,
.leistung-card-cta p {
    color: #ffffff;
}

.leistung-card-cta:hover {
    background: #1f67be;
    border-color: #1f67be;
}*/
}