/*


----------- General ----------


*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    background: #fff;
    font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/*


----------- Menu ----------


*/

header {
    position: fixed;
    height: 150px;
    width: 100%;
    padding-top: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(234, 234, 234, 0.9);
    z-index: 999999999;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.shrink-header {
    height: 70px;
}

#nav-content-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 90%;
    max-width: 1600px;
    height: 100%;
    margin: auto;
}

#logo-container {
    display: block;
    width: 200px;
    height: 100px;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.shrink-header #logo-container {
    height: 40px;
}

#logo-container img {
    width: auto;
    height: 100%;
}

#tel {
    position: relative;
    margin-top: 45px;
    color: #333232;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

#tel p {
    font-size: 22px;
    padding: 6px 18px;
    border: solid 1px #548f90;
    font-weight: 600;
}

.shrink-header #tel {
    margin-top: -6px;
}

#menu-container ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 65px;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.shrink-header #menu-container ul {
    margin-top: 6px;
}

#menu-container li {
    display: block;
    margin: 0 20px;
}

#menu-container li:nth-child(5) {
    margin-right: 0;
}

#menu-container li a {
    color: #333232;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid #333232;
    padding: 2px 5px;
    -webkit-transition: 170ms color ease-in-out, 170ms border ease-in-out;
    transition: 170ms color ease-in-out, 170ms border ease-in-out;
}

#menu-container li a:hover,
#menu-active {
    color: #548f90 !important;
    border: 1px solid #548f90 !important;
}

#mobile-tel-click {
    display: none;
}

@media only screen and (max-width: 1440px) {
    #menu-container li {
        margin: 0px 10px;
    }
}

@media only screen and (max-width: 1200px) {
    #tel {
        position: absolute;
        right: 0;
        top: 0;
        margin: 0;
    }
    .shrink-header #tel {
        opacity: 0;
        top: -60px;
    }
}

@media only screen and (max-width: 768px) {
    header {
        height: 100px !important;
    }
    #logo-container,
    .shrink-header #logo-container {
        height: 60px;
    }
    #menu-container {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 130px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: all 0ms 0ms ease-in-out !important;
        transition: all 0ms 0ms ease-in-out !important;
    }
    .shrink-header #menu-container ul {
        margin-top: 65px;
    }
    #menu-container ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-transition: none;
        transition: none;
    }
    #menu-container ul li {
        margin: 30px auto;
    }
    #menu-container ul li:nth-child(5) {
        margin: unset;
        margin: 30px auto;
    }
    #menu-container ul li a {
        border: none;
        font-size: 25px;
        font-weight: 200;
    }
    #menu-container::before {
        content: "";
        position: fixed;
        top: -20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 90vw;
        height: 80vh;
        height: calc(90vh - 100px);
        background: #fff;
        z-index: -1;
        -webkit-transition: all 170ms ease-in-out;
        transition: all 170ms ease-in-out;
    }
    #menu-active {
        border: none !important;
        font-weight: 600 !important;
    }
    #tel {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: unset !important;
        bottom: 100px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 100px;
        text-align: center;
        margin-top: auto;
        z-index: 1;
        -webkit-transition: all 0ms ease-in-out !important;
        transition: all 0ms ease-in-out !important;
    }
    #tel p {
        border: solid 4px #9dc6c9;
    }
    #tel p span {
        display: none;
    }
    .mobile-menu-active #menu-container,
    .mobile-menu-active #tel {
        opacity: 1 !important;
        visibility: visible;
        -webkit-transition: all 200ms 200ms ease-in-out !important;
        transition: all 200ms 200ms ease-in-out !important;
    }
    .burger {
        position: relative;
        right: 0px;
        top: 20px;
        width: 30px;
        height: 23px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        cursor: pointer;
        -webkit-transition: top 400ms ease-in-out;
        transition: top 400ms ease-in-out;
    }
    .burger span {
        position: absolute;
        display: block;
        width: 30px;
        height: 3px;
        background: #4e5055;
        -webkit-transition: all 170ms ease-in-out;
        transition: all 170ms ease-in-out;
    }
    .burger span:nth-child(1) {
        top: 0px;
    }
    .burger span:nth-child(2) {
        top: 10px;
    }
    .burger span:nth-child(3) {
        top: 10px;
    }
    .burger span:nth-child(4) {
        top: 20px;
    }
    .close-burger span:nth-child(1) {
        opacity: 0;
    }
    .close-burger span:nth-child(2) {
        top: 10px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .close-burger span:nth-child(3) {
        top: 10px;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .close-burger span:nth-child(4) {
        opacity: 0;
    }
    .mobile-menu-active {
        height: 100vh !important;
        background: rgba(234, 234, 234, 1);
        -webkit-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
    }
    #menu-container li a:hover {
        color: unset !important;
        border: unset !important;
    }
    @media only screen and (max-width: 414px) {
        header {
            position: absolute;
        }
        .shrink-header {
            position: fixed;
            top: 0px;
        }
        header::before {
            content: "";
            position: absolute;
            top: -40px;
            left: 0;
            width: 100vw;
            height: 40px;
            background: #333232;
            color: #fff;
            padding-top: 10px;
            padding-right: 40px;
            font-size: 16px;
            font-weight: 300;
            text-align: right;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }
        body {
            padding-top: 40px;
        }
        #tel {
            display: none;
        }
        #mobile-tel-click {
            display: block;
            position: absolute;
            top: -30px;
            right: 20px;
        }
        #mobile-tel-click a {
            text-decoration: none;
            color: #fff;
        }
        #menu-container {
            position: absolute;
            top: 100px;
        }
        #menu-container ul {
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            height: 60vh;
            height: calc(100vh - 210px);
            margin: auto !important;
            -webkit-transition: height 170ms ease-in-out;
            transition: height 170ms ease-in-out;
        }
        #menu-container ul li {
            margin: auto !important;
        }
        #menu-container::before {
            height: 110%;
            height: calc(100% + 50px);
        }
    }
}


