:root {
    --accent: #E1E8EE;
    --accent-opacity: #E1E8EE50;
    --accent-dark: #416784;
   
    --primary-dark: #222222;
    --primary-white: #fff;
    --primary-light: #2d64811c;
  
    --fc-primary: #2C2C2C;
    --fc-dark: #000;

    --ff-primary: 'Source Sans Pro', sans-serif;
  
    --ff-body: var(--ff-primary);
    --ff-heading: var(--ff-primary);
  
    --fw-regular: 400;
    --fw-bold: 700;
  
    --fs-300: 0.8125rem;
    --fs-400: 0.875rem;
    --fs-500: 0.9375rem;
    --fs-600: 1rem;
    --fs-650: 1.1rem;
    --fs-700: 1.2rem;
    --fs-800: 2.5rem;
    --fs-900: 3rem;

    --br-primary: .5rem;
  
    --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);
    --border: 1px solid var(--accent-dark);
    --gradient: linear-gradient(0deg, var(--accent), transparent);
    --shadow: 5px 5px 20px rgb(0 0 0 / 15%);
  

  }

/* Reset */

/* 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 root 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;
}

/* max-width classes */
.max1000 {
    max-width: 1000px;
}

.max800 {
    max-width: 800px;
}

.max600 {
    max-width: 600px;
}

.max500 {
    max-width: 500px;
}


/* 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: 'SourceSansPro-Regular';
	src: url('/layout/frontend/b2c/dist/fonts/SourceSansPro-Regular.ttf');
	}

    @font-face {
	font-family: 'SourceSansPro-Bold';
	src: url('/layout/frontend/b2c/dist/fonts/SourceSansPro-Bold.ttf');
	}

    @font-face {
	font-family: 'SourceSansPro-Black';
	src: url('/layout/frontend/b2c/dist/fonts/SourceSansPro-Black.ttf');
	}

body {
    background-color: var(--primary-white);
    font-size: var(--fs-600);
    font-weight: var(--fw-regular);
    line-height: 1.42857143;
    font-family: var(--ff-body);
    color: var(--fc-primary);
    overflow-x: hidden;
    margin: 0;
}

.collection_list.hero {
    width: 100%;
    padding: 0;
    background: var(--primary-light);
}

.filter_display {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding: 15px;
    flex-wrap: wrap;
    margin: 0 0 0.5rem;
}

button {
    background: var(--accent);
    color: var(--primary-white);
    padding: 10px 15px;
    border-radius: var(--br-primary);
    border: none;
    cursor: pointer;
}

input, select, textarea {
    padding: 1rem;
    width: 100%;
    border: 1px solid var(--accent);
    font-family: inherit;
    border-radius: var(--br-primary);
}

.owl-item img {
    height: 450px!Important;
    width: 100%!Important;
    border-radius: var(--br-primary);
}
.owl-item {
scale: .9;
}
.owl-item.center {
scale: 1;
}

.owl-item a {
    width: 100%!Important;
}

figure.mz-figure.mz-hover-zoom.mz-no-zoom.mz-ready {
    width: 100%;
    height: 100%;
}

/* .back_to_overview a {
    background: var(--accent);
    color: var(--primary-white);
    padding: 10px 15px;
    border-radius: var(--br-primary);
    border: none;
    cursor: pointer;
} */

.back_to_overview {
    display: none;
}

button#backButton {
    float: left;
    display: block;
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}

.full_preview .filter_display {
    display: none;
}

a.button_filter.a-filter {
    background: var(--accent);
    color: var(--primary-white);
    padding: 10px 15px;
    float: left;
    border-radius: var(--br-primary);
}

a.button_filter.o-filter {
    background: var(--primary-light);
    color: var(--accent);
    padding: 10px 15px;
    float: left;
    border-radius: var(--br-primary);
    border: 1px solid var(--accent-light);
}

.collection_list.hero .collection_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-left: 2rem;
}

.collection_content.hero__title.title.custom {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    align-items: flex-end;
}

.collection_content.hero_teaser {
    grid-area: 2 / 1 / 3 / 2;
}

.collection_content.hero_img {
    grid-area: 1 / 2 / 3 / 3;
}

.collection_content.hero_img img {
    height: 400px!important;
    object-fit: cover;
}

.collection_list.card .collection_container {
    background: #fff;
    box-shadow: #7592ba3a 0px 7px 29px 0px;
    border-radius: var(--br-primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-bottom: 7px solid var(--accent);
    transition: 300ms;
    min-height: 480px;
}

.collection_list.card .card_img {
    height: 216px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.collection_list.card .card_img img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: 0.5s;
}

.collection_list.card .collection_container:hover {
    box-shadow: #7592ba75 0px 7px 29px 0px;
}

li.level_1.levels ul {
    display: none;
}

a {
    color: var(--accent-dark);
}

.component.copyright .textcontent:last-child {
    float: right;
}
.component.copyright .textcontent:first-child {
    float: left;
}

.collection_list.card .collection_content.title.custom {
    font-size: var(--fs-700);
    font-weight: var(--fw-bold);
    font-family: var(--ff-secondary);
    margin-inline: 1.5rem;
    color: var(--fc-secondary);
    margin-block-start: 1rem;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.collection_list.card .collection_container:hover .collection_content.card_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_list.card .collection_content.card_teaser {
    margin-inline: 1.5rem;
    margin-bottom: 2rem;
    -webkit-line-clamp: 5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}




.row {
    float: left;
    width: 100%;
}

#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( --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: 999;
}

/* Modal */


.fade {
    opacity: 1;
}

.modal {
    display: block;
}



.modal.success .modal-header {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: var( --primary-white);
}

div#requestbox {
    position: fixed;
    width: 100%;
    top: 50%;
    left: 50%;
    z-index: 999;
    height: 100%;
    transform: translate(-50%, -50%);
}

.modal-dialog {
    position: fixed;
    width: 100%;
    max-width: 350px;
    top: 50%;
    left: 50%;
    z-index: 999999;
    background: var(--primary-light);
    text-align: center;
    padding: 2rem;
    color: var(--accent);
    border-radius: var(--br-primary);
    box-shadow: var(--bs-primary);
    transform: translate(-50%, -50%);
    border: 1px solid var(--accent);
}

div#requestbox:after {
    content: '';
    background: #00000075;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

div#filter-element {
    position: absolute;
    margin-top: -200px;
}



button.close {
    margin: 0 0 1rem;
}

/* Modal */



/* Extra Module */
html {
    scroll-behavior: smooth;
  }

/* FAQ */

.faq_group_container .faq_question_box {
    padding: 5px 15px 8px 15px;
    border: none;
    background: var(--accent);
    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: rgb(245 247 251);
    margin-top: -10px;
    border-radius: 0 0 5px 5px;
}

