@font-face {
  font-family: 'roboto';
  src: url('../fonts/roboto/regular.woff2') format('woff2'),
       url('../fonts/roboto/regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto';
  src: url('../fonts/roboto/bold.woff2') format('woff2'),
       url('../fonts/roboto/bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

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

/** /
* {
  outline: 1px dotted rgba( 0, 0, 0, .2 );
}
/**/

html {
  font-size: 62.5%;
  line-height: 1.333em;
  height: 100%;
}

body {
/*  background-color: #d1d3d4;*/
  background-image: linear-gradient( #fee8b7, #fff );
  background-attachment: fixed;
  color: #333;
  font-family: 'roboto', Arial, sans-serif;
  font-size: 1.6rem;
  height: 100%;
  line-height: 2.1rem;
}

#mobile-nav-toggle,
#mobile-nav-toggle-label {
  display: none;
}

@media( max-width: 1023px ) {
  #mobile-nav-toggle-label {
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 2.1rem;
    height: 3.1rem;
    line-height: 3.1rem;
    position: fixed;
    left: 0;
    text-align: left;
    top: 0;
    width: 100%;
    z-index: 101;
  }
  
  body.home #mobile-nav-toggle-label {
    color: #333;
  }
  
  #mobile-nav-toggle-label i:nth-of-type(2) {
    display: none;
  }
  #mobile-nav-toggle:checked ~ #mobile-nav-toggle-label {
    width: auto;
  }
  #mobile-nav-toggle:checked ~ #mobile-nav-toggle-label i:nth-of-type(1) {
    display: none;
  }
  #mobile-nav-toggle:checked ~ #mobile-nav-toggle-label i:nth-of-type(2) {
    color: #333;
    display: inline-block;
  }
  #service {
    display: none;
  }
}

#page-wrapper {
  background-color: #fff;
  box-shadow: 0 0 5px rgba( 0, 0, 0, .25 );
  margin-top: 12.8rem;
  margin-top: 10rem;
}

.page-wrapper {
  margin: 0 auto;
  max-width: 102.4rem;
}

#header {
  background: #fff;
  display: flex;
  height: 12.8rem;
  height: 10rem;
  position: fixed;
  top: 0;
  max-width: 102.4rem;
  width: 100%;
  z-index: 100;
}

#meta {
  list-style: none inside;
}

#logo {
  padding: 1rem 4rem;
  padding: 1rem 6rem;
}

@media( max-width: 539px ) {
  #logo {
    padding: 1rem;
  }
}

#logo img:last-of-type {
  display: none;
}

#logo img {
  width: 12rem;
}

#navigation {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}

#header h1 {
  color: #515253;
  font-size: 2.1rem;
  font-style: italic;
  font-weight: normal;
  line-height: 2.1rem;
  padding-top: 4rem;
  padding-top: 2.4rem;
}


a.kunden-login {
  display: inline-block;
  position: absolute;
  right: 2rem;
  top: 5rem;
}

a.kunden-login img {
  height: 3.2rem;
}

@media (max-width: 585px) {
  a.kunden-login {
    background-color: #fff;
    /* display: none; */
    line-height: 0;
    padding: 0 .8rem;
    right: .2rem;
    top: -2.9rem;
    z-index: 10000;
  }
  a.kunden-login img {
    height: 2.6rem;
  }
}

/* BEGIN META-NAV */

#meta-navigation {
  bottom: 0;
  padding: 1rem;
  position: absolute;
  right: 0;
  width: 100%;
}

nav#meta-nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

nav#meta-nav a {
  color: #333;
  text-decoration: none;
}

li.uninst {
	display: none;
}

nav#meta-nav li.active a,
body.no-touch nav#meta-nav a:hover {
  text-decoration: underline;
}

nav#meta-nav ul {
  display: flex;
  justify-content: flex-end;
}

nav#meta-nav ul li a {
  display: block;
  padding: 0 1rem;
}

@media( max-width: 499px ) {
  nav#meta-nav li:nth-of-type(1),
  nav#meta-nav li:nth-of-type(2),
  nav#meta-nav li:nth-of-type(3),
  nav#meta-nav li:nth-of-type(4),
  nav#meta-nav li:nth-of-type(5),
  nav#meta-nav li:nth-of-type(6) {
    display: none;
  }
}

/* END META-NAV */

/* BEGIN MAIN-NAV */

nav#main-nav {
  background-color: rgb( 255, 197, 2 );
/*  margin-right: 1rem;*/
}

