@charset "UTF-8";

/* ---------- FONTS------------------- */


/*google Fonts für Schriften*/
@import url("fonts.css"); 

/* ---------- FARBEN ------------------- */

:root {
	--primary-clr: #3F5C6F;
	--secondary-clr: #A9C938;
	--font-clr: #292929;
	--darker-primary-clr: #24424c;
	--lighter-primary-clr: #a4cde5;
	--lighter-secondary-clr: #bbd280;
}


/* ---------- GENERIC -------------------*/

html {
	font-size: 18px;
}
body {
	font-family: "Lato", sans-serif;
  	color: #313131;
	background-color: #ffffff;
	font-weight: 300;
	overflow-x:hidden;
}
main {
	padding: 90px 0 90px;
}
body.pid2479 main {
    padding-bottom: 0;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1350px;
    }
}



/* ---------- ELEMENTS -------------------*/

/* .............. headlines ...... */

h1, h2, h3 {
	font-family: "Lato", sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--primary-clr);
}
h1, h2 {
	margin-bottom: 2rem;
    -moz-hyphens: auto;
    hyphens: auto;
}
h1 {
	font-size: 2.25rem;
}
h1:after {
	content:"";
	display:block;
	background: var(--secondary-clr);
	width: 400px;
	height: 3px;
	margin-top: 10px;
}
h2 {
	font-size: 1.6rem;
}
h2:after {
	content:"";
	display:block;
	background: var(--secondary-clr);
	width: 250px;
	height: 3px;
	margin-top: 10px;
}
.fullsize h2:after {
	background: #fff;
}
h3 {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	font-weight: 300;
}
p + h2 {
	margin-top: 2rem;
}
/* .............. text ...... */
p {
	font-size: 1rem;
    margin-bottom: 1.3rem;
}
ul, ol {    
    margin-bottom: 1.3rem;
}
b, strong {
    font-weight: 600;
}
/* .............. links ...... */
a {
	color: var(--primary-clr);
    font-weight: 500;
}
a:hover {
	text-decoration: none;
	color: var(--secondary-clr);
}
/* .............. buttons ...... */
.btn {
	border:none;
}

.button, .external, .btn {
	padding: 12px 45px;
	background: var(--primary-clr);
	display: inline-block;
	color: #fff;
	border-radius: 15px;
	margin-top: 15px;
}
.button:hover, .btn:hover {
	background: var(--lighter-primary-clr);
	color: var(--primary-clr);
}
.button:focus, 
.btn:focus,
button:focus { 
	box-shadow: none; 
    outline: none;
}
.external {
	background: var(--secondary-clr);
}
.external:hover {
	background: var(--primary-clr);
	color: #fff;
}
.external:before {
	content:none !important;
}
.button + .external {
	margin-left: 30px;
}
/* .............. other ...... */
img {
  	max-width: 100%;
  	height: auto; 
}
main .fa, 
main .fas {
    margin-right: 7px;
}

/* ---------- COMPONENTS -------------------*/

/* .............. basic styles ...... */

/* Basic grid */
.grid {
	display:grid;
	gap: 1rem;
	margin-bottom: 2.25rem;
	justify-items:center;
}	
.frame {
	margin-bottom: 40px;
}
.fullsize .frame,
footer .frame {
	margin-bottom: 0;
}

.frame-fullsize, .fullsize {
    max-width: 100vw !important;
	width: 100vw !important;
	background: var(--lighter-secondary-clr);
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding: 3rem 1rem;
    position: relative;
	margin-bottom: 0;
	border-radius: 50px 0 0;
    margin-top: 3rem;
    overflow: hidden;
}
@media(min-width: 768px) {
	.frame-fullsize, .fullsize {
		padding: 6rem 0;
		border-radius: 200px 0 0;
	}
}