.faq_question_box.active {
    border-radius: 5px 5px 0 0;
}

.faq_question_box:after {
    content: '+';
    position: absolute;
    right: 16px;
    color: var( --primary-white);
    top: 50%;
    font-size: 20px;
    transform: translateY(-50%);
}

.faq_question_box.active:after {
    content: '-';
    position: absolute;
    right: 16px;
    color: var(--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( --primary-white);
    line-height: 1;
    margin-bottom: 7px;
}

.next lottie-player {
    margin: 0 auto;
}

.faq-search input[type="text"] {
    width: 250px;
    height: 30px;
    color: var( --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(--accent);
}


.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( --primary-white);
    display: -webkit-box;
}



.pop-up-element .row :is(li, p, a, span, strong, b, em, ul, li, h2, h1, h3) {
    color: var( --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(--accent);
   color: var( --primary-white);
   border: 1px solid var(--accent);
}

/* Navgation */

div#header {
    background: var(--accent);
}

#header a {
    color: var( --primary-dark)!important;
}

.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(--accent);
    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(--accent-dark);
    color: var( --primary-white);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: #4167847a 0px 7px 29px 0px;
}

.header-text a:hover {
    color: var( --primary-white);
    box-shadow: #416784d1 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%;
}

.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;
}


/* 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;
}

iframe {
    width: 100%;
    height: 75vh;
    border-radius: var(--br-primary);
}

.collection_content.header-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.collection_content.header-quote-author {
    font-size: .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( --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( --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;
}

.home .collection_link a {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 2;
}



.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;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt60 {
    margin-top: 60px;
}

.mt100 {
    margin-top: 100px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb100 {
    margin-bottom: 100px;
}





/* 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( --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%;
}


.collection_list {
    width: 33.33%;
    float: left;
}


img {
    height: 100%!important;
    width: 100%!important;
    object-fit: cover;
    max-width: 100%;
}

.header-text h1 img {
    width: 50px!important;
}

.d-none {
    display: none!Important;
}



/* Schriften */

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    clear: both;
    font-weight: var(--fw-bold);
    color: var(--fc-dark);
    margin: 10px 0;
    font-family: var(--ff-heading)!important;
}

h1 {
    font-size: var(--fs-900);
}


h2 {
    font-size: var(--fs-800);
}

h3 {
    font-size: var(--fs-700);
}

h4,
h5 {
    font-size: var(--fs-600);
}

h6 {
    font-size: var(--fs-500);
}

a {
    text-decoration: none;
}
a:hover {
    opacity: .95;
}

.owl-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.hide {
    display: none;
}

/* 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;
}

/* Level 2 Menue */

li.level_1.levels {
    position: relative;
}

#header ul.level_2 {
    display: none;
}

li.level_1.levels:hover ul.level_2 {
    display: block !important;
}

ul.level_2 {
    position: absolute;
    left: 0;
    top: 100%;
    width: 222%;
    height: auto;
    z-index: 1;
    background: var(--primary-white);
    padding: 15px;
    border-radius: var(--br-primary);
}

ul.level_2 a p.level_2_title {
color: var(--accent-dark)!important;
}

li.level_2 {
    margin-bottom: 5px;
}

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;
}

.footer-sitemap li.level_1.levels:after {
    display: none;
}

.footer-sitemap li.level_1 {
    font-weight: 500;
    font-size: 20px;
    width: auto;
}
/* Level 2 Menue */



.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( --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( --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( --primary-white);
    padding: 10px;
}

.cookie-config-save {
    padding: 10px;
    text-align: center;
    background: #68c567;
    cursor: pointer;
    margin: 20px 15px;
    color: var( --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( --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 */

/* Tabs */

.tab {
    overflow: hidden;
}


/* Style the buttons inside the tab */

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}


/* Change background color of buttons on hover */

.tab button:hover {
    background-color: #ddd;
}


/* Create an active/current tablink class */

.tab button.active {
    background-color: #ccc;
}


/* Style the tab content */

.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(--accent);
    color: var( --primary-white);
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 5px;
}

div#submit_button {
    display: flex;
    justify-content: center;
}

.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.invalid {
    background-color: #ffdddd;
}

.form-group {
    float: left;
    width: 100%;
    padding: 10px 0;
}



.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#button {
    background: var(--accent-dark);
    color: var(--primary-white);
    padding: 10px 15px;
    border-radius: var(--br-primary);
    cursor: pointer;
    border: none;
}



button {
    background: var(--accent-dark);
    color: var(--accent);
    padding: 10px 15px;
    border-radius: var(--br-primary);
    cursor: pointer;
    border: none;
    transition: 200ms;
}

button:hover {
    color: var(--primary-white);
    box-shadow: #416784d1 0px 7px 29px 0px;
    transition: 200ms;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot:hover {
    color: none;
    box-shadow: none;
    transition: 200ms;
}

div#submit_button {
    float: left;
    width: auto;
    margin: 1rem 0;
}

.contact-button #prevBtn {
    background: #787878!important;
}

.col-xs-12.all-dishes.all-dishes h4 {
    color: var( --primary-white);
}

.col-xs-12.all-dishes.all-dishes {
    padding: 10px 20px;
    background: var(--accent);
    border: 1px solid grey;
    border-radius: 5px;
    margin-bottom: 1rem;
    color: var( --primary-white);
}

/* Make circles that indicate the steps of the form: */

.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;
}


/* Mark the steps that are finished and valid: */

.step.finish {
    background-color: #04AA6D;
}


/* Multi-form end */


/* Cookie end */


/* 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: 10rem;
}

#header div#header_3 li {
    display: inline-block;
    float: left;
}

#header .active_tree {
    font-weight: var(--fw-bold);
}



#header .component.logo,
#header .component.logo .textcontent {
    height: 100%;
}

#header_1 img {
    width: 100%!Important;
    height: 100% !important;
    object-fit: contain;
    border-radius: 0px;
}

div#header_3 {
    display: none;
}

div#header,
#header .container {
    height: 100%;
}

div#header,
.header-wrapper {
    height: 60px;
    width: 100%;
    z-index: 10;
    border-bottom: 3px solid var(--accent-dark);
}

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;
}



.hamburger-menu {
    background: var(--accent);
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    display: none;
}

#header .hamburger-menu li.level_1 {
    padding: 0;
    border-bottom: 1px solid var( --primary-white);
}

#header .hamburger-menu a {
    padding: 15px 20px !important;
    display: block;
}

#header .hamburger-menu li.level_1:last-child {
    border-bottom: 0 !important;
}

#header .hamburger-menu li.level_2 {
    padding: 20px 0px;
    color: var( --primary-white);
}

#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( --accent-dark);
    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 */