/*


----------- Startseite ----------


*/

#start-image {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url(../img/start_1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#start-image-text {
    position: absolute;
    bottom: 200px;
    left: 3%;
    cursor: default;
}

#start-image-text-top p {
    font-size: 41px;
    font-weight: 200;
    color: #548f90;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 9px;
}

#start-image-text-bot {
    font-size: 30px;
    font-weight: 200;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #fff;
    text-align: center;
    padding: 10px 5px;
}

.heading-container {
    width: 90%;
    max-width: 1600px;
    margin: auto;
    text-align: right;
    padding: 180px 0;
    cursor: default;
}

.heading-container h1 {
    font-size: 7vw;
    font-weight: 600;
    color: #7bacad;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.heading-container p {
    font-size: 24px;
    font-weight: 600;
    color: #726f6f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.h-c-less-padding {
    padding: 120px 0;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#start-image-mid {
    width: 100vw;
    height: 680px;
    background: url(../img/start_2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#about-text {
    text-align: center;
    padding: 160px 5%;
}

#about-text h2 {
    display: inline-block;
    font-size: 52px;
    font-weight: 600;
    color: #726f6f;
    padding-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #0d949a;
}

#about-text p {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #726f6f;
    line-height: 34px;
    margin-top: 40px;
}

#start-image-bot {
    width: 100vw;
    height: 780px;
    background: url(../img/start_3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#mobile-greeting {
    display: none;
}

@media only screen and (min-width: 2000px) {
    .heading-container h1 {
        font-size: 4vw;
    }
}

@media only screen and (max-width: 1440px) {
    #start-image-text {
        bottom: 100px;
        left: 7%;
    }
    #start-image-text-top p {
        color: #fff;
    }
    #start-image-mid {
        height: 550px;
    }
    #start-image-bot {
        height: 550px;
    }
    .heading-container {
        padding: 100px 0px;
    }
    .heading-container p {
        font-size: 20px;
    }
    #about-text {
        padding: 100px 5%;
    }
    #about-text p {
        max-width: 960px;
        margin: auto;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 1024px) {
    #start-image {
        height: 700px;
    }
    #start-image,
    #start-image-mid,
    #start-image-bot {
        background-attachment: unset;
    }
}

@media only screen and (max-width: 768px) {
    #start-image {
        height: 950px;
        background-attachment: unset;
    }
    .heading-container {
        padding-bottom: 50px;
    }
    .heading-container h1 {
        font-size: 13vw;
        line-height: 13vw;
    }
    .heading-container p {
        max-width: 530px;
        margin-left: auto;
        font-size: 16px;
        line-height: 26px;
    }
    #start-image-mid {
        height: 350px;
        background-position: top;
        background-attachment: unset;
    }
    #about-text h2 {
        border-bottom: none;
        border: 3px solid #c6e0e2;
        padding: 5px 24px;
    }
    #start-image-bot {
        height: 350px;
        background-attachment: unset;
    }
}

@media only screen and (max-width: 414px) {
    #start-image {
        height: 600px;
    }
    #start-image-text {
        display: none;
    }
    #mobile-greeting {
        display: block;
        background: #f2f2f2;
        position: absolute;
        bottom: 30px;
        left: 0;
        width: 100vw;
        border-top: 3px solid #7bacad;
        border-bottom: 3px solid #fff;
        padding: 30px 40px;
    }
    #mobile-greeting h3 {
        font-size: 35px;
        line-height: 40px;
        font-weight: 200;
        text-transform: uppercase;
        color: #333232;
    }
    #mobile-greeting h2 {
        font-size: 35px;
        line-height: 40px;
        letter-spacing: 1px;
        font-weight: 900;
        text-transform: uppercase;
        color: #333232;
    }
    #mobile-greeting h4 {
        max-width: 260px;
        font-size: 17px;
        line-height: 21px;
        font-weight: 300;
        text-transform: uppercase;
        text-align: right;
        color: #333232;
    }
    .heading-container {
        padding: 70px 0;
    }
    .heading-container h1 {
        display: none;
    }
    .heading-container p {
        max-width: 320px;
        color: #333232;
    }
    #about-text {
        padding: 70px 10% 40px 10%;
    }
    #about-text h2 {
        font-size: 25px;
    }
    #about-text p {
        font-size: 17px;
    }
}


/*


----------- Team ----------


*/

#slider {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 150px;
    height: 100vh;
}

#slider-img-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100vw;
    height: 95%;
    background: lightblue;
    overflow: scroll;
}

