* {
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
    -mox-box-sizing: border-box;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

html, body {
    width: 100%;
    height: 100%;
}

header {
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    z-index: 1000;
}

body {
    background-color: #efefef;
    color: #fff;
    user-select: none;
    pointer-events: none;
}

a {
    pointer-events: auto;
}

.menu-container {
    position: fixed;
    display: flex;
    width: 100%;
    height: 65px;
    justify-content: space-between;
    background-color: transparent;
    align-items: center;
    transition: .3s ease-in-out;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    top: 0;
}

.nav-color {
    background: rgb(230, 228, 228);
    /*background: -moz-linear-gradient(155deg, rgba(232,213,214,1) 0%, rgba(230,177,179,1) 100%);
    background: -webkit-linear-gradient(155deg, rgba(232,213,214,1) 0%, rgba(230,177,179,1) 100%);
    background: linear-gradient(155deg, rgba(232,213,214,1) 0%, rgba(230,177,179,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e8d5d6",endColorstr="#e6b1b3",GradientType=1);*/
    box-shadow: 0px 10px 10px rgb(0 0 0 / 15%);
}

.menu-container nav {
    display: flex;
    height: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    min-width: 80%;
}

.menu-container nav img {
    width: 100%;
    max-width: 181.73px;
    max-height: 100%;
    margin-left: 10px;
}

#drop-down-arrow {
    transform: translateX(-25px);
    width: 25px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#drop-down-arrow span {
    transition: .3s ease-in-out;
    position: relative;
    height: 2px;
    min-width: 12px;
    border-radius: 2px;
    transform-origin: center center;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 45%);
}

#drop-down-arrow span:nth-child(1) {
    transform: rotate(45deg);
}

#drop-down-arrow span:nth-child(2) {
    transform: rotate(-45deg);
    left: -4.5px;
}

#navbar ul li:hover > #drop-down-arrow span:nth-child(1) {
    transform: rotate(-45deg);
    background-color: rgb(248, 100, 105);
}

#navbar ul li:hover > #drop-down-arrow span:nth-child(2) {
    transform: rotate(45deg);
    background-color: rgb(248, 100, 105);
}

.menu-container .mobile-menu {
    display: flex;
    width: 50px;
    height: 100%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    right: 15px;
    position: absolute;
    top: 0px;
    pointer-events: auto;
}

.menu-container .mobile-menu .burger {
    position: relative;
    width: 25px;
    height: 19px;
}

.burger span {
    transition: .3s ease-in-out;
    position: absolute;
    height: 3px;
    min-width: 25px;
    border-radius: 2px;
    transform-origin: center center;
}

.burger span:nth-child(1) {
    top: 0;
    background-color: #efefef;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 45%);
}

.burger span:nth-child(2) {
    top: 8px;
    background-color: rgba(159, 61, 64, 1);
    box-shadow: 0px 0px 5px rgb(0 0 0 / 45%);
}

.burger span:nth-child(3) {
    top: 16px;
    background-color: #efefef;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 45%);
}

.lines-active span:nth-child(1) {
    top: 8px;
    transform: rotate(+45deg);
    background-color: rgba(159, 61, 64, 1);
}

.lines-active span:nth-child(2) {
    background-color: rgba(159, 61, 64, 0);
    box-shadow: none;
}

.lines-active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
    background-color: rgba(159, 61, 64, 1);
}

.lines-dark span:nth-child(1) {
    background-color: #444;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 45%);
    box-shadow: none;
}

.lines-dark span:nth-child(3) {
    background-color: #444;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 45%);
}

.menu-container #menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    min-height: 80vh;
    background-color:rgb(239, 239, 239, .9);
    transition: .2s ease-in-out;
    border-bottom: 2px solid rgba(159, 61, 64, 1);
    border-top: 2px solid rgba(159, 61, 64, 1);
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.menu-container #menu ul li a {
    display: block;
    width: 100%;
    font-size: 1.4em;
    padding: 10px 0px 10px 12px;
    line-height: 1.5em;
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
    border-top: 1px solid rgb(0, 0, 0, .2);
    transition: color .3s ease-in-out, background-color .3s ease-in-out;
}

.menu-container #menu ul li a:hover {
    background-color: rgba(159, 61, 64, 1);
    color: white;
}

.menu-container #menu ul li ul li a {
    padding-left: 28px;
}

.close-menu {
    transform: translateX(-100vw);  
}

.open-menu {
    transform: translateX(0);
}

