body {
    margin: 0;
    font-family: Helvetica, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
}
  
a {
    color: var(--color-black);
}

h1, h2 {
    color: #4d96b5;
    font-family: var(--font-deko);
    font-size: 32px;
    text-transform: uppercase;
}

h3 {
    color: var(--color-black);
    font-family: var(--font-deko);
    font-size: 24px;
    text-transform: uppercase;
}

main {
    margin-top: 60px;
    padding: 0 20px;
    gap: 40px;
    display: flex;
    flex-direction: column;
}


p {
    color: var(--color-black);
    font-family: var(--font-default);
    font-size: 16px;
}

li {
    font-family: var(--font-default);
}

.sprung {visibility: hidden; height: 0px !important; position: absolute; margin: -61px;}
.sprung-2 {visibility: hidden; height: 0px !important; position: absolute; margin: -130px;}

.button {
    background-color: var(--color-brand);
    border-radius: 2px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: none;
    align-items: center;
    color: #ffffff;
    font-family: 'pintono_01', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    gap: 10px;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.10);
    text-decoration: none;
    padding: 14px 50px;
    max-width: 450px;
    
}

footer {
    margin-top: 80px;
    background-color: #4d96b5;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

footer ul {
    list-style-type: none;
    padding-left: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 200%;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

/* Gallerie */

.gallerie {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: calc(100vw - 40px);
    overflow-x: scroll;
    
}

.gallerie img {
    max-width: 300px;
    object-fit: cover;
    object-position: center;
    /*box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.10);*/
    border-radius: 16px;
    aspect-ratio: 3/2;
}

/* Mitarbeiter Cards*/

.identity .vorname {
    color: #222;
    font-family: var(--font-deko);
    font-size: 26px;
    text-transform: uppercase;
}

.identity .nachname {
    color: #4d96b5;
    font-family: var(--font-deko);
    font-size: 26px;
    text-transform: uppercase;
}

.identity .name {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.identity .divider {
    padding: 10px 0;
    margin: 0 20px;
}

.identity .divider div {
    width: 1px;
    height: 100%;
    background-color: #4d96b5;
}

.identity .head {
    display: flex;
}

.mitarbeiter {
    display: flex;
    gap: 20px;
    max-width: calc(100vw - 60px);
    overflow: scroll;
    padding: 20px;
    margin: -20px 0 -20px -20px;
    overflow-y: hidden;
    
}

.mitarbeiter-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #ECECEC;
    background: #F6F6F6;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.10);
    min-width: 270px;
}

.mitarbeiter-card .identity {
    display: flex;
    flex-direction: row;
}

.mitarbeiter-card .identity img {
    width: 110px; 
    height: 110px; 
    position: relative; 
    border-radius: 9999px; 
    border: 2px #4D96B5 solid;
    object-fit: cover;
    outline-offset: -2px;
    aspect-ratio: 1/1;
}

.techniken ul {
    padding: 000 20px 0;
    margin-bottom: 0;
}

.techniken ul li {
    color: var(--color-black);
    font-size: 14px;
}

/* Angebot */ 
.angebot {
    padding-left: 16px;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 32px;
    background-color: rgba(77, 150, 181, 0.2);
    padding: 32px 48px;
    border-radius: 16px;
}

.angebot li {
    color: var(--color-black);
    font-size: 16px;
    line-height: 170%;
}

.angebot li::marker{
    color: #4d96b5;
}

/* Kontakt */


.map img {
     width: 100%;
     object-fit: cover;
     object-position: center;
     box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.10);
     border-radius: 16px;
     aspect-ratio: 3/2;
}

button img {
    width: 20px;
}

.button-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 1em;
}

/* oeffnungszeiten */

.oeffnungszeiten {
    display: flex;
    background-color: var(--test);
    flex-direction: column;
}

.oeffnungszeiten .oeffnungszeiten-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.oeffnungszeiten-row .left {
    display: flex;
    flex-direction: row;
    font-family: var(--font-deko);
    font-size: var(--text-size-medium);
    color: var(--color-black);
    align-items: center;

}

.oeffnungszeiten-row .right {
    font-family: var(--font-default);
    letter-spacing: 1px;
}

.oeffnungszeiten .oeffnungszeiten-row .left .devider {
    height: 20px;
    width: 2px;
    background-color: var(--color-brand);
    display: block;
    margin: 0 4px;
}

@media only screen and (min-width: 600px) {
    main {
      margin: 60px auto 0 auto;
      max-width: 1200px;
    }

    footer {
        flex-direction: row;
        padding: 16px;
        align-items: center;
        justify-content: space-between;
        width: calc(100vw - 32px);
        height: 40px;

    }
    footer div ul{
        flex-direction: row;
        display: flex;
        gap: 16px;

    }

    footer img {
        height: 32px;
    }

    

    .button {
        max-width: calc((100% / 2) - 100px);
    }
  }

  @media only screen and (min-width: 700px) {
    .kontakt-inner {
        display: flex;
        flex-direction: row;
        gap: 32px;

    }

    .kontakt-inner .button {
        max-width: 100%;
    }


    .kontakt-inner .button-list {
        width: 100%;
    }
    .map {
        max-width: calc(100% / 2);
    }
  }