body {
    --color1: white;    
    --color3: rgba(169, 167, 144); 
}

.alle{
   /* background-color: rgba(199, 179, 135, 0.644);
   background-color: rgba(189, 184, 165);*/
   background-color: rgb(233, 230, 230);
}

.services{
    background-color: white;
  /*  background-color: rgb(199, 179, 135);
  background-color: rgba(189, 184, 165);*/
}

.daisy{
    height: 450px;
    object-fit: contain ;
    margin-top: 5px;
    margin-bottom: 25px;
    margin-left: 50px;
    border-radius: 5px;
}

.icon-box{  
    padding-right: 200px;
    color: rgba(199, 179, 135, 0.644);
}

.info{
    width:max-content;
}

.list{
    margin-left: 0px;
}

.listHeader{
    margin-bottom: 1em;    
    margin-top: 2.8em;
    font-weight: bold;
}

.kontakt{
  /*  margin-top: 1em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 10em;*/
    font-size: 16px;
}

.map{
    width: 100%;
    border-radius: 10px; 
}

.impr{
    margin-top: 1em;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 10em;
}

.infotext{
    font-size: 20px;
}

.serviceText{
    font-size: 20px;
    padding-left: 3em;
    padding-right: 3em;
    text-align: center;
}

.darkBG{
   /* background-color: rgba(199, 179, 135, 0.521); */
   background-color: white;
}

.flex-columns {
    display: flex;
    justify-content: center;
    width: auto;
    max-width: 100%;
    margin: auto;
}

.flex-columns .column {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 1em 0.5em;
}

.bilder{
    width: 450px;
    height: 450px;
    border-radius:2%;
    justify-content: center;
    display: block;
    top: 25%;
    left: 25%;
    text-align: center;
    align-self: center;
}

.angebotText{
    display: block;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    /*vertical-align: middle;*/
    text-align: center;
}

.bildSchwarz{
    color: black;
}




.navbar-links {
    height: 100%;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: rgba(199, 179, 135, 0.644);
    border-radius: 10px;
}

@media (max-width: 400px) {
     .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }
    
    .navbar-links ul li {
        text-align: center;
    }
    
    .navbar-links ul li a {
        padding: .5rem 1rem;
    }
    
}

.kontakt a:hover {
    text-decoration: none;
    display: block;
    background-color: rgba(169, 167, 144);
}

/*justify-content: right;*/
.kontakt a{
    color: black;
}
.post{
    width: auto;
    height: auto;
    position: relative;
    cursor: pointer;
}
.post:hover .post-s{
    width: 100%;

}

.post img{
display: block;
width: auto;
height: auto;
}

.post-s{
width: 0px;
height: 100%;
background-color: rgba(0, 0, 0, 0.644);
border-radius: 10px;
position: absolute;
top: 0;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
transition: 0.5s ease;
}

.post-s h1{
color: rgba(199, 179, 135, 0.877);
}

.post-s h2{
color: rgba(199, 179, 135, 0.877);
}    

.leistungsbilder{
    border-radius: 10px;
    position: relative;
    display: flex;
}

.infos{
    margin-top: 2;
    margin-bottom: 5%;
    text-align: center;
}

.infos img{
    height: 500px;
    float: left;
    border-radius: 5px;
}

.formular{
    margin-top: 4%;
    margin-bottom: 2%;
    width: 80%;
    height: 40px;
    border-radius: 5px;
}

.form{
    margin-top: 40px;
    margin-bottom: 50px;
}

.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: var(--color2);
}
.menu {display: flex;}
.menu li {padding-left: 30px; padding-right: 15px;}
.menu li a {
    display: inline-block;
    text-decoration: none;
    color: var(--color1);
    text-align: center;
    position: relative;
}

.menu li a:hover {
    color: var(--color3);
}
.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color1);
}
.menu li a:hover:after {width: 100%;}
.open-menu , .close-menu {
    position: absolute;
    color: var(--color1);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}
.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.close-menu {
    top: 20px;
    right: 20px;
}
#check {display: none;}
@media(max-width: 610px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color:rgba(43, 42, 42, 0.95);
    }
   
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {right: 0;}
}


#mitte{
    margin-left: 25%;
}

#infobild{
    margin-top: 10px;
    width: 100%;
    height: auto;
}


/*@media(max-width: 610px){
    #infobild{
        margin-top: 50px;
        margin-left: 25px;
        width: auto;
        height: auto;
        max-width: 400px;
    }
}*/


#message{
    width: 100%;
    margin-bottom: 2%;
    border-radius: 5px;
}

#btn{
    margin-left: 45%;
    border-radius: 5px;
}

#link{
    color: black;
}



#webtitel{
    font-family: cardo;
    margin-left: 10px;
    margin-top: 10px;
}

