/*



------------------------------------------->   Basic settings   <--------------------------------------------
Türkis = #44b9b8 / rgb(68,185,185) / rgba(68, 185, 185, 0.7) / etwas dunkler: rgba(57, 158, 158, 0.7); H1
Hell Blau = #00acd3 / rgb(0,172,211) / rgba(0, 172, 211, 0.5) heller Blau Unterstrich
Dunkel Blau = #1182bb / rgb(17,130,187) Dunkel blau Headlines

*/

html,
body,
h1,
h2,
h3,
h4,
a,
li,
p {
    padding: 0;
    margin: 0;
    font-family: "Open Sans";
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100vw;
    overflow-x: hidden;
}

strong {
    font-weight: 400;
}

.cookieinfo-close {
    color: #fff !important;
}


/*



------------------------------------------->   Header Styling  <--------------------------------------------



*/

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    -webkit-transition: top 170ms ease-in-out;
    -o-transition: top 170ms ease-in-out;
    transition: top 170ms ease-in-out;
}

.open-Lightbox {
    top: -130px;
}

.socialmedia {
    position: relative;
    width: 100vw;
    background: #eaeaea;
}

.sm-inner {
    width: 95vw;
    margin: auto;
    padding: 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: flex-end;
    flex-direction: flex-end;
    justify-content: flex-end;
}

.sm-inner-box {
    margin-left: 10px;
    height: 30px;
}

.sm-inner-box img {
    height: 100%;
}

.nav {
    position: relative;
    width: 100vw;
    height: 70px;
    background: #eaeaea;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    z-index: 97;
}

.shrink {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.menu-wrapper {
    height: 100%;
    width: 95vw;
    margin: auto;
    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;
    cursor: default;
}

.start-logo {
    display: block;
    color: rgb(78, 80, 85);
    width: 235px;
    margin-left: 30px;
}

.start-logo img {
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: #fff;
    margin-top: -25px;
    /* -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); */
}

.menu {
    margin: auto 0;
    float: right;
    min-width: 850px;
    /* overflow: hidden; */
}

.menu ul {
    /* margin-top: 40px; */
    float: right;
}

.menu ul li {
    position: relative;
    display: inline-block;
    list-style: none;
    margin-left: 60px;
    padding-right: 20px;
    font-size: 17px;
    font-weight: 300;
    -webkit-transition: border 100ms ease-in-out;
    -o-transition: border 100ms ease-in-out;
    transition: border 100ms ease-in-out;
}

.menu ul li:hover::before {
    background: rgba(96, 199, 222, 0.5);
}

.menu ul li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 110%;
    width: calc(100% + 20px);
    height: 8px;
    background: rgba(198, 198, 198, 0.4);
    z-index: -1;
    -webkit-transition: background 100ms ease-in-out;
    -o-transition: background 100ms ease-in-out;
    transition: background 100ms ease-in-out;
}

.menu ul li ul li::before {
    display: none;
}

.current-nav-selection {
    font-weight: 600 !important;
}

.current-nav-selection::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 110% !important;
    width: calc(100% + 20px) !important;
    height: 8px !important;
    background: rgba(96, 199, 222, 0.5) !important;
    z-index: -1 !important;
}

.drop {
    position: relative;
}

.drop:hover>a {
    padding-bottom: 50px;
}

.drop:hover>ul,
.menu ul li ul:hover {
    visibility: visible;
    opacity: 1;
    background: rgb(51, 50, 50);
    height: 580px;
    -webkit-box-shadow: 0 20px 40px #11111127;
    box-shadow: 0 20px 40px #11111127;
}

.drop:hover>ul li {
    opacity: 1;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}


/* .drop:hover>ul div {
    height: 86%;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
} */

.menu ul li a {
    text-transform: uppercase;
    color: rgb(51, 50, 50);
}

