/* ===== layout.css ===== */
/*!
 * This file is part of Contao.
 *
 * (c) Leo Feyer
 *
 * @license LGPL-3.0-or-later
 */

/**
 * Standardize some basic elements
 */
body,form,figure {
	margin:0;
	padding:0;
}
img {
	border:0;
}
header,footer,nav,section,aside,article,figure,figcaption {
	display:block;
}

/**
 * Fix some font issues
 */
body {
	font-size:100.01%;
}
select,input,textarea {
	font-size:99%;
}

/**
 * Fix some positioning issues
 */
#container,.inside {
	position:relative;
}

/**
 * Holy grail CSS layout
 *
 * @see http://www.alistapart.com/articles/holygrail
 */
#main,#left,#right {
	float:left;
	position:relative;
}
#main {
	width:100%;
}
#left {
	margin-left:-100%;
}
#right {
	margin-right:-100%;
}
#footer {
	clear:both;
}
#main .inside {
	min-height:1px; /* see #4893 */
}

/**
 * Format the Contao image galleries (now rendered as unordered lists)
 */
.ce_gallery > ul,
.content-gallery > ul {
	margin:0;
	padding:0;
	overflow:hidden;
	list-style:none;
}
.ce_gallery > ul li,
.content-gallery > ul li {
	float:left;
}
.ce_gallery > ul li.col_first,
.content-gallery > ul li.col_first {
	clear:left;
}

/**
 * Float classes (see #6851)
 */
.float_left,
.media--left > figure {
	float:left;
}
.float_right,
.media--right > figure {
	float:right;
}

/**
 * Clear floats
 */
.block {
	overflow:hidden;
}
.media {
	display:flow-root;
}
.clear,#clear {
	height:0.1px;
	font-size:0.1px;
	line-height:0.1px;
	clear:both;
}

/**
 * Hide invisible elements
 */
.invisible {
	border:0;
	clip:rect(0 0 0 0);
	height:1px;
	margin:-1px;
	overflow:hidden;
	padding:0;
	position:absolute;
	width:1px;
}

/**
 * Custom layout sections
 */
.custom {
	display:block;
}
#container:after,.custom:after {
	content:"";
	display:table;
	clear:both;
}

/* ===== responsive.css ===== */
/*!
 * This file is part of Contao.
 *
 * (c) Leo Feyer
 *
 * @license LGPL-3.0-or-later
 */

/**
 * Apply the holy grail CSS layout if the screen is at least 768 pixel wide,
 * otherwise display all columns underneath each other
 *
 * @see http://www.alistapart.com/articles/holygrail
 */
@media (max-width:767px)
{
	#wrapper {
		margin:0;
		width:auto;
	}
	#container {
		padding-left:0;
		padding-right:0;
	}
	#main,#left,#right {
		float:none;
		width:auto;
	}
	#left {
		right:0;
		margin-left:0;
	}
	#right {
		margin-right:0;
	}
}

/**
 * Flexible images
 *
 * @see http://webdesignerwall.com/tutorials/responsive-design-with-css3-media-queries
 */
img {
	max-width:100%;
	height:auto;
}

/**
 * Responsive audio (see #441)
 */
.audio_container audio {
	max-width:100%;
}

/**
 * Responsive videos (see #1348)
 */
.video_container video {
	max-width:100%;
	height:auto;
}
.aspect,
.responsive {
    position:relative;
    height:0;
}
.aspect iframe,
.responsive iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.aspect--16\:9,
.responsive.ratio-169 {
    padding-bottom:56.25%;
}
.aspect--16\:10,
.responsive.ratio-1610 {
    padding-bottom:62.5%;
}
.aspect--21\:9,
.responsive.ratio-219 {
    padding-bottom:42.8571%;
}
.aspect--4\:3,
.responsive.ratio-43 {
    padding-bottom:75%;
}
.aspect--3\:2,
.responsive.ratio-32 {
    padding-bottom:66.6666%;
}
.aspect--9\:16,
.responsive.ratio-916 {
    padding-bottom:177.7777%;
}
.aspect--1\:1,
.responsive.ratio-11 {
    padding-bottom:100%;
}

