/* ============================================================
   TIMELINE (Sonderregel, muss vor allem anderen stehen)
   ============================================================ */

.timleine-history {
  hyphens: auto;
}

/* ============================================================
   FONTS
   ============================================================ */

@font-face {
  font-family: "Roboto";
  src: url(../Fonts/Roboto-Regular.ttf);
}

@font-face {
  font-family: "Roboto-Light";
  src: url(../Fonts/Roboto-Light.ttf);
}

@font-face {
  font-family: "Roboto-Medium";
  src: url(../Fonts/Roboto-Medium.ttf);
}


@font-face {
  font-family: "Roboto-Bold";
  src: url(../Fonts/Roboto-Bold.ttf);
}


@font-face {
  font-family: "Roboto-ExtraBold";
  src: url(../Fonts/Roboto-ExtraBold.ttf);
}



@font-face {
  font-family: "Raleway";
  src: url(../Fonts/Raleway-Regular.ttf);
}

@font-face {
  font-family: "Raleway-ExtraBold";
  src: url(../Fonts/Raleway-ExtraBold.ttf);
}

@font-face {
  font-family: "Raleway-Bold";
  src: url(../Fonts/Raleway-Bold.ttf);
}



/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */

:root{
  --primary: #65B32E;
  --secondary: #FFFFFF;
  --tertiary: #6F6F6D;
  --quaternary: #2D2D2B;
  --quinary: #356A2A;
  --accent: #fa8205;
  --bs-body-color: #707070;
  --frame-link-color: var(--secondary);
  --frame-link-hover-color: var(--primary);
  --bs-body-font-family: "Raleway";
  --bs-secondary-rgb: 255, 219, 0;
  --bs-tertiary-rgb: 34, 50, 26;
  --bs-quaternary-rgb: 77, 77, 77;
  --bs-success-rgb: 255, 255, 255;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, .h1{
  color: var(--quaternary);
  font-size: 45px;
  font-family: "Raleway-Bold";
  line-height: 62px;
}

@media (max-width: 576px){
  h1, .h1 {
      font-size: 37px;
      line-height: 55px;
    }
  }

@media (max-width: 400px){
  h1, .h1 {
      hyphens: auto;
    }
  }

h2, .h2{
  color: var(--primary);
  font-size: 25px;
  font-family: "Raleway-Bold";
  line-height: 35px;
}

h2 a {
  text-decoration: none!important;
}  

h3, .h3{
  color: var(--quinary);
  font-size: 25px;
  font-family: "Raleway-Bold";
  line-height: 35px;
}

h4, .h4{
      color: var(--primary);
      font-size: 18px;
      font-family: "Raleway-Bold";
      line-height: 1.5;
}

.h4_dunkelgruen {
  color: var(--quinary);
  font-size: 18px;
  font-family: "Raleway-Bold";
}

.h4_schwarz {
  color: var(--tertiary);
  font-size: 18px;
  font-family: "Roboto";
}

h5, .h5{
    color: var(--quinary);
    font-size: 18px;
    font-family: "Raleway-Bold";
    line-height: 35px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --bs-btn-border-width: 2px;
  --bs-btn-box-shadow: none;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: var(--primary);
  --bs-btn-hover-bg: none;
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-focus-shadow-rgb: 207, 138, 82;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary);
  --bs-btn-active-border-color: var(--primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary);
  --bs-btn-disabled-border-color: var(--primary);
  padding-right: 2rem;
  padding-left: 2rem;
  border-radius: 0px;
  font-family: "Roboto-Medium";
  margin-right: 19px;
  font-size: 16px;
}

.btn-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-bg: none;
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: var(--secondary);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-focus-shadow-rgb: 207, 138, 82;
  --bs-btn-active-color: var(--primary);
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #fff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary);
  --bs-btn-disabled-bg: #fff;
  --bs-btn-disabled-border-color: #fff;
  padding-right: 2rem;
  padding-left: 2rem;
  border-radius: 0px;
  font-family: "Roboto-Medium";
  margin-right: 19px;
  font-size: 16px;
}

.btn-default {
  --bs-btn-color: var(--primary);
  --bs-btn-bg: none;
  --bs-btn-hover-bg: #fff;
  --bs-btn-focus-shadow-rgb: none;
  --bs-btn-active-color: var(--primary);
  --bs-btn-active-bg: #fff;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: var(--primary);
  --bs-btn-disabled-bg: #fff;
  box-shadow: none;
  font-family: "Roboto-Medium";
  margin-right: 19px;
  margin-left: -10px;
  font-size: 16px;
}

.btn-default:after,
.btn-primary:after {
  content: "";
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png);
  background-size: 100% 100%;
  display: inline-block;
  height: 20px;
  width:10px;
  position:relative;
  top:5px;
  left:15px;
}

.btn-default:hover::after, .btn-primary:hover::after, .weiterlesen-first:hover::after {
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2_negativ.png);
}

.card .btn-default:hover::after, .btn-default-woutlines:hover::after {
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png);
}

#c177 .btn-default:hover::after {
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png);
}

.btn-secondary:hover::after {
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png);
}

.btn-secondary:after {
  content: "";
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2_negativ.png);
  background-size: 100% 100%;
  display: inline-block;
  height: 20px;
  width:10px;
  position:relative;
  top:5px;
  left:15px
}

p {
  line-height: 1.8rem;
}

/* ============================================================
   BACKGROUNDS & PANELS
   ============================================================ */
.hintergrund-grau_eins, .hintergrund-grau_zwei, .hintergrund-grau_drei{
    background-color: #F1F1F1;
}

#c175 {
  height: 700px;
}

/* --- Panel Startseite --- */
.card-panel .card-header {
    background: var(--cardpanel-header-background);
    color: var(--primary);
    font-size: 2.4rem!important;
    padding: 0;
    text-align: center;
    border-bottom: #fff;
    }
    .card-panel-default {
      --cardpanel-header-background: #fff;
      --cardpanel-header-color: #000000;
      --cardpanel-border-color: #fff;
    }

#c177 .card-group-element .btn:hover {
  color: #518f25;
}

.card {
  --bs-card-border-radius: 0;
}
/*--------------------------------------------*/

/* --- Icons Startseite --- */

.hintergrund-weiß_zwei .gallery-item img{
width: 120px;
}

.hintergrund-weiß_zwei figure .caption{
    font-size: 1.4rem;
    text-align: center;
    color: var(--primary); 
}



/* ============================================================
   LOGO
   ============================================================ */

.navbar-mainnavigation-brand-image-container {
    position: absolute;
    top: -90px;
    left: 0;
    z-index: 0;
    width: 400px;
    height: 153px;
    background-image: linear-gradient(to bottom, var(--primary), var(--quinary));
    clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 92.5% 100%);
    display: flex;
    align-items: center;
    padding-left: 100px;
    padding-top: 35px;
    padding-bottom: 30px;
}

.navbar-brand-logo {
    height: 86px;
    max-width: 100%;
    width: auto; 
}


.navbar-mainnavigation-brand-image-container .navbar-brand-logo-inverted {
    display: none;
}

@media (min-width: 992px) and (max-width: 1399px){
  .navbar-mainnavigation-brand-image-container {
    width: 332px;
    height: 86px;
  }

  .navbar-brand-logo {
    width: 10rem;
    height: auto;
    max-height: none;
  }

  .navbar-mainnavigation-brand-image-container .navbar-brand-logo-normal {
    display: none;
  }

  .navbar-mainnavigation-brand-image-container .navbar-brand-logo-inverted {
    display: block;
  }
}

@media (max-width: 991px){
  .navbar-mainnavigation-brand-image-container {
    width: 38vw;
    height: 153px;
    top: -91px;
    padding-left: 27px;
    padding-top: 0px;
    padding-bottom: 0px;

  }

  .navbar-brand-logo {
    width: 25vw;
    height: auto;
  }
  .navbar-mainnavigation-brand-image-container .navbar-brand-logo-normal {
    display: block;
  }

  .navbar-mainnavigation-brand-image-container .navbar-brand-logo-inverted {
    display: none;
  }

}

@media (max-width: 500px){
  .navbar-mainnavigation-brand-image-container {
    height: 62px;
    width: 43vw;
    top: 0;
  }

  .navbar-brand-logo {
    width: 30vw;
    height: auto;
  }


  .pfeil-picture{
    top: 262px !important;
  }

  .navbar-mainnavigation-brand-image-container .navbar-brand-logo-normal {
    display: none;
  }

  .navbar-mainnavigation-brand-image-container .navbar-brand-logo-inverted {
    display: block;
  }
}




/* ============================================================
   NAVIGATION / MENÜ
   ============================================================ */
#header{
  height: 100vh;
  position: relative;
}

.header-above{
    height: 93px;
}

#onlineshop{
    color: var(--secondary);
    font-family: 'Roboto';
    font-size: 12px;
}

.icon{
    height: 27.5px;
}

.header-above-content{
    text-align: center;
    margin: 16px;
}

.navbar-mainnavigation .navbar-nav > li > #nav-item-120::before {
    background: none;
    opacity: 0;
}

.navbar-mainnavigation .navbar-nav > li > .nav-link::before {
  color: var(--primary) !important;
  background: var(--primary) !important;
  padding: 3px;
}

.navbar-mainnavigation .navbar-nav > li.show > .nav-link::before, .navbar-mainnavigation .navbar-nav > li.active > .nav-link::before {
  opacity: 1;
  }

  .navbar-mainnavigation .navbar-nav > li > .nav-link:focus::before, .navbar-mainnavigation .navbar-nav > li > .nav-link:hover::before, .navbar-mainnavigation .navbar-nav > li:hover > .nav-link::before {
    opacity: 1;
    }

.navbar-nav .show {
  color: var(--primary)
}

.navbar-nav h3 {
  color: var(--primary);
}

.header-green{
    background-color: var(--primary);
    text-align: center;
    height: 100%;
    width: 183px;
}
.overHeader #content{
  z-index: 100000;
  position: relative;
}

.overHeader .headerKreis, .overHeader .headerKreisText{
  display: flex;
}

#slider-text-0, #slider-text-1{
  bottom: 0;
  font-family: 'Satisfy';
}

#menue-wrapper{
  position: absolute;
  top: 50px;
  left: 0;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 9px rgb(0 0 0 / 30%);
  z-index: 500;
  width: 100%;
  height: 120px;
  display: flex;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: transparent;
  color: var(--primary);
}

#page-header{
  width: 100%;
}


#page-content {
  min-height: 75vh;
  --frame-link-color: var(--primary);
}

#page-content .frame a[class=""]:hover,#page-content .frame a:not([class]):hover {
  color: var(--primary-dark)
}

#p111 #page-content a {
  text-decoration: none;
}

@media (min-width: 1400px){
#page-header .container{
  max-width: 1920px;
  padding:0;
}
}

#menue{
  display: table;
  width: 60%;
  height: calc(100% - 10px);
  margin: 0 7%;
  margin-top: 7px;
}

#menue-inner{
    display: table-row;
    margin: 0;
    padding: 0;
}

.menue-point{
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
  width: 10%;
  height: 100%;
  color: #4d4c4c;
  transition: all 0.5s;
  font-weight: 600;
}
  
.menue-infos{
  display: flex;
  width: 1094px;
  background-color: var(--accent);
  position: absolute;
  right: 0;
  top: -25px;
  height: 50px;
  align-items: center;
  z-index: 100;
  box-shadow: 0px 0px 9px rgb(0 0 0 / 30%);
}

.menue-infos-col{
  display: flex;
  padding: 0 40px;
  color: #fff;
  align-items: center;
}

.menue-infos-col a{
  color: #fff !important;
  text-decoration: none;
}

.menue-infos-col .menue-infos-icon{
  margin-right: 10px;
  height: 22px;
}

.menue-infos-col .menue-infos-icon svg{
  height: 22px;
}

.menue-infos-col .menue-infos-sm{
  margin-right: 20px;
  height: 27px;
}

.menue-infos-col .menue-infos-sm img{
  height: 27px;
}

