@import url("https://fonts.verwaltungsportal.de/import/?family=Roboto:300,400,500,600,700,300i,400i,500i,600i,700i");
@import url("https://fonts.verwaltungsportal.de/import/?family=Thasadith:300,400,500,600,700,300i,400i,500i,600i,700i");

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

body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #1b1b1b;
  background: #ffffff;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
}

a {
  color: #b35900;
}

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

b,
strong {
  font-weight: 500;
}

.overflow {
  overflow: clip;
  position: relative;
}
/* -------------------------------------------- logo -------------------------------------------- */

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
  nav.horizontally {
    position: static !important;
  }

  #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: #b35900;
    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 15px;
  }

  .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: 2px;
  }

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

/* menu desktop */

@media (min-width: 992px) {
  nav.horizontally {
    background: #ffffff;
    transition: box-shadow 300ms linear;
  }

  .is-sticky nav.horizontally {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    left: auto !important;
    right: auto !important;
  }

  nav.horizontally,
  .sticky-wrapper {
    position: relative;
    z-index: 62;
    left: 0;
    right: 0;
  }

  header > :is(nav.horizontally, .sticky-wrapper) {
    top: 35px;
  }

  nav.horizontally .navbar-nav {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    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:focus-within, :hover) > 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:is(:hover, :focus-within) > ul {
    z-index: 1003;
  }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
  color: #1b1b1b;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
  padding: 10px 35px;
  font-family: "Thasadith", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (min-width: 992px) {
  nav.horizontally li[class*="toplevel"] + li {
    margin-left: 10px;
  }

  nav.horizontally a[class*="toplevel"] {
    padding: 48px 10px;
    text-align: center;
  }
}

/* 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) {
  background-color: #ff9124;
}

/* secondlevel + thirdlevel dropdown-box */

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

@media (max-width: 991px) {
  nav.horizontally [class*="secondlevel"] > ul {
    margin: 10px;
  }
}

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

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

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

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

  nav.horizontally :is([class*="toplevel"], [class*="secondlevel"]) > ul::before {
    background: #fff;
  }

  nav.horizontally [class*="toplevel"] > ul::before {
    left: 45px;
    top: -10px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
  }

  nav.horizontally [class*="secondlevel"] > ul::before {
    left: -10px;
    top: 10px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
  }

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
  background-color: transparent;
  color: #1b1b1b;
  font-weight: 300;
  text-align: left;
  padding: 10px 35px;
  position: relative;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

@media (min-width: 992px) {
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    text-align: left;
    padding: 7px 20px;
  }
}

@media (min-width: 1200px) {
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    font-size: 1.125rem;
  }
}

/* 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-color: #ff9124;
}

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

/* -------------------------------------------- search ------------------------------------------ */

#search {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  padding-top: 16px;
}

@media (min-width: 992px) {
  #search {
    border-top: none;
    margin-left: clamp(15px, 2vw, 30px);
    padding: 16px 0 16px 15px;
    flex: 0 0 auto;
  }
}

@media (min-width: 1200px) {
  #search {
    padding: 16px 0px 16px 2px;
  }
}

#search img {
  display: block;
  margin: 0 auto;
  padding: 10px;
  border: 2px solid transparent;
  transition: border 200ms linear;
}

@media (min-width: 992px) {
  #search img {
    padding: 4px;
  }
}

#search:is(:hover, :focus) img {
  border-color: #b35900;
}

/* -------------------------------------------- banner ------------------------------------------ */
.theme-nivo .nivo-controlNav .slick-dots li,
.nivo-directionNav a,
a.nivo-control,
a.nivo-control.active,
.nivo-controlNav span {
  color: #ffffff !important;
}

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

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

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

  #headerpic a.nivo-nextNav {
    right: 65px;
  }
}
.theme-nivo .nivo-controlNav {
  z-index: 61 !important;
}
#headerpic {
  padding: 0;
  position: relative;
  background-color: #212121;
}

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