/* ===== basic.css ===== */
.lang-toggle.active {
    opacity: 0.4;
}
.lang-toggle:not(.active):hover {
    outline: 1px solid #007858;
    outline-offset:1px;
}
.lang-toggle {
    opacity: 1;
    transition: opacity 0.3s ease, outline 0.3s ease;
}
.lang-toggle-nav a {
    text-decoration:none !important;
}
.lang-box {
    position: relative;
}
.lang-toggle-nav {
    position: absolute;
        top: 40px;
    left:-40px;
}
#footer h2 {
    font-size:26px;
}
.layout_short p.more a:hover {
    color:#007858;
}
.layout_short p.more {
    margin-top:5px;
    margin-bottom:10px;
}
.layout_short h2 a span {
    color:#007858;
}
.layout_short h2 a {
    color:#007858;
}
.layout_short .info {
    display:none;
}
#footer a {
    text-decoration:none;
}
#footer a:hover {
    text-decoration:underline;
}
.link-button p {
    margin-top:10px;
}
.link-button a {
    width:200px;
    display:block;
    text-align:center;
    background-color:#007858;
    border:1px solid #007858;
    border-radius:7px;
    text-decoration:none;
    color:#fff;
}
.link-button a:hover {
    background-color:#329a83;
}
.center a {
    margin-right:auto;
    margin-left:auto;
}
.green h2,
.green p,
.green a,
.green h1,
.green h3,
.green span {
    color:#fff;
}
#kacheln h2 {
    text-align:center;
}
.no_center a,
.no_center body,
.no_center div,
.no_center input,
.no_center label,
.no_center li,
.no_center ol,
.no_center p,
.no_center select,
.no_center td,
.no_center th,
.no_center textarea,
.no_center u,
.no_center ul {
    text-align:left;
}
body {
    margin:0;
    padding:0;
}
a,
body,
div,
em,
input,
label,
li,
ol,
p,
select,
span,
strong,
td,
th,
textarea,
u,
ul {
    font-family:robotoregular;
}
a,
body,
div,
input,
label,
li,
ol,
p,
select,
td,
th,
textarea,
u,
ul {
    font-size:16px;
    line-height:28px;
    color:#575756;
}
h1,
h2.fakeh1,
.fakeh1 h2 {
    margin:20px auto 30px;
    padding:0;
    text-align:left;
    font:28px robotobold;
    text-decoration:none;
    color:#007858;
}
h2.center {
    text-align:center;
}
h2 {
    margin:10px 0 20px;
    padding:0;
    text-align:left;
    font:28px robotobold;
    letter-spacing:2px;
}
h3 {
    margin:10px 0;
    padding:0;
    font:20px robotoregular;
    font-weight:bold;
    text-transform:uppercase;
}
h4 {
    margin:0 0 10px;
    padding:0;
    font:18px robotobold;
}
h5 {
    margin:0 0 10px;
    padding:0;
    font-weight:bold;
    color:#565759;
    font:26px 'Source Sans Pro',sans-serif;
}
img {
    margin:0;
    padding:0;
    vertical-align:middle;
    border:0px;
}
p,
pre,
form {
    margin:0;
    padding:0;
}
.mod_footer_print {
    display:none;
}
.list_1 ul {
    padding-left:20px;
    list-style-image:url("/files/layout/arrow.png");
}
.highlight p {
    text-align:center;
    color:#fff;
    font:35px 'Source Sans Pro',sans-serif;
}