.frame-fullsize > div, .frame-fullsize > header, .fullsize > div, .fullsize > header {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
	.frame-fullsize > div, .frame-fullsize > header, .fullsize > div, .fullsize > header {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.frame-fullsize > div, .frame-fullsize > header, .fullsize > div, .fullsize > header {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.frame-fullsize > div, .frame-fullsize > header, .fullsize > div, .fullsize > header {
		max-width: 1140px;
	}
}
@media (min-width: 1400px) {
	.frame-fullsize > div, .frame-fullsize > header, .fullsize > div, .fullsize > header {
		max-width: 1350px;
	}
}

/* .............. header ...... */

.header-top {
	padding: 20px 0;
	display:flex;
	flex-direction: column;
	justify-content: space-between;
}
@media(min-width: 768px){
	.header-top {
		flex-direction: row;
	}
}
.topnavi a {
	display: inline-block;
	color: var(--primary-clr);
	font-size: 17px;
	font-weight: 500;
}
.topnavi a:hover {
	text-decoration: none;
	color: var(--secondary-clr);
}
.topnavi a i {
	margin-right: 5px;
}
@media(min-width: 768px) {
	.topnavi a {
		padding: 0 15px;
	}
}

/* topnavi */
.topnavi{
	display:flex;
	flex-direction: column;
	align-items: flex-start;
}
@media(min-width: 991px){
	.topnavi {
		flex-direction: row;
		align-items: center;
	}
}

/* Logo */
.logo img {
    max-width: 320px;
}
@media(max-width: 768px){
	.logo {
		margin-bottom: 15px;
	}
}

/* .............. navigation ...... */

.navbar {
	flex-direction: column;
	padding:0;
	background: linear-gradient(to right, #7A9951, #A9C938);
	position: relative;
	width: 101%;
	align-items: flex-start;
	margin-bottom: 8px;
}

.navbar:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -8px;
	background: linear-gradient(to right, #3F5C6F,  #A9C938);
	z-index: -1;

}

@media (min-width: 576px) and (max-width: 991px) {
    .navbar .container, 
    .navbar .container-sm {
        max-width: 100%;
    }
}


@media(min-width: 500px){
	.navbar, .navbar:after {
		border-radius: 0 0 200px 0;
	}
}
@media(min-width: 1200px){
	.navbar, .navbar:after {
		border-radius: 0 0 325px 0;
	}
}
/* Links */

.navbar-nav li a{
	font-size: 1.25rem;
	font-weight: 300;
	display: block;
	padding: 12px 20px !important;
	color: #fff;
}
@media(min-width: 991px) {
	.navbar-nav > li:first-child > a{
		padding-left: 0 !important;
	}
}

.navbar-nav li:last-child a {
	padding-right: 0 !important;
}
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:focus .nav-link,
.navbar-nav .nav-item.active .nav-link  {
	color: #135198;
}

/* 1. Dropdown Ebene */

.navbar-nav .dropdown-menu {
	border:none;
	border-top: 2px solid var(--primary-clr);
	border-radius: 0;
	background: var(--primary-clr);
	margin: 0;
}
.navbar-nav .dropdown-menu li a {
	border-bottom: solid 2px var(--primary-clr);
	padding: 7px 20px !important;
	font-size: 1rem;
	text-transform: none;
	color: #fff;
}
.navbar-nav .dropdown-menu li:hover a,
.navbar-nav .dropdown-menu li:focus a,
.navbar-nav .dropdown-menu li.active a {
	color: var(--secondary-clr);
}
.navbar-nav .dropdown-menu li:last-child a {
	border-bottom: none;
}
.navbar .dropdown-toggle:after {
	border-top-color: #fff;
}
@media(min-width: 991px) {
	.navbar .dropdown-toggle {
		display:none;
	}
	.navbar .dropdown:hover .dropdown-menu{
		display:block
	}
	
}


/* Mobil Button */

.navbar-toggler {
	font-size: 1.5rem;
	color: #fff;
	padding: 12px 20px !important;
}

/* Mobil */
@media(max-width: 991px) {
	.navbar-collapse {
		margin-top: 25px;
	}
	.dropdown-toggle {
		position: absolute;
		top: 20px;
		right: 15px;
	}
	.dropdown-toggle::after {
		border-top: .5em solid;
		border-right: .5em solid transparent;
		border-left: .5em solid transparent;
	}
	
}
/* Social Media Icons */

/* Mobil Button */

/* Mobil */


/* .............. keyvisual ...... */
.dce-keyvisual {
	width: 100%;
}
.dce-keyvisual img {
	width: 100%;
}
.dce-keyvisual > .box-below {
	background: var(--primary-clr);
}
.dce-keyvisual .textbox {
    width: 800px;
    max-width: 100%;
	text-align: left;
}
.dce-keyvisual h4 {
    background: var(--primary-clr);
}
.dce-keyvisual p {
    text-align: left;
}
.dce-keyvisual .textbox p:last-child {
    margin-bottom: 0;
}
.dce-keyvisual > .box-below h4 {
	font-size: 1.5rem;
}
.dce-keyvisual h4,
.dce-keyvisual p {
	text-align: center;
}	
.dce-keyvisual > .box-below a:link,
.dce-keyvisual > .box-below a:visited {
	color: var(--secondary-clr);
}
.dce-keyvisual > .box-below a:hover,
.dce-keyvisual > .box-below a:focus {
	color: var(--lighter-secondary-clr);
}
.dce-keyvisual > .box-below p {
    margin-bottom: 15px;
}
@media(min-width: 500px){
	.dce-keyvisual img {
		border-radius: 0 0 200px 0;
	}
}
@media(min-width: 900px){
	.dce-keyvisual > .box-below {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: transparent;
	}
	.dce-keyvisual .box-below .textbox {
		width: 800px;
		margin: 0 auto;
		background: var(--primary-clr);
	}
}
@media(min-width: 1200px){
	.dce-keyvisual img {
		border-radius: 0 0 350px 0;
	}
}

/* .............. DCE Anfahrt und 2-Klick Map ...... */
#c13039 #c13040 {
	margin-top: 3rem;
}
#c13039 .dce-gmaps {
	margin-top: 0;
}

@media screen and (min-width: 768px) {
	#c13039 .row {
		flex-wrap: nowrap;
		
	}
	#c13039 .iframewrap {
		margin-bottom: 0;
	}
	#c13039 .col-md-6:last-child{
		flex: 0 0 50vw;
		max-width: 50vw;
		padding-right: 0;
	}
	#c13039 .dce-gmaps {
		margin: 0;
	}
	
}