@media( min-width: 1024px ) {
  nav#main-nav ul li.service {
    display: none;
  }
}

nav#main-nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none inside;
  width: 100%;
}

nav#main-nav > ul > li {
  flex-grow: 1;
}

nav#main-nav > ul > li > a {
  color: #333;
  display: block;
  padding: .5rem 1rem;
  position: relative;
}

nav#main-nav > ul > li.active a,
nav#main-nav > ul > li.active-child a,
body.no-touch nav#main-nav > ul > li a:hover {
  color: #fff;
}

nav ul > li > input {
  display: none;
}

nav ul > li > ul > li > label {
  display: none;
}

@media ( min-width: 1024px ) {
  nav ul > li > label {
    display: none;
  }
  
  nav#main-nav > ul > li.praxis-software.active-child a,
  body.no-touch nav#main-nav > ul > li.praxis-software a:hover {
    background-color: rgb( 66, 77, 125 );
  }

  nav#main-nav > ul > li.abrechnungsstelle.active-child a,
  body.no-touch nav#main-nav > ul > li.abrechnungsstelle a:hover {
    background-color: rgb( 227, 92, 0 );
  }

  nav#main-nav > ul > li.telefondienst.active-child a,
  body.no-touch nav#main-nav > ul > li.telefondienst a:hover {
    background-color: rgb( 80, 131, 32 );
  }

  nav#main-nav > ul > li.seminare.active-child a,
  body.no-touch nav#main-nav > ul > li.seminare a:hover {
    background-color: rgb( 55, 130, 177 );
  }

  nav#main-nav > ul > li.online-verzeichnis.active-child a,
  body.no-touch nav#main-nav > ul > li.online-verzeichnis a:hover {
    background-color: rgb( 167, 185, 0 );
  }

  nav#main-nav > ul > li.ueber-uns.active-child a,
  body.no-touch nav#main-nav > ul > li.ueber-uns a:hover {
    background-color: rgb( 73, 74, 74 );
  }

  nav#main-nav ul li:first-of-type {
    display: none;
  }
  
  nav#main-nav li li {
    display: none;
    margin-left: 1rem;
  }
}



nav#main-nav a {
  text-decoration: none;
}

@media ( max-width: 1023px ) {
  
  #page-wrapper {
    margin-top: 3.1rem;
  }
  
  #header {
    position: static;
  }
  
  #start {
