/*   
Theme Name: docmendetheme
Theme URI: https://mende.trojca.de/
Description: Template für WordPress Seite Jan Mende, ärztliche Osteopathie
Author: Martin Trojca
Author URI: https://webdesign.trojca.de
*/
/* roboto-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/roboto-v30-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v30-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v30-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/roboto-v30-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    color: #000;
    font-size: 20px;
}
.header-offset {
    height: 150px; /* Header-Höhe */
}

html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
h1, h2 {
    font-weight: 300;
    font-size: 2.5rem;
}
h2 {
    color: #b2d88d;
    text-transform: uppercase;
    font-weight: 400;
}
h3 {
    font-weight: 400;
}
p {

}
a {
    text-decoration: none;
    color: #747474;
}
a:hover {
    text-decoration: none;
    color: #000;
}
.current_page_item a {
    color: #000;
}
/*  -  Header  -  */
#logo img {
    width: 260px;
    margin-top: 20px;
    height: auto;
}
#header {
  position: fixed;
  z-index: 9999;
  width: 100%;
    
}
.header-img {
  overflow: hidden;
  display: flex;
  align-items: center;
}
#main {

}
/* Container für das Formular */
#termin-widget-container {
    position: fixed;
    top: 25vh;
    left: 50%;
    

    width: 1000px;
    max-width: 95vw;
    height: 400px;

    background: #d7ebc2;
    padding: 20px; /* ↑ Tabs sichtbar machen */
    border-radius: 12px;

    box-shadow: 0 8px 10px rgba(0,0,0,0.25);
    z-index: 9999;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition: opacity .35s ease, transform .35s ease; /* Animation */
}

#termin-widget-container > div {
    max-height: 400px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Sticky Tabs oder Header von Termed abschalten */
#termin-widget-container [style*="sticky"],
#termin-widget-container .sticky {
    position: relative !important;
    top: unset !important;
}


#termin-widget-container.widget-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}
#termed-logo img {
  width: 200px !important;
}
#termin-wrapper button::after {
    content: none;
}


/* Button */
#termin-toggle-btn {
    position: fixed;
    top: 30vh;                          /* rechter Rand im oberen Drittel */
    right: 44px;                       /* rückt den gedrehten Button INS Bild */

    transform: rotate(-90deg);
    transform-origin: right top;

    background: #9fc95e;
    color: #fff;

    padding: 12px 20px;
    border: none;
    border-radius: 12px 12px 0 0;

    font-size: 16px;
    cursor: pointer;
    z-index: 10000;

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#termin-toggle-btn:hover {
    filter: brightness(0.9);
}




/* Mobile Optimierung */

@media (max-width: 700px) {

    /* Widget niemals anzeigen */
    #termin-widget-container {
        display: none !important;
    }

    /* Button komplett eigenständig */
    #termin-toggle-btn {
        all: unset !important;
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;

        padding: 14px 22px !important;
        background: #9fc95e !important;
        color: #fff !important;
        border-radius: 10px !important;
        font-size: 16px !important;
        font-weight: 400 !important;

        cursor: pointer !important;
        display: inline-block !important;

        z-index: 9999999 !important;
    }
}

#terminbuchen {
  padding-top: 80px;
}


/* Verhindert, dass Termed-Buttons oder Überschriften sticky werden */