.slider-img {
    position: absolute;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

#slider-img-1 {
    background: url(../img/slider-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#slider-img-2 {
    background: url(../img/slider-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#slider-img-3 {
    background: url(../img/slider-3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slider-img-active {
    z-index: 3;
}

#slider-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    background: #333232;
}

.button {
    width: 19px;
    height: 19px;
    margin: 36px 8px;
    background: #7bacad;
    border: 1px solid #7bacad;
    cursor: pointer;
    -webkit-transition: background 170ms ease-in-out;
    transition: background 170ms ease-in-out;
}

.button:hover {
    background: rgb(166, 192, 192);
}

.slider-button-active {
    background: #fff !important;
}

.placeholder {
    height: 500px;
}

#team-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 90%;
    max-width: 1600px;
    margin: auto;
}

.team-tile {
    width: 30%;
    max-width: 450px;
    margin-bottom: 150px;
}

.team-tile-img {
    position: relative;
    width: 100%;
    height: 0px;
    padding-bottom: 100%;
    overflow: hidden;
}

.team-tile-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 100%;
    width: auto;
    min-height: 100%;
    height: 100%;
}

.team-tile-img a {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

.team-tile-img:hover>a {
    opacity: 1;
}

.team-placeholder-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 220px;
    text-transform: none;
    font-size: 20px;
    text-align: center;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 1);
}

.readmore-box {
    display: block;
    position: absolute;
    bottom: 35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 145px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

.readmore-box p {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    color: #333232;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #548f90;
    cursor: pointer;
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

.readmore-box p:hover {
    background: #fff;
    color: #548f90;
}

.team-tile-text {
    display: block;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    color: #333232;
    -webkit-transition: all 370ms ease-in-out;
    transition: all 370ms ease-in-out;
}

.team-tile-img:hover~.team-tile-text {
    opacity: 0.3;
}

#gemeinsam {
    display: none;
}

.mobile-vita {
    display: none;
}

@media only screen and (max-width: 1440px) {
    #slider-bar {
        height: 50px;
    }
    .button {
        width: 15px;
        height: 15px;
        margin: 18px 8px;
    }
    .team-tile-text {
        font-size: 24px;
    }
}

@media only screen and (max-width: 1024px) {
    .team-tile {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 768px) {
    #slider {
        padding-top: 100px;
    }
    #slider-img-container {
        -webkit-filter: brightness(0.6);
        filter: brightness(0.6);
    }
    #gemeinsam {
        position: absolute;
        bottom: 150px;
        right: 100px;
        display: block;
        text-transform: uppercase;
        color: #fff;
        font-size: 60px;
        font-weight: 800;
        letter-spacing: 1.8px;
        z-index: 2;
    }
    #gemeinsam::before {
        content: "";
        position: absolute;
        top: 37px;
        left: 20px;
        width: 100%;
        height: 60%;
        border: 3px solid #548f90;
        z-index: -1;
    }
    #team-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .team-tile {
        width: 450px;
        margin: auto;
        margin-bottom: 100px;
    }
    .team-tile-img {
        width: 450px;
        height: 400px;
    }
    .team-tile-img a:hover {
        opacity: 0;
    }
    .team-tile-text {
        position: relative;
        text-align: left;
    }
    .team-tile-text::after {
        position: absolute;
        right: 0;
        top: 0;
        content: "Zur Vita";
        font-size: 20px;
        font-weight: 600;
        padding: 5px 10px;
        border: 1px solid #548f90;
        text-transform: none;
    }
    .readmore-box {
        bottom: 0;
    }
    .mobile-vita {
        position: absolute;
        right: 0;
        bottom: -7px;
        display: block;
        width: 100px;
        height: 40px;
        z-index: 1;
    }
}

@media only screen and (max-width: 500px) {
    #slider-img-container {
        height: 100%;
    }
    #slider-bar {
        display: none;
    }
    #gemeinsam {
        width: 100%;
        right: unset;
        top: unset;
        bottom: 30px;
        color: #333232;
        background: #f2f2f2;
        border-top: 3px solid #7bacad;
        border-bottom: 3px solid #fff;
        padding: 20px 40px;
    }
    #gemeinsam p {
        font-size: 35px;
    }
    #gemeinsam::before {
        display: none;
    }
    #team-container {
        width: 70%;
    }
    .team-tile {
        width: 100%;
        margin-bottom: 70px;
    }
    .team-tile-img {
        width: 100%;
        height: 250px;
    }
    .team-tile-text {
        margin-top: 10px;
    }
    .team-tile-text p {
        display: block;
        padding-top: 6px;
        font-size: 16px;
        max-width: 200px;
    }
    .team-tile-text::after {
        font-size: 16px;
    }
}


/*


----------- Team individuell ----------


*/

#team-member-head-container {
    position: relative;
    width: 90%;
    max-width: 1600px;
    padding-top: 300px;
    margin: auto;
    margin-bottom: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#team-member-title {
    position: relative;
    left: 0;
}

#team-member-title h1 {
    display: inline;
    font-size: 50px;
    text-transform: uppercase;
    padding: 8px 24px;
    color: #333232;
    border: solid 3px #c6e0e2;
}

#backtoprevious a {
    display: inline;
    font-size: 20px;
    padding: 8px 24px;
    color: #333232;
    border: solid 3px #c6e0e2;
    text-decoration: none;
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

#backtoprevious a:hover {
    color: #c6e0e2;
}

