:root {
    /* color: rgb(30, 90, 70);
    color: rgb(246, 234, 196);
    color: rgb(75, 140, 155);
    color: rgb(20, 120, 60);
    color: rgb(40, 120, 100); */
    --bottomblue: rgb(45, 90, 160);
    --bottomblue: rgb(50, 80, 120);
    --bottomblue: rgb(59, 108, 66);
    --bottomblue: rgb(21, 58, 100);
    --bottomblue: rgb(50, 65, 110);
    --bottomblue: rgb(48, 62, 103);

    --lightblue: rgb(185, 215, 240);
    --blue: rgb(50, 100, 130);
    --darkblue: rgb(50, 65, 85);
    --green: rgb(0, 234, 0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    font-family: 'Roboto','Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Lato','Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    height: 100%;
    /* overflow-y: hidden; */
}

body {
    /* border: 3px solid red; */
    position: relative;
    margin: 0;

    height: 100%;
    height: fit-content;
}

.body::-webkit-scrollbar {
    width: 5px;
}

.body::-webkit-scrollbar-track {
    background-color: rgb(70, 70, 70);
    border-radius: 50px;
}

.body::-webkit-scrollbar-thumb {
    background-color: rgba(240, 240, 240, 0.5);
    border-radius: 50px;
}
.body::-webkit-scrollbar {
    /* display: none; */
}


.display-filter {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 100px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    /* height: 100%; */
            
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 9999;
    display: none;
}
.display-filter.show {
    opacity: 1;
    display: flex;
}

.header {
    /* border: 3px solid red; */
    /* background-color: rgba(0, 0, 0, 0.3); */
    background-color: whitesmoke;
    
    color: black;
    /* color: white; */

    height: fit-content;
    height: 100px;
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* position: relative; */

    position: fixed;
    
    z-index: 999999;
    /* z-index: 1; */
    
    /* display: none; */
    /* box-shadow: 0 0 15px rgb(170, 170, 170); */
}

.header-logo {
    /* border: 3px solid yellow; */
    /* width: 100%; */
    /* max-width: 115px; */
    height: 100%;
    /* max-height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-right: auto;

    cursor: pointer;
}

.header-logo img {
    border: 1px solid rgb(30, 30, 30);
    display: block;
    object-fit: cover;
    width: 100%;
    max-width: 350px;
    max-width: 115px;
    max-height: 100%;
}

.header span {
    /* border: 3px solid rgb(255, 233, 0); */
    display: none;
    font-size: 1.1rem;
    font-weight: 500;
    /* text-transform: uppercase; */
    padding: 0.3rem;
    margin: 0 1rem;
    cursor: pointer;
}

.header span:hover {
    scale: 1.01;
    transition: all 0.1s;
    border-bottom: 2px solid black;
}

.header .redirect-contact {
    border: 3px solid var(--bottomblue);
    background-color: var(--bottomblue);
    color: white;
    /* width: 200px; */
    margin-left: auto;
    padding: 0.7rem 1.7rem;
    cursor: pointer;
}

.header .redirect-contact:hover {
    background-color: white;
    color: var(--bottomblue);
    transition: 0.2s;
}

.top {
    /* border: 3px solid orangered; */
    /* background-color: var(--gold); */
    /* height: 80px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.bar {
    /* border: 3px solid red; */
    width: 30px;
    width: 25px;
    height: 3px;
    /* background-color: var(--black); */
    background-color: black;
    background-color: var(--bottomblue);
    border-radius: 5px;
    transition: all 0.3s ease-in;
}
.bar-dark {
    background-color: black !important;
}

#bar2-dark,
#bar2,
#bar3-dark,
#bar3 {
    margin-top: 5px;
}

.navigation {
    /* border: 3px solid rebeccapurple; */
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;

    position: fixed;

    top: 100px;
    right: -200%;
    width: 100%;
    height: 100vh;
    /* height: 400px; */
    
    z-index: 999999999;

    overflow: scroll;
}

.navigation::-webkit-scrollbar {
    display: none;
}

.nav {
    /* border: 3px solid green; */
    position: absolute;
    width: 90%;
    max-width: 250px;
    padding-top: 30px;
}

.nav-child {
    /* border: 3px solid yellow; */
    /* background-color: whitesmoke; */
    color: rgb(30, 30, 30);
    /* text-align: center; */
    /* text-transform: uppercase; */
    list-style-type: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 30px;
    margin: 0.5rem 0;
    border-bottom: 1pt solid rgba(70, 70, 70, 0.3);
    cursor: pointer;
}

.nav-child:hover {
    transition: 0.2s;
    scale: 1.01;
    color: var(--bottomblue);
    border-bottom: 2px solid var(--blue);
}

