@charset "utf-8";
/* CSS Document */
/* Physiotherapie Boehme-Böhnke Lichtenthäler */
/* Copyright 2020 Hoppe Websolutions */
/* Fonts */
/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v15-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('../fonts/open-sans-v15-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v15-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v15-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v15-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v15-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v15-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('../fonts/open-sans-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v15-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* catamaran-300 - latin */
@font-face {
  font-family: 'Catamaran';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/catamaran-v4-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Catamaran Light'), local('Catamaran-Light'),
       url('../fonts/catamaran-v4-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/catamaran-v4-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/catamaran-v4-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/catamaran-v4-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/catamaran-v4-latin-300.svg#Catamaran') format('svg'); /* Legacy iOS */
}
/* catamaran-500 - latin */
@font-face {
  font-family: 'Catamaran';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/catamaran-v4-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Catamaran Medium'), local('Catamaran-Medium'),
       url('../fonts/catamaran-v4-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/catamaran-v4-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/catamaran-v4-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/catamaran-v4-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/catamaran-v4-latin-500.svg#Catamaran') format('svg'); /* Legacy iOS */
}
/* Normalize html */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a {
  background-color: transparent;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
img {
  border-style: none;
}
[hidden] {
  display: none;
}
/*******************************/
.clearfix { zoom:1; }
.clearfix:before, .clearfix:after {
	content:"\0020";
	display:block;
	height:0;
	overflow:hidden;
}
.clearfix:after { clear:both; }

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.preload * {
  transition: none !important;
}

html {
	height: 100%;
	font-size: 115%;
	font-size: 110%;
	-webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
	overflow-y: scroll !important;
}
body {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	line-height: 1.6;
	color: #787878;
	font-weight: 300;
}
a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}
b, strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
img {
  border-style: none; /* Remove the border on images inside links in IE 10 */
}
[hidden] {
  display: none; /* Add the correct display in IE 10 */
}
/* Klassen für Animationen */
.hidden {
	opacity: 0 !important;
}
.bigLogo {
	opacity: 0;
}
.loaded {
	opacity: 1;
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;	
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

/* Scroll To Top Scroll Funktion*/
div.totop {
	display: none;
	position: fixed;
	text-align: right;
	right: 0.5em;
	bottom: 3.5em;
	z-index: 201;
	opacity: 0.8;
}
div.totop img {
	width: 50px;
	height: auto;
	padding: 0;
	background: none;
}
p, ul, ol, dl, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 1em 0 0 0;
}
p, ul ,ol , dl {
	font-size: 0.9em;
}
p.quelle {
	font-style: italic;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Catamaran', sans-serif;
	font-weight: 300;
	color: #369;
	padding: 0.5em 0 0 0;
}
h1 {
	font-size: 1.5em;
	line-height: 1.2;
	padding: 1em 0 0 0;
	margin-bottom: -0.25em;
}
h2 {
	font-size: 1.25em;
	line-height: 1.2;
	padding: 0.75em 0 0 0;
}
h3 {
	font-size: 1.20em;
	line-height: 1.2;
	padding-top: 1em;
}
h4 {
	font-size: 1.1em;
	line-height: 1.2;
	padding-top: 1em;
}
#impressum h4 {
	margin-bottom: -0.5em;
}
h5 {
	font-size: 1.0em;
	line-height: 1.2;
	padding-top: 0;
}
h6 {
	font-size: 0.95em;
	line-height: 1.2;
	padding-top: 1em;
}

ol {
	margin-left: 1em;
	padding-left: 1em;	
}
ol > li {
	padding-top: 0.5em;	
}
ul {
	list-style-type: square;
	margin-left: 1em;
	padding-left: 1em;
}
ul ul {
	list-style-type: circle;
}
ul ul ul {
	list-style-type: circle;
}