#logo {
  height: 80%;
  display: flex;
  width: 300px;
  justify-content: center;
  position: relative;
  left: 5%;
  top: 10%;
}

#logo img {
  display: block;
  height: 100%;
}

#logo .logo1 {
  margin-right: 50px;
}

.menue-point-text{
  position: relative;
  z-index: 100;
font-size: 18px;
}

.menue-point-border, .umenue-point-border{
width: 0%;
height: 1px;
background-color: var(--accent);
transition: width 0.5s;
margin: 0 auto;
}

.menue-point:hover .menue-point-border, .umenue-point:hover .umenue-point-border, .menue-point.active .menue-point-border, .umenue-point.active .umenue-point-border {
  width: 60%;
}

.menue-point:hover, .menue-point.active{
color: var(--accent);
}

.menue-point:hover .umenue{
  max-height: 400px;
  opacity: 1;
  top: 100%;
}

.menue-point a{
  text-decoration: none !important;
}

.umenue-point-text{
  color: #4d4c4c;
  font-weight: 500;
  padding: 10px;
}

body,html{
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: 'Roboto';
    letter-spacing: 1;
    color: var(--tertiary);
    line-height: 27px;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  
p{
  margin-bottom: 0rem;
}

  @media (min-width: 992px){
  .navbar-mainnavigation > .container > .collapse > .navbar-nav:last-child{
    margin-right: 2rem;
  }
}

.nav-item{
  border-right: 1px solid #eeeeee;
  font-family: 'Roboto';
}

li.nav-item:last-child, li.nav-item:nth-child(6) {
    border: none;
}

li.nav-item:last-child {
  margin-right: -4px;
}

li.nav-item > ul:nth-child(2) {
  width: 100vw;
  background-color: rgba(111,111,109,0.85);
  color: var(--secondary);
  border-radius: 0px;
  z-index: 10000;
  padding-bottom: 4rem;
}

ul .dropdown-menu a{
  color: var(--secondary);
  border-top: 1px solid white;
  width: 20rem;
  margin-left: 84rem;
  padding-left: 0px !important;
}

ul .dropdown-menu li:first-of-type a{
  border-top: none;
}

ul .dropdown-menu li{
  left: 61vw;
  position: relative;
}

ul.dropdown-menu > li > ul.dropdown-menu li{
  position: unset;
}

ul .dropdown-menu h3{
  left: 61vw;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1rem;
  margin-top: 1.5rem;
}

ul .dropdown-menu li:last-child a{
  border-bottom: 1px solid white;
}

ul.navbar-nav li:nth-child(1) ul{
  left: 0px;
}

ul.navbar-nav li:nth-child(2) ul{
  left: 0px;;
}

@media (max-width: 991px) {
  .navbar-toggler {
    float: right;
    position: absolute;
    right: 20px;
  }

  .tx-indexedsearch-searchbox {
    display: none;
  }

  #mainnavigation {
    background-color: var(--secondary);
    top: 61px;
    z-index: 300;
    position: relative;
  }

  ul.show > h3:nth-child(1) {
    display: none;
  }

  ul .dropdown-menu li {
    left: 4rem;
  }

  li.nav-item > ul:nth-child(2) {
    width: unset;
    height: unset;
    background-color: unset;
  }
}

@media (max-width: 500px) {
  .header-above {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1274px) {
  #tx-indexedsearch-searchbox-sword {
    right: 350px !important;
    width: 300px !important;
  }

  #tx-indexedsearch-searchbox-button-submit {
    right: 345px !important;
  }
}

/* ============================================================
   CAROUSEL / SLIDER
   ============================================================ */
.carousel-fullscreen .carousel-content {
  width: 100%;
}



@media (min-width: 576px) and (max-width: 767px){
    .carousel-fullscreen .carousel .carousel-content-inner {
        max-width: 680px;
    }
}



/* ============================================================
   ANSPRECHPARTNER
   ============================================================ */
.ap_mit_bild{
    padding: 1rem;
    box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    margin: 1rem;
}

@media (max-width: 1100px){
  .ap_mit_bild:first-child, .ap_mit_bild_personal:first-child, .ap_mit_bild_einzel:first-child, .ap_mit_bild_full:first-child {
    margin-top: 4rem !important;
  }
}

@media (max-width: 767px){
  .ap_mit_bild {
    margin: 0;
    padding-bottom: 0;
    padding-top: 2rem !important;
  }
  .ap_mit_bild:first-child, .ap_mit_bild_personal:first-child, .ap_mit_bild_einzel:first-child, .ap_mit_bild_full:first-child {
    margin-top: 4rem !important;
  }
}

@media (max-width: 576px){
  .ap_mit_bild_personal:first-child {
    margin-top: 1rem !important;
  }
  .ap_mit_bild:first-child {
    margin-top: 0rem !important;
  }
}

@media (min-width: 768px) and (max-width: 1100px){
   .ap_mit_bild, .ap_mit_bild_personal {
    margin-top: 2rem !important;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.ap_mit_bild_einzel {
  margin: 1.5rem 0 1.5rem 0;
}

.tt_address_list .col-4{
  width:31%; 
}

.ansprechpartner .img-thumbnail{
  border-radius: 0 !important;
}

.ansprechpartner_telefon, .ansprechpartner_email, .ansprechpartner_mobil, .ansprechpartner_fax {
  text-decoration: none !important;
}

#c287 .btn-primary:after {   
    left: 0.1rem;
}

@media (max-width:1100px){
.contentcontainer .contentcontainer-column[data-container-column="right"] .tt_address_list .col-md-12 {
  padding: 0;
}
}

/* ============================================================
   FOOTER
   ============================================================ */




.footer-section-content {
    background-color: var(--quaternary);
    --frame-color: #ffffff;
    --frame-background: #313131;
    --frame-link-color: #fff;
    --frame-link-hover-color: #fff;
}
.footer-section-meta {
  background-color: var(--tertiary);
  --frame-color: #ffffff;
  --frame-background: #212121;
  --frame-link-color: #fff;
  --frame-link-hover-color: #fff;
}


.textpic-left > div:nth-child(1) {
  width: 180px;
  margin: auto;
}

.textpic-left {
  text-align: center;
}


#p124 .frame-container-default, #p120 .frame-container-default, #p111 .frame-container-default, .backendlayout-standortansicht .frame-container-default{
    max-width: 100vw;
}

@media (min-width: 576px) and (max-width: 1300px){
  .carousel-fullscreen .carousel-fullscreen .item {
    height: 600px;
  }

  .carousel-fullscreen .carousel-text-inner {
    left: unset;
  }

  .carousel-fullscreen .carousel-indicators {
    left: 0px;
  }

  .carousel-fullscreen .carousel-item-bodytext > h1 {
    font-size: 74px;
    line-height: 1;
  }    

  .carousel-fullscreen .carousel-item-bodytext > p {
    font-size: 20px;
    line-height: 26px;
  }

  .carousel-fullscreen div.carousel-content > div > div > div {
    top: unset;
    margin-left: 3rem;
  }

  .carousel-fullscreen .carousel-indicators {
    margin-left: 0px;
  }
}

@media(max-width: 575px){
  .carousel-fullscreen .carousel-fullscreen .item {
    height: 400px;
  }

  .carousel-fullscreen .carousel-text-inner {
    left: unset;
  }

  .carousel-fullscreen .carousel-indicators {
    left: 0px;
    bottom: 17px;
  }

  .carousel-fullscreen .carousel-item-bodytext > h1 {
    font-size: 37px;
    line-height: 1;
    white-space: unset;
  }    

  .carousel-fullscreen .carousel-item-bodytext p > a:last-child {
    display: none;
  }

  .carousel-fullscreen .carousel-item-bodytext p > a:first-child {
    padding-right: 2rem;
        padding-left: 2rem;
  }

  .carousel-fullscreen .carousel-item-bodytext > p {
    font-size: 14px;
    line-height: 26px;
    white-space: unset !important;
  }

  .carousel-fullscreen .carousel-item-bodytext > p:nth-of-type(4) {
    white-space: nowrap !important;
  }

  .carousel-fullscreen .carousel-item-bodytext > p > br {
    display: none;
  }

  .carousel-fullscreen div.carousel-content > div > div > div {
    top: unset;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .carousel-fullscreen .carousel-indicators {
    margin-left: 0px;
  }

  .carousel-fullscreen .btn-primary {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .carousel-fullscreen .btn-secondary {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .carousel-fullscreen .carousel .carousel-item {
    padding-left: 0px;
  }
}

#page-content .btn {
  text-decoration: none;
}


.carousel-content-inner {
  left: 0px;
}

@media (min-width: 0px) {
  #c175 .frame-container-default {
    max-width: 1920px;
    width: unset;
  }

.carousel-indicators {
    opacity: 1 !important;
    position: unset;
    margin-top: 1rem;
}

.standortansicht_ohnebild .carousel-indicators {
   justify-content: center;
   bottom: 5%;
   left: 0;
}

@media (min-width: 768px) {
  .standortansicht_ohnebild .carousel-small .item,.standortansicht .carousel-small .item {
      height: 600px
  }
}

.standortansicht_ohnebild .organisation,.standortansicht .organisation {
  display: none;
}
 
.carousel-indicators [data-bs-target] {
    background-color: var(--primary);
}

  #carousel-165 {
    max-height: 825px;
  }
}

#p124 .frame-container, #p120 .frame-container, #p111 .frame-container, .backendlayout-standortansicht .frame-container-default {
   --bs-gutter-x: 0; /* Todoo für Slider muss das weg */
}

.carousel-fullscreen {
  padding-top: 0px;
  padding-bottom: 0px;
}

.border-bottom {
  height: 87px;
  border-bottom: 1px solid;
}

#nav-item-120 {
    color: var(--primary);
    border: 2px solid var(--primary);
    width: 152px;
    text-align: center;
    height: 45px;
    top: 9px;
    margin-left: 12px;
}

#nav-item-120:hover {
  color: var(--secondary);
  background-color: var(--primary);
  border: 2px solid var(--primary);
  width: 152px;
  text-align: center;
  height: 45px;
  text-decoration: none;
}

li.nav-item:nth-child(7) {
    text-align: center;
}

#nav-item-120 > span:nth-child(1) {
    text-align: center;
    right: -24px;
    position: relative;
}
  
  

#c181 {
  background-color: var(--secondary);
  transform: skew(-11deg);
  padding: 7px;
  width: 45vw;
}

#c181 > div:nth-child(1) {
  transform: skew(11deg);
  text-align: center;
}

#c192 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > figure:nth-child(1) > picture:nth-child(1) > img:nth-child(7){
  width: auto !important;
  height: auto !important;
}

.carousel-item-header {
    display: none;
}

.carousel-item-bodytext {
  font-size: 25px;
}

.carousel-item-bodytext > h1 {
  font-size: 96px;
  line-height: 106px;
}

.carousel-item-bodytext > p {
  font-family: "Roboto";
  font-size: 1.5rem;
  line-height: 40px;
}

.carousel-text-inner {
    left: 170px;
    position:absolute;
}

.carousel-fullscreen .carousel-item-bodytext > p:nth-child(3) {
  margin-top: -1rem;
}

button.carousel-control:nth-child(3), button.carousel-control:nth-child(4) {
    display: none;
}

.carousel-control-prev, .carousel-control-next {
  text-decoration: none !important;
}
  
.carousel-indicators > li {
    border-radius: 25px;
    height: 0px !important;
    background-clip: unset !important;
    width: 20px !important;
}

div.carousel-content > div > div > div {
    top: -56px;
    position: relative;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--tertiary);
    opacity: 1;
    margin-left: 8px;
}

.carousel-indicators .active {
    opacity:1;
    background-color:var(--primary) !important;
}
  


/* ============================================================
   CARDGROUP
   ============================================================ */

.card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#c177 > div > div > div > div > div > div > div > .card-img-top {
  height: 110px;
  background-image:linear-gradient(to bottom, var(--primary), var(--quinary));
  width: 141px;
  text-align: center;
  clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 88.5% 100%);
}