.slider-mask {
  display: block;
  background: linear-gradient(-90deg, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 1) 100%);
}
@media (min-width: 1200px) {
  #headerpic::before {
    background: url("../img/maske-banner.png") center bottom / 100% auto no-repeat;
    height: 120px;
    content: "";
    position: absolute;
    width: 100%;
    bottom: -1px;
    z-index: 60;
    left: 0;
    display: block;
    pointer-events: none;
  }
}

@media (min-width: 1200px) {
  .theme-nivo .nivo-directionNav a {
    top: 20px !important;
    z-index: 150;
  }
}
/* -------------------------------------------- bannerOverlay ------------------------------------------ */

#bannerOverlay {
  color: #ffffff;
  padding-top: 25px;
  padding-bottom: 35px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  font-weight: 400;
  font-size: 18px;
}
@media (min-width: 1200px) {
  #bannerOverlay > .row > div {
    position: relative;
    z-index: 51;
    padding-bottom: clamp(23px, 6vw, 105px);
  }
}

body:not(.index) #bannerOverlay .button-design {
  display: none;
}
@media (min-width: 1200px) {
  #bannerOverlay {
    position: absolute;
    right: 0;
    bottom: 0px;
    left: 0;
    z-index: 53;
  }
}

@media (max-width: 991px) {
  body:not(.index) #bannerOverlay {
    display: none;
  }
}

@media (min-width: 1200px) {
  #bannerOverlay {
    padding-top: clamp(50px, 8vw, 80px);
    padding-bottom: clamp(50px, 8vw, 80px);
  }
}

#bannerOverlay a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 58px 7px 20px;
  border: 1px solid #fff;
  font-weight: 700;
  text-shadow: none;
  display: inline-block;
  font-size: 1.125rem;
  margin-top: clamp(20px, 4vw, 45px);
  backface-visibility: hidden;
  transition: transform 150ms linear;
  position: relative;
}

#bannerOverlay a:is(:hover, :focus) {
  transform: scale(1.1);
}

#bannerOverlay a {
  color: #ffffff;
  background: transparent;
  font-weight: 700;
  font-family: "Thasadith", sans-serif;
}

#bannerOverlay a + a {
  margin-left: 15px;
}
#bannerOverlay a::after {
  background: url(../img/arrow-icon-weiss.png) no-repeat;
  content: "";
  position: absolute;
  width: 25px;
  height: 17px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 0;
  right: 10px;
  display: block;
}
#bannerOverlay a:is(:hover, :focus) {
  color: #1b1b1b;
  background-color: #ff9124;
  border: 1px solid #ff9124;
}
#bannerOverlay a:is(:hover, :focus)::after {
  background: url(../img/arrow-icon.png) no-repeat;
}

#bannerOverlay :is(h1, h2, h3, h4, h5, h6) {
  margin: 0;
  font-size: clamp(32px, 5vw, 60px);
  color: #ffffff;
  font-family: "Thasadith", sans-serif;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  text-transform: uppercase;
}

#bannerOverlay :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
  margin: 0;
  font-size: clamp(32px, 5vw, 60px);
  color: #ff9124;
  font-family: "Thasadith", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

#bannerOverlay :is(h1, h2, h3, h4, h5, h6)::after {
  content: "";
  display: block;
  height: 1px;
  width: 340px;
  background-color: #ffffff;
  margin: 16px 0;
}

@media (min-width: 768px) {
  #bannerOverlay .tabHeadline::after {
    margin: 10px 0 24px 0;
  }
}

@media (max-width: 1199px) {
  #bannerOverlay {
    background-color: #212121;
  }
}
/* ------------------------------------------ styler -------------------------------------------- */

