@import url("https://fonts.verwaltungsportal.de/css/?family=Crimson+Text:400,400i,700,700i%7CDM+Sans:400,400i,500,500i,700,700i");

html {
  max-width: 1930px;
  margin-left: auto;
  margin-right: auto;
  background: #f6f1eb;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-color: #48301e #ffffff;
  scrollbar-width: thin;
}

body {
  font-family: "DM Sans", sans-serif;
  color: #4d4d4d;
  background: #ffffff;
  font-size: clamp(1rem, 2vw, 1.125rem);
  /* 1rem = 16px */
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .rowWide {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
  }

  nav.horizontally .rowWide {
    max-width: 1650px;
  }
}

a {
  color: #a31414;
}

#content a,
a:is(:hover, :focus) {
  color: #a31414;
  text-decoration: underline;
}

b,
strong {
  font-weight: 500;
}

.overflow {
  overflow: clip;
  position: relative;
}

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

#logo {
  display: inline-block;
}

#logo img,
#logoMobil img {
  display: block;
}

@media (max-width: 991px) {
  #logoMobil img {
    max-width: calc(100vw - 120px);
    width: 100%;
  }
}

/* #region ---------------------------------- navigation ---------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
  nav.horizontally {
    min-height: 80px;
    padding: 20px 0;
    background: rgba(246, 241, 235, 0.9);
    border-bottom: 1px solid #48301e;
  }

  #burgerButton {
    font-size: 0;
    border: none !important;
    display: block;
    height: 50px;
    width: 60px;
    border-radius: 2px;
    padding: 6px 8px;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  }

  #burgerButton::before,
  #burgerButton::after,
  #burgerButtonInner {
    background-color: #48301e;
    border-radius: 2px;
    position: absolute;
    width: 40px;
    height: 3px;
    left: 10px;
    transition: transform 200ms linear, opacity 200ms linear;
  }

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

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

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

  #burgerButtonInner {
    top: 16px;
  }

  #burgerButton::before {
    top: 24px;
    content: "";
  }

  #burgerButton::after {
    top: 32px;
    content: "";
  }

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

  .navbar-collapse {
    width: calc(100% - 90px);
    max-width: 300px;
    top: 0;
    background: #ffffff;
    position: fixed;
    left: -100%;
    bottom: 0;
    z-index: 100;
    height: auto !important;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    overflow-y: auto;
    transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
    box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
  }

  .navbar-collapse:is([aria-expanded="true"], .in) {
    left: 0;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
  }

  .navbar-header {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 101;
  }

  .dropdown-toggle-button-wrapper {
    top: 7px;
  }

  .dropdown-toggle-button-wrapper2 {
    top: 5px;
  }
}

/* menu desktop */

@media (min-width: 992px) {
  nav.horizontally {
    padding: 33px 0;
    background: #ffffff;
    border-bottom: 1px solid transparent;
    transition: border 300ms ease-in-out, padding 300ms ease-in-out;
  }

  .is-sticky nav.horizontally {
    padding: 20px 0;
    border-bottom-color: #48301e;
  }

  #myNavbar,
  nav.horizontally .navbar-nav {
    column-gap: clamp(10px, 2vw, 25px);
  }

  nav.horizontally .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  nav.horizontally .navbar-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: block !important;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms linear;
  }

  nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
    left: 100%;
    top: 0;
  }

  nav.horizontally .navbar-nav li {
    position: relative;
  }

  nav.horizontally .navbar-nav li:is(.open, :hover)>ul,
  nav.horizontally .navbar-nav li.open:focus-within>ul,
  nav.horizontally .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible;
  }

  nav.horizontally .navbar-nav li.open>ul {
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden;
  }

  nav.horizontally .navbar-nav li:is(:hover, :focus)>ul {
    z-index: 1003;
  }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
  color: #262626;
  font-weight: 500;
  text-align: left;
  padding: 12px 15px;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (max-width: 991px) {
  nav.horizontally li[class*="toplevel"] {
    border-bottom: 1px solid rgba(72, 64, 147, 0.3);
  }

  nav.horizontally a[class*="toplevel"].dropdown-toggle {
    padding-right: 35px;
  }
}

