/*
$font-size-root:              null;
$font-size-base:              1rem; // Assumes the browser default, typically `16px`
$font-size-sm:                $font-size-base * .875;
$font-size-lg:                $font-size-base * 1.25;

$font-weight-lighter:         lighter;
$font-weight-light:           300;
$font-weight-normal:          400;
$font-weight-medium:          500;
$font-weight-semibold:        600;
$font-weight-bold:            700;
$font-weight-bolder:          bolder;

$font-weight-base:            $font-weight-normal;

$line-height-base:            1.5;
$line-height-sm:              1.25;
$line-height-lg:              2;

$h1-font-size:                $font-size-base * 2.5;
$h2-font-size:                $font-size-base * 2;
$h3-font-size:                $font-size-base * 1.75;
$h4-font-size:                $font-size-base * 1.5;
$p-font-size:                 $font-size-base * 1.475;
$h5-font-size:                $font-size-base * 1.25;
$h6-font-size:                $font-size-base;
*/
/*

$font-size-base:              0.5em;
$lead-font-size:              $font-size-base * 1.25;
$lead-font-weight:            300;

$small-font-size:             .875em;

$sub-sup-font-size:           .75em;


$text-muted:                  $gray-600;

$initialism-font-size:        $small-font-size;

$blockquote-margin-y:         $spacer;
$blockquote-font-size:        $font-size-base * 1.25;
$blockquote-footer-color:     $gray-600;
$blockquote-footer-font-size: $small-font-size;

$hr-margin-y:                 $spacer;
$hr-color:                    inherit;
$hr-height:                   $border-width;
$hr-opacity:                  .25;

$legend-margin-bottom:        .5rem;
$legend-font-size:            1.5rem;
$legend-font-weight:          null;

$mark-padding:                .2em;

$dt-font-weight:              $font-weight-bold;

$nested-kbd-font-weight:      $font-weight-bold;

$list-inline-padding:         .5rem;

$mark-bg:                     #fcf8e3;

$blue:    #0d6efd;
$indigo:  #6610f2;
$purple:  #6f42c1;
$pink:    #d63384;
$red:     #dc3545;
$orange:  #fd7e14;
$yellow:  #ffc107;
$green:   #198754;
$teal:    #20c997;
$cyan:    #0dcaf0;
$primary:       $blue;
$secondary:     $gray-600;
$success:       $green;
$info:          $cyan;
$warning:       $yellow;
$danger:        $red;
$light:         $gray-100;
$dark:          $gray-900;
$white:    #fff;
$gray-100: #f8f9fa;
$gray-200: #e9ecef;
$gray-300: #dee2e6;
$gray-400: #ced4da;
$gray-500: #adb5bd;
$gray-600: #6c757d;
$gray-700: #495057;
$gray-800: #343a40;
$gray-900: #212529;
$black:    #000;
$theme-colors-text: (
  "primary": $primary-text-emphasis,
  "secondary": $secondary-text-emphasis,
  "success": $success-text-emphasis,
  "info": $info-text-emphasis,
  "warning": $warning-text-emphasis,
  "danger": $danger-text-emphasis,
  "light": $light-text-emphasis,
  "dark": $dark-text-emphasis,
);
$primary-text-emphasis:   shade-color($primary, 60%);
$secondary-text-emphasis: shade-color($secondary, 60%);
$success-text-emphasis:   shade-color($success, 60%);
$info-text-emphasis:      shade-color($info, 60%);
$warning-text-emphasis:   shade-color($warning, 60%);
$danger-text-emphasis:    shade-color($danger, 60%);
$light-text-emphasis:     $gray-700;
$dark-text-emphasis:      $gray-700;
$primary-text-emphasis-dark:        tint-color($primary, 40%);
$secondary-text-emphasis-dark:      tint-color($secondary, 40%);
$success-text-emphasis-dark:        tint-color($success, 40%);
$info-text-emphasis-dark:           tint-color($info, 40%);
$warning-text-emphasis-dark:        tint-color($warning, 40%);
$danger-text-emphasis-dark:         tint-color($danger, 40%);
$light-text-emphasis-dark:          $gray-100;
$dark-text-emphasis-dark:           $gray-300;
$theme-colors: (
  "primary":    $primary,
  "secondary":  $secondary,
  "success":    $success,
  "info":       $info,
  "warning":    $warning,
  "danger":     $danger,
  "light":      $light,
  "dark":       $dark
);
$grays: (
  "100": $gray-100,
  "200": $gray-200,
  "300": $gray-300,
  "400": $gray-400,
  "500": $gray-500,
  "600": $gray-600,
  "700": $gray-700,
  "800": $gray-800,
  "900": $gray-900
);
*/
/* ==============================================================================================================
F L E X B O X  G R I D  S Y S T E M
-------------------------------------------------------------------------------------------------------------- */
[class^=flex-] {
  width: auto;
  max-width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* Elementanordnung */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

[class^=flex-][class*=left] {
  /* Horizontale Ausrichtung */
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
}

[class^=flex-][class*=center] {
  /* Horizontale Ausrichtung */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

[class^=flex-][class*=right] {
  /* Horizontale Ausrichtung */
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

[class^=flex-][class*=between] {
  /* Horizontale Ausrichtung */
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

[class^=flex-][class*=around] {
  /* Horizontale Ausrichtung */
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}

[class^=flex-][class*=top] {
  /* Vertikale Ausrichtung */
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

[class^=flex-][class*=middle] {
  /* Vertikale Ausrichtung */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

[class^=flex-][class*=bottom] {
  /* Vertikale Ausrichtung */
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

/* ==============================================================================================================
E U   C O O K I E   C O M P L I E N E S
-------------------------------------------------------------------------------------------------------------- */
/*#cookieNotice {
  position: fixed;
  background-color: rgba(0,0,0,0.7);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  left: 0;
  top: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
}*/
a {
  text-decoration: none !important;
}

#cookieNotice > div {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 80%;
  max-width: 560px;
  min-width: 340px;
  max-height: 100%;
  padding: 1.1em 1.1em 0.8em;
  font-size: 0.85em;
  line-height: 1.4em;
  color: #87898c !important;
  /*-webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);*/
}

.user-logged-in #cookieNotice > div {
  display: none;
  opacity: 0;
}

#cookieNotice a {
  cursor: pointer;
}

.cookiebutton {
  background-color: #549507;
  display: block;
  width: auto;
  text-align: center;
  text-transform: uppercase;
  margin-top: 1.2em;
  padding: 8px 0;
  font-weight: 900;
  color: white !important;
}

.cookiebutton:hover {
  background-color: #76b729;
  -webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.3);
}

.cookie-close {
  background-color: #666;
  text-align: center;
  margin-top: 1.2em;
  padding: 8px 0;
  display: block;
  color: #33383a !important;
  margin-top: 0.2em;
  color: white !important;
}

.block-webform-block textarea {
  height: 170px;
}

.ui-dialog {
  padding: 1em 1em 2em;
}

.ui-dialog-titlebar {
  margin-bottom: 12px;
}

.ui-dialog-titlebar-close {
  border: none;
  position: relative;
  margin-right: 12px !important;
}
.ui-dialog-titlebar-close:before, .ui-dialog-titlebar-close:after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: black;
}
.ui-dialog-titlebar-close:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.ui-dialog-titlebar-close:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.ui-dialog-titlebar-close:hover {
  background: transparent;
}

/* ==============================================================================================================
S T E L L E N A N G E B O T E
-------------------------------------------------------------------------------------------------------------- */
.views-field-field-einleitungstext,
.views-field-field-aufgaben,
.views-field-field-ueberzeugung,
.views-field-field-angebot {
  margin: 0 0 2em;
}

.view-id-stellenangebote .views-label {
  font-weight: bold;
}

.view-id-stellenangebote .list-group-item {
  padding-left: 1.3em;
  border: none;
}

.view-id-stellenangebote .list-group-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  background: #00a3d9;
  width: 10px;
  height: 10px;
  border-radius: 10px;
}

.view-id-stellenangebote .views-row {
  margin: 2em 0 3em;
}

/* ==============================================================================================================
L A Y O U T
-------------------------------------------------------------------------------------------------------------- */
body {
  line-height: 1.4;
  max-width: 100%;
  overflow-x: hidden;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

a.btn,
button.btn {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  padding: 1rem 1.5rem;
  border: none;
}

button.btn span {
  font-size: 1.8em;
  position: relative;
  top: 8px;
  left: -5px;
  line-height: 0;
}

#backtotop {
  width: 60px;
  height: 60px;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 1rem;
  right: 1rem;
  border-radius: 0;
}

#backtotop:before {
  content: "";
  display: block;
  position: absolute;
  font-family: "repanet" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e904";
  font-size: 2em;
  line-height: 1;
  top: 15px;
}

