:root {
    --main: #0452a5;
    --main-opac: rgba(4, 82, 165, 0.6);
    --main-opac-min: rgb(54 73 161 / 90%);
    --background-color: #fff;
    --bg-grey: #f9f9f9;
    --main-juicy: #005dc0;

    --shadow: 3px 3px 12px rgba(0, 0, 0, 0.15);
    --shadow-hover: 5px 5px 18px var(--main-opac);
    --xtra-shadow: 5px 5px 18px rgba(255, 255, 255, 0.2);
    --fach-duration: 1500ms;
    --border: 1px solid var(--main);
    --border-light: 1px solid #eee;
    --border-bt: 2px solid var(--main);
    --gradient: linear-gradient(0deg, rgba(30, 30, 30, 0.8), transparent);

    --clr-primary-dark: #222222;
    --clr-primary-white: #fff;
    --clr-primary-light: #1e1e1e;

    --fc: #000;
    --fc-dark: #000;

    --ff: "Figtree", sans-serif;
    --ff-heading: var(--ff);

    --regular: 400;
    --bold: 700;
    --black: 800;

    --fs-300: 0.8125rem;
    --fs-400: 0.875rem;
    --fs-500: 1rem;
    --fs-600: 1.4rem;
    --fs-650: 1.5rem;
    --fs-700: 1.8rem;
    --fs-800: 2.1rem;
    --fs-900: 2.8rem;

    --fs-body: var(--fs-400);
    --fs-primary-heading: var(--fs-800);
    --fs-secondary-heading: var(--fs-700);
    --fs-nav: var(--fs-500);
    --fs-button: var(--fs-300);
}

.fach1 .row,
.fach2 .row,
.fach3 .row {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding-left: 10px;
    padding-right: 10px;
}

.faching {
    position: relative;
    height: 500px;
    float: left;
    width: 100%;
    display: block;
}

.fach1 {
    left: 0;
    width: 50%;
    height: 100%;
    top: 0;
    transition: var(--fach-duration);
    transform: translate(0%, 0%);
    /* z-index: 2; */
}

.fach2 {
    left: 100%;
    width: 50%;
    height: 50%;
    top: 0;
    transition: var(--fach-duration);
    transform: translate(-100%, 0%);
    /* z-index: 1; */
}

.fach3 {
    left: 100%;
    width: 50%;
    height: 50%;
    top: 100%;
    transition: var(--fach-duration);
    transform: translate(-100%, -100%);
    /* z-index: 0; */
}

.fach1,
.fach2,
.fach3 {
    position: absolute;
    padding: 20px;
}

.fach1 .row > div,
.fach2 .row > div,
.fach3 .row > div {
    z-index: 1;
}

.uniqe1 .row {
    background: url(/userdata/images/fach-bg1.jpg);
    background-size: cover;
    background-position: center;
}

.uniqe2 .row {
    background: url(/userdata/images/fach-bg2.jpg);
    background-size: cover;
    background-position: center;
}

.uniqe3 .row {
    background: url(/userdata/images/fach-bg3.jpg);
    background-size: cover;
    background-position: center;
}

.fach1 .row:after,
.fach2 .row:after,
.fach3 .row:after {
    content: "";
    position: absolute;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 90%), transparent);
    bottom: 0px;
    z-index: 0;
}

.component.footer-logo img {
    object-fit: contain;
    width: 100% !important;
    height: 100% !important;
}

.component.privacy_policy .textcontent:first-child {
    text-align: left;
}

.fach2 .button.content-btn,
.fach3 .button.content-btn {
    margin-bottom: -74px;
    opacity: 0;
    transition: var(--fach-duration);
}

.fach2 .row:hover .button.content-btn,
.fach3 .row:hover .button.content-btn {
    margin-bottom: 0px;
    opacity: 1;
    transition: var(--fach-duration);
}

.fach1 .button.content-btn {
    margin-bottom: 0px;
    opacity: 1;
    transition: var(--fach-duration);
}

/* Loader */
.loader {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        transparent,
        transparent 40%,
        var(--main)
    );
    animation: animate 2s linear infinite;
}

.loader::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    bottom: 6px;
    right: 6px;
    background: #fff;
    border-radius: 50%;
    z-index: 1000;
}

.loader::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: linear-gradient(
        45deg,
        transparent,
        transparent 40%,
        var(--main)
    );
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: var(--main-opac);
    display: flex;
    justify-content: center;
    align-items: center;
}

.preload {
    overflow: hidden;
}
.logo-icon img {
    position: absolute;
    z-index: 999;
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* Loader */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
    list-style: none;
}

/* Set core defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Reset */

@font-face {
    font-family: "Figtree";
    src: url("/layout/frontend/b2c/dist/fonts/Figtree.ttf");
}

body {
    background-size: 100%;
    font-size: var(--fs-500);
    font-weight: var(--regular);
    line-height: 1.42857143;
    font-family: var(--ff);
    color: var(--fc);
    overflow-x: hidden;
    margin: 0;
}

.row {
    float: left;
    width: 100%;
}

.p-3 {
    padding: 1.5rem;
}

.pb-5 {
    padding-bottom: 2rem !important;
}

/*
**** Infos ****
Universal Color: #5a9c9d
*/

#cookie-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    z-index: 200;
    min-width: 320px;
}

#cookie-bar #cookie-bar-button {
    float: right;
    margin-left: 20px;
    display: inline-block;
    padding: 8px 10px;
    min-width: 150px;
    text-transform: uppercase;
    border: 1px solid #ff6532;
    color: var(--clr-primary-white);
    cursor: pointer;
    background-color: #ff6532;
    text-align: center;
}

#cookie-bar #cookie-bar-button:hover {
    background-color: #e43900;
    border-color: #e43900;
}

#cookie-bar #cookie-bar-button:active {
    background-color: #b22c00;
    border-color: #b22c00;
}

#cookie-bar #cookie-bar-prompt-button {
    white-space: nowrap;
}

div#header,
.header-wrapper {
    height: 60px;
    width: 100%;
    z-index: 10;
}

#cookie-bar > p {
    float: left;
    margin: 0;
    line-height: 40px;
}

#cookie-bar:after {
    clear: both;
    display: block;
    content: " ";
}

.header-wrapper.fixed-header {
    position: fixed;
    top: 0;
    z-index: 99999999999;
}

/* Sonder-Module */
html {
    scroll-behavior: smooth;
}

/* FAQ */

.faq_group_container .faq_question_box {
    padding: 5px 15px 8px 15px;
    border: none;
    background: #ccc;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
}

.faq_question_box {
    cursor: pointer;
}

.faq_group_container .faq_answer_box {
    margin-bottom: 30px;
    padding: 20px;
    background: #f6f6f6;
    margin-top: -10px;
    border-radius: 0 0 5px 5px;
}

.faq_question_box.active {
    border-radius: 5px 5px 0 0;
    background: var(--main);
}

.faq_question_box:after {
    content: "+";
    position: absolute;
    right: 16px;
    color: var(--clr-primary-white);
    top: 50%;
    font-size: 20px;
    transform: translateY(-50%);
}

.faq_question_box.active:after {
    content: "-";
    position: absolute;
    right: 16px;
    color: var(--clr-primary-white);
    bottom: unset;
    font-size: 25px;
}

.faq_group_container .faq_answer_box {
    display: none;
}

.faq h3 {
    font-size: 18px;
    font-weight: 400 !important;
    border: none;
    color: var(--clr-primary-white);
    line-height: 1.2;
    margin-bottom: 7px;
}

.next lottie-player {
    margin: 0 auto;
}

.faq-search input[type="text"] {
    width: 250px;
    height: 30px;
    color: var(--clr-primary-white);
    background: rgba(9, 0, 0, 0.9);
    border: 0;
    padding: 20px;
    position: relative;
}

ol li,
ul li {
    list-style: none;
}

.same-height > .row {
    display: flex;
    flex-wrap: wrap;
}

div#content,
.main-screen {
    padding: 5rem 0;
    position: relative;
    float: left;
    width: 100%;
}

.main-screen.grey {
    background-color: var(--bg-grey);
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.pop-up-element .row {
    z-index: 1;
    padding: 40px !important;
    background: rgb(4 4 4 / 20%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 2px solid var(--akzentfarbe);
    max-width: 1440px;
    margin: 0 auto;
    color: var(--clr-primary-white);
    display: -webkit-box;
}

.pop-up-element .row :is(li, p, a, span, strong, b, em, ul, li, h2, h1, h3) {
    color: var(--clr-primary-white) !important;
}

.pop-up-element {
    z-index: 1;
    padding: 30px;
}

.pop-up-element {
    display: none;
}

.pop-up-element:first-child {
    display: block;
}

.pop-up-button-group .row {
    display: flex;
    justify-content: center;
}

.pop-up-element .row {
    cursor: pointer;
}

.pop-up-element.current {
    display: block;
}

.pop-up-button {
    cursor: pointer;
}

.pop-up-button.current {
    background: var(--main);
    color: var(--clr-primary-white);
    border: 1px solid var(--main);
}

/* Navgation */

div#header {
    background: none;
}

#header a {
    color: var(--fc) !important;
}

#header .hamburger-menu a {
    color: #fff !important;
}

#header .hamburger-menu a:hover {
    color: var(--main) !important;
    background: #fff;
}

.lottie-player {
    margin-left: auto;
}

.header-animation {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0;
}

.header-animation iframe {
    border-radius: 5px;
    overflow: hidden;
}

.next .collection_content.title.custom {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0 0 0.5rem;
}

.faq_nearest_search {
    display: none;
}

.collection_list.next .collection_container:before {
    content: "";
    background: var(--main);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 5px 5px 0 0;
}

.collection_list.next .collection_container {
    border: 1px solid #dfdfdf;
    padding: 30px;
    border-radius: 5px;
    min-height: 225px;
}

.mysyde .collection_content.title.custom {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    padding-top: 13px;
}

.header-text a {
    background: var(--main);
    color: var(--clr-primary-white);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: rgb(48 98 120 / 48%) 0px 7px 29px 0px;
    float: left;
    margin-top: 30px;
    margin-right: 20px;
    margin-left: 20px;
}

.header-text a:hover {
    color: var(--clr-primary-white);
    box-shadow: rgb(48 98 120 / 82%) 0px 7px 29px 0px;
}

#header > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header > .container:before {
    display: none;
}

.collection_content.field-1655046812 {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding-top: 1rem;
}

.collection_content.field-1655046828 {
    text-align: center;
}

.collection_content.field-1655046843 img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.collection_content.field-1655053570 {
    margin-right: 1rem;
    flex-shrink: 0;
    height: 40px;
}

.collection_list.bugfixes {
    width: 33.33%;
    padding: 10px;
}

.bugfixes-collection {
    padding-left: 0 !important;
    margin-left: -10px !important;
}

.contactformular {
    max-width: 680px;
}

.einleitung .input_collection_link_checkbox.col-md-4.iconfield {
    width: 50%;
}

.img_container.img-option {
    height: 190px !important;
    border-radius: 10px;
    overflow: hidden;
}

.produktauswahl-area .input_collection_link_checkbox.col-md-4.iconfield {
    width: 50%;
}

h2#input_collection_link_65 {
    display: none;
}

.unt div#area-5 h2,
.home div#area-8 h2 {
    color: #fff;
}

.home div#area-8 .container,
.unt div#area-5 .container {
    display: flex;
    align-items: center;
}

.unt div#area-5,
.home div#area-8 {
    background: url(/userdata/images/bg-jobs.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--clr-primary-white);
    min-height: 430px;
}

.highlight-group {
    padding: 100px 0;
}

.highlight-group h2 {
    margin-top: 0;
}

.new-f-text h2 {
    color: var(--clr-primary-white);
}

.new-f-img:before {
    content: "";
    background: #000;
    width: 81px;
    height: 8px;
    position: absolute;
    top: -3px;
    left: 12%;
    border-radius: 5px 5px 0 0;
}

.new-f-img img {
    border: 7px solid #000;
    border-radius: 25px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    width: 100% !important;
    height: 100% !important;
}

.collection_list.bugfixes .collection_container {
    display: flex;
    align-items: center;
    border: 1px solid #243d482e;
    padding: 10px;
    border-radius: 5px;
    min-height: 70px;
}

.collection_content.field-1655053557 {
    font-size: 1rem;
    margin: 0;
}

.collection_content.field-1655053570 img {
    object-fit: contain;
}

.header-text h1 {
    margin-top: 0;
}

.collection_content.field-1655046843 {
    height: 320px;
}

.vergleich {
    height: 750px !important;
}

.twentytwenty-container {
    min-height: 200px;
}

.highlights-image img {
    width: 100% !important;
    height: 100% !important;
}

.twentytwenty-container {
    height: 750px !important;
}

.twentytwenty-left-arrow {
    border-right: 6px solid black !important;
}

.twentytwenty-right-arrow {
    border-left: 6px solid black !important;
}

img.twentytwenty-before,
img.twentytwenty-after {
    object-fit: contain;
    height: 100% !important;
}

/* Navgation Ende */

/* Header Kollektion */

.collection_list.header {
    width: 100%;
}

.header-text-wrapper {
    max-width: 1440px;
    width: 1440px;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    min-width: 320px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
}

.collection_content.header-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.collection_content.header-quote-author {
    font-size: 0.9em;
    padding-top: 0.3em;
}