/* ===== screen.css ===== */
p.back {
    margin-top:15px;
}
.ce_gallery > ul li.col_first {
    clear:none;
}
.ce_gallery li.col_0 {
    width:23.5%;
    padding-right:.5%;
}
.ce_gallery li.col_1 {
    width:23.5%;
    padding-right:1%;
    padding-left:1.5%;
}
.ce_gallery li.col_2 {
    width:23.5%;
    padding-right:1.5%;
    padding-left:1%;
}
.ce_gallery li.col_3 {
    width:23.5%;
    padding-left:.5%;
}
.abstand_oben_20 {
    margin-top:20px;
}
.abstand_oben_30 {
    margin-top:30px;
}
.abstand_oben_40 {
    margin-top:40px;
}
.abstand_unten_40 {
    margin-bottom:40px;
}
.ui-accordion-header-collapsed:before,
.ui-accordion-header:before {
    padding-right:10px;
    padding-left:5px;
    content: "\f150";
      font-family: 'Font Awesome\ 5 Free';
      font-weight: 900;
}
.ui-accordion-header-active:before {
    padding-right:10px;
    padding-left:5px;
    content: "\f151";
      font-family: 'Font Awesome\ 5 Free';
      font-weight: 900;
}
.toggler {
    margin-bottom:15px;
    cursor:pointer;
}
.ui-accordion-header-collapsed {
    background-color:#007858;
    border:1px solid #007858;
    border-radius:7px;
    color:#fff;
}
.ui-accordion-header-active,
.toggler {
    background-color:#007858;
    border:1px solid #007858;
    border-radius:7px;
    color:#fff;
}
.liste ul ul ul ul {
    -moz-column-count: 3;
            -moz-column-gap: 10px;
            -webkit-column-count: 3;
            -webkit-column-gap: 10px;
            column-count: 3;
            column-gap: 10px;
     page-break-inside:avoid;
}
.sl-tx {
    width:480px;
        bottom:0;
        left:px;
        position:absolute;
        margin-bottom:12%;
        margin-left:15%;
        text-align:center;
        z-index:1003;
}
.sl-tx p {
    text-align:left;
    font-family:robotobold;
    color:#007858;
    margin-bottom:10px;
        font-size:44px;
        line-height:58px;
}
.height1 div.ce_text,
.height1 div.mod_newslist {
    min-height:660px;
}
.height1 div.layout_short .ce_text,
.height1 div.link-button {
    min-height: 5px;
}
.layout_short h2 {
    margin-top:0;
    margin-bottom:0;
}
.layout_short h2 a,
.layout_short a {
    text-decoration:none;
}
#main {
    margin-bottom:3px;
    border-bottom:10px solid #007858;
}
#main .inside {
    width:70%;
    margin-right:auto;
    margin-left:auto;
    padding-top:20px;
    padding-bottom:20px;
}
#footer {
    background-color:#007858;
    border-top:3px solid #fff;
}
#footer .inside {
    width:70%;
    margin-right:auto;
    margin-left:auto;
    padding-top:20px;
    padding-bottom:20px;
}
#ref {
    border-top:3px solid #007858;
    border-bottom:3px solid #007858;
}
#ref .inside {
    width:70%;
    margin-right:auto;
    margin-left:auto;
    padding-top:20px;
    padding-bottom:20px;
}
#kacheln p {
    min-height:280px;
}
.bottom {
    width:120px;
    margin-right:auto;
    margin-left:auto;
    text-align:center;
}
#kacheln .rs-column:nth-child(2) {
    background-color:#329a83;
}
.no-space .rs-columns {
    display:flex;
}
.no-space .rs-column.-large-col-3-1 {
    padding:3%;
    width: 33.3% !important;
    margin-right:0% !important;
}
#kacheln {
    background-color:#007858;
}
#einleitung {
    background-color:#007858;
}
#einleitung .inside {
    max-width:70%;
    margin-right:auto;
    margin-left:auto;
    padding-right:15%;
    padding-bottom:1%;
    padding-left:15%;
}
#kacheln .inside {
    max-width:1400px;
    margin-right:auto;
    margin-left:auto;
}
.logo .image_container, .logo>figure {
    max-width:450px;
}
#header {
    width:70%;
    margin-right:auto;
    margin-left:auto;
    padding-top:20px;
    padding-bottom:20px;
}

/* ===== navigation.css ===== */
.mm-menu a,
.mm-menu span {
    text-transform:capitalize;
}
.mobile_navi {
    width:50px;
    margin-top:40px;
    margin-left:auto;
    text-align:right;
}
.mobile_navi a {
    width:50px;
    display:block;
    padding-top:30px;
    background-image:url("/files/layout/menu.svg");
    background-position:center top;
    background-repeat:no-repeat;
    text-decoration:none;
    color:#008a6b;
}
#header .-large-last {
    float:right;
    margin-left:auto;
    text-align:right;
}

/* ===== screen_1150.css ===== */
@media (max-width:1150px) {
#footer h2 {
    margin: 10px 0 20px;
    padding: 0;
    text-align: left;
    font: 22px robotobold;
    letter-spacing: 2px;
}
#header {
    width:90%;
}
#footer .inside {
    width:90%;
    margin-right:auto;
    margin-left:auto;
    padding-top:20px;
    padding-bottom:20px;
}
#ref .inside {
    width:90%;
    margin-right:auto;
    margin-left:auto;
    padding-top:20px;
    padding-bottom:20px;
}
#einleitung .inside {
    max-width:90%;
    margin-right:auto;
    margin-left:auto;
    padding-right:5%;
    padding-bottom:1%;
    padding-left:5%;
}
#kacheln .inside {
    max-width:1400px;
    margin-right:auto;
    margin-left:auto;
}
#main .inside {
    width:90%;
}
#kacheln p {
    min-height:440px;
}
.sl-tx {
    width:280px;
        bottom:0;
        left:px;
        position:absolute;
        margin-bottom:6%;
        margin-left:5%;
        text-align:center;
        z-index:1003;
}
.sl-tx p {
    text-align:left;
    font-family:robotobold;
    color:#007858;
    margin-bottom:10px;
        font-size:34px;
        line-height:46px;
}
}