#team-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 90%;
    max-width: 1600px;
    margin: auto;
    margin-bottom: 80px;
    color: #707070;
}

#team-content-left {
    width: 30%;
    max-width: 445px;
}

#team-content-img {
    min-width: 200px;
}

#team-content-img img {
    width: 100%;
}

#team-content-personal {
    margin-top: 30px;
}

#team-content-personal h3,
#team-content-personal p {
    font-size: 17px;
    font-weight: 300;
    line-height: 28px;
}

#team-content-personal h3 {
    font-weight: 600;
}

#team-content-right {
    width: 70%;
    margin-left: 50px;
}

.team-content-table-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.team-content-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 28px;
}

.team-content-line p {
    font-size: 17px;
    font-weight: 300;
    line-height: 28px;
}

.team-content-line h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
}

.team-content-fortbildungen {
    margin-top: 30px;
    margin-bottom: 30px;
}

.team-content-date {
    width: 120px;
    min-width: 120px;
}

.team-content-milestone {
    margin-left: 40px;
}

#team-content-personal p {
    text-align: justify;
    hyphens: auto;
}

.team-content-milestone p {
    text-align: justify;
    hyphens: auto;
}

.table-bar {
    position: absolute;
    left: 124px;
    top: 4px;
    display: block;
    height: 100%;
    height: calc(100% - 32px);
    width: 1px;
    background: #c6e0e2;
    z-index: 9;
}

@media only screen and (max-width: 1500px) {
    #team-member-title h1 {
        font-size: 40px;
    }
    .team-content-line {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 1000px) {
    #team-member-head-container {
        padding-top: 200px;
    }
    #team-content-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #team-content-left {
        width: 50%;
        max-width: 300px;
    }
    #team-content-right {
        width: 100%;
        margin: unset;
        margin-top: 50px;
    }
    #team-content-personal {
        display: none;
    }
    #team-member-title h1 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 500px) {
    #team-member-head-container {
        padding-top: 160px;
        margin-bottom: 40px;
    }
    #team-member-title h1 {
        font-size: 20px;
        padding: 0;
        border: none;
    }
    #backtoprevious a {
        font-size: 16px;
        padding: 4px 12px;
    }
    .team-content-line p {
        font-size: 14px;
    }
    .table-bar {
        left: 90px;
    }
    .team-content-date {
        width: 80px;
        min-width: 80px;
    }
    .team-content-milestone {
        margin-left: 30px;
    }
}


/*


----------- Schwerpunkte ----------


*/

#showcase {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
    padding-top: 150px;
}

.showcase-img {
    height: 100%;
    width: 70%;
}

#showcase-aside {
    height: 100%;
    width: 30%;
    background: #333232;
}

.showcase-title {
    position: absolute;
    right: 15%;
    bottom: 20%;
}

#schwerpunkte-title {
    position: absolute;
    right: 7%;
    top: 30%;
    bottom: unset;
}

#showcase-title-inside {
    position: relative;
    font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1.8px;
    z-index: 2;
}

#title-box {
    display: block;
    position: absolute;
    top: 50px;
    left: 70px;
    width: 100%;
    height: 80%;
    border: 3px solid #548f90;
    z-index: 1;
}

#schwerpunkte-img {
    background: url(../img/schwerpunkte.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#schwerpunkte-wrapper {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 100px;
    background: #f1f1f1;
}

#schwerpunkte-bar {
    position: relative;
    height: 650px;
    width: 27px;
    background: #7bacad;
}

#schwerpunkte-menu {
    height: 650px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 30px;
    padding-right: 70px;
    padding-bottom: 20px;
    padding-left: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #0d949a;
    color: #fff;
}

#schwerpunkte-showcase {
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 70px;
    padding-left: 16%;
}

.sm-line {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 40px;
    cursor: pointer;
}

.sml-left {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    margin-top: 6px;
    margin-right: 14px;
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

.sm-line:hover>.sml-left {
    background: #6fbcc0;
}

.sm-active .sml-left {
    background: #fff;
}

.sm-active:hover .sml-left {
    background: #fff;
}

.ss-content {
    display: none;
    max-width: 680px;
}

.ss-content h3 {
    display: inline-block;
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333232;
    padding: 8px 16px;
    border: 3px solid #c6e0e2;
    overflow: hidden;
    margin-bottom: 36px;
}

.ss-content p {
    font-size: 16px;
    font-weight: 300;
    color: #726f6f;
    line-height: 26px;
    hyphens: auto;
    text-align: justify;
}

.ss-content a {
    font-size: 16px;
    font-weight: 300;
    color: #726f6f;
    line-height: 26px;
    padding: 2px 8px;
    border: 1px solid #9dc6c9;
    text-decoration: none;
    transition: all 170ms ease-in-out;
}

.ss-content a:hover {
    background: #9dc6c9;
    border-color: #9dc6c9;
    color: #fff;
}

.ss-content-active {
    display: block;
}

.ul-1 {
    position: relative;
    margin-left: 28px;
    margin-top: 10px;
}

.ul-1::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #726f6f;
}