.panel-grid {
    margin: 0 !important;
}
.navbar {
    font-weight: 300;
    height: 150px;
    padding: 0px 50px;
    background-color: #fff;
    box-shadow: rgba(0,0,0,0.1) 0px 0px 20px;
    display: flex;
}
.navbar a {
    font-size: 20px;
}
.menu {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    overflow: hidden;
}
.menu li {
    padding-left: 20px;
    padding-bottom: 16px;
    position: relative;
}
.menu li:first-child {
    padding-left: 0;
}
.menu-header-menu-container {
    display: flex;
    justify-content: right;
}
#navbarSupportedContent1 {
  width: 100%;
  position: relative;
}
.mega-menu-toggle button::after {
    content: none;
}
.navbar-nav.mr-auto {
  top: 90px;
  position: relative;
}
#menu-footer-menu {
    position: relative;
}
.sub-menu {
    padding: 20px 20px;
    background-color: #fff;
    list-style: none;
    position: absolute;
    left: 0;
    top: 100%;
    box-shadow: 0px 10px 10px 5px rgba(0,0,0,0.1);
    opacity: 0;
    transition: ease .2s all;
}
.menu li .sub-menu li {
    padding-left: 0;
}
.menu li .sub-menu li a {
    color: #747474;
}
.menu li .sub-menu li a:hover {
    color: #000;
}
.menu li:hover .sub-menu {
    opacity: 1;
}
.menu:hover {
    overflow: inherit;
}
@media screen and (max-width: 900px) {
    
    
    /*. -  Hamburger Icon  -  */
/* montserrat-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('wp-content/themes/docmendetheme/fonts/montserrat-v26-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('wp-content/themes/docmendetheme/fonts/montserrat-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('wp-content/themes/docmendetheme/fonts/montserrat-v26-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('wp-content/themes/docmendetheme/fonts/montserrat-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: 'montserrat',roboto;
}
.header-offset {
    height: 120px;
}
.post-header {
  height: auto;
}
header {
  width: 100%;
  height: 100%;
  background: #e74c3c;
  position: absolute;
  overflow: auto;
}

.icon-1, .icon-2, .icon-3 {
    position: absolute;
    left: 25%;
    top: 50%;
    width: 32px;
    height: 3px;
    background-color: #8a8a8a;
    transition: all 400ms cubic-bezier(.84,.06,.52,1.8);
}

.icon-1 {
  transform: translateY(-8px);
  animation-delay: 100ms;
}

.icon-3 {
  transform: translateY(8px);
  animation-delay: 250ms;
}

.hamburger-icon {
  position: absolute;
  height: 60px;
  width: 60px;
top: 55px;
  right: -12px;
  z-index: 1000;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  background: rgba(255,255,255,0.2);
    display: none;
  // background: green;
  // width: auto;
  // height: 50px;
  // overflow: hidden;
  &:hover {
    // .icon-1 {
    //   transform: rotate(40deg);
    // }
    // .icon-3 {
    //   transform: rotate(-40deg);
    // }
    // .icon-2 {
    //   opacity: 0;
    // }
    //transform: scale(1.2);
   // box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
  }
}

.icon-1.a {
  transform: rotate(40deg);
}
.icon-3.b {
  transform: rotate(-40deg);
}
.icon-2.c {
  opacity: 0;
}

.clear {
  clear: both;
}

@keyframes slideIn {
  0% {
    width: 0%;
    // transform: scale(.3);
    opacity: 0;
  }
  
  100% {
    width: 50%;
    // transform:scale(1);
    opacity: 1;
  }
}

#menu-header-menu {
/*
  background: #0288D1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
*/
  z-index: -10;
  opacity: 0; 
    transition: all 600ms cubic-bezier(.62,.04,.3,1.56);
   transition-delay: 100ms;
  ul {
/*
    margin: 0;
    position: absolute;
    top: 30%;
    left: 40%;
*/
    li {

      
      &:before {
        
      }
    }
  }
}

#menu-header-menu.show {
  //  opacity: 0;
  // animation: slideIn 0.6s cubic-bezier(.62,.04,.3,1.56);
  // animation-fill-mode: forwards;
    // transform:scale(1);
   opacity: 1;
      z-index: 999;
}


.dark-blue {
  position: absolute;
  top: 0;
  left: 0;
  background: #64B5F6;
  height: 100%;
  width: 0%;
  transition: all 500ms cubic-bezier(.62,.04,.3,1.8);
  transition-delay: 50ms;
  z-index: 5;
  opacity: 1;
}

.dark-blue.slide {
  width: 50%;
  opacity: 1;
}

@keyframes shotup {
  0% {
    transform: translateY(300%) ;
    opacity: 0;
  }
  90% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0%) ;
    opacity: 1;
  }
}



/*. -  Hamburger Icon Ende -  */

    .sub-menu {
  position: relative;
  opacity: 0;
  background-color: #e2f1d2;
box-shadow: none;
        max-height: 0;
        padding: 0;
        transition: all ease .3s;
visibility: hidden;
}
    .sub-menu li {
        padding: 5px 15px !important;
    }
    .sub-menu li a:first-child {
                margin-top: 10px;
    }