.collection_list.header .collection_container {
    height: 696px;
}

.collection_content.header-title {
    font-family: "Raleway";
    font-size: 4em;
    font-weight: 700;
    width: 90%;
}

.collection_content.header-quote {
    padding-top: 1em;
    width: 39%;
}

/* Header Kollektion Ende */

/* Kollektion ALL */

.collection_list.all {
    width: 33.33%;
    float: left;
    padding: 20px;
}

.collection_list.all .collection_container {
    background: var(--clr-primary-white);
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-bottom: 7px solid var(--accent-color);
}

.collection_list.all .collection_container:hover {
    box-shadow: rgb(100 100 111 / 50%) 0px 7px 29px 0px;
}

.collection_content.all-img {
    height: 216px;
    position: relative;
    z-index: 0;
}

.all-text-group {
    padding: 30px;
    height: 331px;
    min-height: 331px;
    position: relative;
    background: var(--clr-primary-white);
}

.collection_content.all-title-small {
    color: #7b7b7b;
    font-size: 16px;
    padding-bottom: 0.2em;
}

.collection_content.all-title {
    font-family: "Raleway";
    font-size: 25px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.collection_content.all-teaser {
    padding-top: 1em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.all-wrapper {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.collection_content.all-img img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: 0.5s;
}

div#footer-header {
    float: left;
    width: 100%;
}

#header > .container:before {
    display: none;
}

#header_1 img {
    padding: 10px;
}

#header > .container:after {
    display: none;
}

.collection_list.all
    .collection_container:hover
    .collection_content.all-img
    img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.collection_container.Presse.und.Publikationen .all-text-group {
    border-top: 2px solid #ededed;
}

.collection_container.Soziales.Engagement .collection_link {
    display: none;
}

.collection_list.ref-coll .collection_link a:hover,
.collection_list.news-coll .collection_link a:hover,
.collection_list.ex-coll .collection_link a:hover {
    color: #fff !important;
    background-color: var(--main-juicy);
}

.collection_list.ref-coll .collection_link a,
.collection_list.news-coll .collection_link a,
.collection_list.ex-coll .collection_link a {
    position: relative;
    float: left;
    background: var(--main);
    opacity: 1;
    padding: 11px 20px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

.w-25 .collection_list.teamCollection,
.w-25 .collection_list.blog-multi {
    width: 25%;
    float: left;
    padding: 20px;
    border: 2px solid #80808080;
    text-align: center;
}

.border-gray {
    border: 2px solid #80808080;
}

.mg-top-30 {
    margin-top: 30px;
}

.padding-20 {
    padding: 20px;
}

/* Kollektion ALL Ende */

.slideshow_box {
    margin-bottom: 30px;
}

.slideshow_box .slideshow_content {
    width: 100%;
}

.slideshow_box .slideshow_content .slideshow_content_inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    text-align: center;
}

.slideshow_box .slideshow_content .slideshow_headline {
    font-size: 45px;
    line-height: 1;
    color: var(--clr-primary-white);
    margin-top: 0;
    font-weight: 600;
}

.slideshow_box .slideshow_content .slideshow_text {
    font-weight: 600;
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 20px;
}

.slideshow_box .slideshow_content .slideshow_button .button {
    color: #222222;
    text-transform: uppercase;
}

.slideshow_box .owl-carousel-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.slideshow_box .owl-carousel-item > a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* Full width split with container */

.container-holder {
    overflow: hidden;
    background: white;
    padding: 0 !important;
}

.collection_list {
    width: 33.33%;
    float: left;
    padding: 15px;
}

.header-text h1 img {
    width: 50px !important;
}

.d-none {
    display: none !important;
}

/* Schriften */

h1 {
    color: var(--fc);
    line-height: 1.2;
    padding: 0 !important;
}

.header-text {
    padding: 0;
}

.header-text p, .header-text {
    color: var(--fc);
    padding: 0 !important;
}

h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    clear: both;
    font-weight: var(--bold);
    color: var(--fc);
    margin: 10px 0 0 0;
}

h1 {
    font-size: var(--fs-900);
}

h2 {
    font-size: var(--fs-700);
}

h3 {
    font-size: var(--fs-600);
}

h4,
h5 {
    font-size: var(--fs-500);
}

h6 {
    font-size: var(--fs-400);
}

/* 
.patrol h1, .patrol h2, .patrol h3, .patrol h4, .patrol h5, .patrol h6, .patrol,  .we_are_breadcrumb h2 {
    color: #2d2d2d !important;
} */

/* END Schriften */

a {
    color: #4b4b4b;
    text-decoration: none;
    transition: 300ms;
}

a:hover {
    color: var(--main-color);
    text-decoration: none;
}

a.button_filter:hover,
.button a:hover {
    background: var(--main-juicy) !important;
}

/* Kollektion */

.full_preview .collection_full {
    display: block !important;
}

.collection_list,
.collection_container {
    position: relative;
}

.collection_list,
.content-container {
    position: relative;
}

/* END Kollektion */

/* Kontaktformular */

.fade {
    opacity: 1;
}

.modal {
    display: block;
}

.contactformular .form-check {
    height: 35px;
    line-height: 35px;
    clear: both;
    height: auto !important;
    line-height: 35px;
}

.contactformular .form-check input {
    display: inline-block !important;
    width: auto !important;
}

.input.select_body,
.contactformular select {
    width: 100% !important;
}

.modal.success .modal-header {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: var(--clr-primary-white);
}

/* END Kontaktformular */

/* OWL Carousel Global */

.owl-stage-outer {
    width: 100%;
}

/* END OWL Carousel Global */

/* END Global */

/* Cookie */

div#cookiewarnung {
    position: fixed;
    bottom: 40px;
    background: #f2f6ff;
    color: #000;
    z-index: 99999999;
    width: 80%;
    text-align: center;
    padding: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    border: 1px solid #d7e0ff;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

.cookie-option-container {
    margin-top: 10px;
}

.cookie-option {
    cursor: pointer;
    border: 1px solid #d7e0ff;
    display: inline-block;
    padding: 7px !important;
    border-radius: 5px;
    background: #e5edff;
}

div#cookie-config {
    display: none;
    left: -100%;
    transition: 1s;
}

div#cookie-config.show {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--clr-primary-white);
    max-width: 300px;
    z-index: 99999999999;
    overflow-y: auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#cookie-config .cookie-config-close {
    background: #f2f6ff;
    color: #000;
    padding: 10px;
    position: relative;
    cursor: pointer;
}

#cookie-config input {
    margin-right: 10px;
}

#cookie-config label {
    font-weight: normal;
    color: #000;
}

.cookie-config-close:after,
.cookie-arrow {
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotate(225deg);
    box-shadow: -2px 2px 0 rgba(90, 156, 157, 0.5);
    content: "";
    right: 20px;
    top: 20px;
    transition: 0.1s;
}

.cookie-config-options.open .cookie-arrow {
    transform: rotate(315deg) !important;
}

.cookie-config-options {
    background: #f2f6ff;
    padding: 10px;
    cursor: pointer;
    position: relative;
}

input#required {
    width: auto;
}

input#tracking {
    width: auto;
}

.cookie-config-configuration .cookie-config-options:nth-child(2) {
    border-bottom: 1px solid #d5d5d5;
}

.config-child {
    display: none;
    background: var(--clr-primary-white);
    padding: 10px;
}

.cookie-config-save {
    padding: 10px;
    text-align: center;
    background: #68c567;
    cursor: pointer;
    margin: 20px 15px;
    color: var(--clr-primary-white);
    border-radius: 5px;
}

.cookie-config-configuration {
    margin-top: 10px;
}

.cookie-config-configuration > p {
    padding: 10px;
    font-weight: bold;
}

.cookie-config-description {
    padding: 10px;
    font-size: 15px;
}

.cookie_conflict_youtube {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    border: 2px solid #f07474;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0px;
    border-radius: 10px;
    background: var(--clr-primary-white);
    font-size: 17px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cookie_conflict_youtube a {
    text-decoration: underline;
    font-weight: 500;
}

/* Cookie-End */

.tab {
    overflow: hidden;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.tabcontent,
.tabcontentSection {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.multiFormPage form .header-text-wrapper {
    display: none;
}

.multiFormPage form .collection_content.header-img {
    position: inherit;
    top: 0;
    right: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.multiFormPage form #slider-wrapper,
.multiFormPage form .collection_list.header .collection_container {
    height: auto;
}

.multiFormPage form .form-group label.classLabel {
    text-align: center;
    font-size: 24px;
}

.multiFormPage form .iconfield .material-icons {
    font-size: 15rem;
}

.multiFormPage form .collection_content.header-img img {
    width: 100%;
    height: 300px !important;
}

.multiFormPage form .iconfield {
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
}

.contact-button button {
    background: var(--main);
    color: var(--clr-primary-white);
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 5px;
}

.input_collection_link_checkbox {
    cursor: pointer !important;
}

.multiFormPage form .owl-nav {
    display: none !important;
}

.img_container.img-option {
    height: 320px;
}

.form-group h2 {
    text-align: center;
    margin-bottom: 1.2rem;
}

.faq_headline {
    margin: 0 0 1rem;
}

input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    border: none;
    border-radius: 0px;
    background: none;
    border-bottom: var(--border);
}

input#button {
    border-bottom: none;
}

input.invalid {
    background-color: #ffdddd;
}

.form-group {
    float: left;
    width: 100%;
    padding: 10px 0;
}

.kontaktanfragegruppe label {
    display: flex;
    align-items: center;
}

.kontaktanfragegruppe label br {
    display: none;
}

.contactformular input {
    width: auto !important;
}

.kontaktanfragegruppe .row {
    display: flex;
    align-items: center;
    margin: 0 0 1rem;
}

.border-none {
    border: none !important;
}

.tab {
    display: none;
}

input#input_collection_link_40_value_1 {
    width: auto;
}

.kontaktanfragegruppe .input_collection_link_checkbox {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 30%;
}

input#input_collection_link_40_value_2 {
    width: auto;
}

button {
    background-color: var(--main);
    color: var(--clr-primary-white);
    border: none;
    padding: 11px 20px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: var(--main-juicy);
}

.contact-button #prevBtn {
    background: #787878 !important;
}

.col-xs-12.all-dishes.all-dishes h4 {
    color: var(--clr-primary-white);
}

.col-xs-12.all-dishes.all-dishes {
    padding: 10px 20px;
    background: var(--main);
    border: 1px solid grey;
    border-radius: 5px;
    margin-bottom: 1rem;
    color: var(--clr-primary-white);
}

.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

.step.finish {
    background-color: #04aa6d;
}

/* Header */

/* Sticky Header */

#header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

/* END Sticky Header */

.header-wrapper {
    position: relative;
}

#header ul.level_1 {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    gap: 2rem;
}

#header .hamburger-menu ul.level_1 {
    justify-content: space-between;
    gap: unset;
}

#header div#header_3 li {
    display: inline-block;
    float: left;
}

#header .active_tree {
    font-weight: var(--bold);
    color: var(--main) !important;
}

#header .component.logo,
#header .component.logo .textcontent {
    height: 100%;
}

#header a:hover {
    color: var(--main) !important;
}

#header_1 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

div#header_3 {
    display: none;
}

div#header,
#header .container {
    height: 100%;
}

div#header,
.header-wrapper {
    height: 60px;
    width: 100%;
    z-index: 10;
    float: left;
}

div#header_1 {
    height: 100%;
}

.sticky-active {
    position: relative;
}

/* hamburger menu */

#toggle_navigation,
.hamburger-menu {
    display: none;
}

div#toggle_navigation {
    float: right;
    width: auto;
    padding: 0 !important;
    height: auto;
    background: transparent;
    margin-right: 10px;
}

.hamburger-menu {
    background: var(--bg-grey);
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    display: none;
}

#header .hamburger-menu ul.level_2 {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    color: #000 !important;
    padding: 0;
    border-radius: 0;
    margin-bottom: 15px;
}

#header .hamburger-menu ul.level_2 a:hover {
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    transition: 300ms;
}

#header .hamburger-menu ul.level_2 a {
    color: #fff;
}

.hamburger-menu li.level_1.levels:after {
    display: none;
}

#header .hamburger-menu ul.level_1 {
    display: block;
}

#header .hamburger-menu li.level_1 {
    padding: 0;
}

#header .hamburger-menu a {
    padding: 8px 20px !important;
    display: block;
    border-bottom: 1px solid #fff;
    background: var(--main);
}

#header .hamburger-menu li.level_1:last-child {
    border-bottom: 0 !important;
}

#header .hamburger-menu li.level_1 {
    list-style-type: none;
}

#toggle_navigation label.hamburg {
    display: block;
    background: transparent;
    width: 55px;
    height: 50px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    margin: 0;
    cursor: pointer;
}

.line {
    position: absolute;
    left: 10px;
    height: 4px;
    width: 35px;
    background: var(--main);
    border-radius: 2px;
    display: block;
    transition: 0.5s;
    transform-origin: center;
}

.line:nth-child(1) {
    top: 12px;
}

.line:nth-child(2) {
    top: 24px;
}

.line:nth-child(3) {
    top: 36px;
}

div#toggle_navigation.active > .hamburg .line:nth-child(1) {
    transform: translateY(12px) rotate(-45deg);
}

