@font-face { font-family: 'Roboto';
             src: url('../font/roboto-thin-webfont.woff') format('woff');
             font-weight: 100; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-thinitalic-webfont.woff') format('woff');
             font-style: italic;
             font-weight: 100; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-light-webfont.woff') format('woff');
             font-weight: 300; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-lightitalic-webfont.woff') format('woff');
             font-style: italic;
             font-weight: 300; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-regular-webfont.woff') format('woff');
             font-weight: 400; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-italic-webfont.woff') format('woff');
             font-style: italic;
             font-weight: 400; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-medium-webfont.woff') format('woff');
             font-weight: 500; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-mediumitalic-webfont.woff') format('woff');
             font-style: italic;
             font-weight: 500; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-bold-webfont.woff') format('woff');
             font-weight: 700; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-bolditalic-webfont.woff') format('woff');
             font-style: italic;
             font-weight: 700; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-black-webfont.woff') format('woff');
             font-weight: 900; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-blackitalic-webfont.woff') format('woff');
             font-style: italic;
             font-weight: 900; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-thin-webfont.woff2') format('woff2');
             font-weight: 100; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-thinitalic-webfont.woff2') format('woff2');
             font-style: italic;
             font-weight: 100; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-light-webfont.woff2') format('woff2');
             font-weight: 300; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-lightitalic-webfont.woff2') format('woff2');
             font-style: italic;
             font-weight: 300; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-regular-webfont.woff2') format('woff2');
             font-weight: 400; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-italic-webfont.woff2') format('woff2');
             font-style: italic;
             font-weight: 400; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-medium-webfont.woff2') format('woff2');
             font-weight: 500; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-mediumitalic-webfont.woff2') format('woff2');
             font-style: italic;
             font-weight: 500; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-bold-webfont.woff2') format('woff2');
             font-weight: 700; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-bolditalic-webfont.woff2') format('woff2');
             font-style: italic;
             font-weight: 700; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-black-webfont.woff2') format('woff2');
             font-weight: 900; }
@font-face { font-family: 'Roboto';
             src: url('../font/roboto-blackitalic-webfont.woff2') format('woff2');
             font-style: italic;
             font-weight: 900; }

html {
/* hyphens */
   -moz-hyphens: auto;
   -o-hyphens: auto;
   -webkit-hyphens: auto;
   -ms-hyphens: auto;
   hyphens: auto;
}

/*Cookie-Zusatz Anfang*/

@use postcss-cssnext;
/* helpers/fixed.css */

.cookie-fixed {
  position: fixed;
  will-change: transform;
  line-height: 1.5em;
}

.cookie-fixed--top {
  top: 0;
  left: 0;
  right: 0;
}

/* modules/button.css */

:root {
  --buttonBorderWidth: 0.0625em;
  --buttonPaddingHorizontal: 1em;
  --buttonPaddingVertical: 0.5em;

  --buttonHoverBackgroundColor: #dc032e;
}

button {
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  margin: 0;
  padding: 0;
}

.cookie-button {
  border-style: solid;
  border-width: var(--buttonBorderWidth);
  padding: var(--buttonPaddingVertical) var(--buttonPaddingHorizontal);
  position: relative;
  width: 80px;
}

.cookie-button::after {
  background-color: var(--buttonHoverBackgroundColor);
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
  will-change: opacity;
  z-index: -1;
}

.cookie-button:focus::after,
.cookie-button:hover::after {
  opacity: 1;
}

/* modules/cookie-disclaimer.css */

:root {
  --cookieDisclaumerBackgroundColor: rgba(0,0,0,0.7);
  --cookieDisclaumerColor: #fff;
  --cookieDisclaumerFontSize: 0.75rem;
  --cookieDisclaumerPadding: 0.75rem;
}

.cookie-disclaimer {
  background-color: var(--cookieDisclaumerBackgroundColor);
  color: var(--cookieDisclaumerColor);
  font-size: var(--cookieDisclaumerFontSize);
  opacity: 0;
  padding: var(--cookieDisclaumerPadding);
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.5s;
}

.cookie-disclaimer.is-active {
  opacity: 1;
  transform: translateY(0);
  z-index: 3600;
}