.menu-header-menu-container .menu {
  display: block;
  background-color: #fff;
  padding: 50px;
    position: relative;
    z-index: 999;
}
.menu-header-menu-container .menu li:hover .sub-menu {
opacity: 1;
    max-height: 500px;
    margin-top: 20px;
    visibility: visible;
}
.menu-header-menu-container .menu li a {
    font-size: 15px;
}
.menu-header-menu-container .menu li  {
    padding-left: 0;
} 
    .hamburger-icon {
        display: block !important;
    }
    .phone{
  top: -40px;
}
#header {
  position: absolute;
    z-index: 999999;
}
#logo img{
  width: 200px;
}
.navbar {
  height: 120px;
}
#hero-swiper {
  top: 120px !important;
}

    
}
.phone {
    position: absolute;
    right: 0;
}
.phone, .phone a {
    color: #d4ad87;
    font-size: 23px;
    font-weight: 400;
    margin-top: -35px;
 }
.phone a {
    margin-left: 10px;
}
.phone::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: #d4ad87;
 }
.phico::before {
   font: var(--fa-font-solid);
    content: '\f095';
 }

/*  -  Slider  -  */
.swiper img {
    width: 100%;
}
#hero-swiper {
    position: relative;
    top: 150px;
}
.swiper, swiper-container {
}
.swiper-pagination {
    bottom: 30px !important;
}
.swiper-button-next, .swiper-button-prev {
    color: #b2d88d !important;
}
.swiper-pagination-bullet-active {
    background: #b2d88d !important;
}
#tmcontent {
    padding: 33px;
}
#fs-header-text-n9ffv.title {
    font-size: 28px;
}


#site-header {
    height: auto;
    padding-top: 150px;
}
#site-header img{
    height: auto;
    width: 100%;
}
.img_fluid {
  width: 100%;
  height: auto;
}
.post-header {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
    height: 550px;
}
#wrapper {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
    padding-bottom: 150px;
    padding-left: 80px;
    padding-right: 80px;
    overflow: hidden;
}
#termin, #termin-start {
    top: 30vh;
    position: fixed;
    z-index: 9999;
    width: 1000px;
    opacity: 0;
    left: -9999px;
    transform: translateX(-50%);
    transition: opacity .3s ease;
}
#termin-start {
    opacity: 1;
    left: 50%;
    transition: ease .3s all;
}
#termin-wrapper {

}
#termin-button {
    background-color: #d7ebc2;
    width: 250px;
    text-align: center;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-left: 20px;
    position: fixed;
    z-index: 99999;
    transform: rotate(-90deg);
    top: 40%;
    font-weight: 300;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: ease .3s all;
    right: -120px;
    border: none;
    color: gray;
}
#termin-button::after {
    content: none;
}
#termin-button:hover {
    right: -110px;
    color: black;
}


.welcome {
    display: flex;
    align-items: center;
    margin-top: 50px;
    justify-content: center;
    text-align: center;
    padding-left: 50px;
  padding-right: 50px;
}
#intro {
    background-color: #f8f8f8;
    display: flex;
    height: 900px;
}
#intro-img {
  width: 50%;
  height: 100%;
}
.intro-img {
    overflow: hidden;
  height: 100%;
    }
