/* author: ideenwerft GmbH */

@charset "UTF-8";

@import url("fonts.css"); 

/* .... VARIABLES .... */
:root {
	--primary-clr: #8BAB56;
	--secondary-clr: #4B4B4B;
    --cta-clr: #DEA01E;
	--darker-primary-clr: #5F8126;
    --darker-cta-clr: #ce8f08;
    --font-headlines: 'Ubuntu', Helvetica, Arial, sans-serif;
    --font-body: 'Ubuntu', Helvetica, Arial, sans-serif;
}


/* .... BASICS .... */
body {
    overflow-x: hidden;
	font-family: var(--font-body);
  	font-size: 1rem;
  	color: #333;
}
.container {
    max-width: 1400px;
}
main {
	padding: 60px 0 7rem;
    font-size: 1.1rem;
}
.fullwidth {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding: 5rem 0;
    background: #f3f3f3;
}
main > div:last-child > .fullwidth {
    margin-bottom: -7rem;
}
@media (min-width: 768px) {
    main {
        padding: 90px 0 7rem;
    }
}

/* .... TEXT .... */
h1, h2, h3 {
	font-family: var(--font-headlines);
	font-weight: 600;
	color: var(--primary-clr);
}
h1 {
	font-size: 2.2rem;
    margin-bottom: 2.5rem;
    hyphens: auto;
    -webkit-hyphens: auto;
}
h2 {
	font-size: 2rem;
    margin-bottom: 1.7rem;
    margin-top: 2rem;
}
h1 + h2 {
    margin-top: -1.2rem;
    margin-bottom: 3rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.2rem;
}
h3 {
	font-size: 1.4rem;
	margin-bottom: 1.2rem;
    margin-top: 1.7rem;
}
h4 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
    margin-top: 1.5rem;
}
p {
    margin-bottom: 1rem;
    line-height: 1.65rem;
}
main h1,
main h2,
main h3,
main h4,
main p, 
main ul, 
main ol,
.dce-accordion,
.frame-type-text,
.frame-type-textpic {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
main .ce-textpic.ce-right .ce-gallery + .ce-bodytext p {
    max-width: inherit;
}
main a {
	color: var(--cta-clr);
    font-weight: 600;
}
a:hover {
	text-decoration: none;
	color: var(--darker-cta-clr);
}
a.phone::before,
a.mail::before {
    font-family: "Font Awesome 5 Pro";
    position: relative;
    display: inline-block;
    color: var(--cta-clr);
    font-weight: 600;
    font-size: 0.9em;
    margin-right: 10px;
}
a.phone::before {
    content: "\f8d3";
}
.dce-kontaktstoerer a.phone::before {
    color: #fff;
}
a.mail::before {
    content: "\f1d8";
}

b, strong {
    font-weight: 600;
}

blockquote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
blockquote p:first-child::before,
blockquote p:nth-last-child(2)::after {
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    position: relative;
    display: inline-block;
    color: var(--primary-clr);
    font-weight: 600;
    font-size: 0.9em;
    margin-right: 10px;
}
blockquote p:nth-last-child(2)::after {
    content: "\f10d";
    margin-right: 0;
    margin-left: 10px;
}
blockquote p:not(:last-child) {
    font-style: italic;
    font-size: 1.2rem;
}
blockquote p:last-child {
    font-style: normal;
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}
main ul li::marker,
footer ul.footnavi li::marker {
    content: "\f005";
    font-family: "Font Awesome 5 Pro";
    position: relative;
    display: inline-block;
    position: absolute;
    transition: all .2s ease;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--primary-clr);
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}
/* .... BUTTONS .... */
.button,
.btn,
input[type=submit]{
	padding: 7px 20px;
    margin-top: 10px;
	background: var(--cta-clr);
	display: inline-block;
	color: #fff;
    border: none;
}
.button:hover,
.btn:hover,
.button:focus,
.btn:focus {
	background: var(--darker-cta-clr);
    color: #fff;
}

/* .... OTHER .... */
img {
  	max-width: 100%;
  	height: auto; 
}
figure.image {
    position: relative;
}
figure.image figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px 7px;
    background: rgba(255, 255, 255, 0.8);
    color: #555;
    font-size: 11px;
}


@media (max-width: 758px) {
    .ce-right.ce-intext .ce-gallery {
        max-width: 45%;
    }
}


/* ---------- HEADER -------------------*/

