
/* Hint im Entwicklungsmodus. Mit Launch ausschalten in grid.scss */


.only-s {
  display: block !important;
}

.no-s {
  display: none !important;
}


/* ------------[ Schriften ]------------ */

/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'),local('OpenSans-Regular'),
      url('../../fonts/open-sans-v18-latin-regular.woff2') format('woff2'),
      url('../../fonts/open-sans-v18-latin-regular.woff') format('woff');
  font-display: swap;
}

/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans Bold';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'),local('OpenSans-Bold'),
       url('../../fonts/open-sans-v18-latin-700.woff2') format('woff2'),
       url('../../fonts/open-sans-v18-latin-700.woff') format('woff');
 font-display: swap;
}



/* ------------[ Body ]------------ */

body {
  font-family: 'Open Sans';
  font-size: 18px;
  line-height: 26px;
  color: #333;
  margin: 0;
}


/* ==============================[ Begrenzung Inhalt ]============================== */

/* Begrenzung des Contentbereichs */
.inner {
	width: 100%;
	max-width: 1360px;
	padding: 0 18px;
	margin: 0 auto;
}

.inner.small {
  max-width: 800px;
  text-align: center;
}


/* ==============================[ Formate für Sektionen ]============================== */

section {
	margin: 60px 0;
  position: relative;
}


/* ------------[ spezielle Klassen für Sektionen ]------------ */

section.no-padding {
  padding: 0;
}

section.padding {
  padding: 60px 0;
}

section.no-margin-bottom {
  margin-bottom: 0 !important;
}
section.no-margin-top {
  margin-top: 0 !important;
}

section.black-stripe {
  background: #333;
  color:#fff;
  padding: 60px 0;
}

section.grey-stripe {
  background: #f1f1f1;
  padding: 60px 0;
}

section.orange-stripe {
  background: #ff8100;
  color:#fff;
  padding: 60px 0;
}

section.padding-bottom, section.black-stripe.padding-bottom{
    padding: 0 0 60px;
}
section.section-lines {
    margin: 84px 0;
}
.section-lines:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  display: block;
  height: 40px;
  width: 100%;
  background: url(/inc/img/lines.svg) no-repeat center bottom;
  background-size: cover;
}

.section-lines:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  transform: rotate(180deg);
  display: block;
  height: 40px;
  width: 100%;
  background: url(/inc/img/lines.svg) no-repeat center bottom;
  background-size: cover;

}



/* ========================[ universelle Klassen ]======================== */

/* ------------[ Positionierung der Elmente ]------------ */

.center {
  align-items: center;
}

.bottom {
  align-items: flex-end;
}

.top {
  align-items: flex-start;
}


/* ------------[ verschiedene Abstände ]------------ */

/* kein Abstand nach oben */
.no-margin {
	margin: 0;
}

/* zusätzlicher Abstand nach oben */
.margin-top {
	margin-top: 30px !important;
}

/* zusätzlicher Abstand nach unten */
.margin-bottom {
	margin-bottom: 30px !important;
}


/* ------------[ verschiedene Abstände im Grid ]------------ */

.no-grid-gap {
  grid-gap: 0;
}

.small-grid-gap {
  grid-gap: 12px;
}

.big-grid-gap {
  grid-gap: 30px;
}


/* ------------[ Klassen für Texte ]------------ */

.text-right {
  text-align: right;
}

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

/* kleiner Text - identisch mit pic-description */
.minitext {
  font-size: 16px;
  line-height: 20px;
}

/* Tabulator */
.tab {
  display: block;
  width: 4.5em;
  float: left;
  clear: left;
}


/* ------------[ Sonstiges ]------------ */

/* Per Script auf ganze DIVs ausgeweitete Links */
.clickbox {
  cursor: pointer;
}

/* Abkürzungen und Akronyme */
abbr {
  border-bottom: 1px dotted #ddd;
  cursor: help;
}