#header {
	position: absolute;
	width: 100%;
	z-index: 10;
}
#smart-logo {
	position: relative;
	top: 0;
	height: auto;
}
.nav-wrapper {
	position: relative;
	margin: 0 auto;		
	width: 100%;
	max-width: 100em;
	padding: 0;
	transition: all 0.3s ease-in-out;
}
.menu-trigger {
	width: 100%;
	height: 3em;
}
/* Kontaktanzeige Smartphone */
#contacts {
	float: left;
	width: 3em;
	height: 3em;
	margin: 0 0 0 1rem;
}
#contacts img {
	width: 100%;
	height: auto;
}
#praxis-title {
	float: left;
	text-align: center;
	color: #FFF;
	font-weight: 400;
	font-size: 3.75vw;
	padding: 0;
	line-height: 1.3;
}
div.inner {
	position: absolute;
	margin-left: 0.4em;
	/*margin-left: 0;*/
	/*max-width: calc(100% - 125px);*/
	/*max-width: calc(100% - 110px);*/
	width: 55vw;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#praxis-title span.namen {
	font-size: 3vw;
	font-size: 2.9vw;
}
/* Hamburger */
#hamburger {
	float: right;
	width: 3em;
	height: 3em;
	text-align: right !important;
	position: relative;
	font-size: 40px;
	font-weight: 300;
	line-height: 2.2;
	padding: 0;
	margin: 0;
	padding-right: 10em;
	cursor: pointer;
	display: block;
	border: 0;
	outline: 0;
}
#hamburger {
	padding: 0.5em 3em 0 0;
	display: block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}
.hamburger-box {
	width: 30px;
	height: 24px;
	display: inline-block;
	position: relative;
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 30px;
	height: 4px;
	background-color: #FFF;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before {
	top: -10px;
}
.hamburger-inner::after {
	bottom: -10px;
}
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
 }
.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.navSections {
	clear: both;
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #FFF;
}
.navSections li {
	margin: 0;
	padding: 0;
}
.navSections li.logo-icon {
	display: none;
}
.navSections a {
	background-color: #FFF;
	color: #369;
	display: block;
	font-size: 1.2em;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	line-height: 20px;
	overflow: visible;
	padding: 0.75em 0 0.75em 2em;
	margin: 0;
	border-bottom: 1px solid #369;
	text-decoration: none;
	transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.navSections a.aktiv {
	background-color: #369;
	color: #FFF;
}
.navSections a:hover {
	background-color: #09f;
	color: #FFF;
}

.bgd-startfoto {						
	background: #f5f5f5 url(../img/boehme-boehnke-lichtenthaeler-s-min.jpg) right bottom no-repeat;
	background-size: auto 100%;
	padding-bottom: 37.5%;
}

#navi {
	position: relative;
	width: 100%;
	z-index: 901;
	background-color: #369;
	transition: all 0.3s linear;
	box-shadow: none;
}
.logo {
	float: left;
	width: 30%;
}
.logo img {
	width: 100%;
	padding: 1.75em 0.5em 0.5em 1rem;
	height: auto;
	line-height: 0;
}
.hinweis {
	float: right;
	width: 20%;
	padding: 1em 0.5em;
	background-color: rgba(0,153,255,1);
	border-bottom-left-radius: 0.5em;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.hinweis_mobile {
	margin: 1em 0 -0.5em 0;
	padding: 0.5em;
	background-color: rgba(0,153,255,1);
}
.hinweis p, .hinweis_mobile p {
	color: #FFF;
	font-weight: 400;
	text-align: center;
}
.hinweis_mobile p {
	padding: 0;
}

#maincontent {
	padding: 0 0 2.5em 0;
	margin: 0;
}
section {
	padding: 1rem 1rem 0 1rem;
}

/* Short-Infos mobil ausblenden */
section.short-infos {
	display: none;
}
.wrapper {
	padding-top: calc(37.5% + 3em);
}

.maps iframe {
	height: 50vh;
	width: 100% !important;
	border: none;
	margin: 0;
}

div.not-mobile, li.not-mobile {
	display: none;
}

