: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); */

    background-color: rgb(217, 158, 55);
    background-color: rgb(190, 140, 50);
    
    background-color: white;

    --blue: rgb(52, 72, 125);
    --blue: rgb(54, 71, 128);
    --blue: rgb(143, 153, 196);
    --blue: rgb(95, 107, 156);
    --blue: rgb(0, 128, 128);
    --blue: rgb(0, 125, 125);
    --lightblue: rgb(133, 207, 233);
    --lightblue: rgb(30, 173, 173);
    --black: rgb(50, 50, 50);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    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; */
    background-color: white;
    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-msg-info {
    background-color: var(--blue);
    color: white;
    font-weight: 600;

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

    min-height: 100px;
    height: fit-content;
            
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 99999999;
    display: none;
}
.display-msg-info.show {
    opacity: 1;
    display: flex;
}

.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: var(--black);

    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: 200px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    /* 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); */
    border-bottom: 3px solid rgb(50, 50, 50);
    text-transform: uppercase;

    font-family: 'Nunito','Montserrat', sans-serif;
    height: 40px;

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

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

.header span:hover {
    border-bottom: 3px solid var(--lightblue);
    color: var(--lightblue);
    /* scale: 1.02; */
    transition: all 0.3s;
}

.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: 15px;
    height: 3px;
    /* background-color: var(--black); */
    background-color: black;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in;
}

.bar2 {
    width: 25px;
    margin-top: 5px;
}
.bar3 {
    width: 20px;
    margin-top: 5px;
}
.bar1.active {
    width: 25px;
}
.bar3.active {
    width: 25px;
}

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

    position: fixed;

    top: -500px;
    width: 100%;
    height: 100vh;
    height: 400px;
    
    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: var(--black);
    color: white;
    text-align: center;
    text-transform: uppercase;
    list-style-type: none;
    font-size: 1.1rem;
    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;
    color: var(--blue);
}

.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: 900px) {
    .header-logo {
        margin-left: 2rem;
    }

    .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; */
    margin-top: 100px;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.main-home-start::before {
    content: "";
    width: 100%;
    /* height: 100%; */
    max-width: 100%;
    background-image: url(images/testbild.PNG);
    /* 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: 0;
}

.main-home-start .start-background {
    /* border: 3px solid red; */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: rotate(180deg) scaleX(-1);
    /* transform: rotate(180deg); */
}

.main-home-start h1 {
    /* border: 3px solid red; */
    font-size: 3.3rem;
    font-weight: 800;
    max-width: 450px;
    line-height: 1.3;
    padding-left: 7%;
    /* padding-top: 7%; */

    z-index: 9999;    
}
.main-home-start h1 b {
    font-size: 3.5rem;
    font-weight: 1000;
    color: var(--blue);
}
.main-home-start h1 .level {
    border-bottom: 7px solid var(--blue);
    font-size: 3.5rem;
    font-weight: 1000;    
}

.main-home-start img {
    /* border: 3px solid blue; */
    width: 55%;
    display: block;
    object-fit: cover;
    padding-top: 2rem;
}





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

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

    margin: 3rem 0 2rem;
}

.main-leistungen-header {
    /* border: 3px solid green; */
    text-align: center;
    text-transform: uppercase;
    font-family: 'Nunito','Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;

    letter-spacing: 0px;
    padding: 0 0.5rem;
    margin-bottom: 0.2rem;
}

.main-leistungen-header-underline {
    border: 3px solid var(--blue);
    width: 150px;
}

.main-leistungen-box {
    /* border: 3px solid green; */
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
}

.main-leistungen-child {
    border: 2px solid rgb(50, 50, 50);
    flex-basis: 95%;
    margin: 1rem 2.5% 2rem;
    border-radius: 20px;

}

.main-leistungen-child.show {
    box-shadow: 0 0 20px rgb(150, 150, 150);
    border: 2px solid rgb(170, 170, 170);
    margin: 0 2.5% 3rem;
    transition: all 0.4s;
}