/*    display: block !important;*/
    flex-wrap: wrap;
  }

  #sub-nav {
    order: 2;
    padding: 2rem !important;
    width: 100% !important;
  }

  #sub-nav .pane {
    display: flex;
    position: static !important;
  }

  #sub-nav > .pane > ul {
    display: none;
  }

  #kontakt-box {
    border-radius: .4rem !important;
    flex-shrink: 0;
    margin: 0 2rem 0 0 !important;
    width: calc( 33.33% - 1.5rem ) !important;
  }

  #news-box {
    border-radius: .4rem !important;
    margin: 0 !important;
  }
  
  
  #body-wrapper {
    max-width: 100% !important;
  }
  
  nav#main-nav {
    background-image: linear-gradient( 90deg, rgb( 255, 224, 140 ), rgb( 255, 244, 187 ) );
    height: 3.1rem;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: height .2s ease;
    width: 100%;
    z-index: 100;
  }
  
  nav#main-nav ul {
    display: block;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper #main-nav {
    height: 100%;
    overflow-y: scroll;
    width: 100%;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li > label {
    cursor: pointer;
    position: relative;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li > label:after {
    color: rgba( 255, 255, 255, .5 );
    content: '\f138';
    font-family: fontawesome;
    position: absolute;
    right: 1rem;
    transform: rotate(-90deg);
    transition: transform .2s ease;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li:not(:first-of-type) > a {
    display: none;
  }
  
  #mobile-nav-toggle:not(:checked) ~ #page-wrapper nav#main-nav > ul > li.praxis-software a,
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li.praxis-software > label {
    color: #fff;
    background-color: rgb( 66, 77, 125 );
  }

  #mobile-nav-toggle:not(:checked) ~ #page-wrapper nav#main-nav > ul > li.abrechnungsstelle a,
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li.abrechnungsstelle > label {
    color: #fff;
    background-color: rgb( 227, 92, 0 );
  }

  #mobile-nav-toggle:not(:checked) ~ #page-wrapper nav#main-nav > ul > li.telefondienst a,
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li.telefondienst > label {
    color: #fff;
    background-color: rgb( 80, 131, 32 );
  }

  #mobile-nav-toggle:not(:checked) ~ #page-wrapper nav#main-nav > ul > li.seminare a,
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li.seminare > label {
    color: #fff;
    background-color: rgb( 55, 130, 177 );
  }

  #mobile-nav-toggle:not(:checked) ~ #page-wrapper nav#main-nav > ul > li.online-verzeichnis a,
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li.online-verzeichnis > label {
    color: #fff;
    background-color: rgb( 167, 185, 0 );
  }

  #mobile-nav-toggle:not(:checked) ~ #page-wrapper nav#main-nav > ul > li.ueber-uns a,
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li.ueber-uns > label {
    color: #fff;
    background-color: rgb( 73, 74, 74 );
  }
  
  #mobile-nav-toggle:not(:checked) ~ #page-wrapper nav#main-nav > ul > li.service a,
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li.service > label {
    color: #fff;
    background-color: rgb( 255, 197, 2 );
  }
  
  #page-wrapper #main-nav li label,
  #page-wrapper #main-nav li a {
    color: #333;
    display: none;
    height: 3.1rem;
    line-height: 3.1rem;
    padding-left: 3rem;
  }
  
  #page-wrapper #main-nav li a.active {
    display: block;
    position: relative;
  }
  
  nav#main-nav > ul > li > a {
    padding-bottom: 0;
    padding-top: 0;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper #main-nav li > ul {
    display: none;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper #main-nav li > input:checked ~ ul {
    display: block;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav > ul > li > input:checked ~ label:after {
    transform: rotate(90deg);
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper #main-nav li li a {
    padding-left: 4rem;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper nav#main-nav li a {
    display: block;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper #main-nav li > label {
    display: block;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper #main-nav li > ul > li > label {
    display: none;
  }
  
  #mobile-nav-toggle:checked ~ #page-wrapper #main-nav li:not(.home) a.active:before {
    content: '\f0da';
    display: block;
    font-family: fontawesome;
    height: 100%;
    left: 3rem;
    position: absolute;
    width: 1rem;
  }
}
@media ( max-width: 767px ) {
  #kontakt-box {
    width: calc( 50% - 1rem ) !important;
  }
}

@media ( max-width: 499px ) {
  #kontakt-box {
    margin-bottom: 2rem !important;
    margin-right: 0;
    width: 100% !important;
  }
  #sub-nav .pane {
    flex-direction: column;
  }
}

/* END MAIN-NAV */

#hero {
  height: 15rem;
  position: relative;
}

body.home #hero {
  height: 35rem;
}

@media ( max-width: 1023px ) {
  #hero {
    height: 14.648vw;
    position: relative;
  }

  body.home #hero {
    height: 34.18vw;
  }
  
}

#hero img {
  max-width: 100%;
}

#subhero {
  position: relative;
}

#subhero h1 {
  color: rgb( 141, 139, 140 );
  font-size: 5.5rem;
  font-weight: normal;
  line-height: 15rem;
  margin-left: 45%;
/*  outline: 1px dotted green;*/
  position: absolute;
  text-align: center;
  top: 0;
/*  width: 55%;*/
}

body.seminare #subhero h1 {
  margin-left: 57%;
}

body.service #subhero h1{
  margin-left: 57%;
}

body.ueber-uns #subhero h1 {
  margin-left: 66%;
}

body.kontakt #subhero h1 {
  margin-left: 45%;
}

@media ( max-width: 1023px ) {
  #subhero h1 {
    line-height: 14.648vw;
    font-size: 5.3vw;
  }
}

#sldr {
  height: 35rem;
/*  overflow: hidden;*/
  position: relative;
}

@media ( max-width: 1023px ) {
  #sldr {
    height: 34.18vw;
  }
}


#sldr > .slide {
  bottom: 0;
  display: none;
  left: 0;
/*  overflow: hidden;*/
  position: absolute;
  right: 0;
  top: 0;
}

#sldr > *:first-child {
  display: block;
}

#sldr > *.next {
  z-index: 5;
}

#sldr > *.selected {
  z-index: 10;
}

#sldr > * img {
  height: auto;
  width: 100%;
}

.sldr-nav {
  color: rgba( 255, 255, 255, .5 );
  cursor: pointer;
  display: block;
  font-size: 4.8rem;
/*  outline: 1px dotted green;*/
  position: absolute;
  text-align: center;
  top: 15rem;
  width: 6rem;
  z-index: 10;
}