#header,
#main-wrapper {
  hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
}

.page-node-21 #kontaktblock {
  margin-top: 0;
}

/* ==============================================================================================================
H E A D E R
-------------------------------------------------------------------------------------------------------------- */
#header a.btn {
  margin-top: 0.5rem;
  padding-left: 5rem !important;
}

#header {
  position: relative;
  height: auto;
  padding-bottom: 2rem;
}

#header .btn-primary,
#header .btn-secondary {
  position: relative;
  padding-left: 50px;
}

#header .btn-primary:before,
#header .btn-secondary:before {
  padding-left: 2rem;
  font-size: 1.8em;
  font-family: "repanet" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  display: block;
}

#header .btn-secondary:before {
  content: "\e905";
}

#header .btn-primary:before {
  content: "\e90a";
}

#header.bg-image,
#header.bg-image #img-slider,
#header.bg-image #img-slider ul,
#header.bg-image #img-slider li {
  width: 100vw;
  height: 27rem;
}

.path-frontpage #header.bg-image,
.path-frontpage #header.bg-image #img-slider,
.path-frontpage #header.bg-image #img-slider ul,
.path-frontpage #header.bg-image #img-slider li {
  height: auto;
}

#header.bg-image #img-slider.splide {
  visibility: visible;
}

.splide__arrows button {
  display: none;
  z-index: 10;
}

.path-frontpage #header {
  height: auto !important;
  padding-bottom: 0;
  width: 100vw;
}

#header #background-bg {
  position: absolute;
  top: 0;
  left: 0;
}

#teasertext {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  opacity: 0;
}

.path-node #teasertext {
  position: absolute;
  bottom: 0;
  width: 80vw;
  max-width: 100%;
  min-width: 20em;
  color: white;
  margin-bottom: 2.2rem;
  margin-right: 10vw;
}

.path-frontpage #teasertext {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60vw;
  max-width: 40em;
  min-width: 20em;
  color: white;
  margin-bottom: 10%;
  margin-right: 10vw;
}

header .row,
footer .row {
  margin-right: 0;
  margin-left: 0;
}

header #search-block-form {
  padding: 0;
}

.navbar-toggler {
  background: white;
  border-radius: 0;
  border: none;
}

.navbar-brand {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  padding: 1em;
  opacity: 0;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  margin-right: 0 !important;
}

.navbar {
  padding: 0rem 7rem 0rem 7rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#header .nav-link {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

#header .nav-link:hover {
  text-shadow: none;
}

/* ==============================================================================================================
S E A R C H B L O C K
-------------------------------------------------------------------------------------------------------------- */
#search-block-form .icon {
  display: none;
}

header .js-form-type-search input.form-search {
  background: url("../images/search-icon.svg") 5px 7px no-repeat;
}

.js-form-type-search input.form-search {
  background: transparent;
  color: #000;
  margin-top: 0.8rem;
  margin-left: 0.5rem;
  padding-left: 30px;
  padding-right: 0;
  border-radius: 0 !important;
}

i.better_search {
  position: relative;
  top: 5px;
  left: 6px;
}

.container-inline div,
.container-inline label {
  display: block;
}

.path-search h2,
.path-search h3 {
  font-size: 1.2rem;
}

.path-search #main-wrapper .list-group-item {
  padding: 1rem 1.25rem 0.6rem;
}

.path-search #main-wrapper .js-form-type-search input.form-search {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0;
  color: black;
}

.path-search #main-wrapper .js-form-type-search input.form-search:focus {
  background: white;
}

.path-search #main-wrapper #search-form .icon {
  top: 3.9rem;
  left: 2rem;
}

.path-search #edit-help-link {
  display: none;
}

#main #search-block-form,
#search-form {
  background: url("../images/repanet-footer-border.png") no-repeat;
  background-size: 100% 1px;
  background-position: bottomer;
  margin-bottom: 3rem;
  padding: 2rem;
}

#main-wrapper .node__content ul {
  padding: 0;
}

#main-wrapper .node__content ul li {
  padding-left: 22px;
}

#main-wrapper .node__content ul li {
  list-style: none;
  position: relative;
}

#main-wrapper .node__content ul li:before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f14a";
  display: block;
}

/* ==============================================================================================================
N A V I G A T I O N
-------------------------------------------------------------------------------------------------------------- */
.navbar-nav a {
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  text-decoration: none;
}

.dropdown-menu {
  overflow: hidden;
  border: none;
  border-radius: 0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
  background-color: transparent;
}

.dropdown-menu a {
  font-weight: 600;
  text-transform: inherit;
  padding: 1rem 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.dropdown-menu a.active,
.dropdown-menu a.is-active,
.dropdown-item.active,
.dropdown-item:active,
.dropdown-menu a:hover {
  background: transparent;
  text-shadow: none;
  color: #333333;
}

.dropdown-menu li {
  padding: 0.5rem;
  padding-left: 1.5rem;
  margin-right: 1rem;
}

.dropdown-menu li:hover {
  background-color: transparent;
}

.highlighted {
  background: #eee;
}

.navbar-form {
  -webkit-transition: width 0.55s ease;
  transition: width 0.55s ease;
  margin-left: 16px;
  margin-right: 16px;
}

nav.menu--main {
  margin-left: 16px;
}

#CollapsingNavbar {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  width: 100%;
  max-width: 100%;
  top: 0px;
  left: 0px;
  z-index: -1;
  padding-top: 110px;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}
#CollapsingNavbar div {
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  /* remove the gap so it doesn't close */
  padding-bottom: 0;
}