navbar {
    width: 100%;
    position: relative;
    display: flex;
    height: 100%;
    padding: 5px 25px 5px 25px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}

#navbar {
    display: none;
    flex: 1;
    justify-content: center;
    align-items: center;
    align-self: end;
}

#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

#navbar li {
    text-align: center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    display: flex;
}

#navbar a {
    text-decoration: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    padding: 14px 16px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

.light-color ul li a {
    color: #fff;
}

.light-color ul li a:hover {
    color: rgb(255, 102, 108);
}

.dark-color ul li a {
    color: #444;
}

.dark-color ul li a:hover {
    color: rgb(182, 70, 74);
}

.dark-bg-color span {
    background-color: #444;
}

.light-bg-color span {
    background-color: #efefef;
}

#navbar a:hover {
    transition: .3s ease-in-out;
    /*color: rgb(182, 70, 74);
    color: rgb(255, 102, 108);*/
}



#navbar ul li ul {
    visibility: hidden;
    opacity: 0;
    display: none;
    overflow: visible;
    flex-direction: column;
    flex-wrap: wrap;
    position: fixed;
    background-color: #efefef;
    border-radius: 5px;
    top: 55px;
    transition: .2s ease-in-out;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 15%);
}

#navbar ul li ul li a {
    text-decoration: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: .9em;
    color: #444;
    padding: 10px 12px;
}

#navbar ul li ul li a:hover {
    color: rgb(182, 70, 74);
}

#navbar ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    display: flex;
}

#navbar ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: flex;
}

/*media querys*/

@media screen and (min-width: 1000px) {
    #navbar {
        display: flex;
    }

    .menu-container .mobile-menu {
        display: none!important;
    }

    #allgemein .container {
        max-width: 70%;
    }

    #geschichte span {
        display: none;
    }

    #allgemein p {
        font-size: .8em;
    }

    h1 {
        font-size: 1.2em;
    }

    .slider-behaelter {
        margin: 65px 19px;
    }

    #baggerarbeiten .text-container {
        margin: 45px 25px;
    }

    #galerie_content {
        margin: 150px 65px;
    }

    .galerie-image {
        /* old:
        max-width: 350px;
        max-height: 350px;*/
        max-height: 350px;
        width: auto!important;
    }
}

@media screen and (max-width: 1000px) {

    #allgemein .container {
        max-width: 90%;
    }

    #geschichte img {
        display: none;
    }

    #geschichte span {
        display: flex;
    }

    #allgemein p {
        font-size: .6em;
    }

    h1 {
        font-size: .9em;
    }

    .slider-behaelter {
        margin: 65px 0px;
    }

    #baggerarbeiten .text-container {
        margin: 45px 25px;
    }

    #galerie_content {
        margin: 100px 25px;
    }

    /*.galerie-image {
        max-width: 80vw;
        max-height: 80vh;
    }*/
}

@media screen and (max-width: 440px) {

    h1 {
        font-size: .7em;
    }
}

@media screen and (min-width: 1150px) {
    .bg-img {
        width: 100%;
    }

    .bg-img img {
        width: 100%;
    }
}

/*.lines-active {
    transform: rotate(-45deg) translateX(-25%);
    margin-right: -14px;
}

.lines-active::before {
    background-color: rgba(200, 200, 200, 0);
}

.lines-active::after {
    transform: rotate(+90deg) translateX(-50%);
}*/

.container {
    #width: 100vw;
    text-align: center;
}

.container div {
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    color: #444;
}

#start {
    height: 750px;
}

/*.container div:nth-child(even) {
    min-height: 95vh;
    background-color: #a1a1a1;
}

.container div:nth-child(odd) {
    min-height: 95vh;
    background-color: #adadad;
}*/



.bg-img {
    display: flex;
    position: fixed;
    z-index: -10;
}

.kontakt-hintergrund {
    display: flex;
    position: fixed;
    z-index: -10;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.2);
    z-index: 100;
}

.bg-img img {
    top: 0;
    display: flex;
    flex-direction: column;
    /*width: 100%;*/
    max-height: 100%;
    background-size: cover;
    background-position: bottom center;
    filter: blur(2px);
    transform: scale(1.1);
}

.kontakt-hintergrund img {
    top: 0;
    display: flex;
    flex-direction: column;
    /*width: 100%;*/
    max-height: 100%;
    background-size: cover;
    background-position: bottom center;
    width: 100%;
    min-width: 1920px;
}

