body{
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.5em;
    background-color: #ECF4FF;
    box-sizing: border-box;
}
/* #ececec: gray #ECF4FF: blue */
*{
    margin: 0;
}

img{
    max-width: 100%;
}

/* -----TextEdits----- */

.leistungsübersichtabschnitt h3{
    margin: 10px;
}

/* ---Navigationsbar--- */
nav{  
    background-color: #ECF4FF;
}
.nav-links ul{
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: row;
}
.nav-links li{
    list-style: none;
    transition: 0.6s;
}
.logo img{
    width: 12vw;
    height: 12vw;
    margin-top: 5px;
}
.nav-links li a{
    color: #3385D9;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 550;
    -webkit-text-stroke-width: 0.05em;
    -webkit-text-stroke-color: black;
    padding: 1rem;
    display: block;
}
nav a:hover{
    color: black;
}
@media (min-width=100px){
    nav{
        justify-content: space-around;
    }
    .leistung-bild{
        width: 75vw;
    }
}

/* Willkommensabschnitt */

.willkommensabschnitt{
    border: 1.5vh solid white;
    border-top: 6vh solid white;
    display: flex;
    flex-basis: 50%;
    justify-content: space-around;
    padding: 2vh;
    padding-bottom: 2.5vh;
}
.willkommensabschnitt img{
    height: 20vw;
    width: 30vw;
    border: 0.5vh solid #3385D9;

}
.willkommenstext{
    text-align: center;
}
#willkommenüberschrift{
    font-size: 3vw;
    padding: 2vh;
}
#willkommenüberschrifth2{
    font-family: 'Kdam Thmor Pro',Garamond, sans-serif;
    font-size: 2vw;
    padding-top: 1.25vh;
    padding-bottom: 2.5vh;
}
@media(max-width:768px) {
    .willkommensabschnitt{
        flex-wrap: wrap;
    }
    .willkommensabschnitt img {
        width: 90vw;
        height: 60vw;
    }
    #willkommenüberschrift{
        font-size: 1.5em;
        padding-bottom: 1vh;
    }
    #willkommenüberschrifth2{
        font-size: 1.25em;
        padding-top: 0;
        padding-bottom: 1.75vh;
    }
}


/* -----InfoTabelle------ */

.leistungsübersichtabschnitt{
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 2vh;
}
.infotableh2 {
    text-align: center;
    margin-top: 3vh;
    margin-bottom: 2vh;
    color: black;
    font-family: 'Kdam Thmor Pro',Garamond, sans-serif;
    font-size: 3em;
    text-transform: uppercase;
}

.leistungsübersichtabschnitt h2{
    font-family: helvetica,Arial,sans-serif;
    font-size: 1.75em;
    padding-bottom: 0.75vh;
}

@media (max-width:768px) {
    .infotableh2{
        font-size: 1.5em;
    }
    .leistungsübersichtabschnitt h2{
        font-size: 1.25em;
        padding: 0;
    }
}

.leistung-bild{
    margin-top: 2vh;
    margin-left: 0.5vw;
    margin-right: 0.5vw;
}
.leistung-bild img{
    width: 30vw;
    border: solid 5px white;
    border-radius: 6px;
    transition: all .2s ease;
}
@media(max-width:768px){
    .leistung-bild img{
        width: 75vw;
    }
}
.leistung-bild img:hover{
    transform: scale(1.2);
    cursor: default;
}

.leistung-bild{
    animation-name: animateflow;
    animation-duration: 1s;
}

@keyframes animateflow{
    from{opacity: 0;}
    to{opacity: 1;}
}
.leistung-bild button{
	border: none;
    background: none;
}

/* --- Kontakt --- */

.kontaktabschnitt{
    display: flex;
    justify-content: space-around;
    padding: 1.5vh;
    flex-wrap: wrap;
    align-items: center;
    background-color:  #f9f9f9;
}
.kontaktabschnitt a{
    color: black;
}
.kontaktabschnitt a:hover{
    color: 3385d9;
}
.kontaktabschnitt img{
    width: 35px;
    height: 35px;
    display: inline;
    margin-right: 10px;
}
.kontaktdaten{
    display: flex;
    letter-spacing: 0.025em;
    flex-direction: column;
    margin-top: 1.5vh;
    font-size: 120%;
}
.kontaktItem{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 3px;
    padding: 0.2vh 0 0.2vh 0;
}
.kontaktabschnitt .QRCode {
        visibility: hidden;
    }
@media (min-width:768px){
    .kontaktabschnitt .QRCode {
        height: 22vw;
        width: 22vw;
        visibility: visible;
    }
    .kontaktdaten{
        /* height: 20vw;
        width: 20vw; */
        font-size: 170%
    }
}
/* ---Formular--- */
 
form{
    padding: 1.5vh;
    margin-top: 2vh;
    border: 5px solid #ececec;
    border-radius: 5px;
    max-width: 75vw;
}
input,textarea{
    border: 1px solid #3385D9;
    border-radius: 2px;
    margin: 7px;
    height: 4.5vh;
    max-width: 60vw;
    font-size: 1.3em;
}
form textarea{
    display: block;
    width: 60vw;
    height: 10vh;
}
@media (min-width:768px) {
    form{
        margin: 0;
    }
    form textarea{
        width: 30vw;
    }
}

form legend{
    font-size: 1.5em;
    margin: 10px;
    margin-left: 7.5px;
}
#anfrage{
    height: 50px;
    overflow: auto;
}
form input::placeholder{
    color: darkgray;
    font-size: 1.15em;
    text-align: left;
}
form textarea::placeholder{
    color: darkgray;
    font-size: 1.15em;
}
button{
    color: black;
    border: 1px solid #3385D9;
    background-color: white;
    font-size: 1.2em;
    margin-left: 7.5px;
}
button:hover{
    cursor: pointer;
}
#kontaktformular-abschicken-knopf:hover{
    background-color:  #3385D9;
}
.absendebereich{
    display: flex;
}
#formErfolgreich{
    margin: 5px auto auto 10px;
    visibility: hidden;
}

/* FORM */
.formSuccess{
    text-align: center;
    margin-top: 5vh;
}
.formSuccess a{
    color: #3385D9;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 550;
}
.formSuccess button{
    color: #3385D9;
    margin: 1vh;
}
.formSuccess button:hover{
    color: black;
}
.formSuccess a:hover{
    color: black;
}
.formSuccess h1{
    padding-top: 2.5vh;
    padding-bottom: 1vh;
}
.formSuccess img{
    border: 0.5vh solid #3385D9;
    border-radius: 2px;
}

/* --- Impressum --- */
.impressum{
    height: 90vh;
    background-color: white;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.impressum-text{
    border: 0.5vh solid #3385D9;
    border-radius: 2px;
    font-size: 1.25em;
    padding: 1vh;
}
.disclaimer{
    font-size: 0.5em;
    border:0.5vh solid #3385D9;
}
.impressum img{
    scale: 1.5;
    border:0.5vh solid #3385D9;
}
@media(max-width:800px){
    .impressum{
        flex-direction: column;
        flex-wrap: nowrap;
        overflow: scroll;
        justify-content: center;
        padding-top: 15vh;
    }
    .impressum img{
        visibility: hidden;
    }
    .disclaimer{
        scale: 0.9;
    }
}


/* Fehler beim Formular */