.home #slider-wrapper {
    position: relative;
    height: 700px;
}

#slider-wrapper {
    position: relative;
    height: 500px;
}

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( --primary-white);
}



#slider-wrapper div.slider-untertitle {
    position: absolute;
    top: 0;
    width: 100%;
    color: var( --primary-dark);
    padding: 20px 0;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1;
}





/* 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( --primary-white);
    border-bottom: 0;
    border-top: 0;
    background: transparent !important;
    color: var( --primary-white);
    align-items: center;
}

.anker-button.button:last-child {
    border-right: 1px solid var( --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: var(--accent);
    font-size: 15px;
    position: relative;
    float: left;
    width: 100%;
}

.footer-sitemap {
    height: auto;
    clear: both;
    width: 100%;
    margin: 0 auto;
    display: block;
    float: left;
    margin-bottom: 40px;
}

.footer-sitemap ul {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}


/* #footer a:hover {
  color: #5a9c9d;
} */

#footer li {
    list-style-type: none;
}

.component.privacy_policy {
    display: flex;
    justify-content: center;
}

#footer li.level_1 a {
    margin-bottom: 30px;
    display: inline-block;
    color: #000;
}

.footer-sitemap li.level_2 {
    font-weight: normal;
    font-size: 15px;
    text-transform: initial;
}

div#privacy-policy {
    padding: 7px 0;
    clear: both;
    text-align: right;
    color: var(--accent);
    position: relative;
    float: left;
    width: 100%;
    background: var(--accent-dark);
}

div#privacy-policy a {
    color: var( --primary-white);
}

#footer ul.level_2{
    display: none;
}

#privacy-policy .footer-1 {
    text-align: left;
}

#footer .level_1:hover .level_2{
    display: none;
}


div#privacy-policy ul li {
    display: inline-block;
    padding: 0 10px;
}

#footer .footer-seo {
    clear: both;
    color: var( --primary-white);
}

.seo .footer-1 {
    padding-right: 50px;
}

.seo .footer-2 {
    padding-left: 50px;
}

.footer-links a {
    color: #b5b5b5;
}

.footer-links a:hover {
    color: #5a9c9d !important;
}


/* 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;
}

.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;
}

.slider-untertitle.content-selector:after {
    content: "";
    background: linear-gradient(90deg, #fff, transparent);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#slider img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 0px;
}

div#slider .textcontent {
    height: 100%;
}

#slider .textcontent {
    max-height: 100%;
    overflow: hidden;
}

.time-open {
    background: #416784e6;
    padding: 40px;
    border-radius: 20px 0px 0px 20px;
    color: #fff;
    float: right;
    width: 110%;
}

.time-open h3 {
    color: #fff;
}

h2 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--accent-dark);
    border-radius: 4px;
    z-index: 1;
    left: 0;
    bottom: 0px;
}

.headline-histo h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--accent-dark);
    border-radius: 4px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
}


.header-smal {
    margin: 50px 0px;
}

.button-1 {
    float: left;
    margin-right: 15px;
}

.col-xs-12.col-sm-12.col-md-12.col-lg-4.time-card {
    left: 335px;
    position: relative;
}

.time-open ul {
    padding-left: 5px;
    margin: 0px;
}

.time-open li {
    padding: 5px;
}

.philosophie .textcontent {
    margin-top: 20px;
    margin-bottom: 20px;
}

.add-mt30 {
    margin-top: 30px;
    margin-bottom: 25px;
}

.zitat-group .row {
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
}

.home div#area-7 {
    background: url(/userdata/images/Paragraf.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}


.zitat-info {
    padding-left: 20px;
    float: left;
    width: 14%;
}

.zitat-img.add-mt30 {
    margin-left: 65px;
}

.zitat.add-mt30 {
    border-right: 1px solid black;
    margin-right: 10px;
}

.button.add-mt30 {
    width: 40%;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 10px;
    color: var(--accent);
    background: var(--accent-dark);
    border-radius: 10px;
}

.content-text {
    padding-right: 60px;
    
}

.col-xs-12.col-sm-12.col-md-12.col-lg-6.content-text.zitat-group {
    padding-left: 60px;
    border-left: 1px solid #5f5e5e;
}

.zitat:before {
    content: "";
    position: relative;
    height: 25px;
    width: 100%;
    float: left;
    background: url(/userdata/images/quote.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 17px 0;
}

.tat-group {
    max-width: 1180px;
}

/* .card.card-tat.owl-carousel.owl-theme.owl-drag.owl-right-hide.owl-loaded {
    padding: 0;
} */

.home .collection_list.taetigkeit {
    background: #fff;
    width: 20%;
    margin-right: 50px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
    transition: 300ms;
}

.home .collection_list.taetigkeit:hover {
    transition: 300ms;
}


.home .collection_content.taetigkeit-img {
    border-bottom: 4px solid var(--accent-dark);
}

.home .collection_content.taetigkeit-img img {
    border-radius: 20px 20px 0px 0px;
}

.home .collection_content.taetigkeit-img {
    height: 170px;
    width: 280px;
}

