@import url("https://fonts.verwaltungsportal.de/import/?family=Source+Sans+Pro:300,400,500,600,700,800");

body {
  font-family: "Open Sans", sans-serif;
  color: #4d4d4d;
  background: #ffffff;
  font-size: 1rem;
  /* 1rem = 16px */
  line-height: 1.5;
}

@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
  }
}

a {
  color: #0fb5ba;
}

a:hover,
a:focus {
  color: #0fb5ba;
  text-decoration: underline;
}

b,
strong {
  font-weight: 600;
}

/* ------------------------------------------------- topbar ------------------------------------------------ */

#topbar {
  background-color: #0fb5ba;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #ffffff;
}

@media (max-width: 991px) {
  #topbar {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

#topbar > .row > div > div:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  margin-left: 10px;
  padding-left: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  padding-right: 50px;
}

#easy {
  margin-right: 15px;
  font-size: 0.8125rem;
  width: 8vw;
  flex-wrap: nowrap;
  display: flex;
}

#easy2 {
  padding: 10px 0;
  font-size: 0.8125rem;
  width: 100%;
  text-align: center;
  background-color: #0fb5ba;
}

#easy a,
#easy2 a {
  color: #ffffff;
  position: relative;
  text-decoration: none;
}

#easy a::after,
#easy2 a::after {
  content: "";
  background-image: url("../img/easy-language.png");
  background-position: right center;
  background-repeat: no-repeat;
  right: -55px;
  width: 27px;
  height: 27px;
  position: absolute;
  top: 5px;
  bottom: 0;
}

/* ------------------------------------------------- contrast ------------------------------------------------ */

@media (min-width: 992px) {
  #contrast_style {
    flex-wrap: nowrap;
    display: flex;
    margin-right: 25px;
    line-height: 0;
    justify-content: center;
    align-items: center;
  }

  #contrast_style span {
    font-size: 0.8125rem;
    color: #ffffff;
    margin-right: 10px;
  }

  #contrast_style button {
    padding: 0;
    border: none;
    background: transparent;
    display: inline-block;
  }

  #contrast_style button img {
    max-width: none;
    width: 22px;
    height: 22px;
  }

  #contrast_style button + button {
    margin-left: 8px;
  }
}

/* ------------------------------------------------ styler ---------------------------------------------- */

@media (min-width: 992px) {
  #style {
    flex-wrap: nowrap;
    margin-left: 25px;
    display: flex;
  }

  #style button {
    border: none;
    color: #0fb5ba;
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    background-color: #ffffff;
    position: relative;
    line-height: 1;
    font-size: 1rem;
    -webkit-transition: transform 150ms linear;
    -moz-transition: transform 150ms linear;
    -ms-transition: transform 150ms linear;
    -o-transition: transform 150ms linear;
    transition: transform 150ms linear;
  }

  #style button + button {
    margin-left: 8px;
  }

  #style button:hover {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}

/* ------------------------------------------------- logo ------------------------------------------------ */

#logo {
  display: inline-block;
}

#logo img {
  display: block;
  max-width: 220px;
}

.is-sticky #logo img {
  display: block;
  max-width: 150px;
  transition: all 300ms;
}

@media (max-width: 991px) {
  #logo img {
    max-width: 210px;
    width: 100%;
  }
  .horizontally {
    padding: 10px 0;
    background-color: #ffffff;
  }
  .is-sticky .horizontally {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  }
}

