@import url("https://fonts.verwaltungsportal.de/import/?family=Source+Sans+Pro:300,400,500,600,700,800%7CCormorant+Garamond:300,400,500,600,700,800");
body {
   font-family: "Open Sans", sans-serif;
   color: #252525;
   background: #ffffff;
   font-size: 1rem; /* 1rem = 16px */
   line-height: 1.5;
}

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

a {
   color: #92702f;
}

a:hover,
a:focus {
   color: #92702f;
   text-decoration: underline;
}

b,
strong {
   font-weight: 600;
}

.horizontally {
   padding-top: 60px;
   padding-bottom: 45px;
}

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

#logo {
   display: inline-block;
}

#logo img {
   display: block;
}

@media (max-width: 991px) {
   #logo img {
      max-width: 210px;
      width: 100%;
   }
}

/* --------------------------------------- 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;
      padding: 3px;
   }
   #burgerButton:before,
   #burgerButton:after,
   #burgerButtonInner {
      background-color: #eee1c9;
      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) {
   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: #252525;
   font-weight: 400;
   text-align: center;
   padding: 10px 35px 15px 35px;
   font-family: "Source Sans Pro";
   position: relative;
   font-size: 1.25rem;
   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: 30px 0;
      display: flex;
      align-content: center;
      align-items: center;
      justify-content: center;
      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;
   }
}

@media (min-width: 992px) {
   .navbar-default .navbar-nav > li > a::before {
      content: "";
      display: block;
      position: absolute;
      background: url("../img/active.png") no-repeat;
      width: 37px;
      height: 26px;
      left: calc(50% - 16.5px);
      top: 0;
      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;
   }
}

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

.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: #252525;
   background-color: transparent;
}

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

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

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
   background-color: #fff;
   -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
   box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

@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: #252525;
   font-weight: 400;
   text-align: center;
   font-family: "Source Sans Pro";
   padding: 9px 25px;
   font-size: 1.125rem;
   line-height: 1.2;
   text-decoration: none;
}

.navbar-default .navbar-nav > li > .dropdown-menu > li > a::before,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a::before {
   content: "";
   display: block;
   position: absolute;
   left: 0;
   height: 2px;
   width: 25px;
   top: calc(50% - 1px);
   background-color: #92702f;
   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;
}

/* ------------------------------------------ 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 {
   background: #fff;
   color: #92702f;
}

.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: 400px;
   }
   body.index #slider {
      max-height: 600px;
   }
   #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: none;
}

/*---------------- tabs ----------------------*/

#tab1,
#tab2 {
   padding: 130px 25px 100px 25px;
   position: relative;
   height: 100%;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   -webkit-transition: transform 1s 0s ease-in;
   -moz-transition: transform 1s 0s ease-in;
   -o-transition: transform 1s 0s ease-in;
   transition: transform 1s 0s ease-in;
   z-index: 8;
}

#tab1 .tabHeadline,
#tab2 .tabHeadline {
   position: relative;
}

@media (min-width: 992px) {
   #tab1 .tabHeadline::before {
      position: absolute;
      content: "";
      display: block;
      background: url("../img/active3.png") no-repeat;
      width: 43px;
      height: 31px;
      left: calc(50% - 21.5px);
      top: -50px;
   }
   #tab2 .tabHeadline::before {
      position: absolute;
      content: "";
      display: block;
      background: url("../img/active2.png") no-repeat;
      width: 43px;
      height: 31px;
      left: calc(50% - 21.5px);
      top: -50px;
   }
}

#tab1:hover,
#tab1:focus,
#tab2:hover,
#tab2:focus {
   transform: scale(1.07);
   position: relative;
   z-index: 9;
}

#tab1 {
   margin-top: -115px;
}

#tab1::before,
#tab2::before {
   display: block;
   position: absolute;
   content: "";
   height: 80px;
   width: 5px;
   right: 50px;
   top: 0;
}

#tab1::before {
   background-color: #b78c3b;
}

#tab2::before {
   background-color: #fff;
}

#tab1 {
   color: #252525;
   font-size: 1.1875rem;
}

#tab1 .tabHeadline {
   color: #252525;
   font-family: "Cormorant Garamond";
   font-weight: bold;
   font-size: 2.8125rem;
   margin-bottom: 0;
}

#tab2 {
   color: #fff;
   font-size: 1.25rem;
}

#tab2 .tabHeadline {
   color: #fff;
   font-family: "Cormorant Garamond";
   font-weight: bold;
   font-size: 2.8125rem;
   margin-bottom: 0;
}

@media (max-width: 991px) {
   #tab1 {
      margin-top: 0;
   }
   #tab1,
   #tab2 {
      padding: 25px;
   }
}

/*----------------- breaker -------------------*/

#breakerPic {
   line-height: 0;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

@media (min-width: 768px) {
   #breakerPic .banner {
      margin-right: 0;
      margin-left: calc(-50vw + 369px);
   }
}

@media (min-width: 992px) {
   #breakerPic .banner {
      margin-left: calc(-50vw + 481px);
   }
}

@media (min-width: 1200px) {
   #breakerPic .banner {
      margin-left: calc(-50vw + 585px);
   }
}

#breaker {
   background-color: #eee1c9;
}

#breakerText {
   padding-top: 55px;
   padding-left: 40px;
   padding-bottom: 65px;
   padding-right: 40px;
   font-size: 1.25rem;
   position: relative;
   display: flex;
   align-items: end;
}

#breakerText .tabContent{
   position: relative;
}

#breakerText::before {
   display: block;
   position: absolute;
   content: "";
   height: 80px;
   width: 5px;
   right: 15px;
   top: 0;
   background-color: #b78c3b;
}

