/***  respons_1 created by nordicweb.com ***/

/* === START of EINBINDEN DER FONT VON Z.B. GOOGLE FONTS === */

/* === END of EINBINDEN DER FONT VON Z.B. GOOGLE FONTS === */

/* === START of BODY & ALLGEMEINE AUSZEICHNUNGEN === */
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
  width: 100%;
}
html {
  box-sizing: border-box;
  font-size: 100%;
}

body,
table {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h2 {
  font-size: 2.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h3 {
  font-size: 2rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h4 {
  font-size: 1.75rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h5 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
h6 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
a:focus,
a:visited {
  color: #1468a0;
  text-decoration: underline;
}
a img {
  border: 0;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

.fullWidth {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: initial;
}

.scrollup {
  background: url("../img/top_btn.png") no-repeat #ddd;
  width: 35px;
  height: 35px;
  position: fixed;
  bottom: 1rem;
  z-index: 1;
  right: 1rem;
  opacity: 0.69;
  display: none;
}

.mean-bar {
  display: none;
}
/* === END of BODY & ALLGEMEINE AUSZEICHNUNGEN === */

/* === START of HEADER & LOGO === */
.header {
  padding: 1.8rem 0;
}
.header .row {
  max-width: 85rem;
}

.header .row .logo-container {
  position: relative;
  z-index: 11;
  top: 0px;
}

.header .row .logo-container img {
  max-height: 225px;
}
/* === END of HEADER & LOGO === */

/* === START of STICKY & TOP-BAR === */
.sticky {
  background: #143d95;
  z-index: 5 !important;
}

.sticky.is-stuck {
  /* transition: padding .5s; */
  padding: 0;
  z-index: 11 !important;
  box-shadow: 0px 0px 5px 0px #252525;
}
.sticky.is-stuck .top-bar .logo-container {
  display: inline-block;
  margin: 0 -0.5rem;
  top: 5px;
}

.sticky.is-stuck .top-bar .logo-container img {
  max-width: 61px;
}

.top-bar {
  padding: 0 !important;
  background: 0 !important;
  width: 100%;
  max-width: 61rem;
  margin: 0 auto;
}

.top-bar .logo-container {
  display: none;
}
.top-bar .bar-txt {
  display: none;
}
/* === END of STICKY & TOP-BAR === */

/* === START of NAVIGATION === */
.nav {
  padding: 0;
  margin: 0 auto;
  float: none !important;
  line-height: 0;
}
.menu .menu_inner ul {
  margin-bottom: 0;
  padding-left: 0;
  margin-left: 0;
  background: none;
  /* overflow: hidden; */
  display: flex;
  gap: 2.3rem;
}
.menu .menu_inner ul li {
  float: left;
  background: none;
  list-style: none;
  padding-left: 0px;
  display: inline-block;
}

.menu .menu_inner ul li:last-child {
  border: 0 none;
}
.menu .menu_inner ul li:hover {
}
.menu .menu_inner ul li.active {
}

.menu .menu_inner ul li a {
  display: block;
  background: 0;
  font-size: 1rem;
  position: relative;
  color: #010101;
  text-decoration: none;
  text-transform: uppercase;
  font-family: arial;
  font-weight: bold;
}

.menu .menu_inner ul li a:hover {
  color: #e30613;
  transition: 0.3s;
}

.menu .menu_inner ul li a.active {
  color: #e30613;
}

.menu .menu_inner ul li a {
  position: relative;
}
.menu .menu_inner ul li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #000000;
  visibility: hidden;
  border-radius: 5px;
  transform: scaleX(0);
  transition: 0.25s linear;
  z-index: 3;
}

.menu .menu_inner ul li a:hover:before,
.menu .menu_inner ul li a:focus:before {
  visibility: visible;
  transform: scaleX(1);
}

.menu .menu_inner ul li ul {
  position: absolute;
  width: auto;
  background: #606c06;
}
.menu .menu_inner ul li ul li {
  float: none;
  background: none;
  list-style: none;
  display: block;
  padding-left: 0px;
  border-bottom: 1px solid #ccc;
}

.menu .menu_inner ul li:hover ul {
}
.menu .menu_inner ul li ul li.active {
}

.menu .menu_inner ul li ul li a {
  display: block;
  background: 0;
  font-size: 13px;
  text-align: left;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  padding: 10px 30px 10px 20px;
}
.menu .menu_inner ul li ul li a:hover {
  border: none;
  color: #d1e64d;
  padding: 10px 30px 10px 20px;
}
.menu .menu_inner ul li ul li a.active {
  border: none;
  color: #d1e64d;
  padding: 10px 30px 10px 20px;
}
.menu .menu_inner ul li ul li ul {
  display: none;
  width: 200px;
  right: -200px;
  top: 0;
  position: absolute;
}

.menu .menu_inner ul li ul li:hover ul {
  display: block;
}

.menu .menu_inner ul li ul li ul li {
  border: none;
  list-style: none;
}

.menu .menu_inner ul li ul li ul li a {
  text-transform: none;
}

.menu .menu_inner ul li ul li ul:last-child {
  border: none;
  /* padding-bottom: 30px; */
}

.menu .menu_inner ul li:last-child {
  border: none;
}
.menu .menu_inner li ul {
  display: none;
}
.menu .menu_inner ul.main_menu li.active {
  /* display: block; */
}
.menu .menu_inner ul.main_menu ul.sub_menu li ul.subsub_menu {
  display: none;
}
.menu .menu_inner ul.main_menu ul.sub_menu li ul.subsub_menu li a.active {
  color: black;
}
.menu .menu_inner ul.main_menu ul.sub_menu li.active {
  display: block;
}
.menu .menu_inner ul.main_menu ul.sub_menu li.active ul.subsub_menu {
  /* display: block; */
}
.menu .menu_inner ul.main_menu ul.sub_menu li.active ul.subsub_menu li.active {
  display: block;
}
/* === END of NAVIGATION === */

/* START of NAVIGATION ARROW === */
.menu .menu_inner ul.main_menu .nav-arrow > a:before,
.menu .menu_inner ul.main_menu .nav-arrow > a:after {
  content: "";
  position: absolute;
  border: 5px solid transparent;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.menu .menu_inner ul.main_menu .nav-arrow > a:before {
  border-right: 5px solid transparent;
  top: calc(50% - 5px);
  left: -10px;
}
.menu .menu_inner ul.main_menu .nav-arrow > a:after {
  border-left: 5px solid #fff;
  top: calc(50% - 5px);
  right: 0px;
}
.menu .menu_inner ul.main_menu .nav-arrow > a:hover:before {
  border-left: 5px solid #fff;
  left: 5px;
}
.menu .menu_inner ul.main_menu .nav-arrow > a:hover:after {
  border-left: 5px solid #fff;
  right: -15px;
}
/* === END of NAVIGATION ARROW === */

/* === START of MENU-TOGGLE === */
.menu-toggle {
  display: block;
  position: absolute;
  right: 0;
  float: right;
  z-index: 100000;
  margin: 0.8rem;
  color: #000;
}
.menu-toggle:hover,
.menu-toggle:visited {
  color: #000;
}
/* === END of MENU-TOGGLE === */

/* === START of OFF-CANVAS-NAVIGATION === */
.off-canvas * {
  -webkit-backface-visibility: hidden;
}
.off-canvas .menu_inner {
  display: block !important;
}

.js-off-canvas-exit {
  z-index: 100 !important;
  background: rgba(0, 0, 0, 0.75) !important;
}
.off-canvas .menu_inner ul.sub_menu,
.off-canvas .menu_inner ul.subsub_menu {
  display: none;
}

.off-canvas.position-right {
  background: #fff;
  height: 100%;
  border-top: 8px solid #000;
}

.off-canvas .menu_inner {
  z-index: 10;
}

.off-canvas .menu_inner ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.off-canvas .menu_inner ul li {
}

.off-canvas .menu_inner ul li a {
  padding: 10px 20px;
  width: 100%;
  color: #000000;
  outline: none;
  display: block;
  border-bottom: 1px solid #f3f1f1;
  text-transform: uppercase;
  font-family: arial;
  font-weight: bold;
}
.off-canvas .menu_inner ul li a.active {
  padding: 10px 15px;
  color: #e30613;
  border-left: 5px solid #e30613;
}

.off-canvas .menu_inner ul li ul li {
  background: #606c06;
}

.off-canvas .menu_inner ul li ul li a {
  color: #fff;
  padding-left: 25px;
}
.off-canvas .menu_inner ul li ul li a.active {
  color: #d1e64d;
  border-left: 5px solid #d1e64d;
  padding-left: 20px;
}

.off-canvas .menu_inner ul li ul li ul li a {
  padding-left: 35px;
}
.off-canvas .menu_inner ul li ul li ul li a.active {
  padding-left: 30px;
}

.off-canvas .menu_inner ul li a.tog,
.off-canvas .menu_inner ul li a.sub-tog {
  padding: 10px 15px !important;
  width: 40px;
  position: relative;
  display: block;
  border-left: 1px solid #ccc !important;
  float: right;
  z-index: 10000;
}

.off-canvas-content,
.off-canvas-content {
  overflow: hidden;
}
/* === END of OFF-CANVAS-NAVIGATION === */

/* === START of SLIDESHOW === */
#slideshow {
  width: 100%;
  position: relative;
}
#slideshow .picture:first-child {
  position: relative !important;
  display: block !important;
}
#slideshow .picture {
  position: absolute;
  top: 0;
  left: 0;
}

.full-width-slideshow-bg {
  width: 100%;
  position: relative;
  /* margin-top: 15px; */
  margin-bottom: 2rem;
}
.slideshow {
  margin: 0 auto;
  max-width: 100%;
}
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
}
.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}
.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}
.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}
#slideshow img {
  width: 100%;
}
.slideshow_container {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-inhalt {
  display: flex;
  width: 75rem;
  justify-content: space-between;
  padding: 0 1rem;
}
.text-mitte > p:first-of-type {
  font-size: 2.5rem;
  font-weight: 800;
}
.text-mitte > p:nth-of-type(2) {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.text-mitte {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bg-slideshow {
  width: 100%;
  position: absolute;
  z-index: 1;
  background: #d9d9d99e;
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
  margin-bottom: 3rem;
}
.wappen_links,
.wappen_rechts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* === END of SLIDESHOW === */

/* === START of STARTBILD FUER SMARTPHONE === */

.mobilstart_img_inner {
}
/* === END of STARTBILD FUER SMARTPHONE === */

/* === START of CONTENT === */
#content_sec {
}

.content {
  margin-top: 0px;
  width: 100%;
}
.content:before,
.content:after {
  content: " ";
  display: table;
}

.content:after {
  clear: both;
}

.module_textblock {
}
.margin-top-3 {
  margin-top: 3rem;
}
.margin-top-2 {
  margin-top: 2rem;
}
.margin-top-1 {
  margin-top: 1rem;
}
/**** STARTSEITE ****/
.boxen-start {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.9375rem;
}
.boxen-start a > img {
  width: 150px;
  margin-bottom: 1rem;
}
.boxen-start-inhalt > p {
  margin-bottom: 0;
  font-family: arial;
  font-weight: bold;
  text-transform: uppercase;
}
.boxen-start-inhalt {
  text-align: center;
}
.boxen-start-inhalt {
  background-color: #f3f1f1;
  display: flex;
  height: 18rem;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  width: 33.33%;
  transition: 0.3s;
  cursor: pointer;
  padding: 0.2rem;
}
.boxen-start-inhalt:hover {
  background-color: #fcdfe0;
}

/* Seite Satzung und gesetzliche Grundlagen */
.row.satzung {
  margin: 2rem auto 5rem;
}
a.button.karte_btn {
  color: white;
  background: #e30613;
  border: 1px solid #e30613;
  border-radius: 2px;
  font-size: 1rem;
}
a.button.karte_btn:hover {
  color: #e30613;
  background: transparent;
  text-decoration: none;
}
/**** HAEUFIG GESTELLTE FRAGEN ****/
.accordion-title {
  font-size: 1rem!important;
  color: #e30613!important;
  font-family: "roboto", Helvetica, Helvetica Neue, Arial, sans-serif!important;
}

/* === END of CONTENT === */

/* === START of FOOTER === */
div.site_foot {
  display: none;
}
div.foot {
  display: none;
}

div.foot_inner {
  position: relative;
  font-size: 11px;
}
div.foot,
div.foot a {
  color: #666;
}
/* === END of FOOTER === */

/* === START of CONTENT-INNER-FOOTER === */
.content_inner_footer {
  background: #f3f1f1;
  height: auto;
  bottom: 0;
  width: 100%;
  margin-top: 8rem;
}

.content_inner_footer .row {
  max-width: 75rem;
}

.content_inner_footer .row div div a {
  display: block;
}
.content_inner_footer p {
  color: #fff;
}

.content_inner_footer a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
    margin-right: 3rem;
    
}
.content_inner_footer a:hover {
  color: #000;
}
.content_inner_footer .fullWidth {
  background: #fff;
  padding: 10px 0 10px 0;
}
.content_inner_footer .fullWidth .siteCreated {
  background: none;
  color: #000;
  display: block;
  text-align: center;
  font-size: 11px;
}

.content_inner_footer .fullWidth .siteCreated a {
  color: #000;
}
.content_inner_footer .fullWidth .siteCreated a:hover {
  text-decoration: underline;
}
.footer-1.columns {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 0;
}

/* === END of CONTENT-INNER-FOOTER === */

/* === START of SITE CREATED by NORDICWEB === */
.siteCreated {
  display: none;
  text-align: center;
  background: #939393;
  font-size: 10px;
  color: #292929;
  bottom: 0;
  width: 100%;
}
.siteCreated a {
  font-size: 11px;
  color: #ffffff;
  text-decoration: none;
}
.siteCreated a:hover {
  color: #292929;
}
/* === END of SITE CREATED by NORDICWEB === */

/* fuer alle Smartphones */

@media only screen {
  .menu-toggle.menu-icon {
    display: block;
  }
  .menu {
    display: none;
  }
  /*** HEADER ***/
  .header {
    padding: 0rem 0;
  }
  /*** SLIDESHOW ***/
  .text-mitte > p:first-of-type {
    font-size: 0.8rem;
    font-weight: 800;
  }
  .text-mitte > p:nth-of-type(2) {
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  .wappen_links > img,
  .wappen_rechts > img {
    width: 2.5rem;
  }
  .text-mitte > p:first-of-type {
    margin: 0;
  }
  .bg-slideshow {
    padding: 0.2rem 0;
    margin-bottom: 0;
  }
  .slideshow_container {
    align-items: flex-start;
  }
  /**** STARTSEITE ****/
  .boxen-start {
    gap: 3rem;
    flex-direction: column;
  }
  .boxen-start-inhalt {
    height: 18rem;
    width: 100%;
  }
  /**** Reinigungsfirmen ****/

  /**** FOOTER ****/
  .footer-1.columns {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  /* Seite Satzung */
  a.button.karte_btn {
    width: 100%;
  }
}

/* Tablet Hochformat */

@media only screen and (min-width: 40.063rem) {
  /*** SLIDESHOW ***/
  .text-mitte > p:first-of-type {
    font-size: 1.5rem;
    font-weight: 800;
  }
  .text-mitte > p:nth-of-type(2) {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  .wappen_links > img,
  .wappen_rechts > img {
    width: 3.5rem;
  }
  .text-mitte > p:first-of-type {
    margin: 0;
  }
  .bg-slideshow {
    padding: 0.2rem 0;
    margin-bottom: 0;
  }
  .slideshow_container {
    align-items: center;
  }
  /**** STARTSEITE ****/
  .boxen-start-inhalt {
    height: 18rem;
    width: 33.33%;
  }
  .boxen-start {
    gap: 1rem;
    flex-direction: row;
  }

  /* Seite Satzung */
  a.button.karte_btn {
    width: 100%;
  }
}

/* Smartphones im Querformat */

@media only screen and (min-width: 40.1rem) and (max-width: 51.483rem) and (orientation: landscape) {
  /**** SLIDESHOW ****/
  .bg-slideshow {
    padding: 0.2rem 0;
    margin-bottom: 1rem;
  }
  /**** STARTSEITE ****/
  .boxen-start {
    gap: 1rem;
    flex-direction: row;
  }
  /* Seite Satzung */
  a.button.karte_btn {
    width: 100%;
  }
}

/* Tablets Querformat */

@media only screen and (min-width: 50.063rem) and (max-width: 64rem) and (orientation: landscape) {
  /* Seite Satzung */
  a.button.karte_btn {
    width: 60%;
  }
}

/* Normaler PC-Monitor */

@media only screen and (max-width: 64.063em) {
}

/* fuer Standardbildschirme */

@media only screen and (min-width: 64.1rem) {
  .menu-toggle.menu-icon {
    display: none;
  }
  .menu {
    display: block;
  }
  /*** header ***/
  .header {
    padding: 1.8rem 0;
padding-top:0;
  }
  /*** SLIDESHOW ***/
  .wappen_links > img,
  .wappen_rechts > img {
    width: 6rem;
  }
  .text-mitte > p:first-of-type {
    font-size: 2.5rem;
    font-weight: 800;
  }
  .text-mitte > p:nth-of-type(2) {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  .bg-slideshow {
    padding: 1.5rem 0;
    margin-bottom: 3rem;
  }
  .slideshow_container {
    align-items: center;
  }
  /**** STARTSEITE ****/
  .boxen-start {
    gap: 5rem;
    flex-direction: row;
  }
  .boxen-start-inhalt {
    height: 18rem;
    width: 33.33%;
  }

  /**** FOOTER ****/
  .footer-1.columns {
    flex-direction: row;
    text-align: center;
    gap: 1rem;
  }
  /* Seite Satzung */
  a.button.karte_btn {
    width: 50%;
  }
}

/* fuer Grosse Bildschirm */

@media only screen and (min-width: 90rem) {
}

/* === END of MEDIA QUERIES === */

  .websiteLogo {
    text-align: center;
    margin-bottom: 10px;
  }
  .websiteLogo img {
    width: 300px;
  }

  @media (max-width: 767px) {
    .websiteLogo img {
      width: 250px;
    }
.websiteLogo {
    margin-bottom: 0;
  }
  }