@media (min-width: 992px) {
  nav.horizontally a[class*="toplevel"] {
    padding: 8px 2px;
  }

  nav.horizontally a[class*="toplevel"]::before {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    background-color: #92633f;
    transition: width 300ms linear;
  }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
  color: #92633f;
  background-color: transparent;
}

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::before,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"].open>a::before,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::before {
  width: 100%;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
  background-color: #48301e;
}

@media (max-width: 991px) {
  nav.horizontally [class*="toplevel"]>ul {
    padding: 15px 0;
  }

  nav.horizontally [class*="secondlevel"]>ul {
    padding: 15px 0 15px 15px;
  }
}

@media (min-width: 992px) {
  nav.horizontally [class*="toplevel"] ul {
    padding: 25px 20px;
  }

  nav.horizontally [class*="toplevel"]>ul {
    margin-top: 35px;
    margin-left: -25px;
  }

  .is-sticky nav.horizontally [class*="toplevel"]>ul {
    margin-top: 21px;
  }

  nav.horizontally [class*="secondlevel"]>ul {
    margin-top: -25px;
    margin-left: 40px;
  }

  nav.horizontally :is([class*="toplevel"], [class*="secondlevel"])>ul::before {
    content: "";
    position: absolute;
    display: block;
  }

  nav.horizontally [class*="toplevel"]>ul::before {
    height: 35px;
    left: 0;
    right: 0;
    top: -35px;
  }

  nav.horizontally [class*="secondlevel"]>ul::before {
    width: 40px;
    top: 0;
    bottom: 0;
    left: -40px;
  }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
  color: #ffffff;
  font-weight: 400;
  text-align: left;
  padding: 10px;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (max-width: 991px) {
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    padding-left: 15px;
    padding-right: 15px;
  }

  nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
    padding-right: 35px;
  }
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus) {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

/* #region ------------------------------------- banner ----------------------------------------- */

#slider {
  max-height: clamp(300px, 42vw, 400px);
  position: relative;
}

@media (min-width: 992px) {
  body.index #slider {
    max-height: clamp(400px, 62vw, 650px);
  }

  #headerpic .nivo-directionNav a {
    top: 30px;
  }

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

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

  #headerpic .nivo-controlNav {
    bottom: 14px;
  }
}

#headerpic {
  padding: 0;
  overflow: hidden;
  position: relative;
}

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

.slider-mask {
  display: none;
}

/* bannerOverlay */

#bannerOverlay {
  padding: 40px clamp(15px, 3vw, 40px) 40px clamp(15px, 3vw, 40px);
  background: rgba(246, 241, 235, 0.9);
  display: flex;
  justify-content: center;
}

@media (min-width: 1200px) {
  #bannerOverlay {
    position: absolute;
    z-index: 12;
    bottom: 60px;
    left: 60px;
    right: 60px;
    font-size: 1.25rem;
    max-width: 750px;
  }
}

#bannerOverlay * {
  color: #48301e;
}

#bannerOverlay a {
  text-decoration: underline;
}

/* #endregion ---------------------------------- banner ----------------------------------------- */

/* ------------------------------------------- buttonStyle -------------------------------------- */

.buttonStyle a:not([href^="mailto:"]):not(.has-image):not([rel]) {
  display: inline-block;
  background: #92633f;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 19px;
  padding: 7px 20px;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  nav.horizontally .buttonStyle a:not([href^="mailto:"]):not(.has-image):not([rel]) {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.buttonStyle a:not([href^="mailto:"]):not(.has-image):not([rel]):is(:hover, :focus) {
  background: #a31414;
  color: #ffffff;
}

/* #region ------------------------------------- banner ----------------------------------------- */

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

.newsticker {
  margin-bottom: 40px;
  color: #4d4d4d;
}

.newsticker a {
  color: #a31414;
}

.newsticker-position {
  margin-top: 40px !important;
}

#content {
  text-align: left;
  padding-top: 9px;

  padding-bottom: clamp(40px, 7vw, 100px);
}

body:not(.index) #content {
  padding-top: clamp(40px, 7vw, 100px);
}