.navigation .nav-contact {
    border: 3px solid var(--bottomblue);
    background-color: var(--bottomblue);
    color: white;
    width: fit-content;
    padding: 0.7rem 1.7rem;
    margin: 2rem auto 0;
    cursor: pointer;
}

.navigation .nav-contact:hover {
    background-color: white;
    color: var(--bottomblue);
    transition: 0.2s;
}

.hamburger {
    background: 0;
    border: 0;
    /* border: 1px solid red; */
    cursor: pointer;
}
.hamburger:hover {
    scale: 1.02;
    transition: 0.2s;
}

.navigation.active {
    transition: 0.3s;
    right: 0;
}

.hamburger.open #bar1-dark,
.hamburger.open #bar1 {
    /* background-color: var(--gold); */
    transform: rotate(45deg) translate(5.4px, 6px);
}

.hamburger.open #bar2-dark,
.hamburger.open #bar2 {
    background-color: transparent !important;
    transform: translateX(-30px);
}

.hamburger.open #bar3-dark,
.hamburger.open #bar3 {
    /* background-color: var(--gold); */
    transform: rotate(-45deg) translate(5.4px, -6px);
}


@media (min-width: 600px) {
    .header-logo {
        padding: 0.8rem 0;
        padding-left: 2rem;
    }

    .top {
        padding-right: 2rem;
    }
}

@media (min-width: 900px) {
    .header span {
        display: inherit;
        margin: 0 2rem;
    }

    .header p,
    .header span {
        font-size: 18px;
    }

    .header-logo {
        padding-left: 4rem;
    }

    .header span:last-of-type {
        margin-right: 4rem;
    }

    .top {
        display: none;
    }

    .navigation {
        display: none;
    }
}





.main {
    /* border: 3px solid lawngreen; */
    position: relative;
    background-color: white;
}

.main-home {
    /* border: 3px solid purple; */
    max-width: 100%;
    height: 100%;

    position: relative;
    overflow: hidden;
}

.main-home-start {
    /* border: 3px solid red; */
    height: 60vh;
}

.main-home-start::before {
    /* border: 3px solid lawngreen; */
    content: "";
    width: 100%;
    height: 100%;
    height: calc(60vh - 100px);
    /* height: 60vh; */
    background-image: url(images/maler-background-rainbow.png);
    /* background-image: url(images/prantl-shiatsu-logo-back.png); */
    /* background-image: url(images/prantl-background-img-schmal.jpeg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); */

    background-blend-mode: screen;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: right 80%;
    /* background-position: center center; */
    background-size: cover;
    

    position: absolute;
    top: 100px;
    right: 0;
    bottom: 0;
    /* left: 0; */

    z-index: 0;
}

.main-home-start-box {
    /* border: 3px solid yellow; */
    width: 100%;

    z-index: 1;
}

.main-home-start-box-child {
    /* border: 3px solid green; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main-home-start-box-child h1 {
    text-align: center;
    max-width: 400px;
    /* font-weight: 400; */
    font-size: 1.1rem;

    /* padding: 1.5rem 1rem; */
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin: 0;
}
.main-home-start-box-child h1 b {
    font-weight: 900;

}

.main-home-start-box-child .h1-top {
    font-size: 1.7rem;
    width: 550px;
    font-weight: 700;
    line-height: 1.3;
    margin: 2.5rem 0;
}

.main-home-start-box .redirect-contact {
    border: 3px solid var(--bottomblue);
    background-color: var(--bottomblue);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    width: fit-content;
    margin: 2rem 0;
    padding: 0.7rem 1.7rem;
    cursor: pointer;
}
.main-home-start-box .redirect-contact:hover,
.header .redirect-contact:hover {
    background-color: white;
    color: var(--bottomblue);
    transition: 0.2s;
}




@media (min-width: 400px) {
    .main-home-start-box-child h1 {
        max-width: 430px;
    }

    .main-home-start-box-child .h1-top {
        font-size: 1.8rem;
        max-width: 500px;

    }
}

@media (min-width: 450px) {
    .main-home-start-box-child {
        padding: 1.5rem;
    }

    .main-home-start-box .redirect-contact {
        font-size: 18px;
        margin: 2.5rem 0;
    }
}

@media (min-width: 600px) {
    .main-home-start-box-child {
        padding: 2rem;
    }

    .main-home-start {
        height: 75vh;
    }

    .main-home-start::before {
        height: calc(75vh - 100px);
    }

}