.icons {
	margin-top: 1em;
}
.teaser {
	margin-top: 2em;
	text-align: center;
}
.teaser p {
	font-size: 85%;
	font-size: 0.85em;
}
.teaser h3 {
	padding-top: 1em;
	color: #146faa;
}
.teaser figure {
	margin: 0;
	padding: 0;
	width: 100%;
	border-radius: 50%;
	line-height: 0;
}
.teaser img {
	width: 20%;
	max-width: 85px;
	width: 80%;
	max-width: 300px;
	height: auto;
	text-align: center;
	margin: 0;
	padding: 0;
	border-radius: 50%;
}
.teaser p.button a {
	display: block;
	background-color: #369;
	color: #FFF;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-decoration: none;
	padding: 0.75em 1em;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.teaser p.button a:hover {
	background-color: #09f;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.teaser p.button a::after {
	content: '\2009 \2009 \02794';
}

/* Accordion Styles */
.accordion {
	width: 100%;
	padding: 0;
	margin: 1em 0;
}
.accordion h3 {
	position: relative;
	display: block;
	margin: 0;
	padding: 0.85em 0.5em 0.85em 3.5em;
	transition: all 0.3s ease-in-out;
	background-color: #efefef;
	border-top: 2px solid #FFF;
}
#team .accordion h3 {
	border: none;
	padding-left: 0;
}
.accordion h3 span {
	color: #787878;
	font-size: 0.8em;
}
.accordion h3::before {
	display: inline-block;
	text-align: center;
	content:'\002B';
	font-size: 1.5em;
	border-radius: 50%;
	background-color: transparent;
	border: 2px solid #369;
	color: #369;
	line-height: 1.0em;
	height: 1.0em;
	width: 1.0em;
	margin-right: 0.5em;
	transition: all 0.3s ease-in-out;
	position: absolute;
	left: 0.5em;
	top: 0.4em;
}
#team .accordion h3::before {
	position: absolute;
	left: 0.5em;
	top: 0.75em;
}
.accordion h3:hover, .accordion h3:active, .accordion h3:focus {
	cursor: pointer;
}
.accordion h3:hover::before, .accordion h3:active::before, .accordion h3:focus::before {
	cursor: pointer;
	background-color: #369;
	color: #efefef;
}
.accordion h3.open {
	background-color: #369;
	color: #efefef;
}
.accordion h3.open span {
	color: #efefef;
}
.accordion h3.open::before {
	content:'\2013';
	color: #efefef;
	border-color: #efefef;
}
.accordion h3.open:hover::before {
	background-color: #efefef;
	color: #369;
}
.abox {
	margin: 0 0 1em 0;
	padding: 0 3.5vw 1em 3.5vw;
	background-color: #FFF;
	transition: background-color 0.3s ease-in-out;
}
#team .abox {
	padding: 0 2em 1em 2em;
}
#team .abox ul {
	font-size: 0.9rem;
}
.gray {
	background-color: #efefef;
}
.abox ul {
	margin-left: 0.6rem;
	padding-left: 0.6rem;
}
.abox ul ul {
	margin-left: 0.3rem;
	padding-left: 0.3rem;	
}
.abox ul li {
	padding-bottom: 0.5em;
}
#maincontent .abox ul > li {
	padding-top: 0;
}

figure.full-width {
	position: relative;
	width: 100%;
	height: auto;
	padding-bottom: 52.08%;
	margin: 1em 0 0 0;
	overflow: hidden;
}
.full-width img {
	position: absolute;
	left: -10%;
	top: 0px;
	width: 120%;
	height: auto;
}

/* Textlinks im Contenbereich */
/* Links im Footer */
a.text-link {
	text-decoration: none;
	color: #787878;
	transition: all 0.3s ease-in-out;	
}
a.text-link:link {
	border-bottom: 2px solid #787878;
}
a.text-link:visited {
	border-bottom: 2px solid #787878;
}
a.text-link:hover, a.text-link:focus {
	border-bottom: 2px solid transparent;
}
a.text-link:active {
	border-bottom: 2px solid #787878;
}
/* Markierung externer Links */
.external_link::after, .ext_link {
	content: "\00a0\00a0\00a0\00a0\00a0";
	background-image: url(../img/external_link.png);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
}

/* Footer */
#foot {
	padding: 0;
	margin: 2em 0 0 0;
}
.foot-contact {
	padding: 0 1rem;
}
#foot .foot-contact p, #foot .foot-contact h4, #foot .foot-contact div {
	color: #369;
}
#foot p {
	font-size: 0.85em;
	color: #FFF;
}
#foot h4 {
	font-size: 1.5em;
	padding: 1em 0 0 0;
	color: #FFF;
}
/* Links im Footer */
#foot a {
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease-in-out;	
}
#foot a:link {
	border-bottom: 2px solid #fff;
}
#foot a:visited {
	border-bottom: 2px solid #fff;
}
#foot a:hover, #foot a:focus {
	border-bottom: 2px solid transparent;
}
#foot a:active {
	border-bottom: 2px solid #fff;
}
/* E-Mail Link im Info-Block */
.info a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.info a:hover, info a:focus {
	text-decoration: underline;
}