#c177 > div > div > div > div > div.card-group-element:nth-child(1) {
  max-width: 1232px;
  margin: auto;
}

#c177 > div > div > div > div > div > .card-group-element-item {
  width: 374px;
  height: 347px;
}

#c177 > div > div > div > div > div.card-group-element > div > div > div:nth-child(1) > a:nth-child(1) > picture:nth-child(1) > img:nth-child(7) {
  height: 78px;
  width: 68px;
  position: relative;
  top: 14%;
  left: -3%;
}

.card .card-title {
  color: var(--quinary);
}

.card a:not(.btn) {
  color: var(--quinary);
}


#mainnavigation {
  line-height: 47px;
  width: 100%;
}
 
#page-header > div:nth-child(1) {
    height: 61px;
    width: 100%;
}

.right{
    float: right;
}

.space{
    margin-left: 35px;
}

#c177 > div > div > div > div > div.card-group-element:nth-child(1) > div > div:nth-child(1) > div > h3 > a {
  color: var(--quinary);
  }

  #c177 > div > div > div > div > div.card-group-element:nth-child(1) > div > div:nth-child(1) > div > p{
    color: var(--tertiary);
    font-family: "Roboto";
    font-size: 17px;
}
  
#c166 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > header:nth-child(1) > h2:nth-child(1) {
  position: relative;
  top: 25px;
}
    

h3.text-center:nth-child(2) {
  position: relative;
  top: -65px;
}

#c222 h3.text-center:nth-child(2) {
  position: absolute;
  top: -47px;
}

@media (max-width: 396px){
  #c222 h3.text-center:nth-child(2) {
    top: 2px;
  }
}

#c172 > div:nth-child(1) {
  margin-top: 5%;
}

#c199 {
    margin-top: -76px;
}

@media(max-width:396px){
  h3.text-center:nth-child(2) > span:nth-child(1) {
    top: -50px;
    position: relative;
  }
  
}

@media (max-width: 768px) {
  #frame-backgroundimage-c175 {
    background-image: none !important;
    background-color: var(--quaternary);
  }
}

@media(min-width: 769px){
  #c186 {
    max-width: 44vw;
  }

}

#p114 #page-content a, #p116 #page-content a, #p118 #page-content a, #p127 #page-content a, #p246 #page-content a {
  text-decoration: none !important;
}

  

/* ============================================================
   FOOTER META
   ============================================================ */
.footer-section {
    background-color: #1d1d1d;
    color: var(--secondary);
    padding: 20px 0;
    font-family: 'Roboto';
    font-size: 16px;
    padding: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 72px 133px 55px 133px;
    gap: 20px;
}

.footer-left {
  flex: 0 0 auto;
}

.footer-left .logo {
    max-width: 304px;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-details {
  display: flex;
  gap: 40px;
}

/* Telefonnummer + Mail */
.right-footer, .left {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ehrenamt {
  flex: 0 0 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.footer-right {
  flex: 0 0 55%;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-nav a, .footer-links a, .footer-login a {
    color: var(--secondary);
    text-decoration: none;
    margin-right: 15px;
}

.footer-social a {
    margin-right: 10px;
    color: var(--secondary);    
    font-size: 12px;
}

.footer-social img {
    width: 29px;
    height: 29px;
}

.footer-login a {
    font-weight: bold;
}

@media (max-width: 1854px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem 4rem 2rem;
  }

.ehrenamt {
  justify-content: center;
  margin-bottom: 25px;
}
}

@media (max-width: 1400px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem 4rem 2rem;
  }

  .uu .uu-header .uu-title {
    padding: 0 3rem !important;
    font-size: 1.5rem !important;
    line-height: 48px !important;
  }
}

@media (max-width: 945px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem 4rem 2rem;
  }
  .ehrenamt {
    justify-content: flex-start;
  }
  .footer-social {
    justify-content: unset;
  }
  .social-media-icons {
    flex: 0 0 100%;
    margin-bottom: 25px;
  }
}

@media (max-width: 500px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .company-details {
    flex-direction: column;
    gap: 8px;
  }

  .left, .right-footer {
    gap: 4px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    flex: unset;
    gap: 30px;
  }

  .footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    order: 1;
  }

  .ehrenamt {
    order: 2;
    margin-bottom: 5px;
  }

  .social-media-icons {
    order: 3;
    margin-bottom: 5px;
  }
  
  .heidesand-copyright {
    order: 4;
  }
}

#login{
  height: 27.5px;
  margin-right: 5px;
}

.color-primary{
  color: var(--primary) !important;
}

.headline{
  color: var(--primary);
  font-family: 'Roboto-Medium';
}

.Roboto-Medium{
  font-family: 'Roboto-Medium';
}

.right-border{
  border-right: 2px solid;
  padding-right: 20px;
}

.company-info{
  margin-top: 0;
  line-height: 22px;
}

.copyright{
  font-size: 14px;
  text-decoration: none !important;
  font-family: 'Roboto-Light';
  opacity: 80%;
  margin-right: 0 !important;
}

.footer-links a:last-child, .social-media-icons a:last-child {
    margin-right: 0 !important;
}

#footer{
  display: none;
}

@media (max-width: 1540px){
  .logo{
    width: 250px;
  }
}

#c168 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > header:nth-child(1) > h2:nth-child(1) {
  color: var(--secondary);
  }

/* ============================================================
   FORMULAR
   ============================================================ */

#test123-183 > div > .form-label {
  display: none;
}

#test123-183 > h2:nth-child(2) {
  display: none;
}

#c181 {
  color: var(--tertiary);
  line-height: 1.8;
  font-family: "Roboto";
}

#test123-183-multicheckbox-1-0 {
  margin-top: 5px;
}

#test123-183-text-1 {
  max-width: 55%;
  margin: auto;
  margin-right: 31%;
}

#test123-183-multicheckbox-1 > .form-check {
  margin-right: 24%;
}

#test123-183 > div > nav > .btn-toolbar {
  max-height: 10px;
}

#test123-183 > div > nav > .btn-toolbar > div > span > button.btn {
  top: -93px;
  left: 31vw;
  margin-left: 8px;
}

#c173 > div > div > div > div > div > div > .image > picture:nth-child(1) > img:nth-child(7) {
  left: 18px;
  width: 219px;
  height: 490px;
  bottom: -39px;
  position: relative;
}

#c182 {
  margin-top: 23px;
}btn-toolbarimage

#c197 {
  margin: -54px;
}

#c182 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > header:nth-child(1) > h3:nth-child(2) > span:nth-child(1) {
    color: var(--quinary);
}
  
#c181 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
    margin-top: 20px;
    margin-bottom: 20px;
}
 

@media(max-width: 1100px){
  #c173 {
    display: none;
  }

  #c181 {
    transform: unset;
    width: unset;
    margin-top: unset;
  }

  #c181 > div:nth-child(1) {
    transform: unset;
  }

  .contentcontainer {
    display: block;
}
}

@media (min-width: 768px) and (max-width: 1100px) {
  #c181 {
      width: 84vw !important;
      margin: auto;
  }

}

@media(max-width: 767px){
  #c173 {
    display: none;
  }

  #c181 {
    transform: unset;
    width: unset;
    margin-top: unset;
  }

  #c181 > div:nth-child(1) {
    transform: unset;
  }

  #test123-183 > div > nav > .btn-toolbar > div > span > button.btn {
    right: unset;
    left: 68vw;
  }

  #test123-183-multicheckbox-1 > .form-check {
    margin-right: unset;
  }
  
  #c174 .contentcontainer {
    gap: unset;
  }
}

@media(max-width: 424px){
  #UeberUnsKontaktBox a h3 {
    width: min-content;
  }
  #test123-183 > div > nav > .btn-toolbar > div > span > button.btn {
    top: -119px;
  }

  #test123-183-text-1 {
    margin: unset;
    margin-right: unset;
    margin-left: 2rem;
  }

  #test123-183 > div > nav > .btn-toolbar > div > span > button.btn {
    left: 60vw !important;
  }

  #c183 .btn-primary {
    padding-right: 1rem;
    padding-left: 1rem;
  }

}

@media(min-width: 768px) and (max-width: 1650px){
  #c173 > div > div > div > div > div > div > .image > picture:nth-child(1) > img:nth-child(7) {
    position: unset;
  }

  #c181 {
    width: 56vw;
  }

  #test123-183 > div > nav > .btn-toolbar > div > span > button.btn {
    top: -119px;
    left: 32vw;
  }

  #c183 .btn-primary {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  #test123-183-text-1 {
    margin: unset;
  }
}

@media(min-width: 991px) and (max-width: 1650px){
  #test123-183-text-1 {
    margin: auto;
    margin-right: 31%;
  }

  #test123-183 > div > nav > .btn-toolbar > div > span > button.btn {
    top: -93px;
    left: 39vw;
  }
}

#c821 #c897 {
  padding-top: 0 !important;
  padding-left: 0.5rem !important;
  top: -1rem;
}

#c821 #preisanfrageEnergie-821-fieldset-1 .form-group {
  margin-bottom: 0;
}

#c821 .form-check {
  margin-top: 2rem;
}

#c821 .clearfix .frame {
  padding: 30px 0 0 0;
}

#c821 legend {
  margin-bottom: 0;
}


/* ============================================================
   MARKTTIPPS / NEWS
   ============================================================ */

#c175 > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
  margin-left: 14%;
  margin-right: 14%;
}

#c186 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
  font-size: 1.7rem;
  line-height: 4rem;
  max-width: fit-content;
}

@media (max-width: 576px){
  #c186 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
    line-height: 2rem;
    padding-top: 1rem;
  }
}

#news-container-186 > ul > div {
  border-bottom: 1px var(--tertiary) solid;
}

#news-container-186 > ul > div:nth-child(5) {
  border-bottom: none;
}

#c168 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > header:nth-child(1) {
  margin-top: 4rem;
}

#c168 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > header:nth-child(1) > h2:nth-child(1) {
  position: relative;
  bottom: -25px;
}

#c168 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > header:nth-child(1) > h3:nth-child(2) {
  position: relative;
  top: -65px;
}

#news-container-186 > ul > div > a > div > div {
    border: var(--primary) solid 2px;
    text-align: center;
    height: 45px;
    width: 45px;
    margin-top: 14px;
}

#news-container-186 > ul > div > a:hover {
    color: var(--secondary) !important;
    text-decoration: none;
}
  
#news-container-186 > ul > div > a > div > div > p {
    margin-top: 0.2rem;
    color: var(--primary);
}

#news-container-186 > ul > div > a:hover > div > div > p {
  color: var(--secondary);
}

#news-container-186 > ul > div > a:hover > div > div {
    background-color: var(--primary);
}

#news-container-186 > ul > div > a > div {
    font-family:"Raleway" ;
    font-size: 22px;
    font-weight: bold;
  }
 
  .weiterlesen-first:after {
    content: "";
    background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png);
    background-size: 100% 100%;
    display: inline-block;
    height: 20px;
    width:10px;
    position:relative;
    top:5px;
    left:15px
  }

  .weiterlesen:after {
    content: "";
    background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png);
    background-size: 100% 100%;
    display: inline-block;
    height: 20px;
    width:10px;
    position:relative;
    top:5px;
    left:15px
  }

@media(max-width: 1000px){
  #c175 {
    height: unset !important;
  }

  .heidesand-map-wrapper .btn-primary-custom {
    top: 24px;
    right: 0px;
  }

}

@media(max-width: 768px){
  #c175 {
    height: unset !important;
  }

  .heidesand-map-wrapper .btn-primary-custom {
    top: 24px;
    right: 0px;
  }
}

@media(max-width: 576px){
  #c175 {
    height: unset !important;
  }

  .heidesand-map-wrapper .btn-primary-custom {
    top: 24px;
    right: 0px;
  }

}

/* ============================================================
   MIETMASCHINEN
   ============================================================ */