.form-control {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* ==============================================================================================================
H I G H L I G H T E D
-------------------------------------------------------------------------------------------------------------- */
.region-footer-fifth {
  display: contents;
}

.block-system-breadcrumb-block {
  margin-top: 2rem;
}

.breadcrumb {
  background-color: transparent;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.breadcrumb .breadcrumb-item:first-child a {
  position: relative;
}

.breadcrumb .breadcrumb-item a:before {
  position: relative;
  top: 2px;
}

aside li {
  display: block;
  width: 100%;
}

aside li .active {
  padding-left: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

tr td,
tr th {
  border: none;
}

.field--name-field-betriebsdaten {
  margin-left: -15px;
  margin-right: -15px;
}

.view-leistungen .btn-primary {
  margin: 1rem 0;
}

.highlighted aside > .block {
  text-align: center;
  padding: 3rem 0;
}

.highlighted h2,
.block-views-blockzertifizierungen-block-1 h2 {
  text-align: center;
}

.highlighted .view-header,
.block-views-blockzertifizierungen-block-1 .view-header {
  max-width: 55rem;
  margin: auto;
  padding: 0.5rem 0 3rem;
  text-align: center;
}

/* ==============================================================================================================
S O C I A L M E D I A
-------------------------------------------------------------------------------------------------------------- */
.block-content-social_media_box {
  position: fixed;
  bottom: 5rem;
  right: 0;
  padding: 1rem 1rem 0 0 !important;
  text-align: center;
}

.block-content-social_media_box li a {
  display: block;
  padding: 0.5rem;
}

.block-content-social_media_box li {
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.block-content-social_media_box li:hover {
  -webkit-transform: translate3d(-8px, 0, 0);
  transform: translate3d(-8px, 0, 0);
}

.img-fluid {
  max-height: 50px;
}

/* ==============================================================================================================
L E I S T U N G E N
-------------------------------------------------------------------------------------------------------------- */
.leistungen-thumb {
  overflow: hidden;
  text-align: left;
  position: relative;
  hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  display: block;
}

.leistungen-thumb h4 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
}

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

.leistungen-thumb:before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4990196762)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4990196762), rgba(0, 0, 0, 0));
  -webkit-transform: translate3d(0, 30%, 0);
  transform: translate3d(0, 30%, 0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.leistungen-thumb:hover:before {
  opacity: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4990196762)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4990196762), rgba(0, 0, 0, 0));
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.leistungen-thumb:hover h4 {
  -webkit-transform: translate3d(0, 10%, 0);
  transform: translate3d(0, 10%, 0);
}