/* Mobile Links Phone, Mobile and Mail */
#foot p.phone, #foot p.mail, #foot {
	padding: 0;
}
#foot p.phone a, #foot p.mail a, #foot p.fax {
	display: block;
	padding: 0.75rem 0 0.75rem 1rem;
	color: #FFF;
	font-weight: 400;
	font-size: 0.9rem;
	text-align: center;
	text-decoration: none;
	background: #369 url(../img/phone.png) 1em 50% no-repeat;
	background-size: auto 30px;
	-webkit-border-radius: 1em;
	-moz-border-radius: 1em;
	border-radius: 1.8em;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);	
	max-width: 25rem;
	border: 1px solid transparent;
	margin: 1rem 0 0 0;
}
#foot p.mail a {
	padding-left: 3rem;
	padding-right: 1rem;
	background-image: url(../img/mail.png);
	white-space: nowrap;
	overflow: hidden;
	/*max-width: 100%;*/
	text-overflow: ellipsis;	
}
#foot p.fax {
	background-image: url(../img/fax.png);
}
#foot p.phone a:hover, #foot p.mail a:hover, #foot p.fax:hover {
	background-color: #09f;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.foot-copy {
	background-color: #336699;
	padding: 2em 1rem;
}
#foot .foot-copy p {
	text-align: center;
	line-height: 1.4;
	font-size: 0.75em;
}
.table-data {
	margin-top: 1em;
	margin-bottom: 2em;
}
.table-row {
	display: table-row;
	color: #FFF;
	font-size: 0.85rem;
	margin-bottom: 2em !important;
}
.table-row div {
	display: table-cell;
}
#datenschutz {
	overflow-wrap: break-word;
}
.team, .impressionen {
	margin: 1em 0;
	padding: 0;
}
.team {
	margin: 0;
}
.mitarbeiter, .impressionen figure {
	position: relative;
	margin: 0 0 1em 0;	
}
.mitarbeiter img, .impressionen figure img {
	width: 100%;
	height: auto;
}
.mitarbeiter-1 img {
	width: 100%;
	height: auto;
}
.mitarbeiter figure, .mitarbeiter-1 figure, .impressionen figure {
	overflow: hidden;
	line-height: 0;
}
.mitarbeiter figcaption, .mitarbeiter-1 figcaption {
	position: relative;
	line-height: 1.6;
	text-align: center;
	background-color: #efefef;
	padding-bottom: 0.5em;
}
.mitarbeiter-1 figcaption {
	padding-bottom: 0;
}
#team .mitarbeiter-1 figcaption h3 {
	padding-left: 1.5em;
}
.mitarbeiter figcaption ul, .mitarbeiter-1 figcaption ul {
	list-style-type: disc;
	text-align: left;
}
.mitarbeiter h4, .mitarbeiter-1 h4 {
	padding-top: 0.5em;
}
.mitarbeiter h5, .mitarbeiter-1 h5 {
	padding-top: 1.5em;
}
.mitarbeiter p, .mitarbeiter-1 p {
	padding-top: 0;
}

/* The Overlay (background) */
.overlay {  
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 300;
    left: 0;
    top: 0;
	background-color: rgba(41,82,122,0.95);
	background-size: auto;
    overflow-x: hidden;
	overflow-y: hidden;
    transition: 0.5s;
}
/* content inside the overlay */
.overlay-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	width: 100%;
	margin-top: 0;
}
/* The navigation links inside the overlay */
.overlay a {
    text-decoration: none;
	border-bottom: 0.1em solid transparent;
    color: #FFF;
    display: inline-block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}
