/**
 * Fix for vw, vh, vmin, vmax on iOS 7.
 * http://caniuse.com/#feat=viewport-units
 *
 * This fix works by replacing viewport units with px values on known screen sizes.
 *
 * iPhone 6 and 6 Plus cannot run iOS 7, so are not targeted by this fix.
 * Target devices running iOS 8+ will incidentally execute the media query,
 * but this will still produce the expected result; so this is not a problem.
 *
 * As an example, replace:
 *
 *   height: 50vh;
 *   font-size: 5vmin;
 *
 * with:
 *
 *   @include viewport-unit(height, 50vh);
 *   @include viewport-unit(font-size, 5vmin);
 */
/* Apply bootstrap styles */
@import url(bootstrap/css/bootstrap.min.css);
@import "https://fonts.googleapis.com/css?family=Lato:400,300italic,300,400italic,700,700italic,900,900italic";
.current-menu-item > a {
  font-weight: 400;
  color: #2e4593 !important; }

nav {
  font-size: 19px;
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: "transparent"; }
  nav .navbar-header {
    position: relative;
    float: left;
    width: 100%; }
    nav .navbar-header button {
      position: relative;
      float: right;
      padding: 9px 10px;
      margin-top: 8px;
      margin-bottom: 8px;
      background-color: transparent;
      border: 1px solid transparent;
      border-radius: 4px; }
      nav .navbar-header button .icon-bar {
        display: block;
        width: 30px;
        height: 3px;
        border-radius: 1px;
        background-color: #888;
        margin-top: 4px; }
        nav .navbar-header button .icon-bar:nth-of-type(2) {
          margin-top: 0px; }
      nav .navbar-header button .sr-only {
        display: none; }
    nav .navbar-header .logo {
      font-size: 1.7em;
      color: #fff;
      margin-top: 3px;
      display: inline-block; }
  nav #navbar {
    position: relative;
    float: left;
    width: 100%;
    padding-bottom: 15px; }
    nav #navbar.show {
      display: block; }
    nav #navbar.hide {
      display: none; }
    nav #navbar ul {
      list-style: none;
      margin: 0;
      padding: 0; }
      nav #navbar ul li {
        margin: 0; }
        nav #navbar ul li a {
          color: #fff;
          display: inline-block;
          width: 100%; }
          nav #navbar ul li a:focus, nav #navbar ul li a:active {
            outline: 0;
            text-decoration: none; }
          nav #navbar ul li a:hover, nav #navbar ul li a:active {
            opacity: 1;
            text-decoration: none; }
    nav #navbar > ul > li {
      padding: 10px 0; }
      @media (max-width: 767px) {
        nav #navbar > ul > li.desktop {
          display: none; } }
      @media (min-width: 768px) {
        nav #navbar > ul > li.mobile {
          display: none; } }
      nav #navbar > ul > li > a {
        opacity: 0.6; }
      nav #navbar > ul > li > ul {
        max-height: 0px;
        transition: max-height 0.4s;
        overflow: hidden;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0); }
        nav #navbar > ul > li > ul > li > a {
          opacity: 0.6;
          padding: 10px 0 0 0; }

@media (max-width: 768px) {
  #intro-header, #normal-head {
    top: 0px; }
    #intro-header .collapse, #normal-head .collapse {
      display: inline-block; }
    #intro-header nav, #normal-head nav {
      margin-top: 0px;
      margin-bottom: 30px; }
      #intro-header nav .navbar-collapse, #normal-head nav .navbar-collapse {
        position: relative;
        max-height: none; }
      #intro-header nav li, #normal-head nav li {
        padding: 15px 0px; }
        #intro-header nav li a, #normal-head nav li a {
          padding: 0px 15px; }
      #intro-header nav ul.navbar-nav li:last-child, #normal-head nav ul.navbar-nav li:last-child {
        border-bottom: none; } }
@media (min-width: 768px) {
  nav {
    font-size: 15px; }
    nav .navbar-header {
      width: auto; }
      nav .navbar-header button {
        display: none; }
    nav #navbar {
      position: relative;
      float: none;
      width: auto; }
      nav #navbar > ul {
        position: relative;
        float: right;
        margin-top: 35px; }
        nav #navbar > ul > li {
          position: relative;
          float: left;
          padding: 0; }
          nav #navbar > ul > li.menu-item-has-children > a {
            pointer-events: none; }
          nav #navbar > ul > li > a {
            padding: 10px;
            display: inline-block;
            color: #fff;
            margin: 0;
            opacity: 1; }
          nav #navbar > ul > li:hover > a, nav #navbar > ul > li:active > a {
            color: white;
            background-color: #fff; }
          nav #navbar > ul > li:hover > ul, nav #navbar > ul > li:active > ul {
            display: block; }
          nav #navbar > ul > li > ul {
            display: none;
            position: absolute;
            left: 0;
            z-index: 1;
            background-color: #fff;
            padding: 10px 0;
            min-width: 100%;
            max-height: inherit;
            z-index: 1;
            box-shadow: 0 0 0 0px #333; }
            nav #navbar > ul > li > ul > li:hover, nav #navbar > ul > li > ul > li:active {
              background-color: #e6e6e6; }
              nav #navbar > ul > li > ul > li:hover > a, nav #navbar > ul > li > ul > li:active > a {
                color: white; }
            nav #navbar > ul > li > ul > li > a {
              padding: 5px 10px;
              display: inline-block;
              color: white;
              opacity: 1;
              white-space: nowrap; } }
#navbar {
  position: relative; }

nav .nav > li {
  position: static; }
  nav .nav > li > a {
    background-color: "transparent"; }
nav .nav .caret {
  display: none;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }
nav .nav .dropdown-toggle:focus {
  outline: 0; }