@media(min-width: 768px) and (max-width: 991px) {
	#c13039 .dce-gmaps p {
		font-size: .8rem;
	}
}


/* .............. Indikationen: DCE-Karte ...... */

#c12505 .col-md-6:last-child {
	display:flex;
	justify-content: center;
}

.dce-karte i{
	color: #fff;
}

.dce-karte i:before {
	content: url(../Img/Ellipse-weisz.png);
}
.dce-karte a:hover i:before {
	content: url(../Img/Ellipse-rot.png);
}
.dce-karte a .name {
	background: #fff;
	color: var(--darker-primary-clr);
	padding: 17px 60px;
	font-weight: 400;

	box-shadow: 0px 0px 8px 0px rgba(138,138,138,0.75);
	-webkit-box-shadow: 0px 0px 8px 0px rgba(138,138,138,0.75);
	-moz-box-shadow: 0px 0px 8px 0px rgba(138,138,138,0.75);

	opacity: 0;

	transition: all .6s ease-out;
}.dce-karte a:hover .name {
	opacity:1;
}

.dce-karte a .name.right {
	border-top-left-radius: 30px;
	border-bottom-right-radius: 30px;

	left: 100%;
    top: -100%;
}
.dce-karte a .name.left {
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;

	right: 100%;
    top: -100%;
}