.overlay p {
	font-size: 4.5vmin;
}
.overlay p.names {
	font-size: 3.5vmin;
	padding-bottom: 5vmin;
}
.overlay figure a {
	font-weight: 400;
	line-height: 1;
	font-size: 4.5vmin;
}
/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
	border-bottom-color: #FFF;
}
.overlay-content h3 {
	font-size: 5vmin;
	color: #FFF;
	font-weight: 500;
	margin-bottom: -0.5em;
}
.overlay-content p {
	font-weight: 400;
	color: #FFF;
	line-height: 1.6;
	padding-bottom: 0.5em;
}
.overlay-content p.fon a {
	padding: 0 1em 0 2em;
	background: url(../img/phone_white.png) left center no-repeat;
	background-size: contain;
	cursor: pointer;
}
.overlay-content p.telefax span {
	display: inline-block;
	padding: 0 1em 0 2em;
	background: url(../img/fax_white.png) left center no-repeat;
	background-size: contain;
	transition: 0.3s;
}
.overlay-content p.email a {
	padding: 0 1em 0 2em;
	background: url(../img/mail_white.png) left center no-repeat;
	background-size: contain;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	max-width: 90%;
	text-overflow: ellipsis;
}
.overlay-content p.location a {
	padding: 0 1em 0 2em;
	background: url(../img/location_white.png) left center no-repeat;
	background-size: contain;
	cursor: pointer;	
}
/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
	top: 0px;
	right: 4vmin;
	font-size: 12vmin;
	font-weight: 500;
	line-height: 1;
	color: rgba(255,255,255,1);
	cursor: pointer;
	z-index: 301;
}
.overlay .closebtn:hover {
	color: rgba(0,153,255,1);	
}

/* Cookie Hinweis */
#cookie-notice {
	box-sizing: border-box;
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	overflow: hidden;
	color: #FFF;
	max-width: 100%;
	background-color: rgba(51,102,153,1);
	padding: 0.3em;
	z-index: 9999;
	transition: all .3s linear;
	opacity: 0;
}
#cookie-notice p {
	font-size: 0.7em;
	text-align: center;
	color: #FFF;
	padding: 0;
	margin: 0;
	line-height: 1.5;
}
#cookie-notice a {
	color: #FFF;
}
.cookie-buttons {
	margin: 0.75em 0 0.5em 0;
	text-align: center;
}
#cookie-notice .cookie-buttons a {
	color: #FFF;
	font-size: 0.8em;
}
.cookie-buttons [role="button"] {
	background-color: rgba(0,153,255,1);
	border-radius: 5px;
	padding: 0.4em 0.8em;
	cursor: pointer;
	margin: 0 0.5em;
	transition: all .3s linear;
}
.cookie-buttons [role="button"]:hover {
	background-color: rgba(0,153,255,0.6);
}

/* Smartphone Navigation für Queransicht, halbe Breite der Navigationsfelder */
@media only screen and (max-width: 49.999em) and (orientation: landscape) {
	.navSections {
		border-top: 1px solid #FFF;		
	}
	.navSections li {
		float: left;
		width: 50%;
		border-right: 1px solid #369;
	}
}

@media only screen and (min-width: 23em) {
	#praxis-title {
		font-size: 4vw;
		line-height: 1.2;
	}
	#praxis-title span.namen {
		font-size: 3vw;
	}	
}

@media only screen and (min-width: 30em) {
	#praxis-title {
		font-size: 1em;
	}	
	#praxis-title span.namen {
		font-size: 0.85em;
	}
	div.inner {
		margin-left: 0;
		width: calc(100% - 150px);
	}		
	section {
		padding: 2rem 2.5rem 0 2.5rem;
	}	
	.foot-contact {
		padding: 0 2.5rem;
	}	
	.impressionen figure {
		float: left;
		width: 47.5%;
		margin-right: 5%;
		margin-bottom: 2em;
	}
	.impressionen figure:nth-of-type(2n) {
		margin-right: 0;
	}
	.impressionen figure img {
		width: 100%;
		max-width: none;
		height: auto;
		transition: all 2.5s cubic-bezier(.25,.8,.25,1);
	}
	.impressionen figure:hover img {
		transform: scale(1.25);
		cursor: zoom-in;
	}	
}