nav .nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -99;
  display: none;
  float: left;
  min-width: 160px;
  max-width: 100%;
  width: 100%;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
  margin-left: 0 !important;
  margin-right: 0 !important; }
  nav .nav .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  nav .nav .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #333333;
    white-space: normal;
    font-size: 1.2em; }
  @media (min-width: 768px) {
    nav .nav .dropdown-menu > li {
      position: relative;
      width: 33%;
      float: left; }
      nav .nav .dropdown-menu > li .dropdown-menu {
        background-color: transparent;
        border: 0px;
        position: static; }
        nav .nav .dropdown-menu > li .dropdown-menu li {
          position: relative;
          width: 100%;
          float: left; }
          nav .nav .dropdown-menu > li .dropdown-menu li > a {
            font-size: 12pt; } }
nav .nav .dropdown-menu > li > a:hover, nav .nav .dropdown-menu > li > a:focus, nav .nav .dropdown-menu > li > a:active {
  text-decoration: none;
  color: #262626;
  font-weight: 700; }
nav .nav .dropdown-menu > .active > a, nav .nav .dropdown-menu > .active > a:hover, nav .nav .dropdown-menu > .active > a:focus, nav .nav .dropdown-menu > .active > a:active {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7; }
nav .nav .dropdown-menu > .disabled > a, nav .nav .dropdown-menu > .disabled > a:hover, nav .nav .dropdown-menu > .disabled > a:focus, nav .nav .dropdown-menu > .disabled > a:active {
  color: #777777; }
nav .nav .dropdown-menu > .disabled > a:hover, nav .nav .dropdown-menu > .disabled > a:focus, nav .nav .dropdown-menu > .disabled > a:active {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  cursor: not-allowed; }
nav .nav .open .dropdown-menu {
  display: block; }
nav .nav .open > a {
  outline: 0; }
nav .nav .dropdown-menu-right {
  left: auto;
  right: 0; }
nav .nav .dropdown-menu-left {
  left: 0;
  right: auto; }
nav .nav .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857;
  color: #777777;
  white-space: nowrap; }
nav .nav .dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -109; }
nav .nav .pull-right > .dropdown-menu {
  right: 0;
  left: auto; }
nav .nav .dropup .caret,
nav .nav .navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: ""; }
nav .nav .dropup .dropdown-menu,
nav .nav .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }
@media (min-width: 768px) {
  nav .nav .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  nav .nav .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }
nav .nav ul.nav li.dropdown:hover ul.dropdown-menu ul.dropdown-menu,
nav .nav ul.nav li.dropdown:active ul.dropdown-menu ul.dropdown-menu {
  display: block; }

html {
  overflow-y: scroll;
  position: relative;
  min-height: 100%; }

html,
body {
  font-family: Lato, sans-serif;
  color: #666; }

body#normal {
  margin-bottom: 3em; }

h5,
h4,
h3,
h2,
h1,
h6 {
  color: #2e4593;
  text-transform: uppercase;
  font-weight: 400;
  word-wrap: break-word;
  font-family: Lato, sans-serif; }

h1 a {
  font-size: 20px;
  font-weight: 700;
  color: #2e4593; }

h2 {
  padding-bottom: 10px;
  margin-top: 25px;
  font-size: 20px;
  font-weight: 700; }

h3 {
  font-size: 14px;
  font-weight: 700;
  margin-top: 25px;
  color: #2e4593;
  text-transform: none; }

h5, h6 {
  font-weight: 100;
  color: #2e4593; }

h6 {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 14px; }

/* styles needes for shortcodes  */
.divider {
  margin-bottom: 25px;
  padding-top: 25px;
  clear: both;
  display: block;
  margin-bottom: 15px;
  padding-top: 15px;
  width: 100%; }

/* Styling of standard gallery shortcode, removed in functions */
.gallery {
  margin: auto; }

.gallery-item {
  float: left;
  margin-top: 10px;
  text-align: center;
  width: 33%;
  text-align: left; }

.gallery img {
  border: 2px solid #cfcfcf; }

.gallery-caption {
  margin-left: 0;
  clear: both; }

img {
  max-width: 100%;
  height: auto; }

/* basic styles for layout, can be removed. */
@media (max-width: 992px) {
  .navbar-collapse {
    width: 100% !important; } }
/*@media(max-width: 1199px) and  (min-width: 768px) {
  div#intro-header{
    top: -195px;
  }
}*/
.overlay {
  width: 100%;
  height: 100%;
  transition: background-color 0.5s; }

.intro_page_left .overlay {
  background-color: rgba(188, 192, 227, 0.5); }
  .intro_page_left .overlay:hover, .intro_page_left .overlay:active {
    background-color: rgba(188, 192, 227, 0); }

.intro_page_middle .overlay {
  background-color: rgba(118, 134, 194, 0.5); }
  .intro_page_middle .overlay:hover, .intro_page_middle .overlay:active {
    background-color: rgba(118, 134, 194, 0); }

.intro_page_right .overlay {
  background-color: rgba(1, 72, 152, 0.5); }
  .intro_page_right .overlay:hover, .intro_page_right .overlay:active {
    background-color: rgba(1, 72, 152, 0); }

.togglebutton {
  position: relative;
  z-index: 1001;
  width: 40px;
  height: 40px;
  float: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3px;
  cursor: pointer;
  margin-top: -50px; }
  .togglebutton div {
    width: 100%;
    height: 5px;
    background-color: #555555;
    margin-top: 5px; }

@media (max-width: 991px) {
  #normal-head .nav .top-main-menu {
    display: none; }

  .togglebutton {
    display: inline-block; } }
@media (min-width: 992px) {
  .togglebutton {
    display: none; }

  #normal-head .nav .top-main-menu {
    display: block; } }
/* BOXEN */
/* BOXEN */
.erklarung-box,
.download-box {
  margin: 40px 0px;
  padding: 20px 40px;
  background-color: #e5e5e5; }
  .erklarung-box h4,
  .download-box h4 {
    text-transform: none;
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 14pt; }
  .erklarung-box p,
  .download-box p {
    margin-bottom: 0; }

.tab-box {
  padding: 0; }

.icon {
  color: #2e4593;
  display: inline-block;
  font-size: 14pt !important;
  padding-right: 5px; }
  .icon + h4 {
    display: inline-block; }

h4 {
  font-size: 16pt;
  color: #2e4593;
  margin-top: 20px;
  margin-bottom: 30px; }

/* TAB BOX */
.tab-content .tab-pane p {
  margin-top: 20px; }

p img {
  float: left;
  margin-right: 1em; }

/* Top Header */
#top-header {
  background-color: #999;
  color: #fff;
  font-size: 80%;
  min-height: 100%;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0;
  padding: 0 15px; }

#top-header ul,
ol {
  margin-bottom: 3px;
  margin-left: 0px;
  padding-left: 0px; }

#top-header a {
  color: #ffffff; }

/* Search Head */
#search-head {
  margin-top: 15px;
  padding-right: 15px; }