.cookie-disclaimer :first-child {
  margin-top: 0;
}

.cookie-disclaimer :last-child {
  margin-bottom: 0;
}

/* modules/media.css */

:root {
  --mediaObjectMarginHorizontal: 1em;
}

.media {
  display: flex;
}

.media--center {
  align-items: center;
}

.media__object--left {
  margin-right: var(--mediaObjectMarginHorizontal);
}

.media__object--right {
  margin-left: var(--mediaObjectMarginHorizontal);
  order: 1;
}

.media__body {
  flex-grow: 1;
}

/*Cookie-Zusatz Ende*/

h1 {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 29px;
  line-height: 40px;
  font-weight: 500;
}

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

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 28px;
  font-weight: 300;
}

p {
  margin-bottom: 10px;
}

.header-section {
  position: fixed;
  z-index: 3000;
  overflow: hidden;
  width: 100%;
  height: 252px;
  margin-top: -251px;
  border-top: 15px none #dc032e;
  background-color: #fff;
}

.navbar {
  margin-top: 70px;
  background-color: transparent;
}

.navmenu {
  z-index: 200;
  float: none;
  text-align: center;
}

.navlink {
  margin-left: 15px;
  padding: 0px 0px 59px 17px;
  color: #424446;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.navlink-fr {
  margin-left: 8px;
  padding: 0px 0px 59px 17px;
  color: #424446;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.navlink:hover {
  background-image: url('../images/Punkt.jpg');
  background-position: 0px 7px;
  background-size: 12px;
  background-repeat: no-repeat;
}

.navlink.w--current {
  color: #dc032e;
}

.navlink.navlink-first {
  margin-left: 0px;
}

.navlink.navlink-first.w--current {
  color: #424446;
}

.navlink.navlink-last {
  margin-right: 16px;
}

.body {
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  color: #707476;
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
}

.block-red {
  width: 100%;
  height: 100%;
  background-color: #dc032e;
  color: #fff;
  font-size: 68px;
  line-height: 80px;
  font-weight: 500;
  text-transform: uppercase;
}

.text-block-red {
  position: absolute;
  left: 20px;
  bottom: 0px;
  color: #fff;
  font-size: 50px;
  line-height: 56px;
  font-weight: 500;
  text-transform: uppercase;
}

.block-img-div {
  width: 100%;
  height: 100%;
}

.block-img-div.hover-block {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 30;
}

.block-img {
  width: 100%;
  height: 100%;
}

.block-img.block-img-hover {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 10;
}

.block-col {
  padding: 0px;
  border: 1px solid #fff;
}

.logo {
  margin-top: 25px;
  margin-bottom: 22px;
  margin-left: -234px;
  float: left;
}