@media only screen and (min-width: 40em) {
	.mitarbeiter, .mitarbeiter-1, .impressionen figure {
		float: left;
		width: 47.5%;
		margin-right: 5%;
		margin-bottom: 2em;
	}
	.mitarbeiter:nth-of-type(2n), .mitarbeiter-1:nth-of-type(2n), .impressionen figure:nth-of-type(2n) {
		margin-right: 0;
	}
	.mitarbeiter img, .mitarbeiter-1 img, .impressionen figure img {
		width: 100%;
		max-width: none;
		height: auto;
		transition: all 2.5s cubic-bezier(.25,.8,.25,1);
	}
	.mitarbeiter figure:hover img, .mitarbeiter-1 figure:hover img, .impressionen figure:hover img {
		transform: scale(1.25);
	}	
	
	/* Teaser-Boxen */
	.teaser {
		float: left;
		width: 30%;
		padding: 0;
		margin: 1em 5% 1em 0;
	}
	.teaser:nth-of-type(3n) {
		margin-right: 0;
	}	
	#maincontent .teaser p {
		font-size: 0.75em;
	}
	.teaser h3 {
		font-size: 1.1em;
		padding-top: 1em;
		color: #146faa;
	}
	.teaser img {
		width: 100%;
		height: auto;
		max-width: none;
	}	
	.teaser img {
		transition: all 2.5s cubic-bezier(.25,.8,.25,1);
	}
	.teaser figure {
		overflow: hidden;
	}
	.teaser figure:hover img {
		transform: scale(1.25);
	}	
}