.intro-img img {
    height: 100%;
  float: right;
}
#about
{
    padding-left: 100px;
    padding-right: 50px;
    padding-top: 50px;
}
#about-wrapper {
    width: 50%;
    display: flex;
  justify-content: center;
  flex-flow: column;
}
#diplome { 
    width: 100%;
    padding-top: 50px;
}
#diplome h2 {
    text-align: center;
}
.diplome-carousel img {
    border: 1px solid #cacaca;
    width: 100%;
}
.diplome-carousel {
  margin-left: 80px;
  margin-right: 80px;
}
#pg-22-0, #pl-22 .so-panel {
  margin-bottom: 0 !important;
}
.welcome {
    margin-bottom: 30px;
}
/*  -  Leistungen  -  */
input {
    padding: 10px 30px;
  background-color: #fff;
  border: #d7ebc2 2px solid;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  transition: ease 0.3s all;
}
input:hover {
  background-color: #d7ebc2;
}
#leistungen {
    padding-top: 120px;
    text-align: center;
    background-image: url("/wp-content/uploads/2024/01/jan-mende-unna-aqurell01.jpg");
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: right -200px;
}
#leistungen-items {
    text-align: left;
    margin-top: 50px;
    margin-bottom: 150px;
    margin-left: 150px;
    margin-right: 150px;
}
.leistungen-item {
    width: 250px;
    flex-direction: row;
    margin-right: 40px;

}
.leistungen-item p {
    min-height: 180px;
}
.leistungen-item:last-child {
  margin-right: 0px;
}
.leistungen-item img {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    opacity: 1;
    transition: 0.3s;
}
.leistungen-item h3 {
    font-size: 3.5rem;
    color: rgba(0,0,0,0.05);
    margin-top: 0;
}
.leistungen-item h4 {
    margin-top: -100px;
    text-transform: uppercase;
    color: #d4ad87;
    font-weight: 400;
    
}
.slick-slide {
  margin-right: 20px;
  margin-left: 20px;
}
.slick-arrow::after, .slick-dots button::after {
    display: none;
}
.slick-dots li button::before {
  font-size: 10px !important;
  color: #444 !important;
}
.slick-dots li.slick-active button::before {
    color: #b2d88d !important;
}
.slick-dots {
  bottom: -65px !important;
}
.slick-dots li {
    margin: 0 !important;
}
.slick-dots li button:hover::before, .slick-dots li button:focus::before {
  color: #b2d88d !important;
}
.slick-prev::before, .slick-next::before {
  font-size: 50px !important;
  color: #b2d88d !important;
}
.slick-next {
    right: -65px !important;
    height: 70px !important;
    width: 70px !important;
}
.slick-prev {
    left: -65px!important;
    height: 70px !important;
    width: 70px !important;
}
button {
    border: #d4ad87 solid 3px;
    border-radius: 0;
    color: #d4ad87;
    width: 200px;
    font-weight: 300;
    background-color: transparent;
    height: 45px;
    position: relative;
    display: inline-block;
    font-size: 18px;
    transition: ease 0.3s all;
    cursor: pointer;
}
button:hover {
    color: #747474;
}
button::after {
    font: var(--fa-font-solid);
    content: '\f105';
    color: #fff;
    font-size: 15px;
    background-color: #d4ad87;
    padding: 10px 14px;
    border-radius: 30px;
    background-position: right;
    position: absolute;
    margin-left: 28px;
    margin-top: -7px
}
#leistungen-items a:hover img {
    opacity: 0.5;
}
.more-link {
    font-weight: 300;
}
/*  -  Praxis  -  */
#praxis {
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #add583;
    position: relative;
    color: #fff;
    font-weight: 300;
}
#praxis h3 {
    color: #fff;
}
#praxis-image-wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
    width: 55%;
}
#praxis img {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0,-50%);
    height: 130%;
    float: right;
    object-fit: cover;
}
#praxis-textblock {
    width: 45%;
    padding-left: 80px;
    padding-right: 80px;
}
#praxis-textblock h2 {
    color: #fff;
}
#praxis button {
    border: #fff solid 3px;
    color: #fff;
}
#praxis button::after {
    color: #add583;
    background-color: #fff;

}
#praxis button:hover {
    color: #747474;
}
.praxis-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    margin: 0;
    padding: 0;
}
.praxis-slider img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: ease 1s;
}
.gallery-frame {
  margin: 0;
}
.praxis-slider a {
  overflow: hidden;
}
.praxis-slider a:hover img {
  transform: scale(1.1);
}
/*  -  Behandlung  _  */
#behandlung {
    text-align: center;
    padding-top: 120px;
    background-image: url("/wp-content/uploads/2024/01/jan-mende-unna-aqurell01.jpg");
    background-repeat: no-repeat;
    background-size: 1400px;
    background-position: center 200px;
    overflow: hidden;
    height: 860px;
    position: relative;
}
.behandlung-item {
    width: 420px;
    background-color: #fff;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: rgba(0,0,0,0.1) 0px 0px 20px;
    padding-right: 20px;
    margin-bottom: 30px;
}
#behandlung-links {
    left: 10%;
    position: absolute;
    top: 250px;
}
#behandlung-rechts {
    right: 10%;
    position: absolute;
    top: 250px;
}
.behandlung-item.eins {
    margin-left: 50px;
}
.behandlung-item.zwei {
    margin-left: -20px;
}
.behandlung-item.drei {

}
.behandlung-item.vier {
    margin-left: -50px;
}
.behandlung-item.fuenf {
    margin-left: 20px;
}
.behandlung-item.sechs {

}
.behandlung-item h4 {
    text-transform: uppercase;
    color: #d4ad87;
    font-weight: 400;
    margin-top: 15px;
    hyphens: auto;
}
.behandlung-item img {
    height: 100px;
    width: auto;
    margin-right: 10px;
}
.behandlung-text {
    width: 100%;
    padding-right: 20px;
    height: 100%;
}

