

  @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');

  body {
    background: linear-gradient(to bottom, #E6F4EA, #A9D4B1);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  }

  .container {
    background-color: rgba(255, 255, 255, 0.9); /* Weiß mit 90% Deckkraft */
    
    border-radius: 10px; /* Optional: Fügt leicht abgerundete Ecken hinzu */
}
  /*---------------------------------------
     TYPOGRAPHIE             
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
    line-height: inherit;
  }

  h1,h2,h3,h4 {
    letter-spacing: -1px;
  }

  h5 {
    font-weight: 500;
  }

  h1 {
    color: #000000;
    font-size: 5em;
  }

  h2 {
    color: #08BF63;
    font-size: 3em;
    padding-bottom: 10px;
  }

  h3 {
    font-size: 1.8em;
    line-height: 1.2em;
    margin-bottom: 0;
  }

  h4 {
    color: #08BF63;
    font-size: 1.8em;
    padding-bottom: 2px;
  }

  h6 {
    letter-spacing: 0;
    font-weight: normal;
  }

  p {
    color: #080808;
    font-size: 18px;
    font-weight: normal;
   
  }


  /*---------------------------------------
     ALLGEMEIN              
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #252525;
    -webkit-transition: 0.5s;
    transition: 1.5s;
    text-decoration: none !important;
  }

  a:hover, a:active, a:focus {
    color: #0BBF64;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #000000;
  }

  .section-title {
    padding-bottom: 20px;
  }

  .section-title h2 {
    margin-top: 0;
  }

  .section-btn {
    background: #08BF63;
    border: 0;
    border-radius: 3px;
    color: #ffffff;
    font-size: inherit;
    font-weight: 500;
    padding: 14px 20px;
    transition: transform 0.5s ease-in;
    transform: translateX(0);
  }

  .section-btn:hover {
    transform: translateY(-5px);
  }

  .text-align-right {
    text-align: right;
  }

  .text-align-center {
    text-align: center;
  }

  .border-top {
    border-top: 1px solid #f2f2f2;
    margin-top: 4em;
    padding-top: 2.5em;
  }

  .btn-gray {
    background: #08BF63;
  }

  .btn-blue {
    background: #08BF63;
  }


  #matratzenreinigung, #impressum 
   {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
  }


  #google-map {
    line-height: 0;
    margin: 0;
    padding: 0;
  }


  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU I              
  -----------------------------------------*/

  header {
    background: #ffffff;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    height: 45px;
  }

  header .col-md-8 {
    padding-right: 0;
  }

  header p,
  header span {
    font-size: 12px;
    line-height: 24px;
    padding-top: 12px;
  }

  header a,
  header span {
    color: #000000;
  }

  header span {
    font-weight: 500;
    display: inline-block;
    padding: 11px 15px;
  }

  header span.date-icon {
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    padding-right: 19px;
    padding-left: 19px;
  }

  header span i {
    color: #08BF63;
    margin-right: 5px;
  }



  /*---------------------------------------
      MENU II              
  -----------------------------------------*/

  .navbar-default {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,.075);
    border: none;
    margin-bottom: 0;
    padding: 10px;
  }

  .navbar-default .navbar-brand {
    color: #0a0a0a;
    font-weight: 500;
  }

  .navbar-default .navbar-brand .fa {
    color: #a5c422;
  }

  .navbar-default .navbar-nav li.appointment-btn {
    margin: 3px 0 0 20px;
  }

  .navbar-default .navbar-nav li.appointment-btn a {
    background: #0BBF64 ;
    border-radius: 3px;
    color: #ffffff;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar-default .navbar-nav li.appointment-btn a:hover {
    background: #0BBF64;
    color: #ffffff !important;
  }

  .navbar-default .navbar-nav li a {
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 500;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }

  .navbar-default .navbar-nav > li a:hover {
    color: #0BBF64 !important;
  }

  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus {
    color: #0a0a0a;
    background-color: transparent;
  }

  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus {
    color: #0a0a0a;
    background-color: transparent;
  }

  .navbar-default .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background: #0a0a0a;
    border-color: transparent;
  }

  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus { 
    background-color: transparent;
  }



  /*---------------------------------------
      HOME              
  -----------------------------------------*/

  #home h1 {
    color: #ffffff;
    padding-bottom: 10px;
    margin-top: 0;
  }

  #home h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    line-height: inherit;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
  }

  .slider .container {
    width: 100%;
  }

  .slider .owl-dots {
      position: absolute;
      top: 560px;
      width: 100%;
      justify-content: center;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 7px;
    border: 2px solid #080808;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
  }

  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #08BF63;
    border-color: transparent;
  }

  .slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;    
    height: 190%;
    color: #fff;
    cursor: e-resize;
  }

  .slider .item {
    background-position: inherit;
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover;
    height: 650px;
  }

  .slider .item-first {
    background-image: url(../images/Home_slider_gesundpur_3_2.jpg);
  }

  .slider .item-second {
    background-image: url(../images/Home_slider_gesundpur_4_2.jpg);
  }

  .slider .item-third {
    background-image: url(../images/Home_slider_gesundpur_5_2.jpg);
  }

 /* Mobile adjustments */