/* .... top .... */
.header-top {
    padding: 8px 0;
    background: var(--darker-primary-clr);
    font-size: 0.95rem;
    color: #fff;
}
.header-top .container {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.header-top a,
.header-top a:link, 
.header-top a:visited {
    color: #fff;
    display: inline-block;
    margin-left: 20px;
    white-space:nowrap;
}
.header-top a:hover, 
.header-top a:focus {
    color: #eee;
}
.header-top a i {
    margin-right: 8px;
}
@media (max-width:767px){
    .header-top .container {
        max-width: 100%;
        justify-content: center;
    }
}

/* logo navi header */
body > header {
    background: var(--primary-clr);
}
body > header .container {
    position: relative;
}
header .navbar-brand {
    position: absolute;
    z-index: 10;
    top:0;
    left: 0;
    max-width: 60%;
    background-color: #fff;
}
header .navbar {
    justify-content: flex-end;
}
.navbar-toggler {
    color: #fff;
    font-size: 1.5rem;
}

/* keyvisual hero */
.dce-keyvisual > .box-below {
    background-color: var(--primary-clr);
}
.dce-keyvisual > .box-below .textbox {
    padding: 9px 0 9px;
}
.dce-keyvisual > .box-below .text {
    font-size: 1.1rem;
}




/* .... NAVIGATION .... */
a.nav-link {
    color: #fff;
}
#mainnavi ul.navbar-nav > li {
    margin-left: 10px;
}
#mainnavi ul.navbar-nav > li > a {
    font-size: 1.2rem;
}

@media (min-width:992px) {
    #mainnavi {
        justify-content: flex-end;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
@media (min-width:1200px) {
    #mainnavi ul.navbar-nav > li {
        margin-left: 15px;
    }
}


/* .... CONTENT .... */

/* buttons */
.dce-buttons {
    display: inline-block;;
}

/* accordion */
.dce-accordion h2 {
    padding: 10px 15px;
    background: var(--primary-clr);
    display: inline-block;
    margin-left: -20px;
    transform: rotate(-5deg);
    font-size: 1.6rem;
    color: #fff;
}
.dce-accordion h2::before {
    content: "\f073";
    font-family: "Font Awesome 5 Pro";
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9em;
    margin-right: 10px;
}
.dce-accordion .card:not(:last-child) {
    margin-bottom: 5px;
}
.dce-accordion .card-header h5 button,
.dce-accordion .card-header h5 button:focus {
    color: #fff;
    background-color: #444;
}
.dce-accordion .card-header h5 button:hover, 
.dce-accordion .card-header h5 button[aria-expanded="true"] {
    background-color: var(--primary-clr);
}
.fullwidth .dce-accordion .card-body {
    background: transparent;
}

/* start wochenplan */
.pid4436 #accordion-19177 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.pid4436 #accordion-19177 .collapse:not(.show) {
    display: block !important;
}
.pid4436 .dce-accordion .card-header h5 button {
    padding: 5px 15px;
}
.pid4436 .dce-accordion .card-header h5 button:hover, 
.pid4436 .dce-accordion .card-header h5 button[aria-expanded="true"] {
    background-color: #444;
}
.pid4436 #accordion-19177 .fas {
    display: none;
}
.pid4436 .fullwidth .dce-accordion .card-body {
    background: #fff;
}
.pid4436 #accordion-19177 table {
    font-size: 0.9em;
}

/* ü12 Bubble */
/*
.pid4436 #accordion-19177 .card:last-child button { 
    display: none !important;
}
.pid4436 #accordion-19177 .card:last-child .card-body {
    background: var(--cta-clr);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    padding: 10px;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.3em;
    transform: rotate(6deg);
}
.pid4436 #accordion-19177 .card:last-child .card-body p {
    margin: 0;
    color: #fff;
}
*/

/* ü12 Accordion */
.pid4436 #accordion-19177 .card:last-child button { 
    background: var(--cta-clr);
}
.pid4436 #accordion-19177 .card:last-child .card-body {
    
}
.pid4436 #accordion-19177 .card:last-child .card-body p {
    
}