.main-leistungen-child-container {
    /* border: 3px solid yellow; */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.main-leistungen-child-container-layer {
    /* border: 3px solid blue; */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    background-color: rgba(255, 255, 255, 0.15);
    z-index: 9999;
}

.main-leistungen-child-container-layer.hide {
    background-color: transparent;
    transition: all 0.4s;
}

.main-leistungen-child-container-layer-svg {
    /* border: 3px solid red; */
    color: rgb(50, 50, 50);
    margin-top: 10rem;
    margin-left: 1.5rem;
}
.main-leistungen-child-container-layer-svg.hide {
    display: none;
    transition: all 0.4s;
}

.main-leistungen-child-top {
    /* border: 3px solid red; */
    position: relative;
    height: 270px;
    width: 100%;

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

    overflow: hidden;
}
.main-leistungen-child-top::before {
    content: "";
    width: 100%;
    /* height: 100%; */
    max-width: 100%;    
    /* background-image: url(images/screenshots-equipmentcheck.PNG), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); */
    background-image: url(images/screenshot-alexander-riml.PNG);
    /* background-attachment: fixed; */
    background-blend-mode: screen;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center top;
    /* 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-leistungen-child-top-two::before {
    background-image: url(images/seo.jpg);
    background-position: center center;
}

.main-leistungen-child-top-three::before {
    background-image: url(images/screenshots-equipmentcheck.PNG);
    background-position: center top;
}

.main-leistungen-child-top-four::before {
    background-image: url(images/logodesign.jpg);
    background-position: center bottom;
}

.main-leistungen-child-top-corner {
    /* border: 3px solid pink; */

    background-color: white;
    position: absolute;
    /* bottom: 0;
    left: 0;
    right: 0; */
    width: 150%;
    height: 150px;
    transform: rotate(7deg);
    margin-bottom: -300px;
}


.main-leistungen-child-bottom {
    /* border: 3px solid blue; */
    padding: 1.5rem;
    position: relative;
}

.main-leistungen-child-bottom span {
    /* border: 3px solid red; */
    position: absolute;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1.3rem;
    margin-top: -3.3rem;
    z-index: 999;
}

.main-leistungen-child-bottom p {
    font-weight: 500;
    /* text-align: justify; */
    line-height: 1.6;
}

@media (min-width: 350px) {
    .main-leistungen-child-bottom span {
        font-size: 1.3rem;
    }
}

@media (min-width: 400px) {
    .main-leistungen-child-bottom span {
        font-size: 1.4rem;
    }
}

@media (min-width: 550px) {
    .main-leistungen-child-bottom {
        padding: 2rem;
    }

    .main-leistungen-child-container-layer svg {
        margin-left: 2rem;
    }
}

@media (min-width: 700px) {
    .main-leistungen-child {
        flex-basis: 45%;
    }

    .main-leistungen-child-bottom {
        padding: 1.5rem;
    }

    .main-leistungen-child-container-layer svg {
        margin-left: 1.5rem;
    }

    .main-leistungen-child-bottom span {
        font-size: 1.2rem;
    }
}

@media (min-width: 900px) {
    .main-leistungen-child-bottom {
        padding: 2rem;
    }

    .main-leistungen-child-container-layer svg {
        margin-left: 2rem;
    }
}

@media (min-width: 1000px) {
    .main-leistungen-child-bottom span {
        font-size: 1.5rem;
    }

    .main-leistungen-child-bottom {
        padding: 2.5rem;
    }

    .main-leistungen-child-container-layer svg {
        margin-left: 2.5rem;
    }
}




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

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

    margin: 3rem 0 2rem;
}

.main-special-header {
    /* border: 3px solid green; */
    text-align: center;
    text-transform: uppercase;
    font-family: 'Nunito','Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;

    letter-spacing: 0px;
    padding: 0 0.5rem;
    margin-bottom: 0.2rem;
}

.main-special-header-underline {
    border: 3px solid var(--blue);
    width: 150px;
}

.special-box {
    /* border: 3px solid red; */
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1.5rem auto;
}

.special-parent {
    /* border: 3px solid green; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.special-child {
    border: 2px solid rgb(50, 50, 50);
    width: 150px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    margin: 1rem;
    border-radius: 25px;
}

.special-child.show {
    scale: 1.05;
    background-color: whitesmoke;
    box-shadow: 0 0 15px rgb(150, 150, 150);
    border: 2px solid rgb(170, 170, 170);
    transition: all 0.4s;
}

.special-child img {
    /* border: 3px solid yellow; */
    display: block;
    object-fit: cover;
    max-width: 60px;
}