div#toggle_navigation.active > .hamburg .line:nth-child(2) {
    opacity: 0;
}

div#toggle_navigation.active > .hamburg .line:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}

/* end* Header */

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

/* Slideshow */

#slider-wrapper {
    position: relative;
    height: 450px;
}

#slider-wrapper {
    position: relative;
    height: 450px;
    float: left;
    width: 100%;
    border-bottom: var(--border-bt);
}

.home #slider-wrapper {
    height: 550px;
}

#slider .textcontent {
    max-height: 100%;
    overflow: hidden;
}

div#slider {
    height: 100%;
    position: relative;
}

div#slider-title .container {
    width: 100%;
}

#slider #slider-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#slider div#slider-title h1 {
    color: var(--clr-primary-white);
}

#slider-wrapper div.slider-untertitle {
    position: absolute;
    top: 0;
    width: 100%;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
}

#slider img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* End Slideshow */

/* Pop up Element */

/* .pop-up-element:first-child {
    display: block;
}
.pop-up-element {
    display: none;
} */

/* END Pop up Element */

/* Anker Element */

.anker-navi .row {
    margin: 0 !important;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.anker-navi {
    position: relative;
    background: rgba(77, 77, 77, 0.7);
    top: 0;
    width: 100%;
    clear: both;
    font-family: calibri light !important;
    margin-top: -70px;
    margin-bottom: 50px;
    z-index: 9;
    transition: 0.1s;
}

.anker-navi.sticky {
    position: fixed;
    top: 0;
    margin: 0 !important;
    background: rgba(77, 77, 77, 0.7);
}

.anker-button .textcontent {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-weight: 600;
    text-transform: initial;
}

.anker-button .textcontent:hover,
.anker-button.active .textcontent {
    background: #5a9c9d !important;
}

.anker-button.button {
    margin: 0 !important;
    padding: 0 !important;
    /* width: 20%; */
    width: 16.1666%;
    border-left: 1px solid var(--clr-primary-white);
    border-bottom: 0;
    border-top: 0;
    background: transparent !important;
    color: var(--clr-primary-white);
    align-items: center;
}

.anker-button.button:last-child {
    border-right: 1px solid var(--clr-primary-white);
}

/* END Anker Element */

.d-flex,
.d-flex > .row {
    display: flex !important;
}

.align-items-center,
.align-items-center > .row {
    align-items: center !important;
}

/* Footer */

#footer {
    clear: both;
    padding: 70px 0 25px 0;
    background: url(/userdata/images/footer-bg.jpg);
    font-size: 15px;
    position: relative;
    float: left;
    width: 100%;
}

.footer-5 {
    color: #fff;
}

.footer-sitemap {
    height: auto;
    clear: both;
    margin: 0 auto;
    display: block;
    float: left;
    margin-bottom: 20px;
    width: 100%;
    padding-right: 50px;
}

.component.footer-seo .textcontent {
    text-align: justify;
}

.seo .footer-1 {
    width: 100%;
}

.row.seo {
    position: relative;
    float: left;
    width: 75%;
    display: block;
}

.footer-sitemap ul {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-logo-adress {
    position: relative;
    float: right;
    width: 25%;
}

#footer a:hover {
    color: rgb(255 255 255 / 70%) !important;
}

#footer li {
    list-style-type: none;
}

.footer-sitemap li.level_1 {
    font-weight: 500;
    font-size: var(--fs-600);
    width: auto;
    float: left;
}

.component.privacy_policy {
    display: flex;
    justify-content: space-between;
}

#footer li.level_1 a {
    display: inline-block;
    color: var(--font);
    font-weight: 600;
}

div#privacy-policy ul {
    float: left;
    padding: 0;
    margin: 0 !important;
}

.footer-kontakt strong {
    font-size: var(--fs-600);
}

.footer-sitemap li.level_2 {
    font-weight: normal;
    font-size: 15px;
    text-transform: initial;
}

div#privacy-policy {
    clear: both;
    text-align: right;
    color: var(--clr-primary-white);
    background: var(--main);
    padding: 8px 0px !important;
}

.content-img .textcontent img {
    height: unset !important;
    max-height: 500px;
    object-fit: cover;
    width: unset;
    width: 100% !important;
    object-position: center;
}

div#privacy-policy a {
    color: var(--clr-primary-white);
}

#privacy-policy .footer-1 {
    text-align: left;
}

div#privacy-policy ul li {
    display: inline-block;
    padding: 0px;
    font-size: 0.9rem;
}

#footer .footer-seo {
    clear: both;
    color: #fff;
}

.seo .footer-1 {
    padding-right: 50px;
}

.seo .footer-2 {
    padding-left: 50px;
}

.footer-links a {
    color: #b5b5b5;
}

.footer-links a:hover {
    color: #5a9c9d !important;
}

.component.footer-logo {
    margin: 40px 0 20px 0;
}

/* End Footer */

.owl-dots {
    height: 10px;
}

.owl-dots {
    position: relative;
    float: left;
    width: 100%;
    height: 20px;
}

.owl-dot span {
    height: 10px;
    width: 10px;
    background: #ccc;
    position: relative;
    float: left;
    border-radius: 500px;
    margin: 0 2px;
}

.owl-dot.active span {
    position: relative;
    float: left;
    height: 10px;
    width: 10px;
    background: #7f7f7f;
    border-radius: 500px;
}

.owl-dots {
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
}

.benefits .owl-stage {
    min-height: 240px;
}

.slidecontent_content_container {
    display: none;
}

.slidecontent_headline:after {
    content: "";
    position: absolute;
    right: 15px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--light-grey);
    border-right: 2px solid var(--light-grey);
    transform: rotate(45deg);
    transition: 300ms;
}

.slidecontent_headline.active:after {
    transform: rotate(-135deg);
    transition: 300ms;
    margin-top: 5px;
}

.slidecontent_headline {
    padding: 10px 40px 8px 0px;
    cursor: pointer;
}

div#slider:before {
    content: "";
    background: linear-gradient(
        65deg,
        rgb(255 255 255 / 50%),
        transparent,
        transparent
    );
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.expert .collection_list {
    width: 100%;
}

.collection_content.field-1655046843:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%), transparent);
    content: "";
    z-index: 0;
}

.leistungen-coll-text {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    padding: 30px;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.leistungen-coll-text a {
    color: #fff;
}

.leistungen-coll-text .title {
    font-size: var(--fs-650);
}

.leistungen-coll-text .collection_content.link a {
    background: var(--main);
    border-radius: 5px;
    padding: 11px 20px;
    float: left;
}

.leistungen-coll-text .collection_content.link {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.expert .owl-item.active.center .collection_content.field-1655046843 {
    height: 380px;
    transition: 500ms;
}

.collection_list.ver-coll .collection_content.link,
.collection_list.leistungen-coll .collection_content.link {
    bottom: 0;
    position: relative;
    opacity: 1;
    transition: 500ms;
}

.center .collection_list.ver-coll .collection_content.link,
.collection_list.ver-coll:hover .collection_content.link,
.center .collection_list.leistungen-coll .collection_content.link,
.collection_list.leistungen-coll:hover .collection_content.link {
    bottom: 0px;
    position: relative;
    opacity: 1;
    transition: 500ms;
}

.collection_list.ver-coll .collection_content.link,
.collection_list.leistungen-coll .collection_content.link {
    bottom: -120px;
    position: relative;
    opacity: 0;
    transition: 500ms;
}

.owl-item.active {
    margin-bottom: 60px !important;
}

.owl-item.active.center {
    margin-bottom: 0px !important;
}

.d-flex.flex-column > .row {
    flex-direction: column;
}

.flyer .row {
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 20px;
    background: url(/userdata/images/bg-img.jpg);
    min-height: 450px;
    justify-content: center;
    overflow: hidden !important;
    position: relative;
}

.flyer h2 {
    margin-top: 0;
}

.flyer .row:after {
    content: "";
    background: linear-gradient(90deg, var(--main-opac-min), transparent);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contactformular .sitepart_32 {
    margin-top: 15px;
}

.fach-group .row {
    background: cadetblue;
    border-radius: 10px;
    padding: 30px 15px;
}

.fach-wrap .fach-group {
    height: 50%;
}

.fach-wrap .fach-group:first-child {
    height: 100%;
}

.fach-wrap {
    height: 500px;
    float: left;
    margin-top: 40px;
}

.fach-wrap .fach-group .row {
    height: 100%;
}

.fach-group:nth-child(2) {
    padding-bottom: 15px;
}

.fach-group:nth-child(3) {
    padding-top: 15px;
}

.fach-group h3 {
    margin-top: 0px;
}

.box2 .row,
.box .row {
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 30px;
    background: #fff;
}

.box2,
.box {
    margin-bottom: 30px;
}

.box2 h3,
.box h3 {
    font-size: 1.45rem;
}

.box2 .row,
.box .row {
    box-shadow: var(--xtra-shadow);
    border-radius: 10px;
    padding: 40px;
    background: #fff;
    min-height: 232px;
}

.box2 .row {
    min-height: unset;
}

.box-wrap2 {
    display: flex;
    float: left;
    width: 100%;
    flex-wrap: wrap;
}

.box2 .row {
    height: 100%;
}

.box.long .row {
    display: flex;
    position: relative;
    gap: 40px;
    box-shadow: var(--shadow);
}

.box.long .row .textcontent {
    border-right: 1px solid #9d9d9c;
    padding-right: 25px;
    width: 25%;
}

.kar .box-nowrap .row .textcontent {
    border-right: 1px solid #9d9d9c;
    padding-right: 25px;
    width: unset;
}

.box.long .row .textcontent:last-child {
    border-right: unset;
    padding-right: 0px;
    border-bottom: unset;
}

.box-wrap {
    margin-top: 40px;
}

.box-wrap {
    margin-top: 20px;
    float: left;
    width: 100%;
}

.title-group .row {
    display: flex;
    align-items: center;
}

.title-group:after {
    position: absolute;
    height: 4px;
    width: 250%;
    transform: translateX(-50%);
    background: var(--main);
    content: "";
    bottom: 0;
}


.title-group {
    margin-bottom: 30px;
    padding-bottom: 60px;
}

.step-con:before {
    content: "";
    position: absolute;
    left: 15px;
    width: 25px;
    height: 25px;
    background: var(--main);
    border-radius: 500px;
    top: -44px;
}

.step-bg {
    background: url(/userdata/images/step-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.faq_headline {
    display: none;
}

.faq-text h2 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.faq {
    margin-top: 10px;
}

.box.long img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
    margin-bottom: 30px;
}

.form-img {
    padding: 0;
    padding-right: 40px;
}

.box img {
    width: auto !important;
    height: 42px !important;
    object-fit: contain;
}

.no-line .textcontent {
    border: none !important;
}

.kar div#area-4 .box2 {
    min-height: 260px;
}

.ref-wrap,
.jobs-wrap {
    display: flex;
    flex-wrap: wrap;
    /* float: left; */
}

.full_preview .ref-wrap,
.full_preview .jobs-wrap {
    width: 100%;
    position: relative;
    float: left;
    display: block;
}

div#footer-header {
    height: 0;
}

.collection_full .coll-img {
    padding-left: 40px;
    padding-bottom: 40px;
}

.ref-coll.collection_list .collection_container,
.news-coll.collection_list .collection_container,
.ex-coll.collection_list .collection_container,
.jobs.collection_list .collection_container {
    background: var(--bg-grey);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.collection_list .collection_content.b-text,
.collection_list .collection_content.mini-title,
.collection_list .collection_content.title.custom {
    padding: 0 30px;
}

.ref-coll .collection_content.title,
.ex-coll .collection_content.title,
.news-coll .collection_content.title,
.jobs .collection_content.title {
    font-weight: 600;
    font-size: var(--fs-650);
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 70px;
}

.collection_list .collection_content.mini-title {
    padding-top: 30px;
}

.collection_list .collection_content.b-text {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 30px;
}

.collection_content.mini-title {
    color: var(--main);
}

div#privacy-policy ul {
    margin: 8px;
}

.collection_list .collection_container:hover .coll-img img {
    transform: scale(1.1);
    transition: 300ms;
}

.collection_list .collection_container .coll-img img {
    transform: scale(1);
    transition: 300ms;
}

.collection_content.coll-img {
    overflow: hidden;
}

.ex-collpage div#slider-wrapper {
    display: none;
}

.back_to_overview {
    display: none;
}

.full_preview .filter_display {
    display: none;
}

.full_preview .collection_content.coll-img img {
    border-radius: 10px;
}

.collection_full .collection_content.coll-img {
    width: 40%;
    float: right;
}

.collection_full .full-wrap {
    width: 60%;
    float: left;
    padding-right: 60px;
}

.collection_full.events .full-wrap {
    padding: 0;
    padding-left: 40px;
}

.ex-collpage.full_preview #area-3 {
    background: var(--clr-primary-light);
}

.kar_col div#slider-wrapper {
    display: none;
}

.kar_col div#area-5,
.ex-collpage div#area-3 {
    padding-top: 40px;
}

.box.long.benefits .row .textcontent {
    width: 100%;
    border-right: 1px solid #ccc;
    padding-right: 20px;
}

.box.long.benefits:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 80px;
    height: 100%;
    background: linear-gradient(270deg, #000, #000, transparent);
}

.box.long.benefits:before {
    z-index: 1;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, #000, #000, transparent);
}