@media only screen and (min-width: 50em) {
	
	html {
		font-size: 110%;
		background-color: #FFF;
	}
	body {
		position: relative;
	}

	a[href^="tel"]:link,
	a[href^="tel"]:visited,
	a[href^="tel"]:hover {
		text-decoration: none;
		cursor: text;
	}	
	.only-mobile, .navSections li.only-mobile {
		display: none;
	}
	div.not-mobile, li.not-mobile {
		display: inline-block;
	}	
	div.not-mobile {
		display: block;
	}
	h1 {
		font-size: 2.0em;
	}	
	h2 {
		font-size: 1.5em;
	}
	
	#team .abox ul {
		font-size: 0.8rem;
	}	
	
	table {
		font-size: 100%;
	}	
	
	#header {
		width: 100%;
		margin: 0 auto;
		background: #f5f5f5;
		position: relative;
		z-index: 2;
	}	
	/* Navigationselemente */
	#navi {
		position: fixed;
		background-color: transparent;
		margin: 0 auto;
		text-align: center;		
	} 	
	#navi.sticky {
		background-color: #f5f5f5;
		box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
		z-index: 902;
	}	
	.nav-wrapper {
		padding: 0 10%;
	}
	.menu-trigger {
		height: 0;
		margin-top: -1px;
	}	
	#hamburger, #contacts, #praxis-title {
		display: none;
	}	
	
	.navSections {
		display: block;
		float: right;
		text-align: center;
		margin: 0;
		width: 100%;
	}	
	.navSections li {
	  display: inline-block;
	  padding: 1em 0;
	}
	
	.navSections a {
		position: relative;
		color: #369;
		font-size: 1em;
		padding: 0.6em 0;
		margin: 0 0.6em;
		border-bottom: none;
		text-decoration: none;
	}
	.navSections a {
		background-color: transparent;
	}		
	.navSections a:hover, .navSections a.aktiv {
		background-color: transparent;
		color: #369;
	}
	.navSections li.logo-icon {
		float: left;
		display: block;
		width: 4.5em;
		height: 4.5em;
		background: url(../img/logo-23-09-2018.png) center bottom no-repeat;
		background-size: cover;
		opacity: 0;
		transition: opacity 0.5s;
	}	
	.navSections li.logo-icon a {
		width: 4.5em;
		height: 4.5em;
		padding: 0;
		margin: 0;
		margin-top: -1em;
	}
	
	/* Hover Effekt der Navigation bei Mouse-Over */
	.navSections li.text-link a::before {
		content: "";
		position: absolute;
		width: 0;
		margin: 0 auto;
		height: 3px;
		bottom: 0.25em;
		left: 0%;
		background-color: transparent;
		visibility: hidden;
		transition: all 0.3s ease-in-out 0s;
	}
	.navSections li.text-link a:hover::before, .navSections li.text-link a.aktiv::before {
		visibility: visible;
		background-color: #09f;
		width: 100%;
	}
	
	/***************************/
	.page-wrapper {
		width: 100%;
		margin: 0 auto;
		max-width: 1960px;
	}
	.bgd-startfoto {
		position: relative;
		background: #f5f5f5 url(../img/boehme-boehnke-lichtenthaeler-min.jpg) right bottom +80% no-repeat;
		height: 0;
		background-size: 60%;
		padding-bottom: 27.5%;
	}	
	#start .bgd-startfoto {
		background: #f5f5f5 url(../img/boehme-boehnke-lichtenthaeler-min.jpg) right top no-repeat;
		background-size: 70%;
		padding-bottom: 31%;
	}	
	.logo {
		position: absolute;
		text-align: center;
		margin: 0;
		padding: 0;
		max-width: none;
		width: 22%;
		left: 5%;
		top: 10%;
	}
	#start .logo {
		top: 8.8%;
	}
	.logo figure {
		margin: 0;
		padding: 0;
	}
	.logo img {
		width: 60%;
		max-width: 250px;
		height: auto;
		padding: 0;
	}
	.logo figcaption p {
		display: inline-block;
		font-family: 'Catamaran', sans-serif;
		font-weight: 500;
		text-align: center;
		font-size: 1.5vw;
		line-height: 1.4;
		color: #369;
		padding: 0;
	}
	.logo figcaption p span {
		display: block;
		font-size: 1.8vw;
		border-bottom: 0.25vw solid #09f;
		margin-bottom: 0.5vw;
		padding-bottom: 0.20vw;
	}
	.wrapper {
		width: 85%;
		margin: 0 auto;
		max-width: 1000px;
		max-width: 1100px;
		padding: 0;
	}
	
	/* Short-Infos für Anschrift, Kontakt und Öffnungszeiten */
	.info-wrapper {
		width: 100%;
		margin: 0 auto;
		max-width: 1400px;
	}
	section.short-infos {
		position: relative;
		display: block;
		background-color: #369;
		padding: 0.75em 0 0.75em 0;
		z-index: 1;
	}
	.info {
		float: left;
		position: relative;
		width: 33.333333%;
		text-align: center;
	}
	.info h3, .info p {
		color: #FFF;
		font-family: 'Catamaran', sans-serif;
		font-weight: 300;
		margin: 0;
		font-size: 1.25em;
	}
	.info h3 {
		margin: 0.5em 0 0 0;
		font-weight: 300;
		font-size: 1.25em;
	}
	.info p {
		font-size: 0.9em;
		padding-top: 0.5em;
		line-height: 1.4;
	}
	.info img {
		position: absolute;
		width: 25%;
		height: auto;
		top: 0%;
		left: 50%;
		transform: translate(-50%,-63%);
	}	
	.info span.shorten {
		display: inline-block;
		white-space: nowrap;
		overflow: hidden;
		max-width: 100%;
		text-overflow: ellipsis;
	}
	
	#maincontent {
		margin-top: -1em;
	}
	section {
		padding: 1rem 0;
	}
	.info-wrapper {
		width: 90%;
	}	 

	p.phone a {
		cursor: text;
	}		
	#navi {
		text-align: left;
	}
	.accordion h3, .accordion h3.open {
		background-size: 40px 40px;
	}
	
	/* Footer */
	#foot {
		margin: 0;
		position: relative;
	} 
	#foot p {
		line-height: 1.6;
	}	
	#foot h4 {
		margin: 0;
	}	
	
	div.totop {
		right: 2em;
		bottom: 1.5em;
	}
	
	/* Anpassung Team-Foto auf volle Breite*/
	figure.full-width {
		padding-bottom: 41.67%;
	}
	.full-width img {
		left: 0px;
		top: 0px;
		width: 100%;
		transition: all 4s cubic-bezier(.25,.8,.25,1);
	}	
	.full-width:hover img {
		transform: scale(1.25);
	}	
	
	/* Korrektur "Kontakt-Anzeige */
	.overlay p, .overlay figure a {
		font-size: 3.5vmin;
	}
	.overlay p.names {
		font-size: 3vmin;
	}	
	
}
@media only screen and (min-width: 64em) {
	.mitarbeiter, .impressionen figure {
		width: 31%;
		margin-right: 3.5%;
		margin-bottom: 2em;
	}
	.mitarbeiter:nth-of-type(2n), .impressionen figure:nth-of-type(2n) {
		margin-right: 3.5%;
	}	
	.mitarbeiter:nth-of-type(3n), .impressionen figure:nth-of-type(3n) {
		margin-right: 0;
	}	
	#team .mitarbeiter-1 figcaption h3 {
		padding-left: 0;
	}	
}
@media only screen and (min-width: 80em) {
	html {
		font-size: 115%;
	}
	.logo.smaller {
		margin-left: 1.25rem;
	}
}
@media only screen and (min-width: 100em) {
	html {
		font-size: 125%;
	}
	
	/* Cookie */
	#cookie-notice {
		right: auto;
		left: 0.5em;
		margin: 0;
		max-width: 19em;
		bottom: 0.5em;
		border-radius: 5px;
		border: 1px solid #FFF;
	}	
}
@media only screen and (min-width: 120em) {
	.logo figcaption p {
		font-size: 1.4rem;
	}
	.logo figcaption p span {
		font-size: 1.7rem;
		border-bottom-width: 0.25rem;
		margin-bottom: 0.5rem;
		padding-bottom: 0.2rem;
	}	
}
/* Mobile Last-Regel to Reset Equal Height Columns for Smartphones */
@media only screen and (min-width: 0px) and (max-width: 639px) {
  .p7ehc-1, .p7ehc-2 {
	  height: auto !important;
	  max-height: 888678px;	
  }	
}
@media only print {
	body {
		color: #333;
	}
	#smart-logo, #navi, #foot, .totop {
		display: none !important;
	}
	div.not-mobile {
		display: block !important;
	}
	
	.bgd-startfoto {
		background-color: transparent;
		background-image: none;
		padding-bottom: 5pt;
	}
	.logo {
		position: absolute;
		display: block !important;
		text-align: center;
		margin: 0;
		padding: 0;
		max-width: none;
		width: 50%;
		right: -15pt;
		top: 0pt;
	}
	.bigLogo {
		opacity: 1;
		animation-duration: 0s;
		animation-delay: 0s;
		animation-fill-mode: both;
	}	
	.logo figure {
		margin: 0;
		padding: 0;
	}
	.logo img {
		opacity: 0.5;
		width: 60%;
		max-width: none;
		height: auto;
		padding: 0;
	}
	.logo figcaption p {
		display: inline-block;
		font-family: 'Catamaran', sans-serif;
		font-weight: 500;
		text-align: center;
		font-size: 15pt;
		line-height: 1.4;
		color: #369;
		padding: 0;
	}
	.logo figcaption p span {
		display: block;
		font-size: 18pt;
		border-bottom: 3pt solid #09f;
		margin-bottom: 5pt;
		padding-bottom: 2pt;
	}	
	
	.accordion .abox {
		display: block !important;
	}

	.accordion h3 {
		font-size: 1.25em;
		margin: 0;
		padding: 0;
		background-color: transparent;
	}
	.accordion h3::before {
		display: none;
	}
	.abox {
		margin: 0 0 1em 0;
		padding: 0 0 1em 0;
	}	
	
	.mitarbeiter, .mitarbeiter-1, .impressionen figure {
		float: left;
		width: 47.5%;
		margin-right: 5%;
		margin-bottom: 2em;
	}
	.mitarbeiter:nth-of-type(2n), .mitarbeiter-1:nth-of-type(2n), .impressionen figure:nth-of-type(2n) {
		margin-right: 0;
	}
	.mitarbeiter img, .mitarbeiter-1 img, .impressionen figure img {
		width: 100%;
		max-width: none;
		height: auto;
	}		
	.mitarbeiter, .impressionen figure {
		width: 31%;
		margin-right: 3.5%;
		margin-bottom: 2em;
	}
	.mitarbeiter:nth-of-type(2n), .impressionen figure:nth-of-type(2n) {
		margin-right: 3.5%;
	}	
	.mitarbeiter:nth-of-type(3n), .impressionen figure:nth-of-type(3n) {
		margin-right: 0;
	}	
	#team .mitarbeiter-1 figcaption h3 {
		padding-left: 0;
	}	
	
	.mitarbeiter figure, .teaser {
		page-break-inside: avoid;
	}
	
	.teaser p.button a {
		display: inline-block;
		width: auto;
	}
	
	.p7ehc-1, .p7ehc-2, .p7ehc-3 {
		height: auto !important;
		max-height: 888678px;	
	}