@media( max-width: 1023px ) {
  .sldr-nav {
    top: 14.65vw;
  }
}

body.no-touch .sldr-nav:hover {
  color: rgba( 0, 0, 0, .5 );
}

#sldr-prv {
  left: 0;
}

#sldr-nxt {
  right: 0;
}

.stage {
  background-color: rgb( 255, 197, 2 );
  border: .1rem solid #fff;
  border-right: 0;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  bottom: 1.5rem;
  box-shadow: 0 0 1rem rgba( 0, 0, 0, .25 );
  display: block;
  height: 13rem;
  padding: 2rem;
  position: absolute;
  right: 0;
  width: 44rem;
}

.stage h1 {
  color: #fff;
  font-size: 2.8rem;
  line-height: 3.5rem;
}

.stage h2 {
  color: #333;
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 2.8rem;
}

@media ( max-width: 1023px ) {
  .stage {
    padding: 1.953125vw;
    height: 12.6953125vw;
    width: 42.96875vw;
  }
  
  .stage h1 {
    font-size: 2.734375vw;
    line-height: 3.41796875vw;
  }
  
  .stage h2 {
    font-size: 2.05078125vw;
    line-height: 2.734375vw;
  }
}

@media ( max-width: 499px ) {
  .stage {
    height: 80px;
  }
  
  .stage h1 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  
  .stage h2 {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
}

#start {
  display: flex;
}

#sub-nav {
  padding: 2rem 0;
  position: relative;
  width: 22rem;
}

#sub-nav a {
  color: #333;
  text-decoration: none;
}

body.no-touch #sub-nav ul a:hover,
#sub-nav li.active-child > a,
#sub-nav li.active a {
  color: #fff;
  background-color: rgb( 66, 77, 125 );
}

body.no-touch #sub-nav li.abrechnungsstelle a:hover,
#sub-nav li.abrechnungsstelle li.active a {
  background-color: rgb( 227, 92, 0 );
}

body.no-touch #sub-nav li.telefondienst a:hover,
#sub-nav li.telefondienst li.active a {
  background-color: rgb( 80, 131, 32 );
}

body.no-touch #sub-nav li.seminare a:hover,
#sub-nav li.seminare li.active a {
  background-color: rgb( 55, 130, 177 );
}

body.no-touch #sub-nav li.online-verzeichnis a:hover,
#sub-nav li.online-verzeichnis li.active a {
  background-color: rgb( 167, 185, 0 );
}

body.no-touch #sub-nav li.ueber-uns a:hover,
#sub-nav li.ueber-uns li.active-child a,
#sub-nav li.ueber-uns li.active a {
  background-color: rgb( 73, 74, 74 );
}

body.no-touch #sub-nav li.service a:hover,
#sub-nav li.service li.active-child a,
#sub-nav li.service li.active a {
  background-color: rgb( 255, 197, 2 );
}

#sub-nav ul {
  list-style: none inside;
}

#sub-nav .pane ul {
  background-image: linear-gradient( 90deg, rgb( 255, 224, 140 ), rgb( 255, 244, 187 ) );
}

#sub-nav .pane {
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  top: 2rem;
  top: 12.8rem;
  top: 10rem;
}

#sub-nav > .pane > ul > li > a,
#sub-nav > .pane > ul > li > ul {
  display: none;
}

#sub-nav > .pane > ul > li.active-child > ul {
  display: block;
}

#sub-nav > .pane > ul > li.active-child > ul > li > a {
  display: block;
  margin: 0;
  padding: .5rem .5rem .5rem 2rem;
}

#sub-nav > .pane > ul > li.abrechnungsstelle > ul > li > a {
  border-color: rgb( 93, 129, 216 );
}

#sub-nav > .pane > ul > li.telefondienst > ul > li > a {
  border-color: rgb( 201, 75, 164 );
}

#sub-nav > .pane > ul > li.seminare > ul > li > a {
  border-color: rgb( 209, 116, 109 );
}

#sub-nav > .pane > ul > li.online-verzeichnis > ul > li > a {
  border-color: rgb( 124, 210, 86 );
}

#sub-nav > .pane > ul > li.ueber-uns > ul > li > a {
  border-color: #8db2be;
}

#sub-nav ul ul ul {
  display: none;
}

/*
@media ( min-width: 1024px ) {
  nav#sub-nav ul > li > ul > li.agb,
  nav#sub-nav ul > li > ul > li.impressum,
  nav#sub-nav ul > li > ul > li.datenschutz,
  nav#sub-nav ul > li > ul > li.sitemap,
  nav#sub-nav ul > li > ul > li.kontakt {
    display: none;
  }
}
*/