.menu ul li ul {
    display: block;
    visibility: hidden;
    position: absolute;
    opacity: 0;
    top: 35px;
    background: none;
    width: 250%;
    padding-top: 50px;
    height: 0;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.menu ul li ul li {
    display: block;
    opacity: 0;
    border: none;
    margin: 0 0 20px;
    font-size: 16px;
    color: rgb(234, 234, 234);
    font-weight: 300;
    text-transform: uppercase;
    width: auto;
    padding-left: 30px;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

.menu ul li ul li a {
    color: rgb(255, 255, 255);
    -webkit-transition: all 50ms ease-in-out;
    -o-transition: all 50ms ease-in-out;
    transition: all 50ms ease-in-out;
}

.menu ul li ul li:hover {
    border: none;
}

.menu ul li ul li a:hover {
    color: #60c7de;
    -webkit-transition: all 50ms ease-in-out;
    -o-transition: all 50ms ease-in-out;
    transition: all 50ms ease-in-out;
}

.line-in-menu {
    position: absolute;
    top: 45px;
    height: 550px;
    width: 5px;
    background: #60c7de;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

.online-termin {
    display: none;
}

.burger {
    position: absolute;
}


/*

                                            ------
                                            PopUp
                                            ------

*/


/* PopUp 1 - Telefon */

.popup-aus {
    display: none;
}

.popup-1 {
    position: relative;
    z-index: 96;
    top: 120px;
    right: 5px;
    z-index: 200;
}

.popup-1-1 {
    position: absolute;
    top: 5px;
    right: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    background-color: #60c7de;
    -webkit-transition: right 500ms ease-in-out;
    -o-transition: right 500ms ease-in-out;
    transition: right 500ms ease-in-out;
    border-radius: 50px;
    cursor: pointer;
}

.popup-1-1.close {
    position: absolute;
    top: 5px;
    right: -280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    background-color: #60c7de;
    -webkit-transition: right 500ms ease-in-out;
    -o-transition: right 500ms ease-in-out;
    transition: right 500ms ease-in-out;
}

.popup-1-1 img {
    width: 60%;
    height: 60%;
    margin: auto;
}

.popup-1-2-2 img {
    padding: 14px;
    width: 40%;
    transition: opacity 150ms ease-in-out;
}

.popup-1-2 {
    position: absolute;
    top: 5px;
    right: -280px;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    -webkit-transition: right 500ms ease-in-out;
    -o-transition: right 500ms ease-in-out;
    transition: right 500ms ease-in-out;
    width: 240px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #60c7de;
}

.popup-1-2.open {
    position: absolute;
    top: 5px;
    right: 12px;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    -webkit-transition: right 500ms ease-in-out;
    -o-transition: right 500ms ease-in-out;
    transition: right 500ms ease-in-out;
}

.popup-1-2-1 {
    color: #ffffff;
    padding: 14px;
}

.popup-1-2-2 {
    width: 50px;
    height: 50px;
    background-color: #60c7de;
    cursor: pointer;
}


/* PopUp 2 - Öffnungszeiten */

.popup-2 {
    position: relative;
    z-index: 96;
    top: 130px;
    right: 5px;
    z-index: 200;
}

.popup-2-1 {
    position: absolute;
    top: 60px;
    right: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    background-color: #89d0cf;
    -webkit-transition: right 500ms ease-in-out;
    -o-transition: right 500ms ease-in-out;
    transition: right 500ms ease-in-out;
    border-radius: 50px;
    cursor: pointer;
}

.popup-1-1:hover > img,
.popup-2-1:hover > img {
    opacity: 0.7;
}

.popup-2-1.close {
    position: absolute;
    top: 60px;
    right: -280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    background-color: #89d0cf;
    -webkit-transition: right 500ms ease-in-out;
    -o-transition: right 500ms ease-in-out;
    transition: right 500ms ease-in-out;
}

.popup-2-1 img {
    width: 60%;
    height: 60%;
    margin: auto;
    transition: opacity 150ms ease-in-out;
}

.popup-2-2 {
    position: absolute;
    top: 60px;
    right: -280px;
    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-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    height: auto;
    -webkit-transition: right 500ms ease-in-out;
    -o-transition: right 500ms ease-in-out;
    transition: right 500ms ease-in-out;
    width: 240px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #89d0cf;
}

.popup-2-2.open {
    position: absolute;
    top: 60px;
    right: 12px;
    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-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    height: auto;
    -webkit-transition: right 500ms ease-in-out;
    -o-transition: right 500ms ease-in-out;
    transition: right 500ms ease-in-out;
}

.popup-2-2-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    color: #ffffff;
    padding: 13px;
}

.popup-2-2-2 {
    width: 50px;
    background-color: #89d0cf;
    cursor: pointer;
}

.popup-2-2-2 img {
    padding: 14px;
    width: 40%;
}


/*

                                            ------
                                            ENDE
                                            ------

*/


/*



------------------------------------------->   Start page  <--------------------------------------------



*/

.landing-page {
    position: relative;
    margin-top: 100px;
    width: 100vw;
    height: calc(100vh - 100px);
    background: url(../img/1.jpg);
    background-position: center;
    background-size: cover;
}

.rel-container {
    position: relative;
    color: rgb(114, 111, 111);
}

.start-kasten {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 40px;
    left: 40px;
    width: 90%;
    max-width: 960px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    backdrop-filter: blur(5px);
}

.start-kasten h2 {
    font-size: 1.5em;
    line-height: 1.4;
    margin-bottom: 20px;
}

.start-kasten p {
    font-size: 1em;
    line-height: 1.4;
}

.sk-closer-wrapper {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: auto;
    left: auto;
    cursor: pointer;
}

.sk-closer-wrapper img {
    transition: opacity 100ms ease-in-out;
}

.sk-closer-wrapper:hover > img {
    opacity: 0.8;
}

.start-text-top {
    position: relative;
    width: 100vw;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 100px;
    background: #ffffff;
}

.start-text-mid {
    position: relative;
    width: 100vw;
    padding-top: 120px;
    padding-bottom: 100px;
    text-align: center;
    background: #eaeaea;
}

.start-text-top h3,
.start-text-mid h3 {
    position: relative;
    display: inline-block;
    font-size: 52px;
    font-weight: 300;
    text-transform: uppercase;
    color: rgb(114, 111, 111);
    overflow: hidden;
    z-index: 1;
}

.start-text-top h3::before,
.start-text-mid h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 105%;
    width: calc(100% + 30px);
    height: 8px;
    background: rgba(0, 172, 211, 0.5);
    z-index: -1;
}

.welcome-line {
    width: 200px;
    height: 1px;
    background: rgb(114, 111, 111);
    margin: auto;
    margin-top: 30px;
}

.start-text-top-inner {
    width: 80%;
    max-width: 1080px;
    margin: auto;
    margin-top: 70px;
    line-height: 2em;
}

.start-text-top-inner p {
    font-weight: 300;
    color: rgb(114, 111, 111);
}

.start-mid-image {
    width: 100vw;
    height: 700px;
    background: url(../img/2.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.start-mid-image-2 {
    width: 100vw;
    height: 900px;
    background: url(../img/2-1.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.start-bot-image {
    width: 100vw;
    height: 700px;
    background: url(../img/3.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.anker {
    position: absolute;
    top: -300px;
}

.start-button {
    position: relative;
    top: 0;
    display: inline-block;
    text-align: center;
    padding: 5px 20px;
    background-color: rgba(96, 199, 222, 0.5);
    margin-top: 40px;
    box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.15);
    transition: background 150ms ease-in-out;
}

.start-button:hover {
    background-color: rgba(80, 172, 192, 0.5);
}


/*



-------------------------------------------->   Team page  <-----------------------------------------------



*/

.team-top-image {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.team-top-image-inside-left {
    width: 45%;
    height: 100%;
    background: url(../img/4.jpg);
    background-position: center;
    background-size: cover;
    float: left;
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7);
}

.team-top-image-inside-right {
    width: 55%;
    height: 100%;
    background: #73767e;
    float: right;
}

.team-top-kasten {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    color: #ffffff;
}

.team-top-kasten h1 {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 60px;
}

.team-top-kasten::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    background: rgba(0, 172, 211, 0.5);
    width: 110%;
    width: calc(100% + 80px);
    height: 12px;
    z-index: -1;
}

.team-top-text {
    position: relative;
    width: 60%;
    height: unset;
    min-width: 900px;
    max-width: 1500px;
    padding: 50px 0;
    margin: auto;
    margin-bottom: 100px;
    text-align: center;
}

.unser-team-titel h1 {
    position: relative;
    font-weight: 600;
    font-size: 120px;
    color: rgba(68, 185, 185, 0.5);
    word-wrap: none;
    min-width: 900px;
    text-transform: uppercase;
}

.team-titel-text-box {
    position: relative;
    right: 0;
    margin-left: auto;
    width: 600px;
}

.team-titel-text-box p {
    color: #726f6f;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
}

.team-galery-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    position: relative;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 100px;
    margin-bottom: 70px;
    padding: 1.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 9;
}

.team-galery-wrapper::before {
    content: "";
    position: absolute;
    top: 350px;
    left: 0;
    width: 100%;
    height: 90%;
    height: calc(100% - 600px);
    background: #eaeaea;
}

.team-galery {
    width: 700px;
    height: 540px;
    margin: 5px;
    background: #464646;
}

.team-galery.blanco {
    height: 0px;
}


/*


-----------------> Change Pictures


*/

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

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

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

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

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

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

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

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

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

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

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

.pic:hover>div {
    opacity: 1;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

.pic div {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: default;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

.pic1 div {
    background: url(../img/5-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.pic2 div {
    background: url(../img/6-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.pic3 div {
    background: url(../img/beti-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pic4 div {
    background: url(../img/kathleen-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pic5 div {
    background: url(../img/mary-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pic6 div {
    background: url(../img/steffi-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pic7 div {
    background: url(../img/steinebach-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pic8 div {
    background: url(../img/kissner-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pic9 div {
    background: url(../img/philipps-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pic10 div {
    background: url(../img/stark-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pic11 div {
    background: url(../img/blanko-blur.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pic {
    position: relative;
    background-position: center;
    background-size: cover;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

.pic h3 {
    opacity: inherit;
    position: relative;
    display: inline-block;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    font-weight: regular;
    letter-spacing: 1px;
    color: #fff;
    z-index: 1;
}

.pic1 h3::before,
.pic2 h3::before,
.pic3 h3::before,
.pic4 h3::before,
.pic5 h3::before,
.pic6 h3::before,
.pic7 h3::before,
.pic8 h3::before,
.pic9 h3::before,
.pic10 h3::before,
.pic11 h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 105%;
    width: calc(100% + 20px);
    height: 24px;
    background: rgb(17, 130, 187, 0.6);
    z-index: -1;
}

.pic3 h3 span,
.pic4 h3 span,
.pic5 h3 span,
.pic6 h3 span,
.pic7 h3 span,
.pic8 h3 span,
.pic9 h3 span,
.pic10 h3 span,
.pic11 h3 span {
    position: absolute;
    right: -20px;
    top: 80px;
    text-transform: none;
    color: #fff;
    font-size: 24px;
}

#team-tile-border-1,
#team-tile-border-2,
#team-tile-border-3,
#team-tile-border-4,
#team-tile-border-5,
#team-tile-border-6,
#team-tile-border-7,
#team-tile-border-8 {
    opacity: inherit;
    position: absolute;
    top: 250px;
    left: 54%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    height: 50px;
    -webkit-filter: brightness(1);
    filter: brightness(1);
    border: solid 2px #d8feff;
    background: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

#team-tile-border-1 {
    width: 600px;
}

#team-tile-border-2 {
    width: 490px;
}

#team-tile-border-3 {
    width: 380px;
}

#team-tile-border-4 {
    width: 460px;
}

#team-tile-border-5 {
    width: 550px;
}

#team-tile-border-6 {
    width: 430px;
}

#team-tile-border-7 {
    width: 490px;
}

#team-tile-border-8 {
    width: 480px;
}

.team-background-mid {
    height: 1700px;
    width: 100vw;
    background: #eaeaea;
}

.team-background-bot {
    height: 250px;
    width: 100vw;
    background: #ffffff;
}

.team-galery a div {
    cursor: pointer;
}


/*



-------------------------------------------->   Arzt page  <-----------------------------------------------



*/

.arzt-beschreibung-wrapper {
    width: 100vw;
    padding-top: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.arzt-beschreibung-content-wrapper {
    width: 85vw;
    background: #eaeaea;
    float: left;
    margin-bottom: 100px;
    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;
}

.arzt-dots {
    width: 70px;
    height: 500px;
    margin-left: 40px;
    background: url(../img/dots.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    float: left;
}

.arzt-beschreibung {
    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;
    margin: -25px 50px 50px 12%;
    width: 50%;
}

.arzt-beschreibung-top h3 {
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 40px;
    text-transform: uppercase;
    color: rgb(114, 111, 111);
    z-index: 1;
}

.arzt-beschreibung-top h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 105%;
    width: calc(100% + 10px);
    height: 12px;
    background: rgba(0, 172, 211, 0.5);
    z-index: -1;
}

.desc-row {
    margin-bottom: 15px;
}

.desc-row-left p,
.desc-row-right p,
.desc-schwerpunkte p,
.desc-schwerpunkte h3 {
    font-weight: 300;
    font-size: 17px;
    line-height: 28px !important;
    color: rgb(85, 83, 83);
    line-height: 22px;
}

.desc-row-left p {
    font-weight: regular;
}

.desc-schwerpunkte h3 {
    font-weight: regular;
}

.desc-schwerpunkte {
    margin-top: 50px;
}

.arzt-beschreibung-bot {
    width: 100%;
    margin-top: 40px;
}

.arzt-dots {
    margin-left: 35px;
}

.desc-row {
    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;
}

.desc-row-left {
    width: 200px;
}

.desc-row-right {
    width: 90%;
}

.arzt-bild1 {
    width: 550px;
    min-width: 550px;
    height: 750px;
    background: url(../img/5-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -150px;
}

.arzt-bild2 {
    width: 550px;
    min-width: 550px;
    height: 750px;
    background: url(../img/6-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -150px;
}


/*


-------------------------------------------->   Leistungen  <-----------------------------------------------



*/

.leistungen-top-kasten-backborder {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    margin-top: 45px;
    margin-left: 30px;
    height: 50px;
    width: 460px;
    border: solid 2px rgb(212, 230, 231);
}

.leistungen-top-image-inside-left {
    width: 45%;
    height: 100%;
    background: url(../img/13.jpg);
    background-position: center;
    background-size: cover;
    float: left;
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7);
}

.leistungen-top-text {
    position: relative;
    width: 80%;
    max-width: 1500px;
    padding: 50px 0;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
}

.leistungen-pic-1 {
    background: url(../img/14.jpg);
}

.leistungen-pic-2 {
    background: url(../img/18.jpg);
}

.leistungen-pic-3 {
    background: url(../img/15.jpg);
}

.leistungen-pic-4 {
    background: url(../img/16.jpg);
}

.leistungen-pic-5 {
    background: url(../img/21.jpg);
}

.leistungen-pic-6 {
    background: url(../img/19.jpg);
}

.leistungen-pic-7 {
    background: url(../img/25.jpg);
}

.leistungen-pic-8 {
    background: url(../img/24.jpg);
}

.leistungen-pic-9 {
    background: url(../img/20.jpg);
}

.leistungen-pic-10 {
    background: url(../img/17.jpg);
}

.leistungen-pic-11 {
    background: url(../img/22.jpg);
}

.leistungen-pic-12 {
    background: url(../img/23.jpg);
}

.leistungen-pic-1,
.leistungen-pic-2,
.leistungen-pic-3,
.leistungen-pic-4,
.leistungen-pic-5,
.leistungen-pic-6,
.leistungen-pic-7,
.leistungen-pic-8,
.leistungen-pic-9,
.leistungen-pic-10,
.leistungen-pic-11,
.leistungen-pic-12 {
    width: 100vw;
    height: 670px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#leistungen-inner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.leistungen-pic-1 p {
    bottom: -2vw;
    font-size: 6.65vw;
    margin-left: -0.5%;
}

.leistungen-pic-2 p {
    bottom: -5.7vw;
    font-size: 18.9vw;
    margin-left: -2%;
}

.leistungen-pic-3 p {
    bottom: -1.6vw;
    font-size: 5.36vw;
    margin-left: -0.5%;
}

.leistungen-pic-4 p {
    bottom: -5vw;
    font-size: 16.1vw;
    margin-left: -2%;
}

.leistungen-pic-5 p {
    bottom: -2.5vw;
    font-size: 8.36vw;
    margin-left: -0.9%;
}

.leistungen-pic-6 p {
    bottom: -4.7vw;
    font-size: 15.5vw;
    margin-left: -2%;
}

.leistungen-pic-7 p {
    bottom: -3.3vw;
    font-size: 11vw;
    margin-left: -1.5%;
}

.leistungen-pic-8 p {
    bottom: -4vw;
    font-size: 12.9vw;
    margin-left: -2.1%;
}

.leistungen-pic-9 p {
    bottom: -3.8vw;
    font-size: 12.55vw;
    margin-left: -1.5%;
}

.leistungen-pic-10 p {
    bottom: -3.7vw;
    font-size: 11.7vw;
    margin-left: -1.3%;
}

.leistungen-pic-11 p {
    bottom: -3.5vw;
    font-size: 11.38vw;
    margin-left: -1.2%;
}

.leistungen-pic-12 p {
    bottom: -2.8vw;
    font-size: 9.08vw;
    margin-left: -0.95%;
}

.leistungen-pic-1 p,
.leistungen-pic-2 p,
.leistungen-pic-3 p,
.leistungen-pic-4 p,
.leistungen-pic-5 p,
.leistungen-pic-6 p,
.leistungen-pic-7 p,
.leistungen-pic-8 p,
.leistungen-pic-9 p,
.leistungen-pic-10 p,
.leistungen-pic-11 p,
.leistungen-pic-12 p {
    position: absolute;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff70;
}

.leistungen-text-wrapper {
    width: 80%;
    padding: 100px 10%;
    padding-bottom: 130px;
}

.leistungen-text-wrapper h3 {
    position: relative;
    font-weight: 300;
    display: inline-block;
    color: rgb(114, 111, 111);
    font-size: 40px;
    text-transform: uppercase;
}

.leistungen-text-wrapper h3::before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    background: rgba(96, 199, 222, 0.5);
    width: 110%;
    width: calc(100% + 60px);
    height: 12px;
    z-index: -1;
}

.line-leistungen-text {
    width: 200px;
    height: 1px;
    background: rgb(51, 50, 50);
    margin-top: 30px;
}

.leistungen-text-flex-wrapper {
    width: 100%;
    margin-top: 70px;
    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;
}

.leistungen-text {
    width: 90%;
    max-width: 1000px;
}

.leistungen-text p,
.leistungen-text li {
    font-weight: 300;
    font-size: 18px;
    color: #726f6f;
    line-height: 29px;
}

.leistungen-text a {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.leistungen-text a:hover {
    opacity: 0.5;
}

.aNkY {
    position: absolute;
    top: 100px;
}


/*



---------------------------------------------->   Footer  <-------------------------------------------------



*/

footer {
    width: 100vw;
    height: 500px;
}

.footer-black-top {
    width: 100vw;
    height: 450px;
    background: rgba(57, 158, 158, 0.7);
    color: #ffffff;
    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;
    text-align: center;
}

.footer-black-top-inside-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: 1500px;
    height: 160px;
    margin: auto;
    margin-top: 100px;
}

.footer-inside-1,
.footer-inside-2,
.footer-inside-3,
.footer-inside-4 {
    text-align: left;
    font-weight: 300;
    min-width: 200px;
    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;
    margin: 0 20px;
}

.head-footer {
    display: block;
}

.footer-black-top-inside-top p {
    font-size: 18px;
}

.icon-footer {
    display: none;
    width: 20px;
    height: 20px;
    background: rgb(234, 234, 234);
    margin-right: 10px;
}

.title-footer h3 {
    font-weight: regular;
    text-transform: uppercase;
    color: rgb(234, 234, 234);
}

.footer-black-top-inside-bot {
    width: auto;
    height: auto;
    margin: 0 auto;
    margin-bottom: 20px;
}

.footer-black-top-inside-bot p,
.footer-black-top-inside-bot a {
    display: inline;
    font-weight: 300;
    color: #fff;
    font-size: 18px;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

.footer-black-top-inside-top,
.footer-black-top-inside-bot {
    cursor: default;
}

.footer-black-top-inside-bot a:hover,
.footer-black-top-inside-top a:hover {
    opacity: 0.5;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

.footer-white-bot {
    text-align: center;
    margin: auto;
    margin-top: 15px;
    color: rgb(114, 111, 111);
    font-weight: regular;
    font-size: 14px;
}


/*



--------------------------------------------->   Ambiente  <------------------------------------------------



*/

.praxis-top-image-inside-left {
    width: 48%;
    height: 100%;
    background: url(../img/26.jpg);
    background-position: center;
    background-size: cover;
    float: left;
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7);
}

.praxis-top-image-inside-right {
    width: 52%;
    height: 100%;
    background: #73767e;
    float: right;
}

.gallery-flexy-wrappy {
    position: relative;
}

.flexbox-gallery {
    position: relative;
    width: 80%;
    max-width: 1200px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto;
    margin-bottom: 100px;
    padding: 1.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 9;
}

.gallery-flexy-wrappy::before {
    content: "";
    position: absolute;
    top: 250px;
    left: 0;
    width: 100%;
    height: 90%;
    height: calc(100% - 350px);
    background: #eaeaea;
    z-index: -1;
}

.flexelement-gallery {
    position: relative;
    margin: -2px 0;
}

.flexelement-gallery img {
    width: 500px;
    height: 400px;
    margin: 2px;
    object-fit: cover;
    -webkit-transition: all 170ms ease-in-out;
    -o-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

.flexelement-gallery:hover>img {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
}

.flexelement-gallery::after {
    content: "+";
    position: absolute;
    right: 12px;
    bottom: 0px;
    z-index: 0;
    font-size: 60px;
    font-weight: 300;
    color: #333232;
    -webkit-transition: color 170ms ease-in-out;
    -o-transition: color 170ms ease-in-out;
    transition: color 170ms ease-in-out;
}

.flexelement-gallery:hover::after {
    content: "+";
    position: absolute;
    right: 12px;
    bottom: 0px;
    z-index: 0;
    font-size: 60px;
    font-weight: 300;
    color: #fff;
}

.lightbox::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 0px;
    width: 35px;
    height: 35px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 1;
    z-index: 9999;
    font-size: 80px;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 170ms ease-in-out;
    -o-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}


/*



----------------------------------------------->   Kontakt  <--------------------------------------------------



*/

.kontakt-top-image-inside-left {
    width: 48%;
    height: 100%;
    background: url(../img/35.jpg);
    background-position: center;
    background-size: cover;
    float: left;
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7);
}

.kontakt-top-kasten-backborder {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    margin-top: 45px;
    margin-left: 40px;
    height: 50px;
    width: 330px;
    border: solid 2px rgb(212, 230, 231);
}

.kontakt-wrapper {
    position: relative;
    width: 80%;
    height: 100%;
    margin: 70px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#form p {
    font-size: 14px;
    font-weight: regular;
    padding: 10px 15px 0px 15px;
    margin-top: 20px;
    color: rgb(114, 111, 111);
}

#form h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(78, 80, 85);
    margin: 20px 0;
}

.wdh {
    display: none;
}

input#agree {
    width: 15px;
    height: 15px;
    margin: 5px 0 0 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: rgb(51, 50, 50);
    font-size: 14px;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: rgb(51, 50, 50);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: rgb(114, 111, 111);
    font-size: 14px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: rgb(114, 111, 111);
    font-size: 14px;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: rgb(114, 111, 111);
    font-size: 14px;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: rgb(114, 111, 111);
    font-size: 14px;
}

input::placeholder,
textarea::placeholder {
    color: rgb(114, 111, 111);
    font-size: 14px;
}

input:focus::-webkit-input-placeholder,
textarea::focus:placeholder {
    color: rgb(51, 50, 50);
}

input:focus:-ms-input-placeholder,
textarea::focus:placeholder {
    color: rgb(51, 50, 50);
}

input:focus::-ms-input-placeholder,
textarea::focus:placeholder {
    color: rgb(51, 50, 50);
}

input:focus::-moz-placeholder,
textarea::focus:placeholder {
    color: rgb(51, 50, 50);
}

input:focus::placeholder,
textarea::focus:placeholder {
    color: rgb(51, 50, 50);
}

input::-ms-placeholder,
textarea::-ms-placeholder {
    color: rgb(51, 50, 50);
    font-size: 14px;
}

input:focus::-ms-placeholder,
textarea:focus::-ms-placeholder {
    color: rgb(51, 50, 50);
}

#form {
    position: relative;
    width: 45%;
    font-family: "Open Sans";
    display: flex;
    flex-direction: column;
}

.kontakt-parking {
    position: relative;
    width: 45%;
    font-family: "Open Sans";
    display: flex;
    flex-direction: column;
}

.kontakt-parking h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(78, 80, 85);
    margin: 20px 0;
}

.kontakt-parking p {
    font-size: 16px;
    font-weight: regular;
    color: rgb(78, 80, 85);
    line-height: 1.5em;
}

.kontakt-parking img {
    width: 100%;
}

input {
    font-size: 14px;
    height: 50px;
    padding: 0px 15px 0px 15px;
    margin: 10px 0;
    background: transparent;
    outline: none;
    color: rgb(51, 50, 50);
    border: none;
    border-bottom: solid 1px rgb(114, 111, 111);
    font-family: "Open Sans";
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
}

textarea {
    height: 160px;
    max-height: 160px;
    margin: 15px 0 25px 0;
    background: transparent;
    outline: none;
    color: rgb(51, 50, 50);
    font-size: 14px;
    font-family: "Open Sans";
    border: solid 1px rgb(114, 111, 111);
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
}

#form h2 {
    font-size: 12px;
    color: rgb(114, 111, 111);
    font-weight: regular;
    text-align: end;
}

.datenschutz-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 20px;
}

#datenschutz {
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
    margin-top: 2px;
}

#datentext {
    width: 100%;
    margin-left: 15px;
}

#datentext p {
    line-height: 1.5em;
    padding: 0;
    margin: 0;
    width: 100%;
}

#datentext p a {
    position: relative;
    display: inline-block;
    padding: 1px 3px;
    color: rgba(0, 172, 211, 0.5);
    -webkit-transition: all 170ms ease-in-out;
    -o-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

#datentext p a:hover {
    color: #fff;
}

#datentext p a:hover::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 172, 211, 0.5);
    width: 100%;
    height: 100%;
    z-index: -1;
}

#datentext p a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 172, 211, 0.5);
    width: 100%;
    height: 1px;
    z-index: 1;
    -webkit-transition: all 170ms ease-in-out;
    -o-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

#submit {
    width: 110px;
    height: 40px;
    padding: 0 20px;
    margin: 0;
    font-size: 14px;
    color: rgb(114, 111, 111);
    outline: none;
    cursor: pointer;
    border-bottom: none;
    background: rgb(234, 234, 234);
}

#submit:hover {
    background: rgba(0, 172, 211, 0.5);
    color: #fff;
}

.kontakt-bottom-wrapper {
    position: relative;
    width: 80%;
    height: 100%;
    margin: 50px auto;
    margin-bottom: 100px;
    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-adresse h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(78, 80, 85);
    margin: 20px 0;
}

.kontakt-adresse h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(78, 80, 85);
    line-height: 1.5em;
}

.kontakt-adresse p {
    font-size: 16px;
    font-weight: regular;
    color: rgb(78, 80, 85);
    line-height: 1.5em;
}

.kontakt-adresse a {
    text-decoration: underline;
}

.kontakt-adresse a:hover {
    opacity: 0.5;
}

.google-maps {
    width: 100%;
    max-width: 800px;
    height: 800px;
}

#gmap_canvas {
    height: 800px;
    width: 100%;
}

.whole-kontakt-wrapper {
    position: relative;
}


/*

                                            -----------
                                            GOOGLE MAPS
                                            -----------

*/

.map {
    padding-top: 30px;
}

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

.iframe-placeholder {
    margin: 0;
    position: relative;
    width: 100%;
    height: 800px;
    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: 200;
    font-size: 1em;
    line-height: 1.6em;
}

.iframe-placeholder a {
    text-decoration: underline;
}

.iframe-placeholder a:hover {
    opacity: 0.5;
}

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

#maps-button {
    display: block;
    margin: auto;
    margin-top: 50px;
    width: 100px;
    text-align: center;
    padding: 5px 20px;
    background: #fff;
    border: solid 1px rgba(0, 172, 211, 0.5);
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-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: rgba(0, 172, 211, 0.5);
    color: #fff;
    -webkit-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
}


/*



--------------------------------------------->   Impressum  <----------------------------------------------



*/

.impressum-wrapper {
    display: block;
    position: relative;
    width: 95%;
    max-width: 960px;
    margin: auto;
    padding-top: 250px;
    padding-bottom: 200px;
    color: #726f6f;
}

.impressum-wrapper h3 {
    font-size: 40px;
    font-weight: 300;
    color: #1182bb;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.impressum-wrapper h4 {
    font-size: 18px;
    font-weight: 600;
    color: #726f6f;
    text-transform: uppercase;
}

.impressum-wrapper p,
.impressum-wrapper a {
    font-weight: 300;
    font-size: 18px;
    color: #726f6f;
    line-height: 29px;
}

.impressum-wrapper a {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.impressum-wrapper a:hover {
    opacity: 0.5;
}


/* Cookie Hinweis
--------------------------------------------------------------------*/


/* Cookie Grid Style */

.grid-container {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-gap: 0px 5px;
    margin-bottom: 5px;
}


/* .grid-container a[target="_blank"]::before {
    content: none !important;
} */

.grid-item {
    text-align: left;
    padding: 5px 10px;
    overflow: hidden;
}

.grid-item p,
.grid-item a {
    margin: 0;
}

.grid-item a {
    text-decoration: underline;
}

.item1-1 p,
.item2-1 p,
.item3-1 p,
.item4-1 p {
    color: #ffffff;
}

.item1-1,
.item2-1,
.item3-1,
.item4-1 {
    background-color: #1182bb;
    /* Akzentfarbe */
}

.item1-2,
.item2-2,
.item3-2,
.item4-2 {
    background-color: #ededed;
    /* Hintergrundfarbe Tabelle */
}

.item1-1 {
    grid-column: 1 / span 1;
    grid-row: 1;
}

.item1-2 {
    grid-column: 1 / span 1;
    grid-row: 2;
}

.item2-1 {
    grid-column: 2 / span 1;
    grid-row: 1;
}

.item2-2 {
    grid-column: 2 / span 1;
    grid-row: 2;
}

.item3-1 {
    grid-column: 3 / span 1;
    grid-row: 1;
}

.item3-2 {
    grid-column: 3 / span 1;
    grid-row: 2;
}

.item4-1 {
    grid-column: 4 / span 1;
    grid-row: 1;
}

.item4-2 {
    grid-column: 4 / span 1;
    grid-row: 2;
}

.g-recaptcha-wrapper {
	margin: 0 0 1rem;
}

@media screen and (max-width:850px) {
    .grid-container {
        grid-template-columns: 50% 50%;
    }
    .item1-1 {
        grid-column: 1 / span 1;
        grid-row: 1;
    }
    .item1-2 {
        grid-column: 1 / span 1;
        grid-row: 2;
    }
    .item2-1 {
        grid-column: 2 / span 1;
        grid-row: 1;
    }
    .item2-2 {
        grid-column: 2 / span 1;
        grid-row: 2;
    }
    .item3-1 {
        grid-column: 1 / span 1;
        grid-row: 3;
    }
    .item3-2 {
        grid-column: 1 / span 1;
        grid-row: 4;
    }
    .item4-1 {
        grid-column: 2 / span 1;
        grid-row: 3;
    }
    .item4-2 {
        grid-column: 2 / span 1;
        grid-row: 4;
    }

    .anker {
        position: absolute;
        top: -100px;
    }

}

@media screen and (max-width:500px) {
    .grid-container {
        grid-template-columns: 100%;
        margin-bottom: 15px;
    }
    .item1-1 {
        grid-column: 1 / span 1;
        grid-row: 1;
    }
    .item1-2 {
        grid-column: 1 / span 1;
        grid-row: 2;
    }
    .item2-1 {
        grid-column: 1 / span 1;
        grid-row: 3;
    }
    .item2-2 {
        grid-column: 1 / span 1;
        grid-row: 4;
    }
    .item3-1 {
        grid-column: 1 / span 1;
        grid-row: 5;
    }
    .item3-2 {
        grid-column: 1 / span 1;
        grid-row: 6;
    }
    .item4-1 {
        grid-column: 1 / span 1;
        grid-row: 7;
    }
    .item4-2 {
        grid-column: 1 / span 1;
        grid-row: 8;
    }
}


/* -------------------------------------------- Cookie Grid Style Ende */

@media only screen and (max-width: 1440px) {
    .arzt-beschreibung-content-wrapper {
        width: 90vw;
    }
    .arzt-beschreibung {
        margin-left: 6%;
    }
    .desc-row-left {
        width: 30%;
    }
    .pic {
        width: 470px;
        height: 380px;
    }
    .pic h3 {
        font-size: 35px;
    }
    .pic1 h3::before,
    .pic2 h3::before,
    .pic3 h3::before,
    .pic4 h3::before,
    .pic5 h3::before,
    .pic6 h3::before,
    .pic7 h3::before,
    .pic8 h3::before,
    .pic9 h3::before,
    .pic10 h3::before,
    .pic11 h3::before {
        height: 14px;
    }
    .pic3 h3 span,
    .pic4 h3 span,
    .pic5 h3 span,
    .pic6 h3 span,
    .pic7 h3 span,
    .pic8 h3 span,
    .pic9 h3 span,
    .pic10 h3 span,
    .pic11 h3 span {
        right: -15px;
        top: 50px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 1400px) {
    .arzt-beschreibung {
        margin-top: -20px;
        margin-right: 20px;
    }
    .arzt-beschreibung-top h3 {
        font-size: 30px;
    }
    .arzt-bild1,
    .arzt-bild2 {
        width: 400px;
        min-width: unset;
        height: 550px;
        margin-top: 50px;
        margin-right: 50px;
    }
    .arzt-dots {
        margin-top: 70px;
    }
}

@media only screen and (max-width: 1300px) {
    .start-logo {
        width: 205px;
    }
    .start-logo img {
        width: 100%;
    }
    .menu {
        min-width: unset;
        margin-left: 50px;
        margin-right: 0;
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    .menu ul {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .menu ul li {
        display: block;
        margin: auto;
    }
    .popup-1 {
        top: 115px;
    }
    .popup-2 {
        top: 125px;
    }
    .landing-page {
        height: 980px;
    }
    .unser-team-titel h1 {
        font-size: 90px;
        text-align: center;
        min-width: unset;
    }
}

@media only screen and (max-width: 1240px) {
    .start-bot-image,
    .start-mid-image-2,
    .start-mid-image {
        background-attachment: unset;
    }
}

@media only screen and (max-width: 1024px) {
    .menu ul li:hover::before {
        background: rgb(212, 230, 231);
    }
    .menu ul li::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 8px;
        background: rgba(198, 198, 198, 0.4);
        z-index: -1;
        -webkit-transition: background 100ms ease-in-out;
        -o-transition: background 100ms ease-in-out;
        transition: background 100ms ease-in-out;
    }
    .menu ul li ul {
        overflow: scroll;
        max-height: calc(100vh - 100px);
    }
    .menu ul li ul li::before {
        display: none;
    }
    #current-nav-selection {
        font-weight: 600;
    }
    #current-nav-selection::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 8px;
        background: rgb(212, 230, 231);
        z-index: -1;
    }
    .landing-page {
        height: auto;
        padding-top: 400px;
        padding-bottom: 30px;
    }

    .start-kasten {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        box-sizing: border-box;
        margin: auto;
    }

    .start-mid-image,
    .start-mid-image-2,
    .start-bot-image {
        height: 600px;
    }
    .team-galery-wrapper {
        margin-top: 150px;
    }
    .team-galery {
        width: 300px;
        height: 235px;
    }
    .team-galery-wrapper a {
        margin-bottom: 70px;
    }
    .team-galery div {
        opacity: 1;
    }
    .team-galery div h3 {
        font-size: 16px;
        font-weight: 600;
    }
    .team-galery-wrapper::before {
        top: 120px;
        height: calc(100% - 240px);
    }
    .arzt-beschreibung-wrapper {
        padding-top: 70px;
    }
    #team-tile-border-1,
    #team-tile-border-2,
    #team-tile-border-3,
    #team-tile-border-4,
    #team-tile-border-5,
    #team-tile-border-6,
    #team-tile-border-7,
    #team-tile-border-8 {
        display: none;
    }
    .pic1 div,
    .pic2 div,
    .pic3 div,
    .pic4 div,
    .pic5 div,
    .pic6 div,
    .pic7 div,
    .pic8 div,
    .pic9 div,
    .pic10 div,
    .pic11 div {
        position: relative;
        top: unset;
        left: unset;
        background: 0 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: center;
        -webkit-filter: none;
        filter: none;
    }
    .pic1 div h3,
    .pic2 div h3 {
        position: absolute;
        top: unset;
        left: unset;
        left: 0;
        bottom: 0;
        height: 36px;
        width: 100%;
        padding-top: 7px;
        background: rgba(17, 130, 187, 0.85);
        border: none;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        text-transform: unset;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        -webkit-transition: all 170ms ease-in-out;
        -o-transition: all 170ms ease-in-out;
        transition: all 170ms ease-in-out;
        color: #fff;
    }
    .pic1:hover>div h3,
    .pic2:hover>div h3 {
        background: #fff;
        color: rgba(17, 130, 187, 0.85);
    }
    .pic3 div h3,
    .pic4 div h3,
    .pic5 div h3,
    .pic6 div h3,
    .pic7 div h3,
    .pic8 div h3,
    .pic9 div h3,
    .pic10 div h3,
    .pic11 div h3 {
        position: absolute;
        top: unset;
        left: 0;
        bottom: 0;
        height: 45px;
        width: 100%;
        display: inline-block;
        padding-top: 5px;
        background: rgba(17, 130, 187, 0.85);
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        font-size: 14px;
        color: #fff;
        border: none;
        padding-left: 16px;
        text-align: left;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        text-transform: unset;
    }
    .pic3 div h3 span,
    .pic4 div h3 span,
    .pic5 div h3 span,
    .pic6 div h3 span,
    .pic7 div h3 span,
    .pic8 div h3 span,
    .pic9 div h3 span,
    .pic10 div h3 span,
    .pic11 div h3 span {
        position: static;
        font-weight: 300;
        display: inline-block;
        font-size: 14px;
    }
    .pic1 h3::before,
    .pic2 h3::before,
    .pic3 h3::before,
    .pic4 h3::before,
    .pic5 h3::before,
    .pic6 h3::before,
    .pic7 h3::before,
    .pic8 h3::before,
    .pic9 h3::before,
    .pic10 h3::before,
    .pic11 h3::before {
        display: none;
    }
    .arzt-beschreibung-content-wrapper {
        width: 100vw;
    }
    .arzt-dots {
        display: none;
    }
    .team-top-image {
        height: 720px;
    }
    .pic {
        width: 360px;
        height: 288px;
    }
    .leistungen-pic-1,
    .leistungen-pic-10,
    .leistungen-pic-11,
    .leistungen-pic-12,
    .leistungen-pic-2,
    .leistungen-pic-3,
    .leistungen-pic-4,
    .leistungen-pic-5,
    .leistungen-pic-6,
    .leistungen-pic-7,
    .leistungen-pic-8,
    .leistungen-pic-9 {
        background-attachment: unset;
    }
    .leistungen-text-wrapper h3 {
        font-size: 28px;
    }
    .flexelement-gallery img {
        width: 380px;
        height: 290px;
    }
    .kontakt-wrapper {
        flex-direction: column;
    }
    #form {
        width: 78%;
    }
    .kontakt-parking {
        width: 100%;
        margin-top: 50px;
    }
    .kontakt-bottom-wrapper {
        -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-adresse {
        margin-bottom: 50px;
    }
    .iframe-placeholder {
        height: 400px;
    }
    .google-maps {
        height: 400px;
        overflow: hidden;
    }
    #gmap_canvas {
        height: 500px;
        width: 100%;
    }
}

@media only screen and (max-width: 896px) {
    .popup-1 {
        top: 85px;
    }
    .popup-2 {
        top: 90px;
    }
}

@media only screen and (max-width: 768px) {

    .landing-page {
        padding-top: 200px;
        min-height: 300px;
        margin-top: 80px;
    }

    header {
        position: fixed;
    }
    .nav {
        position: relative;
        height: 45px;
    }
    .menu {
        opacity: 0;
        display: none;
        position: absolute;
        right: 0;
        top: 54px;
        width: 100%;
        background: #eaeaea;
        margin: auto;
        margin-right: 0;
        overflow: hidden;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        z-index: 97;
    }
    .menu ul {
        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: 0;
        padding-left: 70px;
        padding-top: 20px;
        padding-bottom: 20px;
        margin: 0;
        background: #fff;
    }
    .menu ul li {
        margin: 16px auto;
        margin-right: 40px;
        padding-right: 0;
        padding-left: 24px;
        z-index: 1;
    }
    #current-nav-selection::before,
    .menu ul li::before {
        bottom: -3px;
    }
    .menu-open {
        opacity: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 100;
        max-height: calc(100vh - 80px);
        overflow: scroll;
        background: #fff;
    }
    .drop {
        width: unset;
        max-width: unset;
    }
    .drop:hover>ul {
        visibility: hidden;
        display: none;
    }
    .burger {
        position: fixed;
        top: 50px;
        right: 30px;
        width: 26px;
        height: 26px;
        background: url(../img/menu.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
    }
    .burger-close {
        width: 20px;
        height: 20px;
        top: 50px;
        right: 33px;
        background: url(../img/close.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .kontakt-top-image-inside-left {
        width: 100%;
    }
    .praxis-top-image-inside-right {
        display: none;
    }
    /* .start-text-top h3,
    .start-text-mid h3 {
        font-size: 40px;
    } */
    .welcome-line {
        margin-top: 20px;
    }
    .start-text-top-inner p {
        font-size: 16px;
    }
    .start-mid-image,
    .start-mid-image-2 {
        height: 400px;
        /* background-position: 30%;
        background-attachment: unset; */
    }
    .start-bot-image {
        height: 400px;
        /* background-position: 80%;
        background-attachment: unset; */
    }
    .start-text-top h3::before,
    .start-text-mid h3::before {
        bottom: 3px;
    }
    #form {
        width: 100%;
    }
    .footer-black-top {
        height: unset;
    }
    .footer-black-top-inside-top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: unset;
        width: unset;
        margin-left: 80px;
        margin-top: 80px;
    }
    .footer-black-top-inside-bot {
        margin: 15px auto;
    }
    .footer-inside-1,
    .footer-inside-2,
    .footer-inside-3,
    .footer-inside-4 {
        height: 200px;
        width: 300px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
    .footer-inside-3 .body-footer p:last-child {
        max-width: 290px;
    }
    .head-footer {
        margin-bottom: 20px;
    }
    .footer-white-bot {
        margin-bottom: 15px;
    }
    .team-top-image {
        height: 980px;
    }
    .team-top-image-inside-left,
    .praxis-top-image-inside-left,
    .leistungen-top-image-inside-left {
        width: 100%;
        -webkit-filter: brightness(0.9) contrast(0.7);
        filter: brightness(0.9) contrast(0.7);
    }
    .team-top-image-inside-right,
    .praxis-top-image-inside-right,
    .leistungen-top-image-inside-right {
        display: none;
    }
    .team-top-kasten {
        left: unset;
        left: 50%;
        top: 40%;
        z-index: 1;
    }
    .team-top-kasten::before {
        width: 110%;
        width: calc(100% + 40px);
    }
    .praxis-top-text,
    .team-top-text,
    .leistungen-top-text {
        width: 90%;
        min-width: unset;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .unser-team-titel h1 {
        font-size: 70px;
        min-width: unset;
    }
    .arzt-beschreibung-content-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .arzt-bild1,
    .arzt-bild2 {
        position: relative;
        margin-left: auto;
        margin-right: 0;
        margin-top: 0px;
        z-index: 12;
        width: 100%;
        height: 800px;
    }
    .graybar {
        position: absolute;
        left: 0;
        width: 100vw;
        height: 20px;
        background: #eaeaea;
        z-index: 8;
    }
    .whitebar {
        position: absolute;
        right: 0;
        top: 0px;
        width: 0px;
        height: 100%;
        background: #ffffff;
        z-index: 9;
    }
    .mobiledots {
        position: absolute;
        left: 60px;
        top: 240px;
        width: 54px;
        height: 370px;
        background: url(../img/dots.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .arzt-beschreibung {
        width: 100%;
        margin: auto;
        padding: 20px;
        padding-top: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 80px;
        background: #ffffff;
    }
    .arzt-beschreibung-top {
        position: relative;
        z-index: 9;
    }
    .desc-row-right {
        width: 80%;
    }
    .desc-schwerpunkte {
        min-width: unset;
    }
    .google-maps iframe {
        width: 90%;
        height: 500px;
    }
    .leistungen-pic-1,
    .leistungen-pic-2,
    .leistungen-pic-3,
    .leistungen-pic-4,
    .leistungen-pic-5,
    .leistungen-pic-6,
    .leistungen-pic-7,
    .leistungen-pic-8,
    .leistungen-pic-9,
    .leistungen-pic-10,
    .leistungen-pic-11,
    .leistungen-pic-12 {
        width: 100vw;
        height: 350px;
        background-position: center;
        background-attachment: unset;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .leistungen-text {
        width: 100%;
    }
    .flexelement-gallery img {
        width: 290px;
        height: 210px;
    }
    .lightbox::after {
        display: none;
    }
    .aNkY {
        top: -85px;
    }
}

@media only screen and (max-width: 450px) {

    .landing-page {
        padding-top: 0px;
        min-height: 220px;
        margin-top: 80px;
    }

    .start-kasten {
        padding: 20px;
        padding-top: 60px;
        text-align: justify;
        hyphens: auto;
    }

    .start-kasten h2 {
        font-size: 1.1em;
    }

    .sk-closer-wrapper {
        top: -36px;
    }

    .start-logo {
        margin-left: 15px;
    }
    .start-logo img {
        width: 120px;
    }
    .start-text-top,
    .start-text-mid {
        padding-top: 70px;
    }
    .start-text-top h3,
    .start-text-mid h3 {
        font-size: 22px;
    }
    .start-text-top h3::before,
    .start-text-mid h3::before {
        width: calc(100% + 10px);
        bottom: 0;
    }
    .start-text-top-inner {
        margin-top: 30px;
    }
    .start-text-top-inner p {
        font-size: 14px;
    }
    .start-mid-image,
    .start-mid-image-2 {
        height: 225px;
        background-position: 60%;
    }
    .start-bot-image {
        height: 300px;
        background-position: 100%;
    }
    .team-top-image {
        height: 670px;
    }
    .team-top-kasten::before {
        width: calc(100% + 20px);
        bottom: 0;
    }
    .team-top-kasten h1 {
        font-size: 35px;
    }
    .unser-team-titel h1 {
        font-size: 35px;
    }
    .team-titel-text-box {
        width: 270px;
    }
    .team-titel-text-box p {
        font-size: 14px;
    }
    .praxis-top-text,
    .team-top-text,
    .leistungen-top-text {
        margin-top: 0;
        margin-bottom: 0;
    }
    .team-galery-wrapper {
        margin-top: 30px;
    }
    .leistungen-pic-1,
    .leistungen-pic-2,
    .leistungen-pic-3,
    .leistungen-pic-4,
    .leistungen-pic-5,
    .leistungen-pic-6,
    .leistungen-pic-7,
    .leistungen-pic-8,
    .leistungen-pic-9,
    .leistungen-pic-10,
    .leistungen-pic-11,
    .leistungen-pic-12 {
        height: 0;
        opacity: 0;
        z-index: -9999999;
    }
    .leistungen-text-wrapper {
        position: relative;
        padding: 20px 0;
        width: 80%;
        margin: auto;
        z-index: 2;
    }
    .leistungen-text-wrapper h3 {
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        -webkit-transition: all 170ms ease-in-out;
        -o-transition: all 170ms ease-in-out;
        transition: all 170ms ease-in-out;
        width: 70vw;
    }
    .leistungen-text-wrapper h3::before {
        bottom: -5px;
        width: 70vw;
        height: 2px;
    }
    .leistungen-text-wrapper h3::after {
        content: url("../img/chili-down.png");
        position: absolute;
        left: 76vw;
        top: 6px;
        width: 20px;
        height: 20px;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
    }
    .leistungen-text {
        display: none;
    }
    .leistungen-text p {
        font-size: 14px;
    }
    .leistungen-text li {
        font-size: 14px;
    }
    .leistungen-text-flex-wrapper {
        opacity: 0;
        margin-top: 0px;
        -webkit-transition: all 250ms ease-in-out;
        -o-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
    }
    .ltw-open h3 {
        color: #333232;
    }
    .ltw-open h3::before {
        display: none;
    }
    .ltw-open h3::after {
        top: -6px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }
    .ltw-open .leistungen-text {
        margin-top: 40px;
        display: block;
    }
    .ltw-open .leistungen-text-flex-wrapper {
        opacity: 1;
    }
    .ltw-main {
        margin-bottom: 70px;
    }
    .gallery-flexy-wrappy::before {
        top: 100px;
        height: calc(100% - 200px);
    }
    .whole-kontakt-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .kontakt-bottom-wrapper {
        margin-bottom: 0;
    }
    .kontakt-adresse h3 {
        display: none;
    }
    .kontakt-wrapper {
        margin-bottom: 0;
    }
    .google-maps iframe {
        width: 100%;
        height: 300px;
    }
    .kontakt-parking {
        margin: 50px 0;
    }
    .footer-black-top-inside-top {
        margin-left: 20px;
        margin-top: 50px;
    }
    .footer-black-top p,
    .footer-black-top-inside-bot a,
    .footer-white-bot p {
        font-size: 14px !important;
    }
    .head-footer {
        margin-bottom: 16px;
    }
    .footer-inside-1,
    .footer-inside-2,
    .footer-inside-3,
    .footer-inside-4 {
        height: unset;
        width: 100%;
        margin-bottom: 40px;
    }
    .aNkY {
        display: block;
        top: -200px;
    }
}