.box.long.benefits {
    padding: 0;
}

.box.long.benefits .row {
    overflow: hidden;
    padding-left: 0;
}

.box.long.benefits .row .owl-stage-outer {
    padding-left: 40px;
}

.ex-coll-preview {
    padding: 0;
}

.box.long.benefits {
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    border: var(--border);
}

.fac #area-6 .container,
.lei #area-6 .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .unt #area-8 .container {
  display: flex;
  align-items: center;
  justify-content: center;
} */

.unt .col-xs-12.content-img {
    margin-top: 105px;
}

.box-wrap {
    display: flex;
    flex-wrap: wrap;
}

.box .row {
    height: 100%;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #aaa #f6f6f6;
}
.hamburger-menu {
    scrollbar-width: thin;
    scrollbar-color: #dd3333 #f6f6f6;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 7px;
}

*::-webkit-scrollbar-track {
    background: #f6f6f6;
}

*::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 3px;
    border: 1px solid #f6f6f6;
}

.hamburger-menu ul.level_1::-webkit-scrollbar-thumb {
    background-color: #dd3333;
}

.collection_list .leistungen-coll-text .title {
    padding: 0 !important;
}

.box li,
.box2 li {
    list-style: square;
}

.box ul,
.box2 ul {
    padding-left: 20px;
}

.step-con ul {
    padding-left: 20px;
}
.step-con li {
    list-style: square;
}

.modal-header button {
    display: block;
    line-height: 1;
    padding: 3px 6px;
    float: right;
}

/* .col-xs-12.header-text .textcontent > a:last-child {
  background: none;
  box-shadow: none;
  transition: 300ms;
} */

.button-2 a {
    padding-left: 15px;
    background: none;
    box-shadow: none;
}

.header-text .textcontent {
    max-width: 1200px;
}

body:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url(/userdata/images/Hintergrund.png);
    z-index: -1;
    display: block;
    position: fixed;
}

body {
    position: relative;
}

.info-group .row {
    background: var(--clr-primary-light);
    border: var(--border);
}

ul li {
    list-style: url(/userdata/images/check.svg);
}

.info-group h3 {
    padding: 0 30px;
}

.info-group .button {
    padding: 30px;
    position: relative;
    float: left;
}

.info-group .row {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.info-title {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.info-img {
    position: absolute;
    left: 0;
    top: 0;
    height: 200px;
    width: 100%;
}

.info-img .textcontent {
    height: 100%;
}

.info-img img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
}

.info-title:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
}

.info-img:after {
    position: relative;
    width: 100%;
    height: 5px;
    background: var(--main);
    content: "";
    float: left;
}

.info-text li {
    margin-bottom: 30px;
}

.info-text {
    padding: 30px;
}

.special .info-text {
    padding: 30px 30px 0 30px;
}

ul {
    padding-left: 28px;
}

.info-group .button,
.info-group .button a {
    width: 100% !important;
    text-align: center;
}

.mar-b-40 {
    margin-bottom: 40px;
}

.special .info-title:after {
    display: none;
}

.special .info-title {
    height: auto;
    padding: 30px 30px 0px 30px;
    display: block;
}

.special .info-title2 {
    padding: 30px 30px 0px;
}

.special .info-text .textcontent {
    padding-bottom: 30px;
    border-bottom: var(--border);
}

.info-group h4 {
    font-size: 1.4em;
}

.collection_list.events {
    width: 100%;
}

.collection_list.events .collection_container {
    background: var(--bg-grey);
    border-radius: 10px;
    border: var(--border);
    position: relative;
    float: left;
    overflow: hidden;
    height: 280px;
}

.collection_list .event-img {
    width: 25% !important;
    padding: 0 !important;
    border-right: 6px solid var(--main);
}

.collection_list.events .collection_content {
    width: 75%;
    float: left;
    position: relative;
    padding: 0 40px;
}

.collection_list.events .collection_content.mini-title {
    padding-top: 40px;
}

.events .collection_content.title {
    padding: 0 40px !important;
    font-size: 1.8em;
    font-weight: 600;
}

.collection_full .event-short-desc {
    padding-bottom: 40px;
}

.collection_full.events .collection_content.title {
    padding: 0 !important;
}

.collection_list.events .event-date {
    position: absolute;
    bottom: 40px;
    left: 25%;
}

.collection_list.events .collection_link a {
    opacity: 1;
    background: var(--main);
    color: #fff;
    width: auto;
    height: auto;
    right: 30px;
    left: unset;
    top: unset;
    bottom: 40px;
    padding: 11px 20px;
    border-radius: 5px;
}

.collection_list.events .collection_link a:hover {
    background: var(--main-juicy);
}

.eve.full_preview #content .container {
    display: flex;
}

.event-form {
    display: flex;
    position: sticky;
    top: 90px;
    height: 693px;
    background: var(--bg-grey);
    border: 1px solid var(--main);
    border-radius: 10px;
    padding: 30px;
    margin-left: 40px;
}

.event-coll-group {
    padding-right: 40px;
}

.event-form {
    display: none;
}

.full_preview .event-form {
    display: block;
}

.full_preview .event-coll-group {
    width: 66.66666%;
}

.collection_full.events.show {
    clear: both;
}

.collection_full.events .collection_container {
    position: relative;
    float: left;
    display: block;
}

.collection_full .event-img {
    max-width: 40%;
    border-radius: 10px;
    overflow: hidden;
    float: left;
}

.collection_full.events .collection_content.mini-title,
.collection_full.events .collection_content.title,
.collection_full .event-short-desc,
.collection_full .event-date {
    float: left !important;
    width: 60% !important;
    padding-left: 40px !important;
}

.collection_full .collection_content.event-expi {
    float: left;
    margin-top: 60px;
    padding: 30px;
    border-radius: 10px;
    border: var(--border);
    background: var(--bg-grey);
}

.collection_full .collection_content.event-requ,
.collection_full .collection_content.event-desc {
    float: left;
    margin-top: 60px;
    border-bottom: var(--border);
    padding-bottom: 50px;
}

.full_preview div#submit_button {
    width: 100%;
    position: relative;
    float: left;
}

.full_preview div#submit_button input {
    width: 100% !important;
}

div#submit_button input:hover {
    cursor: pointer;
    background: var(--main-juicy);
}

.cross-event .collection_list.events .collection_container {
    background: black;
}

.eve div#area-2 {
    display: none !important;
}

.full_preview.eve div#area-2 {
    display: block !important;
}

.collection_list.events {
    padding-left: 80px;
}

.collection_list.events:after {
    content: "";
    position: absolute;
    left: -13px;
    top: 50%;
    width: 30px;
    height: 30px;
    background: var(--main);
    border-radius: 500px;
    transform: translateY(-50%);
}

.event-coll-group .row > div {
    margin-left: 15px;
}

.event-coll-group .filter_display {
    margin-left: 0;
}

.contact-hover {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: end;
    z-index: 1;
    flex-direction: column;
    background: linear-gradient(0deg, black, transparent);
    opacity: 0;
    transition: 500ms;
    top: 100%;
    padding-left: 30px;
    padding-bottom: 30px;
}

.collection_list.team:hover .contact-hover {
    opacity: 1;
    top: 0;
    transition: 500ms;
}

.collection_content.person-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.full_preview .collection_list.events {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.full_preview .collection_list.events {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.full_preview .cross-event {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.full_preview .collection_list.events:before {
    display: none;
}

.full_preview .collection_list.events:after {
    display: none;
}

.benefits.box .row {
    background: #000;
}

.button.content-button {
    margin-top: 40px;
}

.box2 .row h3 {
    color: var(--main);
}

.box2 img {
    filter: grayscale(2);
}

.box2 .row {
    background: #000;
    box-shadow: none;
    border: var(--border);
}

.collection_list.news-coll .collection_content.coll-img,
.collection_list.ex-coll .collection_content.coll-img,
.collection_list.jobs .collection_content.coll-img {
    border-bottom: 4px solid var(--main);
}

.service-img {
    width: 40% !important;
}
.service-text {
    width: 60% !important;
}

.ser div#area-9 {
    background: #00550000 url(/userdata/images/mertel-entry.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--clr-primary-white);
    min-height: 430px;
}

.header-wrapper.fixed-header {
    display: none;
}

.form-group a:hover {
    color: var(--main-juicy);
}
.form-group a {
    color: var(--main);
}

.title-margin {
    margin-bottom: 40px;
}

.anm #submit_button {
    float: left;
    text-align: center;
    width: 100%;
}
.anm .g-recaptcha {
    display: flex;
    align-items: center;
    justify-content: center;
}

.anm .form-group.form-check {
    text-align: center;
}

div#requestbox {
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
}

#requestbox .modal-header h4 {
    color: var(--main) !important;
    font-size: 1.4em;
}

.footer-kontakt a:hover,
div#privacy-policy a:hover {
    color: rgb(255 255 255 / 70%) !important;
}

.event-coll-group .row:before {
    position: absolute;
    left: 30px;
    top: 0;
    width: 3px;
    height: calc(100% - 180px);
    content: "";
    z-index: 0;
    background-image: url(/userdata/images/dash-line.png);
    background-position: left;
    background-size: contain;
    background-repeat: repeat;
}

.event-coll-group .row {
    position: relative;
}

.collection_list.events .collection_content.event-short-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 0;
}

.collection_list .event-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.collection_list.events .collection_content.event-short-desc:after {
    content: "";
    position: relative;
    float: left;
    width: 100%;
    height: 100px;
    display: block;
}

.full_preview .event-coll-group .row:before {
    display: none;
}

div#top-bar {
    float: left;
    width: 100%;
    background: #000;
}

#top-bar .container {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    align-items: center;
}

.component.topbar1 > .textcontent {
    float: left;
    padding-right: 20px;
}

.component.topbar2 > .textcontent {
    float: left;
    padding-left: 20px;
    max-height: 30px;
}

.component.topbar2 > .textcontent img {
    max-width: 30px;
    height: auto !important;
}

.collection_list .collection_content.event-img {
    height: 100%;
}

.gallery img {
    max-width: unset;
    width: 100%;
}

.gallery .owl-item img,
.gallery .owl-item a,
.gallery .owl-item figure {
    width: 100% !important;
    max-width: unset !important;
}

.gallery .owl-item img {
    max-height: 430px !important;
    object-fit: cover;
    object-position: center !important;
    width: 100% !important;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background-color: var(--main) !important;
    border-radius: 500px;
}

.gallery button.owl-next:hover,
.gallery button.owl-prev:hover {
    background: var(--main-juicy) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.collection_full.events .collection_container {
    width: 100%;
}

.collection_content.event-gall.owl-loaded.owl-drag.owl-theme {
    position: relative;
    float: left;
    width: 100%;
}

.event-images .owl-carousel a,
.event-images .owl-carousel figure,
.event-images .owl-carousel .owl-item img {
    width: 100% !important;
    object-fit: cover;
    height: 520px;
    max-width: unset !important;
}

.event-images .owl-carousel {
    position: relative;
    float: left;
    width: 100%;
}

.event-images .owl-carousel {
    max-width: 750px;
}

.event-images .owl-carousel .owl-nav button.owl-prev {
    position: relative;
    float: left;
    left: unset;
    transform: none;
    top: -40px;
}

.event-images .owl-carousel .owl-nav button.owl-next {
    position: relative;
    float: left;
    left: unset;
    right: unset;
    transform: none;
    top: -40px;
    margin-left: 10px;
}

.event-images .owl-item.active a {
    padding: 0 !important;
}

.event-images .owl-item img {
    border-radius: 10px;
}

.collection_full .collection_content.event-images {
    margin-top: 40px !important;
    float: left;
}

.collection_full .collection_content.event-images:before {
    content: "Impressionen";
    margin-bottom: 20px;
    float: left;
    font-size: 1.6em;
}

.unt .flyer .row {
    margin-top: -230px;
}

/*Lauras extended superior CSS sandbox*/
.person-img {
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.collection_content.titel-team {
    color: var(--main);
    font-size: 1.2em;
    padding-top: 10px;
}

.collection_content.name\.team {
    font-size: var(--fs-650);
}

.collection_content.mail a,
.collection_content.phonenumber a {
    color: #fff;
}

.collection_content.mail a:hover,
.collection_content.phonenumber a:hover {
    color: var(--main);
}

.unt #area-6 {
    background-color: unset;
}

.box2 .row,
.box .row {
    background: #fff;
}

.unt #area-8,
#area-2 h2 {
    margin: 10px 0 0 0;
}

.footer-logo img {
    filter: brightness(1000);
}

.footer-nav ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    padding: 0;
    color: #fff;
    font-size: 1.2em;
    border-bottom: 2px solid rgb(255 255 255 / 30%);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-colums {
    width: calc(80% - 60px);
    display: flex;
    justify-content: space-between;
    position: relative;
    float: left;
    flex-wrap: wrap;
    line-height: 3;
    padding-right: 125px;
    margin: 30px 60px 80px 0;
    padding-bottom: 40px;
    border-right: 2px solid rgb(255 255 255 / 30%);
}

#footer .footer-seo {
    padding-right: 20px;
    max-width: 1000px;
    margin-bottom: 20px;
    width: 70%;
    float: left;
}

.footer-5 {

    display: flex;
    padding-left: 20px;
    line-height: 2;
}