/* --------------------------------------- navigation --------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
  #burgerButton {
    font-size: 0;
    border: none !important;
    position: relative;
    z-index: 1002;
    display: block;
    width: 46px;
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
    background-color: #ffffff !important;
    padding: 3px;
  }

  #burgerButton:before,
  #burgerButton:after,
  #burgerButtonInner {
    background-color: #0fb5ba;
    border-radius: 2px;
    position: absolute;
    width: 40px;
    height: 3px;
    left: 2px;
    -webkit-transition: transform 200ms linear, opacity 200ms linear;
    -moz-transition: transform 200ms linear, opacity 200ms linear;
    -ms-transition: transform 200ms linear, opacity 200ms linear;
    -o-transition: transform 200ms linear, opacity 200ms linear;
    transition: transform 200ms linear, opacity 200ms linear;
  }

  #burgerButton[aria-expanded="true"] #burgerButtonInner {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
  }

  #burgerButton[aria-expanded="true"]:before {
    opacity: 0;
  }

  #burgerButton[aria-expanded="true"]:after {
    -webkit-transform: rotate(45deg) translate(-4px, -6px);
    transform: rotate(45deg) translate(-4px, -6px);
  }

  #burgerButtonInner {
    top: 10px;
  }

  #burgerButton:before {
    top: 18px;
  }

  #burgerButton:after {
    top: 26px;
  }

  #burgerButton:before,
  #burgerButton:after {
    content: "";
    display: block;
  }

  .navbar-nav {
    margin: 20px 0;
  }

  .navbar-collapse {
    top: 0;
    background: #ffffff;
    position: fixed;
    left: -100%;
    bottom: 0;
    z-index: 100;
    height: auto !important;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    -webkit-transition: left 300ms linear, opacity 300ms linear;
    -moz-transition: left 300ms linear, opacity 300ms linear;
    -ms-transition: left 300ms linear, opacity 300ms linear;
    -o-transition: left 300ms linear, opacity 300ms linear;
    transition: left 300ms linear, opacity 300ms linear;
  }

  .navbar-collapse.collapse.in {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-header {
    height: 50px;
    width: 60px;
    border-radius: 2px;
    padding: 6px 8px;
    background-color: #ffffff;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 101;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  }

  .navbar-collapse.in:after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 90px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 575px) and (max-width: 991px) {
  .navbar-collapse {
    width: 60%;
  }

  .navbar-collapse.collapse.in:after {
    width: 40%;
  }
}

/* menu desktop */

@media (min-width: 992px) {
  .horizontally {
    padding-top: 10px;
    padding-bottom: 20px;
    background-color: #ffffff;
  }

  .is-sticky .horizontally {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  }

  nav.horizontally .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  nav.horizontally .navbar-nav > li {
    flex-grow: 1;
  }

  nav.horizontally .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  nav.horizontally .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
  }

  nav.horizontally .navbar-nav > li,
  nav.horizontally .navbar-nav > li > .dropdown-menu > li {
    position: relative;
  }

  /* Fade in Hover Start */
  .navbar-default .navbar-nav li[class*="toplevel"] > ul,
  .navbar-default .navbar-nav li[class*="secondlevel"] > ul {
    display: block !important;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -ms-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
  }

  .navbar-default .open > .dropdown-menu,
  .navbar-default .navbar-nav li[class*="toplevel"]:hover > ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]:hover > ul,
  .navbar-default .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
    pointer-events: auto !important;
    opacity: 1 !important;
  }

  .navbar-default .navbar-nav li[class*="toplevel"]:focus-within > ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]:focus-within > ul {
    pointer-events: auto !important;
    opacity: 1 !important;
  }

  .navbar-default .nav .open > .dropdown-menu {
    pointer-events: none !important;
    opacity: 0 !important;
  }

  /* Pseudo */

  .navbar-default .navbar-nav > li > .dropdown-menu::before {
    content: "";
    position: absolute;
    display: block;
    height: 10px;
    left: 0;
    right: 0;
    top: -10px;
  }

  /* 3rd */

  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu::before {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    top: 0;
    bottom: 0;
    left: -10px;
  }

  /* Fade in Hover End */
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav > li > a {
  color: #515151;
  font-weight: bold;
  text-align: center;
  padding: 10px 35px 15px 35px;
  position: relative;
  font-family: "Source Sans Pro";
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
}