@media (min-width: 992px) {
  #style {
    color: #1b1b1b;
    gap: 12px;
    position: absolute;
    z-index: 53;
    bottom: -60px;
    right: 0;
  }

  #style button {
    border: none;
    color: #1b1b1b;
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 300;
    line-height: 1;
    font-size: 1.5rem;
    min-height: 60px;
    min-width: 50px;
    transition: all 300ms linear;
    padding: 6px 10px 26px 10px;
  }

  #style button:is(:hover, :focus) {
    background: rgba(255, 145, 36, 0.8);
    color: #3b3b3b;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    min-height: 80px;
    font-weight: 500;
  }

  #style > span {
    margin-left: auto;
    margin-right: 20px;
  }
}

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

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

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

/* ------------------------------------------------ counterBox ----------------------------------------------- */

#counterBox {
  padding-top: clamp(30px, 9vw, 130px);
  padding-bottom: clamp(30px, 9vw, 90px);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #212121;
  position: relative;
}
@media (max-width: 767px) {
  #counterBox {
    padding: 180px 0;
  }
}

#counterBox .tabTitle .tabHeadline {
  color: #ff9124;
  font-size: clamp(1.875rem, 9vw, 2.25rem);
  font-weight: 700;
  font-family: "Thasadith", sans-serif;
  font-style: normal;
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#counterBox .tabTitle {
  color: #fff;
  font-weight: 300;
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  text-align: center;
  margin-bottom: 30px;
}
#counterBox .tabUntertitel {
  color: #fff;
  font-weight: 300;
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  text-align: center;
}

#counterBox::before {
  content: "";
  position: absolute;
  background: url(../img/maske-parallax-oben.png) center top no-repeat;
  width: 100%;
  height: 120px;
  top: 00px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  display: block;
}
#counterBox::after {
  content: "";
  position: absolute;
  background: url(../img/maske-parallax-unten.png) center top no-repeat;
  width: 100%;
  height: 120px;
  bottom: 00px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  display: block;
}

/* ------------------------------------------------ @14tab ----------------------------------------------- */

#tab14 {
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 30px;
}

#tab14 .tab14Titel {
  color: #1b1b1b;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 70px;
}
#tab14 .tab14Titel .tabHeadline {
  color: #1b1b1b;
  font-size: clamp(1.875rem, 9vw, 2.875rem);
  font-weight: 700;
  font-family: "Thasadith", sans-serif;
  font-style: normal;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  #tab14 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

#tab14 .tab {
  font-size: 1rem;
  position: relative;
  min-height: 100%;
  padding: 20px;
  color: #1b1b1b;
  background-color: #ededed;
  box-shadow: 10px 10px 20px 0px rgba(27, 27, 27, 0.06);
  -webkit-box-shadow: 10px 10px 20px 0px rgba(27, 27, 27, 0.06);
  -moz-box-shadow: 10px 10px 20px 0px rgba(27, 27, 27, 0.06);
  transition: border-radius 400ms ease-in-out, margin 400ms ease-in-out, padding 400ms ease-in-out, background 400ms ease-in-out, min-height 400ms ease-in-out;
}

#tab14 .tab:hover,
#tab14 .tab:focus {
  background-color: #ff9124;
}

@media (min-width: 768px) {
  #tab14 > .row > *:nth-of-type(1) > .tab {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  #tab14 > .row > *:nth-last-of-type(1) > .tab {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  #tab14 .tab:hover,
  #tab14 .tab:focus {
    border-radius: 30px 30px 0px 0px;
    min-height: calc(100% + 55px);
    margin-top: -55px;
    padding-top: 30px;
  }
  #tab14 > .row > *:nth-last-of-type(1) > .tab:is(:hover, :focus),
  #tab14 > .row > *:nth-of-type(1) > .tab:is(:hover, :focus) {
    border-radius: 30px 30px 0px 0px;
  }
}

@media (min-width: 1200px) {
  #tab14 .tab {
    padding: 20px 35px 45px 35px;
  }
}

#tab14 .tabHeadline {
  color: #1b1b1b;
  font-size: clamp(1.25rem, 4vw, 1.625rem);
  font-weight: 700;
  font-family: "Thasadith", sans-serif;
  font-style: normal;
  text-align: center;
  margin-bottom: 30px;
  hyphens: auto;
  word-wrap: anywhere;
}