abbr[title], acronym[title] {
  /* Reset Browser-Default */
  text-decoration: none;
}

/* Hintergrundfarbe für selektierten Text */
::selection {
  background: #ddd;
  text-shadow: none;
}



/* ========================[ Header-Bereich ]======================== */

header {
  position: fixed; /* Fixierter Header */
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 1px 1px 4px -1px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  z-index: 100;
}

section.header-section {
  margin: 0 auto;
}

/* Logo */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo links und Navi rechts per Flex */
}


/* ------------[ Logo ]------------ */

a.logo {
  display: block;
  width: 100%;
  max-width: 100px;
}

a.logo img{
  border: 0; /* für IE 10 */
}

/* ------------[ Hauptnavigation ]------------ */

.mainnav {
  display: none;
  width: 100%;
  position: absolute;
  top: 72px; /* Richtet sich nach Höhe des fixierten Headers auf mobile. Im nächsten Element den gleichen Wert eintragen */
  left: 0;
  height: calc(100vh - 72px);
  background-color: #ff8100;
  z-index: 99;
}

/* Liste der Hauptnavigation */
.mainnav > ul {
  position: relative;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  /*height: calc(100vh - 72px); Gesamte Bildschirmhöhe abzüglich fixiertem Header (s.o) */
  text-align: center;
  background-color: #ff8100;
  padding: 12px;
  margin: 0;
  z-index: 0;

}

/* einzelne Navigationspunkte */
nav.mainnav > ul li {
  display: block;
  position: relative;
  background: none;
  padding: 0;
  margin-bottom: 3px;
}

nav.mainnav > ul li:last-child {
  margin-bottom: 0;
}

/* einzelne links in den Navigationspunkten */
nav.mainnav > ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 20px 18px;
  font-size: 28px;
}

/* Navigation verstecken */
.header-section.closed .mainnav {
  display: none; /* ausgeblendet */
}

/* Navigation einblenden */
.header-section.open .mainnav {
  display: block; /* eingeblendet */
}
/* focus der Navigationspunkt-Links */
nav.mainnav ul li a:focus,
nav.mainnav ul li:focus,
nav.mainnav ul li:focus a{
  outline: none;
  background: transparent;

}

/* current der Navigationspunkte */
nav.mainnav ul li.current a,
nav.mainnav ul li.current a:hover {
	background: #ff5e0d;
}

/* hover der Navigationspunkte */
nav.mainnav ul li:hover a,
nav.mainnav ul li a:hover{
  color: #fff;
  background: #ff5e0d;
}





/* ------------[ Subnavigation ]------------ */

ul.subnav {
  margin: 6px 0 6px 18px;
  z-index: 90;
}

ul.subnav li {
  background: none;
  margin: 0;
}

/* hover/current der Subnavigationspunkte */
ul.subnav li a:hover {
	color: $white;
	background-color: $light-blue;
}

/* current der Subnavigationspunkte */
ul.subnav li.current a {
	color: $white;
	background-color: $light-blue;
}


/* ------------[ Mobile Navigation ]------------ */

#nav-toggle-wrap {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  position: relative;
}