#c179 > div > div > div > div > div.card-group-element > div > div > div:nth-child(2) {
    background-image: linear-gradient(to bottom, var(--primary), var(--quinary));
    color: var(--secondary);
    font-size: 20px;
    font-weight: bold;
}

#c179 > div > div > div > div > div.card-group-element > div > div > div:nth-child(2) > h3 {
    display: none;
}

#c179 > div > div > div > div > div.card-group-element > div > div > div:nth-child(2) > p > a {
    color: var(--secondary);
}

#c179 > div > div > div > div > div.card-group-element > div > div > div:nth-child(2) > p > a:hover {
    color: var(--secondary);
    text-decoration: none;
}
  
#c179 > div > div > div > div > div.card-group-element > div > div > div:nth-child(2) {
    height: 73px;
}

#c179 > div > div > div > div > div.card-group-element > div > div > div:nth-child(2) > .text-right > a:nth-child(1) {
    position: relative;
    border: var(--secondary) solid 1px;
    height: 45px;
    display: inline-block;
    width: 45px;
    text-align: center;
    padding-top: 7px;
    margin-bottom: 112px;
    top: -33px;
}

#c179 > div > div > div > div > div.card-group-element > div{
    width: 374px;
}

#c179 > div > div > div > div > div.card-group-element > div > div > div:nth-child(1) > picture > img{
    width: 374px;
    height: 234px;
}

/* ============================================================
   MAP / LEAFLET
   ============================================================ */
#c184{
  padding-top: 0pc;
  padding-bottom: 0px;
}

#ttaddress__map {
  height: 450px;
}

.Map_Kontaktdaten {
  font-size: 14px;
}

.custom-map-name {
  margin-bottom: 0.4rem !important;
}

.Map_Kontaktdaten .item .grey a {
color: var(--tertiary) !important;
}

.Map_Kontaktdaten .item .grey a:hover {
  color: var(--bs-link-hover-color) !important;
  }

.leaflet-tile-pane {
  filter: grayscale(100%);
}

.leaflet-container a {
  color: var(--primary) !important;
}

.leaflet-container a:hover {
  color: var(--secondary) !important;
}

.leaflet-popup-tip-container {
    display: none;
}

.leaflet-popup-close-button {
    display: none;
}
  
.leaflet-popup-content-wrapper {
    height: 377px;
    width: 451px;
    border-radius: 0px !important;
    background-color: #F1F1F1 !important;
    box-shadow: none !important;
}

.leaflet-popup {
}

@media (min-width: 1000px) and (max-width: 1400px){
}

.leaflet-popup-content .Map_Kontaktdaten {
  width: 420px !important;
}  
  
  

  

/* ============================================================
   NEWS
   ============================================================ */

.newsList{
  position: absolute;
  right: 0px;
  width: 54%;
}

div.newsList:nth-child(3) {
  top: 220px;
}

div.newsList:nth-child(4) {
  top: 440px;
}

.firstItem{
  width: 40%;
  height: 600px;
  margin-left: 19%;
}

.firstItem .header {
  padding-top: 1.5rem;
}

@media (min-width: 1201px){
  .firstItem .header {
  max-width: 480px;
}
}

@media (min-width: 1201px){
    .firstItem .header h4 a {
        font-size: 45px;
        color: var(--quaternary) !important;
    }
}
.news-img-wrap > a > img{
  height: 168px;
  width: auto;
}

@media (max-width: 576px){
  .news-img-wrap > a > img {
  margin-bottom: 1.2rem;
  }
}

.first > div >div > a > img{
  height: 300px;
  width: auto;
  max-width: 480px;
  display: block;
}

@media (max-width: 1200px){
  .first > div >div > a > img{
    max-width: 269px;
  }
}

.first > div:nth-child(1) {
  width: 455px;
}


.border-news {
  width: 60%;
  margin-top: 25px;
  margin-left: 20px;
  border-bottom: 1px solid #dbdbda;
}

#p147 .border-news, #p268 .border-news {
  width: 90%;
  margin-left: 0 20px 0 20px;
}

div.newsList:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) {
  display: none;
}

time{
  color: var(--primary);
  font-family: 'Raleway-Bold';
}

.header > h4 > a{
  color: var(--quinary) !important;
  font-family: 'Raleway-Bold';
}

.header > h4 > a:hover{
  text-decoration: none;
}

.header > h4{
  font-size: 1.3rem !important;
  font-weight: unset !important;
}

div.newsList:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2),div.newsList:nth-child(3) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2),div.newsList:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
  width: 40%;
}

.teaser-text{
  color: var(--tertiary);
  font-family: "Roboto";
  font-size: 18px;
  max-width: 480px;
}

@media (min-width: 504px){
.newsList .news-list-item .aktuelles {
  padding-left: 2.5rem;
}
}

.weiterlesen{
  color: var(--primary);
  position: absolute;
  font-family: 'Roboto-Medium';
  bottom: 24px;
}

.weiterlesen-first{
  border: var(--primary) solid 2px;
  text-align: center;
  margin-top: 7px;
  padding: 0.5rem 2rem 0.5rem 2rem;
  position: absolute;
  bottom: 0px;
  font-family: 'Roboto-Medium';
}

.weiterlesen-first:hover{
  border: var(--primary) solid 1px;
  color: var(--secondary);
  text-decoration: none;
  background-color: var(--primary);
}

div.newsList:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > a:nth-child(4) {
  bottom: 0px;
}

.first > div:nth-child(2) > div:nth-child(2) > h4:nth-child(1) > a:nth-child(1) > span:nth-child(1) {
  font-size: 40px;
  color: black;
}

@media (min-width:1201px){
#p111 #c178 .first .col-xxl-9 {
  width: 70%;
}
}

.news-single .news-img-wrap {
  padding-bottom: 1.3rem;
}

.news-detail-text h3 {
  margin-top: 0.2rem;
}

.news-detail-text {
  margin-top: 1rem;
}

div.NewsListe:last-child .border-news {
 display: none;
}

#p147 div.NewsListe:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) {
    display: none;
}

#p268 div.NewsListe:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) {
    display: none;
}

@media(max-width: 500px){
  #c178 .newsList {
    position: unset;
    width: unset;
  }

  #c178 .border-news {
    border-bottom: none;
    width: 100% !important;
  }

  #c178 div.newsList > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
    margin: auto;
  }

  #c178 div.newsList > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
    text-align: center;
    margin: auto;
    width: 90%;
  }

  #c178 .row > * {
    width: unset;
  }

  #c178 .first > div > div > a > img {
    height: 168px;
  }

  #c178 .firstItem {
    height: unset;
    margin-left: 0px;
    width: unset;
  }

  #c178 .first > div:nth-child(2) {
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
    width: 90%;
  }

  #c178 .firstItem{
    margin: auto;
  }

  #c178  .first > div:nth-child(1) {
    margin: auto;
  }

  #c178 .weiterlesen {
    position: unset;
  }

  #c178 .weiterlesen-first {
    border: none;
    text-align: center;
    margin-top: unset;
    padding: unset;
    position: unset;
    font-family: 'Roboto-Medium';
  }

  #c178 .weiterlesen-first:hover {
    color: var(--bs-link-hover-color);
    text-decoration: underline;
    background-color:unset;
  }

  #c178 .first > div:nth-child(2) > div:nth-child(2) > h4:nth-child(1) > a:nth-child(1) > span:nth-child(1) {
    font-size: 1.3rem !important;
    font-weight: unset !important;
    color: var(--quinary) !important;
  }
  #c178 .news-list-item .news-img-wrap {
    width: unset !important;
}
}

@media(min-width: 501px) and (max-width: 1200px){
  #c178 .newsList {
    position: unset;
    width: unset;
  }

  #c178 .border-news {
    border-bottom: none;
    width: 100% !important;
  }

  #c178 div.newsList > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
    margin: auto;
    margin-right: 0px;
  }

  #c178 div.newsList > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
    margin: auto;
    width: 50vw;
    margin-left: 0px;
  }

  #c178 .row > * {
    width: unset;
  }

  #c178 .first > div > div > a > img {
    height: 168px;
  }

  #c178 .firstItem {
    height: unset;
    margin-left: 0px;
    width: unset;
    margin-bottom: 25px !important;
  }

  #c178 .first > div:nth-child(2) {
    margin: auto;
    margin-bottom: 20px;
    width: 50vw;
    padding-left: 2.5rem;
  }

  #c178 .firstItem{
    margin: auto;
  }

  #c178  .first > div:nth-child(1) {
    margin: auto;
  }

  #c178 .weiterlesen {
    position: unset;
  }

  #c178 .weiterlesen-first {
    border: none;
    text-align: center;
    margin-top: unset;
    padding: unset;
    position: unset;
    font-family: 'Roboto-Medium';
  }

  #c178 .weiterlesen-first:hover {
    color: var(--bs-link-hover-color);
    text-decoration: underline;
    background-color:unset;
  }

  #c178 .first > div:nth-child(2) > div:nth-child(2) > h4:nth-child(1) > a:nth-child(1) > span:nth-child(1) {
    font-size: 1.3rem !important;
    font-weight: unset !important;
    color: var(--quinary) !important;
  }
}

@media(min-width: 1201px) and (max-width: 1800px){
  #c178 .firstItem {
    margin-left: 7%;
  }

  #c178 .newsList {
    right: -46px;
  }

  #c178 .col-md-3 {
    width: unset;
  }

  div.newsList > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
    width: 50% !important;
  }

  #c178 .firstItem {
  margin-left: 9vw;
  }
  .newsList {
  right: -46px;
  }
}

@media(min-width: 1500px) and (max-width: 1800px){

  #c178 .firstItem {
    margin-left: 13vw;
  }

  #c178 .newsList {
    right: 1vw;
  }

}



/* ============================================================
   SEARCHBAR
   ============================================================ */

#tx-indexedsearch-searchbox-button-submit {
  top: 27px;
  position: absolute;
  right: 465px;
  height: 37px;
  width: 42px;
  background-image: url(/fileadmin/Dateiverzeichnis/Icons/Icon_Suche.png);
  background-color: var(--primary);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border: none;
  background-position: center;
}

#tx_indexedsearch > fieldset:nth-child(3) > legend:nth-child(1) {
  display: none;
}

.tx-indexedsearch-rules {
  display: none;
}

.tx-indexedsearch-form > label:nth-child(1) {
  display: none;
}

#tx-indexedsearch-searchbox-sword {
  top: 27px;
  position: absolute;
  right: 465px;
  width: 444px;
  height: 37px;
  border: 1px solid #DDDDDD;
  color: var(--tertiary);
  outline: none;
  padding-left: 0.5rem;
}

#tx-indexedsearch-searchbox-sword input[type="text"] {
  font-family: "Roboto";
}

div.right .media {
  display: none;
}

div.right .pagination {
  display: none;
}

div.right:nth-child(3) > ul:nth-child(14) {
  display: none;
}

div.right:nth-child(3) > p:nth-child(3) {
  display: none;
}

div.right:nth-child(3) > p:nth-child(2) {
  display: none;
}

div.right:nth-child(3) > div:nth-child(2) {
  display: none;
}

#c207 a{
  color: var(--primary);
}

#c207{
  color: var(--tertiary);
  background-color: #F1F1F1 ;
  margin: 4rem;
  padding: 2rem;
}

#c207 .media{
  margin-bottom: 1.2rem;
}

#c207 #tx-indexedsearch-searchbox-button-submit {
  right: unset;
  top: 0px;
  left: 430px;
}

#c207 #tx-indexedsearch-searchbox-sword {
  position: unset;
}

#c207 > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) {
  margin-top: 1rem;
}

.carousel-container{
  height: 235px;
  background-size: cover;
  background-repeat: no-repeat;
}

.carousel-container > h1{
  position: relative;
  top: 3.5rem;
}

.carousel-container > h2{
  top: 4rem;
  position: relative;
}

.carousel-container > h1.no_breadcrumb{
    top: 5rem;
    position: relative;
}