.notfallnummer-div {
  margin-top: 38px;
  margin-right: -202px;
  float: right;
  background-color: #e9e9e9;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .5);
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.notfallnummer-div-fr {
  margin-top: 38px;
  margin-right: -202px;
  float: right;
  background-color: #e9e9e9;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .5);
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.notfallnummer-top {
  padding: 15px 20px 4px;
  border-bottom: 2px solid #f7f7f7;
  color: #dc032e;
  font-size: 17px;
  line-height: 9px;
  font-weight: 700;
}

.notfallnummer-top-en {
  padding: 15px 20px 4px;
  border-bottom: 2px solid #f7f7f7;
  color: #dc032e;
  font-size: 15px;
  line-height: 9px;
  font-weight: 700;
}

.notfallnummer-top-fr {
  padding: 10px 20px 1px;
  border-bottom: 2px solid #f7f7f7;
  color: #dc032e;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}

.notfallnummer-bottom {
  margin-bottom: -5px;
  padding-top: 5px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 700;
}

.loeschen {
  height: 500px;
}

.news {
  margin-top: 50px;
  margin-bottom: 60px;
}

.news-icon {
  margin-top: 22px;
  margin-right: 10px;
  float: left;
}

.news-head {
  padding-top: 0px;
  font-size: 23px;
}

.news-datum {
  display: inline-block;
  margin-right: 20px;
}

.news-headline {
  display: inline-block;
}

.news-bild-quer {
  margin-bottom: 20px;
}

.start-tabelle-ul1 {
  font-weight: 500;
}

.start-tabelle-ul2 {
  text-align: center;
}

.start-tabelle-li2 {
  padding-top: 4px;
  padding-bottom: 7px;
  border-bottom: 1px solid #fff;
  background-color: #e7e7e7;
}

.start-tabelle-li2.dunkelgrau-text-bg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #666c6e;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  text-transform: uppercase;
}

.start-tabelle-li1 {
  margin-top: 0px;
  padding-left: 20px;
  border-bottom: 1px solid #fff;
  background-color: #e7e7e7;
}

.start-tabelle-li1.rot-text-bg {
  padding-top: 15px;
  background-color: #dc032e;
  color: #fff;
  font-size: 21px;
  text-transform: uppercase;
}

.start-tabelle-li-p {
  margin-bottom: 5px;
  padding-top: 6px;
}

.start-tabelle-col1 {
  padding-right: 2px;
}

.start-tabelle-col2 {
  padding-right: 2px;
  padding-left: 2px;
}

.start-tabelle-col3 {
  padding-left: 2px;
}

.video-start {
  margin-top: 50px;
}

.footer-section {
  margin-top: 80px;
  padding-top: 35px;
  padding-bottom: 15px;
  background-color: #dc032e;
  background-image: url('../images/MAS.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 13px;
  line-height: 19px;
}

.social-media {
  width: 100px;
  float: left;
  background-color: #676d6f;
}

.facebook-footer {
  display: block;
  margin-top: 12px;
  margin-right: 12px;
  margin-bottom: 12px;
  text-align: right;
}

.youtube-footer {
  display: block;
  margin-right: 12px;
  margin-bottom: 12px;
  text-align: right;
}

.instagram-footer {
  display: block;
  margin-right: 12px;
  margin-bottom: 12px;
  text-align: right;
}

.footer-links {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-phone-link {
  color: #fff;
  text-decoration: none;
}

.footer-link-mail {
  color: #fff;
  text-decoration: none;
}

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

.a-footer {
  color: #fff;
  text-decoration: none;
}

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

.block-img-headline {
  position: absolute;
  left: 20px;
  bottom: 0px;
  z-index: 20;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
  text-transform: uppercase;
}

.block-img-p {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.navi-dropdown-list.w--open {
  position: absolute;
  left: -2109px;
  bottom: -47px;
  z-index: 50;
  width: 5000px;
  margin-top: 40px;
  background-color: hsla(0, 0%, 90%, .9);
  text-align: center;
}

.navi-dropdown-list.navi-dropdown-list-2.w--open {
  left: -2489px;
}

.navi-dropdown-list.navi-dropdown-list-3.w--open {
  left: -2679px;
}

.navi-dropdown-list.navi-dropdown-list-4.w--open {
  left: -2839px;
}

.navi-dropdown-link {
  position: static;
  display: inline-block;
  padding-right: 11px;
  padding-left: 11px;
  color: #424446;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.navi-dropdown-link:hover {
  color: #dc032e;
}

.navi-dropdown-link.w--current {
  color: #dc032e;
}

.head-phone-notfall {
  color: #707476;
  text-decoration: none;
}

.head-phone-notfall:hover {
  text-decoration: none;
}

.navlink-verlinkt {
  color: #424446;
  text-decoration: none;
}

.navlink-verlinkt:hover {
  color: #424446;
  text-decoration: none;
}

.navlink-verlinkt.w--current {
  color: #dc032e;
}

.slider-section {
  background-color: #666c6e;
}

.slider-section-hell {
  background-color: #E7E7E7;
}

.slider {
  height: 100%;
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
  background-color: transparent;
}

.slider-lightbox {
  display: block;
}

.slidenav {
  margin-right: 15px;
  text-align: right;
}

.slider-img {
  width: 100%;
}

.slide-right-arrow {
  width: 50%;
  opacity: 0;
}

.slide-right-arrow:hover {
  opacity: 1;
}

.slide-right-arrow-icon {
  display: block;
  margin-right: 20px;
}

.slide-left-arrow-icon {
  margin-right: 0px;
  margin-left: 20px;
}

.slide-left-arrow {
  width: 50%;
  opacity: 0;
}

.slide-left-arrow:hover {
  opacity: 1;
}

.h1-folgeseite {
  margin-top: 60px;
  padding-left: 46px;
  background-image: url('../images/Punkt_gross.jpg');
  background-position: 0px 4px;
  background-repeat: no-repeat;
  font-size: 44px;
  line-height: 44px;
  text-transform: uppercase;
}

.h1-folgeseite-contact {
  margin-top: 180px;
  padding-left: 46px;
  background-image: url('../images/Punkt_gross.jpg');
  background-position: 0px 4px;
  background-repeat: no-repeat;
  font-size: 44px;
  line-height: 44px;
  text-transform: uppercase;
}

.liste-icon {
  margin-top: 20px;
  font-size: 23px;
  font-weight: 500;
  text-transform: uppercase;
}

.liste-icon.ohne-hintergrund-liste {
  margin-top: 10px;
}

.li-pfeil {
  display: inline-block;
  margin-top: -2px;
  margin-right: 5px;
  float: left;
}

.li-pfeil-img.mehrzeilig {
  margin-top: 7px;
  margin-bottom: 20px;
}

.link-unterseite {
  display: block;
  color: #707476;
  text-decoration: none;
}

.link-unterseite:hover {
  text-decoration: none;
}

.anzeige-bundesweit {
  margin-top: 50px;
  padding-top: 30px;
  padding-left: 20px;
  background-color: #e7e7e7;
}

.anzeige-bundesweit-text {
  margin-top: 34px;
  margin-bottom: 66px;
  padding-right: 30px;
}

.anzeige-bundesweit-img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.liste {
  margin-top: 20px;
  margin-bottom: 40px;
}

.list-item {
  padding-left: 22px;
  background-image: url('../images/Punkt_klein.jpg');
  background-position: 0px 6px;
  background-repeat: no-repeat;
  line-height: 24px;
}

.ansprechpartner {
  margin-top: 15px;
  padding-left: 24px;
  background-image: url('../images/Punkt_klein.jpg');
  background-position: 0px 5px;
  background-repeat: no-repeat;
}

.phone-link {
  color: #707476;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: none;
}

.link-standard {
  color: #707476;
  text-decoration: none;
}

.link-standard:hover {
  text-decoration: none;
}

.ansprechpartner-section {
  margin-top: 50px;
  margin-bottom: -80px;
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #e7e7e7;
}

.news-section-weiss {
  margin-bottom: 0px;
}

.news-section-grau {
  background-color: #e7e7e7;
}

.section-referenzen-grau {
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: #e7e7e7;
}

.section-referenzen-weiss {
  padding-top: 40px;
  padding-bottom: 20px;
}

.section-referenzen-weiss.section-referenzen-weiss-last {
  margin-bottom: -50px;
}

.img-kunde {
  margin: 8px 20px 20px;
}

.kunden-logos {
  margin-top: 30px;
  margin-bottom: 40px;
}

.section-jobs-grau {
  padding-top: 40px;
  padding-bottom: 50px;
  background-color: #e7e7e7;
}

.section-jobs-grau.section-jobs-grau-last {
  margin-bottom: -80px;
}

.section-jobs-weiss {
  padding-top: 40px;
  padding-bottom: 50px;
}

.headline3-jobs {
  margin-bottom: 30px;
}

.link-bewerbung {
  color: #dc032e;
  text-decoration: none;
}

.link-bewerbung:hover {
  text-decoration: none;
}

.jobs-abschluss {
  margin-top: 40px;
}

.zertifikat-text {
  display: inline-block;
  float: right;
}

.zertifikat-pdf {
  display: inline-block;
  margin-top: 22px;
  margin-right: 12px;
  margin-bottom: 10px;
  float: left;
}

.link-rot {
  color: #dc032e;
  text-decoration: none;
}

.link-rot:hover {
  text-decoration: none;
}

.zertifikat-div {
  margin-top: 60px;
}

.zertifikat-div.zertifikat-div-grau {
  padding: 30px 20px 20px;
  background-color: #e7e7e7;
}

.download-row {
  margin-top: 15px;
  padding-right: 15px;
  padding-left: 15px;
}

.download-row.download-row-grau {
  margin-top: 20px;
  padding-top: 15px;
  padding-bottom: 20px;
  background-color: #e7e7e7;
}

.download-img {
  width: 80px;
  margin-top: 5px;
  margin-right: 10px;
  float: left;
  border: 1px solid #dadee0;
}

.downloads-all {
  margin-top: 30px;
}

.kontakt-adresse-karte {
  margin-top: 30px;
}

.kontakt-notfall {
  padding: 25px 30px;
  background-color: #e7e7e7;
}

.text-rot {
  color: #dc032e;
}

.kontakt-formular-notfall {
  margin-top: 60px;
}

.field-label {
  display: inline-block;
  width: 25%;
  margin-top: 5px;
  float: left;
  font-weight: 300;
}

.text-field {
  width: 75%;
}

.kontakt-submit-button {
  float: right;
  border: 1px solid #dc032e;
  background-color: #dc032e;
}

.kontakt-submit-button:hover {
  background-color: #fff;
  color: #dc032e;
}

.kleingedruckt {
  margin-top: -6px;
  font-size: 12px;
}

.uebersicht-row {
  margin-top: 50px;
}

.infomaterial-content {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 30px;
  background-color: #e7e7e7;
}

.infomaterial-content.ohne-hintergrund {
  margin-top: 20px;
  padding-bottom: 0px;
  padding-left: 0px;
  background-color: transparent;
}

.historie-foto-inline {
  width: 270px;
  margin-top: 6px;
  margin-right: 15px;
  margin-bottom: 15px;
  float: left;
}

.download-linkblock {
  color: #707476;
  text-decoration: none;
}

.download-linkblock:hover {
  color: #707476;
  text-decoration: none;
}

.download-p {
  display: inline-block;
  float: left;
}

.p-nach-content-liste {
  margin-top: 40px;
}

.first-section {
  margin-top: 251px;
}

.first-section-start {
  margin-top: 150px;
}

.sprachauswahl {
  position: relative;
  z-index: 3500;
  height: 17px;
  margin-bottom: 34px;
  background-color: #dc032e;
  color: #fff;
  font-size: 12px;
  text-align: right;
}

.sprachauswahl-p {
  margin-top: -4px;
  padding-right: 32px;
}

.link-weiss {
  color: #fff;
  text-decoration: none;
}

.link-weiss:hover {
  color: #fff;
  text-decoration: none;
}

.link-weiss.w--current {
  color: #fff;
  text-decoration: none;
}

.header-section-lp {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 14px solid #dc032e;
}

.logo-lp {
  display: inline-block;
}

.stimmungsbild-lp {
  width: 100%;
}

.phone-icon-lp {
  margin-right: 10px;
  float: left;
}

.phone-icon-lp-div {
  font-size: 27px;
  line-height: 40px;
  font-weight: 500;
}

.mail-icon-lp-div {
  font-size: 25px;
  line-height: 40px;
  font-weight: 500;
}

.mail-icon-lp {
  margin-right: 10px;
  float: left;
}

.header-kontakt-lp {
  width: 272px;
  margin-top: 10px;
  margin-bottom: -1px;
  float: right;
}

.link-standard-lp {
  color: #707476;
  text-decoration: none;
}

.link-standard-lp:hover {
  color: #707476;
  text-decoration: none;
}

.stimmungsbild-lp-container {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 30px;
  color: #fff;
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  text-transform: uppercase;
}

.stimmungsbild-lp-section {
  position: relative;
  margin-bottom: 50px;
}

.stimmungsbild-lp-p {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, .7);
}

.h1-lp {
  font-size: 34px;
  line-height: 43px;
  font-weight: 500;
}

.h2-lp {
  font-size: 21px;
  line-height: 30px;
}

.grau-bg-lp {
  margin-bottom: 15px;
  padding: 30px 170px 30px 30px;
  background-color: #e7e7e7;
}

.h-graukasten-lp {
  margin-top: -7px;
  margin-bottom: 20px;
  font-size: 35px;
  line-height: 43px;
  font-weight: 500;
}

.list-item-lp {
  margin-top: -7px;
  padding-top: 2px;
  padding-left: 22px;
  background-image: url('../images/Punkt_klein.jpg');
  background-position: 0px 6px;
  background-repeat: no-repeat;
  line-height: 24px;
}

.grau-bg-lp-linkblock {
  position: relative;
  padding-right: 5px;
  text-align: center;
  text-decoration: none;
}

.grau-bg-lp-linkblock:hover {
  text-decoration: none;
}

.grau-bg-lp-button-bild {
  position: absolute;
  left: 30px;
  bottom: 12px;
  display: block;
  width: 168px;
  height: 36px;
  padding-top: 5px;
  background-color: #dc032e;
  color: #fff;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
}

.grau-bg-lp-button-bild:hover {
  background-color: #707476;
  color: #fff;
  text-decoration: none;
}

.grau-bg-lp-button-bild.button-neben-bild {
  position: static;
  margin-top: 30px;
}

.anfrage-ende-lp {
  margin-top: 40px;
  padding-top: 20px;
  font-size: 19px;
  font-weight: 400;
}

.anfrage-ende-lp-button {
  margin-top: -12px;
  margin-right: 25px;
  float: left;
  background-color: #dc032e;
}

.anfrage-ende-lp-button:hover {
  background-color: #707476;
}

.anfrage-ende-lp-text {
  display: inline-block;
}

.link-weiss-lp {
  color: #fff;
  text-decoration: none;
}

.link-weiss-lp:hover {
  color: #fff;
  text-decoration: none;
}

.footer-section-lp {
  margin-top: 0px;
  padding-top: 35px;
  padding-bottom: 15px;
  background-color: #dc032e;
  background-image: url('../images/MAS.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 13px;
  line-height: 19px;
}

.lp-section {
  margin-bottom: 35px;
}

.lp-link-impressum {
  margin-bottom: -12px;
  color: #dc032e;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  text-transform: uppercase;
}

.lp-link-impressum-p {
  color: #dc032e;
  text-decoration: none;
}

.lp-link-impressum-p:hover {
  color: #dc032e;
  text-decoration: none;
}

html.w-mod-js *[data-ix="von-links"] {
  opacity: 0;
  -webkit-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate(-50px, 0px);
}

html.w-mod-js *[data-ix="foto-farbig"] {
  opacity: 0;
}

@media (min-width: 992px) and (max-width: 1440px) {
    .navlink {
        margin-left: 15px;
        padding: 0px 0px 30px 17px;
        color: #424446;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
    }
    .navbar {
        margin-top: 80px;
        background-color: transparent;
    }
    .navi-dropdown-list.w--open {
        position: absolute;
        left: -2109px;
        bottom: -45px;
        z-index: 50;
        width: 5000px;
        margin-top: 40px;
        background-color: hsla(0, 0%, 90%, .9);
        text-align: center;
    }
    .sprachauswahl {
        position: relative;
        z-index: 3500;
        height: 17px;
        margin-bottom: 54px;
        background-color: #dc032e;
        color: #fff;
        font-size: 12px;
        text-align: right;
    }
    .footer-section {
        background-image: none;
    }
    .text-block-red {
        font-size: 31px;
        line-height: 36px;
    }
    .block-img-headline {
        font-size: 33px;
        line-height: 36px;
    }
    .logo {
        margin-top: -20px;
        margin-bottom: 22px;
        margin-left: 25px;
        float: left;
        width: 140px;
    }
    .notfallnummer-div {
        margin-top: -16px;
        margin-right: 24px;
    }
    .notfallnummer-div-fr {
        margin-top: -24px;
        margin-right: 24px;
    }
    .notfallnummer-top {
        padding: 15px 20px 2px;
        font-size: 15px;
        line-height: 5px;
    }
    .notfallnummer-top-en {
        padding: 15px 20px 2px;
        font-size: 15px;
        line-height: 5px;
    }
    .notfallnummer-top-fr {
        padding: 9px 20px 1px;
        font-size: 15px;
        line-height: 17px;
    }
    .notfallnummer-bottom {
        margin-bottom: -10px;
        padding-top: 3px;
        padding-right: 20px;
        padding-left: 20px;
        font-size: 15px;
    }
} 

@media (max-width: 991px) {
  h1 {
    font-size: 26px;
    line-height: 36px;
  }
  .header-section {
    position: static;
    overflow: visible;
    margin-top: 0px;
    margin-bottom: -20px;
    padding-bottom: 22px;
  }
  .navbar {
    margin-top: 130px;
    margin-right: -20px;
    margin-left: -20px;
  }
  .navmenu {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .navlink {
    margin-left: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
  }
  .navlink:hover {
    background-image: none;
    background-position: 0px 0px;
    background-size: auto;
    background-repeat: repeat;
  }
  .text-block-red {
    font-size: 18px;
    line-height: 22px;
  }
  .logo {
    margin-left: 0px;
  }
  .logo.w--current {
    margin-left: 0px;
  }
  .notfallnummer-div {
    margin-right: 0px;
  }
  .notfallnummer-div-fr {
    margin-right: 0px;
  }
  .notfallnummer-top-fr {
    padding: 8px 20px 1px;
    font-size: 15px;
    line-height: 17px;
  }
  .start-tabelle-li2.dunkelgrau-text-bg {
    font-size: 16px;
    line-height: 21px;
  }
  .start-tabelle-li1.rot-text-bg {
    font-size: 16px;
    line-height: 21px;
  }
  .start-tabelle-li-p {
    font-size: 15px;
  }
  .footer-section {
    background-image: none;
    background-position: 0px 0px;
    background-repeat: repeat;
  }
  .block-img-headline {
    font-size: 18px;
    line-height: 22px;
  }
  .dropdown-nav {
    margin-right: 0px;
    margin-left: 0px;
  }
  .navi-dropdown-list {
    display: block;
    margin-left: 20px;
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .navi-dropdown-list.w--open {
    margin-top: 0px;
  }
  .navi-dropdown-link {
    display: block;
    padding-right: 20px;
    padding-left: 30px;
  }
  .slider-section.first-section {
    margin-top: 10px;
  }
  .slider-section-hell.first-section {
    margin-top: 10px;
  }
  .h1-folgeseite {
    font-size: 40px;
  }
  .first-section {
    margin-top: 10px;
  }
  .sprachauswahl-p {
    padding-right: 0px;
  }
  .stimmungsbild-lp-container {
    bottom: 0px;
    font-size: 45px;
    line-height: 45px;
  }
  .h1-lp {
    font-size: 30px;
  }
  .grau-bg-lp {
    padding-right: 70px;
  }
  .h-graukasten-lp {
    margin-top: -18px;
    font-size: 25px;
  }
  .grau-bg-lp-button-bild {
    left: 12px;
  }
  .footer-section-lp {
    background-image: none;
    background-position: 0px 0px;
    background-repeat: repeat;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 24px;
    line-height: 32px;
  }
  h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .header-section {
    height: 232px;
  }
  .navbar {
    margin-top: 110px;
    margin-right: 0px;
    margin-left: 0px;
  }
  .navmenu {
    margin-right: 0px;
    margin-left: 0px;
  }
  .text-block-red {
    font-size: 25px;
    line-height: 26px;
  }
  .logo {
    width: 194px;
    margin-top: 15px;
    margin-left: 10px;
  }
  .logo.w--current {
    margin-left: 10px;
  }
  .notfallnummer-div {
    margin-top: 26px;
    margin-right: 10px;
  }
  .notfallnummer-div-fr {
    margin-top: 6px;
    margin-right: 10px;
  }
  .news {
    padding-right: 10px;
    padding-left: 10px;
  }
  .news-icon {
    margin-top: -2px;
  }
  .news-datum {
    margin-bottom: -10px;
  }
  .start-tabelle-ul1 {
    margin-left: -10px;
  }
  .start-tabelle-li2.dunkelgrau-text-bg {
    font-size: 14px;
    line-height: 17px;
  }
  .start-tabelle-li1.rot-text-bg {
    font-size: 14px;
    line-height: 17px;
  }
  .start-tabelle-li-p {
    font-size: 10px;
  }
  .content-section {
    padding-right: 10px;
    padding-left: 10px;
  }
  .footer-links {
    margin-top: -112px;
  }
  .block-img-headline {
    font-size: 25px;
    line-height: 26px;
  }
  .navi-dropdown-list {
    margin-left: 0px;
  }
  .h1-folgeseite {
    font-size: 30px;
    line-height: 44px;
  }
  .ansprechpartner-section {
    padding-right: 10px;
    padding-left: 10px;
  }
  .section-referenzen-grau {
    padding-right: 10px;
    padding-left: 10px;
  }
  .section-referenzen-weiss {
    padding-right: 10px;
    padding-left: 10px;
  }
  .section-jobs-grau {
    padding-right: 10px;
    padding-left: 10px;
  }
  .section-jobs-weiss {
    padding-right: 10px;
    padding-left: 10px;
  }
  .footer-row {
    text-align: center;
  }
  .sprachauswahl-p {
    padding-right: 20px;
  }
  .logo-lp {
    margin-top: 18px;
  }
  .phone-icon-lp-div {
    font-size: 20px;
  }
  .mail-icon-lp-div {
    font-size: 18px;
  }
  .header-kontakt-lp {
    width: 198px;
  }
  .stimmungsbild-lp-container {
    left: 10px;
    font-size: 25px;
    line-height: 27px;
  }
  .h1-lp {
    font-size: 28px;
    line-height: 33px;
  }
  .grau-bg-lp {
    padding-right: 30px;
  }
  .h-graukasten-lp {
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 30px;
    text-align: center;
  }
  .grau-bg-lp-linkblock {
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
  }
  .grau-bg-lp-button-bild {
    left: 150px;
  }
  .grau-bg-lp-button-bild.button-neben-bild {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  .anfrage-ende-lp {
    text-align: center;
  }
  .anfrage-ende-lp-button {
    margin-right: 0px;
    float: none;
  }
  .anfrage-ende-lp-text {
    margin-bottom: 20px;
  }
  .lp-section {
    padding-right: 10px;
    padding-left: 10px;
  }
  .logo-lp-img {
    width: 154px;
  }
  .lp-link-impressum {
    margin-right: 10px;
  }
}

@media (max-width: 479px) {
  h2 {
    font-size: 20px;
    line-height: 26px;
  }
  .header-section {
    height: 293px;
    margin-bottom: 0px;
  }
  .navbar {
    margin-top: 0px;
  }
  .text-block-red {
    font-size: 38px;
    line-height: 42px;
  }
  .logo {
    width: 100%;
    margin-top: -5px;
    margin-left: 0px;
    float: none;
    text-align: center;
  }
  .logo.w--current {
    display: block;
    margin-right: auto;
    margin-left: auto;
    float: none;
    text-align: center;
  }
  .notfallnummer-div {
    display: block;
    width: 191px;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
    float: none;
  }
  .notfallnummer-div-fr {
    display: block;
    width: 191px;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
    float: none;
  }
.notfallnummer-top-en {
    padding: 15px 20px 2px;
    font-size: 13.5px;
    line-height: 5px;
}
.notfallnummer-top-fr {
    padding: 15px 20px 2px;
    font-size: 13px;
    line-height: 15px;
}
  .block-img-headline {
    font-size: 38px;
    line-height: 42px;
  }
  .h1-folgeseite {
    padding-top: 3px;
    padding-left: 32px;
    background-size: 23px;
    font-size: 22px;
    line-height: 28px;
  }
  .liste-icon {
    font-size: 19px;
  }
  .logo-img {
    width: 174px;
  }
  .sprachauswahl {
    text-align: center;
  }
  .sprachauswahl-p {
    padding-right: 0px;
  }
  .logo-lp {
    display: block;
    margin-top: 0px;
    margin-bottom: 20px;
    text-align: center;
  }
  .header-kontakt-lp {
    display: block;
    margin-right: auto;
    margin-left: auto;
    float: none;
  }
  .h1-lp {
    font-size: 24px;
  }
  .h-graukasten-lp {
    font-size: 20px;
    line-height: 26px;
  }
  .grau-bg-lp-linkblock {
    width: 220px;
  }
  .grau-bg-lp-button-bild {
    left: 25px;
  }
}