.view-leistungen {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.view-leistungen .views-view-grid {
  padding: 0;
}

/* ==============================================================================================================
G A L E R Y
-------------------------------------------------------------------------------------------------------------- */
.block-views-blockfotogalerie-block-1 .views-row div img {
  width: 100%;
  height: auto;
  display: block;
}

.imagelightbox-close {
  border: none;
}

.block-views-blockfotogalerie-block-1 .views-row div {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

.block-views-blockfotogalerie-block-1 .views-row div:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.block-views-blockfotogalerie-block-1 .views-row div a:before {
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Font Awesome 5 Brands";
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 4em;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "\f3ee";
  display: block;
  width: auto;
  height: auto;
}

.block-views-blockfotogalerie-block-1 .views-row div:hover a:before {
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.imagelightbox-caption {
  background-color: transparent;
}

.block-damage-form button.btn-modal {
  display: none;
}

.custom-modal-damage-form {
  position: relative;
  z-index: 999999;
}

/* ==============================================================================================================
D A M A G E F O R M
-------------------------------------------------------------------------------------------------------------- */
.ng-pristine .ng-valid .text-danger {
  color: black !important;
}

.ng-pristine .ng-valid .bg-danger {
  background-color: #fff !important;
}

/* ==============================================================================================================
Z E R T I F I Z I E R U N G E N
-------------------------------------------------------------------------------------------------------------- */
.block-views-blockzertifizierungen-block-1 .row {
  width: auto;
  max-width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.block-views-blockleistungen-block-1 {
  padding-top: 0;
  margin-top: -12rem;
  border-bottom: 1px solid #ccc;
}

.layout-main-wrapper {
  padding: 4rem 0;
}

.page-view-overview-jobs .layout-main-wrapper {
  min-height: calc(100vh - 350px);
}

.layout-main-wrapper > .container {
  max-width: 1280px;
  padding-left: 0;
  padding-right: 0;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1280px;
}

/* ==============================================================================================================
T E A M
-------------------------------------------------------------------------------------------------------------- */
.block-views-blockansprechpartner-block-1 {
  margin-top: 4rem;
}
.block-views-blockansprechpartner-block-1 .view-header {
  margin: 1rem 0 2rem;
}
.block-views-blockansprechpartner-block-1 h5 {
  font-size: 1.2em;
  margin-top: 1rem;
}
.block-views-blockansprechpartner-block-1 strong {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.region-featured-bottom-first .field--name-body {
  position: relative;
}

/* ==============================================================================================================
M A P
-------------------------------------------------------------------------------------------------------------- */
.routenplaner {
  position: absolute;
  top: 0;
  right: 2%;
  width: 96%;
  padding: 1rem 0.8rem 0.8rem;
}

.routenplaner label {
  display: block;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.routenplaner input {
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  width: 100%;
  border: none;
}

.routenplaner button {
  width: 23px;
  height: 23px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0.5rem;
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  border: 0;
}

.routenplaner button:before {
  font-family: "repanet" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  content: "\e903";
}

.routenplaner button:hover:before {
  opacity: 0.7;
}

.routenplaner button span {
  display: none;
}

.region-featured-bottom-first iframe {
  width: 100% !important;
  height: 440px !important;
}

.block-block-content8b201f48-f604-477a-ae35-d61fb66cdf00 {
  position: relative;
  top: -5rem;
}

/* ==============================================================================================================
F O O T E R
-------------------------------------------------------------------------------------------------------------- */
.site-footer {
  padding: 0;
}

.site-footer h2,
.site-footer fieldset,
.site-footer label {
  color: white;
}

.site-footer .content {
  color: black;
  font-size: 1em;
}

.site-footer__top .row {
  margin: 0;
}

.site-footer .block {
  width: 100%;
}

.site-footer .block p {
  margin: 0;
  padding: 0.8em 0 0 0;
}

.site-footer .navbar-nav .nav-link {
  font-weight: 900;
  margin: 0;
  padding: 0.8em 0 0 0.5rem;
}

.site-footer .navbar-nav :first-child .nav-link {
  padding-left: 0;
}

a.nav-link--::before {
  display: none !important;
}

.site-footer__bottom .block {
  font-size: 0.8em;
  width: auto;
}

.site-footer__bottom img {
  width: 5.5rem;
}

.site-footer__bottom {
  padding: 1.5rem 0 2.5rem;
}

.site-footer__bottom .navbar-nav {
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.site-footer__top .region span,
.block-views-blockservices-block-1 .view-content span {
  font-size: 4rem;
}

.site-footer__top {
  text-align: center;
}

.site-footer__top .region {
  width: 100%;
  padding: 0;
  border: none;
}

.site-footer .block {
  margin: 0;
  border: none;
}

.footer-top-padding {
  padding-top: 3rem;
}

#edit-preview {
  display: none;
}

.form-control {
  border-radius: 0;
}

.page-node-21 #main-wrapper {
  display: none;
}

.zertifizierung-list .view-content > div {
  width: 100%;
  height: auto;
  padding-bottom: 0.8em;
  text-align: center;
}

@font-face {
  font-family: "repanet-icon";
  src: url("../fonts/repanet-icon.eot?nk084i");
  src: url("../fonts/repanet-icon.eot?nk084i#iefix") format("embedded-opentype"), url("../fonts/repanet-icon.ttf?nk084i") format("truetype"), url("../fonts/repanet-icon.woff?nk084i") format("woff"), url("../fonts/repanet-icon.svg?nk084i#repanet") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "repanet-icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==============================================================================================================
A N I M A T I O N
-------------------------------------------------------------------------------------------------------------- */
.delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-07s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-1-2s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay-1-5s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-1-7s {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay-2-2s {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

.delay-2-5s {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.delay-2-7s {
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
}

.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.delay-3-2s {
  -webkit-animation-delay: 3.2s;
  animation-delay: 3.2s;
}

.delay-3-5s {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.delay-3-7s {
  -webkit-animation-delay: 3.7s;
  animation-delay: 3.7s;
}

.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* ==============================================================================================================
M E D I A  Q U E R I E S
-------------------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 22em) {
  .zertifizierung-list .view-content > div {
    width: 50%;
    height: auto;
  }
}
@media screen and (min-width: 33em) {
  .navbar-form {
    margin-left: 0;
    margin-right: 0;
  }
  .routenplaner {
    max-width: 15em;
  }
  .zertifizierung-list .view-content > div {
    width: 33.3%;
    height: auto;
  }
}
@media screen and (min-width: 44em) {
  .splide__arrows button {
    display: block;
  }
  #kontaktblock:before {
    width: 80%;
  }
  .region-kontaktblock {
    width: 70%;
  }
  .zertifizierung-list .view-content > div {
    width: 25%;
    height: auto;
  }
  .site-footer__top .region {
    width: 50%;
    margin-bottom: 2em;
    border-right: 1px solid #ccc;
  }
  .site-footer__top .region:nth-child(2),
  .site-footer__top .region:last-child {
    border-right: none;
  }
}
@media screen and (min-width: 62em) {
  #CollapsingNavbar {
    overflow: visible;
    width: auto;
    position: relative;
    top: 0;
    left: 0;
    padding-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .region-kontaktblock {
    width: 50%;
  }
  .zertifizierung-list .view-content > div {
    width: auto;
    height: auto;
  }
  .site-footer__top .region,
  .site-footer__top .region:nth-child(2) {
    width: 25%;
  }
  .site-footer__top .region:nth-child(2) {
    border-right: 1px solid #ccc;
  }
}
/* Layout Styles  */
.page-view-overview-jobs .field-content a {
  font-weight: bold;
}
.page-view-overview-jobs .field-content ul {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}
.page-view-overview-jobs .field-content li {
  font-size: larger;
  padding-left: 1rem;
}
.page-view-overview-jobs .field-content li::marker {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f14a";
  display: block;
}

.views-field-view-node {
  color: #ffffff;
}

.fs-6 a {
  color: #ffffff;
}

.custom-application-form {
  z-index: 2;
  top: 120px;
  max-width: 450px;
  border-color: #0055a4 !important;
  background-color: white !important;
  font-size: large;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.custom-application-form .form-email .form-email:active {
  border-bottom: 1px solid #0055a4;
}
.custom-application-form .form-email .form-email:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.custom-application-form .form-email .form-email:focus .form-control:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.custom-application-form .btn-custom-upload {
  height: 100%;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
}
.custom-application-form .webform-flexbox {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.custom-application-form button {
  width: 100%;
}

.views-field-field-hero-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.toast-header {
  display: none !important;
}

.toast-container {
  max-width: 466px;
  z-index: 10000;
  position: relative !important;
}

.toast {
  max-width: 100% !important;
  margin-bottom: 1rem;
}
.toast .toast-body {
  padding-bottom: 0.25rem;
}

.repanet-header-media-slider .slider-markup-container {
  padding: 0vw 2vw 0vw;
}

.slider-markup {
  width: 50%;
  color: #fff !important;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
}
.slider-markup h2 {
  -ms-hyphens: none;
      hyphens: none;
  color: white;
  margin: 0 0 0.5em;
}
.slider-markup h3 {
  -ms-hyphens: none;
      hyphens: none;
  margin: 0 0 0.3em;
}

.splide__pagination {
  max-width: 1200px;
  margin: 0 auto;
}
.splide__pagination .splide__pagination__page.is-active:focus {
  outline: none;
}
.splide__pagination .splide__pagination__page.is-active {
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
  z-index: 1;
  opacity: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.8;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
  height: 10px;
  border-radius: 0;
  width: 54px;
}

.slider-markup > h2 {
  font-size: xx-large;
}

.height--big .slider-media {
  height: 101vh;
}

.height--small {
  width: -webkit-fill-available;
}

.page-repanet-partner-garage .splide__pagination {
  margin-bottom: 4rem;
}

.page-repanet-partner-garage .slider-markup {
  max-width: 65em;
  margin-bottom: 10vh;
}

.service-block video {
  width: auto !important;
  min-height: 25em !important;
}

.splide:hover .splide__pagination {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}
.splide video {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 177.77777778vh;
  min-width: 100%;
  min-height: 56.25vw;
}
.splide .splide__pagination {
  bottom: 1.7rem;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.splide .splide__pagination li {
  padding: 8px 0;
  height: 11px;
}
.splide .slider-media {
  height: 100%;
}
.splide .slider-media:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(25%, rgba(0, 0, 0, 0.1)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
}
.splide .slider-markup h3,
.splide .slider-markup {
  opacity: 0;
}
.splide .is-active .slider-markup h3,
.splide .is-active .slider-markup {
  opacity: 0;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}
.splide .is-active .slider-markup h3 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.splide .is-active .slider-markup {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.splide .slider-markup {
  padding: 1.5vw;
}
.splide .slider-markup h1,
.splide .slider-markup h2,
.splide .slider-markup h3,
.splide .slider-markup h4,
.splide .slider-markup h5,
.splide .slider-markup h6,
.splide .slider-markup p,
.splide .slider-markup strong,
.splide .slider-markup b,
.splide .slider-markup small,
.splide .slider-markup figure,
.splide .slider-markup blockquote {
  background: transparent;
  color: white;
}
.splide .slider-markup figure {
  max-width: 55vw;
}
.splide .slider-markup h1 {
  font-size: 1.3em;
}
.splide .slider-markup a {
  display: inline-block;
  text-transform: uppercase;
  color: white;
  font-weight: 400;
  margin: 0;
  padding: 1.55rem 1.8rem;
  font-weight: 700;
}
.splide .slider-markup a:hover {
  cursor: pointer;
}
.splide .slider-markup a,
.splide .slider-markup .btn .btn-primary {
  padding: 1rem 3rem !important;
}
.splide .slider-markup small {
  display: block;
  width: 80vw;
  max-width: 40rem;
  margin: 0 auto;
}
.splide .slider-markup small a {
  display: inline-block;
  text-transform: inherit;
  color: white;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background: transparent;
}
.splide .slider-markup small a:hover {
  cursor: pointer;
  background: none;
}
.splide .splide__pagination__page.is-active {
  margin: 2px;
  height: 11px;
  -webkit-transform: scale(1) translateY(1px);
      -ms-transform: scale(1) translateY(1px);
          transform: scale(1) translateY(1px);
  opacity: 1;
}
.splide .splide__pagination__page {
  position: relative;
  display: inline-block;
  width: 6vw;
  min-width: 1.8rem;
  max-width: 4rem;
  height: 5px;
  border-radius: 0;
  margin: 2px;
}
.splide .splide__pagination__page:hover {
  margin: 2px;
  height: 11px;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
}

.repanet-media-slider .splide__pagination__page.is-active {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.repanet-media-slider .splide__pagination__page.is-active:hover {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.repanet-media-slider .splide__pagination__page {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.repanet-media-slider .splide__pagination__page:hover {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

#main-wrapper .slider-markup figure {
  max-width: 60vw;
  min-width: 18em;
}

.mobilenone {
  display: none;
}

.splide__slide {
  width: 100vw !important;
}

#page-content .splide .slider-media:before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(25%, rgba(0, 0, 0, 0)), color-stop(55%, rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.75) 100%);
}
#page-content .splide .slider-markup {
  color: white !important;
  padding: 0;
  margin: auto 0 auto 40%;
  -webkit-transform: trans;
      -ms-transform: trans;
          transform: trans;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.page-node-30 #header,
.page-node-20 #header,
.node--unternehmen #header,
.node--leistung #header {
  padding: 0;
}
.page-node-30 #header .repanet-header-media-slider.height--medium,
.page-node-30 #header .repanet-header-media-slider.height--medium .splide__track,
.page-node-30 #header .repanet-header-media-slider.height--medium .splide__list,
.page-node-20 #header .repanet-header-media-slider.height--medium,
.page-node-20 #header .repanet-header-media-slider.height--medium .splide__track,
.page-node-20 #header .repanet-header-media-slider.height--medium .splide__list,
.node--unternehmen #header .repanet-header-media-slider.height--medium,
.node--unternehmen #header .repanet-header-media-slider.height--medium .splide__track,
.node--unternehmen #header .repanet-header-media-slider.height--medium .splide__list,
.node--leistung #header .repanet-header-media-slider.height--medium,
.node--leistung #header .repanet-header-media-slider.height--medium .splide__track,
.node--leistung #header .repanet-header-media-slider.height--medium .splide__list {
  width: 100vw;
}

#splide01 {
  padding: 0;
}

.splide .slider-media {
  height: 101% !important;
}

.repanet-header-media-slider.height--big,
.repanet-header-media-slider.height--big .splide__track {
  height: auto;
}

.node .field--type-image {
  width: 100%;
}

.image-style-large {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.image-style-images-job-advertisements {
  width: 100% !important;
  height: auto;
}

.field--name-field-hintergrundbild img {
  width: -webkit-fill-available;
  height: auto;
}

#block-repanet-page-title {
  margin-bottom: 0.5rem;
}

body h1, body .field--name-title {
  font-size: xx-large;
}
body h2 {
  font-size: xx-large;
}
body h3 {
  font-size: x-large;
}
body h4 {
  font-size: large;
}
body h5 {
  font-size: small;
}
body h6 {
  font-size: x-small;
}
body p, body span, body li, body .block block-menu navigation menu--main {
  font-size: large;
}
body .site-footer__top .region span, body .block-views-blockservices-block-1 .view-content span {
  font-size: 4rem;
}
body .site-footer__top .region span .block-block-content6af77a2-024f-4135-ac25-2f8ec1c49ad7 p, body .block-views-blockservices-block-1 .view-content span .block-block-content6af77a2-024f-4135-ac25-2f8ec1c49ad7 p {
  font-size: small !important;
}

.field--name-field-art-der-beschaeftigung {
  font-size: x-large;
  font-weight: 800;
}

.field--name-field-angabe-geschlecht {
  font-size: large;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.slider-content a {
  color: white;
  font-weight: 600;
}
.slider-content a :hover {
  -webkit-transition: 1.25s;
  transition: 1.25s;
  text-decoration: underline;
}

.description text-muted a {
  font-weight: 500;
}

body {
  line-height: 1.4;
  -ms-hyphens: manual;
      hyphens: manual;
}
body main ul:not(.contextual-links, .splide .splide__pagination li) li {
  margin-bottom: 0.6em;
}
body main ul:not(.contextual-links, .splide .splide__pagination li) li:last-child {
  margin-bottom: 0;
}
body p {
  line-height: 1.4;
  -ms-hyphens: manual;
      hyphens: manual;
}
body h2 {
  padding: 0 !important;
  line-height: 1.2 !important;
  margin: 3rem 0rem 1rem 0rem;
}
body h3 {
  padding: 0 !important;
  line-height: 1.2 !important;
  margin: 2.3rem 0rem 0.7rem 0rem;
}

.field--name-field-benefits li {
  margin-top: 0.5rem;
}

.site-footer__bottom .block {
  font-size: smaller;
}
.site-footer__bottom .block p {
  font-size: x-small;
}

.block-block-content16af77a2-024f-4135-ac25-2f8ec1c49ad7 p {
  font-size: smaller;
}

.menu--footer ul li a {
  font-size: small;
}

.block-block-content772ace88-3683-47f9-ad69-16e7699b8c1b div .field__item p {
  font-size: smaller;
}

.breadcrumb {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.breadcrumb .breadcrumb-item a {
  color: #333333;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #333333;
}

.toolbar-icon {
  font-size: small;
}

.fs-6 {
  color: #fff;
}
.fs-6 :hover {
  color: #ffe !important;
}
.fs-6 a {
  text-decoration: none !important;
  color: #fff;
}
.fs-6 a :hover {
  color: #ffe !important;
}

.toolbar-menu .menu-item {
  margin-bottom: 0;
}

#CollapsingNavbar {
  margin-top: 1.5rem;
}
#CollapsingNavbar div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#CollapsingNavbar div div .field__item {
  height: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0em 0.5em;
}
#CollapsingNavbar div div .field__item svg {
  margin-right: 0.5rem;
}

#navbar-tophover {
  background: white;
}

#header {
  background: white !important;
}

[id^=edit-keys] {
  border: 0;
  border-bottom: 1px solid black;
  border-radius: 0;
  width: 100%;
  font-weight: 600;
}

.navbar:hover {
  background-color: #0055a4;
}
.navbar:hover .form-search .form-control {
  background: white;
  margin-top: 0.5rem;
  margin-left: 1rem;
}

[id^=edit-keys] {
  background: white;
  margin: 0rem;
  color: #333333;
  border: 0;
  border-bottom: 1px solid black;
  border-radius: 0;
  width: 100%;
  font-weight: 600;
  padding: 0;
}

.navbar-scroll {
  background-color: #0055a4 !important;
}
.navbar-scroll .navbar-scroll:hover {
  text-decoration: none;
}

.dropdown-menu {
  background-color: white !important;
}

.form-row > div {
  padding: 0 !important;
}

.dropdown-item a {
  color: #76b729 !important;
}

.dropdown-menu a {
  color: #333333;
  text-shadow: none !important;
}

.dropdown-item a {
  color: inherit !important;
}

.dropdown-menu .dropdown-item :hover {
  color: white !important;
}

.dropdown-menu .dropdown-item :hover {
  text-decoration: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #0055a4 !important;
  color: white !important;
  -webkit-transition: 1s;
  transition: 1s;
}
.dropdown-item:focus .dropdown-item a,
.dropdown-item:hover .dropdown-item a {
  color: #333333 !important;
}

.block-block-content16af77a2-024f-4135-ac25-2f8ec1c49ad7 > p {
  max-width: 100% !important;
}

/* BASIC STYLING
============================================================================= */
.modal-body {
  padding: 0 1rem 1rem;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  text-align: left;
  display: block;
  width: 100%;
}

.modal-content {
  hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
}

.modal-footer {
  display: none;
}

.modal-open .close {
  position: absolute;
  right: 1rem;
  background: transparent;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: scroll;
}

.modal-dialog {
  max-width: 800px;
}

.icon-anfragen:before {
  font-size: 7rem;
  content: "\e909";
}

.icon-schaden:before {
  font-size: 7rem;
  content: "\e908";
}

.icon-lack,
.icon-mechanik {
  position: relative;
  left: 0.2rem;
  top: 0.7rem;
}

.icon-lack:before {
  font-size: 3rem;
  line-height: 0;
  content: "\e90d";
}

.icon-mechanik:before {
  font-size: 3rem;
  line-height: 0;
  content: "\e90c";
}

#schadenform-wrapper,
#schadenform-wrapper .container,
#schadenform-wrapper .form-header {
  width: 100%;
  max-width: 100% !important;
}

#schadenform-wrapper *, #schadenform-wrapper *:after, #schadenform-wrapper *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

#schadenform-wrapper h1 {
  font-size: 2em;
}

#schadenform-wrapper h3 {
  font-size: 1.4em;
  margin: 0.3rem 0 1rem;
}

#schadenform-wrapper svg {
  width: 100% !important;
  min-height: 340px !important;
}

#schadenform-wrapper .row {
  text-align: left;
}

#schadenform-wrapper .col-md-6 {
  width: 48%;
  float: left;
}

#schadenform-wrapper .col-xs-6 {
  width: 50%;
  float: left;
  position: relative;
  min-height: 1px;
}

.form-group {
  position: relative;
}

#schadenform-wrapper .glyphicon-question-sign:after {
  cursor: pointer;
  float: right;
  position: absolute;
  top: 8px;
  right: 8px;
  content: "?";
  display: block;
  font-size: 12px;
  padding-top: 3px;
  color: white;
  width: 18px;
  height: 18px;
  background: #005971;
  text-align: center;
  border-radius: 50%;
}