#logo{
    box-shadow: 10px 10px 10px rgba(255, 255, 255, 0.76);
}

#angebotKosmetik{
    text-decoration: none;
    display: block;
    color: rgba(34, 31, 26, 0.371);
}


#klassischeBH1{
    height: 250px;
    float: right;
    box-shadow: 10px 20px 15px silver;
	border-radius: 10px;
    
}

#klassischeBH2{
    height: 250px;
    float: right;
    margin-top: 1.5em;
    box-shadow: 10px 20px 15px rgba(99, 81, 44, 0.712);
	border-radius: 10px;
}

#maniküre{
    height: 300px;
    float: right;
    margin-top: 1.5em;
    box-shadow: 10px 20px 15px silver;
	border-radius: 10px;
}

#sectionKosmetik{
    width: 100%;
}

#impressum{
    font-size: 12px;
}

#angebotHaare{
    text-align: center;
}

#bildlinks{
    padding-top: 80px;
}

#textLinks{
    margin-right: 200px;
}

@media(max-width: 610px){
#textLinks{
    margin-right: 0px;
}
}

@media(max-width: 610px){
   .bilder{
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
   }
    }

.bildServiceHandy{
    height: 0.0005px;
}

@media(max-width: 610px){
    .bildServiceHandy{
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    border-radius:2%;
    justify-content: right;
    box-shadow: 10px 20px 15px rgba(99, 81, 44, 0.712);
    display: block;
    top: 25%;
    left: 25%;
    text-align: center;
    padding-bottom: 0;
    }
}

@media(max-width: 610px){
   #handyKlein{
    height: 0.0005px;
}
}

@font-face {
    font-family: vladimir-script;
    src: url("../VLADIMIR.TTF");
}
#unterschrift{
    font-family: vladimir-script;
    font-size: 36px;
    text-align: center;
}

.wrapper{
    position: fixed;
    bottom: 50px;
    right: -500px;
    max-width: 345px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
}

.show{
    position: fixed;
    bottom: 50px;
    right: 20px;
    max-width: 345px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    z-index: 1;
}

.wrapper header{
    text-align: center;
}

.wrapper .data{
    margin-top: 16px;
}

.wrapper .data p{
    color: white;
    font-size: 16px;
}

.show header{
    text-align: center;
    color: rgba(169, 167, 144);
}

.show .data{
    margin-top: 16px;
}

.show .data p{
    color: white;
    font-size: 16px;
}

.data p a{
    color: white;
    text-decoration: none;
}

.data p a:hover{
    text-decoration: underline;
}

.data ul{
    color: white;
}

.wrapper .buttons{
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons .button{
    border: none;
    color: white;
    padding: 8px 0;
    border-radius: 5px;
    background: rgba(169, 167, 144);;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}

.buttons .button:hover{
    background: rgb(139, 138, 117);
}

.hideInfo{
    display: none;
}

.effekte{
    margin-bottom: 0;
}

.für{
    margin-bottom: 0;
}

/*slideshow css*/
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
    color: black;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: black;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
  }
  
  .active {
    background-color: #717171;
  }

  .mySlides{
    height: 400px;
    width: auto;
  }

  .hiddenSlide{
    display: none;
  }

  #selina{
    background-color: white;
  }

  #selinaInfo{
    margin-top: 5%;
    padding-top: 3%;
    padding-bottom: 3%;
  }

  #nextSlide{
    border: none;
  }

  #nextSlide :hover{
    background-color: rgba(0, 0, 0, 0.24);
  }

  #prevSlide{
    border: none;
  }

  #prevSlide :hover{
    background-color: rgba(0, 0, 0, 0.24);
  }

  .LeistungenButtons {
    list-style: none;
    border: 1px solid rgb(205, 198, 198);
    border-radius: 5px;
    padding: 2%;
    margin-top: 1%;
    box-shadow: rgba(187, 187, 188, 0.2) 0px 7px 29px 0px;
    box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
    .LeistungenButtons {
        border: 1px solid rgb(205, 198, 198); 
        box-shadow: rgba(187, 187, 188, 0.2) 0px 7px 29px 0px; 
    }
}


  .LeistungenButtons:hover{
    background-color: rgba(120, 119, 119, 0.24);
    cursor: pointer;
  }

  .LeistungenButtons p :hover{
    background-color: none;
  }

  .collage{
    width: 90%;
  }

  #appaKos{
    margin-top: 25%;
  }

  @media(max-width: 610px){
    #appaKos{
        margin-top: 0;
    }
 }

 .kurzInfo{
    margin-bottom: 0;
 }

@media (max-width: 710px) {
    .collageKlein {
        display: block;
        width: 100%;
        height: auto;
    }
    .collage {
        display: none;
    }
}

@media (min-width: 711px) {
    .collageKlein {
        display: none;
    }
    .collage {
        display: block;
    }
}