@media (min-width: 800px) {
    .pid4436 #accordion-19177 {display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1200px) {
    .pid4436 #accordion-19177 {display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}


/* kontaktstoerer / parallax */
.dce-kontaktstoerer.parallax {
	background-position: 35% 70%;
    margin-bottom: 6em;
    margin-top: 7em;
    background-attachment: fixed;
    background-repeat: no-repeat;
	background-size: cover;
	min-height: 400px;
	height: 100%;
}
.dce-kontaktstoerer.parallax:last-child {
    margin-bottom: -7rem;
}
.dce-kontaktstoerer.parallax > .d-flex {
	position: relative;
	padding: 0 0;
}
.dce-kontaktstoerer.parallax + div .fullwidth {
    margin-top: -7rem;
}

/* .... NEWS .... */
.news-list-view .footer {
    display: none;
}
.news-list-view .topnews a:hover {
    cursor: default;
    color: #444 !important;
}
.news-list-view .topnews a.more {
    display: none !important;
}

.news-list-view .news-list-date time {
    display: inline-block;
    padding: 5px 20px;
    background: var(--primary-clr);
    color: #fff;
}
.news-list-view .event .news-list-date time::before,
.news-single .news-single-date.single-date-event::before {
    content: "\f073";
    font-family: "Font Awesome 5 Pro";
    position: relative;
    display: inline-block;
    font-weight: 400;
    font-size: 0.9em;
    margin-left: 5px;
}


/* farben für dummybilder */
.news-list-view .article:nth-child(1) img {
    background: #f8c9c9;
}
.news-list-view .article:nth-child(2) img {
    background: #f0d5fd;
}
.news-list-view .article:nth-child(3) img {
    background: #cbd4fc;
}
.news-list-view .article:nth-child(4) img {
    background: #c7f3f4;
}
.news-list-view .article:nth-child(5) img {
    background: #c7f7db;
}
.news-list-view .article:nth-child(6) img {
    background: #f1f5c0;
}

/* termine und news seite */
body:not(.pid4436) .news-list-view {
    max-width: 1000px;
    margin: 0 auto;
}
body:not(.pid4436) .news-list-view .article {
    display: flex;
}
body:not(.pid4436) .news-list-view .news-img-wrap {
    order: -1;
    flex: inherit;
    width: auto;
    max-width: 25%;
    padding-right: 10px;
}
body:not(.pid4436) .news-list-view img {
    max-width: 100%;
    height: auto;
}
body:not(.pid4436) .news-list-view .teaser-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    max-width: 75%;
    padding-left: 10px;
}
body:not(.pid4436) .news-list-view h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    line-height: 1.0em;
}
body:not(.pid4436) .news-list-view h3 a {
    color: #444;
    font-weight: 500;
    font-size: 1.1rem;
}
body:not(.pid4436) .news-list-view .date {
    margin-bottom: 0;
}
body:not(.pid4436) .news-list-view .news-list-date time {
    font-size: 0.9rem;
    padding: 4px 10px;
}
body:not(.pid4436) .news-list-view div:not(.topnews) a.more {
    background: var(--cta-clr);
    font-weight: 400;
    font-size: 1rem;
    color: #fff;
    padding: 6px 15px;
    margin-top: 5px;
    display: inline-block;
}
body:not(.pid4436) p.date,
body:not(.pid4436) div.more {
    display: inline-block;
    line-height: 1em;
}
body:not(.pid4436) .news-list-view .header + div {
    margin-top: 1rem;
}