#schadenform-wrapper .glyphicon-question-sign:hover:after {
  background: #999;
}

.smf-fotos {
  min-height: 90px;
}

.smf-fotos .upload-button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  width: 100%;
  padding: 1.2em 15px;
  color: white;
  margin: 10px 0 5px !important;
  text-align: center;
}

.smf-fotos input {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30px;
  z-index: 999;
  opacity: 0;
  cursor: pointer;
}

.smf-transport {
  display: inline-block;
  float: none;
  clear: both;
  width: 100%;
  min-height: 70px;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
          box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
  -webkit-transition: border-color 0.15s ease-in-out 0s, -webkit-box-shadow 0.15s ease-in-out 0s;
  transition: border-color 0.15s ease-in-out 0s, -webkit-box-shadow 0.15s ease-in-out 0s;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s, -webkit-box-shadow 0.15s ease-in-out 0s;
}

.smf-fotos .ng-pristine {
  border: 1px solid #aaa;
  padding: 5px;
  max-width: 100% !important;
}

#schadenform-wrapper hr {
  width: 100%;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #dadbdb;
  margin: 20px 0;
}

#schadenform-wrapper a,
#schadenform-wrapper a:link,
#schadenform-wrapper a:active,
#schadenform-wrapper a:visited,
#schadenform-wrapper .glyphicon-question-sign:after {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