.home h3.collection_content.taetigkeit__title.title.custom {
    font-size: var(--fs-650);
    font-weight: var(--fw-bold);
    font-family: var(--ff-secondary);
    margin-inline: 1.5rem;
    color: var(--fc-secondary);
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 60px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.home .schwerpunkte h3.collection_content.taetigkeit__title.title.custom {
    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;
    min-height: unset;
    margin-bottom: 10px;
    font-size: var(--fs-700);
}

.br-20 img {
    border-radius: 20px;
}

.home div#area-6 {
    /* background: url(/userdata/images/Hände.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;

}

#header_1 {
    position: relative;
}
#header_1 .component.logo{
    position: absolute;
    background-color: #fff;
    width: 190px;
    top: 0px;
    left: 0px;
    height: 95px;
    border-radius: 0px 0px 20px 20px;
    padding: 12px;
    box-shadow: 0px 3px 6px #00000029
}

.owl-stage-outer {
    width: 100%;
}

.stream .owl-item:nth-child(odd) .collection_list.historie .collection_content.icon-histo:after {
    background: var(--accent-dark);
    content: "";
    height: 52px;
    width: 2px;
    left: 50%;
    position: absolute;
    bottom: 100%;
    transform: translateX(-50%);
}

.stream .owl-item:nth-child(odd) .collection_list.historie .collection_content.description:after {
    content: "";
    position: absolute;
    left: -1000px;
    bottom: 0;
    height: 2px;
    width: 1000%;
    background: var(--accent-dark);
}

.stream .owl-item:nth-child(even) .collection_list.historie .collection_content.icon-histo:before {
    background: var(--accent-dark);
    content: "";
    height: 20px;
    width: 20px;
    left: 50%;
    position: absolute;
    top: 120px;
    transform: translateX(-50%);
    border-radius: 500px;
}

.stream .owl-item:nth-child(even) .collection_list.historie .collection_content.icon-histo:after {
    background: var(--accent-dark);
    content: "";
    height: 52px;
    width: 2px;
    left: 50%;
    position: absolute;
    top: 80px;
    transform: translateX(-50%);
}

.stream .collection_content.icon-histo img {
    object-fit: contain;
    object-position: center;
}

.stream .collection_list.historie {
    width: 100%;
    text-align: center;
}

.stream .owl-item:nth-child(odd) .collection_list.historie .collection_content.description {
    margin-bottom: 150px;
    padding-bottom: 30px;
}

.stream .collection_list.historie .collection_content.description {
    min-height: 100px;
}

.stream h3.collection_content.historie__title.title.custom {
    color: var(--accent-dark) !important;
}

.stream .collection_list.historie {
    width: 100%;
    text-align: center;
}

.stream .owl-item:nth-child(odd) .collection_list.historie .collection_content.icon-leistungen {
    bottom: -130px;
}

.stream .collection_content.icon-histo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.stream .collection_content.icon-histo {
    justify-content: center;
    display: flex;
    align-items: center;
    width: 80px !important;
    height: 80px !important;
    padding: 20px;
    border-radius: 500px;
    background: #fff;
    border: var(--border);
    margin: 0 auto;
}

.stream .collection_content.icon-histo img {
    object-fit: contain;
    object-position: center;
}

.stream .owl-item:nth-child(odd) .collection_list.historie .collection_content.icon-histo {
    bottom: -130px;
}

.owl-item img {
    height: 450px !important;
    width: 100% !important;
    border-radius: var(--br-primary);
}

.stream .owl-item:nth-child(even) .collection_list.historie .collection_content.title {
    margin-top: 150px;
    padding-top: 30px;
}

.stream .owl-item:nth-child(even) .collection_list.historie .collection_content.icon-histo {
    top: -133px;
}

.headline-histo {
    text-align: center;
    margin-bottom: 70px;
}

.schwerpunkte .collection_list.taetigkeit {
    width: 100%;
    padding: 5rem 0;
}

.schwerpunkte .collection_list.taetigkeit:nth-child(even) {
    background: var(--accent);
    width: 100%;
}

.schwerpunkte .collection_list.taetigkeit:nth-child(even) .collection_link a{
    color: var(--accent);
}


.schwerpunkte .collection_list.taetigkeit:nth-child(even) .collection_container{
    flex-direction: row-reverse;
}


.schwerpunkte .collection_list.taetigkeit .collection_content.taetigkeit-img {
    max-width: 500px;
    height: auto;
    float: left;
    overflow: visible;
    border: none;
}

.schwerpunkte .collection_list.taetigkeit .collection_content.taetigkeit-img img {
    height: 300px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.schwerpunkte .collection_list.taetigkeit .collection_container {
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1300px;
}

.schwerpunkte .taetigkeits-img-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.schwerpunkte .collection_list.taetigkeit .collection_content.mini-title {
    float: left;
    width: 66.66666%;
}

.schwerpunkte .collection_list.taetigkeit:nth-child(even) .taetigkeit-img {
    float: right;
}

.schwerpunkte .collection_list.taetigkeit .title {
    min-height: unset;
    margin-bottom: 10px;
    font-size: var(--fs-700);
}

.schwerpunkte .collection_list .collection_container:hover .taetigkeit-img img {
    transform: scale(1);
    transition: 300ms;
}

.collection_content.ref-info4-text a:hover {
    font-weight: bold;
    color: #fff !important;
}

.schwerpunkte .collection_list.taetigkeit .collection_content.link-button a {
    padding: 11px 20px;
    background: var(--main);
    z-index: 1;
    float: left;
    border-radius: 6px;
    color: #fff;
}

.schwerpunkte .collection_list.taetigkeit .collection_content.link-button a:hover {
    box-shadow: var(--shadow);
    color: #fff !important;
    background: var(--main-juicy) !important;
}

.schwerpunkte .collection_list.taetigkeit .collection_content.link-button {
    position: relative;
    float: left;
    width: auto;
}

.schwerpunkte .collection_list .collection_content.b-text {
    text-overflow: ellipsis;
    display: -webkit-box;
    margin-bottom: 30px;
}

#header li.level_1.con a {
    background: var(--accent-dark);
    padding: 8px 30px;
    color: var(--accent) !important;
    border-radius: 5px;
    margin-left: 30px;
}

#header li.level_1.con:hover a {
    color: var(--primary-white);
    box-shadow: #416784d1 0px 7px 29px 0px;
    transition: 200ms;
}

#contactform {
    scroll-margin-top: 100px;
}

.more-about-taetig #contactform {
    scroll-margin-top: 100px;
}

#content {
    scroll-margin-top: 100px;
}

#area-2 {
    scroll-margin-top: 100px;
}

#area-3 {
    scroll-margin-top: 100px;
}

#area-4 {
    scroll-margin-top: 100px;
}

#area-5 {
    scroll-margin-top: 100px;
}

#area-6 {
    scroll-margin-top: 100px;
}
#Vertragsrecht {
    scroll-margin-top: 100px;
}
#Unternehmensrecht {
    scroll-margin-top: 100px;
}
#Erbrecht {
    scroll-margin-top: 100px;
}
#Familienrecht
 {
    scroll-margin-top: 100px;
}
#Arbeitsrecht
 {
    scroll-margin-top: 100px;
}
#Verkehrsrecht{
    scroll-margin-top: 100px;
}

.home .collection_content.b-text{
    display: none;
}


.collection-ov .team .collection_container:before {
    position: absolute;
    background: var(--accent-dark);
    left: 37px;
    content: "";
    width: 50%;
    z-index: 1;
    height: 88px;
    bottom: calc(13% - 19px);
    transform: skew(45deg, 0deg);
    z-index: 0;
}

body:not(.full_preview) .collection_content.mitarbeiter-img-ov:after, body:not(.full_preview) .collection_content.mitarbeiter-img:after {
    content: "";
    background: var(--gradient);
    width: 100%;
    height: 35%;
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
}

.team .collection_content.title.custom {
    position: absolute;
    left: -7px;
    padding: 7px 15px;
    bottom: 25%;
    white-space: nowrap;
    z-index: 2;
    color: var(--accent);
}

.contact-data {
    position: absolute;
    left: 0;
    bottom: calc(35% - 105px);
    padding: 0 40px;
    width: 100%;
    z-index: 1;
    color: var(--accent-dark);
    margin-bottom: -30px;
}

.team .collection_content.title.custom:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-dark);
    z-index: -1;
    box-shadow: var(--shadow);
    border-radius: 0px 10px 10px 0px;
}

.collection-ov .collection_container:hover img {
    transform: scale(1.05);
    transition: var(--transition-long);
    overflow: hidden;
    transition: 300ms;
    border-radius: 0px 0px 20px 20px;
}

.collection_content img {
    object-fit: cover;
    height: 100% !important;
    width: 100% !important;
    overflow: hidden;
    transition: 300ms;
}

.collection_content.mitarbeiter-img {
    height: 480px;
}

.collection_content.mitarbeiter-img {
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

.collection_content.mail a {
    color: var(--accent-dark);
}

.collection_content.phone a {
    color: var(--accent-dark);
}

.collection_list.team {
    padding: 15px;
}

/* .collection_list.ben-coll:before {
    content: '';
    background: url(/userdata/images/trophy.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
} */

.ben-group .row > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.collection_list.ben-coll {
    width: calc(50% - 40px);
    border-bottom: 2px solid var(--accent-dark);
    padding: 60px 0 20px 0;
    margin-top: 40px;
}

.benefits-text {
    padding-right: 60px;
}

.job-con .container {
    display: flex;
    align-items: center;
}

.ben-con .container {
    display: flex;
    align-items: center;
}

.schwerpunkte .taetigkeit-text-wrapper{
    width: 50%;
}

.schwerpunkte .collection_link a{
    position: absolute;
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-dark);
    color: var(--accent);
    bottom: 0px;
    transition-duration: 200ms;
    border-radius: 10px;
    font-weight: 500;

}