#c220 > div > div > div > div > div > div > figure > picture > img{
    position: unset;
    width: auto;
    height: auto;
}

 #c223 {
  max-width: 1554px;
  margin: auto;
  background-color: #F1F1F1;
  padding: 6rem 7rem 6rem 7rem;
}

#c223 .kontaktformular-223-multicheckbox-1 {
  display: none;
}
#kontaktformular-223-textarea-2 {
  height: 312px;
  min-height: 134px;
}

.form-container h2 {
  padding-bottom: 1rem;
}

.form-container {
  color: var(--tertiary);
}

.form-container ::placeholder{
  color: #6F6F6D99;
}

.form-container .form-control {
  color: #6F6F6D99;
  border-radius: 0;
}

#c223 .row {
  position: relative;
}

#c223 label[for=kontaktformular-223-checkbox-3] {
  position: absolute;
  top: 12.7rem;
}

#c223 label[for=kontaktformular-223-checkbox-4] {
  position: absolute;
  top: 18rem;
}

#c223 #c897 { 
  padding: 0; 
  padding-left: 1.6rem !important;
  position: absolute;
  top: -2.3em;  
}

#c223 .error .form-text{
  position: absolute;
  top: 15.6rem;
  left: 19rem;
}

#c219 {
  margin-left: 20%;
  margin-right: 20%;
  margin: 1% 16%;
}

@media (max-width: 1000px){
  #c219 .contentcontainer {
    grid-template-columns: auto;
  }

  #c219 div.contentcontainer-column:nth-child(1) {
    margin-bottom: 40px;
  }

  #c219 figure img,
  #c219 figure picture {
    max-width:82%;
  }

  #c220 figure.image img, #c220 figure picture{
    min-height: unset !important;
    object-fit: unset;
    max-width: 100% !important;
  }

  #c850 figure picture {
    max-width: 100%;
  }

  #c219 {
  margin-left: 16%;
  margin-right: 16%;
  margin-top: 3%;
  margin-bottom: 10%;
}
}

@media (min-width: 776px) and (max-width: 1100px){
  #c885 figure img, #c885 figure picture {
    width: 60%;
    margin: 0;
  }
}

@media (max-width: 1100px){
  #c1018 .gallery-item img, #c1020 .gallery-item img {
    width: initial;
    margin: 0;
  }
}


#c222 > div > div > div > div > header > h2.text-center > span:nth-child(1), #c222 > div > div > div > div > header > h3.text-center > span:nth-child(1) {
  width: 343px;
  display: inline-block;
  text-align: left;
  float: left;
}

#c222 > div > div > div > div > div > .icongroup-item {
  border-bottom: 1px solid var(--quinary);
  padding: 26px;
  margin-right: 47px;
  margin: 0px 30px 0px 0px;
}

@media (max-width: 1000px){
  #c222 > div > div > div > div > div > .icongroup-item {
    margin: 0px 0px 0px 0px;
  }
  #c222 > div > div > div > div > div {
  float: none !important;
  }
  #c220 figure.image img {
    display: none;
  }
}

@media (max-width: 576px){
  #c499 .frame-header{
    margin-top: 1rem;
  }
  #c219 {
  margin-left: 4%;
  margin-right: 4%;
  margin-top: 3%;
  margin-bottom: 20%;
}
 #c222 > div > div > div > div > div > .icongroup-item {
    margin: 0px 20px 0px 20px;
  }
}

#c222 > div > div > div > div > div {
  float: left;
}

#c222 > div > div > div > div > div > div.icongroup-item:nth-child(1) {
  margin-top: 20px;
}

#c222 > div > div > div > div > header > h3.text-center{
  top: -187px;
}

#c219 > div > div > div > div > div > div.contentcontainer-column:nth-child(1) {
  position: relative;
  margin-bottom: 40px;
  top: 38px;
}

#c222 > div > div > div > div > div > .icongroup-item > .icongroup-item-text > h4{
  color: var(--quinary);
}


@media(max-width: 1400px){
 
  #c223 {
    padding: 6rem 12rem 6rem 12rem;
  }

  #c223 label[for=kontaktformular-223-checkbox-3] {
    position: absolute;
    top: 11rem;
  }
  
  #c223 label[for=kontaktformular-223-checkbox-4] {
    position: absolute;
    top: 16.7rem;
  }
 
}



@media(max-width: 1350px){
  #c222 > div > div > div > div > header > h2.text-center > span:nth-child(1), #c222 > div > div > div > div > header > h3.text-center > span:nth-child(1) {
    width: unset;
  }

  #c220 .image {
    margin-left: unset;
  }

}

@media(max-width: 1200px){
 
  #c223 {
    padding: 4.5rem 10.5rem 4.5rem 10.5rem;
  }
}

@media(max-width: 1000px){
    #p124 .inhalt{
      margin-top: 3rem;
    }

   #c235 .nc .nc-container {
    flex-direction: column;
    border-bottom: none;
    margin-bottom: 4rem;
   }

   #c235 .nc .nc-container:last-child {
    margin-bottom: 0;
   }

  #c235 .nc .nc-container .nc-title {
    padding-top: 2rem;
  } 
}

@media(max-width: 992px){

  #c223 {
    padding: 3.5rem 9.5rem 3.5rem 9.5rem;
  }

  .vor-dem-inhalt-standortdetails > div {
    padding-bottom: 0;
  }


#c223 label[for=kontaktformular-223-checkbox-3] {
  position: absolute;
  top: 0;
}

#c223 label[for=kontaktformular-223-checkbox-4] {
  position: absolute;
  top: 4rem;
}

}


@media(max-width: 768px){
 
  #c223 {
    padding: 6rem 7rem 6rem 7rem;
  }

  #c223 label[for=kontaktformular-223-checkbox-3] {
    position: absolute;
    top: 0;
  }
  
  #c223 label[for=kontaktformular-223-checkbox-4] {
    position: absolute;
    top: 6rem;
  }
  
}


@media(max-width: 576px){
 
  #c223 {
    padding: 6.5rem 4rem 6.5rem 4rem;
  }
}

/* ============================================================
   ACCORDION
   ============================================================ */
#p120 #accordionContainer {
    width: 67%;
    margin: 9rem auto;
}

#p196 #accordionContainer {
  width: 67%;
  margin: 1rem auto;
}

#p196 #accordionContainer .accordion-body {
  padding-left: 0;
  padding-right: 0;
}

#p196 #accordionContainer {
  margin-top: 0;
  margin-bottom: 6rem;
}

.nach-dem-inhalt-standortansicht #accordionContainer {
  margin: 0 !important;
}

.accordion-item{
    border: none;
}

#p196 .accordion-body {
  padding-top: 3rem;
}

.accordion-button{
    border-bottom: 1px solid var(--primary);
    font-size: 2.5rem;
    font-family: "Raleway-Bold";
    color: var(--quaternary);
    padding-left: 0; 
}

.accordion {
--bs-accordion-inner-border-radius: 0;
}

@media (max-width: 590px){
  .accordion-button{
    font-size: 37px;
    line-height: 55px;
}
}

#p126 .accordion-button,
#p196 .accordion-button,
#p244 .accordion-button {
  border-bottom: 1px solid var(--primary);
  font-size: 26px;
  font-family: "Raleway-Bold";
  color: var(--quinary);
  padding-left: 1rem; 
}

.accordion-h3{
    margin-bottom: 2rem;
}
.accordion-button:not(.collapsed) {
    color: var(--quaternary);
    background-color: transparent;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}
.accordion-button::after {
    background-size:28px;
    background-position-x: center;
    background-position-y: center;
    border: 1px solid var(--primary);
    padding: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235ba129'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    bottom: -19px;
    position: relative;
    right: -23px;
}

#p196 .accordion .element-header {
  display: none;
}

#p196 .accordion .btn-primary {
  width: 47%;
}

#p120 .accordion h3 {
color: var(--primary) !important;
}

.tt_address_list .col-4{
    width: 336px;
}
.ap_mit_bild {
    box-shadow: none;
    margin-left: 0;
}
.ap_mit_bild > div > div.row > * {
    padding-left: 0px;
    padding-right: 0px;
}
/* ============================================================
   TIMELINE COMPONENT
   ============================================================ */
