: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); */
    --green: rgb(40, 120, 100);
    --blue: rgb(75, 140, 155);
    --gold: rgb(246, 234, 196);
}

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

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;
    right: 0;
    bottom: 0;
    left: 0;

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

.header {
    /* border: 3px solid red; */
    background-color: whitesmoke;
    background-color: rgb(73, 125, 150);
    background-color: var(--blue);

    color: white;

    height: fit-content;
    height: 100px;

    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    /* position: relative; */

    position: fixed;

    z-index: 999999;

    /* display: none; */
    box-shadow: 0 0 15px rgb(170, 170, 170);

}
.header.show-box-shadow {
    box-shadow: 0 0 15px rgb(170, 170, 170);
}

.header-logo {
    /* border: 3px solid yellow; */
    /* width: 100%; */
    max-width: 108px;
    height: 100%;
    /* max-height: 100%; */
    padding: 0.7rem 0;
    margin-right: auto;

    cursor: pointer;
}

.header-logo img {
    /* border: 3px solid green; */
    display: block;
    object-fit: cover;
    width: 100%;
    /* max-width: 100%; */
    max-height: 100%;
}

.header span {
    /* border: 3px solid rgb(255, 233, 0); */
    font-family: 'Sour Gummy','Montserrat', sans-serif;

    display: none;
    font-size: 1.5rem;
    padding: 0.3rem;
    margin: 0 1rem;
    cursor: pointer;
}

.header span:hover {
    /* border-bottom: 4px solid rgb(255, 233, 0); */

    color: rgb(255, 233, 0);
    color: var(--gold);
    scale: 1.02;
    transition: all 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: white;
    border-radius: 5px;
    transition: all 0.3s ease-in;
}

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

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

    position: fixed;

    top: -500px;
    width: 100%;
    height: 100vh;
    height: 500px;
    
    z-index: 99999;

    overflow: scroll;
}

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

.nav {
    /* border: 3px solid green; */
    position: absolute;
    width: 93%;
    max-width: 500px;
    padding-top: 0.1rem;
}

.nav-child {
    /* border: 3px solid purple; */
    background-color: rgb(73, 125, 150);
    background-color: var(--blue);
    color: white;
    text-align: center;
    /* text-transform: uppercase; */
    list-style-type: none;
    font-size: 1.3rem;
    font-weight: 400;
    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;

    /* VARIANTE 1 */
    /* color: rgb(255, 233, 0);
    border-bottom: 5px solid rgb(255, 233, 0); */


    /* VARIANTE 2 */
    font-weight: 400;
    background-color: rgb(255, 233, 0);
    background-color: gold;
    background-color: var(--gold);
    color: black;
}

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

.navigation.active {
    transition: 0.3s;
    /* left: 0; */
    top: 100px;
}

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

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

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


@media (min-width: 500px) {
    .header-logo {
        margin-left: 1rem;
    }
    .top {
        margin-right: 1rem;
    }
}

@media (min-width: 700px) {
    .header-logo {
        margin-left: 2rem;
    }
    .top {
        margin-right: 2rem;
    }
}

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

    .navigation {
        display: none;
    }

    .header span {
        display: inherit;
    }
}

@media (min-width: 1000px) {
    .header span {
        margin: 0 1.5rem;
    }
}

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



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

.main-home {
    /* border: 3px solid purple; */
    max-width: 100%;
    height: 100vh;
    /* height: var(--window-height); */

    position: relative;
    overflow: hidden;
}

.main-home-start {
    /* border: 3px solid lawngreen; */
}

.main-home-start-text {
    /* border: 3px solid red; */
    /* background-color: white; */
    color: black;
    color: white;

    width: 100%;

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

    display: flex;
    align-items: center;
    justify-content: center; 
}

.main-home-start-text a {
    text-decoration: none;
}

.main-home-start-text-1 {
    animation: cool1 15s ease-in-out infinite;
}
.main-home-start-text-2 {
    animation: cool2 15s ease-in-out infinite;
}
.main-home-start-text-3 {
    animation: cool3 15s ease-in-out infinite;
}

.main-home-start-text p {
    border: 2px solid white;
    font-size: 1.7rem;
    text-align: center;
    /* background-color: white; */
    color: black;
    color: white;
    padding: 0.8rem 1.3rem;
    text-shadow: 0 0 10px rgb(30, 30, 30);
    border-radius: 3px;
    cursor: pointer;
}