.schwerpunkte .collection_link:hover a{
    color: var(--primary-white);
    box-shadow: #416784d1 0px 7px 29px 0px;
    transition: 200ms;

}

.collection_full.taetigkeit .collection_container {
    width: 100%;
    display: flex;
}

.collection_full.more-taetigkeit .collection_container {
    width: 100%;
    display: flex;
}

.collection_full.taetigkeit .collection_content.taetigkeit-img {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 20px;


}

.collection_full.taetigkeit .collection_content.taetigkeit-img img {
    border-radius: 20px;
}

.collection_full.more-taetigkeit .collection_content.more-taetigkeit-img {
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;

}

.collection_full.taetigkeit .taetigkeit-text-wrapper {
    width: 100%;
}

.collection_full.more-taetigkeit .more-taetigkeit-text-wrapper {
    width: 100%;
}

.schwerpunkte .taetigkeits-img-wrapper img{
    display: flex;
    flex-wrap: wrap;
    height: 300px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

#slider img .collection_content.taetigkeit-img img{
    border-radius: 20px;
}


.collection_full.taetigkeit .collection_container {
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1300px;
}

.collection_full.more-taetigkeit .collection_container {
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1300px;
}

.col-xs-12.collection-ov.collection-team {
    display: flex;
    justify-content: center;
    align-items: center;
}

.taetigkeit.full_preview #slider img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 20px !important;
}

.more-about-taetig.full_preview #slider img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 20px !important;
}

.collection_list.more-taetigkeit .collection_container {
    display: flex;
    flex-direction: column-reverse;
}


.collection_content.collection-more-taetigkeit .collection_content.more-b-text { 
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
overflow: hidden;
margin-bottom: 30px;
}

.more-taetigkeits-img-wrapper {
    display: flex;
    border-radius: 20px 20px 0px 0px;
    border-bottom: 2px solid var(--accent-dark);
}

.collection_full.more-taetigkeit .more-taetigkeits-img-wrapper {
    display: flex;
    border-bottom: none;
}

.more-taetigkeit-text-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0px 3px 6px #00000029;
}

.collection_full.more-taetigkeit .more-taetigkeit-text-wrapper {
    background: none;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.collection_list.more-taetigkeit .collection_container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    border-radius: 20px;
}


.collection_content.more-taetigkeit-img img {
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0px 3px 6px #00000029;
}

.more-about-taetig.full_preview .collection_content.more-taetigkeit-img img {
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 3px 6px #00000029;
}

.collection_list.more-taetigkeit {
    width: 30%;
    transition: 200ms;
    margin: 20px;
}

.collection_list.more-taetigkeit:hover {
    scale: 1.02;
    transition: 200ms;
}


.more-taetigkeit-text-wrapper .collection_link a.button {
    justify-content: center;
    display: flex;
    background: var(--accent-dark);
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    position: relative;
}

.datenschutz .header-text h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--accent-dark);
    border-radius: 4px;
    z-index: 1;
    left: 0;
    bottom: 0px;
    left: 50%;
    transform: translateX(60%);
}

.impressum .header-text h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--accent-dark);
    border-radius: 4px;
    z-index: 1;
    left: 0;
    bottom: 0px;
    left: 50%;
    transform: translateX(60%);
}

.card .collection_list .collection_container {
    background: #fff;
    box-shadow: rgba(117, 146, 186, 0.227) 0px 7px 29px 0px;
    border-radius: var(--br-primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 200ms;
    min-height: 546px;
}

.card .collection_list .collection_container:hover {
    scale: 1.03;
    transform: 200ms;
}

.card .collection_list .collection_content.title.custom {
    margin-inline: 1.5rem;
    color: var(--fc-secondary);
    margin-block-start: 1rem;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 60px;
    align-items: center;
    display: flex;
}

.collection_content.over-title {
    padding: 0px 25px 20px;
    color: var(--accent-dark);
}

.card .collection_list .card_img {
    height: 216px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 20px 20px 0px 0px;
}

.card .collection_list .collection_link a, .button a {
    padding: 8px 20px;
    background: var(--accent-dark);
    z-index: 1;
    float: left;
    border-radius: 6px;
    color: #fff;
    display: flex;
    justify-content: center;
    width: 100%;
}

.card .collection_list .collection_link {
    margin: 0 25px 25px;
}

.card .collection_list .collection_content.card_teaser {
    margin-inline: 1.5rem;
    margin-bottom: 1.5rem;
    -webkit-line-clamp: 5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.collection_content.card_img {
    border-bottom: 4px solid var(--accent-dark);
}

.collection_list.card-14 {
    padding: 15px;
}

/* .card {
    display: flex;
    flex-wrap: wrap;
    float: left;
    justify-content: center;
} */

.stelle.full_preview #slider-wrapper{
    display: none;
}

.taetigkeit.full_preview #slider-wrapper{
    display: none;
}

.more-about-taetig.full_preview #slider-wrapper{
    display: none;
}

.stelle.full_preview .collection_content.card_img {
    width: 40%;
    float: right;
    border-bottom: 0;
    padding: 30px;
}

.stelle.full_preview .collection_content.card_img img{
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
}

.stelle.full_preview .collection_content.card_text ul li{
    list-style: disc;
}