@media (min-width:600px) {
    body:not(.pid4436) .news-list-view .teaser-text {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    body:not(.pid4436) .news-list-view .news-img-wrap {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 200px;
    }
    body:not(.pid4436) .news-list-view img {
        max-width: 170px;
    }
    body:not(.pid4436) .news-list-view h3 {
        margin-bottom: 0rem;
        line-height: 1.3em;
    }
    body:not(.pid4436) .news-list-view h3 a {
        font-size: 1.2rem;
    }
    body:not(.pid4436) .news-list-view .news-list-date time {
        font-size: 1rem;
        padding: 6px 10px;
    }
}


/* termine auf home */
.pid4436 #c19180:nth-last-child(2) {
    margin-bottom: -8rem;
}
.pid4436 .news-list-view {
    margin-top: 3rem;
}
.pid4436 .news-list-view .row {
    display: grid;
    grid-template-columns: repeat(1,1fr);
}
.pid4436 .news-list-view .row > div {
    max-width: 100%;
}
.pid4436 .news-list-view .article .box {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.pid4436 .news-list-view .article .news-img-wrap {
    order: -1;
}
.pid4436 .news-list-view .header {
    position: relative;
    padding-top: 30px;
}
.pid4436 .news-list-view .news-list-date {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    display: block;
}
.pid4436 .news-list-view h3 {
    margin-top: 0.5rem;
}
.pid4436 .news-list-view h3 a {
    color: #444;
    font-weight: 500;
    font-size: 1.1rem;
}
.pid4436 .news-list-view h3 a:hover {
    color: var(--cta-clr);
}
.pid4436 .news-list-view .teaser-text > div {
    display: none;
}
.pid4436 .news-list-view .button {
    background: transparent;
    color: var(--cta-clr);
    font-weight: 400;
    padding: 0;
    margin: 0;
}
.pid4436 .news-list-view .button::after {
    content: "\f101";
    font-family: "Font Awesome 5 Pro";
    position: relative;
    display: inline-block;
    font-weight: 400;
    font-size: 0.9em;
    margin-left: 5px;
}
.pid4436 .news-list-view .button:hover {
    transform: scale(1.03);
    color: var(--darker-cta-clr);
}

@media (min-width:500px) {
    .pid4436 .news-list-view .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width:1000px) {
    .pid4436 .news-list-view .row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}

/* detail */
.news-single h1 {
    margin-bottom: 1rem;
}
.news-single .news-single-date {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 4px 15px;
    background: var(--primary-clr);
    color: #fff;
}
.news-single .news-text-wrap {
    margin-top: 2rem;
}



/* .... TEAM .... */
.team-big {
    margin-bottom: 4rem;
}
.team-big h4 {
    margin-top: 0;
}
.team-big img {
    margin-bottom: 1.5rem;
}
@media (min-width:850px) {
    .team-big {
        max-width: 1000px;
        margin: 0 auto 4rem;
    }
    .team-big > div:first-child {
        max-width: 30%;
        flex: 0 0 30%;
    }
    .team-big > div:last-child {
        max-width: 70%;
        flex: 0 0 70%;
    }
    .team-big img {
        margin-bottom: 0;
    }
}



/* .... KONTAKT .... */
#c19164 .row {
    max-width: 1200px;
    margin: 0 auto;
}


/* .... POWERMAIL .... */
.tx-powermail h3,
.tx-powermail legend {
    display: none;
}
main .tx-powermail div.powermail_fieldwrap {
    padding-left: 0;
    padding-right: 0;
}
.tx-powermail .powermail_fieldset .parsley-errors-list,
.tx-powermail .powermail_fieldset div.parsley-error,
.tx-powermail .powermail_fieldset .powermail_field_error_container .parsley-errors-list{
    background: transparent;
    border: none;
}
.tx-powermail .powermail_fieldset .parsley-errors-list>li {
    padding: 0;
}
@media (max-width:991px) {
    .tx-powermail .container-fluid {
        padding: 0;
    }
    main .tx-powermail div.powermail_fieldwrap {
        display: block;
    }
    main .powermail_fieldwrap > label.col-sm-2 {
        width: 100%;
        max-width: inherit;
    }
    main .powermail_fieldwrap > .col-sm-10 {
        max-width: inherit;
    }
    .powermail_fieldwrap_datenschutz label.control-label {
        display: none;
    }
}

/* .... FOOTER .... */
body > footer,
.musthavecopy {
    background: var(--darker-primary-clr);
}
body > footer {
    padding-top: 4rem;
    border-top: 10px solid var(--cta-clr);
    color: #fff;
}
body > footer a {
    color: #fff;
}
body > footer p {
    line-height: 1.4em;
    margin-bottom: 0.7rem;
}
body > footer tr {
    display: flex;
    gap: 2rem;
}
body > footer td {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* footer navi */
footer ul.footnavi {
    padding-left: 8px;
}
footer ul.footnavi li::marker {
    content: "\f105";
    color: #fff;
    font-weight: 400;
}
footer ul.footnavi li {
    padding-left: 6px;
}

@media (max-width:992px) {
    body > footer tr {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}
@media (max-width:768px) {
    body > footer .logo {
        margin-bottom: 2rem;
    }
}


/* copy und musthaves */
.musthavecopy {
    padding: 15px 0;
    color: #fff;
}
.musthavecopy .container {
    display: flex;
    flex-direction: column-reverse;
}
ul.musthave {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    margin-top: 0;
}
ul.musthave li {
    margin-right: 15px;
}
.musthavecopy a:link, 
.musthavecopy a:visited {
    color: #fff;
}
.musthavecopy a:hover, 
.musthavecopy a:focus {
    color: #fff;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .musthavecopy .container {
        flex-direction: row;
        justify-content: space-between;
    }
    ul.musthave {
        margin-top: 0;
        margin-right: 0;
        margin-left: 15px;
    }
}

/* .... PRINT STYLES .... */
@media print {
    .header-top,
    .footnavi,
    .musthave {
        display: none;
    }
}