@media (max-width: 991px) {
  .navbar-default .navbar-nav > li {
    border-bottom: 1px solid rgba(46, 60, 72, 0.2);
  }
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav > li + li {
    margin-left: 20px;
  }

  .navbar-default .navbar-nav > li > a {
    padding: 18px 0;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    height: 100%;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
  .navbar-default .navbar-nav > li > a {
    display: block;
  }
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav > li:hover > a,
.navbar-nav > li:focus > a,
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li.open > a,
.navbar-nav > li.open > a:hover,
.navbar-nav > li.open > a:focus,
.navbar-nav > li[class$="_over"] > a,
.navbar-nav > li[class$="_over"] > a:hover,
.navbar-nav > li[class$="_over"] > a:focus {
  color: #0fb5ba;
  background-color: transparent;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

@media (max-width: 991px) {
  .navbar-default .navbar-nav > li > .dropdown-menu {
    padding: 15px;
  }
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav > li > .dropdown-menu,
  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    margin-top: -18px;
    margin-left: 10px;
  }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
  color: #515151;
  font-weight: 400;
  text-align: left;
  padding: 9px 25px;
  font-size: 1.125rem;
  font-family: "Source Sans Pro";
  line-height: 1.2;
  text-decoration: none;
}

@media (max-width: 991px) {
  .navbar-default .navbar-nav > li > .dropdown-menu > li > a,
  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
    font-size: 14px;
  }
}

.navbar-default .navbar-nav > li > .dropdown-menu > li > a::before,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a::before {
  display: block;
  position: absolute;
  content: "";
  background: url("../img/active.png") no-repeat;
  width: 16px;
  height: 15px;
  right: 15px;
  top: calc(50% - 7.5px);
  opacity: 0;
  -webkit-transition: opacity 0.5s 0s ease;
  -moz-transition: opacity 0.5s 0s ease;
  -o-transition: opacity 0.5s 0s ease;
  transition: opacity 0.5s 0s ease;
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav > li > .dropdown-menu > li:focus > a,
.navbar-nav > li > .dropdown-menu > li:hover > a,
.navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus {
  font-weight: 600;
}

.navbar-nav > li > .dropdown-menu > li:focus > a::before,
.navbar-nav > li > .dropdown-menu > li:hover > a::before,
.navbar-nav > li > .dropdown-menu > li > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > a:focus::before,
.navbar-nav > li > .dropdown-menu > li.open > a::before,
.navbar-nav > li > .dropdown-menu > li.open > a:hover::before,
.navbar-nav > li > .dropdown-menu > li.open > a:focus::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus::before {
  opacity: 1;
}

/* ----------------------------------------------- banner ----------------------------------------------- */

#slider {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  #slider {
    max-height: 500px;
  }

  body.index #slider {
    max-height: 635px;
  }

  #headerpic a.nivo-prevNav {
    left: 65px;
  }

  #headerpic a.nivo-nextNav {
    right: 65px;
  }
}

#headerpic {
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.slider-wrapper,
#slider {
  height: 100%;
}

.slider-mask {
  display: block;
  background: url("../img/mask.png") no-repeat bottom center;
  background-size: contain;
}

/* ------------------------------------------------ content ----------------------------------------------- */

.index #content {
  text-align: center;
}

#content {
  text-align: left;
  padding-bottom: 30px;
  padding-top: 30px;
}

@media (min-width: 992px) {
  #content {
    padding-bottom: 60px;
    padding-top: 60px;
    margin-top: -80px;
    position: relative;
    z-index: 8;
    background: url("../img/kreise3.png") no-repeat left bottom;
  }
}

/* ------------------------------------------ h1 - h6, newslink ----------------------------------------- */

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
  color: #0fb5ba;
  font-weight: bold;
  line-height: 1.2;
  font-family: "Source Sans Pro", sans-serif;
}

h1,
.h1,
.legacy_h1 {
  font-size: 1.7rem;
}

@media (min-width: 992px) {
  h1,
  .h1,
  .legacy_h1 {
    font-size: 2.75rem;
  }
}

h2,
.h2,
.legacy_h2 {
  font-size: 1.6rem;
}

@media (min-width: 992px) {
  h2,
  .h2,
  .legacy_h2 {
    font-size: 1.7rem;
  }
}