#schadenform-wrapper a:hover,
#schadenform-wrapper .glyphicon-question-sign:hover:after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

#schadenform-wrapper input[type=file] {
  display: block;
}

#schadenform-wrapper .btn-danger {
  width: 100%;
}

#schadenform-wrapper .btn:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  background: #777;
}

#schadenform-wrapper .form-header {
  padding: 0 10px 0 0;
}

#schadenform-wrapper .navigation a {
  position: relative;
  background: #f5f5f5;
  top: -1px;
  display: inline-block;
  font-size: 12px;
  margin-right: 10px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 15px;
  border-width: 1px;
  border-style: solid;
  border-color: #dee2e6;
  font-weight: bold;
}

#schadenform-wrapper .navigation a:hover {
  text-decoration: none;
}

#schadenform-wrapper .navigation a.active {
  outline: none;
  background: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-top-color: #ffffff;
  border-right-color: #dee2e6;
  border-bottom-color: #dee2e6;
  border-left-color: #dee2e6;
  color: #333;
}

#schadenform-wrapper a.selection-box {
  display: block;
  text-align: center;
  position: relative;
  color: white !important;
  padding: 30px 0;
  margin: 2rem 0;
}

#schadenform-wrapper a.selection-box span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  text-transform: uppercase;
}

#schadenform-wrapper .ng-invalid-required {
  position: relative;
}

#schadenform-wrapper .ng-invalid-required a.selection-box span {
  display: inline-block;
}

#schadenform-wrapper a.selection-box.damage-form-type.active [class^=icon-], #schadenform-wrapper a.selection-box.damage-form-type.active [class*=" icon-"],
#schadenform-wrapper a.selection-box:hover [class^=icon-], #schadenform-wrapper a.selection-box:hover [class*=" icon-"] {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
  text-shadow: 0 3px 4px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

#schadenform-wrapper a.selection-box p {
  padding: 5px 20px 0 20px;
  color: white;
}

#schadenform-wrapper a.selection-box.damage-form-type.active,
#schadenform-wrapper a.selection-box:hover {
  text-decoration: none;
}

#schadenform-wrapper .form-group.postalcode {
  width: 20%;
  float: left;
}

#schadenform-wrapper .form-group.city {
  width: 78%;
  float: right;
}

#schadenform-wrapper .form-group.phone {
  float: none;
  clear: both;
}

#schadenform-wrapper .form-group {
  margin-bottom: 15px;
}

#schadenform-wrapper .form-validation-message p {
  margin-top: 5px;
  font-size: 0.9em;
  color: #f6aa26 !important;
}

#schadenform-wrapper .form-actions .form-action-next {
  text-align: right;
}

#schadenform-wrapper fieldset {
  border: 1px solid #eee;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background: white;
  padding-bottom: 20px;
  margin-bottom: 1.5em;
}

#schadenform-wrapper textarea.form-control {
  height: auto;
  resize: none;
}

/* POP-UP
============================================================================= */
#schadenform-wrapper .popover {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1060;
  display: none;
  max-width: 300px;
  min-width: 220px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  line-break: auto;
}

#schadenform-wrapper .popover img {
  max-width: 100%;
}

#schadenform-wrapper .popover.right {
  margin-left: 40%;
}

#schadenform-wrapper .popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

#schadenform-wrapper .popover-content {
  font-size: 0.8em;
  padding: 10px;
}

#schadenform-wrapper .popover > .arrow,
#schadenform-wrapper .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

#schadenform-wrapper .popover > .arrow {
  border-width: 11px;
}

#schadenform-wrapper .popover > .arrow:after {
  content: "";
  border-width: 10px;
}

#schadenform-wrapper .popover.right > .arrow {
  top: 55%;
  right: -11px;
  margin-top: -11px;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
  border-right-width: 0;
}

#schadenform-wrapper .popover.right > .arrow:after {
  bottom: -10px;
  right: 1px;
  content: " ";
  border-left-color: #fff;
  border-right-width: 0;
}

#schadenform-wrapper .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

#schadenform-wrapper .fade.in {
  opacity: 1;
}

/* ANIMATION STYLING
============================================================================= */
#schaden-form {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  width: 100%;
  padding: 1rem 0 0;
}

#form-views {
  width: auto;
}

/* basic styling for entering and leaving */
/* left and right added to ensure full width */
#form-views.ng-enter,
#form-views.ng-leave {
  position: absolute;
  left: 30px;
  right: 30px;
  transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
}

/* enter animation */
#form-views.ng-enter {
  -webkit-animation: slideInRight 0.5s both ease;
  animation: slideInRight 0.5s both ease;
}

/* leave animation */
#form-views.ng-leave {
  -webkit-animation: slideOutLeft 0.5s both ease;
  animation: slideOutLeft 0.5s both ease;
}

