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

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100vh;
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  line-height: 180%;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
}

.custom {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.block {
  overflow: visible;
}

h1 {
  color: #313131;
}

h2 {
  font-size: 1.1rem;
}

p {
  color: #313131;
}

button {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  border: none;
}

a {
  text-decoration: none;
  word-wrap: break-word;
}

a, a:active, a:focus {
  outline: none !important;
}

button, button:active, button:focus {
  outline: none !important;
}

li {
  list-style-type: none;
}

/* COOKIE HINT */
#cookie-hint{
	width: 100%;
	padding: 0 2rem;
	position: fixed;
	bottom: 2rem;
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease-in-out;
}

#cookie-wrapper{
	max-width: 960px;
	margin: 0 auto;
	background: white;
	font-size: .9rem;
	display: flex;
  flex-direction: column;
	align-items: stretch;
	box-shadow: 0 2px 15px rgba(0,0,0,.25);
	border-radius: 15px;
	border: 1px solid #31B234;
	overflow: hidden;
}



#cookie-wrapper p {
  padding: 0.25rem 0.5rem;
}

#cookie-wrapper a{
	text-decoration: underline;
	text-decoration-style:dotted;
}

.cookie-wrapper__buttons {
  display: flex; justify-content: space-around;
  align-items: center;
}

#cookie-accept{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem;
	border: none;
	background: #31B234;
	cursor: pointer;
	color: white;
	font-size: .9rem;
	transition: opacity .2s ease-in-out;
	
}

@media only screen and (min-width: 768px) {
  #cookie-wrapper{
    flex-direction: row;
    align-items: stretch;
  }
  #cookie-accept {
    width: 150px;
    padding: 0;
  }
}

#cookie-accept:hover{
	opacity: .8;
}

.cookie-hint-show{
	opacity: 1 !important;
	pointer-events: all !important;
}

.cookie-hint-hide{
	opacity: 0 !important;
	pointer-events: none !important;
}



header {
  height: 6rem;
  width: 100%;
  border-bottom: 2px solid #31B234;
  position: relative;
  z-index: 100;
  background: white;
}

header .inside {
  max-width: 1200px;
  margin: 0 auto;
  padding: .5rem 1rem 1rem 1rem;
  position: relative;
}

#logo-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: -5px;
}

#logo-subline {
  font-size: 19px;
  font-weight: 400;
  display: block;
}

#logo-topics {
  font-size: 12px;
  font-weight: 800;
  color: #17911A;
}

#mobile-menu-wrapper {
  width: 100%;
  height: 20rem;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  pointer-events: none;
}

#mobile-menu-wrapper .inside {
  height: 100%;
}

#mobile-menu-wrapper .mod_navigation {
  display: block;
  background: white;
  height: 100%;
  -webkit-box-shadow: 0 -6px 20px rgba(26, 26, 26, 0.2);
          box-shadow: 0 -6px 20px rgba(26, 26, 26, 0.2);
  -webkit-transform: translateY(20rem);
          transform: translateY(20rem);
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  pointer-events: all !important;
}

#mobile-menu-wrapper .mod_navigation ul {
  padding-top: 1.5rem;
}

#mobile-menu-wrapper .mod_navigation ul li {
  display: block;
  position: relative;
  font-size: 1.1rem;
}

#mobile-menu-wrapper .mod_navigation ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #31B234;
  border-radius: 20px;
  position: absolute;
  top: 1.1rem;
  left: 1rem;
}

#mobile-menu-wrapper .mod_navigation ul a {
  width: 100%;
  display: block;
  padding: 0.4rem 1rem 0.4rem 2rem !important;
  color: #313131;
}

#mobile-menu-wrapper .mod_navigation ul .active {
  width: 100%;
  display: block;
  padding: .1rem 1rem !important;
  font-weight: 400;
  color: #17911A;
}

#mobile-menu-wrapper .mod_navigation ul .active::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #31B234;
  border-radius: 20px;
  position: absolute;
  top: .8rem;
  left: 1rem;
}

.mb-nav-add {
  -webkit-transform: translateY(0rem) !important;
          transform: translateY(0rem) !important;
}