.special-child .img-typo3 {
    max-width: 70px;
    margin-top: -0.5rem;
}

.special-child p {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0;
}

@media (min-width: 500px) {
    .special-parent {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 1rem;
    }
}

@media (min-width: 650px) {
    .special-child {
        width: 170px;
        height: 210px;
        padding: 2.5rem 2rem;
        margin: 1rem;
    }
}

@media (min-width: 1250px) {
    .special-box {
        flex-direction: row;
    }

    .special-parent {
        justify-content: space-around;
    }
}






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

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

    margin: 3rem 0 2rem;
}

.main-aboutme-header {
    /* border: 3px solid green; */
    text-align: center;
    text-transform: uppercase;
    font-family: 'Nunito','Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;

    letter-spacing: 0px;
    padding: 0 0.5rem;
    margin-bottom: 0.2rem;
}

.main-aboutme-header-underline {
    border: 3px solid var(--blue);
    width: 150px;
}

.main-aboutme-box-container {
    /* border: 3px solid red; */
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 3rem 0;
}

.main-aboutme-box {
    /* border: 3px solid rebeccapurple; */
    width: 100%;
    max-width: 1370px;
    padding: 0 5%;
}

.main-aboutme-box p {
    /* border: 3px solid red; */
    font-weight: 500;
    /* text-align: justify; */
    text-align: center;
    line-height: 2;
    /* margin-bottom: 3rem; */
}

.main-aboutme-box p b {
    /* border: 3px solid yellow; */
    font-weight: 600;
    color: var(--blue);
}


.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.PNG);
    /* 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-contactme {
    /* border: 3px solid rebeccapurple; */
    scroll-margin-top: 120px;
}

.main-contactme-header-box {
    /* border: 3px solid red; */
    background-color: var(--blue);
    color: white;
    width: 90%;
    max-width: 1225px;
    padding: 2.5rem 2.5%;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 3rem auto 2rem;

    border-radius: 25px;
}

.main-contactme-header {
    /* border: 3px solid green; */
    text-align: center;
    text-transform: uppercase;
    font-family: 'Nunito','Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;

    letter-spacing: 0px;
    padding: 0 0.5rem;
    margin-bottom: 0.2rem;
}

.main-contactme-header-underline {
    border: 3px solid var(--blue);
    border: 2px solid white;
    width: 150px;
}

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

    padding: 2rem 0.5rem 0;
}

.main-contactme-box {
    /* border: 3px solid yellow; */
}

.main-contactme-box p {
    /* border: 3px solid red; */
    font-weight: 500;
    /* max-width: 500px; */
    /* text-align: justify; */
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.bottom-line-p {
    margin-top: -0.5rem;
}

.main-contactme-box p b {
    /* border: 3px solid yellow; */
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}
.main-contactme-box p b:hover,
.main-contactme-box p b:focus {
    font-weight: 600;
}

.main-contactme-box-btn {
    position: relative;
    border: 3px solid white;
    background-color: transparent;
    text-align: center;

    color: white;
    width: fit-content;
    width: 265px;
    padding: 1.5rem 3rem;
    margin: 1rem auto 0;
    border-radius: 50px;
    letter-spacing: 0.5px;

    cursor: pointer;
}
.main-contactme-box-btn:hover,
.main-contactme-box-btn:focus {
    color: var(--blue);
    transition: all 0.2s;
}

.main-contactme-box-btn p {
    position: absolute;
    /* border: 3px solid yellow; */
    font-weight: 500;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: fit-content;
    height: fit-content;
    margin: auto;

    z-index: 999;
}
.main-contactme-box-btn-point svg {
    /* margin-top: -1rem; */
}

.main-contactme-box-btn-point {
    position: absolute;
    /* border: 3px solid yellow; */
    /* background-color: white; */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 12px;
    height: 12px;
    margin: auto;
    margin-right: 89%;

    border-radius: 50px;

    z-index: 99;
}

.main-contactme-box-btn:hover > .main-contactme-box-btn-point {
    background-color: white;
    width: 100%;
    height: 100%;
    margin-right: 0;
    transition: all 0.5s;
}
.main-contactme-box-btn:hover > .main-contactme-box-btn-point svg {
    display: none;
    transition: all 0.2s;
}


@media (min-width: 450px) {
    .main-contactme-box-container {
        padding: 2rem 1rem 0;
    }
}

@media (min-width: 900px) {
    .main-contactme-box-container {
        padding: 2rem 1.5rem 0;
    }

    .main-contactme-box p {
        max-width: 980px;
    }
}

/* @media (min-width: 1305px) {
    .main-contactme-box-container {
        flex-direction: row;
        justify-content: space-evenly;
        padding: 2.5rem 0 0;
    }

    .main-contactme-box {
        width: 63%;
        margin-right: 2rem;
    }

    .main-contactme-box .bottom-line-p {
        margin-bottom: 0;
    }

    .main-contactme-box-btn {
        margin: 0;
    }
} */






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

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

    margin: 3rem 0 2rem;
}