.timeline-heidesand {
    box-sizing: border-box;
    width: 100%;
    --primary-dark: var(--quinary);
  }

  .timeline-heidesand * > * {
    box-sizing: border-box;
  }

  .timeline-heidesand .timeline-banner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .timeline-heidesand .timeline-banner img {
    width: 110%;
  }
  .timeline-heidesand .timleine-history {
    margin-bottom: 8rem;
    position: relative;
  }
  .timeline-heidesand .timleine-history .timleine-history-head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--secondary);
    background-color: var(--primary);
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .timeline-heidesand .timleine-history .timleine-history-head .timleine-history-head-title {
    margin: 2rem;
    font-family: 'Raleway-Bold';
    font-size: x-large
  }
  .timeline-heidesand .timleine-history .timeline-history-content {
    position: relative;
    top: 6rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .timeline-heidesand .timleine-history .timeline-history-content button {
    padding: 0;
    margin: 0 1rem 0 1rem;
    height: 0;
    width: 0;
  }
  .timeline-heidesand .timleine-history .timeline-history-content button:hover {
    color: var(--primary);
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list {
    width: 100%;
    margin-left: 3rem;
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li {
    height: fit-content;
    position: relative;
    padding-top: 3.7rem;
    border-left: 1px solid var(--tertiary);
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li::after {
    width: 1.5rem;
    height: 1.5rem;
    content: " ";
    background-color: var(--primary-dark);
    position: absolute;
    top: -0.4rem;
    left: -0.7rem;
    border-radius: 100%;
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li::before {
    width: 0.5rem;
    height: 0.5rem;
    content: " ";
    background-color: var(--primary-dark);
    position: absolute;
    bottom: -0.2rem;
    left: -0.3rem;
    border-radius: 100%;
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li div:first-child {
    height: 3.5rem;
    position: relative;
    width: max-content;
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li div:first-child div {
    overflow: hidden;
    --rZ: 20deg;
    position: absolute;
    width: 17rem;
    height: 12rem;
    background-color: transparent;
    transform: translate(-5rem, -5rem) rotateZ(var(--rZ));
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li div:first-child div div {
    transform: rotateZ(calc(-1 * var(--rZ))) translate(3.5rem, 5.5rem);
    position: relative;
    font-size: 25px;
    font-family: 'Raleway-Bold';
    color: var(--secondary);
    padding: 0.9rem 0 0.9rem 1.1rem;
    background-image: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    height: 3.4rem;
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li div:not(:first-child) {
    max-height: 8.8rem;
    overflow-y: hidden;
    overflow-wrap: anywhere;
    text-overflow: ellipsis;
    padding: 1rem;
    max-width: 16rem;
    transition: all 1000ms ease-out;
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li div:not(:first-child).open {
    max-height: 500rem; /*should be enough*/
    transition: all 1000ms ease-in;
  }

.timeline-history-content-list p {
  padding-top: 1rem;
}

.timeline-history-content {
  margin-bottom: 11rem;
}

.timeline-heidesand-anchor {
    text-decoration: none !important;
    font-family: 'Roboto-Medium';
}

.timeline-heidesand-anchor:after {
  content: "";
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_Unten.png);
  background-size: 100% 100%;
  display: inline-block;
  height: 10px;
  width:20px;
  position:relative;
  top:0px;
  left:15px;
}

.timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list .open ul {
  display: block;
  list-style: disc;
}

.timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list .open ul li {
  border-left: none;
  padding-top: 1rem;
}

.timeline-heidesand figure img {
  margin-left: 0;
}

.timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list .open ul li::after {
  width: 0;
  height: 0;
}

.timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list .open ul li::before {
  width: 0;
  height: 0;
}

/* ------ Timeline Open Problem -------- */

.timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li div span ul {
  display: block;
  list-style: disc;
}

.timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li div span ul li {
  border-left: none;
  padding-top: 1rem;
}

.timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li div span ul li::after {
  width: 0;
  height: 0;
}

.timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li div span ul li::before {
  width: 0;
  height: 0;
}

/* ------ Timeline Open Problem Ende -------- */

/* ------ Timeline Mobil ------*/

@media (max-width: 399px){
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li {
    border-left: none;
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list {
    margin-left: 0;
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li::before {
    width: 0;
    height: 0;
  }
  .timeline-heidesand .timleine-history .timeline-history-content .timeline-history-content-list ul li::after {
    width: 0;
    height: 0;
  }
}

/* ------ Timeline Mobil Ende ------*/

.img-thumbnail{
    padding: 0px;
}

.ansprechpartner_name{
    font-family: 'Raleway-Bold';
    color: var(--quinary);
}
.ansprechpartner-text{
    font-family: 'Roboto';
    color: var(--tertiary);
    line-height: 1.8rem;
}

.grey{
    color: var(--tertiary) !important;
    text-decoration: none;
}
.item-ansprechpartner{
    width: 30px;
    text-align: center;
    margin-right: 0.5rem;
}

.ansprechpartner-text .ansprechpartner_telefon,.ansprechpartner-text .ansprechpartner_email, .ansprechpartner-text .ansprechpartner_mobil {
  text-decoration: none !important;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-color: var(--primary);
}
.news-backlink-wrap > a{
    color: var(--primary) !important;
    text-decoration: none;
}
.frame-type-news_newsdetail{
    font-family: 'Roboto';
}
#c203, #c998 {
    background-color: #F1F1F1;
    margin: 7rem 17.5rem 2rem 17.5rem;
    padding: 3rem;
    min-height: 515px;
}



#news-detail-text-image > .news-img-wrap > .outer > .mediaelement > img, #news-detail-text-image .news-detail-text .top-news-image img {
  height: auto;
  width: 384px;
}
.teaser-text-detailview {
    margin-bottom: 0.5rem;
}
.news-backlink-wrap {
    margin-top: 1rem;
}
.image-standorte{
    float: right;
}
.address-container {
    display: flex;
    flex-direction: column;
}

.list-group-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.address-content {
    flex: 1;
}

.ttaddress__label {
    width: fit-content;
    margin: auto;
    background-color: #F1F1F1;
    padding: 2rem;
    color: var(--tertiary);
}
.map > .frame-default{
    padding: 0px;
}
.oeffnungszeiten > div > figure tbody{
    border: none;
    background: none;
}
.ttaddress__label li a{
    color: var(--tertiary);
}

.oeffnungszeiten tr td:not(:first-child) {
  padding-left: 10px !important;
}

@media (max-width: 768px) {
    .list-group-item {
        flex-direction: column;
    }

    #c286  .image {
        margin-left: 0;
        margin-top: 20px; /* Abstand zwischen Text und Bild im responsiven Layout */
        margin: auto;
    }

    #c286 .image > img{
      width: 288px;
    }

    .address-content {
        margin: auto;
      }

    .mediaelement > img:nth-child(1) {
        width: 213px;
        height: auto;
        margin: auto;
    }
      
}

.address-container > ul{
    padding-left: 0px;
}
@media (max-width: 900px) {
    #c203, #c998 {
        margin: 7rem 2rem;
    }
}
#c198 .gallery-item img,
#c198 .gallery-item picture,
#c1160 .gallery-item img,
#c1160 .gallery-item picture,
#c1163 .gallery-item img,
#c1163 .gallery-item picture {
  width:70px;
  height:auto
}
#c198, #c1160, #c1163 {
    position: relative;
    z-index: 100;
    height: 0px;
    margin: 0px;
    padding: 0px;
    bottom: 32px;
}
.pfeil-picture{
    z-index: 100;
    height: 0px;
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: 348px;
    left: 50%;
    transform: translate(-50%, -50%);
}
h3.custom-map{
    color: var(--quinary);
    font-size: 18px;
    font-family: "Raleway-Bold";
}
.custom-map-color{
    color: var(--tertiary);
    font-family: 'Roboto';
    line-height: 1.2rem;
}
.description-custom{
    font-family: 'Roboto';
}
.btn-primary-custom{
    border: 1px solid;
    padding: 13px;
    position: absolute;
    top: 301px;
    text-decoration: none;
}
.btn-primary-custom:hover{
    text-decoration: none;
}
.leaflet-popup-content p {
    margin: 0px 0 !important;
}

.form-control.error, .form-group input.error[type="file"], .form-text, .help-block{
  color: red;
  border-color: red;
}

#c301{
  color: var(--tertiary);
}

#c300{
  margin-left: 30px;
  color: var(--tertiary);
}

.pagination ul {
  list-style-type: none; /* Entfernt die Punkte */
  padding: 0;
  display: flex; /* Elemente nebeneinander anordnen */
  justify-content: center; /* Zentriert die Paginierung */
  gap: 10px; /* Abstand zwischen den Buttons */
}

.pagination li {
  margin: 0; /* Entfernt Standardabstände */
}

.pagination a, .pagination span {
  display: inline-block;
  padding: 10px 15px;
  color: var(--primary);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pagination .tx-indexedsearch-browselist-currentPage {
  background-color: var(--primary);
  color: var(--secondary) !important;
}

.pagination a:hover {
  color: var(--bs-link-hover-color) !important;
}

.pagination .tx-indexedsearch-browselist-currentPage a{
  color: var(--secondary) !important;
}

@media (min-width: 377px) and (max-width: 396px){
  #c166 h3.text-center:nth-child(2) {
    top: -13px;
}
}

#cookieconsent{
  display: none;
}

#c250 figure img {
}

#carouselExampleAutoplaying{
  margin: auto;
  margin-bottom: 40px;
  max-height: 30rem;
}

#carouselExampleAutoplaying img{
  width: inherit;
}

.tt_address_list .standort-kontakt a {
  color: #6f6f6D;
  text-decoration: none !important;
}

.standort-daten {
  background-color: #f1f1f1;
  padding: 2rem 2rem 0rem 2rem;
  margin-top: 2rem;
}

.standort-adressen-container{
  font-family: 'Roboto';
  color: var(--tertiary);
}

.standort-adressen-container .ttaddress__label {
  background-color: transparent;
  width: 49% !important;
}

.standort-adressen-container h2 {
  font-size: 1.8rem;
  color: var(--primary);
  font-family: inherit;
  font-family: 'Roboto';
  font-weight: bold;
}

.standort-adressen-container ul {
  font-size: 1.2rem;
}

.inhalt-standortansicht {
  width: 75%;
  margin: auto;
  padding: 0px 53px;
}

.inhalt-standortansicht p {
  width: 48%;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  color: var(--tertiary);
  font-family: 'Roboto';
}

.inhalt-standortansicht .frame-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inhalt-standortansicht header{
  width: 100%;
}

.inhalt-standortansicht h2{
  color: var(--primary);
  font-size: 2rem;
}

.standort-adressen-container .description > p{
  font-family: 'Roboto';
}

.standort-adressen-container strong{
  font-size: 1.8rem;
  color: var(--primary);
  font-family: inherit;
}

.standort-adressen-container > ul > li > div > ul > li > div{
  margin-bottom: 5px;
}

.vor-dem-inhalt-standortansicht .carousel-inner{
  max-height: 30rem;
}

.vor-dem-inhalt-standortansicht .frame{
  padding-top: 0px;
}

.standort-adressen-container .address-content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.standort-adressen-container .ttaddress__label{
  width: 70% !important;
}

@media (max-width: 1100px){
  .inhalt-standortansicht .frame-inner {
    display: unset;
    }
    .standort-adressen-container .address-content {
    display: unset;
    }

  .standort-adressen-container .ttaddress__label{
    width: fit-content !important;
  }

  .inhalt-standortansicht p {
    width: fit-content;
  }

  #carouselExampleAutoplaying .carousel, #carouselExampleAutoplaying .carousel-item{
    padding: unset;
  }

  #c740 .tt_address_list {
    margin-left: 0;
  }
}

.nav-link{
  cursor: pointer;
}

.header-green:hover{
  text-decoration: none;
}

.header-green > div:first-child{
  margin-top: 1rem;
}

.list-info li::before{
  width: 0.4rem;
  height: 0.4rem;
  content: " ";
  background-color: var(--quinary);
  background-image: none;
  margin-top: 0.65rem;
  border-radius: 100%;
}

.list-check li::before{
  width: 0.4rem;
  height: 0.4rem;
  content: " ";
  background-color: var(--quaternary);
  background-image: none;
  margin-top: 0.65rem;
  border-radius: 100%;
}

.nach-dem-inhalt-standortansicht .frame-container-default {
  max-width: 1320px;
}

.frame-type-carousel_small {
  padding-top: 0;
}

.frame-type-carousel_small .frame-group-container .frame-group-inner {
  padding-left: 0;
  padding-right: 0;
}

.frame-type-carousel_small .frame-container-default {
  max-width: 1920px;
  padding: 0;
}

#c314 .border-news, #c318 .border-news, #c999 .border-news {
  margin-bottom: 25px;
}

#c314 .weiterlesen, #c999 .weiterlesen {
  position: unset;
}

@media(min-width: 1400px) and (max-width: 1450px){
  #c314 .news-list-item .col-xxl-9, #c999 .news-list-item .col-xxl-9 {
    padding-left: 3rem;
  }
}

@media(min-width: 1080px) and (max-width: 1200px){
  #c314 .news-list-item .col-xxl-9, #c999 .news-list-item .col-xxl-9 {
    padding-left: 3rem;
  }
}

#c318 .weiterlesen {
  position: unset;
}

#c314 .no-media-element img, #c999 .no-media-element img {
  height: 168px;
  width: auto;
}

.vor-dem-inhalt-standortansicht address{
  margin-bottom: 0;
}
.vor-dem-inhalt-standortansicht .oeffnungszeiten .description > p{
  margin-bottom: 0.5rem;
}
.vor-dem-inhalt-standortansicht .address{
  line-height: 28px;
}
.vor-dem-inhalt-standortansicht .address-content li div{
  margin-bottom: 0;
}
.inhalt-standortansicht ul{
  display: flex;
  flex-wrap: wrap;
}
.inhalt-standortansicht ul li{
  width: calc(100%/2);
  margin: 0 0 10px 0;
  color: var(--tertiary);
  font-family: 'Roboto';
  font-size: 1.2rem;
  padding-right: 25px;
}
.nach-dem-inhalt-standortansicht .tt_address_list{
  justify-content: center;
}
.vor-dem-inhalt-standortansicht .standort-adressen-container .ttaddress__label {
  width: 73% !important;
}
@media(max-width: 1300px){
  .inhalt-standortansicht ul li{
    width: auto;
    padding-right: 0;
  }
  .inhalt-standortansicht ul{
    display: unset;
  }
}
#c220 figure.image img{
  min-height: 419px;
  object-fit: contain;
}
#c178 .news-list-item .news-img-wrap{
  width: 252px;
}
.leaflet-marker-pane > img.leaflet-marker-icon{
    height: 35px !important;
    width: auto !important;
}

.leaflet-marker-pane > img.leaflet-marker-icon.marker-icon-active {
    height: 53px !important;
    width: auto !important;
}

#p196 .card-group-element .btn:hover {
  color: var(--secondary);
}

.card-title-mietmaschine{
  color: var(--secondary);
  font-size: 18px;
  font-family: "Roboto-Bold";
  margin: 0;
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0rem 2rem;
} 

.card-title-mietmaschine .left {
  float: left;
  padding: 0.5rem 0rem;
}

.card-title-mietmaschine .right {
  float: right;
}

#p196 .card-untereinander-body{
  display: grid;
  grid-template-areas: 'header main ' 'header main';
  grid-template-columns: 40% 1fr;
  padding: 10px;
}

.card-untereinander-body{
  display: grid;
  grid-template-areas: 'header header header header header header' 'menu main main main right right' 'menu footer footer footer footer footer';
  padding: 10px;
}

.card-untereinander{
  width: 100%;
  font-family: 'Roboto';
}