@media only screen and (max-width: 1024px) {
    #showcase {
        height: 700px;
    }
    .showcase-img {
        width: 100%;
        -webkit-filter: brightness(0.7);
        filter: brightness(0.7);
    }
    #showcase-aside {
        width: 0;
    }
    #showcase-title-inside {
        font-size: 60px;
    }
    #title-box {
        top: 37px;
        left: 20px;
        height: 60%;
    }
    #schwerpunkte-wrapper {
        margin-bottom: 0;
    }
    #schwerpunkte-title {
        right: 10%;
        top: 70%;
    }
    #schwerpunkte-menu {
        height: auto;
        padding-right: 20px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .sm-line {
        height: unset;
        margin-bottom: 20px;
    }
    .sml-right {
        line-height: 24px;
    }
    #schwerpunkte-bar {
        height: auto;
    }
    #schwerpunkte-showcase {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .smaller-heading h1 {
        font-size: 9vw;
        line-height: 9vw;
    }
    #schwerpunkte-showcase {
        padding: 30px;
    }
}

@media only screen and (max-width: 700px) {
    #showcase {
        height: 600px;
        padding-top: 0;
    }
    #schwerpunkte-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .ss-content h3 {
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        max-width: 100%;
    }
}


/*


----------- Ambiente ----------


*/

#image-container-top {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 100px;
}

#ambiente-img {
    background: url(../img/ambiente.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#image-container-top:before {
    content: "";
    position: absolute;
    top: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    width: 100vw;
    height: 90%;
    height: calc(100% - 200px);
    background: -webkit-gradient( linear, left top, left bottom, from(transparent), to(#e3e3e3));
    background: linear-gradient(to bottom, transparent, #e3e3e3);
}

.image {
    position: relative;
    width: 49.9%;
    width: calc(50% - 4px);
    height: 430px;
    background: lightcoral;
    margin: 2px;
    overflow: hidden;
}

.overlay {
    position: relative;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: #333232;
    cursor: pointer;
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

.overlay:hover {
    opacity: 0.85;
}

.resize-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    background: #333232;
    width: 70px;
    height: 70px;
    border: solid 1px #7bacad;
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

.resize-box:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.15);
    transform: translate(-50%, -50%) scale(1.15);
    background: #2c2b2b;
}

.resize-box-bars {
    position: relative;
    width: 100%;
    height: 100%;
}

.resize-box-bars {
    position: relative;
}

.resize-box-bars img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
}

.long-image {
    height: 100%;
}

#image-container-bot {
    position: relative;
    margin-bottom: 100px;
}

#image-container-bot:before {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    width: 100vw;
    height: 80%;
    height: calc(80% - 100px);
    background: #eaeaea;
}

.image-container-bot-square {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

#image-container-bot-alter {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    height: 868px;
    margin: auto;
}