#tab14 .tab a {
  color: #1b1b1b;
}

#tab14 > .row > * {
  padding: 0px;
}

@media (max-width: 767px) {
  #tab14 {
    margin: 15px;
  }

  #tab14 > .row {
    border-radius: 30px;
    overflow: hidden;
  }
}

#tab14 .tab .tabHeadline::before {
  content: "";
  pointer-events: none;
  display: block;
  width: 75px;
  height: 75px;
  margin: auto;
  margin-bottom: 10px;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

#tab14 .tab1 .tabHeadline::before {
  background-image: url(../img/lorry-icon.png);
}

#tab14 .tab2 .tabHeadline::before {
  background-image: url(../img/calender-icon.png);
}

#tab14 .tab3 .tabHeadline::before {
  background-image: url(../img/location-icon.png);
}

#tab14 .tab4 .tabHeadline::before {
  background-image: url(../img/world-icon.png);
}

/* -------------------------------------------- teaser ------------------------------------------ */

#teaser {
  padding: clamp(130px, 20vw, 232px) 0;
  background-color: #1b1b1b;
  color: #ffffff;
  font-weight: 400;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-size: 1.25rem;
  position: relative;
}

#teaser::before {
  content: "";
  position: absolute;
  background: url(../img/maske-parallax-oben.png) center top no-repeat;
  width: 100%;
  height: 120px;
  top: 00px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  display: block;
}
#teaser::after {
  content: "";
  position: absolute;
  background: url(../img/maske-parallax-unten.png) center top no-repeat;
  width: 100%;
  height: 120px;
  bottom: 0px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  display: block;
}

#teaser .tabHeadline {
  color: #ff9124;
  font-size: clamp(1.875rem, 9vw, 2.875rem);
  font-weight: 700;
  font-family: "Thasadith", sans-serif;
  font-style: normal;
  margin-bottom: 0px;
}

#teaser a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 58px 7px 20px;
  border: 1px solid #ffffff;
  font-weight: 700;
  text-shadow: none;
  display: inline-block;
  font-size: 1.125rem;
  margin-top: clamp(20px, 4vw, 15px);
  backface-visibility: hidden;
  transition: all 300ms linear;
  position: relative;

  color: #ffffff;
  background: transparent;
  font-weight: 700;
  font-family: "Thasadith", sans-serif;
}

#teaser a::after {
  background: url(../img/arrow-icon-weiss.png) no-repeat;
  content: "";
  position: absolute;
  width: 25px;
  height: 17px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 0;
  pointer-events: none;
  right: 10px;
  display: block;
}

#teaser a:is(:hover, :focus) {
  color: #1b1b1b;
  background-color: #ff9124;
  border: 1px solid #ff9124;
}
#teaser a:is(:hover, :focus)::after {
  background: url(../img/arrow-icon.png) no-repeat;
}
/* -------------------------------------- Partnerlinks ------------------------------------- */

#partner {
  margin: 10px 0 40px 0;
}