.footer-right {
    float: right;
    width: 20%;
}

.component.sm-icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.footer-logo img {
    margin-top: 40px;
}

#footer a {
    color: #fff;
}

.home #area-7 .col-xs-12.button {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.ser #area-9 .col-xs-12.button {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

a {
    color: #fff;
    text-decoration: none;
    transition: 300ms;
}

a:hover {
    color: var(--main);
    text-decoration: none;
    transition: 300ms;
}
div#content {
    scroll-margin-top: 140px;
}

.gallery .owl-item img {
    height: 560px !important;
    object-fit: cover !important;
    width: 100% !important;
    border-radius: 10px !important;
}

.gallery .owl-item.center img {
    height: 600px !important;
}

.gallery figure {
    height: 600px;
    display: flex;
    align-items: center;
}

.text-atelier {
    margin-bottom: 40px;
}

.full-gallery-group {
    padding: 0;
}

.magic-thumbs-wrapper li.magic-thumb {
    display: none;
}

.gallery {
    padding: 0;
}

.eve.full_preview div#area-4 {
    display: none !important;
}

label.form-check-label {
    line-height: 1.4 !important;
    float: left;
    font-size: 0.9em;
}

div#header {
    background: #fff;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 4%);
}

.ver-coll.collection_list,
.start-leistungen .collection_list.leistungen-coll {
    width: 100%;
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 30px;
    cursor: pointer;
    position: relative;
    border: 1px solid #fff;
    transition: 300ms;
}

.ver-coll.collection_list {
    max-width: calc(50% - 20px);
    background: #fff;
    min-height: 187px;
}

.collection_list.ver-coll.open,
.collection_list.leistungen-coll.open {
    border: var(--border);
    transition: 300ms;
}

.set-exp .ref-group .filter_display {
    display: none;
}

.collection_list.ver-coll .title,
.collection_list.leistungen-coll .title {
    margin-bottom: 10px;
    font-size: var(--fs-650);
    font-weight: bold;
    padding: 0 40px !important;
}

.ver-coll .collection_content.icon,
.leistungen-coll .collection_content.icon {
    position: absolute;
    left: 0;
    top: 5px;
}

.ver-coll .collection_content.icon img,
.leistungen-coll .collection_content.icon img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.ver-coll .collection_content.long-description,
.leistungen-coll .collection_content.long-description {
    display: none;
}

.ver-coll .collection_content.title.custom:after,
.leistungen-coll .collection_content.title.custom:after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    width: 25px;
    height: 25px;
    background: url(/userdata/images/toggler.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.collection_list.leistungen-coll {
    margin-bottom: 30px;
}

.ver-group .row > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    align-items: start;
}

.news-big .collection_list.news-coll,
.news-big .collection_list.news-coll .collection_container {
    width: 100%;
    height: 100%;
}

.news-big .row {
    height: 650px;
    position: relative;
    float: left;
}

.news-small .collection_list.news-coll {
    width: 50%;
    height: 50%;
}

.news-small .first-lg {
    height: 650px;
}

.news-small .collection_list.news-coll .collection_container {
    height: 100%;
}

.news-big .news-coll .collection_content.coll-img img,
.news-small .news-coll .collection_content.coll-img img {
    height: 100%;
}

.news-small .collection_list .collection_content.coll-img {
    height: 50%;
}

.news-big .collection_list .collection_content.coll-img {
    height: 65%;
}

.news-big .collection_content.b-text {
    -webkit-line-clamp: 2;
    padding-right: 80px;
}

.news-small .collection_link a.button,
.news-big .collection_link a.button {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.news-small .collection_content.title {
    font-size: 1.2em;
    min-height: unset;
    margin-top: 10px;
}

.news-big .collection_content.title {
    min-height: unset;
    margin-top: 10px;
    margin-bottom: 10px;
}

.news-small .collection_content.b-text {
    display: none;
}

.collection_list.news-coll .collection_container:after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: url(/userdata/images/arrow-right.png);
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.news-big .collection_list.news-coll,
.news-small,
.news-big {
    padding: 15px 0px;
}

.collection_list.news-coll .collection_container:hover:after {
    animation: wackel 1s infinite;
}

@keyframes wackel {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-10deg);
    }
    20% {
        transform: rotate(12deg);
    }
    30% {
        transform: rotate(-10deg);
    }
    40% {
        transform: rotate(9deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.collection_list.news-coll .collection_container:after {
    animation: none;
}
.mar-top {
    margin-top: 60px;
}

.ref-group {
    padding: 0;
}

.news-small .row {
    padding-right: 30px;
}

.news-big .row {
    padding-left: 30px;
}

.flyer .row {
    margin: 0 15px;
}

.home div#area-7 {
    background: url(/userdata/images/bg-verguetung.jpg);
}

.content-img.job-img img {
    max-height: 360px;
}

.recruiting .content-btn.button a {
    margin-top: 40px;
    color: var(--main);
    background: #fff;
    box-shadow: 3px 5px 25px rgb(255 255 255 / 10%);
    transition: 300ms;
}

.recruiting .content-btn.button a:hover {
    box-shadow: 3px 5px 25px rgb(255 255 255 / 60%);
    transition: 300ms;
    color: var(--main) !important;
    background: #fff !important;
}

.recruiting h2 {
    margin-bottom: 20px;
}

.home div#area-8 .container {
    display: flex;
    align-items: center;
}

.content-img.job-img {
    max-width: 518px;
    float: right;
}

.form-contact img {
    filter: drop-shadow(5px 5px 6px #ccc);
    max-width: 150px;
    float: right;
}

.form-contact .content-img .textcontent {
    box-shadow: none;
    overflow: visible;
    float: right;
    width: 100%;
    justify-content: center;
    display: flex;
}

.form-contact a {
    color: var(--fc);
}

.form-contact a:hover {
    color: var(--main) !important;
}

.form-group.swifty-one,
.form-group.swifty-two {
    width: 50%;
}

.form-group.swifty-one {
    padding-right: 10px;
}

.form-group.swifty-two {
    padding-left: 10px;
}

.form-group input, .form-group .textarea {
    border-radius: 5px;
    border: var(--border-light) !important;
    background: #fff;
}

.histo .row > .collection_list.his-coll:nth-child(odd) {
    float: left;
    position: relative;
    padding-right: 60px;
}

.histo .row > .collection_list.his-coll:nth-child(even) {
    float: right;
    position: relative;
    padding-left: 60px;
}

.histo .row > .collection_list.his-coll {
    width: 50% !important;
    clear: both;
    margin: 30px 0px;
}

.histo .row > .collection_list.his-coll h2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.histo .row > .collection_list.his-coll h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 80px;
    background: #fff;
}

.unt div#area-3 {
    background: url(/userdata/images/histo-bg.jpg);
}

.col-xs-12.histo-title h2,
.histo .row > .collection_list.his-coll, 
.histo .row > .collection_list.his-coll h2, 
.histo .row > .collection_list.his-coll h3 {
    color: #fff;
}

.histo-title h2:after {
    max-width: 100px;
    content: '';
    height: 3px;
    width: 100px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: #fff;
}

.histo-title h2 {
    margin-bottom: 30px;
}

.histo .row:after {
    content: '';
    width: 4px;
    height: calc(100% - 140px);
    background: #fff;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.histo {
    padding-top: 40px;
}

.unt .ref-group .filter_display {
    display: none;
}

.expert.no-owl-carousel.no-owl-theme.no-owl-drag .collection_list.ex-coll {
    width: 33%;
}

.histo .row > .collection_list.his-coll:nth-child(odd):after {
    content: '';
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 500px;
    transform: translateX(50%) translateY(-50%);
}

.histo .row > .collection_list.his-coll:nth-child(even):after {
content: '';
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 500px;
    transform: translateX(-50%) translateY(-50%);
}

.histo .row > .collection_list.his-coll:nth-child(odd) .year {
    width: auto;
    height: 100px;
    position: absolute;
    left: calc(100% + 60px);
    top: 50%;
    transform: translateY(-50px);
    font-weight: 600;
    font-size: 70px;
    bottom: unset;
    padding-left: 60px;
    transition: 800ms;
    opacity: 1;
}

.histo .row > .collection_list.his-coll:nth-child(even) .year {
    width: auto;
    height: 100px;
    position: absolute;
    right: calc(100% + 60px);
    top: 50%;
    transform: translateY(-50px);
    font-weight: 600;
    font-size: 70px;
    bottom: unset;
    padding-right: 60px;
    opacity: 1;
}

.collection_list.his-coll[style="display: block;"] .year {
    opacity: 1;
    transition: 800ms;
}

.collection_list.his-coll[style="display: none;"] .year {
    opacity: 0;
    transition: 800ms;
}

.collection_list.his-coll .title {
    font-size: var(--fs-700);
    font-weight: bold;
    padding: 0 !important;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px !important;
}

.histo-btn .textcontent {
    background: #fff;
    padding: 11px 30px;
    border-radius: 5px;
    color: var(--main);
    font-size: 1.2em;
}

.histo-btn {
    clear: both;
    display: flex;
    justify-content: center;
}

.histo .row .collection_list.his-coll.ever-on,
.histo .row .collection_list.his-coll.ever-on,
.histo .row .collection_list.his-coll.ever-on {
    display: block !important;
}

.col-xs-12.button.content-button.center {
    display: flex;
    justify-content: center;
}

.histo .row .collection_list.his-coll {
    display: none;
}

.collection_list.his-coll .title:after {
    content: '';
    background: #fff;
    width: 80px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.histo-btn .textcontent:hover {
    cursor: pointer;
    box-shadow: var(--shadow);
    top: -1px;
    position: relative;
    transition: 300ms;
}

.collection_content.ref-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 230px;
    height: 100px;
}

.collection_content.ref-logo img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
}

.ref-coll .coll-img {
    position: relative;
}

.collection_list.jobs .collection_link .button {
    background: var(--main);
    padding: 11px 30px;
    border-radius: 5px;
    width: 100%;
    float: left;
    text-align: center;
}

.collection_list.jobs .collection_link .button:hover {
    color: #fff !important;
    box-shadow: var(--shadow-hover);
}



.content-img.special .textcontent:after {
    content: '';
    width: 85%;
    position: absolute;
    right: -15px;
    top: -15px;
    height: 85%;
    background: var(--main);
    z-index: -1;
    border-radius: 10px;
}

.content-img.special .textcontent:before {
    content: '';
    width: 200px;
    position: absolute;
    right: -40px;
    top: -40px;
    height: 116px;
    background: url(/userdata/images/sidelogo.png);
    background-position: center;
    z-index: 1;
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: var(--shadow);
}

.content-img.special .textcontent img {
    border-radius: 10px;
}

.content-img.special .textcontent {
    max-width: 430px;
    float: right;
    position: relative;
    overflow: visible;
    border-radius: 10px;
    margin-right: 60px;
    box-shadow: var(--shadow);
}

.impression .row img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
}

.impression .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    max-height: 620px;
    }
    
.impression1 { grid-area: 1 / 1 / 2 / 3; }
.impression2 { grid-area: 2 / 1 / 3 / 2; }
.impression3 { grid-area: 2 / 2 / 3 / 3; }
.impression4 { grid-area: 1 / 3 / 3 / 4; }
.impression5 { grid-area: 1 / 4 / 2 / 5; }
.impression6 { grid-area: 2 / 4 / 3 / 5; }


.impression1 .textcontent,
.impression2 .textcontent,
.impression3 .textcontent,
.impression5 .textcontent,
.impression6 .textcontent,
.impression4 .textcontent {
    height: 100%;
    width: 100%;
}

.impression1,
.impression2,
.impression3,
.impression5,
.impression6,
.impression4 {
    padding: 0px;
    border-radius: 5px;
    overflow: hidden;
}

.collection_list.ben-coll {
    width: calc(50% - 40px);
    border-bottom: 2px solid var(--main);
    padding: 60px 0 20px 0;
    margin-top: 40px;
}
      
.ben-group .row > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.collection_list.ben-coll:before {
    content: '';
    background: url(/userdata/images/trophy.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
}
  
.benefits-text {
    padding-right: 60px;
}

.ref-page div#slider-wrapper {
    display: none;
}

.ref-info-wrap1, .ref-info-wrap2, .ref-info-wrap3, .ref-info-wrap4 {
    width: 25%;
    float: left;
    padding: 40px 15px;
    text-align: center;
}

.ref-page.full_preview div#area-2 {
    background: url(/userdata/images/histo-bg.jpg);
    color: #fff;
}

.ref-info-wrap1, .ref-info-wrap2, .ref-info-wrap3 {
    border-right: 1px solid;
}

.ref-info1, .ref-info2, .ref-info3, .ref-info4 {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}

.collection_full .title, .collection_full .mini-title, .collection_full .b-text {
    float: left;
    width: 55%;
}

.ref-page.full_preview .owl-item a, .ref-page.full_preview .owl-item figure {
    width: 100% !important;
    height: 100% !important;
}

.ref-page.full_preview .owl-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: unset !important;
    max-height: 450px !important;
}

.ref-page.full_preview .owl-item figure {
    border-radius: 10px;
    transition: 300ms;
}

.ref-page.full_preview .owl-item.center figure {
    box-shadow: var(--shadow);
    transition: 300ms;
}

.ref-gallery .owl-item {
    transform: scale(0.95) !important;
}