.stelle.full_preview  .collection_content.over-title {
    padding: 0px 0px 20px;
    color: var(--accent-dark);
}

.content-img.job-img .textcontent {
    max-width: 580px;
    float: right;
}

.content-img-job-img img {
    border-radius: 20px !important;
}

.taetigkeitscards{
    position: relative;
}
.taetigkeitscards .owl-stage{
    display: flex;
}
.taetigkeitscards .owl-item{
    scale: unset;
    padding: 0px 10px 0px 10px;
}
.taetigkeitscards .owl-stage-outer{
    overflow: hidden;
}
.taetigkeitscards .collection_list.taetigkeit {
    width: unset;
    margin-right: 0px;
    scale: 0.9;
    margin-bottom: 20px;
}
.taetigkeitscards .collection_list.taetigkeit:hover {
    scale: 0.95;
}
.taetigkeitscards .owl-nav .owl-prev{
    display: none;
}
.taetigkeitscards .owl-nav button.owl-next{
    background: unset;
    color: unset;
    padding: unset;
    border-radius: unset;
    cursor: pointer;
    border: none;
    transition: unset;
    margin-top: -20px;

}

.taetigkeitscards .owl-nav button.owl-next:hover{
    box-shadow: unset;
}

.taetigkeitscards .owl-nav{
    position: absolute;
    top: 60%;
    right: -40px;
}

.impressum .textcontent a {
    color: var(--accent-dark);
}

.datenschutz .textcontent a {
    color: var(--accent-dark);
}

.collection_content.schwerpunkt-weiterleitung a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    top: 0;
    left: 0;
}

/* Responsiv */

@media(max-width:1880px) {
    .time-open {
        background: #416784e6;
        padding: 40px;
        border-radius: 20px 0px 0px 20px;
        color: #fff;
        float: right;
        width: 100%;
    }
}

@media(max-width:1735px) {
    .time-open {
        background: #416784e6;
        padding: 40px;
        border-radius: 20px 0px 0px 20px;
        color: #fff;
        float: right;
        width: 130%;
    }
}


@media(max-width:1450px) {


    .header-animation iframe {
        width: 510px;
    }

    .time-open {
        background: #416784e6;
        padding: 40px;
        border-radius: 20px 0px 0px 20px;
        color: #fff;
        float: right;
        width: 167%;
    }
}


@media (max-width: 1249px) {
    .new-f-img img {
        border: 5px solid #000;
        border-radius: 20px;
    }

    #header li.level_1.con a {
        background: none;
        padding: 0px;
        color: var(--primary-dark) !important;
        border-radius: 0px;
        margin-left: 0px;
    }

    .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 {
        display: block !important;
    }

    #header ul.level_1 {
        gap: 0;
        flex-direction: column;
    }

    div#header_2 {
        display: none;
    }
    div#toggle_navigation:hover,
    div#toggle_navigation:active,
    div#toggle_navigation:focus {
        background: transparent;
    }
        #cookie-bar>p {
            line-height: 20px;
        }

        .time-open {
            display: none;
        }
    }

@media(max-width:1120px) {

    .col-xs-12.col-sm-12.col-md-12.col-lg-6.content-text.zitat-group {
        padding-left: 5px;
        border-left: unset;
    }
        .header-animation {
            justify-content: start;
        }
    }

@media only screen and (max-width: 1024px) {

        .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;
    
        }
    }

@media only screen and (max-width: 992px) {

    .button.add-mt30{
        width: unset;
    }

    .stelle.full_preview .collection_content.card_img {
        width: 100%;
        float: right;
        border-bottom: 0;
        padding: 30px;
    }

        .footer-sitemap ul {
            flex-wrap: wrap;
        }
    
        div#cookiewarnung {
            width: 90%;
        }
    
        #header #header_1 {
            width: auto;
        }
        .anker-navi.sticky {
            position: relative !important;
        }
        .collection-more-taetigkeit .more-taetigkeit{
            width: calc(50% - 20px) !important;
        }

        #footer .row.seo > .footer-1 {
            width: 100%;
            padding: 0px;
            border-right: unset;
            margin-bottom: 0px;
          }

          #footer .row.seo > .footer-1 .footer-1 {
            text-align: left;
            padding: 0px;
        }

        #footer .row.seo > .footer-1 {
            width: 100%;
            padding: 0px;
            border-right: unset;
            margin-bottom: 0px;
        }

        #footer .row.seo {
            flex-direction: column;
        }

        #footer .row.seo > .footer-2 .footer-2 {
            display: flex;
            justify-content: space-between;
        }

        #footer .row.seo > .footer-2 .footer-2 {
            margin-bottom: 0px;
        }

        .seo .footer-2 {
            padding-left: 0px;
            margin-top: 15px;
        }

        .collection_full.taetigkeit .collection_container {
            flex-direction: column;
            gap: 1rem;
        }

        .ben-con .container {
            display: flex;
            align-items: center;
            flex-direction: column;
        }
    }
    
@media (max-width: 768px) {


    .collection_content.more-b-text{
        margin-bottom: 20px;
    }

    .collection_full.more-taetigkeit .collection_container {
        display: block;
        gap: unset;
        align-items: unset;
        justify-content: space-between;
        margin-right: auto;
        margin-left: auto;
        padding-left: unset;
        padding-right: unset;
        width: unset;
    }

    .more-about-taetig #contactform {
        scroll-margin-top: 100px;
        margin-top: 0px;
    }

    .collection_content.more-taetigkeit-img img {
        border-radius: 20px;
        box-shadow: 0px 3px 6px #00000029;
    }

    .taetigkeitscards .owl-nav{
        position: absolute;
        top: unset;
        left: 50%;
        transform: translate(-50%);
        margin-bottom: -18px;
    }

    .col-xs-12.collection-ov.collection-team {
        display: block;
        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( --primary-white);
        }
    
        .highlight-group.odd .row {
            flex-direction: column-reverse;
        }
    
        .row {
            flex-wrap: wrap;
        }
    
        .collection_list.bugfixes {
            width: 50%;
        }
        h1 {
            font-size: 2.3rem;
        }
        h2 {
            font-size: 28px;
        }
    
        .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( --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;
        }

        .schwerpunkte .collection_link a {
            position: unset;
            padding: 10px 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--accent-dark);
            color: var(--accent);
            bottom: 0px;
            transition-duration: 200ms;
            border-radius: 10px;
            font-weight: 500;
        }
    }