#Ai1 {
    background: url(../img/Ai1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai2 {
    background: url(../img/Ai2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai3 {
    background: url(../img/Ai3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai4 {
    background: url(../img/Ai4.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai5 {
    background: url(../img/Ai5.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai6 {
    background: url(../img/Ai6.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai7 {
    background: url(../img/Ai7.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai8 {
    background: url(../img/Ai8.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai9 {
    background: url(../img/Ai9.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai10 {
    background: url(../img/Ai10.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai11 {
    background: url(../img/Ai11.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai12 {
    background: url(../img/Ai12.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai13 {
    background: url(../img/Ai13.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai14 {
    background: url(../img/Ai14.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai15 {
    background: url(../img/Ai15.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai16 {
    background: url(../img/Ai16.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai17 {
    background: url(../img/Ai17.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai18 {
    background: url(../img/Ai18.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai19 {
    background: url(../img/Ai19.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai20 {
    background: url(../img/Ai20.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Ai21 {
    background: url(../img/Ai21.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fullscreen-image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(51, 50, 50, 0.9);
    z-index: 9999999999;
}

.active-fullscreen {
    display: block;
}

.fullscreen-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90%;
    max-width: 1300px;
    height: auto;
    max-height: 90%;
    margin: auto;
    overflow: hidden;
    border: 2px solid #fff;
    z-index: 99999999999999999;
}

.fullscreen-image-wrapper img {
    width: 100%;
    height: 100%;
}

.kill-fullscreen {
    position: fixed;
    top: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: url(../img/resize.svg);
    background-position: center;
    background-size: contain;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    cursor: pointer;
    z-index: 9999999999999999999999;
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

.kill-fullscreen:hover {
    opacity: 0.5;
}

.fullscreen-image-wrapper.long-container {
    width: unset;
}

#pfeile-container {
    /* display: none; */
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 9999999999;
}

.pfeil {
    width: 30px;
    height: 50px;
}

.pfeil img {
    height: 100%;
    cursor: pointer;
    transition: all 170ms ease-in-out;
}

.pfeil img:hover {
    opacity: 0.5;
}

@media only screen and (max-width: 1440px) {
    #image-container-top,
    .image-container-bot-square,
    #image-container-bot-alter {
        max-width: 960px;
    }
    #image-container-top {
        margin-bottom: 40px;
    }
    #image-container-bot-alter {
        height: 708px;
    }
    .image {
        height: 350px;
    }
    .long-image {
        height: 100%;
    }
    .mw960 {
        max-width: 960px;
    }
    .h-c-less-padding {
        padding-bottom: 50px;
    }
    .fullscreen-image-wrapper {
        width: 90%;
        max-width: 1000px;
        height: auto;
        max-height: 90%;
        margin: auto;
        overflow: hidden;
        border: 2px solid #fff;
        z-index: 99999999999999999;
    }
}

@media only screen and (max-width: 1024px) {
    #image-container-top,
    .image-container-bot-square,
    #image-container-bot-alter {
        max-width: 660px;
    }
    #image-container-top {
        margin-bottom: 0px;
    }
    #image-container-bot-alter {
        height: 508px;
    }
    .image {
        height: 250px;
    }
    .long-image {
        height: 100%;
    }
    .mw960 {
        max-width: 660px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .fullscreen-image-wrapper img {
        width: 100%;
        height: 100%;
    }
}

@media only screen and (max-width: 414px) {
    .smaller-heading {
        width: 80%;
    }
    .show-on-mobile h1 {
        display: block;
    }
    #image-container-top,
    .image-container-bot-square,
    #image-container-bot-alter {
        height: unset;
        width: 80%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .image {
        width: 100%;
        height: 220px;
        margin: 0;
        margin-bottom: 10px;
    }
    .long-image {
        height: 440px;
    }
    .overlay {
        opacity: 1;
        background: transparent;
    }
    .resize-box {
        right: 0;
        left: unset;
        bottom: 0;
        top: unset;
        -webkit-transform: unset;
        transform: unset;
        background: transparent;
        border: none;
    }
    .resize-box:hover {
        background: transparent;
        -webkit-transform: unset;
        transform: unset;
    }
}


/*


----------- Kontakt ----------


*/

#kontakt-img {
    background: url(../img/kontakt.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#kontakt-title {
    bottom: 50%;
}

#kontakt-content-wrapper-top {
    position: relative;
    width: 90%;
    max-width: 1600px;
    margin: auto;
    margin-bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.kontakt-section h3 {
    display: inline-block;
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333232;
    padding: 8px 16px;
    border: 3px solid #c6e0e2;
    overflow: hidden;
    margin-bottom: 36px;
}

.kontakt-section p,
.kontakt-section a {
    position: relative;
    font-size: 20px;
    font-weight: 300;
    color: #726f6f;
    line-height: 25px;
    text-decoration: none;
}

.kontakt-section a:hover {
    text-decoration: underline;
}

.underline p {
    position: relative;
    display: inline-block;
}

.underline p::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #726f6f;
}

.map-wrapper {
    position: relative;
    margin-bottom: 80px;
}

.map-wrapper iframe {
    width: 100%;
    height: 650px;
    -webkit-filter: saturate(0.2);
    filter: saturate(0.2);
}

.map {
    padding-top: 30px;
}

.map {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.iframe-placeholder {
    margin: 0;
    position: relative;
    width: 100%;
    height: 650px;
    background: url(../img/maps-holder.png);
    background-position: center;
    background-size: cover;
}

.iframe-placeholder p,
.iframe-placeholder a {
    margin: auto;
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #726f6f;
}

.iframe-placeholder-content {
    width: 80%;
    max-width: 750px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#maps-button {
    display: block;
    margin: auto;
    margin-top: 50px;
    width: 100px;
    text-align: center;
    padding: 5px 13px;
    background: #fff;
    border: solid 1px #726f6f;
    color: #726f6f;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#maps-button:hover {
    background: #726f6f;
    color: #fff;
    -webkit-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#form-wrapper {
    position: relative;
    width: 90%;
    max-width: 1600px;
    margin: auto;
    margin-bottom: 100px;
}

#form-wrapper h3 {
    display: inline-block;
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333232;
    padding: 8px 16px;
    border: 3px solid #c6e0e2;
    overflow: hidden;
    margin-bottom: 36px;
}

#form-wrapper h3 span {
    text-transform: none;
    font-size: 25px;
}

form {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.form-section {
    width: 45%;
    margin-right: 5%;
    max-width: 680px;
}

form input,
form textarea {
    width: 100%;
}

.wdh {
    display: none;
}

#name,
#email,
#telephone {
    position: relative;
    margin-top: 40px;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #707070;
}

#telephone {
    margin-bottom: 50px;
}

#text {
    position: relative;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid #707070;
}

#name,
#email,
#telephone,
#text,
form label,
form p {
    font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-weight: 300;
    color: #726f6f;
    -webkit-transition: all 270ms ease-in-out;
    transition: all 270ms ease-in-out;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

::-webkit-input-placeholder {
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

::-moz-placeholder {
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

::-ms-input-placeholder {
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

::-moz-placeholder {
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

input:focus::-webkit-input-placeholder {
    color: #c9c3c3;
}

input:focus::-moz-placeholder {
    color: #c9c3c3;
}

input:focus:-ms-input-placeholder {
    color: #c9c3c3;
}

input:focus:-moz-placeholder {
    color: #c9c3c3;
}

#name:focus,
#email:focus,
#telephone:focus,
#text:focus {
    border-color: #c6e0e2;
}

.form-section button {
    font-size: 14px;
    color: #726f6f;
    background: #eaeaea;
    font-weight: 300;
    width: 100px;
    height: 40px;
    margin-top: 30px;
    border: none;
    cursor: pointer;
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

.form-section button:hover {
    background: #c6e0e2;
}

.form-section:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-bottom: 70px;
}

.form-section:last-child p {
    margin-top: 20px;
    font-size: 12px;
}

#data-checkbox-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

#data-checkbox-wrapper input {
    display: none;
}

#data-checkbox-wrapper label {
    font-size: 14px;
    max-width: 500px;
    cursor: pointer;
    hyphens: auto;
    text-align: justify;
}

input[type="checkbox"]+label::before {
    position: absolute;
    left: -24px;
    top: 2px;
    width: 15px;
    height: 15px;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    display: block;
    content: "";
    margin-right: 5px;
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

input[type="checkbox"]:hover+label::before {
    -webkit-box-shadow: inset 0px 0px 0px 2px #fff;
    box-shadow: inset 0px 0px 0px 2px #fff;
    background-color: rgba(198, 224, 226, 0.35);
    border: 1px solid #c6e0e2;
}

input[type="checkbox"]:checked+label::before {
    -webkit-box-shadow: inset 0px 0px 0px 2px #fff;
    box-shadow: inset 0px 0px 0px 2px #fff;
    background-color: #c6e0e2;
    border: 1px solid #c6e0e2;
}

#service-wrapper {
    position: relative;
    width: 90%;
    max-width: 1600px;
    margin: auto;
    margin-bottom: 100px;
}

#service-wrapper h3 {
    display: inline-block;
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333232;
    padding: 8px 16px;
    border: 3px solid #c6e0e2;
    overflow: hidden;
    margin-bottom: 36px;
}

#service-wrapper p {
    position: relative;
    font-size: 20px;
    font-weight: 300;
    color: #726f6f;
    line-height: 30px;
    text-decoration: none;
}

#grau-bottom {
    background: rgba(234, 234, 234, 0.18);
    margin-bottom: 43px;
}

#grau-bottom-content {
    position: relative;
    width: 90%;
    max-width: 1600px;
    margin: auto;
    margin-bottom: 40px;
    padding-top: 60px;
    padding-bottom: 100px;
}

#grau-bottom-content h3 {
    display: inline-block;
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333232;
    padding: 8px 16px;
    border: 3px solid #c6e0e2;
    overflow: hidden;
    margin-bottom: 36px;
}

#grau-bottom-content p,
#grau-bottom-content a {
    position: relative;
    font-size: 20px;
    font-weight: 300;
    color: #726f6f;
    line-height: 30px;
    text-decoration: none;
    transition: all 170ms ease-in-out;
}

#grau-bottom-content a:hover {
    color: #bbb8b8;
}

#grau-bottom-content p img {
    margin-left: 16px;
}

.dankeee {
    padding-top: 300px;
    padding-bottom: 70px;
}

.dankeee h1 {
    font-size: 4vw;
}

.backtostart {
    display: block;
    position: relative;
    text-align: right;
    width: 90%;
    max-width: 1600px;
    margin: auto;
    margin-bottom: 100px;
}

.backtostart a {
    display: inline-block;
    padding: 6px 16px;
    border: #7bacad 3px solid;
    text-decoration: none;
    text-transform: uppercase;
    color: #726f6f;
    font-size: 20px;
    transition: all 170ms ease-in-out;
}

.backtostart a:hover {
    opacity: 0.5;
}

@media only screen and (max-width: 1440px) {
    .iframe-placeholder {
        height: 500px;
    }
    .map-wrapper iframe {
        height: 500px;
    }
}

@media only screen and (max-width: 1024px) {
    .iframe-placeholder {
        height: 350px;
    }
    .map-wrapper iframe {
        height: 350px;
    }
}

@media only screen and (max-width: 768px) {
    #kontakt-content-wrapper-top {
        width: 80%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .kontakt-section {
        width: 100%;
    }
    .kontakt-section:first-child {
        margin-bottom: 70px;
    }
    .kontakt-section h3 {
        font-size: 25px;
    }
    .kontakt-section p,
    .kontakt-section a {
        font-size: 16px;
    }
    #form-wrapper {
        width: 80%;
    }
    #form-wrapper h3 {
        font-size: 25px;
        max-width: 400px;
    }
    #form-wrapper h3 span {
        font-size: 20px;
    }
    form {
        margin: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .form-section {
        width: 100%;
    }
    .form-section:first-child {
        margin-bottom: 50px;
    }
    #data-checkbox-wrapper label {
        position: relative;
        max-width: 430px;
        margin: auto;
    }
    input[type="checkbox"]+label::before {
        left: -32px;
    }
    .form-section:last-child p {
        margin-left: 30px;
    }
    #service-wrapper {
        width: 80%;
        margin-bottom: 50px;
    }
    #service-wrapper h3,
    #grau-bottom-content h3 {
        font-size: 25px;
    }
    #service-wrapper p,
    #grau-bottom-content p {
        font-size: 16px;
    }
    #grau-bottom-content {
        width: 80%;
    }
    .dankeee {
        padding-top: 150px;
        padding-bottom: 70px;
    }
    .dankeee h1 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 414px) {
    #schwerpunkte-title,
    #ambiente-title,
    #kontakt-title {
        width: 100%;
        right: unset;
        top: unset;
        bottom: 30px;
        background: #f2f2f2;
        border-top: 3px solid #7bacad;
        border-bottom: 3px solid #fff;
        padding: 20px 40px;
    }
    #schwerpunkte-title p,
    #ambiente-title p,
    #kontakt-title p {
        font-size: 35px;
        color: #333232;
    }
    #title-box {
        display: none;
    }
    .mobile-no-p {
        margin-bottom: 50px;
    }
    .mobile-no-p p {
        display: none;
    }
    #data-checkbox-wrapper label {
        max-width: 250px;
    }
    .dankeee h1 {
        font-size: 24px;
    }
    .backtostart a {
        font-size: 16px;
    }
}


/*


----------- Impressum ----------


*/

#impressum-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding-top: 300px;
    margin-bottom: 200px;
}

#impressum-header h3 {
    display: inline-block;
    font-size: 50px;
    text-transform: uppercase;
    border: 3px solid #c6e0e2;
    padding: 4px 16px;
    margin-bottom: 50px;
}

#impressum-subline p {
    font-size: 16px;
    font-weight: 300;
    color: #726f6f;
    line-height: 28px;
}

#impressum-content {
    column-count: 2;
    column-gap: 100px;
    column-width: 300px;
}

#impressum-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333232;
    line-height: 28px;
}

#impressum-content p {
    font-size: 16px;
    font-weight: 300;
    color: #726f6f;
    line-height: 28px;
    text-align: justify;
    hyphens: auto;
}

#impressum-content p a {
    color: #726f6f;
}

#impressum-content p a:hover {
    text-decoration: none;
}


/*


----------- Footer ----------


*/

footer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    cursor: default;
}

footer p,
footer h3 {
    cursor: default;
}

#footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #333232;
    color: #fff;
    padding: 70px 0 20px 0;
}

#footer-top-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.footer-tile {
    width: 300px;
    text-align: center;
}

.footer-tile img {
    position: relative;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.footer-tile:nth-child(1) img {
    width: 40px;
    top: -7px;
    margin-bottom: -9px;
}

.footer-tile:nth-child(2) img {
    width: 40px;
}

.footer-tile:nth-child(3) img {
    width: 40px;
    top: -8px;
    margin-bottom: -4px;
}

.footer-tile h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 300;
}

.footer-tile p,
.footer-tile a {
    font-size: 16px;
    font-weight: 200;
    line-height: 25px;
    color: #fff;
    text-decoration: none;
}

.footer-tile a:hover {
    text-decoration: underline;
}

#footer-top-bot {
    position: relative;
    margin-top: 80px;
    margin-bottom: 10px;
}

#footer-top-bot-mid {
    text-align: center;
}