.content {
    position: absolute;
    flex-direction: column;
    max-width: 85%;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.content img {
    width: 100px;
}

.content h1 {
    font-size: 1.5em;
    color: #efefef;
    margin: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.content p {
    font-size: 1em;
    color: #adadad;
    margin: 15px;
    max-width: 900px;
    line-height: 1.5;
}

.content a {
    background-color: rgba(159, 61, 64, 1);
    border: 5px solid rgba(159, 61, 64, 1);
    border-radius: 15px;
    color: #c7c7c7;
    text-decoration: none;
    font-size: 0.9em;
    margin: 65px 15px 15px 15px;
    padding: 5px;
    box-shadow: 0px 0px 20px 3px rgb(0 0 0 / 25%);
    transition: 0.2s ease-in-out;
    letter-spacing: 2px;
}

.content a:before {
    border: 10px solid #fff;
    border-radius: 15px;
}

@media screen and (max-width: 600px) {
    .content h1 {
        font-size: 1.1em;
    }

    .content p {
        font-size: .8em;
    }

    .content a {
        font-size: 0.7em;
    }
}

.content a:hover {
    background-color: rgb(126, 48, 51);
    border: 5px solid rgb(126, 48, 51);
}

#leistungen,#ueber-uns,#galerie {
    min-height: 95vh;
    background-color: #e9e0e0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#curve{
    top: 715px;
    width: 150%;
    height: 40%;
    position: fixed;
    background-color: #e9e0e0;
    border-top-left-radius: 50% 20%;
    border-top-right-radius: 50% 20%;
    z-index: -1;
}

#transporte,#weiteres,#allgemein {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#baggerarbeiten {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#allgemein .container {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
}

#allgemein h1 {
    margin: 15px;
    text-transform: uppercase;
    align-self: baseline;
    letter-spacing: 3px;
}

#allgemein p {
    color: #adadad;
    margin: 15px;
    text-align: justify;
    line-height: 1.5;
}


#baggerarbeiten, #weiteres {
    background-color: rgb(237 237 237);
    box-shadow: 0px 0px 40px rgb(0 0 0 / 3%);
}

#baggerarbeiten {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

#transporte, #weiteres, #allgemein {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

#leistungen h2 {
    font-size: .9em;
    margin: 15px;
    text-transform: uppercase;
    align-self: baseline;
    letter-spacing: 2px;
}

#transporte img, #weiteres img, #allgemein img {
    max-width: 350px;
    width: 100%;
}

.text-container p {
    max-width: 75%;
    font-size: .7em;
    color: #adadad;
    margin-top: 15px;
    text-align: justify;
}

.text-container {
    margin: 25px;
    flex-direction: column!important;
}

@media screen and (min-width: 600px) {
    .text-container {
        min-width: 400px;
        max-width: 60%;
    }
}

.img-container {
    /*max-width: 40%;*/
    margin: 25px;
    flex-direction: column!important;
}

#transporte .text-container h1, #transporte .text-container p {
    align-self: end;
}

#baggerarbeiten .text-container h1, #baggerarbeiten .text-container p {
    align-self: baseline;
}

#weiteres .text-container h1, #weiteres .text-container p {
    align-self: baseline;
}



#ueber-uns, #ueber-uns .container, #ueber-uns .container div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

#ueber-uns .container {
    width: 90%;
    margin-top: 45px;
}

#ueber-uns h1 {
    margin: 15px;
    text-transform: uppercase;
    align-self: baseline;
    letter-spacing: 3px;
}

#ueber-uns p {
    font-size: .7em;
    color: #adadad;
    margin: 15px;
    text-align: justify;
}

#persoenlich, #persoenlich div {
    width: 100%;
}

#persoenlich img {
    max-width: 175px;
    width: 100%;
    border-radius: 15px;
    margin: 5%;
    -webkit-box-shadow: 0 16px 38px -12px rgb(0 0 0 / 16%), 0 4px 25px 0 rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);
    box-shadow: 0 16px 38px -12px rgb(0 0 0 / 16%), 0 4px 25px 0 rgb(0 0 0 / 12%),
}

#persoenlich p {
    max-width: 650px;
    font-size: .6em;
    color: #adadad;
    margin: 15px;
    text-align: justify;
}

#geschichte {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    /*max-width: 80%;*/
    margin: 45px 0px;
    width: 100%;
}

#geschichte span {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    margin: 10px;
}

#geschichte span b {
    color: #c25f63;
    font-size: 0.8em;
}

#geschichte span span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    margin: 1px 35px 25px 35px;
}