.card-untereinander .card{
  border: none;
  border-radius: 0;
  background-color: #F1F1F1;
  padding: 2rem;
}

.card-untereinander h3{
  margin-bottom: 0;
  padding-left: 10px;
}

.card-untereinander p{
  color: var(--tertiary);
  font-size: 17px;
}

.card-untereinander-body a{
  margin-top: 4px;
}


@media (max-width: 750px){
  #c166 header.frame-header {
    margin-top: 3rem !important;
  }
}

@media (max-width: 434px){
  #c166 h2 {
    top: -184px !important;
  }
  .standort-daten {
  padding: 2rem 2rem 0rem 2rem;
}
}

/* ============================================================
   CAROUSEL MULTI-ITEM (Mietmaschinen/Standorte)
   ============================================================ */
.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
    
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(50%);
    }
    
    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-50%);
    }
}
@media (min-width: 1200px) {
    
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(33%);
    }
    
    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-33%);
    }
}
@media (min-width: 1400px) {
    
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(33%);
    }
    
    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-33%);
    }
}

@media (min-width: 768px) {

  .carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start { 
  transform: translateX(0);
}
}

#cCarousel .arrow {
  position: absolute;
  top: 45%;
  display: flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 26px;
  color: var(--primary);
  cursor: pointer;
}

#cCarousel .arrow:hover {
}

#recipeCarousel .infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 73px;
  background-image: linear-gradient(to bottom, var(--primary), var(--quinary));
  color: var(--secondary);
  font-size: 20px;
  font-family: "Roboto-Bold";
}

#recipeCarousel {
  width: 98%;
}

#recipeCarousel .card {
  max-width: 90%;
  margin: auto;
  border-radius: 0;
}

@media (min-width: 768px) {
  #cCarousel .container, .container-sm, .container-md {
      max-width: 861px;
  }
}
@media (min-width: 992px) {
  #cCarousel .container, .container-sm, .container-md, .container-lg {
      max-width: 864px;
  }
}
@media (min-width: 1200px) {
  #cCarousel .container, .container-sm, .container-md, .container-lg, .container-xl {
      max-width: 1241px;
  }
}
@media (min-width: 1400px) {
    #cCarousel .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1646px;
    }
}

#recipeCarousel .card-img-top {
  border-radius: 0;
  max-height: 234px;
}

#recipeCarousel .carousel-item {
  background-color: var(--secondary);
}

#cCarousel .my-3 {
  position: relative;
}

#carousel-vp {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.cCarousel-item .infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 73px;
  background-image: linear-gradient(to bottom, var(--primary), var(--quinary));
  color: var(--secondary);
  font-size: 20px;
}

.cCarousel-item .infos button {
  background: #222;
  padding: 10px 30px;
  border-radius: 15px;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
} 

#cCarousel #cCarousel-inner {
  display: flex;
  position: absolute;
  transition: 0.3s ease-in-out;
  gap: 10px;
  left: 0px;
  flex-wrap: wrap;
  justify-content: center;
}

.cCarousel-item {
  max-width: 90%;
  height: 323px !important;
  border: 2px solid var(--secondary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (max-width: 576px) {
  .cCarousel-item {
    max-width: 100%;
  }
  #cCarousel #cCarousel-inner {
  gap: 20px;
}
}

.cCarousel-item img {
  width: 100%;
  object-fit: cover;
  height: 246px;
  color: var(--secondary);
}

.cCarousel-inner-small{
  position: unset !important;
}

.carousel-vp-small{
  justify-content: center;
} 

 @media (max-width: 767px) {
  #cCarousel .carousel-inner .carousel-item > div {
      display: none;
  }
  #cCarousel .carousel-inner .carousel-item > div:first-child {
      display: block;
  }
} 

#cCarousel { 
 position: relative;
  max-width: 108rem;
  margin: auto;
}

#p120 .accordion-button,.backendlayout-standortansicht .accordion-button {
  border-radius: 0 !important;
}

#p196 .accordion-button {
  border-radius: 0;
}

.accordion-button {
  border-radius: 0;
}

/* ============================================================
   ZERTIFIZIERUNGEN
   ============================================================ */

#p126 .accordion-button,
#p244 .accordion-button {
  border-radius: 0;
}

/* ============================================================
   GESCHÄFTSBEREICHE
   ============================================================ */

#c177 .card-footer {
  padding-left: 1.3rem;
}

/* ============================================================
   SITEMAP
   ============================================================ */

#c387 ul {
  padding-left: 1rem;
}

#c387 ul li {
  list-style-type: none;
}

#c387 ul li a {
  background-color: var(--quaternary);
  color: var(--secondary);
  text-decoration: none;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

#c387 ul li ul {
  display: inline-flex;
  flex-wrap: wrap;
  list-style-type: none;
}

#c387 ul li ul a {
  background-color: var(--primary);
  color: var(--secondary);
  text-decoration: none;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

#c387 ul li ul li ul {
  display: list-item;
}

#c387 ul li ul li ul a {
  background-color: #F1F1F1;
  color:var(--tertiary);
  text-decoration: none;
}

#c387 ul li ul li {
  margin-top: 1rem;
  margin-right: auto;
}

/* ============================================================
   FUTTERBESTELLUNGEN FORMULAR
   ============================================================ */

#c376 .col-1 {
  margin-top: auto;
}

#c376 legend {
  color: var(--primary);
  font-size: 25px;
  font-family: "Raleway-Bold";
  line-height: 35px;
  margin-bottom: 0;
}

#c376 #futterbestellung-376-fieldset-1 .form-group {
  margin-bottom: 0;
}

#c376 .form-check {
  margin-top: 2rem;
}

#c376 .clearfix .frame {
  padding: 30px 0 0 0;
}

#c376 #c897 {
  padding-top: 0 !important;
  padding-left: 0.5rem !important;
  top: -1rem;
}

/* ============================================================
   STELLENANGEBOTE
   ============================================================ */



#p246 .frame-group-inner {
  padding: 20px;
}

@media(max-width: 576px){
  #p246 .frame-background-none .frame-group-inner {
    padding: 0;
  }
}

.card-group-element .btn-text:hover, .card-group-element .btn:hover {
  color: var(--bs-link-hover-color);
}

/* ============================================================
   FUHRPARK
   ============================================================ */

#c393 tbody {
  border-bottom: none;
}

/* ============================================================
   FRAME SPACING UTILITIES
   ============================================================ */

.frame-space-before-extra-small {
  margin-top: -4rem;
}

.frame-space-before-small {
  margin-top: -3rem;
}

.frame-space-before-medium {
  margin-top: -1rem;
}

.frame-space-after-extra-small {
  margin-bottom: -4rem;
}

.frame-space-after-small {
  margin-bottom: -3rem;
}

.frame-space-after-medium {
  margin-bottom: -1rem;
}

@media (max-width: 767px) {
  .frame-space-after-extra-small {
  margin-bottom: -3rem;
}
}

@media (max-width: 576px) {
  .frame-space-after-extra-small {
  margin-bottom: -2.5rem;
}
} 

/* ============================================================
   SPALTENABSTAND / CONTENT CONTAINER
   ============================================================ */

.contentcontainer {
  --contentcontainer-gap: 100px;
}

#c219 .contentcontainer {
  --contentcontainer-gap: 25px;
}

@media (max-width: 576px) {
  .contentcontainer[data-container-identifier="container_3_columns"] .contentcontainer-column {
  margin-bottom: 2rem;
}
}

@media(min-width: 577px) and (max-width: 1100px) {
  .contentcontainer[data-container-identifier="container_3_columns"] .contentcontainer-column {
  margin-bottom: 2rem;
}
} 

/* ============================================================
   FRAME BACKGROUND VARIANTS
   ============================================================ */

.frame-background-light {
  --frame-color: (var(--tertiary));
  --frame-background: #F1F1F1;
}

.frame-background-secondary {
  --frame-color: (var(--tertiary));
  --frame-background: #fff700;
}

.frame-background-tertiary {
  --frame-background: var(--quinary);
}

.frame-background-quaternary {
  --frame-background: #605F5E;
}

/* ============================================================
   GREMIEN
   ============================================================ */

.gremien_bild {
  padding-right: 3rem;
}

.gremien_textblock {
  padding-right: 2rem;
}

.gremien_foto {
  padding-left: 20px;
}

/* ============================================================
   STANDORTE
   ============================================================ */

.inhalt-standortdetails {
  max-width: 1280px;
  margin: 0 auto;
}

.inhalt-standortdetails .vcard {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}

tbody {
  border-bottom: none;
}

.standortansicht td {
  padding-right: 1rem;
}

li::marker {
  color: var(--primary);
}

b, strong {
  font-family: 'Roboto-Medium';
  font-weight: normal;
}

.list-normal {
  margin-bottom: 1.8rem;
}

.overlay_maps {
position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: gray;
    opacity: 0.6;
}

.nach-dem-inhalt-standortdetails .frame-container-default{
  max-width: 100% !important;
}

.carousel-control-prev::after {
  content: "";
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png);
  background-size: 39%;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  height: 45px;
  width:45px;
  position:relative;
  top:2px;
  left:1px;
  transform: rotate(180deg);
  border: 1px solid var(--primary);
}

.carousel-control-next::after {
  content: "";
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png);
  background-size: 39%;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  height: 45px;
  width:45px;
  position:relative;
  top:2px;
  left:1px;
  border: 1px solid var(--primary);
}

.card-title-mietmaschine .right::after {
  content: "";
  background-image: url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2_negativ.png);
  background-size: 39%;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  height: 45px;
  width: 45px;
  position: relative;
  top: 5px;
  left: 1px;
  border: 2px solid white;
}

.carousel-control-prev:hover::after, .carousel-control-next:hover::after {
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2_negativ.png);
  background-color: var(--primary);
}

.mietmaschine-link:hover .right::after, .mietmaschine-link:hover .right::after {
  background-color: var(--secondary);
  background-image:url(/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png);
}

.card-group-element p {
  color: var(--tertiary);
}

#c850 {
  padding-bottom: 0;
}

.frame-layout-embedded>.frame-group-container>.frame-group-inner {
  border-radius: 0;
}

.btn-default-woutlines {
  border: none;
}

.btn-default-woutlines:hover {
  background-color: transparent;
  color: var(--quinary);
}

.markttips-after::after {
  content: "";
  background-image: url("/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png");
  display: inline-block;
  background-size: 44%;
  background-repeat: no-repeat;
  border: var(--primary) solid 2px;
  height: 45px;
  width: 45px;
  float: right;
  margin-left: 1rem;
  top: 13px;
  position: relative;
  background-position: center;
}

@media (max-width: 576px) {
  .markttips-after::after {
    margin-left: 1rem;
    top: -1rem;
  }
}

.markttipps-hover:hover .markttips-after::after {
  background-image: url("/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2_negativ.png");
  background-color: var(--primary);
}

.timeline-history-content-btn-prev::after {
  content: "";
  background-image: url("/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2_negativ.png");
  display: inline-block;
  background-size: 39%;
  background-repeat: no-repeat;
  border: var(--secondary) solid 2px;
  height: 45px;
  width: 45px;
  position: relative;
  background-position: center;
  top: -1.5rem;
  transform: rotate(180deg);
}

.timeline-history-content-btn-next::after {
  content: "";
  background-image: url("/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2_negativ.png");
  display: inline-block;
  background-size: 39%;
  background-repeat: no-repeat;
  border: var(--secondary) solid 2px;
  height: 45px;
  width: 45px;
  position: relative;
  background-position: center;
  top: -1.5rem;
  left: -3rem;
}

.timeline-history-content-btn-prev:hover::after {
  background-color: var(--secondary);
  background-image: url("/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png");
  transform: rotate(180deg);
}

.timeline-history-content-btn-next:hover::after {
  background-color: var(--secondary);
  background-image: url("/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png");
}

.timeline-history-content-btn-prev {
  border: none;
}

.timeline-history-content-btn-next {
  border: none;
}