/* KFZ MAP
============================================================================= */
.kfz-metall,
.kfz-glas,
.kfz-darkmetall {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

[id^=kfz-]:hover circle, [id*=" kfz-"]:hover circle,
[id^=kfz-]:hover .kfz-circle, [id*=" kfz-"]:hover .kfz-circle,
.car-image a.active circle,
.car-image a.active .kfz-circle {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: #f6aa26;
}

[id^=kfz-]:hover .kfz-metall, [id*=" kfz-"]:hover .kfz-metall {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: #bbb;
}

.car-image a.active g path.kfz-metall {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: #aaa;
}

[id^=kfz-]:hover .kfz-glas, [id*=" kfz-"]:hover .kfz-glas {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: #9fc9e3;
}

.car-image a.active g path.kfz-glas {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: #8ab3cd;
}

[id^=kfz-]:hover .kfz-darkmetall, [id*=" kfz-"]:hover .kfz-darkmetall {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: #666;
}

.car-image a.active g path.kfz-darkmetall {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: #555;
}

@media (max-width: 800px) {
  svg {
    min-height: auto !important;
  }
}
@media only screen and (max-width: 570px) {
  #schaden-form {
    min-height: 100px;
  }
  #schadenform-wrapper .form-header {
    padding: 0;
  }
  #schadenform-wrapper .navigation a {
    text-align: left;
    position: relative;
    margin: 0;
    width: 100%;
    display: block;
    padding: 10px 15px;
  }
  .popover p {
    font-size: 11px !important;
  }
  #schadenform-wrapper .popover.right {
    margin-left: 0%;
  }
  #schadenform-wrapper a.selection-box {
    margin: 0;
  }
  #schadenform-wrapper .col-md-6 {
    width: 100% !important;
    margin: 0.5rem 0 !important;
    float: none !important;
    padding: 0;
  }
  #schadenform-wrapper .btn {
    width: 100%;
    min-width: 120px;
    padding: 15px;
  }
  .form-control {
    padding: 6px 8px;
  }
  #schadenform-wrapper svg {
    min-height: 270px !important;
  }
  #form-begin {
    height: 30px;
  }
}
/* ANIMATIONS
============================================================================= */
/* slide out to the left */
@keyframes slideOutLeft {
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@-webkit-keyframes slideOutLeft {
  to {
    -webkit-transform: translateX(-200%);
  }
}
/* slide in from the right */
@keyframes slideInRight {
  from {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translateX(200%);
  }
  to {
    -webkit-transform: translateX(0);
  }
}
/* Disabled Submit Button */
button.disabled,
.form-action-next button[disabled=disabled],
.form-action-next button:disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  cursor: inherit;
}

/* Image upload progress */
.upload-progress {
  width: 100%;
  background: white;
}

.upload-progress > span {
  display: block;
  text-align: left;
  background-color: #005971;
  padding: 0.25em 0.5em;
  font-size: 0.8em;
  color: white;
}

.upload-progress-info,
.upload-progress-err {
  display: block;
  font-size: 0.8em;
  padding: 0.25em 0.5em 0.25em 50px;
  position: absolute;
  margin-top: -24px;
  width: 100%;
  text-align: left;
  color: white;
}

.upload-progress-err {
  color: #f6aa26;
}