@media (max-width: 768px) {
  .slider .caption {
      height: 130%; /* Ensure the caption height is 100% */
  }

  .slider .item {
      height: 505px; /* Adjust the height for mobile */
  }

  .slider .owl-dots {
      top: 400px; /* Adjust the dots position for mobile */
  }
}
  /*---------------------------------------
      Matratzenreinigung              
  -----------------------------------------*/

 


  #matratzenreinigung h6 {
    color: #858585;
    margin: 0;
  }

  #matratzenreinigung {
    padding-top: 70px;
    padding-bottom: 70px;
    margin-bottom: 50px;
}

#matratzenreinigung .section-title h2 {
    margin: 0;
    padding: 0;
}

#matratzenreinigung .wow {
    margin: 0;
    padding: 0;
}

#matratzenreinigung .col-md-12 {
    padding-left: 0;
}

#matratzenreinigung .col-md-12 p {
    margin: 0;
    padding: 0;
    margin-top: 5px;
}

#matratzenreinigung .col-md-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Add this line to stack image and text vertically */
}

#matratzenreinigung img {
    width: 100%; /* Adjust based on your image size */
    height: auto;
    margin-bottom: 20px; /* Add some space between image and text */
}

#matratzenreinigung .col-md-6 img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

#matratzenreinigung .row {
  display: flex;
  align-items: center;
}

  /*---------------------------------------
      Trinkwassertest            
  -----------------------------------------*/

  #trinkwassertest {
    padding-top: 100px;
    margin-bottom: 50px;
  }


  #trinkwassertest .section-title h2 {
    margin: 0;
    padding: 0;
}

#trinkwassertest .wow {
    margin: 0;
    padding: 0;
}

#trinkwassertest .col-md-12 {
    padding-left: 0;
    
}

#trinkwassertest .col-md-12 p {
    margin: 0;
    padding: 0;
    margin-top: 5px;
}

#trinkwassertest .col-md-6 img {
  width: 90%;
}

/*---------------------------------------
      Dampfreinigung            
  -----------------------------------------*/
  #dampf {
    padding-top: 100px;
    margin-bottom: 50px;
}

#dampf .section-title h2 {
    margin: 0;
    padding: 0;
}

#dampf .wow {
    margin: 0;
    padding: 0;
}

#dampf .col-md-12 {
    padding-left: 0;
}

#dampf .col-md-12 p {
    margin: 0;
    padding: 0;
    margin-top: 5px;
}

#dampf .col-md-6 img {
    width: 90%;
}



#trinkwassertest .col-md-6 img,
#dampf .col-md-6 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}


#trinkwassertest .row,
#dampf .row {
    display: flex;
    align-items: center;
}

  /*---------------------------------------
      Anpassungen responsive             
  -----------------------------------------*/

#matratzenreinigung .col-md-6 img,
#trinkwassertest .col-md-6 img,
#dampf .col-md-6 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

#matratzenreinigung .row,
#trinkwassertest .row,
#dampf .row {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    #matratzenreinigung .row,
    #trinkwassertest .row,
    #dampf .row {
        flex-direction: column;
        text-align: center;
    }
    #matratzenreinigung .col-md-6 img,
    #trinkwassertest .col-md-6 img,
    #dampf .col-md-6 img {
        width: 100%;
        max-width: 100%;
    }
}


  /*---------------------------------------
      Impressum              
  -----------------------------------------*/


  .special-text {
    color: #0c0c0c;
    font-size: 20px;
    margin: 0;
  }

  
   /*---------------------------------------
      Datenschutz            
  -----------------------------------------*/


  .special-text_ds {
    color: #0c0c0c;
    font-size: 25px;
    margin: 0;
  }

  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  footer h4 {
    padding-bottom: 5px;
  }

  footer a {
    color: #000000;
  }

  footer a:hover {
    color: #0BBF64;
  }

  .contact-info {
    padding-top: 10px;
  }

  .contact-info .fa {
    background: #0a0a0a;
    border-radius: 100%;
    color: #ffffff;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 2px;
  }

  
  .copyright-text p,
  .footer-link a {
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 500;
  }

  .footer-link a {
    font-size: 12px;
    display: inline-block;
    padding: 0 10px;
    margin-top: 4px;
  }

  .angle-up-btn {
    position: relative;
    bottom: 4em;
    display: block;
  }

  .angle-up-btn a {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 3px;
    font-size: 20px;
    color: #000000;
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 38px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
  }

  .angle-up-btn a:hover {
    background: #0BBF64;
    color: #ffffff;
    transform: translateY(-5px);
  }


   /*---------------------------------------
     Einarmiger Bandit (inkl. mobil)             
  -----------------------------------------*/


  @keyframes highlight {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 0, 1); }
    50% { box-shadow: 0 0 5px rgba(255, 255, 0, 0.5); }
}
.highlight {
    animation: highlight 1s infinite;
} 