h3,
.h3,
.legacy_h3 {
  font-size: 1.6rem;
}

h4,
.h4,
.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
.legacy_h4 {
  font-size: 1.5rem;
}

h5,
.h5,
.legacy_h5 {
  font-size: 1.4rem;
}

h6,
.h6,
.legacy_h6 {
  font-size: 1.3rem;
}

#newslinks,
#newsmandate {
  border: 1px solid #0fb5ba;
}

/* ----------------------------------------------- footer ----------------------------------------------- */

footer {
  color: #ffffff;
}

@media (max-width: 767px) {
  footer .row > .col-xs-12:not(:first-child)::before {
    background: #000000;
    content: " ";
    height: 1px;
    width: 100%;
    display: block;
    margin: 25px 0;
    opacity: 0.2;
  }

  footer .row > .col-xs-12.hidden-xs ~ .col-xs-12::before,
  footer .row > .col-xs-12.hidden-sm ~ .col-xs-12::before {
    display: none;
  }
}

#footerBottom {
  background-color: #0fb5ba;
  padding: 8px 0;
}

#innerfooter ul {
  padding: 0;
}

#innerfooter li {
  display: inline-block;
}

#innerfooter a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  font-size: 0.875rem;
}

#innerfooter a:hover,
#innerfooter a:focus {
  text-decoration: underline;
}

#innerfooter li + li::before {
  content: "•";
  margin: 0 15px;
  color: #ffffff;
}

@media (min-width: 1200px) {
  #innerfooter li + li::before {
    margin: 0 25px;
  }
}

@media (max-width: 767px) {
  #innerfooter li {
    display: block;
    text-align: center;
    padding: 5px;
    margin: 0;
  }

  #innerfooter li + li::before {
    display: none;
  }

  #innerfooter li + li {
    margin: 0;
  }
}

/* --------------------------------------------- scrollTop -------------------------------------------- */

#scrollTop {
  font-size: 0;
  width: 60px;
  height: 60px;
  display: block;
  position: fixed;
  right: 50px;
  top: 45%;
  margin: 0 auto;
  background: #0fb5ba;
  border-radius: 0 30px 30px 0;
  z-index: 100;
  border-radius: 50%;
}

@media (min-width: 768px) {
  #scrollTop {
    margin: 0 0 0 auto;
  }
}

@media (min-width: 992px) {
  #scrollTop {
    margin: 0;
    float: right;
  }
}

#scrollTop::after {
  content: "";
  position: absolute;
  right: 21px;
  top: 11px;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  margin-top: 15px;
  display: inline-block;
  border-right: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border 300ms linear;
  -moz-transition: border 300ms linear;
  -ms-transition: border 300ms linear;
  -o-transition: border 300ms linear;
  transition: border 300ms linear;
}

#scrollTop::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #fff;
}

@media (max-width: 767px) {
  #scrollTop {
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  #scrollTop {
    top: 20%;
  }
}

/* --------------------------------------------- vernetzt -------------------------------------------- */

#vernetzt {
  text-align: right;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 auto;
  font-weight: 400;
}

@media (min-width: 768px) {
  #vernetzt {
    float: right;
    margin: 0;
  }
}

#vernetzt b {
  color: #ffffff;
  font-weight: 600;
}

#vernetzt span {
  color: #ffffff;
}

#vernetzt span span {
  display: block;
}

#vernetzt img {
  margin-left: 18px;
}

#vernetzt:hover,
#vernetzt:active,
#vernetzt:focus {
  text-decoration: none;
}

/*------------- stuff ---------------*/

@media (min-width: 992px) {
  #slider + .nivo-controlNav {
    bottom: 195px;
  }

  .theme-default .nivo-controlNav {
    bottom: 195px !important;
  }
}

/* --------------------------------------------- introsite -------------------------------------------- */

.introsite #easy {
  width: 85px;
}

.introtext {
  font-size: 1.875rem;
  color: #fff;
}

.introsite .horizontally {
  padding-bottom: 5vw;
  padding-top: 1vw;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
}