.ref-gallery .owl-item.center {
    transform: scale(1.0) !important;
}

.ref-gallery .owl-carousel .owl-nav button.owl-prev, .ref-gallery .owl-carousel .owl-nav button.owl-next {
    position: relative;
    float: left;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    color: #fff;
}

.ref-gallery .owl-nav {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    float: left;
    gap: 20px;
}

.ref-gallery .gallery-style .owl-nav button {
    width: 35px;
    height: 35px;
}

.collection_full .collection_content.coll-img > img {
    min-height: 300px;
}

.collection_list.clap {
    width: 100%;
    background: var(--main);
    color: #fff;
    border-radius: 7px;
    margin-bottom: 15px;
}

.collection_list.clap .title {
    font-weight: bold;
    padding: 0 !important;
    font-size: 1.2em;
}

.collection_content.clap-text {
    margin-top: 5px;
    display: none;
}

.clap-title {
    margin-bottom: 30px;
}

.hlg > .row {
    padding-right: 60px;
}

.collection_list.clap .title:after {
    content: '';
    width: 23px;
    height: 23px;
    position: absolute;
    right: 0;
    top: 0px;
    background: url(/userdata/images/toggler-white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.clap-title h3 {
    margin-top: 0;
}

.listing li {
    margin-bottom: 15px;
}

.collection_list.clap:hover {
    cursor: pointer;
  }

.collection_list.clap:hover .title:after {
    animation: bounce 0.5s ease-in-out infinite alternate;
  }

.collection_list.clap:hover .title.turn:after {
    animation: bounce2 0.5s ease-in-out infinite alternate;
  }
  
  @keyframes bounce {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(8px);
    }
  }

  @keyframes bounce2 {
    from {
      transform: translateY(0) rotate(180deg);
    }
    to {
      transform: translateY(8px) rotate(180deg);
    }
  }

  .collection_list.clap .title.turn:after {
    transform: rotate(180deg);
}

.set-exp div#area-4,
.set-exp div#content {
    background: url(/userdata/images/high-bg.jpg);
    background-size: cover;
}

.set-exp div#area-2 {
    padding-bottom: 185px;
    margin-bottom: -225px;
}

.exp-leistungen .collection_list.leistungen-coll {
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 30px;
    cursor: pointer;
    position: sticky;
    transition: 300ms;
    top: 90px;
}

.exp-leistungen {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
}

.home div#area-3 {
    overflow: visible;
}

.home div#area-3 .container {
    display: flex;
}

.text-sticky {
    position: sticky;
    height: 100%;
    top: 90px;
}

.hlg {
    position: sticky;
    top: 90px;
    height: 100%;
}

.set-exp div#content .container {
    display: flex;
    flex-wrap: wrap;
}

.home .collection_list.leistungen-coll.open {
    width: 100%;
}

.mb-xtra20 {
    margin-bottom: 20px;
}

.set-exp .exp-leistungen .collection_list.leistungen-coll {
    box-shadow: none;
    border: 1px solid #eeeeee;
    min-height: 187px;
}

.set-exp .exp-leistungen .collection_list.leistungen-coll.open {
    box-shadow: none;
    border: 1px solid var(--main-opac);
}

#area-10 {
    scroll-margin-top: 130px;
}

#header li.level_1.con a {
    background: var(--main);
    padding: 8px 30px;
    color: #fff !important;
    border-radius: 5px;
    margin-left: 60px;
}

#header li.level_1.con a:hover {
    box-shadow: var(--shadow-hover);
}

.ref-collpage #slider-wrapper {
    display: none;
}

.form-contact .row {
    padding-right: 40px;
}

.exp .collection_list.ex-coll {
    width: 50%;
}

.exp .collection_list.ex-coll .collection_content.coll-img {
    width: 100%;
    height: auto;
    float: left;
    overflow: visible;
    border: none;
    padding: 0 30px;
}

.exp .collection_list.ex-coll .collection_content.coll-img img {
    height: 300px;
    border-radius: 10px;
    box-shadow: var(--shaddow);
}

.exp .collection_list.ex-coll .collection_container {
    background: none;
    border-radius: unset;
    box-shadow: none;
}

.exp .collection_list.ex-coll .collection_link {
    width: auto;
}

.exp .collection_list.ex-coll .collection_content.mini-title {
    float: left;
    width: 66.66666%;
}

.exp .collection_list.ex-coll:nth-child(even) .coll-img {
    float: right;
}

.exp .collection_list.ex-coll .title {
    min-height: unset;
    margin-bottom: 10px;
    font-size: var(--fs-700);
}

.exp .collection_list .collection_container:hover .coll-img img {
    transform: scale(1);
    transition: 300ms;
}

.collection_content.ref-info4-text a:hover {
    font-weight: bold;
    color: #fff !important;
}

.exp .collection_list.ex-coll .collection_content.link-button a {
    padding: 11px 20px;
    background: var(--main);
    z-index: 1;
    float: left;
    border-radius: 6px;
    color: #fff;
}

.exp .collection_list.ex-coll .collection_content.link-button a:hover {
    box-shadow: var(--shadow);
    color: #fff !important;
    background: var(--main-juicy) !important;
}

.exp .collection_list.ex-coll .collection_content.link-button {
    position: relative;
    float: left;
    width: auto;
}

#header .hamburger-menu ul.level_2 a {
    color: #fff;
    background: var(--main-opac) !important;
    padding-left: 40px !important;
}

#header .hamburger-menu li.level_1.con a {
    background: #fff;
    padding: 8px 30px;
    color: var(--main) !important;
    border-radius: 0px;
    margin-left: 0px;
    font-weight: bold;
}

#header .hamburger-menu li.level_1.con a:hover {
    color: #fff !important;
    background: var(--main-opac);
}

.home .ref-group .filter_display {
    display: none;
}

.mehrwert-1 {
    margin-top: 150px;
}

.collection_content.title.custom {
    padding-right: 37px !important;
}

.collection_list.jobs .collection_content.b-text a {
    color: var(--fc) !important;
}

/*extraordinary*/

.button.center {
    display: flex;
    justify-content: center;
}

#footer li,
#header li {
    list-style: none;
}

.hamburger-menu {
    box-shadow: 0 0 15px rgb(0 0 0 / 25%);
}

/*seitenzahl für paginierung ändern - /htdocs/mysyde/common/common_functions.inc.php - ca. zeile 2231*/

div#slider .textcontent {
    height: 100%;
}

div#area-1,
div#area-2,
div#area-3,
div#area-4,
div#area-5,
div#area-6,
div#area-7,
div#area-8,
div#area-9 {
    scroll-margin-top: 150px;
}

button#backButton {
    float: left;
    display: block;
    position: relative;
    margin-bottom: 40px;
}

button#backButton {
    float: unset;
}

li.level_2 {
    margin-bottom: 5px;
}

.hamburger-menu li.level_2 {
    margin-bottom: 0px;
    border-bottom: 1px solid #f6f6f6;
}

.hamburger-menu ul.level_1 {
    max-height: 500px;
    overflow-y: scroll;
}

li.level_1.levels:after {
    content: "";
    background: url(/userdata/images/toggler.png);
    width: 10px;
    height: 20px;
    float: right;
    top: 1px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 8px;
    position: relative;
}

.collection_list.hide {
    display: none;
}

a.button_filter.a-filter {
    background-color: var(--main);
}

div#filter-element {
    scroll-margin-top: 150px;
}

.filter_display {
    width: 100%;
    margin-left: 15px;
}

.filter_display a {
    text-decoration: none;
    color: white;
    border-radius: 5px;
    background-color: #b4b4b4;
    padding: 11px 20px;
    box-shadow: var(--shadow);
}

.filter_display,
.filter_display .button_filter_wrapper_2 {
    display: block;
    position: relative !important;
    float: left !important;
    height: auto;
}

.button_filter_wrapper_2:first-child {
    margin-left: 0;
}

.button_filter_wrapper_2 {
    margin-right: 10px;
    margin-bottom: 25px;
}

.form-group textarea#input_message {
    background: none;
    border: none;
    border-bottom: 1px solid #ccc;
    padding-left: 10px;
    min-height: 70px;
    width: 100% !important;
    max-height: 300px;
    background: #fff;
}

input#input_upload {
    color: var(--main) !important;
}

input#input_upload {
    background: #fff;
    border: 1px solid #eee;
    margin: 10px 0 10px 0px;
    opacity: 0.8;
}

.form-group label[for="input_upload"] {
    padding-left: 10px !important;
    margin-top: 10px !important;
    float: left;
}

.form-group label[for="input_upload"] {
    padding-left: 10px !important;
}

.line-after.reverse:after {
    right: 20px;
    left: unset;
}

li.level_1.levels {
    position: relative;
}

ul.level_2 {
    position: absolute;
    left: 0;
    top: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    background: var(--bg-grey);
    padding: 15px;
    border-radius: 7px;
    box-shadow: var(--shadow);
}

#footer li ul.level_2 {
    display: none;
}

li.level_1.levels:hover ul.level_2 {
    display: block !important;
}

#footer li.level_1.levels:hover ul.level_2 {
    display: none !important;
}

#footer .levels:after {
    display: none;
}

#header ul.level_2 {
    display: none;
}

.recaptcha-class {
    padding: 20px 0px !important;
}

.form-group input {
    width: 100% !important;
}

.form-group.registry-group {
    /* jquery für registry form-group übernehmen, damit der befehl greift */
    display: none;
}

.button.max800 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-after {
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}

.line-center {
    padding-bottom: 30px !important;
    margin-bottom: 30px !important;
    position: relative;
}

.line-center:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--main);
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.line-after:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--main);
    bottom: 0px;
    border-radius: 500px;
}

.c-white .textcontent,
.c-white a,
.c-white strong,
.c-white span,
.c-white p,
.c-white h1,
.c-white h2,
.c-white h3,
.c-white h4,
.c-white h5,
.c-white h6 {
    color: #fff !important;
}

.max800 {
    max-width: 800px;
    margin: 0 auto;
}

.flyer .row > div {
    z-index: 1;
}

.flyer .row,
.flyer .row h2,
.flyer .row h3 {
    color: #fff;
}

.flyer .row {
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 20px;
    background: url(/userdata/images/flyer.jpg);
    min-height: 450px;
    justify-content: center;
    overflow: hidden !important;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px;
} 

.flyer h2 {
    margin-top: 0;
}

.flyer .row:after {
    content: "";
    background: linear-gradient(90deg, var(--main-opac-min), transparent);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.button a {
    padding: 11px 20px;
    background: var(--main);
    z-index: 1;
    float: left;
    border-radius: 6px;
    color: #fff;
}

.ver-coll .collection_content.link a:hover,
.leistungen-coll .collection_content.link a:hover,
.button a:hover {
    box-shadow: var(--shadow);
    color: #fff !important;
    background: var(--main-juicy);
}

div#submit_button .button {
    background: var(--main);
    color: #fff;
    padding: 11px 30px;
    border-radius: 6px;
}

.content-btn.button a {
    margin-top: 20px;
}

.button.invert a {
    background: #fff;
    color: var(--main);
}

.line-white:after {
    background: #fff;
}

.content-img .textcontent {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.moma {
    margin-bottom: 40px !important;
}

.ref-coll .collection_content.coll-img img,
.news-coll .collection_content.coll-img img,
.ex-coll .collection_content.coll-img img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

/*END*/

#footer li.level_1.levels ul.level_2 a p,
#footer li.level_1.levels ul.level_2 a {
    color: var(--fc) !important;
    font-size: 1rem;
}

#footer li.level_1.levels:hover ul.level_2 {
    display: block !important;
}

#footer li.level_1.levels:hover ul.level_2 a:hover p,
#footer li.level_1.levels:hover ul.level_2 a{
    color: var(--main) !important;
}

.collection_link {
    padding: 0 30px 30px 30px !important;
    float: left !important;
    width: 100% !important;
}

.collection_content.link-button {
    max-width: unset;
    padding: 0 30px 30px 30px;
    float: left;
    width: 100%;
    margin-top: auto;
}

.collection_content.link-button a {
    background: var(--main);
    padding: 11px 30px;
    width: 100% !important;
    float: left;
    border-radius: 6px;
    text-align: center;
}

.collection_content.link-button a:hover {
    color: #fff;
    background: var(--main-juicy);
    box-shadow: var(--shadow-hover);
}

.impressum #area-2 a,
.datenschutz #area-2 a {
    color: var(--main);
}

.impressum #area-2 a:hover,
.datenschutz #area-2 a:hover {
    text-decoration: underline;
}

div#requestbox {
    position: fixed;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    max-width: 500px;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 30px;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 15%);
}

div#requestbox.modal.fade.error.hide {
    opacity: 0;
    display: none;
}

.set-exp .exp-leistungen .collection_list.leistungen-coll {
    background: #fff;
}


/* Responsiv */

@media (max-width: 1700px) {
    .expert.owl-carousel .owl-dots {
        bottom: -10px;
    }
}