.close {
  border: 0;
  border-radius: 40px;
  width: 40px !important;
  height: 40px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black !important;
}
.close span {
  width: 48px;
  font-size: xx-large;
  height: 48px;
  text-align: center;
  display: inline;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 320px) and (max-width: 425px) {
  .block-content-navi_contact {
    padding-bottom: 0.5rem;
  }
  .block-content-navi_contact div {
    display: inline-block;
  }
  .block-content-navi_contact div .field__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1rem;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
  }
  .splide__pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .splide__pagination .splide .block-content-navi_contact {
    width: 13vw;
  }
  .splide__pagination--ltr {
    bottom: 15px !important;
    padding-bottom: 0;
  }
  .splide .block-content-navi_contact {
    width: 13vw;
  }
  .slider-markup {
    width: 100%;
    padding: 1vh 1vh 7vh;
  }
  .node--type-stellenanzeigen p {
    -ms-hyphens: auto;
        hyphens: auto;
  }
  #CollapsingNavbar {
    background: white !important;
    padding-top: 80px !important;
  }
  #navbar-main {
    padding: 0;
  }
  button:focus {
    outline: none;
  }
  #header a.btn {
    width: 100%;
  }
  .zertifizierung-list .view-content {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .zertifizierung-list .view-content img {
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 140px;
  }
  .view-overview-jobs {
    overflow: hidden;
  }
  .views-field-field-hero-image img img {
    max-width: 100vw;
    max-height: 450px !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  #sidebar_second .aside {
    position: fixed;
    margin: 0 !important;
    max-width: 100% !important;
  }
  #sidebar_second .aside .sidebar .block {
    margin: 0;
  }
  #sidebar_second .aside .custom-application-form {
    margin: 0;
  }
  h1, .field--name-title {
    font-size: xx-large !important;
  }
  h2, h3 {
    font-size: x-large !important;
  }
  h2 strong, h3 strong {
    font-size: x-large !important;
  }
  .slider-markup > h2 {
    -ms-hyphens: auto;
        hyphens: auto;
  }
  #header {
    z-index: 9999;
  }
  /*[id^="edit-keys"] {
      margin-left: 0;
      width: 92vw;
      padding-bottom: 1em;
      margin-top: 1rem;
  }*/
  .breadcrumb {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  #block-footerfifth {
    max-width: 80% !important;
  }
  #CollapsingNavbar div {
    height: 70px;
    display: contents;
  }
  #CollapsingNavbar div .field__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0.5em 0em;
  }
  .block-content-navi_contact svg {
    width: 30px;
    height: auto;
  }
  .custom-modal-damage-form .modal {
    max-height: 90vh;
  }
  #navbar-main {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 426px) and (max-width: 576px) {
  .block-content-navi_contact div {
    display: inline-block;
  }
  .block-content-navi_contact div .field__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0.5rem 0rem 0.5rem 1rem;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
  }
  /*[id^="edit-keys"] {
      margin-left: 0;
      width: 89vw;
      padding-bottom: 1em;
      margin-top: 1rem;
      margin-bottom: 0.5em;
  }*/
  #CollapsingNavbar div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .slider-markup {
    width: 100%;
    padding: 1vh 1vh 7vh;
  }
  #CollapsingNavbar {
    background: white !important;
    padding-top: 80px;
  }
  #navbar-main {
    padding: 0rem 2rem 0rem 0rem;
  }
  #header a.btn {
    width: 70%;
  }
  .zertifizierung-list .view-content img {
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 150px;
  }
  .custom-application-form {
    margin: 0 !important;
    max-width: 100% !important;
  }
  .custom-application-form .sidebar .block {
    margin: 0;
  }
  .custom-application-form .custom-application-form {
    margin: 0;
  }
  h1, .field--name-title {
    font-size: xx-large !important;
  }
  h2, h3 {
    font-size: x-large !important;
  }
  h2 strong, h3 strong {
    font-size: x-large !important;
  }
  .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 1em;
  }
  .navbar-nav li {
    width: auto;
  }
  .navbar-nav li .dropdown-menu {
    border: none;
  }
  .slider-markup > h2 {
    -ms-hyphens: auto;
        hyphens: auto;
  }
  #header {
    z-index: 9999;
  }
  #navbar-main {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 577px) and (max-width: 768px) {
  .block-content-navi_contact div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100% !important;
  }
  .block-content-navi_contact div .field__item {
    min-width: -webkit-fit-content !important;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
    height: 20px;
    width: 33%;
    margin: 0rem 1rem 0rem 1rem;
  }
  /*[id^="edit-keys"] {
      width: 90vw;
      margin-left: 2rem;
  }*/
  #CollapsingNavbar div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .navbar-nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 1em;
  }
  .slider-markup {
    width: 70%;
    padding: 1vh 1vh 7vh;
  }
  .repanet-header-media-slider .slider-markup-container {
    bottom: 3% !important;
    padding: 1rem;
    width: 100vw;
    left: 0;
  }
  #CollapsingNavbar {
    background: white !important;
    padding-top: 80px !important;
  }
  #navbar-main {
    padding: 0rem 2rem 0rem 0rem;
  }
  button:focus {
    outline: none;
  }
  #header a.btn {
    width: auto;
    min-width: 70%;
  }
  .zertifizierung-list .view-content img {
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .custom-application-form {
    margin: 0 !important;
    max-width: 100% !important;
    top: 120px;
  }
  .custom-application-form .sidebar .block {
    margin: 0;
  }
  .custom-application-form .custom-application-form {
    margin: 0;
  }
  h1, .field--name-title {
    font-size: xx-large !important;
  }
  h2, h3, .slider-markup > h2 {
    font-size: x-large !important;
  }
  h2 strong, h3 strong, .slider-markup > h2 strong {
    font-size: x-large !important;
  }
  #block-footerfifth p {
    max-width: 90%;
  }
  .region-footer-fifth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .region-footer-fifth .block-block-content16af77a2-024f-4135-ac25-2f8ec1c49ad7 {
    width: 40%;
  }
  .region-footer-fifth .block-block-content16af77a2-024f-4135-ac25-2f8ec1c49ad7 .navbar-nav {
    width: auto;
  }
  .region-footer-fifth .block-block-content16af77a2-024f-4135-ac25-2f8ec1c49ad7 .navbar-nav .nav-item {
    width: auto !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .block-content-navi_contact div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100% !important;
  }
  .block-content-navi_contact div .field__item {
    height: 20px;
    width: 33%;
    margin: 0rem 1rem 0rem 1rem;
  }
  /*[id^="edit-keys"] {
      width: 96vw;
      margin-left: 1rem;
  }*/
  .slider-markup {
    width: 70%;
    padding: 1vh 1vh 7vh;
  }
  #CollapsingNavbar {
    background: white !important;
    padding-top: 70px;
  }
  #navbar-main {
    padding: 0rem 2rem 0rem 0rem;
  }
  .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #header a.btn {
    width: auto;
    min-width: 60%;
  }
  .block-content-navi_contact div div {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
  }
  .zertifizierung-list .view-content img {
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .custom-application-form {
    margin: 0 !important;
    max-width: 100% !important;
    top: 120px;
  }
  .custom-application-form .sidebar .block {
    margin: 0;
  }
  .custom-application-form .custom-application-form {
    margin: 0;
  }
  h1, .field--name-title {
    font-size: xx-large;
  }
  h2, h3, .slider-markup > h2 {
    font-size: x-large;
  }
  h2 strong, h3 strong, .slider-markup > h2 strong {
    font-size: x-large !important;
  }
  #block-footerfifth p {
    max-width: 90%;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  #navbar-main {
    padding: 0rem 2rem 0rem 2rem;
  }
  .block-content-navi_contact {
    position: absolute;
    top: -15px;
  }
  .block-content-navi_contact div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block-content-navi_contact div .field__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #page li {
    font-size: medium !important;
  }
  #header a.btn {
    width: auto;
    min-width: 55%;
  }
  #navbar-main {
    padding: 0rem 2rem 0rem 0rem !important;
  }
  .zertifizierung-list .view-content {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
  }
  .zertifizierung-list .view-content img {
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .splide .slider-markup a, .splide .slider-markup .btn .btn-primary {
    padding: 1rem 3.5rem !important;
    margin: 1em;
  }
  .custom-application-form {
    margin: 0 !important;
    max-width: 100% !important;
    top: 120px;
  }
  .custom-application-form .sidebar .block {
    margin: 0;
  }
  .custom-application-form .custom-application-form {
    margin: 0;
  }
  h1, .field--name-title {
    font-size: xx-large;
  }
  h2, h3, .slider-markup > h2 {
    font-size: x-large;
  }
  h2 strong, h3 strong, .slider-markup > h2 strong {
    font-size: x-large !important;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1400px) {
  .block-content-navi_contact {
    position: absolute;
    top: -15px;
  }
  .block-content-navi_contact div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block-content-navi_contact div .field__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .splide .slider-markup a, .splide .slider-markup .btn .btn-primary {
    padding: 1rem 3.5rem !important;
    margin: 1em;
  }
  .custom-application-form {
    margin: 0 !important;
    max-width: 100% !important;
    top: 120px;
  }
  .custom-application-form .sidebar .block {
    margin: 0;
  }
  .custom-application-form .custom-application-form {
    margin: 0;
  }
  .zertifizierung-list .view-content img {
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  h1, .field--name-title {
    font-size: xx-large;
  }
  h2, h3, .slider-markup > h2 {
    font-size: x-large;
  }
  h2 strong, h3 strong, .slider-markup > h2 strong {
    font-size: x-large !important;
  }
}
@media only screen and (min-width: 1401px) and (max-width: 1920px) {
  .block-content-navi_contact {
    position: absolute;
    top: -15px;
  }
  .block-content-navi_contact div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block-content-navi_contact div .field__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1rem;
  }
  /*[id^="edit-keys"] {
      width: 12vw;
  }*/
  #CollapsingNavbar .navbar-form {
    width: auto;
  }
  .zertifizierung-list .view-content img {
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .splide .slider-markup a, .splide .slider-markup .btn .btn-primary {
    padding: 1rem 3.5rem !important;
    margin: 1em;
    margin-left: 0;
  }
  #header a.btn {
    width: auto;
  }
  .custom-application-form {
    margin: 0 !important;
    max-width: 100% !important;
    top: 120px;
  }
  .custom-application-form .sidebar .block {
    margin: 0;
  }
  .custom-application-form .custom-application-form {
    margin: 0;
  }
  .custom-application-form {
    z-index: 2;
  }
}
@media only screen and (min-width: 1921px) {
  .block-content-navi_contact {
    position: absolute;
    top: -20px;
  }
  .block-content-navi_contact div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block-content-navi_contact div .field__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1rem;
  }
  .slider-markup {
    width: 50%;
  }
  .splide .slider-markup a, .splide .slider-markup .btn .btn-primary {
    padding: 1rem 3.5rem !important;
    margin: 1em;
    margin-left: 0;
  }
  .custom-application-form {
    margin: 0 !important;
    max-width: 100% !important;
    top: 120px;
  }
  .custom-application-form .sidebar .block {
    margin: 0;
  }
  .custom-application-form .custom-application-form {
    margin: 0;
  }
  #header a.btn {
    width: auto;
  }
  .zertifizierung-list .view-content img {
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .custom-application-form {
    z-index: 2;
  }
  #kontaktblock {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 48rem) {
  .splide .slider-media {
    width: 100vw;
    height: 100%;
    min-height: none;
    border-bottom: none;
  }
  .header-media-slider .slider-media picture img {
    -o-object-position: center !important;
    object-position: center !important;
  }
}