/* Brand */
.brand {
  margin-top: 15px;
  margin-bottom: 14px;
  position: relative; }

#site-title {
  font-size: 35px; }

/*Header Menu */
.languages {
  float: right;
  text-align: right;
  margin-top: 5px;
  margin-right: 15px; }

.languages ul {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left; }

.languages ul li {
  display: inline-block;
  padding: 0 0 0 10px; }

.header-menu {
  list-style: none outside none;
  display: inline-block; }

.header-menu li {
  display: inline;
  padding-right: 10px;
  padding-left: 5px;
  border-right: 1px solid white; }

.header-menu li:last-child {
  border-right: none; }

/* Navbar */
.menu-item-has-children .menu-item-has-children > a {
  display: none !important; }

@media (min-width: 1200px) {
  nav.navbar {
    position: relative;
    bottom: -20px; } }
@media (min-width: 992px) {
  nav.navbar {
    right: 15px; } }
@media (min-width: 992px) {
  .navbar-default .navbar-nav {
    float: right; } }
.navbar-default .navbar-nav > li > a {
  padding: 0px 15px; }

ul.navbar-nav li a {
  padding: 0px 30px; }

ul.navbar-nav > li > ul.dropdown-menu > li > a {
  white-space: inherit;
  font-weight: 700 !important; }

ul.navbar-nav > li > ul.dropdown-menu > li a {
  font-weight: 400;
  line-height: 1em;
  margin: 0.4em 0; }

ul.navbar-nav ul.dropdown-menu li a:hover, ul.navbar-nav ul.dropdown-menu li a:active {
  text-decoration: none !important;
  color: #666 !important; }

ul.nav li a {
  color: #2e4593;
  font-size: 12pt;
  font-weight: 700; }

ul.nav li a:hover, ul.nav li a:active {
  color: #666;
  background-color: #e5e5e5;
  border-radius: 0px; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:active {
  border-radius: 0px;
  color: #666; }

.nav {
  padding: 0; }

.top-main-menu {
  border-bottom: 1px solid #ccc; }

.top-main-menu .top-main-menu {
  border-bottom: none; }

nav.navbar {
  margin: 30px 0 0 0;
  border: none;
  border-radius: 0;
  background: none; }

.navbar-collapse {
  position: absolute;
  width: 100% !important;
  height: 100%;
  background: #fff;
  z-index: 10;
  padding: 0 15px;
  border: 1px solid #ccc;
  box-shadow: none;
  margin-top: 2px; }

#menu-menu {
  float: right; }
  #menu-menu > li > a {
    text-transform: uppercase; }
  #menu-menu > li[class*="children"] > a:after {
    content: '\25BC';
    font-size: 0.8em;
    position: relative;
    top: -2px; }
  #menu-menu > li:not([class*="children"]) > a {
    padding-bottom: 1px; }
  #menu-menu > li[class*="current"] {
    border-bottom: 2px solid orange; }

.menu-item .menu-item-type-custom .menu-item-object-custom .menu-item-49 a {
  margin-top: 20px; }

ul.navbar-nav li {
  background: none;
  border-bottom: 1px solid #ccc; }

ul.navbar-nav li a {
  background: none !important; }

ul.navbar-nav li:hover,
ul.navbar-nav li:active,
ul.navbar-nav li.current-menu-item,
ul.navbar-nav li.current-menu-parent {
  background: none;
  box-shadow: none !important; }

ul.navbar-nav ul.dropdown-menu {
  border: 0px;
  padding: 0;
  box-shadow: none !important;
  border-radius: 0px; }

ul.navbar-nav li.menu-item-33 a,
ul.navbar-nav li.menu-item-21 a,
ul.navbar-nav li.menu-item-33 a:hover,
ul.navbar-nav li.menu-item-33 a:active,
ul.navbar-nav li.menu-item-21 a:hover,
ul.navbar-nav li.menu-item-21 a:active {
  color: #ff9501; }

ul.navbar-nav li {
  font-weight: 700; }

ul.navbar-nav ul.dropdown-menu li {
  border-bottom: none;
  color: #000;
  font-weight: 700; }

ul.navbar-nav ul.dropdown-menu li:hover,
ul.navbar-nav ul.dropdown-menu li:active {
  color: #2e4593;
  border-bottom: none;
  font-weight: 700; }

ul.navbar-nav ul.dropdown-menu li a {
  line-height: 25px;
  color: #000;
  font-weight: 700; }

ul.navbar-nav ul.dropdown-menu li a:hover,
ul.navbar-nav ul.dropdown-menu li a:active,
ul.navbar-nav ul.dropdown-menu li ul li:hover a,
ul.navbar-nav ul.dropdown-menu li ul li:active a {
  color: #2e4593 !important;
  font-weight: normal; }

ul.navbar-nav ul.dropdown-menu li {
  border-bottom: none;
  color: #000; }

@media (max-width: 991px) {
  .navbar-header {
    float: none; }

  .navbar-toggle {
    display: block; }

  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: none;
    left: 0; }

  .navbar-nav {
    float: none !important;
    margin: 7.5px -15px; }
    .navbar-nav > li > ul > li {
      padding: 0 !important; }

  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px; } }
/* Piktogramme */
.piktogramme .col {
  margin-bottom: 15px; }

.piktogramme img {
  float: left;
  margin-right: 25px; }

.piktogramme span {
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 15px;
  display: block;
  word-wrap: break-word; }

/*Breadcrumbs*/
.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding-left: 10px; }