.main-home-start-text-1 h1 {
    /* opacity: 0;
    visibility: hidden; */
    display: none;
}

.main-home-start-text-1 .text-1-0 {
    border: 2px solid white;

    display: flex;
    flex-direction: row;
    align-items: center;

    padding: 0 1.3rem;
    border-radius: 3px;
    cursor: pointer;
}

.main-home-start-text-1 .text-1-1 {
    font-size: 7rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgb(0, 0, 0);
    color: white;

}
.main-home-start-text-1 .text-1-2 {
    font-size: 2.5rem;
    text-shadow: 0 0 13px rgb(0, 0, 0);
    color: white;
}

@media (min-width: 450px) {
    .main-home-start-text p {
        font-size: 1.9rem;
    }
}

@media (min-width: 1000px) {
    .main-home-start-text p {
        font-size: 2.2rem;
    }
}

.main-home-start::before {
    content: "";
    width: 100%;
    /* height: 100%; */
    height: calc(100% - 100px);
    max-width: 100%;    
    /* background-image: url(images/Gutachten-Fachgebiet-Sport.jpeg), linear-gradient(90deg, rgba(50, 110, 150, 1), rgba(50, 110, 150, 1) 30%, transparent); */
    background-image: url(images/raum-resized.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    /* background-attachment: fixed; */
    background-blend-mode: screen;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center center;
    background-position: left center;
    /* background-position: 40% 70%; */
    background-size: cover;

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

    /* z-index: -1; */
}
.main-home-start-1::before {    
    background-image: url(images/background-flower-small.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background-image: url(images/background-flower-small.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-position: right center;
    background-position: center top;

    animation: cool1 15s ease-in-out infinite;

}
.main-home-start-2::before {    
    background-image: url(images/behandlung-boden-resized.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background-image: url(images/behandlung-quer.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background-image: url(images/behandlung-quer.jpg);
    background-position: center center;
    background-position: 77% 20%;

    animation: cool2 15s ease-in-out infinite;

}
.main-home-start-3::before {    
    background-image: url(images/schale-resized.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background-position: center center;
    background-position: 57% center;

    animation: cool3 15s ease-in-out infinite;

}

@keyframes cool1 {
    0% {right: 0%;}
    39% {right: 0%;}
    40% {right: -100%;}
    94% {right: -100%;}
    100% {right: 0%;}
}

@keyframes cool2 {
    0% {right: -100%;}
    27% {right: -100%;}
    33% {right: 0%;}
    94% {right: 0%;}
    100% {right: 100%;}
}

@keyframes cool3 {
    0% {right: -100%;}
    60% {right: -100%;}
    66% {right: 0%;}
    94% {right: 0%;}
    100% {right: 100%;}
}



.main-nicetoknow {
    /* border: 3px solid rebeccapurple; */
    scroll-margin-top: 120px;
}

.main-nicetoknow-header-box {
    /* border: 3px solid red; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 3rem 0 2rem;
}

.main-nicetoknow-header {
    /* border: 3px solid green; */
    text-align: center;
    color: rgb(73, 125, 150);
    color: var(--blue);
    font-family: 'Sour Gummy','Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 400;

    margin-bottom: 0.2rem;
}

.main-nicetoknow-header-underline {
    border: 4px solid rgb(73, 125, 150);
    border: 4px solid var(--blue);
    width: 100px;
}

.main-nicetoknow-parent-container {
    /* border: 3px solid blue; */
    /* background-color: rgba(30, 110, 85, 0.3); */
    /* padding: 0 0 2rem; */
    width: 100%;
}
.main-nicetoknow-parent-container:last-of-type {
    padding: 0 0 2rem;
}

.main-nicetoknow-parent {
    /* border: 3px solid red; */
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
}
.main-nicetoknow-parent-small {
    display: flex;
}
.main-nicetoknow-parent-big {
    display: none;
}

.main-nicetoknow-child {
    /* border: 3px solid green; */
    border: 2px solid rgb(30, 90, 70);
    border: 2px solid var(--green);
    background-color: rgb(75, 140, 155);
    background-color: rgba(75, 140, 155, 0.2);
    background-color: whitesmoke;

    width: 100%;
    margin: 1rem 0;
    padding: 1.5rem;
    border-radius: 10px;
}

.main-nicetoknow-child a {
    color: rgb(30, 90, 70);
    color: var(--green);
}

.main-nicetoknow-child span {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(73, 125, 150);
    color: rgb(75, 140, 155);
    color: rgb(30, 70, 90);
    color: rgb(30, 90, 70);
    color: var(--green);
}

.main-nicetoknow-child p {
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    line-height: 1.5;
}

@media (min-width: 1000px) {
    .main-nicetoknow-parent-container {
        padding: 0 0 2rem;
    }

    .main-nicetoknow-parent {
        width: 90%;
        max-width: 1500px;
        flex-direction: row;
        justify-content: space-evenly;
    }
    .main-nicetoknow-parent-small {
        display: none;
    }
    .main-nicetoknow-parent-big {
        display: flex;
    }
    
    .main-nicetoknow-child {
        width: 30%;
        margin: 0 1rem 0;
    }
}




.main-shiatsu {
    /* border: 3px solid rebeccapurple; */
    scroll-margin-top: 120px;
}

.main-shiatsu-header-box {
    /* border: 3px solid red; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 3rem 0 2rem;
}

.main-shiatsu-header {
    /* border: 3px solid green; */
    text-align: center;
    color: rgb(73, 125, 150);
    color: var(--blue);
    font-family: 'Sour Gummy','Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 400;

    margin-bottom: 0.2rem;
}

.main-shiatsu-header-underline {
    border: 4px solid rgb(73, 125, 150);
    border: 4px solid var(--blue);
    width: 100px;
}

.main-shiatsu p {
    /* border: 3px solid red; */
    font-size: 1.1rem;
    max-width: 850px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 1rem 2rem;
    text-align: center;

    line-height: 1.8;
}

.main-shiatsu p b {
    /* border: 3px solid red; */
    color: rgb(30, 90, 70);
    color: rgb(50, 123, 85);
    /* color: var(--green); */
    font-weight: 600;
}

@media (min-width: 700px) {
    .main-shiatsu p {
        padding: 1rem 2rem 2rem;
        text-align: justify;
    }
}



.main-shiatsu-pic-box {
    /* border: 3px solid red; */
    width: 100%;
    max-width: 850px;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
}

.main-shiatsu-pic-child {
    /* border: 3px solid blue; */
    height: 50vh;
    width: 90%;
    max-width: 400px;
    margin: 1rem;
    position: relative;
}

.main-shiatsu-pic-child::before {
    content: "";
    width: 100%;
    /* height: 100%; */
    max-width: 100%;
    /* background-image: url(images/Gutachten-Fachgebiet-Sport.jpeg), linear-gradient(90deg, rgba(50, 110, 150, 1), rgba(50, 110, 150, 1) 30%, transparent); */
    background-image: url(images/behandlung-arme-resized.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-image: url(images/behandlung-hoch2.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-image: url(images/behandlung-hoch2.jpg);
    background-image: url(images/behandlung-hoch2-neu.jpg);
    /* background-image: url(images/behandlungsraum.jpeg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); */
    /* background-attachment: fixed; */
    background-blend-mode: screen;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center center;
    /* background-position: left center; */
    /* background-position: 40% 70%; */
    background-size: cover;

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

    /* z-index: -1; */
}
.main-shiatsu-pic-child-two::before {
    background-image: url(images/behandlung-beine-resized.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-image: url(images/behandlung-quer2.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-image: url(images/behandlung-quer2.jpg);
    background-image: url(images/behandlung-quer2-neu.jpg);
    /* background-image: url(images/schale-resized.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); */
}
.main-shiatsu-pic-child-three::before {
    background-image: url(images/behandlung-nacken-resized.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-image: url(images/behandlung-hoch1.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-image: url(images/behandlung-hoch1.jpg);
    /* background-image: url(images/schale-resized.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); */
}

@media (min-width: 700px) {
    .main-shiatsu-pic-box {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1rem;
        margin: 0 auto 1rem;
    }

    .main-shiatsu-pic-child {
        margin: 1rem 1rem 2rem;
    }

    .main-shiatsu-pic-child-one {
        max-width: 25%;
    }

    .main-shiatsu-pic-child-two {
        max-width: 50%;
    }

    .main-shiatsu-pic-child-three {
        max-width: 25%;
    }
}


.main-shiatsu #behandlungen {
    scroll-margin-top: 100px;
}



.categories-anwendung {
    font-family: 'Sour Gummy','Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    background-color: whitesmoke;
    text-align: center;
    padding-top: 2.5rem;
}
.categories {
    /* border: 3px solid green; */
    background-color: rgba(50, 70, 130, 0.1);
    background-color: rgb(220, 240, 250);
    background-color: rgba(220, 240, 250, 0.5);
    background-color: whitesmoke;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem 2rem 2rem;
    /* margin-bottom: 0.5rem; */
}

.categories-small {
    display: flex;
}
.categories-big {
    display: none;
}

.categories ul {
    /* border: 3px solid yellow; */
    display: flex;
    flex-direction: column;
    /* justify-content: start; */
    /* align-items: start; */
    width: 100%;
    max-width: 460px;
    max-width: 470px;
    /* max-width: 450px; */
    margin-left: 1rem;
    line-height: 1.8;
}

.categories li {
    /* border: 3px solid purple; */
    color: black;
    width: fit-content;
    text-align: justify;
    text-align: start;
    padding: 0 1rem;
    margin-bottom: 1rem;
    list-style-position: outside;
    font-weight: 500;
    cursor: pointer;
}

.categories li b {
    color: rgb(30, 90, 70);
    color: var(--green);
    font-weight: 700;
}

@media (min-width: 900px) {
    .categories div {
        font-size: 1.1rem;
    }

    .categories {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: start;
        padding: 2.5rem 1.5rem 2rem 4rem;
    }

    .categories-small {
        display: none;
    }
    .categories-big {
        display: flex;
    }
    
}

.main-shiatsu-spaceholder {
    /* border: 3px solid purple; */
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-shiatsu-spaceholder-box {
    /* border: 3px solid yellow; */
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 20vh; */
    /* max-width: 130px; */
    width: 170px;
    height: 170px;
    border-radius: 50%;
    padding-bottom: 0.5rem;
}

.main-shiatsu-spaceholder-box img {
    /* border: 3px solid red; */
    width: 85%;
    display: block;
    object-fit: cover;
}


.text-me {
    /* border: 3px solid red; */
    background-color: var(--gold);
}

.text-me-box {
    /* border: 3px solid green; */
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-me-child-one {
    /* border: 3px solid yellow; */
    height: 60vh;
    width: 100%;
    max-width: 400px;
    max-width: 370px;
    margin: 0 1rem 2rem;
    position: relative;
}

.text-me-child-one::before {
    content: "";
    width: 100%;
    /* height: 100%; */
    max-width: 100%;
    /* background-image: url(images/Gutachten-Fachgebiet-Sport.jpeg), linear-gradient(90deg, rgba(50, 110, 150, 1), rgba(50, 110, 150, 1) 30%, transparent); */
    background-image: url(images/behandlungsraum.jpeg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-image: url(images/behandlung-nacken-resized.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-image: url(images/behandlungsraum-1.jpeg);
    background-image: url(images/behandlungsraum-2.jpeg);
    background-image: url(images/raum-neu-small.jpg);
    background-image: url(images/raum-mit-bild.JPG);
    /* background-attachment: fixed; */
    background-blend-mode: screen;
    /* background-blend-mode: multiply; */
    background-repeat: no-repeat;
    background-position: 40% center;
    background-position: center 47%;
    /* background-position: 40% 70%; */
    background-size: cover;

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

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

.text-me-child-two {
    /* border: 3px solid blue; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-me-child-arrow {
    /* border: 3px solid yellow; */
    /* position: absolute;
    top: -63px;
    left: 0;
    right: 0; */
    height: 60px;
    width: 100%;
    width: fit-content;
    margin: 0 auto;
    
    margin-top: calc(100vh - 80px);
    margin-top: var(--window-height);
    margin-top: calc(var(--window-height) - 60px);

    padding: 0 0.5rem;
    padding-top: 0.1rem;

    animation: start-animation-arrow 4s infinite;
}

.text-me-child-arrow svg {
    color: rgb(30, 30, 30);
}

@keyframes start-animation-arrow {
    0% {
        padding-top: 0.1rem;
    }
    42% {
        padding-top: 0.1rem;
    }
    46% {
        padding-top: 1.1rem;
    }
    50% {
        padding-top: 0.1rem;
    }
    54% {
        padding-top: 1.1rem;
    }
    58% {
        padding-top: 0.1rem;
    }
    100% {
        padding-top: 0.1rem;
    }
}

.text-me-child-two p {
    /* border-bottom: 2px solid black; */
    max-width: 240px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.7rem;
    padding: 0 0.2rem 0.3rem;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.text-me-child-two .text-me-child-btn {
    text-align: center;
    font-weight: 500;
    border: 3px solid var(--green);
    background-color: var(--green);

    /* background-color: rgb(50, 110, 150); */
    color: rgb(30, 90, 70);
    color: var(--green);
    color: white;
    width: fit-content;
    padding: 0.5rem 1.5rem;
    margin-top: 0.7rem;
    border-radius: 5px;

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

.text-me-child-two .text-me-child-btn:focus,
.text-me-child-two .text-me-child-btn:hover {
    scale: 1.01;
    transition: 0.2s;
    font-weight: 600;
    border: 3px solid var(--blue);
    background-color: var(--blue);
}

@media (min-width: 800px) {
    .text-me-box {
        width: 80%;
        flex-direction: row;
        justify-content: space-between;
    }

    .text-me-child-two p {
        max-width: inherit;
    }

    .text-me-child-one {
        /* width: 40%; */
        /* max-width: inherit; */
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .text-me-box {
        width: 90%;
    }
}





.main-about-me {
    /* border: 3px solid rebeccapurple; */
    scroll-margin-top: 120px;
}

.main-about-me-header-box {
    /* border: 3px solid red; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 3rem 0 2rem;
}

.main-about-me-header {
    /* border: 3px solid green; */
    text-align: center;
    color: rgb(73, 125, 150);
    color: var(--blue);
    font-family: 'Sour Gummy','Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 400;

    margin-bottom: 0.2rem;
}

.main-about-me-header-underline {
    border: 4px solid rgb(73, 125, 150);
    border: 4px solid var(--blue);
    width: 100px;
}

.main-about-me p {
    /* border: 3px solid red; */
    font-size: 1.1rem;
    max-width: 850px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 1rem 2rem;
    text-align: center;

    line-height: 1.8;
}

.main-about-me p b {
    /* border: 3px solid red; */
    color: rgb(30, 90, 70);
    color: rgb(50, 123, 85);
    /* color: var(--green); */
    font-weight: 600;
}

@media (min-width: 700px) {
    .main-about-me p {
        padding: 1rem 2rem 2rem;
        text-align: justify;
    }
}

.main-about-me-spaceholder {
    /* border: 3px solid purple; */
    /* background-color: whitesmoke; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.main-about-me-spaceholder-box {
    /* border: 3px solid yellow; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 20vh; */
    /* max-width: 130px; */
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.main-about-me-spaceholder-box::before {
    content: "";
    width: 100%;
    /* height: 100%; */
    max-width: 100%;
    background-image: url(images/selfie-neu.jpeg);
    /* background-attachment: fixed; */
    background-blend-mode: screen;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center 10%;
    background-size: cover;

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

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



.main-kontakt {
    /* border: 3px solid red; */
    position: relative;
    width: 100%;

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

.main-kontakt-info {
    /* border: 3px solid purple; */
    background-color: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 0;

    height: 260px;
}
.main-kontakt-info h3 {
    font-size: 1.6rem;

    color: var(--green);
    padding: 0 0 0.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.main-kontakt-info h4 {
    font-size: 1rem;
    padding: 0 0 1.2rem;
    font-weight: 600;
    letter-spacing: 0;
}
.main-kontakt-info h5 {
    font-size: 1rem;
    font-weight: 500;
    padding: 0 0 0.4rem;
}
.main-kontakt-info span {
    padding: 0.8rem 0 0;
}

.main-kontakt-info a {
    color: black;
    font-weight: 500;
    text-decoration: none;
}
.main-kontakt-info a:focus,
.main-kontakt-info a:hover {
    font-size: 1.02rem;
    transition: 0.1s;
    color: var(--green);
}

.main-kontakt-bottom {
    /* border: 3px solid purple; */
    display: flex;
    flex-direction: column;
    background-color: rgb(30, 30, 30);
    background-color: rgb(220, 240, 250);
    background-color: rgb(73, 125, 150);
    background-color: rgb(220, 240, 250);
    background-color: gold;
    background-color: rgb(255, 233, 0);
    background-color: rgba(255, 233, 0, 0.7);
    background-color: rgba(220, 170, 20, 0.25);
    /* background-color: rgb(55, 43, 5); */
    background-color: var(--gold);
    
    /* background-color: rgb(217, 170, 7); */
    
    /* background-color: transparent; */


    color: black;
    width: 100%;
    height: fit-content;
}

.main-kontakt-bottom-header-box {
    /* border: 3px solid red; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 3rem 0 2rem;
}

.main-kontakt-bottom-header {
    /* border: 3px solid green; */
    text-align: center;
    color: rgb(73, 125, 150);
    color: var(--blue);
    font-family: 'Sour Gummy','Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 400;

    margin-bottom: 0.2rem;
}

.main-kontakt-bottom-header-underline {
    border: 4px solid rgb(73, 125, 150);
    border: 4px solid var(--blue);
    width: 100px;
}



.main-kontakt-bottom-maps {
    /* border: 4px solid rgb(50, 100, 130); */
    border-radius: 5px;
    position: relative;

    width: 100%;
    height: 400px;
    padding: 3rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.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, 90, 70);
    color: var(--green);
    cursor: pointer;
}

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

    z-index: 9999;
}

.main-kontakt-bottom-form {
    /* border: 3px solid red; */
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.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 red; */
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    color: black;

    padding: 0 0.5rem 2rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 2rem;

    scroll-margin: 3rem;
}

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

.form-parent {
    /* border: 3px solid green; */
    width: 100%;
    padding: 0 0.5rem;
}
.form-parent-header {
    /* font-size: 1.1rem; */
    font-weight: 400;
    color: white;
    color: black;
}

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

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

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

    border-radius: 5px;
    margin: 0.3rem 0 0.7rem;
}
.form-input,
.form-message {
    font-weight: 400;
}

.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: 1pt solid rgb(30, 30, 30);

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

    margin-top: 0.3rem;
}

.form-send-btn {
    font-weight: 500;
    border: 3px solid rgb(75, 140, 155);
    border: 3px solid rgb(30, 90, 70);
    border: 3px solid var(--green);
    background-color: rgb(75, 140, 155);
    background-color: whitesmoke;
    background-color: var(--green);

    /* background-color: rgb(50, 110, 150); */
    color: rgb(30, 90, 70);
    color: var(--green);
    color: white;
    width: fit-content;
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;
    border-radius: 10px;

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

.form-send-btn:focus,
.form-send-btn:hover {
    scale: 1.01;
    transition: 0.2s;
    font-weight: 600;
    border: 3px solid var(--blue);
    background-color: var(--blue);
}


.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;
    /* font-weight: 500; */
    margin-left: 0.3rem;
    padding-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.form-parent-checkbox span b {
    color: var(--green);
    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);
}


.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 .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) {
    .main-kontakt-bottom-form h2 {
        font-size: 1.25rem;
    }

    .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;
    }
}

@media (min-width: 700px) {
    .main-kontakt-bottom {
        flex-direction: row-reverse;
    }
    
    .main-kontakt-bottom-maps {
        height: auto;
        padding: 3rem 2rem;
    }

    .main-kontakt-bottom-form h2 {
        margin-top: 0;
    }

    .main-kontakt-bottom-form {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 900px) {
    .main-kontakt-bottom {
        padding: 0 1rem 1rem;
    }

    .form-parent-container {
        flex-direction: row;
    }

    .main-kontakt-bottom-maps {
        margin-left: 1rem;
    }

    .main-kontakt-bottom-form {
        margin-right: 1rem;
    }
}



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

.main-start-footer {
    /* border: 3px solid red; */
    background-color: rgb(30, 30, 30);
    background-color: rgb(210, 210, 210);
    background-color: rgba(50, 110, 150, 0.2);
    background-color: rgb(220, 240, 250);

    background-color: rgb(255, 233, 0);
    background-color: gold;
    background-color: rgb(255, 215, 0);

    background-color: rgb(220, 240, 250);
    background-color: rgba(30, 110, 85, 0.3);
    background-color: rgba(30, 110, 85, 0.2);
    background-color: rgb(210, 226, 221);

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

    padding: 2rem 1rem;

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

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

.main-start-footer-header {
    /* border: 3px solid blue; */
}

.main-start-footer-header .insta-link {
    color: black;
    text-decoration: none;
}

.main-start-footer-header-insta {
    /* border: 3px solid red; */
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: end;
    margin: auto;
    margin-top: 2.5rem;
    cursor: pointer;
}
.main-start-footer-header-insta:focus,
.main-start-footer-header-insta:hover {
    scale: 1.03;
    transition: 0.2s;
}
.main-start-footer-header-insta p {
    font-size: 15px;
    font-weight: 500;
    margin-left: 0.5rem;
}

.main-start-footer-header-box {
    /* border: 3px solid green; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    justify-content: center;
    width: 100%;
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.footer-title {
    /* border: 3px solid red; */
    /* display: flex;
    flex-direction: row;
    align-items: end;
    width: 100%;
    max-width: 300px; */
}

.footer-title .text-1-0 {
    border: 2px solid var(--green);

    display: flex;
    flex-direction: row;
    align-items: center;

    padding: 0 1.3rem;
    border-radius: 3px;
    cursor: pointer;
}

.footer-title .text-1-1 {
    font-size: 5rem;
    font-weight: 500;
    /* text-shadow: 0 0 5px rgb(30, 30, 30); */
    color: var(--green);

}
.footer-title .text-1-2 {
    font-size: 1.75rem;
    /* text-shadow: 0 0 10px rgb(30, 30, 30); */
    color: var(--green);
}


.main-footer-shiatsu-spaceholder {
    /* border: 3px solid purple; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-footer-shiatsu-spaceholder-box {
    /* border: 3px solid yellow; */
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 20vh; */
    /* max-width: 130px; */
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.main-footer-shiatsu-spaceholder-box img {
    /* border: 3px solid red; */
    width: 85%;
    display: block;
    object-fit: cover;
}


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

.main-start-footer-body-container {
    /* border: 3px solid yellow; */
    padding: 1rem 0;
    margin: 2rem;
}
.main-start-footer-body-container-box {
    /* border: 3px solid green; */
    display: flex;
    flex-direction: column;
}
.main-start-footer-body-container-first {
    margin-top: 1rem;
    padding-top: 0;
}

.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: 500;
    /* color: rgb(197, 242, 228); */
    color: rgb(200, 240, 230);
    color: rgb(20, 30, 60);
    color: black;
    width: fit-content;
    margin-top: 1rem;
    cursor: pointer;
    letter-spacing: 0;
}

.main-start-footer-body-caption-phone a,
.main-start-footer-body-caption-contact a {
    font-weight: 500;
    text-decoration: none;
    color: rgb(200, 240, 230);
    color: rgb(20, 30, 60);
    color: black;
}
.main-start-footer-body-caption-address,
.main-start-footer-body-caption-phone,
.main-start-footer-body-caption-contact {
    /* border: 3px solid green; */
    font-size: 15px;
    font-weight: 500;
    /* color: rgb(197, 242, 228); */
    color: rgb(200, 240, 230);
    color: rgb(20, 30, 60);
    color: black;
    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-address svg,
.main-start-footer-body-caption-phone svg,
.main-start-footer-body-caption-contact svg {
    margin-bottom: -0.2rem;
    margin-right: 0.2rem;
}
.main-start-footer-body-caption-address svg {
    margin-bottom: -0.2rem;
    margin-right: 0.5rem;
}
.main-start-footer-body-caption-address .svg-location {
    opacity: 0;
    visibility: hidden;
}

.main-start-footer-body-caption-phone a:hover,
.main-start-footer-body-caption-contact a:hover,
.main-start-footer-body-caption:hover {
    color: rgb(20, 30, 60);
    color: rgb(30, 55, 120);
    color: rgb(30, 90, 70);
    color: rgb(75, 140, 155);
    color: rgb(20, 120, 60);
    color: var(--green);


    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(30, 30, 30);
    /* 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-header-box {
        justify-content: center;
        padding: 0 3rem 1.5rem;
    }

    .main-start-footer-body {
        align-items: center;
    }

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

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

    .main-start-footer-header-insta {
        margin-top: -1rem;
    }
}