@media (min-width: 800px) {
    .main-home-start {
        height: 100vh;
    }

    .main-home-start::before {
        height: calc(100vh - 100px);
    }

    .main-home-start-box {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        height: calc(80vh - 100px);

        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        margin: calc(10vh + 100px) auto 0;
    }

    .main-home-start-box-child {
        align-items: start;
        padding: 1.5rem;
    }

    .main-home-start-box-child h1 {
        text-align: start;
        max-width: 550px;
        font-weight: 400;
        line-height: 1.8;
        letter-spacing: 0.7px;
        margin: 2rem 0 2.8rem;
    }

    .main-home-start-box-child .h1-top {
        font-size: 2rem;
        font-weight: 900;
        line-height: 1.3;
        margin: 0;
    }


    .main-home-start-box .redirect-contact {
        margin: 0;
    }
}

@media (min-width: 900px) {
    .main-home-start-box-child {
        align-items: start;
        padding: 1.5rem 2.5rem;
    }

    .main-home-start-box-child .h1-top {
        font-size: 2.3rem;
    }
}

@media (min-width: 1000px) {
    .main-home-start-box-child {
        align-items: start;
        padding: 1.5rem 4rem;
    }

    .main-home-start-box-child h1 {
        margin: 2.5rem 0 3.3rem;
    }
}



.main-divider {
    /* border: 3px solid green; */
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}
.main-divider-body {
    /* border: 3px solid green; */
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0;
    display: none;
}
.main-divider-bottom {
    /* border: 3px solid green; */
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 0 2rem;
}
.main-divider.hide,
.main-divider-body.hide,
.main-divider-bottom.hide {
    display: none;
}

.main-divider-bottom div,
.main-divider-body div,
.main-divider div {
    border: 1px solid var(--bottomblue);
    width: 20%;
    max-width: 100px;
}

.main-divider-bottom img,
.main-divider-body img,
.main-divider img {
    /* border: 3px solid red; */
    display: block;
    object-fit: cover;
    width: 100%;
    max-width: 50px;
    margin: 0 0.5rem;
}

@media (min-width: 450px) {
    .main-divider {
        margin: 0.5rem 0 1rem;
    }
}

@media (min-width: 600px) {
    .main-divider {
        margin: 0 0 1rem;
    }
}

@media (min-width: 800px) {
    .main-divider {
        display: none;
    }
    .main-divider-body {
        display: flex;
    }
    .main-divider-bottom {
        display: none;
    }
}




.main-bero {
    /* border: 3px solid rebeccapurple; */
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;

    scroll-margin-top: 100px;
}

.main-bero-header {
    /* border: 3px solid green; */
    color: var(--bottomblue);
    font-size: 1.7rem;
    font-weight: 900;
    width: 100%;
    text-align: center;
    padding: 0 1rem;
    margin: 1.5rem 0 3rem;
    letter-spacing: 0px;
}

.main-bero-box {
    /* border: 3px solid yellow; */
    background-color: white;
    color: var(--bottomblue);
    padding: 0.5rem;
    width: 100%;
    max-width: 880px;
    display: grid;
    grid-gap: 25px;

    /* grid-template-columns: repeat(6, minmax(200px, 1fr)); */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    
    /* grid-auto-rows: 350px; */
    grid-auto-flow: dense;

    overflow: hidden;
}

.main-bero-box div {
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 1rem;
}

.main-bero-box div:focus,
.main-bero-box div:hover {
    border: 2px solid rgb(30, 30, 30);
    box-shadow: none;
    transition: 0.2s;
    scale: 1.03;
}