@media (max-width: 1500px) {
    .event-coll-group .row:before {
        display: none;
    }

    .collection_list.events {
        padding-left: 40px;
    }

    .collection_list .event-img {
        height: 300px !important;
    }

    .button-2 a {
        padding: 0;
    }

    .collection_list .collection_content.mini-title {
        padding-top: 20px;
    }

    .exp .ex-coll .collection_content.link-button {
        padding: 0 30px 30px 30px;
    }

    .collection_list .collection_content.b-text {
        margin-bottom: 30px;
    }

}
@media (max-width: 1450px) {
    .expert.no-owl-carousel.no-owl-theme.no-owl-drag .collection_list.ex-coll {
        width: 50%;
    }
 

    .collection_list .collection_content.b-text {
        -webkit-line-clamp: 3;
    }

    .person-img {
        object-fit: cover;
        width: 100%;
        height: 250px !important;
    }

    .ref-coll .collection_content.title,
    .news-coll .collection_content.title,
    .ex-coll .collection_content.title,
    .jobs .collection_content.title {
        font-size: 1.2rem;
        min-height: 60px;
        hyphens: auto;
    }

    .content-img {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .expert .owl-stage-outer {
        height: 510px;
    }

    .collection_list.ver-coll .collection_content.link,
    .collection_list.leistungen-coll .collection_content.link {
        bottom: 0px;
        position: relative;
        opacity: 1;
        transition: 500ms;
    }

    .header-animation iframe {
        width: 510px;
    }

    .new-f-img img {
        border: 5px solid #000;
        border-radius: 20px;
    }

    .new-f-img:before {
        height: 6px;
        top: -3px;
    }

    .col-xs-12.willkommen.d-flex.align-items-center .row {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .col-xs-12.willkommen.d-flex.align-items-center lottie-player {
        margin-left: unset;
        height: 300px !important;
        width: 300px !important;
    }

    div#header,
    #header .container {
        height: 100%;
        width: 100%;
        padding: 0;
    }
    div#header_1,
    #header_2,
    #header_3 {
        padding: 0 !important;
        margin: 0 !important;
    }

    div#toggle_navigation:hover,
    div#toggle_navigation:active,
    div#toggle_navigation:focus {
        background: transparent;
    }
    #cookie-bar > p {
        line-height: 20px;
    }

    :root {
        --fs-700: 1.6rem;
    }

}

@media (max-width: 1320px) {
    .service-img,
    .service-text {
        width: 100% !important;
    }
}

@media (max-width: 1200px) {
    #footer {
        background-size: cover;
    }

    .clap-title {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .special-img-outer .row {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    .text-fr .textcontent > div {
        text-align: left !important;
    }

    .collection_full .title, .collection_full .mini-title, .collection_full .b-text {
        width: 100%;
    }

    .hlg {
        position: relative;
        top: unset;
        height: auto;
    }

    .d-flex.flex-column.flyer > .row {
        flex-direction: column;
        float: left;
        width: 100%;
        margin: 0;
    }

    .form-contact .row {
        display: flex;
        align-items: center;
    }

    .form-contact .row > .textcontent {
        margin-left: 30px;
    }

    .form-contact .row {
        padding: 0;
    }

    .form-contact .row > .textcontent > div {
        text-align: left !important;
    }

    .form-contact .row {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .form-contact .row > .textcontent {
        float: left;
    }

    .form-contact img {
        float: left;
    }

    .news-big .row {
        padding: 20px 30px;
    }

    .news-big .row {
        height: auto;
    }
    
    .news-big .collection_list .collection_content.coll-img {
        max-height: 400px;
    }
    
    .news-big .collection_list.news-coll, .news-small, .news-big {
        padding: 0;
    }

    :root {
        --fs-900: 2.6rem;
    }
    
    .news-small .row {
        padding-right: 0px;
    }

    .benefits-text {
        padding-right: 15px;
    }

    .collection_full .coll-img {
        padding-left: 0px;
    }

    .collection_content.titel-team {
        color: var(--main);
        font-size: var(--fs-300) !important;
        padding-top: 10px;
    }

    .collection_content.mail a,
    .collection_content.phonenumber a {
        color: #fff;
        font-size: var(--fs-300) !important;
    }

    .person-img {
        object-fit: cover;
        width: 100%;
        height: 185px !important;
    }

    .footer-5 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100% !important;
    }

    .component.footer-kontakt {
        text-align: center;
    }

    #footer .footer-seo {
        justify-content: center;
        align-items: center;
        display: flex;
        width: 100% !important;
        padding: 0 !important;
        max-width: unset !important;
    }

    .component.footer-seo-text {
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 40px;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .footer-colums {
        width: 100% !important;
        display: flex;
        justify-content: space-between;
        position: relative;
        float: left;
        flex-wrap: wrap;
        line-height: 3;
        padding-right: 0px !important;
        margin-bottom: 0px;
        padding-bottom: 70px;
        border-right: none;
    }

    .footer-right {
        width: 100%;
    }

    .component.sm-icons {
        justify-content: center;
        margin-bottom: 20px;    }

    .collection_list.events:after {
        display: none;
    }

    .collection_list.events {
        padding-left: 0px;
    }

    .kar div#area-4 .box2 {
        min-height: auto;
    }

    #footer .row.seo,
    #footer .footer-logo-adress {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-logo-adress .footer-2,
    .footer-logo-adress .footer-3 {
        width: 50%;
        float: left;
    }

    .seo .footer-1 {
        padding: 0;
    }

    #header_1 img {
        object-position: left;
    }

    div#header .container {
        padding: 0;
    }

    div#header_2 {
        display: none;
    }

    div#toggle_navigation {
        display: block !important;
    }

    .collection_full .collection_container {
        flex-direction: column-reverse;
    }

    .collection_full .collection_content.coll-img {
        width: 100%;
        margin-top: 40px;
    }

    .collection_full .full-wrap {
        width: 100%;
        padding-right: 20px;
    }

    .box.long.benefits .row .textcontent {
        border: none;
    }

    .box.long.benefits:after {
        width: 40px;
    }

    .benefits .owl-item.active {
        padding-right: 40px;
    }

    .box.long.benefits .row .textcontent {
        padding-right: 40px;
    }

    .box.long.benefits .row {
        padding-right: 0;
    }

    .step-con ul {
        padding: 0;
    }

    .title-group .row {
        flex-direction: column;
        max-width: 600px;
    }

    .title-group {
        padding-bottom: 0;
    }

    .title-group:after {
        display: none;
    }

    .step-con:before {
        display: none;
    }

    .form-img {
        display: none;
    }
    .mertel.unt .form-img {
        display: unset;
    }

    

    .expert.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-stage {
        padding-top: 0;
    }

    .expert .owl-stage-outer {
        height: auto;
    }

    .expert .owl-item.active.center .collection_content.field-1655046843 {
        height: 320px;
    }

    .expert .owl-item.active.center {
        top: 0px;
    }

    .owl-item.active {
        margin-bottom: 0px !important;
    }

    .fach1,
    .fach2,
    .fach3 {
        position: relative !important;
        float: left !important;
        display: block;
        left: unset !important;
        top: unset !important;
        bottom: unset !important;
        right: unset !important;
        width: 100%;
        height: auto !important;
        transform: unset !important;
        z-index: 1;
        padding: 15px 15px;
    }

    .unt div#area-7 {
        padding: 0;
    }

    .d-flex.flex-column.flyer {
        padding: 0 15px;
        padding-bottom: 15px;
    }

    .fach2 .row .button.content-btn,
    .fach3 .row .button.content-btn {
        margin-bottom: 0px;
        opacity: 1;
        transition: var(--fach-duration);
    }

    .faching {
        height: auto;
    }
}

@media (max-width: 1120px) {
    .header-animation {
        justify-content: start;
    }
}

@media only screen and (max-width: 1024px) {
    :root {
        --fs-800: 1.8rem;
        --fs-600: 0.9rem;
    }

    .footer-nav ul {
        display: block;
        text-align: center;
    }
    
    #footer li.level_1 {
        float: left;
        padding-right: 20px;
    }

    .ref-info-wrap1, .ref-info-wrap2, .ref-info-wrap3, .ref-info-wrap4 {
        width: 50%;
    }

.ref-info-wrap2 {
        border-right: none;
    }

    .blue-facts {
        display: flex;
        flex-wrap: wrap;
    }

    .set-exp .exp-leistungen .collection_list.leistungen-coll {
        width: 100%;
        min-height: unset;
    }
    
    .exp .exp-leistungen {
        display: block;
    }

    .exp .collection_list.ex-coll .collection_container {
        position: relative;
        float: left;
        display: block;
    }
    
    .exp .collection_list.ex-coll .collection_content.coll-img {width: 100%;}
    
    .exp .collection_list.ex-coll .collection_content.coll-img img {
        max-width: 450px;
    }
    
    .exp .collection_list.ex-coll .collection_content.mini-title {
        width: 100%;
        padding: 20px 0 0 0;
    }
    
    .exp .collection_list.ex-coll .title {
        padding: 0 !important;
        float: left;
        width: 100%;
    }
    
    .exp .collection_list.ex-coll .collection_content.b-text {
        float: left;
        width: 100%;
        padding: 0;
    }
    
    .exp .collection_list.ex-coll .collection_content.link-button {
        padding: 0;
        margin-bottom: 40px;
    }

    .content-img.job-img {
        float: left;
    }

    .exp .collection_list.ex-coll:nth-child(even) .coll-img img {
        float: right;
    }

    .exp .collection_list.ex-coll:nth-child(even) .collection_content.link-button{
        float: right;
    }


    .exp .collection_list.ex-coll:nth-child(even) .collection_content.b-text,
    .exp .collection_list.ex-coll:nth-child(even) .collection_content.title,
    .exp .collection_list.ex-coll:nth-child(even) .collection_content.mini-title {
        text-align: right;
    }

    .unt div#area-5 .container,
    .home div#area-8 .container {
        flex-direction: column-reverse;
    }

    .ver-coll.collection_list {
        max-width: 100% !important;
    }

    .filter_display a {
        font-size: 0.9em;
    }

    .home div#area-3 .container {
        display: block;
    }

    .collection_list {
        width: 50%;
    }
    .anker-navi .container {
        padding: 0 !important;
    }

    .new-f-img img {
        border: 3px solid #000;
        border-radius: 12px;
    }

    .new-f-img:before {
        width: 50px;
        height: 4px;
        top: -2px;
    }

    h3 {
        font-size: var(--fs-650);
    }
}

@media only screen and (max-width: 992px) {

    .box.long .row .textcontent {
        border-right: unset;
        padding-right: 0px;
    }

   .box.long img {
        margin-bottom: 0px;
    }

    .box.long .row {
        align-items: center;
        justify-content: center;
    }
    
    .box.long .row .textcontent {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid var(--main-opac);
        padding-bottom: 60px;
    }

    .box.long .row {
        display: inline-grid;
        gap: 40px;
    }

    #footer li.level_1.levels:after {
        display: none;
    }

    .footer-sitemap ul {
        flex-direction: column;
    }

    .seo .footer-sitemap {
        width: 30%;
    }

    .seo .footer-1 {
        width: 70%;
        float: left;
    }

    .row.seo {
        border-bottom: 1px solid #f6f6f6;
        padding-bottom: 40px;
    }

    .footer-sitemap ul {
        flex-wrap: wrap;
    }

    div#cookiewarnung {
        width: 90%;
    }

    h2#ueber-mysyde {
        padding: 10px;
    }

    .vergleich {
        height: 500px !important;
    }

    .twentytwenty-container {
        height: 450px !important;
    }

    #header #header_1 {
        width: 50%;
    }
    .anker-navi.sticky {
        position: relative !important;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-900: 2rem;
        --fs-800: 1.8rem;
        --fs-600: 0.9rem;
        --fs-500: 0.9rem;
    }

    #footer li.level_1 {
        width: 100%;
        margin-bottom: 6px;
        padding: 0 20px;
    }

    .footer-nav ul {
        display: block;
        text-align: center;
        float: left;
        width: 100%;
    }

    .expert.no-owl-carousel.no-owl-theme.no-owl-drag .collection_list.ex-coll {
        width: 100%;
    }

    .form-contact .row {
        padding: 0 5px;
    }

    .filter_display {
        width: 100%;
        margin-left: 0px;
    }

    .news-small .first-lg {
        height: auto;
    }

    .col-xs-12.first-lg .collection_list.news-coll {
        display: none;
    }
    
    .col-xs-12.first-lg .collection_list.news-coll:nth-child(1),
    .col-xs-12.first-lg .collection_list.news-coll:nth-child(2) {
        display: block;
    }

    .news-small .first-lg .collection_list.news-coll {
        width: 100%;
        height: auto;
    }

    .news-big .row {
        padding: 20px 20px;
    }

    .footer-5 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        padding: 0 20px;
    }

    .component.footer-kontakt {
        text-align: center;
    }

    #footer .footer-seo {
        justify-content: center;
        align-items: center;
        display: flex;
        width: 100% !important;
        padding: 0 !important;
    }

    .component.footer-seo-text {
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 40px;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .footer-colums {
        width: 100% !important;
        display: flex;
        justify-content: center !important;
        align-items: center;
        position: relative;
        flex-wrap: wrap;
        margin-bottom: 100px;
        line-height: 3;
        padding-bottom: 40px;
        margin-bottom: 0px !important;
        padding-right: 0px !important;
        float: none !important;
    }

    .collection_list.events .collection_content.event-short-desc {
        display: block;
    }

    .collection_list .event-img {
        width: 100% !important;
        object-position: center !important;
        border-right: none;
        border-bottom: 4px solid var(--main);
    }

    .collection_list.events .event-date {
        left: 0px;
    }

    .collection_list.events .collection_content {
        width: 100%;
    }

    .component.privacy_policy .textcontent:first-child {
        text-align: center;
    }

    .seo .footer-1,
    .seo .footer-sitemap {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    #footer .footer-2 {
        margin-bottom: 5px;
    }

    .component.privacy_policy {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .component.footer-logo img {
        max-width: 250px;
        object-fit: contain;
        margin-top: 0 !important;
        height: auto !important;
    }

    .component.footer-logo {
        margin-top: 0 !important;
    }

    .footer-logo-adress {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }

    .footer-3,
    .footer-2 {
        width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-sitemap ul {
        justify-content: center;
        align-items: center;
    }

    #cookie-bar {
        text-align: center;
    }
    #cookie-bar #cookie-bar-button {
        float: none;
        margin-left: 0;
        margin-top: 10px;
    }
    #cookie-bar > p {
        float: none;
    }

    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-xs-1,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .faq_group_container .faq_question_box {
        padding: 5px 34px 8px 15px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .new-f-text {
        padding: 0 0 30px;
    }

    .highlight-group {
        border-bottom: 1px solid var(--clr-primary-white);
    }

    .highlight-group.odd .row {
        flex-direction: column-reverse;
    }

    .row {
        flex-wrap: wrap;
    }

    .collection_list.bugfixes {
        width: 50%;
    }

    .pop-up-button {
        margin-top: 1rem;
    }

    .pop-up-button-group .row {
        flex-wrap: wrap;
        margin-left: 7px;
    }

    .col-xs-12.willkommen.d-flex.align-items-center lottie-player {
        width: 100% !important;
    }

    .col-xs-12.willkommen.d-flex.align-items-center {
        padding: 0;
    }
    #slider div#slider-title {
        padding: 0 20px;
    }
    .anker-button.button {
        width: 100%;
        border-bottom: 1px solid var(--clr-primary-white);
    }
    #footer .footer-1,
    #footer .footer-2,
    #footer .footer-3,
    #footer .footer-4 {
        text-align: center;
        margin-bottom: 25px;
    }
    .footer-sitemap li.level_1 {
        width: 50%;
        margin-bottom: 30px;
    }
    .seo .footer-1 {
        padding: 0 20px;
        border: 0;
    }
    .seo .footer-2 {
        padding: 0;
    }
    #privacy-policy .footer-1,
    div#privacy-policy {
        text-align: center !important;
    }
    div#privacy-policy ul {
        padding: 0 !important;
        margin: 0 !important;
    }
    .component.privacy_policy {
        padding: 20px 0 0 0;
    }
    div#cookiewarnung {
        font-size: 13px !important;
    }

  
}