@media (max-width: 768px) {
  .reel {
      width: 100px;
      height: 300px;
  }
  .symbol {
      height: 100px;
      line-height: 100px;
      font-size: 40px;
  }
  .spin-button, .number-button {
      width: 80px;
      height: 80px;
  }
  .niete-button {
      width: 45px;
      height: 45px;
      font-size: 20px;
      position: absolute;
      top: 160px; /* Adjust as necessary */
      left: 7%;
      transform: translateX(-50%);
  }
  .message {
    font-size: 25px;
    font-weight: bold;
    color: #08BF63;
    text-align: center;
    margin-top: 20px;
}
}


  /*---------------------------------------
     Querformat (Orientierung) Smartphones              
  -----------------------------------------*/

/* Querformatmodus für Smartphones */
@media only screen and (max-width: 768px) and (orientation: landscape) {
  #slot-machine {
      height: 60vh; /* Verkleinern Sie die Höhe */
      transform: scale(0.8); /* Verkleinern Sie die gesamte Slot-Maschine */
      margin-top: 60px; /* Platz unter der Navbar hinzufügen */
  }

  .reel {
      width: 100px; /* Verkleinern Sie die Breite der Walzen */
      height: 300px; /* Verkleinern Sie die Höhe der Walzen */
  }

  .spin-button {
      width: 70px; /* Verkleinern Sie die Größe der Schaltflächen */
      height: 70px;
  }

  .niete-button {
      width: 50px; /* Verkleinern Sie die Größe der Niete-Schaltfläche */
      height: 50px;
  }

  .message {
      font-size: 16px; /* Verkleinern Sie die Schriftgröße der Nachricht */
  }
}



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {
    h1 {
      font-size: 4em;
    }
    h2 {
      font-size: 2.5em;
    }
    h3 {
      font-size: 1.5em;
    }

    header {
      height: inherit;
    }
    header span.date-icon {
      border: 0;
      padding-right: 0;
      padding-left: 0;
    }
    header span.email-icon {
      padding-top: 0;
    }

    .navbar-default .navbar-nav li a {
      padding-right: 15px;
      padding-left: 15px;
    }
  }

  @media only screen and (max-width: 992px) {
    .slider .item {
      background-position: center;
    }

    header {
      padding-bottom: 10px;
    }
    header .text-align-right {
      text-align: left;
    }
    header span {
      padding-top: 0;
      padding-left: 0;
      padding-bottom: 0;
    }
  }

  @media only screen and (max-width: 767px) {
    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
      border-color: transparent;
    }
    .navbar-default .navbar-nav li.appointment-btn {
      margin-left: 15px;
    }
    .navbar-default .navbar-nav li a {
      display: inline-block;
      padding-top: 8px;
      padding-bottom: 8px;
    }

  
    footer {
      padding-top: 60px;
      padding-bottom: 0;
    }
    .footer-thumb {
      padding-bottom: 10px;
    }

    .border-top {
      text-align: center;
    }

    .copyright-text {
      margin-top: 10px;
    }

    .angle-up-btn {
      bottom: 10em;
    }
  }

  @media only screen and (max-width: 639px) {
    h1 {
      font-size: 3em;
      line-height: 1.2em;
    }
    h2 {
      font-size: 2.1em;
    }
    h4 {
      font-size: 1.4em;
    }

    #home h3 {
      font-size: 11px;
      letter-spacing: 1px;
    }

  }

 /* Adjust section spacing */
#matratzenreinigung, #trinkwassertest, #dampf {
  padding-top: 70px; /* Reduce top padding */
  padding-bottom: 70px; /* Reduce bottom padding */
  margin-bottom: 50px;
}

/* Responsive styles */
@media only screen and (max-width: 767px) {
  #popup {
      width: 95%;
      height: 90%;
      overflow-y: scroll;
  }

  .navbar-default .navbar-nav li a {
      display: inline-block;
      padding-top: 8px;
      padding-bottom: 8px;
  }

  footer {
      padding-top: 60px;
      padding-bottom: 0;
  }

  .footer-thumb {
      padding-bottom: 10px;
  }

  .border-top {
      text-align: center;
  }

  .copyright-text {
      margin-top: 10px;
  }

  .angle-up-btn {
      bottom: 10em;
  }
}

#matratzenreinigung img {
  max-width: 100%;
  height: auto;
}
#dampf img {
  max-width: 100%;
  height: auto;
}
#trinkwassertest img {
    max-width: 100%;
    height: auto;
}