/* ===== Screen_800.css ===== */
@media (max-width:800px) {
.ce_gallery li.col_1,
.ce_gallery li.col_3 {
    margin-bottom:1%;
    padding-right:0;
    width: 48.5%;
    padding-left: .5%;
}
.ce_gallery li.col_0,
.ce_gallery li.col_2 {
    margin-bottom:1%;
    width: 48.5%;
    padding-right: .5%;
    padding-left: 0%;
}
#kacheln p {
    min-height:10px;
}
.sl-tx {
    width:280px;
        bottom:0;
        left:px;
        position:absolute;
        margin-bottom:6%;
        margin-left:5%;
        text-align:center;
        z-index:1003;
}
.sl-tx p {
    text-align:left;
    font-family:robotobold;
    color:#007858;
    margin-bottom:10px;
        font-size:22px;
        line-height:30px;
}
.no-space .rs-columns {
    display:inline-block;
}
.no-space .rs-column.-large-col-3-1 {
    padding: 1%;
    width: 98% !important;
    margin-right: 0% !important;
}
.rs-column.-small-col-2-1,
#footer .rs-column.-medium-col-3-1 {
    margin-top:20px;
    width:100% !important;
    margin-right:0%!important;
}
.rs-column.-small-col-2-1 {
    margin-top:0;
}
.height1 div.ce_text,
.height1 div.mod_newslist {
    min-height:50px;
}
}

/* ===== screen_560.css ===== */
@media (max-width:560px) {
.sl-tx {
    width:150px;
        bottom:0;
        left:px;
        position:absolute;
        margin-bottom:1%;
        margin-left:5%;
        text-align:center;
        z-index:1003;
}
.sl-tx p {
    text-align:left;
    font-family:robotobold;
    color:#007858;
    margin-bottom:10px;
        font-size:16px;
        line-height:20px;
}
.mod_rocksolid_slider .link-button a {
    width:150px;
    font-size:12px;
}
}

/* ===== screen_350.css ===== */
@media (max-width:350px) {
.sl-tx {
    display:none;
    width:150px;
        bottom:0;
        left:px;
        position:absolute;
        margin-bottom:1%;
        margin-left:5%;
        text-align:center;
        z-index:1003;
}
}

/* ===== screen_760.css ===== */
@media (max-width:760px) {
.lang-toggle-nav {
    left:0;
}
.mobile_navi {
    width: 50px;
    margin-top: 40px;
    margin-right: auto;
    text-align: left;
}
#header .-large-last {
    float: left;
    margin-right: auto;
    text-align: left;
}
.rs-column.-medium-col-5-4,
.rs-column.-small-col-5-1 {
    width:100% !important;
    margin-right:0% !important;
}
}

/* ===== content-gallery (Contao 5 gallery content element) ===== */
.content-gallery ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.content-gallery li {
    margin: 0;
}
.content-gallery figure {
    margin: 0;
}
.content-gallery.gallery-contain img {
    object-fit: contain;
}
.content-gallery figure a,
.content-gallery figure picture {
    display: block;
}
.content-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
}
.content-gallery figcaption {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #575756;
}
.content-gallery--cols-1 ul { grid-template-columns: repeat(1, 1fr); }
.content-gallery--cols-2 ul { grid-template-columns: repeat(2, 1fr); }
.content-gallery--cols-3 ul { grid-template-columns: repeat(3, 1fr); }
.content-gallery--cols-4 ul { grid-template-columns: repeat(4, 1fr); }
.content-gallery--cols-5 ul { grid-template-columns: repeat(5, 1fr); }
.content-gallery--cols-6 ul { grid-template-columns: repeat(6, 1fr); }
@media (max-width:1150px) {
    .content-gallery--cols-5 ul,
    .content-gallery--cols-6 ul {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width:800px) {
    .content-gallery--cols-3 ul,
    .content-gallery--cols-4 ul,
    .content-gallery--cols-5 ul,
    .content-gallery--cols-6 ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .content-gallery ul {
        gap: 12px;
    }
}
@media (max-width:560px) {
    .content-gallery--cols-2 ul,
    .content-gallery--cols-3 ul,
    .content-gallery--cols-4 ul,
    .content-gallery--cols-5 ul,
    .content-gallery--cols-6 ul {
        grid-template-columns: repeat(1, 1fr);
    }
}
.mod_rocksolid_slider.rsts-type-slide .rsts-nav-bullets {
    display: none;
}
#footer, #footer * {
    color: #fff;
}