/* post image */
.wp-post-image {
  float: left;
  margin-right: 15px; }

/* Headerpics */
#slides {
  position: relative; }

.slidejs-control,
.slidejs-container {
  min-height: 400px; }

.slidesjs-slide {
  overflow: hidden;
  min-height: 300px;
  max-height: 524px;
  height: 524px;
  width: 100%;
  position: relative; }

.slidesjs-slide img {
  width: auto;
  height: auto;
  min-height: 524px;
  min-width: 1920px;
  position: absolute; }

.slider_wrapper {
  position: absolute;
  left: 65%;
  top: 25%;
  width: 30%;
  z-index: 10;
  background: rgba(255, 149, 1, 0.8);
  padding: 20px;
  min-height: 220px;
  max-height: 100%; }

.slider_name {
  width: 100%;
  font-size: 2.5em;
  line-height: 1em; }

.slider_position {
  width: 100%;
  font-size: 1.5em;
  font-weight: 100;
  color: white;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1em; }

.slider_zitat {
  width: 100%;
  font-size: 1.2em;
  color: white;
  font-style: italic;
  line-height: 1.1em; }

.slider_button {
  cursor: pointer !important;
  z-index: 100 !important;
  position: absolute !important;
  margin-top: 15px; }

.headerpics-button {
  width: 150px;
  height: 150px;
  border-radius: 150px;
  background: rgba(255, 149, 1, 0.8);
  position: absolute;
  right: -50px;
  bottom: -100px;
  text-align: center;
  padding: 33px 13px 30px 13px;
  color: #fff;
  z-index: 110;
  word-wrap: break-word;
  font-size: 1.4em;
  text-transform: uppercase; }

.headerpics-button a {
  color: #fff; }

.slidesjs-pagination {
  position: relative;
  bottom: 30px;
  left: 10px;
  z-index: 100;
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none; }

.slidesjs-pagination li {
  float: left;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 12px;
  content: "";
  font-size: 0.0em; }

.slidesjs-pagination li a {
  width: 12px;
  height: 12px;
  background: #333;
  display: block;
  border-radius: 12px; }

.slidesjs-pagination li a.active {
  background: #fff;
  width: 10px;
  height: 10px;
  margin: 1px 0 0 1px; }

.slidesjs-previous,
.slidesjs-next {
  position: absolute;
  top: 50%;
  z-index: 100;
  font-size: 0.0em;
  width: 64px;
  height: 64px;
  display: block;
  background: url("img/slider_arrow_left.png") no-repeat;
  margin-top: -32px; }

.slidesjs-next {
  right: 0;
  background: url("img/slider_arrow_right.png") no-repeat; }

#slides .slidesjs-previous,
#slides .slidesjs-next {
  display: none; }

#slides:hover .slidesjs-previous,
#slides:active .slidesjs-previous,
#slides:hover .slidesjs-next,
#slides:active .slidesjs-next {
  display: block; }

/* Content */
.page-headline h1 {
  font-weight: 400;
  font-size: 2.2em;
  padding-bottom: 10px; }

.page-headline a {
  color: #2e4593; }

.page-headline a:hover,
.page-headline a:active {
  text-decoration: none; }

.border {
  border: 1px solid #e5e5e5;
  padding: 20px;
  margin-top: 20px; }
  .border img {
    float: left; }

.container.main {
  padding-top: 20px; }

.main-content {
  margin: 0; }
  .main-content > div:first-child {
    margin-top: 20px;
    margin-bottom: 20px; }
  .main-content p {
    font-size: 14px;
    color: #666;
    line-height: 20px; }
  .main-content h1 {
    margin-top: 0; }
  .main-content .intro_page {
    padding: 0; }
    .main-content .intro_page > a {
      padding: 0;
      border: none; }
      .main-content .intro_page > a:hover, .main-content .intro_page > a:active {
        color: white; }
      .main-content .intro_page > a > div {
        padding: 0; }

.content {
  margin-top: 15px; }

/* START PAGE */
#starting-page header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: white;
  z-index: 999; }
#starting-page .start-content {
  margin-top: 100vh; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    #starting-page .start-content {
      margin-top: 1024px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
    #starting-page .start-content {
      margin-top: 768px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: portrait) {
    #starting-page .start-content {
      margin-top: 480px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: landscape) {
    #starting-page .start-content {
      margin-top: 320px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: portrait) {
    #starting-page .start-content {
      margin-top: 568px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: landscape) {
    #starting-page .start-content {
      margin-top: 320px; } }
  #starting-page .start-content h2 {
    text-align: center; }
#starting-page .slider {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0; }
  #starting-page .slider .slide-img {
    width: 100%;
    height: 100vh;
    z-index: 2;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
      #starting-page .slider .slide-img {
        height: 1024px; } }
    @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
      #starting-page .slider .slide-img {
        height: 768px; } }
    @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: portrait) {
      #starting-page .slider .slide-img {
        height: 480px; } }
    @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: landscape) {
      #starting-page .slider .slide-img {
        height: 320px; } }
    @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: portrait) {
      #starting-page .slider .slide-img {
        height: 568px; } }
    @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: landscape) {
      #starting-page .slider .slide-img {
        height: 320px; } }
    #starting-page .slider .slide-img.left {
      background-position: top right; }