@media (min-width: 992px) {
  .introsite #logo img {
    display: block;
    max-width: none;
  }
}

.introsite #footerBottom {
  position: relative;
}

.introsite #scrollTop {
  display: inline-block !important;
  opacity: 1 !important;
}

.introsite #footerBottom::before {
  content: "";
  background: rgb(15, 181, 186);
  background: linear-gradient(0deg, rgba(15, 181, 186, 1) 0%, rgba(255, 255, 255, 0) 60%);
  top: -115px;
  position: absolute;
  width: 100%;
  height: 115px;
}

body.introsite {
  background-color: #0fb5ba !important;
}

.introbanner {
  position: relative;
}

.introbanner .slider-mask {
  background: rgb(15, 181, 186);
  background: linear-gradient(0deg, rgba(15, 181, 186, 0.6) 0%, rgba(15, 181, 186, 0.6) 100%), linear-gradient(90deg, rgba(15, 181, 186, 0) 80%, rgb(15, 181, 186) 100%), linear-gradient(270deg, rgba(15, 181, 186, 0) 80%, rgba(15, 181, 186, 1) 100%);
  width: 1200px;
  height: 790px;
  pointer-events: none;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.introbanner .nivoSlider {
  width: 1200px;
  height: 770px !important;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 10vw auto;
}

.introbanner .slider-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.introtab {
  padding: 4vw 0 5.2vw 0;
}

.introtab .tab {
  color: #ffffff;
  font-size: 2.5rem;
  text-align: center;
  font-style: italic;
  background-color: rgba(15, 181, 186, 0.6);
  border-radius: 60px;
  border: 2px solid #ffffff;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background 300ms linear;
  -moz-transition: background 300ms linear;
  -ms-transition: background 300ms linear;
  -o-transition: background 300ms linear;
  transition: background 300ms linear;
}

@media (max-width: 991px) {
  .introtab .tab {
    font-size: 1.25rem;
  }

  .introtab {
    padding: 46vw 0;
  }
}

@media (max-width: 767px) {
  .introtab {
    padding: 42vw 0;
  }

  .introsite footer .row > .col-xs-12:not(:first-child)::before {
    background: #ffffff;
    content: " ";
    height: 1px;
    width: 100%;
    display: block;
    margin: 25px 0;
    opacity: 0.2;
  }
}

.introtab .tab a {
  color: #ffffff;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  position: relative;
  border-radius: 60px;
  padding: 20px 70px 20px 45px;
  -webkit-transition: background 300ms linear;
  -moz-transition: background 300ms linear;
  -ms-transition: background 300ms linear;
  -o-transition: background 300ms linear;
  transition: background 300ms linear;
}

.introtab .tab a::after {
  content: "\00BB";
  position: absolute;
  right: 45px;
}

.introtab .tab:hover,
.introtab .tab:focus {
  background-color: rgba(15, 181, 186, 0.8);
}

.Psychotherapie,
.Kosten,
.about,
.Praxis {
  padding: 70px 0;
}

.Psychotherapie h1,
.Kosten h1,
.about h1,
.Praxis h1 {
  color: #0fb5ba;
  font-size: 2.25rem;
}

@media (max-width: 991px) {
  .Psychotherapie h1,
  .Kosten h1,
  .about h1,
  .Praxis h1 {
    font-size: 1.625rem;
  }
  .Psychotherapie,
  .Kosten,
  .about,
  .Praxis {
    padding: 40px 0;
  }
}

.Psychotherapie > .tabContent > .template-page > .row > .col-xs-12:nth-child(1),
.about > .tabContent > .template-page > .row > .col-xs-12:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Psychotherapie strong a:last-child,
.about strong a:last-child {
  font-size: 1rem;
  display: inline-block;
  padding: 5px 25px;
  background: #0fb5ba;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}

.Psychotherapie a:last-child:hover,
.about a:last-child:hover {
  text-decoration: none;
}

.Kosten h1 {
  margin-bottom: 15px;
  color: #0fb5ba;
}