@media (min-width: 1200px) {
  #content>.row::before {
    content: "";
    position: absolute;
    background: url(../img/foehn.png);
    width: 157px;
    height: 129px;
    top: -70px;
    z-index: 12;
    pointer-events: none;
    left: -210px;
    background-repeat: no-repeat;
    display: block;
  }
}

@media (min-width: 992px) {
  body:not(.index) #content {
    padding-top: 40px;
  }
}

/* #region ----------------------------------- serviceTab---------------------------------------- */

#serviceTabs {
  padding: clamp(40px, 7vw, 90px) 0 clamp(40px, 7vw, 100px) 0;
  background: #f6f1eb;
  position: relative;
}

#serviceTabs::before {
  content: "";
  position: absolute;
  background: url(../img/ornament-rahmen-links_.png);
  background-repeat: repeat;
  width: 100px;
  height: 102px;
  top: 0;
  left: 0;
  z-index: 12;
  pointer-events: none;
  background-repeat: no-repeat;
  display: block;
}

#serviceTabs::after {
  content: "";
  position: absolute;
  background: url(../img/ornament-rahmen-rechts_.png);
  background-repeat: repeat;
  width: 100px;
  height: 102px;
  bottom: 0;
  right: 0;
  z-index: 12;
  pointer-events: none;
  background-repeat: no-repeat;
  display: block;
}

@media (min-width: 992px) {
  #serviceTabs {
    background: #f6f1eb url("../img/friseur-werkzeuge.png") top right -45px / auto no-repeat;
  }
}

@media (min-width: 1200px) {
  #serviceTabs {
    background: #f6f1eb url("../img/friseur-werkzeuge.png") top right 45px / auto no-repeat;
  }
}

@media (min-width: 1300px) {
  #serviceTabs::before {
    top: 40px;
    left: 40px;
  }

  #serviceTabs::after {
    bottom: 40px;
    right: 40px;
  }
}

#serviceTabs>.row,
#serviceTabs .serviceTabsIcons>.row {
  row-gap: 30px;
}

@media (max-width: 991px) {
  #serviceTabs>.row>*+*:last-child {
    padding-top: 25px;
    border-top: 1px solid #92633f;
  }
}

@media (min-width: 992px) {

  #serviceTabs>.row,
  #serviceTabs .serviceTabsIcons>.row {
    row-gap: 40px;
  }

  #serviceTabs>.row>*+*:last-child {
    border-left: 1px solid #92633f;
  }

  #serviceTabs .buttonStyle {
    padding-left: 40px;
  }
}

#serviceTabs .serviceTabsIcons .tab {
  hyphens: auto;
  color: #333333;
}

#serviceTabs .serviceTabsIcons .tab::before {
  content: "";
  pointer-events: none;
  height: 80px;
  width: 80px;
  display: inline-block;
  border-radius: 4px;
  background: #ffd2c6 center / 40px auto no-repeat;
  margin-bottom: 15px;
}

/* ----------------------------------------------- @7ev events -------------------------------------------- */

#ev7>.row {
  row-gap: 30px;
}

#ev7 .ev7Banner {
  height: 100%;
  background: center / cover no-repeat;
}

#ev7 .ev7Tab {
  display: grid;
  gap: clamp(30px, 3vw, 45px);
}

#ev7 .tab {
  font-size: 1rem;
}

#ev7 .tab_date {
  font-style: italic;
}

#ev7 .tab_link {
  position: relative;
}

#ev7 .tab_link_entries {
  display: grid;
  gap: 15px;
}

#ev7 .tab_link_entry {
  color: #333333;
  font-size: 1rem;
  position: relative;
  min-height: 90px;
  padding: 11px 22px 11px 110px;
  display: grid;
  border-bottom: none !important;
}

@media (max-width: 575px) {
  #ev7 .tab_link_entry {
    padding: 110px 22px 22px 22px;
  }
}