/* .... team .... */
.team {
    text-align: center;
}
.team h4 {
    margin-top: 20px;
    font-size: 1.3rem;
}
.team h4 + p {
    margin-top: -8px;
    margin-bottom: 10px;
}
.team img {
    width: 100%;
}
.team .text p {
    font-size: 0.95rem;
    color: #777;
}

/* .............. Kontakt ...... */

.tx-powermail legend,
.tx-powermail h3 {
	display:none;
}
.tx-powermail .container-fluid {
	padding: 0;
}
.tx-powermail fieldset.powermail_fieldset {
	background: var(--lighter-secondary-clr);
}
@media(max-width: 500px){
	.tx-powermail div.powermail_fieldwrap {
		flex-direction: column;
	}
}
/* .............. sticky sidebar ...... */
.dce-stickysidebar .item a {
	color: var(--primary-clr);
}
.dce-stickysidebar .item a:hover {
	color: var(--secondary-clr);
}

@media (orientation: landscape) {
	.dce-stickysidebar .item {
		background: none;
		box-shadow: none;
	}
	.dce-stickysidebar .item .title {
		color: #fff;
		font-weight: 300;
	}
	.dce-stickysidebar .item a:hover .title {
		color: var(--primary-clr);
	}
	.dce-stickysidebar .item a {
		padding: 15px;
		color: #fff;
		background: var(--primary-clr);
		border-radius: 20px 0 0 20px;
		border: solid 3px #fff;
		box-shadow: 0px 5px 10px rgba(0,0,0,0.1);

	}
	.dce-stickysidebar .item a:hover {
		color: #fff;
		background: var(--lighter-primary-clr);
	}
	.dce-stickysidebar .item i {
		margin-right: 15px;
		font-size: 1.15rem;
	}
}


/* .............. footer ...... */
footer {
	background: var(--primary-clr);
	padding: 3rem 0 0;
}
footer a, footer h3, footer p {
	color: #fff;
}
footer p, footer a {
	font-weight: 100;
}
footer p {
    margin-bottom: 0.5rem;
}
/* Footer Öffnungszeiten / Linke Box */
footer .left-box {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

/* Footer Links / Rechte Box */
footer .right-box > div {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
}
footer .right-box a{
	display: block;
	padding: 5px 0;
	position: relative;
  	padding-left: 1.25em; /* make space for the width of the absolutely positioned icon */
}
footer .right-box p {
	margin-bottom: 4px;
	margin-right: 30px;
	border-bottom: solid 1px rgba(255,255,255,.3);
}
footer .right-box a:before,
footer .right-box a:after {
	font-family: "Font Awesome 5 Duotone";
	font-weight: 900;

	/* position both layers of the icon to the left, set our fixed-width width, horizontally center layers, and then vertically align them so they flex with different line heights */
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.25em;
	text-align: center;
}
footer .right-box a:before {
	color: var(--fa-primary-color, inherit);
	opacity: 1;
	opacity: var(--fa-primary-opacity, 1.0);
	content: "\f101";
}
footer .right-box a:after {
	color: var(--fa-secondary-color, inherit);
	opacity: var(--fa-secondary-opacity, 0.4);
	content: "\10f101";
}


/* musthave */
.footer-musthavecopy {
    background: var(--darker-primary-clr);
    margin-top: 3rem;
	padding: 15px 0;
	font-size: 16px;
	color: #fff;
	
}
footer .musthavecopy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
footer .musthave {
    list-style: none;
    margin-bottom: 0;
}
footer .musthave li {
    display: inline-block;
    margin-right: 20px;
}




/* .... PRINT STYLES .... */
@media print {
    *,
    main a,
    footer a, footer h3, footer p {
        color: #444 !important;
    }
    .header-top,
    .footnavi,
    .musthave {
        display: none;
    }
}