.main-bero-box h2 {
    /* border: 3px solid purple; */
    color: black;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.main-bero-box p {
    /* border: 3px solid purple; */
    color: black;
    font-size: 1.1rem;
    line-height: 1.5;
}
.main-bero-box p b {
    color: var(--bottomblue);
    font-weight: 700;
}

.main-bero-box-1 img,
.main-bero-box img {
    /* border: 3px solid green; */
    display: block;
    width: 100%;
    max-width: 100px;
    max-width: 80px;
    margin: 1rem auto;
    object-fit: cover;
}

.normal-box {
    /* border: 3px solid red; */
    overflow: hidden;
    grid-column: span 6;
}

.normal-box img {
    transition: 0.5s ease-in-out;
}

.normal-box:focus img,
.normal-box:hover img {
    transform: scale(1.1);
}

.normal-pic:focus img,
.vertical-pic:focus img,
.horizontal-pic:focus img {
    transform: scale(1.1);
}

.main-bero-box:last-child {
    padding-bottom: 2rem;
}

@media (min-width: 350px) {
    .main-bero-box {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .main-bero-box div {
        padding: 1.25rem;
    }
}

@media (min-width: 400px) {
    .main-bero-box div {
        padding: 1.5rem;
    }
}

@media (min-width: 500px) {
    .main-bero-header {
        font-size: 2rem;
        padding: 0;
    }
}

@media (min-width: 800px) {
    .main-bero-box p {
        line-height: 1.8;
    }
}

@media (min-width: 1300px) {
    .main-bero-box {
        max-width: 1280px;
    }

    .main-bero-box div {
        padding: 1.5rem 1.8rem;
    }
}




.main-bero-about-me {
    /* border: 3px solid rebeccapurple; */
    padding: 0 1.5rem 2rem;
    /* scroll-margin-top: 100px; */
    /* scroll-margin-top: calc(100px + 3rem); */
}

.main-bero-about-me p {
    /* border: 3px solid red; */
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.main-bero-about-me p b {
    /* border: 3px solid red; */
    font-weight: 600;
    text-decoration: underline;
}

.main-bero-about-me-box {
    /* border: 3px solid yellow; */
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.main-bero-about-me-box-top {
    /* border: 3px solid black; */
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.main-bero-about-me-box-top::before {
    /* border: 3px solid lawngreen; */
    content: "";
    width: 100%;
    height: 100%;
    min-height: 60vh;
    background-image: url(images/colors-imagepicture.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));

    background-blend-mode: screen;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    /* background-position: right 80%; */
    background-position: center center;
    background-size: cover;

    z-index: 0;
}

.main-bero-about-me-box-top .txt {
    /* border: 3px solid blue; */
    color: white;
    text-shadow: 0 0 2px black;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 1.5px;

    position: absolute;
    /* left: 25px;
    bottom: 125px; */

    padding: 0;
    margin: 0;
    margin-top: -2rem;

    z-index: 1;
}

.main-bero-about-me-box-top span {
    /* border: 3px solid red; */
    border: 2px solid white;
    background-color: var(--bottomblue);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    
    position: absolute;
    /* left: 25px; */
    bottom: 40px;
    
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    
    z-index: 1;
    cursor: pointer;
}

.main-bero-about-me-box-top svg {
    margin-right: 0.4rem;
    margin-bottom: -0.1rem;
}


.main-bero-about-me-box-top span:focus,
.main-bero-about-me-box-top span:hover {
    /* scale: 1.02; */
    transition: 0.2s;
    background-color: whitesmoke;
    color: var(--bottomblue);
    box-shadow: 0 0 5px black;
}

.main-bero-about-me-box-bottom {
    /* border: 3px solid green; */
    width: 100%;
    /* max-width: 380px; */
    max-width: 600px;
    padding: 0;

    scroll-margin-top: 100px;
}

.main-bero-about-me-header {
    /* border: 3px solid green; */
    color: var(--bottomblue);
    font-size: 1.7rem;
    font-weight: 900;
    width: 100%;
    text-align: center;
    padding: 0 1rem;
    margin: 2rem 0;
    letter-spacing: 0px;
}

@media (min-width: 400px) {
    .main-bero-about-me {
        padding: 0 1.5rem 2rem;
    }
}

@media (min-width: 500px) {
    .main-bero-about-me {
        padding: 0 2rem 2rem;
    }
}

@media (min-width: 800px) {
    .main-bero-about-me p {
        line-height: 1.8;
    }

    .main-bero-about-me-box {
        flex-direction: row-reverse;
        justify-content: space-evenly;
        align-items: stretch;
        height: fit-content;
        padding: 0 1rem;
    }

    .main-bero-about-me-box {
        margin: 3.5rem auto 2rem;
    }

    .main-bero-about-me-box-top {
        width: 45%;
        /* max-width: inherit; */
        margin: 0;
        flex: 1;
    }

    .main-bero-about-me-box-top::before {
        min-height: inherit;
    }

    .main-bero-about-me-box-top .txt {
        font-size: 2rem;
    }

    .main-bero-about-me-box-top span {
        bottom: 25%;
    }
 
    .main-bero-about-me-box-bottom {
        width: 55%;
        max-width: inherit;
        margin: 0;
        padding-right: 1rem;

        scroll-margin-top: calc(100px + 3rem);
    }

    .main-bero-about-me-header {
        font-size: 2rem;
        text-align: start;
        margin-top: 0;
        padding: 0;
    }
}

@media (min-width: 900px) {
    .main-bero-about-me-box-top span {
        bottom: 20%;
    }
}

@media (min-width: 1000px) {
    .main-bero-about-me-box-bottom {
        width: 60%;
        padding-right: 2rem;
    }
    .main-bero-about-me-box-top {
        width: 40%;
    }

    .main-bero-about-me-box-top span {
        bottom: 15%;
    }
}




.main-galery {
    /* border: 3px solid red; */
    background-color: white;
    /* background-color: var(--lightblue); */
    width: 100%;
    scroll-margin-top: 100px;
    scroll-margin-top: calc(100px - 1rem);
}

.main-galery-box {
    /* border: 3px solid yellow; */
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}

.main-galery-header {
    /* border: 3px solid green; */
    color: var(--bottomblue);
    text-align: center;
    font-size: 1.7rem;
    font-weight: 900;
    width: 100%;
    
    padding: 2rem 0;

    letter-spacing: 0px;
}

.galery-pic-container {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(6, minmax(20px, 1fr));
    grid-auto-rows: 230px;
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}

.galery-pic-container div {
    border: 2px solid rgb(30, 30, 30);
    border: 2px solid var(--darkblue);
}

.galery-pic-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.normal-pic {
    /* border: 3px solid red; */
    overflow: hidden;
    grid-column: span 6;
}

.vertical-pic {
    /* border: 3px solid green; */
    overflow: hidden;
    grid-column: span 3;
    grid-row: span 2;
}

.horizontal-pic {
    /* border: 3px solid blue; */
    overflow: hidden;
    grid-column: span 6;
}

.normal-pic-additional {
    display: none;
}

.normal-pic img,
.vertical-pic img,
.horizontal-pic img {
    transition: 0.5s ease-in-out;
}

.normal-pic:hover img,
.vertical-pic:hover img,
.horizontal-pic:hover img {
    transform: scale(1.1);
}

.normal-pic:focus img,
.vertical-pic:focus img,
.horizontal-pic:focus img {
    transform: scale(1.1);
}

.galery-container:last-child {
    padding-bottom: 2rem;
}

@media (min-width: 400px) {
    .main-galery-box {
        padding: 0 2rem 2rem;
    }
}

@media (min-width: 500px) {
    .main-galery-box {
        padding: 4rem 4rem 1.5rem;
    }

    .main-galery-header {
        font-size: 2rem;
        padding: 0 0 2rem;
    }

    .normal-pic {
        grid-column: span 3;
    }
    
    .pic-resize {
        grid-column: span 3;
    }
}

@media (min-width: 800px) {
    .main-galery-header {
        padding: 0 0 3rem;
    }

    .normal-pic {
        grid-column: span 2;
    }

    .vertical-pic {
        grid-column: span 2;
    }

    .horizontal-pic {
        grid-column: span 4;
    }

    .pic-resize {
        grid-column: span 2;
    }

    .normal-pic-additional {
        display: inherit;
    }
}



.main-kontakt {
    /* border: 3px solid red; */
    background-color: var(--bottomblue);

    position: relative;
    width: 100%;

    /* display: none; */
    scroll-margin-top: 100px;
}

.main-kontakt-bottom {
    /* border: 3px solid purple; */
    display: flex;
    flex-direction: column;

    width: 100%;
    height: fit-content;
    padding: 0.5rem;
}


.main-kontakt-bottom-maps-header {
    /* border: 3px solid rgb(50, 100, 130); */
    /* font-family: 'Cardo','Montserrat', sans-serif; */
    font-size: 1.7rem;
    font-weight: 900;
    padding: 3rem 1.5rem 2rem;
    letter-spacing: 0px;
    text-align: center;

    color: white;

    /* color: var(--bottomblue);
    background-color: white; */
}

.main-kontakt-bottom-maps {
    /* border: 4px solid rgb(50, 100, 130); */
    position: relative;
    width: 100%;
    /* max-width: 1220px; */
    height: 350px;
    padding: 0 1.5rem 1.5rem;
    margin: 0 auto;
    margin-bottom: -0.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    /* border: 3px solid white;
    background-color: white; */
    
}
.main-kontakt-bottom-maps iframe {
    max-width: 1168px;
}

.maps-info {
    /* border: 3px solid blue; */
    background-color: rgb(245, 245, 245);
    width: 80%;
    max-width: 375px;
    height: fit-content;
    line-height: 1.4;
    text-align: center;
    /* height: 400px; */
    padding: 1rem;

    position: absolute;

    z-index: 9999;
}
.maps-cookies {
    /* border: 3px solid blue; */
    font-weight: 500;
    color: black;
    color: rgb(50, 70, 130);
    color: rgb(30, 110, 70);
    cursor: pointer;
}

.main-kontakt-bottom-maps iframe {
    width: 100%;
    height: 100%;

    z-index: 9999;
}

.main-kontakt-bottom-info {
    /* border: 3px solid yellow; */
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 1rem;
}

.main-kontakt-info {
    border: 2px solid rgb(30, 30, 30);
    background-color: white;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    padding: 1.5rem;
}

.main-kontakt-info h2 {
    font-size: 1.4rem;

    padding: 0 0 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-kontakt-info .main-kontakt-info-kontakt {
    font-size: 1.8rem;

    padding: 0 0 2.2rem;
    font-weight: 900;
    letter-spacing: 0px;
}

.main-kontakt-info h4 {
    font-size: 1rem;
    font-size: 18px;

    padding: 0 0 1.5rem;
    font-weight: 600;
    letter-spacing: 0;
}

.main-kontakt-info .main-kontakt-info-open {
    font-size: 1.2rem;

    padding: 2.2rem 0 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.main-kontakt-info h5 {
    font-size: 1rem;
    font-weight: 500;
    padding: 0 0 0.7rem;
    letter-spacing: 0;
}

.main-kontakt-info div {
    /* border: 3px solid red; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: fit-content;
    padding: 0.8rem 0 0;
}

.main-kontakt-info div svg {
    margin-right: 0.5rem;
}

.main-kontakt-info a {
    color: var(--bottomblue);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.main-kontakt-info a:focus,
.main-kontakt-info a:hover {
    font-size: 1.02rem;
    transition: 0.1s;
    /* font-weight: 700; */
    color: var(--blue);
}

.main-kontakt-bottom-form {
    /* border: 3px solid red; */
    position: relative;
    width: 100%;
    max-width: 750px;
    padding: 1rem;
}

.send-form-successful {
    /* border: 3px solid blue; */
    background-color: rgb(0, 130, 0);
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 1.5rem;
    width: 90%;
    height: fit-content;
    max-width: 400px;
    margin: auto;
    line-height: 1.3;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(245, 245, 245, 0.2);

    display: none;
}

.send-form-successful.show {
    display: inherit;
}

.send-form-successful svg {
    margin-bottom: 1rem;
}

.main-kontakt-bottom-form h2 {
    /* border: 3px solid orange; */
    font-size: 1.8rem;
    font-weight: 700;
    color: white;

    padding: 2rem 0.7rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

    scroll-margin: 3rem;

    letter-spacing: 0px;

}

.form-parent-container {
    /* border: 3px solid yellow; */
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.form-parent-container.hide {
    opacity: 0;
    visibility: hidden;
}

.form-parent {
    /* border: 3px solid green; */
    width: 100%;
    padding: 0 0.7rem;
}

.form-parent-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-input-container {
    border: 2px solid rgb(30, 30, 30);
    display: flex;
    flex-direction: row;
    align-items: center;
    /* margin-bottom: 0.5rem; */
    padding: 0.4rem 0.5rem;
    /* border-bottom: 2px solid rgb(30, 30, 30); */

    width: 100%;
    height: 35px;
    background-color: white;

    /* box-shadow: 0 0 3px white; */
    box-shadow: 0 0 2px rgb(70, 70, 70);

    margin: 0 0 1.5rem;
}
.form-input,
.form-message {
    font-weight: 400;
}

.form-input::placeholder,
.form-message::placeholder {
    letter-spacing: 0;
    color: rgb(30, 30, 30);
}

.main-kontakt-bottom-form input {
    font-size: 1rem;
    background-color: transparent;
    width: 100%;
    border: none;
    /* border: 3px solid red; */
    /* max-width: 300px; */
    letter-spacing: 0.5px;
    outline: none;
}

.form-message {
    border: 2px solid rgb(30, 30, 30);
    background-color: white;

    font-size: 1rem;
    width: 100%;
    padding: 0.5rem;
    resize: none;
    letter-spacing: 0.5px;
    outline: none;
}

.form-send-btn {
    font-weight: 600;
    border: 3px solid var(--bottomblue);
    border: 3px solid rgb(30, 30, 30);
    background-color: rgb(30, 30, 30);
    background-color: white;

    color: white;
    color: var(--bottomblue);
    color: black;
    width: fit-content;
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;

    letter-spacing: 1.2px;
    cursor: pointer;
}

.form-send-btn:focus,
.form-send-btn:hover {
    /* scale: 1.01; */
    /* transition: 0.2s; */
    font-weight: 600;
    color: rgb(30, 30, 30);
    color: var(--bottomblue);
    border: 3px solid var(--bottomblue);
    background-color: rgb(30, 30, 30);
    background-color: var(--darkblue);
    background-color: var(--lightblue);
    background-color: whitesmoke;
    box-shadow: 0 0 4px rgb(30, 30, 30);
}


.form-parent-checkbox {
    /* border: 3px solid green; */

    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 1.3rem 0.7rem 0.3rem;
    padding: 0;
}

.form-parent-checkbox .form-checkbox {
    /* border: 3px solid red; */
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
}
.form-parent-checkbox span {
    font-size: 0.9rem;
    color: white;
    margin-left: 0.3rem;
    padding-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.form-parent-checkbox span b {
    color: rgb(30, 30, 30);
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.form-parent-checkbox-container {
    /* border: 3px solid red; */
    position: relative;
    /* padding-top: 0.3rem; */
    margin-left: 0.5rem;
    width: 30px;
    height: 30px;
}
.form-parent-checkbox-container.checked>.form-checkbox-label::before {
    background-color: rgb(10, 150, 50);
    background-color: rgb(30, 90, 70);
    background-color: var(--green);
    /* background-color: rgb(70, 100, 255); */
}
.form-parent-checkbox-container.agb-failed>.form-checkbox-label::before {
    box-shadow: 0 0 5px red;
    border: 1px solid rgb(220, 0, 0);
}
.form-parent-checkbox-container.checked>.form-checkbox-label::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}
.form-checkbox {
    opacity: 0;
}
.form-checkbox-label {
    /* border: 3px solid purple; */
    padding-left: 30px;
    font-size: 1.6rem;
    line-height: 1rem;
    color: white;
    cursor: pointer;
}
.form-checkbox-label::before {
    /* border: 1pt solid transparent; */
    /* border: 3px solid lawngreen; */
    content: "";
    position: absolute;
    /* top: -11px; */
    top: 2px;
    left: 0px;
    width: 17px;
    height: 17px;
    /* border: 1px solid rgb(50, 50, 50); */
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 0 3px black;
}
.form-checkbox-label::after {
    content: "";
    position: absolute;
    /* top: -8px; */
    top: 5px;
    left: 6px;
    width: 3px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transition: 0.2s ease;

    transform: scale(0);
    opacity: 0;
}

.fail {
    border: 2px solid rgb(230, 0, 0);
    background-color: rgb(255, 245, 245);
}

@media (min-width: 370px) {
    .main-kontakt-info {
        padding: 2rem;
    }
}

@media (min-width: 400px) {
    .main-kontakt-bottom-maps {
        padding: 0 2rem 2rem;
    }
}

@media (min-width: 500px) {
    .main-kontakt-bottom {
        padding: 3rem;
    }

    .main-kontakt-bottom-maps-header {
        font-size: 2rem;
        padding: 0 2.5rem 2rem;
    }

    .main-kontakt-bottom-maps {
        padding: 0 4rem 4rem;
    }

    .main-kontakt-info .main-kontakt-info-kontakt,
    .main-kontakt-bottom-form h2 {
        font-size: 2rem;
    }

}

@media (min-width: 800px) {
    .main-kontakt-bottom {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 900px) {
    .form-parent-container {
        flex-direction: row;
    }
}



.main-datenschutz {
    /* border: 3px solid lawngreen; */
    background-color: white;
    position: relative;
    width: 100%;
    padding-top: 100px;

    display: none;
}

.main-datenschutz .impressum-container .header-impressum-datenschutz {
    font-size: 1.7rem;
}

.main-datenschutz h2 {
    margin-top: 1.3rem;
}

.main-datenschutz h3 {
    margin-top: 1rem;
    font-weight: 500;
}

.impressum-start,
.datenschutz-start {
    scroll-margin-top: 200px;
}

.main-impressum {
    /* border: 3px solid red; */
    background-color: white;
    position: relative;
    width: 100%;
    padding-top: 100px;

    display: none;
}

.impressum-container {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 2rem;
    line-height: 1.3;
}
.impressum-container b {
    font-weight: 600;
}

.impressum-container a {
    overflow-wrap: break-word;
}

.impressum-container .impressum-br {
    margin-top: 1rem;
}

.impressum-container p {
    margin-top: 0.7rem;
}

.impressum-container .impressum-copyright {
    margin-top: 0.5rem;
}

.impressum-container .header-impressum-datenschutz {
    font-size: 2rem;
    padding: 1.8rem 0;
}

.y-lam,
.contact-number-impressum,
.contact-email-impressum {
    color: black;
    text-decoration: none;
}
.website,
.contact-number-impressum,
.contact-email-impressum {
    margin-left: 0.3rem;
}

@media (min-width: 400px) {
    .impressum-container {
        padding: 1rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 450px) {
    .main-datenschutz .impressum-container .header-impressum-datenschutz {
        font-size: 2rem;
    }

    .impressum-container {
        padding: 2rem;
        padding-bottom: 4rem;
    }
}




/*================
  footer
==================*/

.main-start-footer {
    /* border: 3px solid red; */
    background-color: var(--bottomblue);
    position: relative;

    /* background-color: rgba(255, 215, 0, 0.7); */
    color: white;

    padding: 1.5rem;
    padding-top: calc(1.5rem + 150px);

    /* display: none; */
    z-index: 1;
}

.main-start-footer-top-layer {
    /* border: 3px solid yellow; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    height: 150px;
    overflow: hidden;
}
.main-start-footer-top-layer img{
    /* border: 3px solid purple; */
    display: block;
    object-fit: cover;
    max-width: 100%;
    /* max-height: 100%; */
    margin-top: -10px;
}

.main-start-footer-container {
    /* border: 3px solid yellow; */
    display: flex;
    flex-direction: column;
    /* justify-content: start; */
}

.main-start-footer-image {
    /* border: 3px solid blue; */
    margin-top: 1.5rem;
}

.main-start-footer-image img {
    /* border: 3px solid red; */
    display: block;
    object-fit: cover;
    max-width: 250px;
}

.main-start-footer-body-bottom {
    /* border: 3px solid red; */
    margin: 0 auto 1.5rem;
}

.main-start-footer-body-bottom img {
    /* border: 3px solid green; */
    display: block;
    object-fit: cover;
    width: 100%;
    max-width: 500px;
    margin: auto;
}



.main-start-footer-body {
    /* border: 3px solid red; */
    display: flex;
    flex-direction: column;
}

.main-start-footer-body-container {
    /* border: 3px solid yellow; */
    padding: 1.5rem 0;
    margin: 0 1rem;
}
.main-start-footer-body-container:first-of-type {
    /* border: 3px solid yellow; */
    padding: 1rem 0 0;
}
.main-start-footer-body-container:last-of-type {
    padding-bottom: 2.5rem;
}

.main-start-footer-body-container-box {
    /* border: 3px solid green; */
    display: flex;
    flex-direction: column;
}

.main-start-footer-body-header {
    /* border: 3px solid blue; */
    font-size: 1rem;
    font-weight: bold;
    font-weight: 500;
    /* color: whitesmoke; */
    width: fit-content;
    margin-bottom: 1.3rem;
    text-decoration: underline;
    letter-spacing: 0;
}

.main-start-footer-body-caption {
    /* border: 3px solid green; */
    font-size: 15px;
    font-weight: 400;
    /* color: rgb(197, 242, 228); */
    color: rgb(200, 240, 230);
    color: rgb(20, 30, 60);
    color: white;
    width: fit-content;
    margin-top: 1rem;
    cursor: pointer;
    letter-spacing: 0;
}

.main-start-footer-body-caption-box {
    display: flex;
    flex-direction: row;
}

.main-start-footer-body-caption-box p,
.main-start-footer-body-container p {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
}

.main-start-footer-body-caption-box svg {
    margin-left: 0.3rem;
}

.main-start-footer-body-caption-rating a,
.main-start-footer-body-caption-phone a,
.main-start-footer-body-caption-contact a {
    font-weight: 400;
    text-decoration: none;
    margin-left: 0.5rem;
    color: white;
}
.main-start-footer-body-caption-rating a {
    margin-left: 0;
    /* text-transform: uppercase; */
}

.main-start-footer-body-caption-address,
.main-start-footer-body-caption-rating,
.main-start-footer-body-caption-phone,
.main-start-footer-body-caption-contact {
    /* border: 3px solid green; */
    font-size: 15px;
    font-weight: 400;
    /* color: rgb(197, 242, 228); */
    color: rgb(200, 240, 230);
    color: rgb(20, 30, 60);
    color: white;
    display: flex;
    flex-direction: row;
    /* align-items: start; */
    justify-content: start;
    width: fit-content;
    margin-top: 1rem;
    letter-spacing: 0;
}

.main-start-footer-body-caption-rating a:hover,
.main-start-footer-body-caption-phone a:hover,
.main-start-footer-body-caption-contact a:hover,
.main-start-footer-body-caption:hover,
.main-start-footer-body-caption p:hover {
    /* color: whitesmoke; */
    /* font-weight: 500; */
    text-decoration: underline;
    /* scale: 1.01; */
    transition: 0.2s;
}

.main-start-footer-bottom {
    /* border: 3px solid lawngreen; */
    font-size: 14px;
    border-top: 1pt solid rgb(150, 150, 150);
    color: rgb(230, 230, 230);
    /* width: 100%; */
    text-align: center;
    margin: 1rem 1.5rem 0;
    padding: 1rem 0 0;
}

.main-start-footer .main-start-footer-bottom span {
    letter-spacing: -0.3px !important;
}

@media (min-width: 600px) {
    .main-start-footer-body-container-box {
        flex-direction: row;
    }

    .main-start-footer-body-container:first-of-type {
        padding: 1.5rem 0;
    }

    .main-start-footer-body-container:last-of-type {
        padding-bottom: 3.5rem;
    }

    .main-start-footer-top-layer img{
        margin-top: -50px;
    }
}

@media (min-width: 700px) {
    .main-start-footer-top-layer img{
        margin-top: -100px;
    }
}

@media (min-width: 1000px) {
    .main-start-footer-body {
        flex-direction: row;
        justify-content: space-around;
    }

    .main-start-footer-top-layer img{
        margin-top: -150px;
    }
}

@media (min-width: 1200px) {
    .main-start-footer-top-layer img{
        margin-top: -200px;
    }
}