#geschichte span span h2 {
    font-size: .7em;
    color: #444444;
    text-decoration: none;
    margin: 0px;
    align-self: center;
    letter-spacing: 3px;
}

#geschichte span span p {
    color: #6c6c6c;
    font-size: 0.5em;
    margin: 7px;
    text-align: center;
}

#geschichte img {
    width: 100%;
    max-width: 800px;
}

#kontakt {
    min-height: 45vh;
    /*background-color: #ccc1c1;*/
    z-index: 100;
}

#kontakt .kontakt-hintergrund img {
    bottom: 0px;
    top: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
}

#second {
    display: none;
}

#kontakt .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 50px 0px;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 15px;
    max-width: 90%;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 15%);
}

#kontakt .container h1 {
    color: #efefef;
    margin: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

#kontakt .container p {
    font-size: 0.7em;
    color: #adadad;
    margin: 15px;
}

#kontakt .container a {
    background-color: rgba(159, 61, 64, 1);
    border: 5px solid rgba(159, 61, 64, 1);
    border-radius: 15px;
    color: #c7c7c7;
    text-decoration: none;
    font-size: 0.7em;
    margin: 15px;
    padding: 5px;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 15%);
    transition: 0.2s ease-in-out;
}

#kontakt .container a:hover {
    background-color: rgb(126, 48, 51);
    border: 5px solid rgb(126, 48, 51);
}





footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-height: 130px;
    background-color: #d6d6d6;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 20%);
}

footer .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

footer .link-box {
    display: flex;
    flex-direction: column;
    width: 200px;
    max-width: 95%;
    margin: 15px;
}

footer .link-box a {
    margin: 3px;
    text-decoration: none;
    color: #444;
    font-family: Verdana;
    font-size: .9em;
    transition: color .2s ease-in-out;
}

footer .link-box a:Hover {
    color: rgba(159, 61, 64, 1);
}

footer .text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 95%;
    margin: 15px;
}

footer .text-box span {
    margin: 3px;
    text-decoration: none;
    color: #444;
    font-family: Verdana;
    font-size: .9em;
    transition: color .2s ease-in-out;
}

footer span {
    align-content: center;
}

.select {
    pointer-events: auto;
    user-select: all;
    transition: color .2s ease-in-out;
}

.select:hover {
    color: rgba(159, 61, 64, 1);
}

#bottom-footer {
    background-color: rgb(191, 191, 191);
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#inner-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 15px 0px;
}

#impressum {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#impressum a {
    margin: 10px;
    text-decoration: none;
    color: #444;
    font-family: Verdana;
    font-size: .9em;
    transition: .3s ease-in-out;
}

#impressum a:hover {
    color: rgba(159, 61, 64, 1);
}

#impressum a span {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

#impressum a span i {
    margin: 5px;
}



#socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

#socials a {
    margin: 15px;
    font-size: 24px;
    color: rgb(174, 70, 75);
    align-content: center;
    justify-content: center;
    align-items: center;
    display: flex;
    text-shadow: 0 0 10px rgb(0 0 0 / 15%);
    transition: .3s ease-in-out;
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

#socials a:hover {
    color: rgb(174, 70, 75);
    text-shadow: 0 0 10px rgb(174, 70, 75 / 25%);
    -webkit-animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.socials-svg {
    width: 25px;
    height: auto;
    filter: drop-shadow(0px 0px 3px rgb(0 0 0 / 0.2));
}

#scroll-up {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    flex-wrap: wrap;
}

@media screen and (max-width: 700px) {
    #scroll-up {
        align-items: center!important;
    }
}

#scroll-up a {
    margin: 15px;
}

#scroll-up a img {
    filter: drop-shadow(0px 0px 3px rgb(0 0 0 / 0.3));
}

.copyright {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#copy {
    text-align: center;
    display: flex;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 0.7em;
    /*font-size: calc(.4vw + .2vh + .5em);*/
    color: #444;
}















#scroll-up-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 19.8px;
}

#scroll-up-arrow span {
    transition: .3s ease-in-out;
    position: relative;
    height: 3px;
    width: 25px;
    border-radius: 2px;
    transform-origin: center center;
    background-color: rgb(68, 68, 68);
    box-shadow: 0px 0px 5px rgb(0 0 0 / 45%);
}

#scroll-up-arrow span:nth-child(1) {
    transform: rotate(-45deg);
    left: +4px;
}

#scroll-up-arrow span:nth-child(2) {
    transform: rotate(45deg);
    left: -4px;
}