@media(max-width:600px) {
    

    .schwerpunkte .collection_list.taetigkeit .collection_content.taetigkeit-img {
        max-width: unset;
        width: 100% !important;
        height: auto;
        float: left;
        overflow: visible;
        border: none;
    }

    .schwerpunkte .collection_list.taetigkeit:nth-child(even) .collection_link a {
        color: var(--accent);
    }

    .schwerpunkte .collection_link a {
        position: absolute;
        padding: 10px 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--accent-dark);
        color: var(--accent);
        bottom: -60px;
        transition-duration: 200ms;
        border-radius: 10px;
        font-weight: 500;
        width: 50%;
        transform: translate(-50%);
        left: 50%;
    }

    .schwerpunkte .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;
    }

    .schwerpunkte .taetigkeit-text-wrapper {
        width: 100%;
    }

    .schwerpunkte .collection_list.taetigkeit .collection_container {
        display: block;
        gap: 5rem;
        align-items: center;
        justify-content: space-between;
        margin-right: auto;
        margin-left: auto;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 1300px;
    }

    .button.add-mt30 {
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
        padding: 10px;
        color: var(--accent);
        background: var(--accent-dark);
        border-radius: 10px;
    }

    .job-con .container {
        display: block;
        align-items: center;
    }
    .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) {


    .schwerpunkte .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;
    }

    .schwerpunkte .taetigkeit-text-wrapper {
        width: 100%;
    }

    .schwerpunkte .collection_list.taetigkeit .collection_container {
        display: block;
        gap: 5rem;
        align-items: center;
        justify-content: space-between;
        margin-right: auto;
        margin-left: auto;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 1300px;
    }

    .home #slider-wrapper {
        position: relative;
        height: 250px;
    }
    

        .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: 30px 0 !important;
        }
    
        .pop-up-element {
            padding: 30px 10px!important;
        }
        .vergleich {
            height: 260px!important;
        }
    
        .container {
            min-width: 250px;
        }
    
        .twentytwenty-container {
            height: 260px!important;
        }
    
        div#slider-wrapper {
            height: auto;
        }

        #slider div#slider-title {
            padding: 0 20px !important;
        }
        .footer-sitemap li.level_1 {
            width: 100%;
            text-align: center;
        }
        h2 {
            margin-top: 25px;
        }
        .button-2 {
            display: none;
        }

        .header-smal {
            display: none;
        }

    }
   
 @media only screen and (max-width: 320px) {
    .button.add-mt30 {
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
        padding: 10px;
        color: var(--accent);
        background: var(--accent-dark);
        border-radius: 10px;
    }
 }

    
@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: 1300px;
        }
}



    

/* Responsiv */

.collection_content.col-contact__link a {
    color: var(--accent-dark);
}