@media (max-width: 600px) {
    .impression .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 20px;
        }
        
        .impression1 { grid-area: 1 / 1 / 2 / 3; }
        .impression2 { grid-area: 2 / 1 / 3 / 2; }
        .impression3 { grid-area: 2 / 2 / 3 / 3; }
        .impression4 { grid-area: 3 / 1 / 5 / 2; }
        .impression5 { grid-area: 3 / 2 / 4 / 3; }
        .impression6 { grid-area: 4 / 2 / 5 / 3; }

    .histo .row > .collection_list.his-coll:nth-child(odd):after, .histo .row > .collection_list.his-coll:nth-child(even):after {
        left: 10px;
        right: unset;
        transform: unset;
        top: 23px;
        bottom: unset;
    }

    .histo .row > .collection_list.his-coll:nth-child(odd) .year, .histo .row > .collection_list.his-coll:nth-child(even) .year {
        position: absolute;
        float: left;
        width: 100%;
        left: unset;
        top: -50px;
        right: unset;
        bottom: unset;
        height: auto;
        transform: unset;
        font-size: 3em;
        padding: 0;
    }

    .collection_content.his-desc {
        margin-bottom: 40px;
    }

    .histo .row > .collection_list.his-coll:nth-child(odd), .histo .row > .collection_list.his-coll:nth-child(even) {
        float: left;
        width: 100% !important;
        padding: 15px 15px 15px 60px;
        margin: 10px 0;
    }

    .histo .row:before {
        content: '';
        width: 4px;
        height: 180px;
        background: linear-gradient(180deg, #fff, transparent);
        position: absolute;
        left: 25px;
        top: unset;
        transform: translateX(-50%);
        bottom: 0;
        z-index: 1;
    }

    .histo .row:after {
        left: 25px;
        height: calc(100% - 180px);
    }

    .histo-title h2:after {
        width: 40px;
        left: 0px;
        transform: unset;       
    }

    .exp-leistungen .collection_list.ver-coll .title,
    .ver-coll.collection_list .title {
        font-size: 1.4em;
    }

    .ver-coll .collection_content.title.custom:after, 
    .leistungen-coll .collection_content.title.custom:after {
        width: 18px;
        height: 18px;
    }

    .collection_list.ref-coll.show {
        padding: 15px 0px;
    }

    .flyer .row {
        padding: 20px;
    }

    .collection_list.ben-coll {
        width: calc(50% - 20px);
    }

    .box2 h3,
    .box h3 {
        font-size: 1.2rem;
    }

    .collection_list {
        width: 100%;
    }

    .pop-up-button {
        width: 40% !important;
        float: left !important;
    }

    .pop-up-button .textcontent {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .collection_content.field-1655053570 {
        min-width: 47px;
    }

    .bugfixes-collection {
        padding-left: 0 !important;
        margin-left: 0px !important;
        padding-right: 0 !important;
    }

    .collection_list.bugfixes {
        width: 100%;
    }

    .vergleich {
        height: 360px !important;
    }
    .pb-5 {
        padding-bottom: 1rem !important;
    }

    .twentytwenty-container {
        height: 360px !important;
    }
    .header-animation iframe {
        width: 100%;
        height: 230px;
    }
}

@media only screen and (max-width: 500px) {

    :root {
        --fs-800: 1.6rem;
    }

    .ref-info-wrap1, .ref-info-wrap3 {
        border-right: none;
    }

    .ref-info-wrap1, .ref-info-wrap2, .ref-info-wrap3, .ref-info-wrap4 {
        width: 100%;
    }

    .form-contact .row > .textcontent {
        margin-top: -30px;
    }

    .content-img.job-img {
        margin-top: 40px;
    }

    .content-img {
        margin-top: 20px;
    }

    .filter_display .button_filter_wrapper_2, 
    .filter_display .button_filter_wrapper_2 a {
        float: left;
        width: 100%;
        margin-bottom: 2px;
    }

    .collection_list.events .event-date {
        bottom: 100px;
    }

    .collection_list.events .collection_link a {
        right: unset;
        left: 40px;
    }

    .collection_list.events .collection_content.event-short-desc:after {
        height: 140px;
    }

    .box2 .row,
    .box .row {
        padding: 20px;
    }

    .box2 .row,
    .box .row {
        min-height: auto;
    }

   

    .new-f-img img {
        border: 2px solid #000;
        border-radius: 10px;
    }

    .new-f-img:before {
        width: 32px;
        height: 3px;
        top: -1px;
    }

    div#content, .main-screen {
        padding: 3rem 0;
    }

    .pop-up-element {
        padding: 30px 10px !important;
    }
    .vergleich {
        height: 260px !important;
    }

    .container {
        min-width: 250px;
    }

    .twentytwenty-container {
        height: 260px !important;
    }

    #slider div#slider-title {
        padding: 0 20px !important;
    }
    .footer-sitemap li.level_1 {
        width: 100%;
        text-align: center;
    }
    h2 {
        margin-top: 0px;
    }

    .unt .flyer .row {
        margin-top: 0px;
    }
}

@media (max-width: 465px) {
    .component.topbar2 > .textcontent {
        float: left;
        padding-left: 2px;
        max-height: 20px;
    }

    .component.topbar2 > .textcontent img {
        max-width: 20px;
        height: auto !important;
    }
}

@media (min-width: 768px) {
    
    .container {
        max-width: 750px;
    }

    .w-25 .collection_list.teamCollection,
    .w-25 .collection_list.blog-multi {
        width: 100%;
        float: left;
        padding: 20px;
        border: 2px solid #80808080;
        text-align: center;
    }

    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9 {
        float: left;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666667%;
    }
    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
    .col-sm-7 {
        width: 58.33333333%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666667%;
    }
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1 {
        width: 8.33333333%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-pull-11 {
        right: 91.66666667%;
    }
    .col-sm-pull-10 {
        right: 83.33333333%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-8 {
        right: 66.66666667%;
    }
    .col-sm-pull-7 {
        right: 58.33333333%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-5 {
        right: 41.66666667%;
    }
    .col-sm-pull-4 {
        right: 33.33333333%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-2 {
        right: 16.66666667%;
    }
    .col-sm-pull-1 {
        right: 8.33333333%;
    }
    .col-sm-pull-0 {
        right: auto;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-push-11 {
        left: 91.66666667%;
    }
    .col-sm-push-10 {
        left: 83.33333333%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-8 {
        left: 66.66666667%;
    }
    .col-sm-push-7 {
        left: 58.33333333%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-5 {
        left: 41.66666667%;
    }
    .col-sm-push-4 {
        left: 33.33333333%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-2 {
        left: 16.66666667%;
    }
    .col-sm-push-1 {
        left: 8.33333333%;
    }
    .col-sm-push-0 {
        left: auto;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-sm-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .w-25 .collection_list.teamCollection {
        width: 25%;
        float: left;
        padding: 20px;
    }

    .container {
        max-width: 970px;
    }
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
    .col-md-pull-12 {
        right: 100%;
    }
    .col-md-pull-11 {
        right: 91.66666667%;
    }
    .col-md-pull-10 {
        right: 83.33333333%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-8 {
        right: 66.66666667%;
    }
    .col-md-pull-7 {
        right: 58.33333333%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-5 {
        right: 41.66666667%;
    }
    .col-md-pull-4 {
        right: 33.33333333%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-2 {
        right: 16.66666667%;
    }
    .col-md-pull-1 {
        right: 8.33333333%;
    }
    .col-md-pull-0 {
        right: auto;
    }
    .col-md-push-12 {
        left: 100%;
    }
    .col-md-push-11 {
        left: 91.66666667%;
    }
    .col-md-push-10 {
        left: 83.33333333%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-8 {
        left: 66.66666667%;
    }
    .col-md-push-7 {
        left: 58.33333333%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-5 {
        left: 41.66666667%;
    }
    .col-md-push-4 {
        left: 33.33333333%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-2 {
        left: 16.66666667%;
    }
    .col-md-push-1 {
        left: 8.33333333%;
    }
    .col-md-push-0 {
        left: auto;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-md-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 1200px) {


    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.66666667%;
    }
    .col-lg-1 {
        width: 8.33333333%;
    }
    .col-lg-pull-12 {
        right: 100%;
    }
    .col-lg-pull-11 {
        right: 91.66666667%;
    }
    .col-lg-pull-10 {
        right: 83.33333333%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-8 {
        right: 66.66666667%;
    }
    .col-lg-pull-7 {
        right: 58.33333333%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-5 {
        right: 41.66666667%;
    }
    .col-lg-pull-4 {
        right: 33.33333333%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-2 {
        right: 16.66666667%;
    }
    .col-lg-pull-1 {
        right: 8.33333333%;
    }
    .col-lg-pull-0 {
        right: auto;
    }
    .col-lg-push-12 {
        left: 100%;
    }
    .col-lg-push-11 {
        left: 91.66666667%;
    }
    .col-lg-push-10 {
        left: 83.33333333%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-8 {
        left: 66.66666667%;
    }
    .col-lg-push-7 {
        left: 58.33333333%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-5 {
        left: 41.66666667%;
    }
    .col-lg-push-4 {
        left: 33.33333333%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-2 {
        left: 16.66666667%;
    }
    .col-lg-push-1 {
        left: 8.33333333%;
    }
    .col-lg-push-0 {
        left: auto;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-lg-offset-0 {
        margin-left: 0;
    }

    .container {
        max-width: 1170px;
    }
}

@media (min-width: 1500px) {
    .container {
        max-width: 1420px;
    }
}

/* Änderungen Juli 2026 */

.home .slider-untertitle .container {
    width: 100%;
}

.ex-coll.collection_list .collection_container {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.collection_list.ex-coll {
    display: flex;
}

.col-xs-12.expert.no-owl-carousel.no-owl-theme.no-owl-drag {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
}

.col-xs-12.col-sm-12.col-md-12.col-lg-4.form-contact .row {
    display: flex;
    flex-direction: column !important;
}

@media (max-width: 1024px) {
    .exp .collection_list.ex-coll {
        width: 100%;
    }
    .exp .collection_list.ex-coll .collection_content.coll-img {
        padding: 0px;
    }
    
    .collection_list.ex-coll:not(:first-child) {
        border-top: 1px solid lightgrey;
        padding-top: 3rem;
    }
    .col-xs-12.col-sm-12.col-md-12.col-lg-4.form-contact .row {
        flex-direction: column !important;
    }
}

@media (max-width: 991px) {
    .form-contact .row {
        flex-direction: row !important;
    }
}

.kar {
    .form-group.swifty-one {
        padding-right: 0px;
    }
    .form-group.swifty-one, .form-group.swifty-two {
        width: 100%;
    }
}