#footer-top-bot-mid a,
#footer-top-bot-mid p {
    display: inline;
    font-size: 16px;
    font-weight: 200;
    color: #fff;
    text-decoration: none;
}

#footer-top-bot-mid a:hover {
    text-decoration: underline;
}

#footer-top-bot-fb {
    position: absolute;
    right: 10%;
    bottom: 0;
}

#footer-top-bot-fb a img {
    -webkit-transition: padding 170ms ease-in-out;
    transition: padding 170ms ease-in-out;
}

#footer-top-bot-fb a:hover img {
    padding-bottom: 5px;
}

#footer-bot {
    color: #726f6f;
    text-align: center;
    padding: 16px 0 12px 0;
    font-size: 16px;
    font-weight: 300;
    cursor: default;
}

@media only screen and (max-width: 1440px) {
    #footer-top-top {
        max-width: 1100px;
    }
    #footer-top-bot-fb {
        right: 15%;
    }
}

@media only screen and (max-width: 768px) {
    #footer-top-top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 550px;
    }
    #footer-top-bot {
        margin-top: 0;
    }
    .footer-tile {
        position: relative;
        width: 40%;
        margin-bottom: 50px;
        text-align: left;
        padding-left: 50px;
    }
    .footer-tile img {
        position: absolute;
        top: 5px;
        left: 0px;
        margin: unset;
    }
    .footer-tile:nth-child(1) img {
        left: 10px;
    }
    .footer-tile:nth-child(3) img {
        left: 5px;
    }
}

