@font-face {
  font-family: Opensans;
  src: url('../fonts/OpenSans-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Opensans;
  src: url('../fonts/OpenSans-Bold.ttf') format("truetype"), url('../fonts/OpenSans-ExtraBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensans;
  src: url('../fonts/OpenSans-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Opensans;
  src: url('../fonts/OpenSans-BoldItalic.ttf') format("truetype"), url('../fonts/OpenSans-ExtraBoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Opensans;
  src: url('../fonts/OpenSans-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensans;
  src: url('../fonts/OpenSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensans;
  src: url('../fonts/OpenSans-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Opensans;
  src: url('../fonts/OpenSans-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Opensans;
  src: url('../fonts/OpenSans-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensans;
  src: url('../fonts/OpenSans-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --color--text: #000;
  --color--red: #cb0018;
  --darkred: #851014;
  --color--background-dark: #333;
  --white: white;
  --color--background-light: #eee;
  --color--lightgrey: #ececec;
  --lightred: #f8132e;
  --color--background-middle: #bbb;
  --color--grey: #757575;
  --black: #000;
  --color--transparent: transparent;
  --color--divider-grey: #b4b4b4;
  --color--dark: #252525;
  --color--bright: #dfdfdf;
  --color--green: #95c11f;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--color--text);
  font-family: Opensans, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.navbar {
  background-image: linear-gradient(180deg, var(--color--red), var(--darkred));
  border-bottom: 2px solid #000;
  height: 4rem;
  padding-left: 4rem;
  padding-right: 4rem;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 0 10px 5px #0003;
}

.nav-container {
  width: 100%;
  max-width: 90rem;
}

.nav-brand {
  z-index: 99;
  width: 16rem;
  margin-left: -1rem;
}

.nav-link {
  color: var(--white);
  padding: 1.25rem;
  transition: background-color .2s;
}

.nav-link:hover {
  background-color: var(--color--red);
}

.nav-link.w--current {
  background-color: var(--color--red);
  color: var(--white);
}

.page-section {
  padding: 8rem 4rem;
}

.page-section.top {
  padding-top: 12rem;
}

.page-section.grey {
  background-color: var(--color--background-light);
}

.page-inner {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  transition: background-color .4s;
}

.footer-section {
  background-color: var(--color--background-dark);
  padding: 8rem 4rem;
}

.footer-inner {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.heading-style-h1 {
  color: var(--color--red);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.4;
}

.heading-style-h2 {
  color: var(--color--background-dark);
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  line-height: 1.4;
}

.heading-style-h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
}

.heading-style-h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.heading-style-h5 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

.heading-style-h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .8rem;
  line-height: 1.4;
}

.rich-text-custom h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.4;
}

.rich-text-custom h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  line-height: 1.4;
}

.rich-text-custom h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
}

.rich-text-custom h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.rich-text-custom h5 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}

.rich-text-custom h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: .8rem;
  line-height: 1.4;
}

.rich-text-custom p {
  margin-bottom: 1rem;
}

.rich-text-custom blockquote {
  margin-bottom: 1rem;
  padding: .75rem 1.25rem;
}

.rich-text-custom ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
}

.rich-text-custom li {
  margin-bottom: .25rem;
}

.rich-text-custom ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
}

.rich-text-custom a {
  color: var(--color--red);
}

.paragraph {
  margin-bottom: 1rem;
}

.paragraph.strong {
  font-weight: 700;
}

.paragraph.small {
  margin-bottom: 0;
  font-size: .8rem;
}

.nav-menu-ani {
  width: 250px;
  height: 250px;
}

.dropdown-toggle {
  color: var(--white);
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  transition: background-color .2s;
}

.dropdown-toggle:hover {
  background-color: var(--color--red);
}

.dropdown-icon {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  margin-right: 1.25rem;
}

.dropdown-list {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.dropdown-list.w--open {
  background-color: var(--color--lightgrey);
}

.dropdown-link {
  padding: 1rem 1.25rem;
  transition: color .2s;
}

.dropdown-link:hover {
  color: var(--color--red);
}

.dropdown-link.w--current {
  color: var(--lightred);
}

.garagen-section {
  background-image: url('../images/garagen-rapport.gif');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: contain;
  height: 20vh;
}

.button {
  background-color: var(--color--red);
  border-radius: 4px;
  margin-top: 1rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: background-color .2s;
}

.button:hover {
  background-color: var(--lightred);
}

.button.margin {
  margin-top: 2rem;
}

.list-wrapper {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.gradient-section {
  background-image: linear-gradient(180deg, var(--color--background-middle) 10%, var(--color--background-light) 75%);
  height: 5rem;
}

.link-block {
  width: 100%;
  transition: opacity .2s;
}

.link-block:hover {
  opacity: .5;
}

.link-image {
  width: 100%;
}

.grid-wrapper.magrin {
  margin-top: 4rem;
}

.grid-start {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
}

.two-columns {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.two-columns-inner {
  width: 50%;
}

.image {
  width: 100%;
}

.sticky-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.sticky-wrapper.margin-bottom {
  border-bottom: 1px solid var(--color--background-middle);
  margin-bottom: 6rem;
  padding-bottom: 4rem;
}

.sticky-wrapper.margin-top {
  margin-top: 6rem;
}

.no-sticky {
  border-right: 1px solid var(--color--background-middle);
  width: 75%;
  padding-right: 4rem;
  position: relative;
}

.sticky {
  width: 25%;
  position: sticky;
  top: 15.8rem;
}

.image-wrapper.margin-bottom-4 {
  margin-bottom: 4rem;
}

.image-wrapper.margin-bottom-2 {
  margin-bottom: 2rem;
}

.text-link {
  color: var(--color--red);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.subnavi-wrapper {
  margin-top: 4rem;
}

.link-block-typen {
  border-bottom: 1px solid var(--color--background-middle);
  color: var(--color--text);
  padding: 1rem 1.5rem;
  text-decoration: none;
  transition: padding-left .2s, border-color .2s, background-color .2s, color .2s;
  display: flex;
}

.link-block-typen:hover {
  border-bottom-color: var(--color--grey);
  background-color: var(--color--background-light);
  color: var(--lightred);
  padding-left: 2rem;
}

.link-block-typen.w--current {
  color: var(--color--red);
  font-weight: 700;
}

.link-block-ort {
  width: 100%;
  transition: opacity .2s;
}

.link-block-ort:hover {
  opacity: .7;
}

.table-wrapper {
  margin-bottom: 2rem;
}

.grid-table {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-columns: 12% 38% 30% 20%;
}

.grid-table-inner {
  border-bottom: 1px solid var(--color--background-middle);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: .75rem .25rem;
}

.paragraph-table {
  margin-bottom: 0;
}

.paragraph-table.strong {
  color: var(--color--red);
  font-weight: 700;
}

.paragraph-table.table-header {
  font-weight: 700;
}

.paragraph-table.table-header.small {
  font-size: .7rem;
  display: none;
}

.grid-table-line {
  width: 100%;
  height: 2rem;
  display: none;
}

.cta-item {
  color: var(--color--text);
  text-decoration: none;
}

.cta-item:hover {
  color: var(--lightred);
}

.cta-small {
  font-size: .8rem;
  font-weight: 700;
}

.cta-big {
  font-size: 1.2rem;
}

.cta-inner {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.galerie-lightbox-link {
  width: 100%;
  height: 100%;
}

.galerie-wrapper {
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: transform .2s, opacity .2s;
  overflow: hidden;
}

.galerie-wrapper:hover {
  opacity: .85;
  transform: translate(0, -7px);
}

.grid-galerie {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.galerie-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.stoerer-wrapper {
  aspect-ratio: 1;
  border: .25rem solid var(--white);
  background-color: var(--color--red);
  color: var(--white);
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 11rem;
  min-width: 11rem;
  padding: 1rem;
  transition: background-color .4s;
  display: flex;
  box-shadow: 2px 2px 10px 4px #0003;
}

.stoerer-wrapper:hover {
  background-color: var(--lightred);
}

.stoerer-text {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.stoerer-text-small {
  text-align: center;
  font-size: .8rem;
}

.stoerer-text-preis {
  text-align: center;
  padding-left: .75rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}

.div-block {
  display: flex;
}

.stoerer {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
}

.start-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-end;
  font-size: .9rem;
  display: flex;
}

.link-block-wirtzdesign {
  color: #333;
  flex-direction: column;
  margin-top: 40px;
  text-decoration: none;
  transition: color .2s;
}

.link-block-wirtzdesign:hover {
  color: #e20613;
}

.wd-content {
  align-items: center;
  display: flex;
}

.wd-logo {
  margin-right: 20px;
}

.logo-wirtzdesign {
  width: 50px;
  min-width: 50px;
}

.text-block-wirtzdesign {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 20px;
}

.text-block-wirtzdesign.klein {
  margin-top: 10px;
  font-size: 12px;
}

@media screen and (max-width: 991px) {
  .navbar {
    height: 3.7rem;
    padding-right: 2rem;
  }

  .nav-brand {
    width: 15rem;
  }

  .nav-menu {
    background-color: var(--color--background-dark);
    height: 100vh;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .nav-link {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
    font-size: 1.25rem;
  }

  .nav-menu-button {
    background-color: var(--color--background-light);
    margin-top: .75rem;
    padding: .5rem;
  }

  .nav-menu-button.w--open {
    background-color: var(--color--background-light);
  }

  .nav-menu-ani {
    width: 1.75rem;
    height: 1.75rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    padding-left: 4rem;
    padding-right: 4rem;
    font-size: 1.25rem;
  }

  .dropdown-list {
    padding-top: 0;
    padding-bottom: 0;
  }

  .dropdown-link {
    padding-left: 5rem;
    font-size: 1.25rem;
  }

  .two-columns {
    flex-flow: column;
  }

  .two-columns-inner {
    width: 100%;
  }

  .sticky-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .no-sticky {
    border-right-width: 0;
    width: 100%;
    padding-right: 0;
  }

  .sticky {
    width: 100%;
    position: relative;
    top: auto;
  }

  .grid-table {
    grid-template-columns: 12% 43% 25% 20%;
  }

  .grid-galerie {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .nav-brand {
    padding-left: 0;
  }

  .grid-table {
    grid-template-columns: 1fr;
  }

  .grid-table-inner {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .grid-table-inner.table-header {
    display: none;
  }

  .paragraph-table.strong {
    font-size: 1.25rem;
  }

  .paragraph-table.table-header.small, .grid-table-line {
    display: block;
  }

  .stoerer {
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .start-wrapper {
    flex-flow: column;
  }

  .footer-link-wrapper {
    justify-content: center;
  }
}

@media screen and (max-width: 479px) {
  .navbar {
    padding-left: 2rem;
    padding-right: .75rem;
  }

  .nav-brand {
    margin-left: -1.25rem;
  }

  .nav-link {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav-menu-button {
    background-color: var(--color--background-light);
  }

  .page-section {
    padding: 4rem 2rem;
  }

  .page-section.top {
    padding-top: 8rem;
  }

  .footer-section {
    padding: 4rem 2rem;
  }

  .heading-style-h1 {
    font-size: 1.4rem;
  }

  .heading-style-h2 {
    font-size: 1.25rem;
  }

  .heading-style-h3 {
    font-size: 1.1rem;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .heading-style-h5 {
    font-size: .9rem;
  }

  .rich-text-custom h1 {
    font-size: 1.4rem;
  }

  .rich-text-custom h2 {
    font-size: 1.25rem;
  }

  .rich-text-custom h3 {
    font-size: 1.1rem;
  }

  .rich-text-custom h4 {
    font-size: 1rem;
  }

  .rich-text-custom h5 {
    font-size: .9rem;
  }

  .rich-text-custom a {
    overflow-wrap: break-word;
  }

  .dropdown-toggle, .dropdown-toggle.w--open {
    padding-left: 2rem;
  }

  .dropdown-link {
    padding-left: 3rem;
  }

  .list-wrapper {
    padding-left: 1.5rem;
  }

  .grid-start {
    grid-template-columns: 1fr;
  }

  .sticky-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .sticky-wrapper.margin-bottom {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .sticky-wrapper.margin-top {
    margin-top: 3rem;
  }

  .image-wrapper.margin-bottom-4, .image-wrapper.margin-bottom-2 {
    margin-bottom: 2rem;
  }

  .subnavi-wrapper {
    margin-top: 3rem;
  }

  .grid-table-line {
    height: 1rem;
  }

  .cta-big {
    font-size: 1rem;
  }

  .grid-galerie {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .footer-link-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: center;
  }

  .wd-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .wd-logo {
    margin-right: 0;
  }
}


@font-face {
  font-family: 'Opensans';
  src: url('../fonts/OpenSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans';
  src: url('../fonts/OpenSans-Bold.ttf') format('truetype'), url('../fonts/OpenSans-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans';
  src: url('../fonts/OpenSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans';
  src: url('../fonts/OpenSans-BoldItalic.ttf') format('truetype'), url('../fonts/OpenSans-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans';
  src: url('../fonts/OpenSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans';
  src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans';
  src: url('../fonts/OpenSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans';
  src: url('../fonts/OpenSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans';
  src: url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans';
  src: url('../fonts/OpenSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}