@media (min-width: 992px) {
  #ev7 .tab_link_entries {
    gap: 40px;
  }
}

#ev7 .tab_link_entry::after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  width: 85px;
  height: 100%;
  border-radius: 4px;
  background: url("../img/icon-info.png") center no-repeat, #92633f;
}

@media (max-width: 575px) {
  #ev7 .tab_link_entry::after {
    width: 100%;
    height: 85px;
  }
}

#ev7 .tab_link_title {
  order: 1;
}

#ev7 .tab_link_mandat {
  order: 2;
}

#ev7 .tab_date {
  order: 3;
}

#ev7 .vorschau {
  order: 2;
}

#ev7 .tab_link_title a {
  display: block;
  color: #333333;
  font-weight: 500;
  font-size: 1.125rem;
}

#ev7 .tab_link_mandat a {
  color: #333333;
}

#ev7 .tab_preview_picture,
#ev7 .tab_spacer,
#ev7 .tab_link_entry>div:nth-last-child(2) {
  display: none;
}

/* ----------------------------------------- @7ev tab_link_mehr ---------------------------------------- */

#ev7 .tab_link_mehr {
  font-size: 0;
  position: absolute;
  z-index: 12;
  left: 0;
  right: 0;
  bottom: -135px;
  margin: auto;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  #ev7 .tab_link_mehr {
    left: unset;
    top: -80px;
    right: -145px;
    bottom: 0;
  }
}

@media (min-width: 992px) {
  #ev7 .tab_link_mehr {
    right: -165px;
  }
}

@media (min-width: 1200px) {
  #ev7 .tab_link_mehr {
    right: -200px;
  }
}

#ev7 .tab_link_mehr a {
  text-decoration: none;
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #ccdc65;
  font-style: italic;
  font-size: 1.125rem;
  padding: 25px 20px;
  width: 124px;
  height: 124px;
  border-radius: 100%;
  background: #004261;
  transition: color 300ms linear, background 300ms linear;
}

#ev7 .tab_link_mehr a:hover,
#ev7 .tab_link_mehr a:focus {
  color: #004261;
  background: #ccdc65;
}

/* #endregion -------------------------------- serviceTab---------------------------------------- */

/* --------------------------------------------- zitatTab --------------------------------------- */

#zitatTab>.row {
  padding-top: clamp(50px, 10vw, 120px);
  background: url("../img/schere.png") right bottom / 20vw auto no-repeat;
}

@media (min-width: 992px) {
  #zitatTab>.row {
    padding-bottom: 20px;
    background-position: right 140px bottom 20px;
    background-size: auto;
  }
}

/* #region -------------------------------------- teamTab --------------------------------------- */

#teamTab {
  padding: clamp(40px, 7vw, 70px) 0 clamp(40px, 7vw, 91px) 0;
  position: relative;
  z-index: 2;
}

#teamTab .teamTabHG {
  padding: clamp(30px, 4vw, 60px);
  background: center no-repeat;
}

#teamTab .tab {
  padding: clamp(40px, 7vw, 90px) clamp(15px, 4vw, 80px);
  background: rgba(246, 241, 235, 0.9);
}

#teamTab .tab * {
  color: #48301e;
}

#teamTab .tab :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 45px;
}

#teamTab .buttonStyle a {
  background: #92633f;
  color: #fff;
}

#teamTab .buttonStyle a:is(:hover, :focus) {
  background: #a31414;
}

@media (min-width: 1200px) {
  #teamTab>.row::before {
    content: "";
    position: absolute;
    background: url(../img/ornament-rahmen-links_.png);
    background-repeat: repeat;
    width: 100px;
    height: 102px;
    top: 90px;
    z-index: 12;
    pointer-events: none;
    left: 100px;
    background-repeat: no-repeat;
    display: block;
  }

  #teamTab>.row::after {
    content: "";
    position: absolute;
    background: url(../img/ornament-rahmen-rechts_.png);
    background-repeat: repeat;
    width: 100px;
    height: 102px;
    bottom: 90px;
    z-index: 12;
    pointer-events: none;
    right: 100px;
    background-repeat: no-repeat;
    display: block;
  }
}