@media only screen and (max-width: 414px) {
    #footer-top-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-tile {
        width: 100%;
    }
    .footer-tile h3 {
        font-size: 16px;
    }
    .footer-tile p {
        font-size: 14px;
    }
    .footer-tile:nth-child(3) br:first-of-type {
        display: none;
    }
    #footer-top-bot-mid {
        width: 70%;
        text-align: left;
        margin: auto;
    }
    #footer-top-bot-mid a {
        font-size: 14px;
    }
    #footer-bot p {
        font-size: 12px;
    }
}


/*


----------- Cookie ----------


*/

#cookiedingsbums a {
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
}

#cookiedingsbums a:hover {
    text-decoration: none;
}

#cookiedingsbums div {
    padding: 10px;
    padding-right: 40px;
    margin-left: auto;
}

#cookiedingsbums {
    display: flex;
    flex-direction: row;
    justify-content: end;
    text-align: right;
    border-top: 3px solid #6fbcc0;
    background: #0d949a;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#d6e0eb', endColorstr='#f2f6f9', GradientType=0);
    position: fixed;
    bottom: 0px;
    z-index: 10000;
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    padding: 10px;
}

#cookiedingsbumsCloser {
    color: #fff;
    font-size: 25px;
    position: relative;
    right: 5px;
    text-decoration: none;
    cursor: pointer;
    padding: 4px;
    transition: all 170ms ease-in-out;
}

#cookiedingsbumsCloser:hover {
    transform: scale(0.8);
}