#mobile-menu-btn {
  pointer-events: all !important;
  width: 50px;
  height: 50px;
  border-radius: 15px 4px 4px 4px;
  background: #009e15;
  background: radial-gradient(cicle, #17911A 65%, #31B234 100%);
  position: absolute;
  right: .5rem;
  bottom: .5rem;
  border: 2px solid rgba(49, 178, 51, 0.15);
  -webkit-box-shadow: 4px 3px 6px rgba(26, 26, 26, 0.3);
          box-shadow: 4px 3px 6px rgba(26, 26, 26, 0.3);
  -webkit-transform: translateX(0.8rem);
          transform: translateX(0.8rem);
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transition: opacity .2s ease-in-out .4s, -webkit-transform .3s ease-in-out .3s;
  transition: opacity .2s ease-in-out .4s, -webkit-transform .3s ease-in-out .3s;
  transition: transform .3s ease-in-out .3s, opacity .2s ease-in-out .4s;
  transition: transform .3s ease-in-out .3s, opacity .2s ease-in-out .4s, -webkit-transform .3s ease-in-out .3s;
}

#mobile-menu-btn span {
  display: block;
  width: 65%;
  height: 2px;
  margin: 6px auto;
  background: white;
  border-radius: 10px;
}

#mobile-menu-btn::before {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background: #31B234;
  position: absolute;
  top: 20px;
  left: 1.5rem;
  opacity: 0;
}

#mobile-menu-btn::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #31B234;
  border-top: none;
  border-left: none;
  position: absolute;
  top: 28px;
  left: 1.2rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.mb-nav-btn-add-cross {
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
}

.mb-nav-btn-add-cross span {
  background: #17911A !important;
  opacity: 0;
}

.mb-nav-btn-add-cross::before {
  opacity: 1 !important;
}

.mb-nav-btn-add-cross::after {
  opacity: 1 !important;
}

.mobile-menu-btn-add {
  -webkit-transform: translateX(0vw) !important;
          transform: translateX(0vw) !important;
  opacity: 1 !important;
}

.mod_navigation {
  display: none;
}

.mod_navigation ul li {
  display: inline-block;
}

.mod_navigation ul li a, .mod_navigation ul li .active {
  padding: .5rem 1rem;
}

#container{
	background: white;
}

#kontakt-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 90;
  -webkit-box-shadow: 0 0px 0px rgba(26, 26, 26, 0.2);
          box-shadow: 0 0px 0px rgba(26, 26, 26, 0.2);
  -webkit-transform: translateY(-11.5rem);
          transform: translateY(-11.5rem);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#kontakt-box {
  width: 17rem;
  height: 11.5rem;
  background: white;
  border-bottom: 2px solid #31B234;
}

#kontakt-box .ce_list,
#kontakt-box .ce_text{
  padding: .5rem 0 .5rem 0;
}

#kontakt-box .ce_list ul,
#kontakt-box .ce_text ul{
  padding-left: 4rem;
  background-position: 5% center;
  background-size: 10%;
}

#kontakt-box .ce_list:nth-child(odd),
#kontakt-box .ce_text:nth-child(odd){
  background: rgba(49, 178, 51, 0.15);
}

#kontakt-box button {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  padding: 0.6rem 1.3rem 0.7rem 1.5rem;
  border-radius: 0 0 0 10px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, #31B234), color-stop(94%, #17911A));
  background: linear-gradient(180deg, #31B234 80%, #17911A 94%);
  color: #fafafa;
  -webkit-box-shadow: 0 3px 6px rgba(26, 26, 26, 0.2);
          box-shadow: 0 3px 6px rgba(26, 26, 26, 0.2);
}

#kontakt-box a{
	color: black;
}

#kontakt-phone ul {
  background: url("backgrounds/phone-icon.png") no-repeat;
  background-size: 11% !important;
}

#kontakt-mail ul {
  background: url("backgrounds/mail-icon.png") no-repeat;
}

#kontakt-place ul {
  background: url("backgrounds/place-icon.png") no-repeat;
  background-size: 9% !important;
}

.kontakt-wrapper-add {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  -webkit-box-shadow: -3px 3px 12px rgba(26, 26, 26, 0.2) !important;
          box-shadow: -3px 3px 12px rgba(26, 26, 26, 0.2) !important;
}

.kontakt-add-sticky {
  position: fixed !important;
}

.topic-headline {
  width: 100%;
  background: rgba(49, 178, 51, 0.15);
  border-top: 2px solid #31B234;
  padding: .7rem 1rem;
  color: #17911A;
  font-weight: 600;
  transform: translateY(-8px);
}

#header-img {
  max-width: 100%;
  overflow: hidden;
}

#header-img img {
  width: 160%;
  max-width: none;
  -webkit-transform: translateX(-4.5rem);
          transform: translateX(-4.5rem);
}

#sprechzeiten-box {
  padding-bottom: 10%;
}

	
#sprechzeiten-hd{
	transform: translateY(-8px);
}

#sprechzeiten-box ul {
  padding: 1rem 1rem 0 1rem;
}