#kontakt-box {
  background-color: #f0f0f0;
  border-top-right-radius: 1.2rem;
  color: rgb( 83, 87, 88 );
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin: 1rem 0 0 0;
  padding: 1rem;
}

#kontakt-box h1 {
  color: rgb( 83, 87, 88 );
  font-size: 2.4rem;
}

#kontakt-box h2 {
  color: rgb( 83, 87, 88 );
  font-size: 2.0rem;
}

.pane > div h3 {
  color: rgb( 227, 92, 0 );
}

#kontakt-box a {
  color: rgb( 83, 87, 88 );
}

#kontakt-box a:hover {
  text-decoration: underline;
}

#news-box {
  background-color: #f0f0f0;
  border-bottom-right-radius: 1.2rem;
  color: rgb( 83, 87, 88 );
  font-size: 1.5rem;
  margin-top: .4rem;
  padding: 1rem;
}

#news-box > h3 > a {
  color: rgb( 227, 92, 0 );
}

#news-box > a {
  color: rgb( 83, 87, 88 );
  display: block;
  /* height: 13rem; */
  margin: 1.4rem 0;
  overflow: hidden;
  padding-bottom: 2.6rem;
  position: relative;
}

#news-box a:hover {
  text-decoration: underline;
}


.teaser-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -1rem;
  width: calc( 100% + 2rem );
}

#teaser-group-2 {
/*  justify-content: space-around;*/
}

.teaser-group > a {
  margin: 1rem;
  width: calc( 33.33% - 2rem );
}

@media( max-width: 767px ) {
  .teaser-group > a {
    width: calc( 50% - 2rem );
  }
}

@media( max-width: 499px ) {
  .teaser-group > a {
    width: 100% !important;
  }
}

#teaser-group-2 > a {
  width: calc( 50% - 2rem );
}

.teaser {
  border-radius: .4rem;
  color: #6b6f9e;
  display: block;
  margin-bottom: 2.5rem;
  text-decoration: none;
}

.teaser.big {
/*  width: 37rem;*/
}

.teaser-group .teaser > strong,
.teaser-group .teaser > a > strong {
  background-color: transparent;
  border-bottom: .4rem solid rgb( 73, 74, 74 );
  display: block;
  font-size: 2.1rem;
  margin-bottom: 0rem;
  padding: 1rem;
  position: relative;
  z-index: 10;
}

.teaser-group #teaser-praxis-software strong { border-bottom-color: rgb( 66, 77, 125 ); }
.teaser-group #teaser-abrechnungsstelle strong { border-bottom-color: rgb( 227, 92, 0 ); }
.teaser-group #teaser-telefondienst strong { border-bottom-color: rgb( 80, 131, 32 ); }
.teaser-group #teaser-seminare strong { border-bottom-color: rgb( 55, 130, 177 ); }
.teaser-group #teaser-online-verzeichnis strong { border-bottom-color: rgb( 167, 185, 0 ); }
.teaser-group #teaser-ueber-uns strong { border-bottom-color: rgb( 73, 74, 74 ); }

body.no-touch .teaser-group .teaser:hover > a > strong,
body.no-touch .teaser-group .teaser:hover > strong {
  color: #fff;
}

.teaser-group .teaser strong:before {
  background-color: rgb( 73, 74, 74 );
  border-top-left-radius: .4rem;
  border-top-right-radius: .4rem;
  bottom: 0;
  content: '';
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  transition: height .1s ease;
  width: 100%;
  z-index: -1;
}

.teaser-group #teaser-praxis-software strong:before { background-color: rgb( 66, 77, 125 ); }
.teaser-group #teaser-abrechnungsstelle strong:before { background-color: rgb( 227, 92, 0 ); }
.teaser-group #teaser-telefondienst strong:before { background-color: rgb( 80, 131, 32 ); }
.teaser-group #teaser-seminare strong:before { background-color: rgb( 55, 130, 177 ); }
.teaser-group #teaser-online-verzeichnis strong:before { background-color: rgb( 167, 185, 0 ); }
.teaser-group #teaser-ueber-uns strong:before { background-color: rgb( 73, 74, 74 ); }

body.no-touch .teaser-group .teaser:hover strong:before {
  height: 4.5rem;
}