.main-projekte-header {
    /* border: 3px solid green; */
    text-align: center;
    text-transform: uppercase;
    font-family: 'Nunito','Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;

    letter-spacing: 0px;
    padding: 0 0.5rem;
    margin-bottom: 0.2rem;
}

.main-projekte-header-underline {
    border: 3px solid var(--blue);
    width: 150px;
}

.main-projekte-box-container {
    /* border: 3px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 3rem 0;
}

.main-projekte-box {
    /* border: 3px solid rebeccapurple; */
    width: 100%;
    max-width: 1400px;

    padding: 0 5%;
}

.main-projekte-box p {
    font-weight: 500;
    /* text-align: justify; */
    text-align: center;
    line-height: 2;
    margin-bottom: 3rem;
}

.main-projekte-box p b {
    font-weight: 600;
    color: var(--blue);
}

.main-projekte-child {
    /* border: 3px solid yellow; */
    background-color: whitesmoke;
    background-color: rgb(235, 235, 235);
    border-radius: 20px;
    padding: 3.5rem 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 7px rgb(150, 150, 150);
}

.main-projekte-child-middle {
    margin: 3rem 0;
}

.main-projekte-child-img {
    /* border: 3px solid green; */
    /* height: 40vh; */
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
}
.main-projekte-child-img.show {
    scale: 1.1;
    transition: all 0.4s;
}

.main-projekte-child-info {
    /* border: 3px solid red; */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /* border: 1px solid rgb(50, 50, 50); */
    
    box-shadow: 0 0 3px black;
    
    display: flex;
    align-items: end;
    z-index: 999;
}
.main-projekte-child-info.show {
    background-color: rgba(30, 30, 30, 0.3);
    transition: all 0.4s;
}

.main-projekte-child-info h2 {
    /* border: 3px solid red; */
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    background-color: rgb(30, 30, 30);
    color: white;
    width: 100%;
    padding: 1.2rem 0;
    margin: 0 auto;
    letter-spacing: 0.3px;
    text-shadow: 0 0 3px black;
}


.main-projekte-child-link {
    /* border: 3px solid yellow; */
    position: absolute;
    width: fit-content;
    height: fit-content;

    top: 0;
    right: 0;
    /* bottom: 0; */
    bottom: -250%;
    left: 0;

    background-color: rgb(30, 30, 30);
    color: white;
    padding: 1rem 2.5rem;
    margin: auto;
    letter-spacing: 0.3px;
    text-shadow: 0 0 3px black;
    border-radius: 10px;
    cursor: pointer;

    box-shadow: 0 0 3px rgb(100, 100, 100);
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}
.main-projekte-child-link.show {
    bottom: 0;
    transition: all 0.4s;
}

.main-projekte-child-link:focus,
.main-projekte-child-link:hover {
    scale: 1.02;
    background-color: var(--blue);
    transition: all 0.2s;
}

.main-projekte-child-link p {
    /* border: 3px solid red; */
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.main-projekte-child-link svg {
    margin-left: 0.5rem;
    margin-top: -0.2rem;
}



@media (min-width: 700px) {

    .main-projekte-box-container {
        flex-direction: row;
        align-items: start;

        padding: 3rem 2.5%;
    }

    .main-projekte-box {
        padding: 0 2.5%;
        max-width: 650px;
    }
 
    .main-projekte-child-middle {
        margin: 0 0 4rem;
    }
}




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

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

    margin: 3rem 0 1rem;
}

.main-kontakt-header {
    /* border: 3px solid green; */
    text-align: center;
    text-transform: uppercase;
    font-family: 'Nunito','Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;

    letter-spacing: 0px;
    padding: 0 0.5rem;
    margin-bottom: 0.2rem;
}