#breakerText .tabContent::after {
	display: block;
	position: absolute;
	content: "";
	background: url("../img/active3.png") no-repeat;
	width: 43px;
	height: 31px;
	top: -45px;
	left: 0;
}

#breakerText b,
#breakerText strong {
   font-family: "Cormorant Garamond";
   font-weight: bold;
   font-size: 2.5625rem;
}

#overflow {
   overflow: hidden;
}

@media (max-width: 991px) {
   #breakerText {
      padding: 25px;
      padding-top: 70px;
   }
}

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

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

@media (min-width: 992px) {
   #content {
      padding-bottom: 60px;
      padding-top: 60px;
   }
}

/* ----------------------------------------------- news ----------------------------------------------- */

@media (min-width: 576px) {
   #news .newstitle .tabHeadline {
      display: inline-block;
      width: auto;
      margin-bottom: 80px;
      position: relative;
      margin-top: 50px;
   }
   #news .tabHeadline::before {
      display: block;
      position: absolute;
      content: "";
      height: 80px;
      width: 5px;
      right: 50px;
      bottom: -110px;
      background-color: #92702f;
      z-index: 1;
   }
}

#news .newscontent {
   padding: 0 0 70px 0;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   background-color: #fff;
}

#news .newscontent .tab_link_entries {
   display: flex;
   flex-wrap: wrap;
}

#news .newscontent .tab_link_entry {
   background-color: #fff;
   padding: 25px 20px;
   -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.15);
   box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
   #news .newscontent .tab_link_entry {
      padding: 30px 25px;
   }
}

#news .newscontent .tab_link_entry {
   width: 100%;
}

@media (max-width: 575px) {
   #news .newscontent .tab_link_entry {
      margin-bottom: 10px;
   }
}

@media (min-width: 576px) and (max-width: 767px) {
   #news .newscontent .tab_link_entry {
      width: calc(50% - 10px);
   }

   #news .newscontent .tab_link_entry:nth-child(2) {
      margin-left: 10px;
   }

   #news .newscontent .tab_link_entry:last-child {
      width: calc(100% - 10px);
      margin-top: 10px;
      margin-left: 0px;
   }
}

@media (min-width: 768px) {
   #news .newscontent .tab_link_entry {
      width: calc(33.33% - 30px);
   }

   #news .newscontent .tab_link_entry:nth-child(n + 2) {
      margin-left: 30px;
   }
}

#news .newscontent {
   color: #444444;
   font-size: 1.125rem;
   font-weight: 400;
}

#news .newscontent .tab_link_title a {
   font-size: 1.25rem;
   line-height: 1.2;
   font-weight: 700;
   color: #444444;
}

#news .newscontent .tab_link_date {
   font-style: italic;
}

#news .newscontent .tab_link_date {
   font-style: italic;
}

#news .tab_spacer {
   display: none;
}

/* Button */

#news .newscontent .tab_link {
   display: flex;
   flex-wrap: wrap;
}

@media (min-width: 576px) {
   #news .newscontent .tab_link > .tab_link_entries {
      flex: 0 0 88%;
      min-width: 88%;
   }

   #news .newscontent .tab_link > div:nth-child(2) {
      flex: 0 0 12%;
      min-width: 12%;
   }
}

@media (min-width: 992px) {
   #news .newscontent .tab_link > .tab_link_entries {
      flex: 0 0 100%;
      min-width: 100%;
   }
}

#news .newscontent .tab_link > div:nth-child(2) .tab_link_mehr,
#news .newscontent .tab_link > div:nth-child(2) .tab_link_mehr a {
   display: none;
}

#news .tab_link_entry {
   position: relative;
   padding-top: 170px !important;
}

#news .tab_preview_picture {
   position: absolute;
   width: 100%;
   left: 0;
   top: 0;
   height: 150px;
   max-height: 250px;
   line-height: 0;
}

#news .tab_preview_picture img {
   position: absolute;
   width: 360px;
   left: 0;
   top: 0;
   height: 150px;
   max-height: 250px;
   line-height: 0;
}

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

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
   color: #92702f;
   font-weight: bold;
   line-height: 1.2;
   font-family: "Cormorant Garamond", sans-serif;
}

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

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

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

@media (min-width: 768px) {
   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 #eee1c9;
}

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

footer {
   background-color: #eee1c9;
   padding-top: 20px;
   padding-bottom: 20px;
   color: #252525;
   font-size: 1rem;
   position: relative;
}

footer::before {
   display: block;
   position: absolute;
   content: "";
   height: 30px;
   width: 5px;
   left: calc(50% - 2.5px);
   top: 0;
   background-color: #b78c3b;
}

#middle {
   padding-top: 30px;
}

@media (max-width: 991px) {
   footer .row > .col-xs-12:not(:first-child)::before {
      background: #ffffff;
      content: " ";
      height: 1px;
      width: 100%;
      display: block;
      margin: 20px 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;
   }
}

@media (min-width: 768px) {
   footer {
      padding-top: 40px;
      padding-bottom: 40px;
   }
}

#innerfooter {
   line-height: 1.8;
}

#innerfooter ul {
   padding: 0;
}

#innerfooter a {
   color: #252525;
   text-decoration: none;
   display: inline-block;
   font-weight: 300;
}

#innerfooter a:hover,
#innerfooter a:focus {
   color: #252525;
}

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

#vernetzt {
   text-align: right;
   font-size: 0.8125rem;
   color: #252525;
   line-height: 1.3;
   margin: 0 auto;
   font-weight: 300;
   text-decoration: none;
}

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

#vernetzt b {
   color: #252525;
   font-weight: 400;
}

#vernetzt span {
   color: #252525;
}

#vernetzt span span {
   display: block;
}

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

@media (min-width: 992px) {
   .theme-default .nivo-controlNav {
      bottom: 120px !important;
   }
}