.teaser-inner {
  background-color: #fee8b7;
  border-bottom-left-radius: .4rem;
  border-bottom-right-radius: .4rem;
  color: rgb( 83, 87, 88 );
  display: block;
  height: 10rem;
  position: relative;
/*  width: 24rem;*/
}

#teaser-group-2 .teaser-inner {
  background-color: #f0f0f0;
}

.teaser.big .teaser-inner {
/*  width: 100%;*/
}

.teaser-inner p {
  padding: 1rem;
}

#body-wrapper {
  min-height: 48rem;
  max-width: calc( 100% - 22rem );
  padding: 2.4rem 2rem 2rem 2rem;
  position: relative;
  width: 100%;
}

#body-wrapper .container {
  min-height: 40rem;
  padding-bottom: 8rem;
}

#body-wrapper .container img {
  max-width: 100%;
}


#body-wrapper h1 {
  color: #6b6f9e;
  font-size: 2.5rem;
  line-height: 2.9rem;
  margin-bottom: 2rem;
}

@media ( max-width: 374px ) {
  #body-wrapper h1 {
    -ms-word-break: break-all;
        word-break: break-all;

        /* Non standard for WebKit */
        word-break: break-word;

   -webkit-hyphens: auto;
      -moz-hyphens: auto;
           hyphens: auto;
  }
}

#body-wrapper h2 {
  color: #6b6f9e;
  font-size: 2.2rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}

#body-wrapper h3 {
  font-size: 1.7rem;
  line-height: 2.0rem;
  margin-bottom: 2rem;
}

body.praxis-software #body-wrapper h1,
body.praxis-software #body-wrapper h2,
body.praxis-software #body-wrapper h2 a {
  color: rgb( 66, 77, 125 );
}

body.abrechnungsstelle #body-wrapper h1,
body.abrechnungsstelle #body-wrapper h2,
body.abrechnungsstelle #body-wrapper h2 a {
  color: rgb( 227, 92, 0 );
}

body.telefondienst #body-wrapper h1,
body.telefondienst #body-wrapper h2,
body.telefondienst #body-wrapper h2 a {
  color: rgb( 80, 131, 32 );
}

body.seminare #body-wrapper h1,
body.seminare #body-wrapper h2,
body.seminare #body-wrapper h2 a {
  color: rgb( 55, 130, 177 );
}

body.online-verzeichnis #body-wrapper h1,
body.online-verzeichnis #body-wrapper h2,
body.online-verzeichnis #body-wrapper h2 a {
  color: rgb( 167, 185, 0 );
}

body.ueber-uns #body-wrapper h1,
body.ueber-uns #body-wrapper h2,
body.ueber-uns #body-wrapper h2 a {
  color: rgb( 73, 74, 74 );
}

body.service #body-wrapper h1,
body.service #body-wrapper h2 {
  color: rgb( 255, 197, 2 );
}


#body-wrapper p {
  margin-bottom: 2rem;
}

#body-wrapper .container ol {
  counter-reset: ol-counter;
  list-style: none inside;
  margin-bottom: 2rem;
}

#body-wrapper .container ul {
  list-style: none inside;
  margin-bottom: 2rem;
}

#body-wrapper .container ol li,
#body-wrapper .container ul li {
  margin-left: 1.5rem;
  position: relative;
}

#body-wrapper .container ul li:before {
  content: '•';
  font-size: 2.1rem;
  left: -1.5rem;
  position: absolute;
}

#body-wrapper .container ol li:before {
  content: counter(ol-counter) '.';
  counter-increment: ol-counter;
  font-weight: bold;
  left: -1.8rem;
  position: absolute;
}

#footer {
/*  background-color: rgb( 255, 197, 2 );*/
/*  background-color: #F7EBB5;*/
  background-color: #fee8b7;
  border-top: .2rem solid #edd7a6;
  padding: 2rem;
}

#footer a {
/*  color: #fff;*/
  color: #333;
  color: #6b6f9e;
  text-decoration: none;
}

#footer a.active,
body.no-touch #footer a:hover {
  text-decoration: underline;
}

#footer > ul > li:first-of-type {
  display: none;
}

#footer > ul > li {
/*  width: 16.67%;*/
}

#footer > ul > li > a {
/*  color: #333;*/
  color: #6b6f9e;
  font-weight: bold;
}

#footer ul {
  display: flex;
  justify-content: space-between;
  list-style: none inside;
  
}

#footer ul ul {
  display: flex;
  flex-direction: column;
}

body.sitemap #body-wrapper .container ul {
  list-style: none inside;
}

body.sitemap #body-wrapper .container ul > li li {
  margin-left: 1rem;
}