.nav-toggle {
  display: block;
  position: relative;
  background: #ff8100;
  padding: 24px;
  margin: 12px 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle.open {
  background: #ff8100;
}

/* Hamburger-Icon */
.hamburger-icon {
  width: 24px;
  position: absolute;
  top: 18px;
  right: 12px;
}

/* Styling der 3 Striche des Hamburgers */
.hamburger,
.hamburger:after,
.hamburger:before {
  height: 3px;
  position: relative;
  background-color: #fff;
  margin-top: 5px;
  transition: all 0.3s ease;
}

.hamburger:after,
.hamburger:before {
  content: '';
  width: 100%;
  position: absolute;
}

/* Positionierung oberer Strich */
.hamburger:before {
	top: -12px;
}

/* Positionierung unterer Strich */
.hamburger:after {
	top: 2px;
}

/* Hamburger-Icon beim Öffnen des Menüs */
.header-section.open .hamburger {
	background: none; /* mittlerer der drei Striche wird ausgeblendet */
}

.header-section.open .hamburger:before {
	top: -6px;
	background: $white;
	transform: rotate(45deg);
}

.header-section.open .hamburger:after {
	top: -6px;
	background: $white;
	transform: rotate(-45deg);
}


/* ========================[ Standard-Elemente ]======================== */

/* ------------[ Überschriften ]------------ */

h1, h2, h3 {
  font-family: 'Open Sans', 'sans-serif';
  font-weight: bold;
}

h1 {
  font-size: 36px;
  line-height: 40px;
  margin: 0 0 18px;
}

h2 {
  font-size: 28px;
  line-height: 36px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 12px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 12px;
  font-family: 'Open Sans bold', 'sans-serif';

}


/* ------------[ Absätze ]------------ */

p {
  margin: 12px 0;
}

p.additional-title {
    color: #fff;
    margin-top: 0;
    font-family: 'Open Sans Bold';
    text-transform: uppercase;
}

p.additional-title.black {
    color: #333;
}

p.additional-title.margin-top {
    margin-top: 30px;
}

/* ------------[ Verlinkungen ]------------ */

a {
  color: #ff8100;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover, a:focus, a:active {
  color: #ff5e0d;
  transition: all 0.2s ease-in-out;
}

/* Buttons */
.button {
  display: inline-block;
  color: #ff8100;
  text-align: center;
  border:2px solid #ff8100;
  border-radius: 2px;
  padding: 12px 24px;
  margin: 24px 0 0;
  transition: all 0.2s ease-in-out;
}
.button:hover{
  border: 2px solid #333;
  color: #333;
}

.black-stripe .button:hover {
  border: 2px solid #ff5e0d;
  color: #ff5e0d;
}

.black-stripe .button,
.orange-stripe .button {
    color: #fff;
    border:2px solid #fff;
}

.orange-stripe .button:hover {
  border: 2px solid #333;
  color: #333;
}


/* ------------[ Bilder ]------------ */

.pic {
  display: block;
  width: 100%;
  height: auto;
}

/* Bildunterschrift */
.pic-description {
  font-size: 16px;
  line-height: normal;
}


/* ------------[ Bild größer klicken ]------------ */

.fancybox {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.2s ease-in-out;
}

/* + auf groß klickbaren Bild */
.fancybox:after {
  content: '';
  width: 42px;
  height: 42px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ff8100;
  background-image: url('/inc/img/icon-plus.svg');
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease-in-out;
  z-index: 9;
}

.fancybox:hover:after {
  background-color: #ff5e0d;
  transition: all 0.2s ease-in-out;
}


/* ------------[ Text-Bild-Element ]------------ */

.pic-img.left {
  margin-bottom: 30px;
}

.pic-img.right {
  margin-top: 30px;
}


/* ------------[ Unnummerierte Listen ]------------ */

ul {
  padding-left: 0;
  margin: 0;
}

/* Liste 1. Ebene */
ul > li {
  list-style-type: none;
  background: url('../../img/list-dot.svg') 0 0.5em no-repeat;
  background-size: 6px 6px;
  padding-left: 18px;
}

/* Liste 2. Ebene */
li ul {
  padding-left: 30px;
  margin: 12px 0;
}

li ul > li {
  background-size: 6px 6px;
  padding-left: 18px;
}

.black-stripe li{
  background: url('../../img/list-dot-white.svg') 0 0.5em no-repeat;
  background-size: 6px 6px;
}


/* ------------[ Nummerierte Listen ]------------ */

ol {
  padding-left: 20px;
  margin: 0;
}

/* Liste 1. Ebene */
ol > li {
  padding-left: 6px;
  margin: 0;
}

/* Liste 2. Ebene */
li ol {
  padding-left: 30px;
  margin: 12px 0;
}

li ol > li {
  padding-left: 6px;
}


/* ------------[ Listen mit mehr Abstand ]------------ */

.listspace > li {
  margin: 12px 0;
}

.listspace li ul {
  margin: 18px 0;
}


/* ------------[ Tabellen ]------------ */

table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}