/*  -  Preise  -  */
#preise {
    padding-top: 120px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
}
#kosten-anchor, #about-anchor {
    visibility: hidden;
    height: 0px !important;
    position: absolute;
    margin: -150px;
}
#preise::before {
    content: '';
    background: url('/wp-content/uploads/2024/01/jan-mende-praxis-osteopathie-unna-praxis.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
}
#preise-text, #no-show {
    text-align: justify;
    hyphens: auto;
    padding-left: 180px;
    padding-right: 180px;
    columns: 2 1em;
    column-gap: 5em;
    padding-top: 50px;
    padding-bottom: 30px;
}
#no-show {
    columns: 1;
    padding-top: 0;
}

/*  -  Footer  -  */
#footer {
    background-color: #d7ebc2;
    height: 600px;
    color: #000;
    display: flex;
    align-items: center;
    font-weight: 300;
}
#footer img {
    width: 800px;
}
#footer #map {
        position: absolute;
    right: 10%;
}
#adresse {
    position: absolute;
    left: 15%;
}
#footer button {
    border: #000 solid;
    color: #000;
}
#footer button:hover {
    color: #747474;
}
#footer button::after {
    color: #d7ebc2;
    background-color: #000;
}
#footer a {
    color: #000;
}
.tel::before {
    font: var(--fa-font-solid);
    content: '\f095';
    margin-right: 8px;
}
.fax::before {
    font: var(--fa-font-solid);
    content: '\f1ac';
    margin-right: 8px;
}

/*  -  Footermenu  -  */
.footer-menu {
    display: flex;
    justify-content: center;

    margin-top: 20px;
    font-weight: 300;
}
#footer-menu {
    
}
#footer-menu li {
    text-decoration: none;
    list-style: none;
    float: left;
    padding-right: 30px;
}
.footer-menu a:hover {
    color: #000;
}

/*  -  logobar  -  */
.logobar {
    height: 90px;
    
}
.logobar img {
    height: 70px;
    width: auto;
    margin-right: 50px;
    float: right;   
}


/*   -  Intro Unterseite. -  */
#intro-unterseite {
    text-align:left;
    background-color: #f8f8f8;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -5px;
}
#intro-unterseite p {

}

/*  -  Inhalt. -  */
#content h2 {
    color: #b2d88d;
    font-weight: 400;
}
.content-item {    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.content-item:nth-child(odd) {
    flex-direction: row-reverse;
}
.content-item:nth-child(even) .content-image {
    justify-content: left;
}
.content-item img {
    -webkit-mask-image: linear-gradient(to left, transparent 10%, black 50%);
    mask-image: linear-gradient(to left, transparent 10%, black 50%);
    height: 650px;
    width: auto;
}
.content-item:nth-child(odd) img {
    margin-right: 0px;
    margin-left: 80px;
    float: right;
    -webkit-mask-image: linear-gradient(to right, transparent 10%, black 50%);
    mask-image: linear-gradient(to right, transparent 10%, black 50%);
}
.content-text {
    padding: 80px 0 80px 80px;
    z-index: 98;
    position: relative;
    hyphens: auto;
    -webkit-hyphens: auto;
   -moz-hyphens: auto;
}
.content-item:nth-child(odd) .content-text {
    left: 0%;
    width: 50%;
}
.content-item:nth-child(even) .content-text {
    padding: 80px;
}
#content ul li {
    list-style: none
}
#content ul li::before {
    content: "\2022";
    color: #b2d88d;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.content-image {
    width: 60%;
    display: flex;
    justify-content: right;
