@charset "UTF-8";
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.ce-headline-center {
  text-align: center;
}
.ce-headline-right {
  text-align: right;
}

.simple-text .card.bg-primary .card-caption {
  color: var(--white);
}
.simple-text .card.bg-dark .card-caption {
  color: var(--white);
}
.simple-text .card.bg-dark .card-headline * {
  color: #FA350f;
}

.row-no-padding {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.row-no-padding > [class*=col-] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mobile-hide-sm {
  display: none;
}
@media screen and (min-width: 575px) {
  .mobile-hide-sm {
    display: inherit;
  }
}

.mobile-hide-md {
  display: none;
}
@media screen and (min-width: 767px) {
  .mobile-hide-md {
    display: inherit;
  }
}

.mobile-hide-lg {
  display: none;
}
@media screen and (min-width: 992px) {
  .mobile-hide-lg {
    display: inherit;
  }
}

.container--small, .container--large {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .container--small {
    width: 540px;
  }
  .container--large {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .container--small {
    width: 705px;
  }
  .container--large {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container--small {
    width: 750px;
  }
  .container--large {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container--small {
    width: 750px;
  }
  .container--large {
    width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container--large {
    width: 1400px;
  }
}
.container--none {
  width: 100%;
}

.page-header .main-menu.header-nav .nav-link {
  font-size: 1.25rem;
  color: var(--body-color);
  font-weight: 700;
  font-family: "Univers Condensed";
  text-transform: uppercase;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.page-header .main-menu.header-nav .nav-link.active {
  color: var(--gray);
}

.phone-link {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  color: #252525;
}

.phone-icon path {
  stroke: #252525;
}

.ce-textpic.ce-center {
  text-align: center;
}
.ce-textpic.ce-right {
  text-align: right;
}

/*
Das frame padding lässt sich dadurch durch
die pt- & pb- klassen überschreiben, da hier
keine !importants genutzt werden.
 */
.frame {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6, .bg-white p, .bg-white ul, .bg-white ol, .bg-white span {
  color: #252525;
}

div.inner-,
div.inner-bg-white {
  background-color: #fff !important;
}
div.inner- h1, div.inner- h2, div.inner- h3, div.inner- h4, div.inner- h5, div.inner- h6, div.inner- p, div.inner- ul, div.inner- ol, div.inner- span,
div.inner-bg-white h1,
div.inner-bg-white h2,
div.inner-bg-white h3,
div.inner-bg-white h4,
div.inner-bg-white h5,
div.inner-bg-white h6,
div.inner-bg-white p,
div.inner-bg-white ul,
div.inner-bg-white ol,
div.inner-bg-white span {
  color: #252525;
}

.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5, .bg-light h6, .bg-light p, .bg-light ul, .bg-light ol, .bg-light span {
  color: #252525;
}

div.inner-bg-light {
  background-color: #f0f0f0 !important;
}
div.inner-bg-light h1, div.inner-bg-light h2, div.inner-bg-light h3, div.inner-bg-light h4, div.inner-bg-light h5, div.inner-bg-light h6, div.inner-bg-light p, div.inner-bg-light ul, div.inner-bg-light ol, div.inner-bg-light span {
  color: #252525;
}

.bg-dark .card-caption {
  color: #fff;
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6, .bg-dark p, .bg-dark ul, .bg-dark ol, .bg-dark span {
  color: #fff;
}

div.inner-bg-dark {
  background-color: #151515 !important;
}
div.inner-bg-dark .card-headline {
  color: #fa350f !important;
}
div.inner-bg-dark .card-caption {
  color: #fff;
}
div.inner-bg-dark h1, div.inner-bg-dark h2, div.inner-bg-dark h3, div.inner-bg-dark h4, div.inner-bg-dark h5, div.inner-bg-dark h6, div.inner-bg-dark p, div.inner-bg-dark ul, div.inner-bg-dark ol, div.inner-bg-dark span {
  color: #fff;
}

.bg-primary a, .bg-primary a:hover {
  color: #fff;
}
.bg-primary .btn-primary {
  color: #fa350f;
  background-color: #fff;
}
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5, .bg-primary h6, .bg-primary p, .bg-primary ul, .bg-primary ol, .bg-primary span {
  color: #fff;
}
.bg-primary p.inner-button {
  background-color: #fff;
  border: 1px solid #fff;
}
.bg-primary p.inner-button a, .bg-primary p.inner-button a:hover {
  color: #fa350f;
  text-decoration: none;
}
.bg-primary p.inner-button:hover {
  background-color: #fff;
  border-color: #fff;
}

.inner-bg-primary {
  background-color: #fa350f !important;
}
.inner-bg-primary a, .inner-bg-primary a:hover {
  color: #fff;
}
.inner-bg-primary .btn-primary {
  color: #fa350f;
  background-color: #fff;
}
.inner-bg-primary h1, .inner-bg-primary h2, .inner-bg-primary h3, .inner-bg-primary h4, .inner-bg-primary h5, .inner-bg-primary h6, .inner-bg-primary p, .inner-bg-primary ul, .inner-bg-primary ol, .inner-bg-primary span {
  color: #fff;
}
.inner-bg-primary p.inner-button {
  background-color: #fff;
  border: 1px solid #fff;
}
.inner-bg-primary p.inner-button a, .inner-bg-primary p.inner-button a:hover {
  color: #fa350f;
  text-decoration: none;
}
.inner-bg-primary p.inner-button:hover {
  background-color: #fff;
  border-color: #fff;
}

.frame-type-text div *:last-child {
  margin-bottom: 0;
}

.teaser__image {
  max-width: 100%;
}

.video-embed-item {
  width: 100%;
  min-height: 450px;
}

.theme-dark {
  background-color: #151515;
}
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4, .theme-dark h5, .theme-dark h6, .theme-dark p, .theme-dark ul, .theme-dark ol, .theme-dark span {
  color: #e3e3e3;
}

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

div.hero-text-image.--gradient {
  min-height: auto;
}

@media screen and (min-width: 992px) {
  .two-col .frame-type-form_formframework {
    padding: 0 3rem;
  }
}

p.inner-button {
  margin-bottom: 0;
  cursor: pointer;
  background-color: #fa350f;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #fa350f;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
p.inner-button a, p.inner-button a:hover {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}
p.inner-button:hover {
  background-color: #de2805;
  border-color: #d22604;
}

.row > div .simple-text:last-child .card,
.row > div .imagetextteaser:last-child .card {
  margin-bottom: 0;
}

/* Layout Contact form section background - MPR - 09.11.2022 */
.bg-stripe {
  background-image: url("../Images/matthaei-x-1.svg");
  background-size: cover;
  background-position: 50% 50%;
  background-color: #F0F0F0 !important;
  padding-block: clamp(3rem, 10vmin, 90px);
}

.bg-stripe > .container-max-width-xl {
  background: #fff;
  padding: 1.5rem !important;
}

@media (min-width: 1200px) {
  .bg-stripe .container-max-width-xl {
    padding: 3rem !important;
  }
}
@media screen and (min-width: 992px) {
  .two-col.bg-stripe .frame-type-form_formframework {
    padding: 0 15px;
  }
}
/*.page-header {
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.07);
}*/
.header-mobile-wrapper {
  display: none;
  position: fixed;
  left: 0;
  background-color: white;
  width: 100%;
  z-index: 999;
  top: 48px;
  border-top: 4px solid var(--light);
}
.header-mobile-wrapper::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: var(--light);
}

body.has-mobile-nav-open .header-mobile-wrapper {
  display: block;
}

.header-nav .nav-link {
  font-size: 1.25rem;
  color: var(--body-color);
  font-weight: 700;
  font-family: "Univers Condensed";
  text-transform: uppercase;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 0.625rem;
  transform: translateY(13px);
}
.header-nav .nav-link.active {
  color: var(--gray);
}
.header-nav .nav-link:hover {
  color: var(--primary);
}

.header-nav-mobile {
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: column;
}
.header-nav-mobile .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  color: var(--body-color);
  font-weight: 700;
  font-family: "Univers Condensed";
  text-transform: uppercase;
  padding-left: 0;
  padding-right: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.header-nav-mobile .nav-link.active {
  color: var(--gray);
}
.header-nav-mobile .nav-link:hover {
  color: var(--primary);
}

.header-logo svg {
  height: 37px;
  width: auto;
}

.scroll-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: calc(3.75% - 25px);
  bottom: 40px;
  width: 70px;
  height: 70px;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  z-index: 4;
  cursor: pointer;
  border-radius: 50%;
  /*transition: transform 0.45s cubic-bezier(0.4, 0, 0, 1) 0s, background 0.2s ease;
  transform: translateY(calc(100% + 45px));*/
}
.scroll-top:hover {
  background: rgba(255, 255, 255, 0.18);
}

.is-not-top .scroll-top {
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0, 1) 0.4s, background 0.2s ease;
}

.scroll-top__icon {
  fill: black;
  width: 34px;
  height: 34px;
}

.btn-scroll-down {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  .btn-scroll-down {
    scroll-behavior: auto;
  }
}
.nav .icon {
  display: none;
}

.header-nav-mobile .nav {
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: column;
}
.header-nav-mobile .nav .icon {
  display: inline;
}

footer .frame-type-menu_pages {
  padding: 0;
}

.imagetextteaser .card,
.simple-text .card {
  border: none;
}

.frame:not(.bg-light, .bg-dark, .bg-primary) .imagetextteaser .card.inner-bg-white,
.frame:not(.bg-light, .bg-dark, .bg-primary) .imagetextteaser .card.inner-,
.frame:not(.bg-light, .bg-dark, .bg-primary) .simple-text .card.inner-bg-white,
.frame:not(.bg-light, .bg-dark, .bg-primary) .simple-text .card.inner- {
  border: 1px solid rgba(0, 0, 0, 0.09);
}

div.checkbox div.form-check {
  padding-left: 0;
}

.projekt-slider .figure {
  margin: 0;
  background-color: #000;
}
.projekt-slider .figure-img {
  margin-bottom: 0;
}
.projekt-slider .caption-row {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .projekt-slider .caption-row {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.projekt-slider .caption-col {
  padding-right: 30px;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .projekt-slider .caption-col {
    padding: 10px 30px;
  }
}
.projekt-slider .figure-caption__title {
  width: 100%;
  color: #fa350f;
  margin: 0;
  font-weight: 800;
}
.projekt-slider .figure-caption {
  color: #fff;
}
@media (min-width: 768px) {
  .projekt-slider .figure-caption {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
    .projekt-slider .slider .slick-prev,
    .projekt-slider .slider .slick-next {
        top: calc(20% - 50px);
    }
    .projekt-slider .caption-row {
        hyphens: auto;
    }
}
#cookieman-settings .card-header>:first-child {
    flex: none;
}

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