tr {
  border: 2px solid #eee;
  border-width: 2px 0;
}

th, td {
  vertical-align: top;
  border-width: 0;
  padding: 12px;
}


/* ========================[ Sonderelmente ]======================== */

/* ------------[ Infobox ]------------ */

.infobox {
  height: 100%;
  background-color: #ff8100;
  color:#fff;
  padding: 30px;
}

/* infobox auf grauem Streifen */
section.black-stripe .infobox {
  color: #fff;
  background-color: #ff8100;
}

section.black-stripe .infobox a {
  color: #fff;
}


/* ------------[ Teaser ]------------ */

.teaser {
  background: #f3f3f3;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: all 0.2s ease-in-out;
}

.teaser h2 {
  margin: 0;
}

.teaser img {
  margin: 18px 0;
}

.teaser p {
  margin: 12px 0;
}

.teaser .button {
  width: 100%;
  margin: 12px auto 0;
}

.teaser:hover,
.teaser:focus {
  background: #f9f9f9;
  cursor: pointer;
}


/* ------------[ Akkordeon ]------------ */

/* Akkordeon Titel */
.accordion .title {
  background: #ff8100;
  border-radius: 2px;
  padding: 0 18px 0 0; /* Abstand für Pfeile rechts */
  margin-bottom: 6px; /* Abstand zu unterem accordion */
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.accordion .title:last-child {
  margin-bottom: 0; /* Abstand zu unterem accordion */
}

.accordion .title:hover {
  background: #ff5e0d;
}

/* Akkordeon Verlinkung */
.accordion a {
  color: #fff;
  text-decoration: none;
}

/* Akkordeon Überschrift im Titel */
.accordion .title h2,
.accordion .title h3 {
  display: block;
  position: relative;
  color: #fff;
  font-size: 18px;
  background: url('/inc/img/arrow-right.svg') no-repeat right;
  background-size: 16px 16px;
  padding: 8px 18px;
  margin: 0;
  line-height:30px;
}

/* Akkordeon Inhalt */
.accordion .acc-content {
  background: #fff;
  padding: 6px 24px 12px; /* mehr Abstand nach unterem wegen Abstand durch accordion */
}

/* wenn Akkordeon offen */
.accordion .open {
  background: #ff8100;
}

.accordion .open h2,
.accordion .open h3 {
  background: url('/inc/img/arrow-down.svg') no-repeat right;
  background-size: 16px 16px;
}


/* ------------[ Videoplayer ]------------ */

/* Video als PopUp öffnen */
.video-overlay a {
  display: block;
  position: relative;
  cursor: pointer;
}

/* weißes Play-Icon des Playbuttons im SVG */
.youtube-button {
  display: block;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  width: 84px;
  height: 60px;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* grauer Hintergrund des Playbuttons im SVG */
.youtube-play-button {
  fill: #1f1f1f;
  fill-opacity: 0.8;
  transition: fill 0.2s cubic-bezier(0.4, 0, 1, 1) 0s, fill-opacity 0.2s cubic-bezier(0.4, 0, 1, 1) 0s;
}

.video-overlay a:hover .youtube-play-button {
  fill: #cc181e;
  fill-opacity: 1;
  transition: fill 0.2s cubic-bezier(0, 0, 0.2, 1) 0s, fill-opacity 0.2s cubic-bezier(0, 0, 0.2, 1) 0s;
}


/* ------------[ Formulare ]------------ */

.form-content {
  margin: 24px 0;
  clear: both;
}

label {
  display: inline-block;
  font-size: 18px;
  color: #444;
  cursor: pointer;
}

label span {
  color: #00baff;
}

input, textarea {
  display: block;
  width: 100%;
  font-size: 16px;
  background-color: white;
  border: 1px solid #c4c4c4;
  padding: 12px;
  margin-bottom: 12px;
  resize: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #00baff;
}

select {
  color: #333;
  width: 100%;
  font-size: 16px;
  background-color: #fff;
  background-image: url(../img/arrow-down.svg.html);
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1px solid #c4c4c4;
  border-radius: 0;
  padding: 12px 12px;
  margin-bottom: 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  width: 100%;
  min-height: 150px;
}

option {
  padding: 0.3em 1em 0.3em 1em;
  border-top: 1px solid #444;
  background: #fff;
}

fieldset {
  border: none;
  clear: both;
}

legend {
  padding: 24px 0 18px;
  font-weight: bold;
}

legend span {
  display: block;
  font-size: 18px;
  font-weight: 400;
}

input[type="submit"] {
  color: #fff;
  background-color: #ff8100;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  width: auto;
}

input[type="submit"]:hover {
  background-color: #ff5e0d;
}

input[type="radio"]:checked,
input[type="radio"]:not(:checked),
input[type="checkbox"]:checked,
input[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

input[type="radio"]:checked + label,
input[type="radio"]:not(:checked) + label,
input[type="checkbox"]:checked + label,
input[type="checkbox"]:not(:checked) + label {
  position: relative;
  line-height: 24px;
  padding-left: 30px;
  cursor: pointer;
}

input[type="radio"]:checked + label:before,
input[type="radio"]:not(:checked) + label:before,
input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #c4c4c4;
  border-radius: 100%;
  background: #fff;
}

input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:not(:checked) + label:before {
  border-radius: 5px;
}

input[type="radio"]:checked + label:after,
input[type="radio"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  top: 4px;
  left: 4px;
  background: #00baff;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:not(:checked) + label:after {
  border-radius: 0;
  background: url(../img/input-check.svg) center no-repeat;
}

input[type="radio"]:not(:checked) + label:after,
input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
}

input[type="radio"]:checked + label:after,
input[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
}

.form-content input,
.form-content textarea,
.form-content select,
.input-radio-content,
.input-checkbox-content {
  margin: 12px 0; }

.fieldError {
  border: 1px solid #a94442;
}

.labelError {
  color: #a94442;
}


/* ========================[ Sonderelmente Website ]======================== */

/* ------------[ Keyvisual ]------------ */

.keyvisual {
  width: 100%;
  height: 400px;
  position: relative;
  background-image: url(/images/keyvisual-939172688.jpg);
  background-size: cover;
  background-position: left center;
}

.keyvisual h1 {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.keyvisual-lines{
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  height: 157px;
  width: 100%;
  background: url(/inc/img/keyvisual-lines.svg) no-repeat right bottom;
  background-size: cover;
}


/* ------------[ Call to Action ]------------ */

.call-to-action {
  display: block;
  font-size: 24px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #ff8100;
  border-radius: 2px;
  padding: 24px;
  margin: 0;
  transition: all 0.2s ease-in-out;
}

.call-to-action:hover {
  color: #fff;
  background: #ff5e0d;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}


/* ========================[ Footer-Bereich ]======================== */

footer {
  background: #ff8100;
  padding: 120px 0 0;
  position: relative;
}

footer .keyvisual-lines{
  bottom: auto;
  top: -37px;
}

footer section{
  background: #fff;
padding: 24px 0;
}


/* ========================[ Error-404-Bereich ]======================== */

.error-404 footer,
.impressum footer{
  background: transparent;
  padding: 40px 0;
  border-top: 1px solid #333;
}

.error-404 footer .keyvisual-lines,
.impressum footer .keyvisual-lines{
    display: none;
}


/* ========================[ noscript ]======================== */

noscript{
  position: absolute;
  top: 72px;
  left: 0;
  text-align: center;
  width: 100%;
  background-color: #444;
  color: #fff;
}