#sprechzeiten-box ul li {
  padding: 0;
  font-size: 1rem;
}

#phone-btn-mobile {
  margin: 1.5rem 1rem 0 1rem;
  width: 90%;
  height: 2.8rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#31B234), to(#17911A));
  background: linear-gradient(#31B234, #17911A);
  -webkit-box-shadow: 0 2px 6px rgba(26, 26, 26, 0.2);
          box-shadow: 0 2px 6px rgba(26, 26, 26, 0.2);
  border-radius: 4px;
}

#phone-btn-mobile a {
  width: 100%;
  height: 100%;
  padding-left: 1.5rem;
  display: block;
  line-height: 2.6rem;
  background: url("backgrounds/phone-icon-light.png") no-repeat;
  background-position: 10% center;
  color: #fafafa;
}

#scroll-down-wrapper {
  display: block;
  height: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

#scoll-down-link {
  margin: 0 0 0 1rem;
  padding: 1rem 0 1rem 1.5rem;
  color: #17911A;
  font-weight: 600;
  background: url("backgrounds/arrow-long-down.png") no-repeat;
  background-position: left 12px;
}

.scroll-down-add {
  opacity: 1 !important;
  pointer-events: all !important;
}

#intro-text {
  margin-bottom: 4rem;
  padding: 0 1rem;
}

#intro-text h2 {
  margin-bottom: 1rem;
  padding-top: 1rem;
}

#intro-text p{
	margin-bottom: 1rem;
}

#untersuchung-goto-btn {
  margin-top: 2.5rem;
  width: 100%;
  height: 2.8rem;
  background: rgba(49, 178, 51, 0.15);
  border-radius: 4px;
  transition: all .3s ease-in-out;
}

#untersuchung-goto-btn a {
  width: 100%;
  height: 100%;
  padding-right: 1.5rem;
  display: block;
  line-height: 2.6rem;
  background-position: 8% center;
  color: #17911A;
  position: relative;
}

#untersuchung-goto-btn:hover {
	background: rgba(49, 178, 51, 0.3);
}

#untersuchung-goto-btn a::before {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  position: absolute;
  top: 1.1rem;
  right: 1.7rem;
  background: #17911A;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#untersuchung-goto-btn a::after {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  position: absolute;
  top: 1.1rem;
  right: 2.2rem;
  background: #17911A;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#fachthemen-box h2 {
  padding: 0 1rem;
  margin-bottom: 2rem;
  color: #17911A;
  line-height: 180%;
}

#fachthemen-box p {
  padding: 0 1rem;
}

#fachthemen-img {
  max-width: 100%;
  height: 160px;
  margin-bottom: 2rem;
  overflow: hidden;
}

#fachthemen-img img {
  width: 145%;
  max-width: none;
  -webkit-transform: translateX(-3.5rem);
          transform: translateX(-3.5rem);
}

#fw-links {
  margin: 3rem 0 5rem 0;
  padding: 0 1rem;
}

#fw-links button {
  width: 45%;
  height: 9rem;
  -webkit-box-shadow: 2px 3px 6px rgba(26, 26, 26, 0.2);
          box-shadow: 2px 3px 6px rgba(26, 26, 26, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

#fw-links button:first-child {
  margin-right: 1rem;
}

#fw-links button:active {
  -webkit-box-shadow: 1px 1px 4px rgba(26, 26, 26, 0.2);
          box-shadow: 1px 1px 4px rgba(26, 26, 26, 0.2);
}

#fw-links a {
  height: 100%;
  width: 100%;
  display: block;
  background: #fafafa;
  color: #313131;
  font-weight: 500;
}

#fw-links a span {
  display: block;
  width: 100%;
  height: 80%;
  margin-bottom: .2rem;
  background-size: 100%;
}

#mg-bg {
  background: url("backgrounds/mg-link-img.jpg") no-repeat;
}

#hm-bg {
  background: url("backgrounds/hm-link-img.jpg") no-repeat;
}

#untersuchungen-box {
  margin-bottom: 3rem;
}

#untersuchungen-box h2 {
  margin-bottom: 1rem;
}

#untersuchungen-box h3 {
  padding: 0 1rem;
  margin-bottom: .5rem;
}

#untersuchungen-box p {
  padding: 0 1rem;
}

#untersuchung-list {
  margin: 2rem 0 2rem 0;
  padding: 0 1rem;
}

#untersuchung-list h3 {
  padding: 0;
}

#untersuchung-list li {
  margin-bottom: .5rem;
  padding-left: 1.7rem;
  background: url("backgrounds/check-icon.png") no-repeat;
  background-position: left center;
  font-weight: 500;
}