.main-kontakt-header-underline {
    border: 3px solid var(--blue);
    width: 150px;
}

.main-kontakt-form {
    /* border: 3px solid green; */
    width: 90%;
    max-width: 1350px;

    margin: 3rem auto 2rem;
}

.main-kontakt-form-child {
    /* border: 3px solid red; */
    width: 100%;
    padding: 0 2.5%;
}

.main-kontakt-form-child-container {
    /* border: 3px solid blue; */
    display: flex;
    flex-direction: column;
}

.main-kontakt-form-child-header {
    /* border: 3px solid yellow; */
    letter-spacing: 0.3px;
    font-weight: 600;
    margin: 1.7rem 0 0.5rem;
}

.main-kontakt-form-child-input {
    border: 3px solid rebeccapurple;
    
    font-size: 1rem;
    background-color: transparent;
    width: 100%;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 3px solid var(--blue);
    /* border: 3px solid red; */
    /* max-width: 300px; */
    letter-spacing: 0.5px;
    outline: none;
    resize: none;
    border-radius: 0px;
}

.main-kontakt-form-child-input:focus {
    border-bottom: 3px solid var(--black);
}


.form-send-btn {
    font-weight: 500;
    background-color: var(--black);
    text-align: center;

    color: white;
    width: fit-content;
    padding: 1rem 2.5rem;
    margin: 1rem auto 4rem;
    border-radius: 15px;

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

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


.main-kontakt-form-child-checkbox {
    /* border: 3px solid green; */

    width: 100%;
    padding: 0 2.5%;

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

    margin-top: 1rem;
}

.main-kontakt-form-child-checkbox .form-checkbox {
    /* border: 3px solid red; */
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
}
.main-kontakt-form-child-checkbox span {
    /* font-weight: 500; */
    margin-left: 0.3rem;
    padding-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.main-kontakt-form-child-checkbox span b {
    color: var(--blue);
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.form-checkbox-container {
    /* border: 3px solid red; */
    position: relative;
    /* padding-top: 0.3rem; */
    margin-left: 0.5rem;
    width: 30px;
    height: 30px;
}
.form-checkbox-container.checked>.form-checkbox-label::before {
    background-color: var(--blue);
    /* background-color: rgb(70, 100, 255); */
}
.form-checkbox-container.agb-failed>.form-checkbox-label::before {
    box-shadow: 0 0 5px red;
    border: 1px solid rgb(220, 0, 0);
}
.form-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-bottom: 3px solid rgb(230, 0, 0);
    /* background-color: rgb(255, 245, 245); */
}



@media (min-width: 700px) {
    .main-kontakt-form-child-checkbox,
    .main-kontakt-form-child {
        padding: 0 5%;
    }

    .main-kontakt-form-child-header {
        margin: 2rem 0 0.5rem;
    }

    .main-kontakt-form-child-container {
        flex-direction: row;
    }

    .main-kontakt-form-child-checkbox {
        margin-top: 1.3rem;
    }
    
    .form-send-btn {
        padding: 1rem 5rem;
        margin: 1.3rem 0 4rem;
    }
}



.main-maps {
    /* border: 3px solid red; */
    background-color: white;
    /* padding: 0 5% 2.5rem; */
    width: 100%;
    
}

.main-maps-box {
    border: 2px solid rgb(50, 50, 50);
    width: 90%;
    height: 354px;
    max-width: 1215px;
    margin: -1rem auto 3rem;
    overflow: hidden;
}





@media (min-width: 360px) {
    .main-header {
        font-size: 2rem;
    }
}




.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) {
    .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: 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-box {
    /* border: 3px solid green; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.main-start-footer-header-box img {
    display: block;
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
    object-fit: cover;
}

.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-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: 0 2rem 3rem;
}
.main-start-footer-body-container-box {
    /* border: 3px solid green; */
    display: flex;
    flex-direction: column;
}
.main-start-footer-body-container-first {
    margin: 1.5rem 2rem 2rem;
}

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

    .main-start-footer-body-container {
        margin: 0 0 1.5rem 3rem;
    }
    .main-start-footer-body-container-first {
        margin: 0 1.5rem 1.5rem 3rem;
    }
}

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