/*    overflow: clip;*/
}
#kontakt {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    flex-wrap: wrap;
}
#anschrift {
  padding-right: 20px;
  padding-bottom: 30px;
}
.wpcf7-form-control.wpcf7-submit.has-spinner {
    padding: 10px 50px;
    background-color: #fff;
    border: #d7ebc2 2px solid;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: ease 0.3s all;
}
.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background-color: #d7ebc2;
}
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  border: #d7ebc2 2px solid;
  border-radius: 5px;
  height: 40px;
}
.wpcf7-form-control.wpcf7-textarea {
  border: #d7ebc2 2px solid;
  border-radius: 5px;
}
.logos {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap:wrap;
}
.logos a img {
        width: 180px;
        padding-right: 10px;
    padding-bottom: 20px;
}

@media screen and (min-width: 2000px) {
#intro {
    height: 1000px;
}
.post-header {
    height: 900px;
    }
}
@media screen and (min-width: 1700px) {
.content-item img {
    height: inherit;

}
}
@media screen and (min-width: 1299px) and (max-width: 1599px) {
#footer img {
    right: 5%;
}  
}

@media screen and (max-width: 1299px) {
#intro {

}

#praxis {
    height: 500px;
}
#praxis-textblock {
    padding-right: 50px;
}
.behandlung-item {
    width: 300px;
}
#behandlung-links {
    left: 6%;
}
#behandlung-rechts {
    right: 4%;
}
#preise-text, #no-show {
    padding-left: 80px;
    padding-right: 80px;
    column-gap: 3em;
}
#footer img {
    width: 600px;
    right: 5%;
}
#adresse {
    left: 10%;
}
.welcome {
    margin-top: 40px;
}
#preise {
  padding-top: 70px;
    padding-bottom: 50px;
}
}
@media screen and (max-width: 999px) {
#wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }

#termin-start {
    opacity: 0;
    left: -99999;
    transition: ease .3s all;
    top: 120px;
    width: 100%;
}
#termed-logo img {
    width: 130px;
}
#intro {
    height: auto;
    display: block;
}
#intro-img {
    width: 100%;
    height: 100%;
}
#about-wrapper {
    width: 100%;
}
#about {
    text-align: center;
    padding-left: 50px;
}
.intro-img img {
    width: 100%;
}
.slick-dotted.slick-slider {
    margin-bottom: 80px !important;
}
#footer img {
    width: 500px;
}
#adresse {
    width: 350px;
  }
#preise {
    padding-top: 60px;
    padding-bottom: 60px;
    height: auto;
}
#footer {
    height: 500px;
}
.logobar img {
    height: 50px;
}
#preise-text {
    padding-top: 0;
}
.img_fluid {

}
    
#intro-unterseite {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.welcome {
    margin-top: 0;
}
#leistungen {
    padding-top: 60px;
}
.leistungen-item p {
    min-height: inherit;
}
.slick-dots {
    bottom: -45px !important;
}
#praxis-textblock {
    padding-bottom: 50px;
    width: auto;
}
#praxis-image-wrapper {
  height: 450px;
    width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#praxis img {
    position: relative;
    width: 100%;
    top: inherit;
    transform: translate(0,0%);
    height: auto;
    float: right;
    object-fit: cover;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#praxis {
  height: auto;
  overflow: hidden;
  display: block;
  position: relative;
  color: #fff;
  font-weight: 300;
  width: 100%;
}
    .content-image {
        width: 50%;
    } 
    .content-item img {
  -webkit-mask-image: linear-gradient(to left, transparent 50%, black 90%);
  mask-image: linear-gradient(to left, transparent 50%, black 90%);
}
.content-item:nth-child(2n+1) img {
  -webkit-mask-image: linear-gradient(to right, transparent 50%, black 90%);
  mask-image: linear-gradient(to right, transparent 50%, black 90%);
}
    .content-text h2 {
          -moz-hyphens: auto;
   -o-hyphens: auto;
   -webkit-hyphens: auto;
   -ms-hyphens: auto;
   hyphens: auto; 
        font-size: 1.5rem;
    }
    .content-text a {
        hyphens: none;
    }
    
}

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