#team-slider {
  display: flex;
  align-items: flex-start;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  margin: 2rem 1rem 3rem 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.team-slide {
  max-width: 120px;
  min-width: 100px;
  position: relative;
  padding-bottom: 3rem;
  margin-right: 1rem;
}

.team-slide img {
  margin-bottom: 5px;
}

.team-slide h4 {
  max-width: 120px;
  min-height: 34px;
  margin-bottom: .3rem;
  white-space: normal;
  font-size: .9rem;
  line-height: 120%;
  font-weight: bold;
}

.team-slide p {
  font-size: .8rem;
  line-height: 120%;
  

}

#vita-link {
  padding: 0 1rem;
  margin: 4rem 0 6rem 0;
}

#vita-link-btn {
  width: 100%;
  height: 3rem;
  background: rgba(49, 178, 51, 0.15);
  position: relative;
  border-radius: 4px;
  transition: all .3s ease-in-out;
}

#vita-link-btn a {
  width: 100%;
  height: 100%;
  padding-right: 1.5rem;
  display: block;
  color: #17911A;
  font-weight: 500;
  line-height: 3rem;
  background: url("backgrounds/arrow-right.png") no-repeat;
  background-position: 90% center;
}

#vita-link-btn:hover{
  background: rgba(49, 178, 51, 0.3);
}

#vita-link-btn::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 20px;
  background: #17911A;
  position: absolute;
  left: 1rem;
  top: -.3rem;
}

#vita-link-btn::after {
  content: "";
  display: block;
  width: 2px;
  height: 4.5rem;
  background: #17911A;
  position: absolute;
  left: 1.4rem;
  top: -4.5rem;
}

.vita-side .topic-headline {
  margin-bottom: 3rem;
}

.vita-wrapper:last-child {
  margin-bottom: 6rem;
}

.vita-box {
  margin-bottom: 1rem;
  padding: 0 1rem;
  display: none;
}

.vita-box li {
  margin-top: 1rem;
  padding-left: 1rem;
}

.vita-box ul {
  margin-bottom: 2rem;
}

.vita-list-togg {
  margin: 1rem 1rem 0rem 1rem;
  color: #313131;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}

.vita-list-togg::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  border-radius: 5px;
  background: #17911A;
  position: absolute;
  top: .9rem;
  right: .4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.vita-list-togg::after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  border-radius: 5px;
  background: #17911A;
  position: absolute;
  top: .9rem;
  right: calc(.4rem - 6px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.vitaListToggle-add::before {
  -webkit-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
}

.vitaListToggle-add::after {
  -webkit-transform: rotate(45deg) !important;
          transform: rotate(45deg) !important;
}

.vitaList-add {
  display: block !important;
}

.timline-box {
  margin-top: 2rem;
}

.timline-box li {
  position: relative;
}

.timline-box li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #31B234;
  background: white;
  border-radius: 20px;
  position: absolute;
  top: .5rem;
  left: 0;
  z-index: 10;
}

.timline-box li::after {
  content: "";
  display: block;
  width: 2px;
  height: 130%;
  background: #31B234;
  position: absolute;
  top: .5rem;
  left: 4px;
  z-index: 9;
}

.timline-box li:last-child::after {
  height: 90%;
}

.timline-light li::before {
  border: 2px solid #d4d4d4 !important;
}

.timline-light li::after {
  background: #d4d4d4 !important;
}

.ft-intro-text {
  margin: 2rem 0 2rem 0;
  padding: 0 1rem;
}

.ft-text {
  margin-bottom: 5rem;
  padding: 0 1rem;
}

.ft-text strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: -.8rem;
}

.ft-text p {
  margin-bottom: 1rem;
}

#totop-btn {
  position: absolute;
  top: -2rem;
  left: 45%;
  background: none;
}

#totop-btn a {
  width: 30px;
  height: 30px;
  display: block;
  background: url("backgrounds/totop-icon.png") no-repeat;
  background-size: 90%;
}

#footer {
  width: 100%;
  padding: 1rem 0;
  background: #fafafa;
}

#footer .inside {
  padding: 0 1rem;
}

#footer .inside a, #footer .inside li {
  color: #313131;
  font-size: .8rem;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}

#kontakt-footer{
	cursor: pointer;
}

.content-wrapper{
	max-width: 600px;
	padding: 0 1rem;
	margin: 4rem auto 7rem auto;
}

.content-wrapper h1{
	margin-bottom: 2rem;
}

.content-wrapper p {
	margin-bottom: 1rem;
}

.source-text{
	font-size: .8rem;
	opacity: .8;
}

.source-text a{
	color: grey;
}