#starting-page .flexslider {
  border: none;
  margin: 0; }
  #starting-page .flexslider .text-box {
    position: absolute;
    bottom: 15%;
    right: 15%;
    color: white;
    border: 1px solid white;
    padding: 20px;
    padding-top: 40px;
    min-height: 200px;
    min-width: 390px;
    max-width: 600px;
    text-align: center; }
    #starting-page .flexslider .text-box.left {
      left: 15%;
      right: auto !important; }
#starting-page .flex-direction-nav a {
  height: 50px; }
#starting-page .custom-navigation {
  position: absolute;
  bottom: 12%;
  right: 15%; }
  #starting-page .custom-navigation.left {
    left: 15%;
    right: auto !important; }
#starting-page .flex-control-nav {
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 5; }
  #starting-page .flex-control-nav a {
    background-color: rgba(255, 255, 255, 0.5); }
    #starting-page .flex-control-nav a.flex-active {
      background-color: rgba(255, 255, 255, 0.9); }
#starting-page .puller-ext {
  position: absolute;
  top: 90vh;
  width: 80px;
  height: 80px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 5;
  text-align: center;
  border-radius: 50%;
  font-size: 1.5em;
  padding-top: 25px;
  cursor: pointer;
  font-size: 30px; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    #starting-page .puller-ext {
      top: 921.6px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
    #starting-page .puller-ext {
      top: 691.2px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: portrait) {
    #starting-page .puller-ext {
      top: 432px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: landscape) {
    #starting-page .puller-ext {
      top: 288px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: portrait) {
    #starting-page .puller-ext {
      top: 511.2px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: landscape) {
    #starting-page .puller-ext {
      top: 288px; } }
#starting-page .flexslider .slides img {
  height: 100vh; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    #starting-page .flexslider .slides img {
      height: 1024px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
    #starting-page .flexslider .slides img {
      height: 768px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: portrait) {
    #starting-page .flexslider .slides img {
      height: 480px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: landscape) {
    #starting-page .flexslider .slides img {
      height: 320px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: portrait) {
    #starting-page .flexslider .slides img {
      height: 568px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: landscape) {
    #starting-page .flexslider .slides img {
      height: 320px; } }

.flexslider {
  overflow: hidden; }

@media (max-width: 1600px) and (min-width: 768px) {
  #starting-page .flexslider .text-box {
    right: 5%; }
  #starting-page .custom-navigation {
    right: 5%; } }
#intro-page .puller-ext {
  font-size: 30px; }

@media (max-width: 767px) {
  #starting-page .flexslider .text-box {
    left: 1% !important;
    min-width: 97%;
    max-width: 98%; }
  #starting-page .flex-control-nav {
    left: -140px; }
  #starting-page .flex-direction-nav {
    display: none; }
  #starting-page .custom-navigation {
    left: 40%; }
    #starting-page .custom-navigation.left {
      left: 40%;
      right: 15% !important; }
  #starting-page .puller-ext {
    left: 50%; } }
/* INTRO PAGE */
#intro-page {
  margin-top: 0 !important; }
  #intro-page .main-content > div:first-child {
    margin: 0 !important; }

#intro-header {
  transition: top 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /*& * {
    z-index: 999;
  }*/ }
  #intro-header:hover, #intro-header:active {
    top: 0 !important; }
  #intro-header .puller-border {
    width: 100%;
    background-color: rgba(250, 250, 250, 0.75);
    z-index: 999;
    height: 25px; }
  #intro-header .puller-ext {
    background-color: rgba(250, 250, 250, 0.75);
    position: relative;
    margin: auto;
    width: 100px;
    height: 50px;
    border-radius: 0px 0px 100px 100px;
    text-align: center; }
  #intro-header header {
    background-color: white; }

.intro_page, .header_before {
  position: relative;
  /*top: -114px;*/ }