#scroll-up a:hover > #scroll-up-arrow span:nth-child(1) {
    background-color: rgb(174, 70, 75);
}

#scroll-up a:hover > #scroll-up-arrow span:nth-child(2) {
    background-color: rgb(174, 70, 75);
}





@media screen and (min-width: 1200px) {
    navbar {
        width: 70%;
        padding: 5px 0px;
    }

    nav {
        width: 100%;
    }

    nav img {
        align-self: baseline;
    }
}

#inner-container div {
    margin: 10px 25px;
}

@media screen and (max-width: 400px) {
    navbar {
        padding: 5px 0px!important;
        align-items: baseline!important;
    }

    nav {
        align-items: baseline!important;
        width: 50%;
        min-width: 10%!important;
    }
}





#baggerarbeiten {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

/* Slideshow container */
.slider-behaelter {
    max-width: 1000px;
    position: relative;
}

.slider-ueberlagerung {
    width: 100%;
    height: 100%;
    position: absolute;
}

.slider-ueberlagerung div {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.2);
    z-index: 10;
    opacity: 1;
}

.slider-ueberlagerung_2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0);
    opacity: 1;
    z-index: 0;
}

.slider {
    z-index: 5;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 28px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 0px;
    z-index: 11;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
    z-index: 11;
}

.prev:hover, .next:hover {
    color: rgb(248, 100, 105);
}

#punkte {
    position: absolute;
    bottom: 15px;
}

.slider-anzahl {
    color: #fff;
    font-size: 22px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    text-shadow: 0px 0px 2px rgb(0 0 0);
}

.punkt {
    cursor: pointer;
    pointer-events: auto;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    z-index: 11;
}

.active, .punkt:hover {
    background-color: rgb(248, 100, 105);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
}

@media screen and (min-width: 1000px) {
    .slider-ueberlagerung div {
        border-radius: 15px;
    }

    .slider-ueberlagerung_2 {
        border-radius: 15px;
    }

    .slider img {
        border-radius: 15px;
        box-shadow: 0px 0px 20px rgb(0 0 0 / 20%),20px 20px 20px rgb(0 0 0 / 30%);
    }
}

@media screen and (max-width: 1000px) {
    .slider img {
        box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
    }
}


.impressum p {
    text-align: left;
    font-size: .6em!important;
}

.impressum b {
    color: #868686;
}

.body-container {
    width: 100%;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.body-container p {
    color: #adadad;
    margin: 15px;
    text-align: justify;
    line-height: 1.5;
}

.inner-body-container {
    width: 100%;
    min-height: 95vh;
    background-color: #e9e0e0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.datenschutz {
    margin: 65px 0px;
    align-items: start!important;
}

.datenschutz p {
    text-align: left;
    font-size: .6em!important;
    margin: 15px 0px!important;
}

.datenschutz li {
    color: #adadad;
    text-align: justify;
    line-height: 1.5;
    font-size: .6em;
    margin: 10px 0px;
}

.datenschutz b {
    color: #868686;
    font-size: .8em!important;
}

.galerie-image {
    width: 100%;
    height: 100%;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 10%), 20px 20px 20px rgb(0 0 0 / 10%);
    pointer-events: auto;
    cursor: pointer;
}

#galerie_content {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.galerie-fullscreen {
    position: fixed;
    z-index: 9999;
    top: 50%; right: 50%;
    transform: translate(50%,-50%);
    max-width: 90vw;
    max-height: 90vh;
    background-size: contain;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: black;
    pointer-events: auto;
}

#fullscreenBackground {
    position: fixed;
    z-index: 9998;
    background-color: rgb(0,0,0,.8);
    top: 0px;
    width: 100vw;
    height: 100vh;
    pointer-events: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.galeriePrev, .galerieNext {
    cursor: pointer;
    position: absolute;
    width: auto;
    padding: 20px 45px;
    color: white;
    font-weight: bold;
    font-size: 28px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.galeriePrev:hover, .galerieNext:hover {
    color: rgb(248, 100, 105);
}

#galerieButtons {
    z-index: 9999;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    min-width: 220px;
    min-height: 77px;
    bottom: 5vh;
    background: rgb(0,0,0,.6);
    border-radius: 10px;
}

.galeriePrev {
    /*left: 25vw;*/
    left: 0;
    z-index: 99999;
}

.galerieNext {
    /*right: 25vw;*/
    right: 0;
    border-radius: 3px 0 0 3px;
    z-index: 99999;
}

.play-button {
    position: absolute;
    width: 75px;
    height: 75px;

}