#mainnavigation li.nav-item .dropdown-item {
  max-height: 45px;
}

#mainnavigation li.nav-item ul ul .dropdown-item {
  max-height: 32px;
}

.dropdown-menu li .arrow::after{
  content: "";
  background-image: url("/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2_negativ.png");
  display: inline-block;
  background-size: 39%;
  background-repeat: no-repeat;
  height: 45px;
  width: 45px;
  rotate: 90deg;
}

.nav-item .dropdown-menu li .arrow::after{
  content: "";
  background-image: url("/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png");
  display: inline-block;
  background-size: 39%;
  background-repeat: no-repeat;
  height: 45px;
  width: 45px;
  rotate: 90deg;
}

.dropdown-menu li .arrow{
  height: 12px;
  margin-left: auto;
}

.dropdown-menu li a.show .arrow::after{
  background-image: url("/fileadmin/Dateiverzeichnis/Icons/Icon_Pfeil_V2.png");
  position: relative;
  top: -30px;
  left: 18px;
  rotate: -90deg;
}

.dropdown-menu .dropdown-item .dropdown-text {
  margin-left: 0.5rem;
}

#c222 .icongroup-item-icon {
  margin-right: 0;
}

#c222 .icongroup-item-icon img {
  width: 25px;
  height: auto;
}

.icongroup-item-icon-ohne-text {
  flex-shrink: 0;
  width: 70px;
  margin-right: 10px;
}

.icongroup-item-icon-ohne-text svg, .icongroup-item-icon-ohne-text img {
  display: block;
}

.card-untereinander-body .mySlides {display: none}
.card-untereinander-body img {vertical-align: middle;}

.card-untereinander-body .slideshow-container {
  max-width: 400px;
  position: relative;
}

.card-untereinander-body .prev, .card-untereinander-body .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px !important;
  color: var(--secondary) !important;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-decoration: none !important;
}

.card-untereinander-body .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.card-untereinander-body .prev:hover, .card-untereinander-body .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.card-untereinander-body .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.card-untereinander-body .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: var(--tertiary);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.card-untereinander-body .active {
  background-color: var(--primary);
}

@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

@media (max-width: 776px) { 
.tt_address_list .col-4 {
    width: 90%;
}
}

@media (max-width: 440px) {
  .card-title-mietmaschine {
    padding: 0.5rem;
  }
}

@media (max-width: 1635px) {
  #p196 #accordionContainer {
    width: 90%;
}
}

@media (max-width: 1274px) {
  #p196 .card-img-top {
    margin: auto;
  }
  .card-untereinander img {
    max-height: 246px;
    max-width: 400px;
    margin-right: 1rem;
  }
}

@media (min-width: 1274px) {
  .card-untereinander img{
    height: 246px;
    width: 400px;
    margin-right: 1rem;
  }
}

@media (max-width: 872px) {
  #p196 .accordion .btn-primary {
      width: 60%;
  }
}

@media (max-width: 778px) {
  #p196 .card-untereinander-body {
    display: unset;
  }
  #p196 .accordion .btn-primary {
      width: 60%;
      margin-right: 0;
  }
  #p196 .accordion .card-untereinander-body div, #p196 .accordion .card-untereinander-body img {
    margin: 0;
  }
  .card-untereinander h3{
    padding-left: 0;
  }
  .card-untereinander-body .card-img-top {
    padding-bottom: 10px;
  }
}

@media (max-width: 576px) {
  #p196 .card-untereinander-body {
    display: unset;
  }
  #p196 .accordion .btn-primary {
      width: 70%;
      margin-right: 0;
  }
}

@media (max-width: 430px) {
  #p196 .card-untereinander-body {
    display: unset;
  }
  #p196 .accordion .btn-primary {
      width: 95%;
      margin-right: 0;
  }
}

@media (max-width: 1199px) {
  .slideshow-container {
      text-align: justify;
  }
  .card-untereinander-body .dots {
    max-width: 400px;
  }

  .card-img-top {
    justify-content: center;
    display: grid;
  }
}

@media (min-width: 1200px) {
  .card-untereinander-body .dots {
    text-align:center; 
    width: 400px;
    margin-top: 10px;
  }
}

#p252 h1 {
  overflow-wrap: break-word;
}

@media (max-width: 550px) {
  #c203, #c998 {
    padding: 0 0 1rem 0;
    margin: 4rem 1rem 2rem 1rem !important;
  }
  #c998 .news-single {
    padding-top: 1rem;
  }
  #news-detail-text-image > .news-img-wrap > .outer > .mediaelement > img, #news-detail-text-image .news-detail-text .top-news-image img {
    max-width: 384px;
    width: 100%;
    padding-top: 1rem;
}
#c314 .border-news, #c999 .border-news {
  margin-left: 0;
}
}

@media (max-width: 1440px) {
  #c203, #c998 {
      margin: 7rem 2rem;
  }

}

@media (max-width: 793px) {
  #p120 #accordionContainer {
    width: 90%;
}
}

#c223 #kontaktformular-223 > .row:nth-of-type(4) > .col-12:nth-of-type(2) {
    padding-top: 14rem;
}

@media(min-width: 1400px) and (max-width: 1460px){
  #c223 #kontaktformular-223 > .row:nth-of-type(4) > .col-12:nth-of-type(2) {
    padding-top: 12.5rem;
}
}

@media(min-width: 1252px) and (max-width: 1399px){
  #c223 #kontaktformular-223 > .row:nth-of-type(4) > .col-12:nth-of-type(2) {
    padding-top: 11.2rem;
}
}

@media(min-width: 1040px) and (max-width: 1251px){
  #c223 #kontaktformular-223 > .row:nth-of-type(4) > .col-12:nth-of-type(2) {
    padding-top: 9.5rem;
}
}

@media(min-width: 992px) and (max-width: 1039px){
  #c223 #kontaktformular-223 > .row:nth-of-type(4) > .col-12:nth-of-type(2) {
    padding-top: 8rem;
}
}

@media(max-width: 991px){
  #c223 #kontaktformular-223 > .row:nth-of-type(4) > .col-12:nth-of-type(2) {
    padding-top: 3rem;
}
}

@media(max-width: 432px){
  #c223 #c897 {
    padding-left: 0 !important;
}
}

#c223 .form-check .form-check-label {
  position: unset;
}

@media (max-width: 400px) {
  #c223 {
    padding: 4rem 1rem;
  }

  #c653 .row .col-md-12:nth-child(2){
    padding: 0;
  }
}

@media (max-width: 576px) {
  #c301 .element-header {
    hyphens: none;
  }
}

@media (max-width: 576px) {
  .element-header, .card-title {
    hyphens: auto;
  }
}

#c284 .d-flex {
  display: unset !important;
}

#c284 .d-flex a {
  margin-bottom: 1rem;
}

#c284 h1 {
    hyphens: none;
}
.backendlayout-standortansichtOhneBild .tt_address_list, .backendlayout-default .tt_address_list {
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
  justify-content: center;
}

@media (max-width: 767px) {
  .gallery-item-size-2 {
    --gallery-columns: 1;
}
}

@media (max-width: 767px) {
  #c431 .gallery-item-size-3, #c885 .gallery-item-size-1 {
    --gallery-columns: 2;
}
}

.carousel-container > h1 {
  hyphens: auto;
  word-break: auto-phrase;
}

@media (max-width: 650px) {
  #ttaddress__map .oeffnungszeiten {
    display: none;
  }
  .leaflet-popup-content-wrapper {
    height: initial;
    width: 341px;
  }
}

@media (max-width: 991px) {
  #nav-item-120 {
    margin-left: 1px;
  }
  
  #mainnavigation {
    line-height: 36px;
  }

}

@media (max-width: 767px) {
  #c177 > div > div > div > div > div.card-group-element:nth-child(1) > div > div:nth-child(1) > div > p {
    text-align: center;
  }
  #c177 .card-footer {
    text-align: center;
  }
  #p111 #c177 .btn-default {
    margin: 0;
  }

  .card-title-mietmaschine .left {
      float: none;
  }
  .card-title-mietmaschine .right {
    display: none;
  }
}

@media (max-width: 500px) {
  .firstItem .header h4 a {
    font-size: 1.3rem !important;
    color: var(--quinary) !important;
  }
  #p111 .news-list-view .header {
    padding-top: 1rem;
  }
  #p111 .carousel-control-prev::after, .carousel-control-next::after {
    height: 30px;
    width: 30px;
  }
  #p111 .carousel .carousel-item {
    padding: 0;
  }
  #p111 #recipeCarousel .infos {
    height: 51px;
}
.footer-container {
  padding: 1rem;
  margin-bottom: 2rem;
}
.footer-left {
  margin-bottom: 1rem;
}
.footer-right {
  margin-top: 1rem;
}
.logo {
  width: 200px;
}
.footer-container .headline {
  font-size: 12px;
}
.footer-nav, .footer-links, .footer-social, .footer-login {
  margin: 0;
}

.company-info {
  line-height: 1.5rem;
}
.company-info p {
  line-height: 1.5rem;
}
}

.uu-title > div {
  max-width: 600px;
}

.carousel-container .frame-container {
  --bs-gutter-x: 40px !important;
}

@media (min-width: 501px) and (max-width: 768px){
  .facebook-icon, .instagram-icon, .youtube-icon, .linkedin-icon {
    top: -1rem !important;
  }
  .footer-nav {
    top: 105px;
  }
  .footer-social > a:last-child {
    top: 0;
  }
}

/* ------------------------------------------- NACH VERÖFFENTLICHUNG Markttipps 16.05.2025 --------------------------------------------*/

@media (max-width: 1000px) {
  .markttips-after::after {
    display: none;
  }
#news-container-186 > ul > div > a > div {
    margin: 1rem 0 1rem 0;
  }
}

/* ------------------------------------------- NACH VERÖFFENTLICHUNG --------------------------------------------*/

#futterbestellung-376-fieldset-1 label {
  display: none;
}

#futterbestellung-376-fieldset-1 input, #futterbestellung-376-fieldset-1 select {
  margin: 1.5rem 0 0 0;
}

#preisanfrageEnergie-821-fieldset-1 label {
  display: none;
}

#preisanfrageEnergie-821-fieldset-1 input, #preisanfrageEnergie-821-fieldset-1 select {
  margin: 1.5rem 0 0 0;
}

#preisanfrageEnergie-821-fieldset-1 legend {
  margin-bottom: 1.5rem;
}

.btn {
    margin-top: 4px;
  }

 @media (max-width: 576px) {
  .uu .uu-content {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    margin-bottom: 0 !important;
  }
  .uu .uu-header .uu-title {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .p-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
 }

 .news-detail-text .top-news-image img {
    margin-bottom: 1.5rem;
}

#c203 iframe {
  width: 100%;
  height: 500px;
}

@media (max-width: 576px) {
  #c203 iframe {
    padding-top: 1rem;
    height: 230px;
  }
}

@media (max-width: 1200px) {
  #c819 p a, #c683 p a, #c684 p a, #c201 p a {
    margin-bottom: 1rem;
  }
  #c685 .ap_mit_bild:first-child, #c415 .ap_mit_bild_personal:first-child {
    margin-top: 2rem !important;
  }
}

@media (max-width: 767px) {
  #c685 .ap_mit_bild:first-child, #c415 .ap_mit_bild_personal:first-child, #c452 .ap_mit_bild_personal:first-child, #c925 .ap_mit_bild_personal:first-child, #c949 .ap_mit_bild_personal:first-child, #c557 .ap_mit_bild_personal:first-child {
    margin-top: 0rem !important;
  }
  #c446 picture {
    width: 50%;
    margin: 0;
  }
  .contentcontainer-column[data-container-column="left"]{
  padding-bottom: 1.5rem;
  }
}

@media (min-width: 393px) and (max-width: 450px) {
  #c166 h1 {
    padding: 0 1rem 0 1rem;
  }
}

a:hover .text-primary {
  color: var(--tertiary) !important;
}

@media (max-width: 992px) {
    #c377 picture {
        display: none;
    }
}