#contactform .container {
    width: 90%;
    max-width: 1920px;
  }
  #contactform .contacform {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }
  #contactform .contacform .col-support-and-contact {
    width: calc(60% - 40px);
    display: flex;
    gap: 40px;
    top: 100px;
  }
  #contactform .contacform .textcontent:has(h2) {
    width: 100%;
  }
  #contactform .contacform .contactformular {
    width: calc(40% - 40px);
  }
  #contactform .contacform .contactformular form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
  }
  #contactform .contacform .contactformular form .form-group {
    width: 100%;
    padding: unset;
  }
  #contactform .contacform .contactformular form .vorname {
    width: calc(50% - 10px);
  }
  #contactform .contacform .contactformular form .nachname {
    width: calc(50% - 10px);
  }
  #contactform .contacform .col-support__wrapper {
    width: calc(50% - 40px);
    display: flex;
    padding: 40px;
    flex-wrap: wrap;
    border: 1px solid var(--accent);
    border-radius: 20px;
  }
  #contactform .contacform .col-support__wrapper h2 {
    font-size: var(--fs-title-xsm);
  }
  #contactform .contacform .col-support__wrapper .textcontent {
    width: 100%;
    height: 10%;
  }
  #contactform .contacform .col-support__wrapper .col-support {
    width: 50%;
  }
  #contactform .contacform .col-support__wrapper .col-support:nth-of-type(2), #contactform .contacform .col-support__wrapper .col-support:nth-of-type(4) {
    border-right: 1px solid var(--accent-dark);
  }
  #contactform .contacform .col-support__wrapper .col-support:nth-of-type(2), #contactform .contacform .col-support__wrapper .col-support:nth-of-type(4), #contactform .contacform .col-support__wrapper .col-support:nth-of-type(6) {
    width: calc(50% - 30px);
  }
  #contactform .contacform .col-support__wrapper .col-support:nth-of-type(3) {
    margin-left: 30px;
    width: calc(50% - 30px);
  }
  #contactform .contacform .col-support__wrapper .col-support:nth-of-type(5) {
    margin-left: 20px;
    width: calc(50% - 30px);
  }
  #contactform .contacform .col-support__title {
    font-size: var(--fs-title-xsm);
  }
  #contactform .contacform .col-contact {
    width: 100%;
    margin-top: 20px;
  }
  #contactform .contacform .col-contact .collection_container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  #contactform .contacform .col-contact__img {
    width: 35px;
  }
  #contactform .contacform .col-contact__img img {
    object-fit: contain;
  }
  #contactform .contacform .col-contact__wrapper {
    width: calc(50% - 40px);
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--accent);
    border-radius: 20px;
    position: sticky;
    top: 100px;
  }
  #contactform .contacform .col-contact__wrapper h2 {
    font-size: var(--fs-title-xsm);
  }
  #contactform .contacform .col-contact__wrapper .textcontent {
    width: 100%;
  }
  #contactform .contacform .col-contact__textblock {
    margin-left: 20px;
  }
  #contactform .contacform .col-contact__title {
    font-size: var(--fs-title-xsm);
  }
  
  @media (max-width: 1720px) {
    #contactform .contacform {
      justify-content: center;
    }
    #contactform .contacform .textcontent:has(h2) {
      width: 80%;
    }
    #contactform .contacform .col-support__wrapper {
      position: relative;
      top: unset;
      width: 100%;
    }
    #contactform .contacform .col-contact__wrapper {
      position: relative;
      top: unset;
      width: 100%;
    }
    #contactform .contacform .col-support-and-contact {
      flex-direction: column;
      width: 40%;
    }
  }
  @media (max-width: 1439px) {
    #contactform .contacform .textcontent:has(h2) {
      width: 100%;
    }
    #contactform .contacform .contactformular {
      width: calc(50% - 40px);
    }
    #contactform .contacform .col-support-and-contact {
      flex-direction: column;
      width: calc(50% - 40px);
    }
  }
  @media (max-width: 1024px) {
    #contactform .contacform .textcontent:has(h2) {
      width: 100%;
    }
    #contactform .contacform .contactformular {
      width: 100%;
    }
    #contactform .contacform .col-support-and-contact {
      flex-direction: column;
      width: 100%;
    }
  }
  @media (max-width: 500px) {
    #contactform.main-screen {
      padding-top: 60px !important;
    }
    #contactform.main-screen .collection_list.col-support {
      width: 50% !important;
      margin-left: unset !important;
      border-right: unset !important;
      padding-right: unset !important;
    }
  }
  @media (max-width: 420px) {
    #contactform.main-screen .contacform .col-contact__wrapper {
      padding: 15px;
    }
    #contactform.main-screen .contacform .col-support__wrapper {
      padding: 15px;
    }
  }
  @media (max-width: 375px) {
    #contactform.main-screen .contacform .col-support__wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    #contactform.main-screen .contacform .col-support__wrapper .collection_list.col-support {
      width: 100% !important;
    }
    #contactform.main-screen .contacform .col-support__wrapper .collection_list.col-support .collection_container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    #contactform.main-screen .contacform .col-support__wrapper .collection_list.col-support .collection_container .collection_content {
      width: unset;
    }
  }
  #footer {
    font-size: var(--fs-md);
    color: var(--clr-primary-dark);
    background: url(/userdata/images/bg-footer.png);
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 80px;
  }
  #footer::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E1E8EE 0% 0% no-repeat padding-box;
    z-index: 1;
    opacity: 0.9;
  }
  
  .row.seo {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  .row.seo .footer-3, .row.seo .footer-4 {
    display: none;
  }
  .row.seo .footer-2 .textcontent:nth-child(1) img {
    max-width: 300px !important;
    width: 100% !important;
  }
  .row.seo .footer-2 .textcontent:nth-child(2) {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  .row.seo > .footer-1 {
    width: unset;
    flex: 1;
    color: var(--clr-primary-dark);
    padding-left: 0px;
    border-right: 1px solid var(--clr-primary-dark);
  }
  
  .footer-sitemap {
    position: relative;
    z-index: 2;
  }
  /* .footer-sitemap ul.level_1 {
    justify-content: start;
  }
  .footer-sitemap ul.level_1 li {
    padding: 0px 20px 0px 0px;
  } */
  .footer-sitemap ul.level_1 li a {
    font-size: var(--fs-md);
    font-weight: var(--fw-600);
  }

  .footer-sitemap ul.level_1 li {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}
  
  @media (max-width: 991px) {
    #footer .footer-2 {
      width: unset;
    }
  }
  @media (max-width: 768px) {
    #footer .row.seo > .footer-1 {
      width: 60%;
      padding: 0px 20px 0px 0px;
    }
    #footer .row.seo > .footer-1 .footer-1 {
      text-align: left;
      padding: 0px;
    }
    #footer .row.seo > .footer-2 {
      padding-left: 20px;
    }
  }
  @media (max-width: 767px) {
    #footer .row.seo {
      flex-direction: column;
    }
    #footer .row.seo > .footer-1 {
      width: 100%;
      padding: 0px;
      border-right: unset;
      margin-bottom: 0px;
    }
    #footer .row.seo > .footer-1 .footer-1 {
      text-align: left;
      padding: 0px;
    }
    #footer .row.seo > .footer-2 {
      padding-left: 0px;
    }
    #footer .row.seo > .footer-2 .footer-2 {
      display: flex;
      justify-content: space-between;
    }
    #footer .row.seo > .footer-2 .footer-2 .textcontent img {
      object-fit: contain;
    }
    #footer .row.seo > .footer-2 .footer-2 .textcontent:nth-child(2) {
      margin-top: unset;
    }
    #footer .row.seo > .footer-2 {
      margin-bottom: 0px;
    }
    #footer .row.seo > .footer-2 .footer-2 {
      margin-bottom: 0px;
    }
  }
  div#privacy-policy {
    background: var(--accent-dark);
    color: var(--accent);
  }
  div#privacy-policy a {
    color: var(--clr-primary-white);
  }
  
  .component.copyright {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    font-size: var(--fs-sm);
  }
  .component.copyright .textcontent img {
    width: 120px !important;
  }
  .component.copyright .textcontent:nth-child(2) {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: min-content;
  }
  
  @media (max-width: 767px) {
    .component.copyright {
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    .component.copyright .textcontent {
      width: calc(50% - 20px);
    }
    .component.copyright .textcontent:nth-child(1) {
      display: none;
    }
    .component.copyright .textcontent:nth-child(3) {
      width: 100%;
    }
  }
  #ihnen-group {
    background-color: #535353;
    padding: 32px 0px;
    color: var(--clr-primary-white);
  }
  #ihnen-group a {
    color: var(--clr-primary-white) !important;
    text-decoration: underline;
  }
  #ihnen-group .component {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  #ihnen-group .component .textcontent:nth-child(1) {
    width: 55%;
  }
  #ihnen-group .component .textcontent:nth-child(2) {
    width: 15%;
  }
  #ihnen-group .component .textcontent:nth-child(3) {
    width: 15%;
  }
  #ihnen-group .component .textcontent img {
    object-fit: contain;
  }
  
  @media (max-width: 767px) {
    #ihnen-group .component {
      flex-wrap: wrap;
    }
    #ihnen-group .component .textcontent:nth-child(1) {
      width: 100%;
    }
    #ihnen-group .component .textcontent:nth-child(2) {
      width: calc(45% - 20px);
    }
    #ihnen-group .component .textcontent:nth-child(3) {
      width: calc(45% - 20px);
    }
  }
  @media (max-width: 425px) {
    #ihnen-group .component {
      flex-wrap: wrap;
    }
    #ihnen-group .component .textcontent:nth-child(2) {
      width: calc(50% - 20px);
    }
    #ihnen-group .component .textcontent:nth-child(3) {
      width: calc(50% - 20px);
    }
  }
  .impressum #content .container .row, .datenschutz #content .container .row {
    display: flex;
    flex-wrap: wrap;
  }


  .form-group:has(#input_dateiupload) {
    display: none;
  }
  body.karriere-page .form-group:has(#input_dateiupload), body.stelle .form-group:has(#input_dateiupload) {
    display: block;
  }

.karriere-page div#area-4 {
    background-color: #ffff;
}


.collection-more-taetigkeit {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.collection-more-taetigkeit .more-taetigkeit{
    width: calc(33% - 20px);
    margin: unset;
}

.collection-more-taetigkeit .more-taetigkeit .collection_container {
    justify-content: flex-end;
    height: 100%;
    flex: 1;
}
.collection-more-taetigkeit .more-taetigkeit .collection_container .more-taetigkeit-text-wrapper{
    position: relative;
    padding-bottom: 50px;
    height: 100%;
}
.collection-more-taetigkeit .more-taetigkeit .collection_container .collection_link{
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

@media (max-width: 641px) {
    .collection-more-taetigkeit .more-taetigkeit{
        width: 100% !important;
        margin: unset;
    }    
}