/*
.menu_invisible {
    height: 25px;
    position: relative;
    margin: 0;
    padding: 0;
}


.menu_invisible_balken, .menu_invisible_kreis {
    background-color: rgba(255,255,255,1);
}

.menu_invisible_balken {
    height: 25px;
}

.menu_invisible_kreis {
    height: 80px;
    width: 80px;
    border-radius: 40px;
    z-index: 9999;
    margin: 0 auto;
    position: relative;
    top: -40px;
}
.menu_invisible .menu_invisible_kreis i {
    position: relative;
    top: 34px;
    left: 30px;
    font-size: 30pt;
    color: #666;
}
*/
.intro_page {
  height: 100vh; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    .intro_page {
      height: 1024px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
    .intro_page {
      height: 768px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: portrait) {
    .intro_page {
      height: 480px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: landscape) {
    .intro_page {
      height: 320px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: portrait) {
    .intro_page {
      height: 568px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: landscape) {
    .intro_page {
      height: 320px; } }

.intro_page a {
  color: #fff;
  font-size: 20pt;
  padding: 15px 30px;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none; }

.intro_page a:hover,
.intro_page a:active {
  background-color: #fff;
  color: #2e4593; }

.intro_page_left, .intro_page_middle, .intro_page_right {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center; }

/*.intro_page_left {
  background-image: url(img/intro_left.jpg)
}
.intro_page_middle {
  background-image: url(img/intro_middle.jpg)
}
.intro_page_right {
  background-image: url(img/intro_right.jpg)
}*/
.intro_link_studieren, .intro_link_rueckzahlen, .intro_link_investieren {
  height: 200px;
  position: absolute;
  bottom: 80px; }

.studieren_icon, .rueckzahlen_icon, .investieren_icon {
  height: 100px;
  margin-bottom: 50px;
  font-size: 60pt;
  color: #fff;
  text-align: center; }

/* History */
.content.main.history {
  margin-top: 0; }
  .content.main.history > .page-headline > h1 {
    margin-top: 0; }

.history article {
  padding: 0 0 30px;
  text-align: justify; }

.history .full_content {
  display: none; }

.history article h3 {
  margin-top: 10px;
  text-align: left;
  color: #000;
  word-wrap: break-word; }

.history article h3 a {
  color: #000;
  word-wrap: break-word; }

.history article h3 a:hover,
.history article h3 a:active {
  text-decoration: none; }

.history article .aside {
  font-size: 1.8em;
  line-height: 1.0em; }

.history article .aside div {
  margin-left: 12px; }

.history article .aside .img-responsive {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin: 0 auto; }

.history article .read-more {
  display: none; }

.accordion {
  padding: 0; }
  .accordion .title {
    color: #2e4593;
    cursor: pointer; }
    .accordion .title:before {
      transition: transform 0.4s;
      content: "\f0a9";
      font-family: FontAwesome;
      display: inline-block;
      transform: rotate(0deg);
      margin-right: 0.5em; }

.accordion .title.active:before {
  transform: rotate(90deg); }

.accordion strong.title {
  padding-bottom: 10px;
  display: block; }

.accordion .inside {
  display: none;
  margin-bottom: 20px;
  padding: 1em;
  word-break: break-word; }

.studges_video {
  width: 100%;
  margin: 0 auto;
  text-align: center; }

.studges_video img {
  max-width: 100% !important; }

video {
  display: block;
  margin: auto;
  width: 100%; }
  video.start-video {
    margin: 15px 0; }

iframe {
  display: block;
  margin: auto;
  width: 100%;
  height: 500px;
  margin: 25px 0; }

.modal-content iframe {
  height: 60vh; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    .modal-content iframe {
      height: 614.4px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
    .modal-content iframe {
      height: 460.8px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: portrait) {
    .modal-content iframe {
      height: 288px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 480px) and (orientation: landscape) {
    .modal-content iframe {
      height: 192px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: portrait) {
    .modal-content iframe {
      height: 340.8px; } }
  @media only screen and (-webkit-min-device-pixel-ratio: 1) and (device-width: 320px) and (device-height: 568px) and (orientation: landscape) {
    .modal-content iframe {
      height: 192px; } }

@media (max-width: 767px) {
  iframe {
    height: 220px; } }
.player .video-wrapper .video {
  background-size: cover; }

/* Slider Responsive Anpassung */
@media (max-width: 1221px) {
  .slider_wrapper {
    top: 15%; }

  .slidesjs-slide {
    min-height: 400px; }

  .slidesjs-slide img {
    min-height: 524px; } }
@media (max-width: 1060px) {
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:active, .navbar-default .navbar-nav > .open > a:focus {
    color: #666; }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    font-size: 16px !important;
    color: #666; }

  nav .nav .dropdown-menu > .active > a, nav .nav .dropdown-menu > .active > a:hover, nav .nav .dropdown-menu > .active > a:active, nav .nav .dropdown-menu > .active {
    font-size: 16px !important;
    color: #666; }

  .s
  .slider_wrapper {
    top: 10%; }

  .slider_position {
    display: none; }

  .slider_zitat {
    margin-top: 15px;
    font-size: 1.1em; }

  .slider_name {
    font-size: 2.1em; } }
@media (max-width: 805px) {
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:active, .navbar-default .navbar-nav > .open > a:focus {
    color: #666; }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    font-size: 16px !important;
    color: #666; }

  nav .nav .dropdown-menu > .active > a, nav .nav .dropdown-menu > .active > a:hover, nav .nav .dropdown-menu > .active > a:active, nav .nav .dropdown-menu > .active {
    font-size: 16px !important;
    color: #666; }

  .s
  .slidesjs-slide img {
    width: auto;
    height: auto;
    min-height: 350px;
    min-width: 805px;
    max-width: 1200px;
    position: absolute; }

  .slider_wrapper {
    top: 5%;
    left: 50%;
    width: 40%;
    max-height: 90%;
    min-height: 0; }

  .slider_position {
    font-size: 1.3em;
    display: none; }

  .slider_name {
    font-size: 1.6em; }

  .slider_zitat {
    font-size: 1.0em; } }
@media (max-width: 600px) {
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:active, .navbar-default .navbar-nav > .open > a:focus {
    color: #666; }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    font-size: 16px !important;
    color: #666; }

  nav .nav .dropdown-menu > .active > a, nav .nav .dropdown-menu > .active > a:hover, nav .nav .dropdown-menu > .active > a:active, nav .nav .dropdown-menu > .active {
    font-size: 16px !important;
    color: #666; }

  .s
  .s
  .slider_wrapper {
    left: 15%;
    width: 55%; }

  .slider_zitat {
    display: none; } }
/*More Links*/
.read-more {
  background-color: #428BCA;
  border-color: #428BCA;
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  padding: 6px 12px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 10px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap; }

.read-more:hover,
.read-more:active {
  background-color: #3276B1;
  border-color: #3276B1;
  color: #FFFFFF;
  text-decoration: none; }

/* meta data */
.meta {
  font-size: 12px; }

.cats {
  margin-left: 5px;
  margin-right: 10px; }

.tags {
  margin-left: 5px;
  margin-right: 10px; }

/* Sidebar */
.sidebar-wrapper {
  padding-top: 0px;
  border: none; }
  .sidebar-wrapper img {
    max-width: 100%; }
  .sidebar-wrapper .image-bg {
    height: auto;
    width: 100%;
    min-height: 200px;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center; }

.sidebar-wrapper ul {
  padding-left: 25px; }

.sidebar-posts .textwidget,
.sidebar-page .textwidget {
  padding-left: 15px; }

/* Widgets */
.widget {
  margin-bottom: 40px; }

/* Pagenavi */
.wp-pagenavi {
  margin-bottom: 25px;
  text-align: center; }

/* code in comments*/
code {
  white-space: normal; }

/* Footer */
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; }

.footer-wrapper {
  min-height: 100%;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0;
  padding: 0 15px;
  color: #ffffff;
  background-color: #999; }

.footer {
  font-size: 75%;
  padding-top: 15px;
  padding-bottom: 20px;
  color: #ffffff; }

.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #ffffff;
  text-transform: none;
  font-weight: bold; }

.footer a {
  color: #ffffff; }

.footer .btn {
  color: #262F59; }

.footer-menu {
  list-style: none outside none;
  display: inline-block; }

.footer-menu-wrapper ul,
ol {
  margin-left: 0px;
  padding-left: 0px; }

.footer-menu li {
  display: inline;
  padding-right: 10px;
  padding-left: 5px;
  border-right: 1px solid white; }

.footer-menu li:last-child {
  border-right: none; }

.footer,
.copyright a {
  color: #ffffff; }

.footer ul li {
  color: #ffffff; }

/* Copyright*/
.copyright-wrapper {
  background-color: #666;
  /*min-height: 100%;
  height: 100%;*/
  width: 100%;
  top: 0px;
  left: 0;
  padding: 0 15px;
  color: #ffffff;
  font-size: 75%;
  height: 3em; }

.credit {
  font-size: 10px;
  text-transform: none;
  list-style: none outside none;
  display: inline-block;
  text-transform: uppercase; }

.credit li {
  display: inline; }

.copyright {
  padding-top: 10px; }

/* Popup */
.modal-backdrop {
  background: rgba(0, 0, 0, 0.7); }

/* Tables Plugin */
/*table[id^=t] tbody tr td:nth-child(5) {
  background: #a7b8e6;
}
table[id^=t] tbody tr td:nth-child(6),
table[id^=t] tbody tr td:nth-child(7) {
  background: #bcc1df;
}
table[id^=t] tbody tr td:nth-child(8),
table[id^=t] tbody tr td:nth-child(9) {
  background: #7488be !important;
}*/
table[id^=t] tbody tr:first-child td {
  background: none; }

table[id^=t] td {
  padding: 0 3px; }

/* Tablepress */
table sup + span {
  position: absolute;
  background: white;
  border: 1px solid;
  padding: 3px;
  display: none; }
table sup:hover + span,
table sup:active + span {
  display: inline-block; }

.dataTables_wrapper {
  overflow: auto; }

table.tablepress thead tr th,
table.tablepress tfoot tr th {
  background: none !important; }

table.tablepress thead tr th:hover,
table.tablepress thead tr th:active {
  background: none !important; }

table.tablepress td {
  border: none !important;
  padding: 4px 2px; }

/*table.tablepress tbody tr td:nth-child(5) {
  background: #a7b8e6;
}
table.tablepress tbody tr td:nth-child(6) {
  background: #bcc1df;
}
table.tablepress tbody tr td:nth-child(7) {
  background: #bcc1df;
}
table.tablepress tbody tr td:nth-child(8) {
  background: #7488be;
}
table.tablepress tr td:nth-child(9) {
  background: #7488be;
}*/
#basicModal .modal-dialog {
  height: 100%; }

.modal-dialog {
  width: 75%; }

#basicModal .modal-content {
  max-height: 100%;
  overflow: auto; }

/* MEDIA QUERIES */
@media (max-width: 991px) {
  .modal-dialog {
    width: 100%; } }
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-nav > li {
    float: none !important; }

  #intro-header nav .navbar-collapse, #normal-head nav .navbar-collapse {
    position: relative;
    max-height: none; }

  #intro-header nav li, #normal-head nav li {
    padding: 15px 0px; }

  #intro-header nav, #normal-head nav {
    margin-top: 0px;
    margin-bottom: 30px; }

  #intro-header nav ul.navbar-nav li:last-child, #normal-head nav ul.navbar-nav li:last-child {
    border-bottom: none !important; }

  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none; }

  nav .nav .dropdown-menu > li .dropdown-menu {
    background-color: transparent;
    border: 0px;
    position: static; }

  nav .nav .dropdown-menu > li {
    float: none !important; } }
@media (min-width: 992px) {
  nav .nav .dropdown-menu > li {
    position: relative;
    width: 33%;
    float: left; } }
@media (max-width: 767px) {
  .sidebar-wrapper {
    /*width: 275px;*/
    margin: 0 auto 30px auto; }

  .history article .aside div {
    display: none; }

  .headerpics-button {
    display: none; } }
@media (max-width: 991px) {
  .nav .top-main-menu {
    margin-top: -80px; }

  ul.nav li.dropdown ul.dropdown-menu ul.dropdown-menu {
    display: block;
    padding-left: 20px; } }
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #search-head {
    margin-top: 15px;
    padding-right: 15px;
    margin-bottom: 20px; }

  .footer-menu-wrapper {
    float: right; }

  .footer-menu-wrapper ul,
  ol {
    margin-left: 10px; }

  .history article .aside {
    padding-left: 0; }

  .history article {
    background: url("img/borderDotted.png") left top repeat-y; }

  .history article h3 {
    margin-top: 0;
    word-wrap: break-word; }

  .history article h3 a {
    word-wrap: break-word; }

  .sidebar-wrapper {
    border: none;
    margin-top: 20px; } }
@media (min-width: 992px) {
  .header-menu-wrapper {
    float: right; } }
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #search-head {
    margin-top: 15px;
    padding-right: 15px;
    float: right !important; }

  #top-header ul,
  ol {
    margin-left: 10px; }

  .header-menu li:first-child {
    padding-left: 20px; }

  nav.navbar {
    margin: 30px 0 0 0;
    border: none;
    border-radius: 0;
    background: none; }

  .navbar-collapse {
    position: relative;
    width: auto;
    height: auto;
    background: none;
    z-index: auto;
    border: none;
    box-shadow: none;
    float: right;
    padding: 0; }

  /* hover-event aktivieren */
  ul.nav li.dropdown:hover ul.dropdown-menu,
  ul.nav li.dropdown:active ul.dropdown-menu {
    display: block;
    margin-top: 0px;
    background-color: #e5e5e5;
    padding-top: 20px;
    padding-bottom: 10px; }

  ul.nav li.dropdown ul.dropdown-menu li.dropdown ul.dropdown-menu {
    padding-top: 0px; }

  ul.nav li.dropdown ul.dropdown-menu li.dropdown:hover ul.dropdown-menu,
  ul.nav li.dropdown ul.dropdown-menu li.dropdown:active ul.dropdown-menu {
    display: block; }

  ul.navbar-nav li {
    background: none;
    border-bottom: none; }

  ul.navbar-nav li a {
    line-height: 50px;
    background: none !important; }

  ul.navbar-nav li:hover,
  ul.navbar-nav li:active,
  ul.navbar-nav li.current-menu-item,
  ul.navbar-nav li.current-menu-parent {
    border-bottom: 0px;
    border-bottom: 2px solid orange; }

  ul.navbar-nav ul.dropdown-menu {
    border-top: 0px;
    padding: 0;
    width: auto;
    right: 0;
    left: auto; }

  ul.navbar-nav ul.dropdown-menu ul.dropdown-menu {
    border-top: none; }

  ul.navbar-nav ul.dropdown-menu li {
    border-bottom: none;
    color: #666; }

  ul.navbar-nav ul.dropdown-menu li:hover,
  ul.navbar-nav ul.dropdown-menu li:active {
    color: #666;
    border-bottom: none; }

  ul.navbar-nav ul.dropdown-menu li a {
    line-height: 25px;
    color: #666; }

  ul.navbar-nav ul.dropdown-menu li:hover a,
  ul.navbar-nav ul.dropdown-menu li:active a {
    color: #666; }

  ul.navbar-nav ul.dropdown-menu .caret {
    transform: rotate(-90deg); }

  .headerpics-button {
    left: 0;
    right: auto;
    bottom: -200px; } }
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .headerpics-button {
    right: -50px;
    left: auto;
    bottom: -100px; } }
.ansprechpartner {
  width: 100%;
  max-width: 275px;
  margin-bottom: 25px;
  background-color: #e5e5e5;
  color: #666 !important; }

.ansprechpartner h5 {
  padding: 7px 7px 7px 20px;
  font-weight: 700;
  margin: 0;
  border: 1px solid #f0f0f0;
  border-width: 1px 0 1px 0;
  text-transform: uppercase;
  color: #666; }

.ansprechpartner .inside {
  width: 100%;
  min-height: 200px;
  position: relative;
  cursor: pointer; }

.ansprechpartner footer {
  position: relative;
  min-height: 125px;
  width: 100%;
  display: block;
  padding: 10px; }

.ansprechpartner footer strong {
  font-size: 1.2em; }

.ansprechpartner footer .email {
  margin-top: 20px; }

.ansprechpartner footer .email a {
  color: #666 !important;
  text-decoration: none; }

.ansprechpartner footer .email a:hover,
.ansprechpartner footer .email a:active {
  color: #2e4593 !important; }

.teammember {
  margin-bottom: 40px; }

.teammember img {
  margin-right: 15px;
  vertical-align: top;
  float: left;
  cursor: pointer;
  width: 250px; }

.teammember strong {
  font-size: 1.2em; }

.teammember strong span {
  font-weight: 300; }

.teammember div {
  margin-top: 10px; }

.ansprechpartner_modal img {
  width: 100%; }

.sidebarbox {
  width: 100%;
  max-width: 275px;
  margin-bottom: 25px;
  background: #e5e5e5;
  color: #666 !important; }
  .sidebarbox.orange-bg .inside {
    background-color: #ffcc66; }

.sidebarbox h5 {
  text-transform: uppercase;
  font-weight: 700 !important;
  padding: 7px 7px 7px 20px;
  color: #666;
  font-weight: 300;
  margin: 0;
  border: 1px solid #f0f0f0;
  border-width: 1px 0 1px 0; }

.sidebarbox .inside {
  width: 100%;
  position: relative;
  padding: 10px;
  min-height: 100px; }
  .sidebarbox .inside p.inside-img {
    margin-top: 0.5em; }

.sidebarbox .inside.video_box a {
  cursor: pointer; }

.sidebarbox .inside.video_box {
  cursor: pointer; }

.contains_modal .sidebarbox_box a {
  cursor: pointer; }

.sidebarbox input {
  max-width: 100%; }

.sidebarbox input[type=text],
.sidebarbox input[type=email] {
  border: 1px solid #333; }

.sidebarbox form p {
  padding: 0; }

.contact-msg textarea {
  width: 100%; }

.contact-submit {
  float: left; }

.contact-input input {
  width: 100%; }

.wpcf7 .ajax-loader {
  float: none !important; }

.wpcf7 input, .wpcf7 textarea {
  border-top-color: darkgray !important;
  border-bottom-color: darkgray !important;
  border-left-color: darkgray !important;
  border-right-color: darkgray !important;
  border-style: solid !important;
  border-width: 1px !important; }

#menu-menu > li > ul > .third {
  width: 33%; }

#menu-menu > li > ul > .half {
  width: 50%; }

@media (max-width: 991px) {
  #menu-menu > li > ul > .third, #menu-menu > li > ul > .half {
    width: 100%; } }
img.lightbox {
  cursor: pointer; }

@media (max-width: 991px) {
  #intro-header nav .navbar-collapse, #normal-head nav .navbar-collapse {
    margin-top: 80px; } }

/*# sourceMappingURL=main.css.map */