#partner .tabHeadline {
  color: #1b1b1b;
  font-size: clamp(1.875rem, 9vw, 2.875rem);
  font-weight: 700;
  font-family: "Thasadith", sans-serif;
  font-style: normal;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
}
/* -------------------------------------- h1 - h6, newslink ------------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
  color: #1b1b1b;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Thasadith", sans-serif;
}

h1,
.h1,
.legacy_h1 {
  font-size: clamp(1.875rem, 5.5vw, 3rem);
}

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

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);
}

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);
}

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

footer {
  font-size: 1rem;
  background: #0f0f0f;
  position: relative;
  padding-top: 30px;
  color: #fff;
}

footer::before {
  content: "";
  position: absolute;
  background: url(../img/maske-parallax-oben-footer.png) center top no-repeat;
  width: 100%;
  height: 120px;
  top: 00px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  display: block;
}
#footer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#footer > .row {
  row-gap: 30px;
}

#footer .buttonEinstieg a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 58px 7px 20px;
  border: 1px solid #ffffff;
  font-weight: 700;
  text-shadow: none;
  display: inline-block;
  font-size: 1.125rem;
  backface-visibility: hidden;
  transition: all 300ms linear;
  position: relative;
  color: #ffffff;
  background: transparent;
  font-weight: 700;
  font-family: "Thasadith", sans-serif;
}
#footer .buttonEinstieg a:is(:hover, :focus) {
  color: #1b1b1b;
  background-color: #ff9124;
  border: 1px solid #ff9124;
}
#footer .buttonEinstieg a::after {
  background: url(../img/arrow-icon-weiss.png) no-repeat;
  content: "";
  position: absolute;
  width: 25px;
  height: 17px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 0;
  pointer-events: none;
  right: 10px;
  display: block;
}
#footer .buttonEinstieg a:is(:hover, :focus)::after {
  background: url(../img/arrow-icon.png) no-repeat;
}
#footer .footerKontakt a {
  color: #ff9124;
  text-decoration: underline;
}
#footer .footerKontakt a:is(:hover, :focus) {
  text-decoration: none;
}
#footer2 {
  background-color: #ff9124;
  color: #1b1b1b;
}
#footer2 > .row {
  row-gap: 30px;
}

:is(#footer, #footer2) :is(h1, h2, h3, h4, h5, h6) {
  color: #ff9124;
  font-size: clamp(1.5rem, 9vw, 1.875rem);
  font-weight: 700;
  font-family: "Thasadith", sans-serif;
  font-style: normal;
  margin-bottom: 30px;
  text-transform: uppercase;
}

#footer {
  padding: clamp(40px, 10vw, 75px) 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

@media (min-width: 992px) {
  #footer > .row > *:not(:last-child) {
    padding-right: 45px;
  }
}

#footer :is(h1, h2, h3, h4, h5, h6)::after {
  content: "";
  display: block;
  height: 2px;
  width: 340px;
  background-color: #ffffff;
  margin: 16px 0;
}

.scrollButton a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 58px 7px 20px;
  border: 1px solid #ffffff;
  font-weight: 700;
  text-shadow: none;
  display: inline-block;
  font-size: 1.125rem;
  margin-top: clamp(20px, 4vw, 45px);
  backface-visibility: hidden;
  transition: all 300ms linear;
  position: relative;
  color: #ffffff;
  background: transparent;
  font-weight: 700;
  font-family: "Thasadith", sans-serif;
}

.scrollButton a::after {
  background: url(../img/arrow-nach-oben-icon-weiss.png) no-repeat;
  content: "";
  position: absolute;
  width: 17px;
  height: 25px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 0;
  pointer-events: none;
  right: 20px;
  display: block;
}
.scrollButton a:is(:hover, :focus) {
  color: #1b1b1b;
  background-color: #ff9124;
  border: 1px solid #ff9124;
}
.scrollButton a:is(:hover, :focus)::after {
  background: url(../img/arrow-up-icon-dunkel.png) no-repeat;
}

#footer2 {
  padding: 20px 0;
}

#footer2 a:not(:hover, :focus) {
  text-decoration: none;
}

#innerfooter ul {
  padding: 0;
  color: #1b1b1b;
}
#innerfooter ul a {
  color: #1b1b1b;
}

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

@media (min-width: 576px) {
  #innerfooter li + li {
    margin-left: clamp(20px, 3vw, 50px);
  }

  #innerfooter li {
    display: inline-block;
  }
}

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

/* #region -------------------------------------- vernetzt -------------------------------------- */

#vernetzt {
  gap: 18px;
  font-size: 0.875rem;
  text-align: right;
  color: inherit;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  color: #ffffff;
}

#vernetzt span span {
  display: block;
}

.vernetztBereich {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: end;
  align-content: end;
  gap: 30px;
}
/* #endregion -------------------------------- vernetzt ----------------------------------------- */