#footer {
  height: inherit;
  align-items: center;
  flex-flow: column;
}
#adresse, #map {
    position: relative !important;
    width: inherit;
    left: 0;
    text-align: center;
    padding-bottom: 50px;
    }
.content-text {
  padding: 40px;
}
    .content-item:nth-child(2n) .content-text {
  padding: 40px;
}
.post-header {
    height: auto;
}
#termed-logo {
    float: none;
}
}


@media screen and (max-width: 540px) {
#intro-unterseite h2 {
          -moz-hyphens: auto;
   -o-hyphens: auto;
   -webkit-hyphens: auto;
   -ms-hyphens: auto;
   hyphens: auto;
}
#preise-text {
  columns: 1;
}
.navbar {
  display: block;
}
.phone {
    display: none;
    }
.hamburger-icon {
    top: -85px;
}
.navbar-nav.mr-auto {
    top: 0;
    padding-left: 0;
    }   
#navbarSupportedContent1 {
    top: -10px;
}
#menu-header-menu {
    width: 100%;
}
.header-img {
    height: inherit;
    }
#wrapper {
    padding: 40px;
    }
#termin-button {
  width: 150px;
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
  right: -80px;
}
#termin-button:hover {
  right: -70px;
}
.content-item {
  display: block;
    }
.content-image, .content-item:nth-child(2n) .content-image {
    width: 100%;
    justify-content: center;
    overflow: hidden;
  }
.content-item:nth-child(2n+1) img, .content-item img {
    mask-image: none;
    height: 350px;
    margin: 0;
    }
.content-item:nth-child(2n+1) .content-text, .content-text {
    width: inherit;
}
#footer img {
    width: 100%;
}
#adresse, #map {
    text-align: center;
    padding-bottom: 40px;
}
.logobar img {
    padding-bottom: 10px;
}
}
@media screen and (max-width: 540px) {
#logo img {
    height: 60px;
}
.navbar {
  padding: 0px 30px;
}
#logo {
  margin-left: -20px;
  padding-top: 10px;
}
.hamburger-icon {
top: -70px;
}
p {
    color: #000;
    font-size: 1.3em;
    hyphens: none;
}
    h3 {
        font-size: 1.5em;
    }
      #preise-text, #no-show {
    padding-left: 40px;
    padding-right: 40px;
  }
      #praxis-textblock {
    padding-left: 40px;
          padding-right: 40px;
    text-align: center;
  }
    #leistungen-items {
    margin-left: 60px;
    margin-right: 60px;
}
    .entry {
        margin: 0;
    }
    
}
#hinweis {
    border: 3px red solid;
    padding: 10px 30px;
    font-weight: bold;
    color: red;
    hyphens: auto;
}

/*
@media screen and (max-width: 1440px){
.content-item img {
    -webkit-mask-image: linear-gradient(to left, transparent 20%, black 50%);
    mask-image: linear-gradient(to left, transparent 20%, black 50%);

}
.content-item:nth-child(odd) img {
    -webkit-mask-image: linear-gradient(to right, transparent 20%, black 50%);
    mask-image: linear-gradient(to right, transparent 20%, black 50%);
}

}
@media screen and (max-width: 1120px){
.content-item img {
    -webkit-mask-image: linear-gradient(to left, transparent 30%, black 50%);
    mask-image: linear-gradient(to left, transparent 30%, black 50%);

}
.content-item:nth-child(odd) img {
    -webkit-mask-image: linear-gradient(to right, transparent 30%, black 50%);
    mask-image: linear-gradient(to right, transparent 30%, black 50%);
}
.content-image {
    width: 50%;

}
}
*/