/* #endregion ----------------------------------- teamTab --------------------------------------- */

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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
  color: #48301e;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Crimson Text", sans-serif;
}

:is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
  font-weight: 700;
}

:is(#bannerOverlay, #serviceTabs .tabHeadline, #zitatTab, #teamTab) :is(h1, h2, h3, h4, h5, h6),
h1,
.h1,
.legacy_h1 {
  font-size: clamp(1.875rem, 5.5vw, 3.125rem);
}

h2,
.h2,
.legacy_h2 {
  font-size: clamp(1.75rem, 5vw, 2.8125rem);
}

#contactTabs :is(h2, h3, h4, h5, h6),
footer .tab .tabHeadline,
h3,
.h3,
.legacy_h3 {
  font-size: clamp(1.625rem, 4.5vw, 2.5rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
  font-size: clamp(1.5rem, 4vw, 2.1875rem);
}

#infoTabs .tab :is(h1, h2, h3, h4, h5, h6),
h5,
.h5,
.legacy_h5 {
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
}

h6,
.h6,
.legacy_h6 {
  font-size: clamp(1.25rem, 3vw, 1.5625rem);
}

/* headings margin */

:is(#infoTabs, #zitatTab) :is(h1, h2, h3, h4, h5, h6),
footer .tab .tabHeadline {
  margin-bottom: 20px;
}

#bannerOverlay :is(h1, h2, h3, h4, h5, h6),
#contactTabs .tabHeadline {
  margin-bottom: 25px;
}

/* #region ----------------------------------- footer ------------------------------------------- */

footer {
  padding-bottom: clamp(40px, 7vw, 80px);
  position: relative;
}

@media (min-width: 992px) {
  footer::after {
    content: "";
    position: absolute;
    background: url(../img/ornament.png);
    width: 303px;
    height: 321px;
    bottom: -265px;
    z-index: 12;
    pointer-events: none;
    left: 44.2%;
    right: 0;
    display: flex;
    background-repeat: no-repeat;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  footer>.row>* {
    padding: 0;
  }
}

footer .tab {
  background: #48301e;
  padding: 41px clamp(15px, 3vw, 40px) 35px clamp(15px, 3vw, 40px);
}

@media (min-width: 1200px) {
  footer>.row .tab::before {
    content: "";
    position: absolute;
    background: url(../img/frisur.png);
    width: 182px;
    height: 146px;
    top: -160px;
    z-index: 0;
    pointer-events: none;
    left: 0;
    background-repeat: no-repeat;
    display: block;
  }
}

footer .tab * {
  color: #ffffff;
}

footer .tab a {
  text-decoration: underline;
}

/* footerInnerBox */

.footerInnerBox {
  background: #f6f1eb;
  margin: 0 !important;
  position: relative;
}

@media (max-width: 575px) {
  .footerInnerBox>*+* {
    border-top: 1px solid #48301e;
  }
}

@media (min-width: 576px) {
  .footerInnerBox>*+* {
    border-left: 1px solid #48301e;
  }
}

.footerInnerBox>* {
  padding: 40px clamp(15px, 3vw, 40px);
}

/* innerfooter */

#innerfooter ul {
  padding: 0;
}

#innerfooter li {
  display: block;
  line-height: 1.9;
}

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

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

/* vernetzt */

#vernetzt {
  text-align: left;
  font-size: 1rem;
  color: #4d4d4d;
  line-height: 1.3;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
}

#vernetzt span {
  display: block;
}

#vernetzt img {
  margin-bottom: 15px;
}

/* iframetab */

footer .iframeTab {
  min-height: 250px;
}

footer .iframeTab :is(.row, .row > *) {
  position: static !important;
}

footer :is(.iframe-wrapper-manual-enabling, iframe) {
  width: 100% !important;
  min-width: 100% !important;
}

@media (min-width: 768px) {
  footer :is(.iframe-wrapper-manual-enabling, iframe) {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    left: 0;
    height: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
  }
}

/* #endregion -------------------------------- footer ------------------------------------------- */