body.sitemap #body-wrapper .container > ul > li > a {
  font-weight: bold;
}

body.sitemap #body-wrapper .container ul li a {
  color: #333;
  text-decoration: none;
}

body.sitemap #body-wrapper .container ul > li > ul > li > ul,
body.sitemap #body-wrapper .container input,
body.sitemap #body-wrapper .container label {
  display: none;
}

.more {
  bottom: 1rem;
  color: rgba( 0, 0, 0, .5 );
  display: block;
  font-size: 1.2rem;
  line-height: 1.2rem;
  position: absolute;
  right: 1rem;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}

/*
#teaser-group-1 .more {
  color: rgb( 236, 181, 23 );
}

#teaser-group-2 .more {
  color: rgb( 82, 87, 88 );
}
*/

.more:before {
/*  content: '\f105';*/
  content: '\f054';
  font-family: fontawesome;
  font-size: 1rem;
  margin-right: .2rem;
  position: relative;
  top: 0rem;
}

.button {
  background-color: rgb( 255, 197, 2 );
  border-radius: .4rem;
  color: #333;
  padding: .4rem .8rem;
  text-decoration: none;
}

.button.link:before {
   content: '\f061';
   font-family: fontawesome;
   margin-right: .6rem;
}

.button.download:before {
   content: '\f019';
   font-family: fontawesome;
   margin-right: .6rem;
}

.button.video:before {
   content: '\f144';
   font-family: fontawesome;
   margin-right: .6rem;
}

[href*='.pdf'].button:before {
   content: '\f1c1';
   font-family: fontawesome;
   margin-right: .6rem;
}

#sldr-dots {
/*  outline: 1px dotted green;*/
  bottom: 1rem;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 50;
  width: 100%;
}

.dot {
  background-color: rgb( 255, 255, 255 );
  border-radius: 50%;
  box-shadow: 0 0 .5rem rgba( 0, 0, 0, .25 );
  cursor: pointer;
  display: inline-block;
  height: 1rem;
  margin: 0 .25rem;
  width: 1rem;
}

@media ( max-width: 1023px ) {
  #sldr-dots {
    bottom: .9765625vw;
  }
  
  .dot {
    height: .9765625vw;
    margin: 0 .244140625vw;
    width: .9765625vw;
  }
  
}



.dot.sliderpos {
  background-color: rgb( 255, 197, 2 );
}

.right,
.vignette {
  float: right;
  margin: 0 0 1rem 1rem;
}

.left,
.vignette {
  float: left;
  margin: 0 1rem 1rem;
}

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

.flxgrp {
  display: flex;
}

@media( max-width: 699px ) {
  .flxgrp {
    display: block;
  }
}

@media( max-width: 414px ) {
  .flxgrp {
    margin-left: -2rem;
    width: 100vw;
  }
  .flxgrp iframe,
  .flxgrp img {
    width: 100vw;
  }
}

.cols {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  width: 100%;
}

.cols > div {
  width: calc( 50% - 1rem );
}

hr {
  border-top: .1rem solid #eee;
  margin: 2rem 0 0 0;
  padding: 0 0 2rem 0;
}

.featherlight-previous span,
.featherlight-next span {
  text-shadow: 0 0 5px rgba( 0, 0, 0, .5 );
}


.faq-item > h3:first-of-type {
  cursor: pointer;
  padding-top: 1rem;
}

.faq-item > h3 {
  padding-left: 2rem;
  position: relative;
}

.faq-item > h3:before {
  content: '\f107';
/*  content: '\f055';*/
  display: inline-block;
  font-family: fontawesome;
  position: absolute;
  left: 0rem;
  top: 1rem;
  transform: rotate(-90deg);
  transition: transform .2s ease;
}

.faq-item.selected > h3 {
  color: rgb( 66, 77, 125 );
}

.faq-item.selected > h3:before {
  transform: rotate(0);
/*  transform: rotate(45deg);*/
}

.faq-answer {
  display: none;
}

.faq-item.selected .faq-answer {
  border-left: .3rem solid rgb( 66, 77, 125 );
  margin-left: .5rem;
  padding-left: 1.2rem;
  display: block;
}

table {
  border-collapse: collapse;
  margin-bottom: 2rem;
/*  width: 100%;*/
}

td {
/*  border: .1rem solid #eee;*/
  padding: 1rem 1rem 1rem 0;
/*  width: 33%;*/
}

/*
td:nth-of-type(2) {
  text-align: center;
}

td:nth-of-type(3) {
  text-align: right;
}

tr:nth-of-type(odd) {
  background-color: #eee;
}
*/

body.template--messen {
  table {
    font-size: 1.2rem;
    margin: 2rem 0;
    position: relative;
    width: 100%;
    thead {
      background-color: rgb( 255, 197, 2 );
      position: sticky;
      top: 10rem;
      th {
        color: #fff;
        padding: .5rem;
        text-align: left;
        vertical-align: top;
        &:not(:first-of-type) {
          border-left: .1rem solid #fff;
        }
      }
    }
    tbody {
      td {
        border: .1rem solid #eee;
        padding: .5rem;
        vertical-align: top;
      }
    }
  }
}

body.template--webinars {
  #webinar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    table {
      border: .1rem solid #eee;
      width: calc( 50% - .5rem );
      @media ( width < 800px ) {
        width: 100%;
      }
      thead {
        background-color: rgb( 255, 197, 2 );
        th {
          padding: .5rem;
          text-align: left;
        }
      }
      tbody {
        td {
          padding: .5rem;
          &:first-of-type {
            text-align: right;
            width: 8rem;
          }
        }
      }
    }
  }
}

.form-field {
  display: flex;
  margin-bottom: 1rem;
}


.form-field > :first-child {
  width: 16rem;
}

.form-data textarea,
.form-data select,
.form-data input[type=text],
.form-data input[type=email] {
  background-color: transparent;
  border: .1rem solid #eee;
  border-radius: .4rem;
  padding: .4rem .8rem;
  position: relative;
  width: 28rem;
  z-index: 2;
}

@media ( max-width: 599px ) {
  .form-field {
    flex-direction: column;
  }
  .form-data textarea,
  .form-data select,
  .form-data input {
    width: 100%;
  }
}



.form-data select {
  -webkit-appearance: none; 
   -moz-appearance: none;
   appearance: none;
}

.form-data[data-grav-field="select"] {
  position: relative;
}

.form-data[data-grav-field="select"]:after {
  content: '\f107';
  display: inline-block;
  font-family: fontawesome;
  position: absolute;
  right: .8rem;
  top: .2rem;
  z-index: 1;
}

.form-data textarea {
  height: 14rem;
}

.team {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.team-item {
  text-align: center;
  min-width: 250px;
  width: 50%;
}

.team-item-img {
  border: .3rem solid rgb( 255, 244, 187 );
  border-radius: 50%;
  height: 230px;
  margin: 1rem auto;
  overflow: hidden;
  width: 230px;
}

.team-item-img img {
  width: 100%;
}

.sponsors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sponsor {
  text-align: center;
  width: 33%;
}

@media( max-width: 767px ) {
  .sponsor {
    width: 50%;
  }
}

@media( max-width: 499px ) {
  .sponsor {
    width: 100%;
  }
}

.sponsor-name {}

.sponsor-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 12rem;
  margin: 1rem auto;
  overflow: hidden;
  width: 23rem;
}

.sponsor-img > img {
/*  object-fit: contain;*/
  object-fit: scale-down;
  max-height: 100%;
  width: auto;
}

.form-honeybear {
  display: none;
}

.anm {
  color: rgb( 66, 77, 125 );
}

video.video {
  max-width: 100%;
  width: 100%;
}

/* BEGIN BANNER */
#overlay {
	background-color: rgba( 0, 0, 0, .75 );
	bottom: 0;
	box-shadow: 0 0 5px rgba( 0, 0, 0, .5 );
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
}

/**/
@supports ( ( -webkit-backdrop-filter: blur(10px) ) or ( backdrop-filter: blur(10px) ) ) {
	#overlay {
		background-color: rgba( 0, 0, 0, .5 );
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
	}
}
/**/

#popup-close {
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba( 0, 0, 0, .5 );
	cursor: pointer;
	padding: .5rem;
	position: fixed;
	right: 1rem;
	top: 1rem;
}

#popup-content {
	background-color: #fff;
	border-radius: 1.2rem;
	margin: 33vh auto;
	max-width: 50rem;
	min-width: 30rem;
	padding: 2rem;
	width: calc( 100% - 2rem );
}

#overlay .btn {
	background-color: rgb( 66, 77, 125 );
	border-radius: .6rem;
	cursor: pointer;
	color: #fff;
	padding: .4rem .8rem;
	text-decoration: none;
}

#overlay .btn.close {
	background-color: rgb( 73, 74, 74 );
}

/* END BANNER */