@charset "UTF-8";
/**
 * Konfiguration
 *
 */
/**
 * Basis-Komponenten
 *
 */
/* =============================================================================
 *
 * Schriftangaben
 * ========================================================================== */
/* =============================================================================
 *
 * Logo der Seite
 *
 * ========================================================================== */
/* =============================================================================
 *
 * Grafiken der Seite
 *
 * ========================================================================== */
/* =============================================================================
 *
 * Abstaende, Radius etc.
 *
 * ========================================================================== */
/* =============================================================================
 *
 * Breakpoints (Mediaqueries)
 *
 * -----------------------------------------------------------------------------
 * Desktop-First-Methode
 * ========================================================================== */
/* =============================================================================
 *
 * Cursor
 *
 * ========================================================================== */
/* =============================================================================
 *
 * Farben
 *
 * ========================================================================== */
/* -----------------------------------------------------------------------------
 * Status
 * -------------------------------------------------------------------------- */
/**
 * Be- und Umrechnungen (PX, EM, REM, ...).
 *
 * @author Stephen Rushing, eSiteful
 * @url http://github.com/stephenr85/sass-unity
 */
/**
 * If a number has a .00001 decimal, it's probably a rounding issue and needs
 * to be dropped.
 * Example:
 *     sub-px(13.00005px) = 13px
 *
 * @function sub-px
 * @param string/number $dim
 *
 * return number
 */
/**
 * Removes the unit from a number.
 * Example:
 *     strip-unit(16px) = 16
 *
 * @function strip-unit
 * @param string/number $num
 *
 * return number
 */
/**
 * Find the first unit in a list of numbers.
 *
 * Examples:
 *     first-unit(0 12% 10% 1px) = px
 *
 * @function first-unit
 * @param number/list $dims
 *
 * return string
 */
/**
 * Convert any number to a px, or ensure a px value.
 * Percentages are retained. Use percent() to calculate static values.
 *
 * Examples:
 *     px(1rem) = 16px
 *     px(1 4rem 2em 10%) = 1px 64px 26px 10%
 *
 * @function px
 * @param number/list $dim
 *
 * return number A px value
 */
/**
 * Convert a number to an rem, or ensure an rem value.
 * Percentages are retained. Use percent() to calculate static values.
 *
 * @function rem
 * @param number $dim
 *
 * return number A rem value
 */
/**
 * Sometimes em values are still viable, obviously, but you have to know the
 * context for calculations. The baseline is stored, so each subsequent call
 * will use the previous $baseline parameter, if none is passed.
 *
 * @function em
 * @param number $dim
 * @param number $baseline [global $em-baseline] However many px = 1em,
 *                                               or the relative em of the
 *                                               current context.
 * @param boolean $adjust  [false]               When true, adjusts the global
 *                                               $em-baseline to whatever the
 *                                               result is. This is useful if
 *                                               you want to set things
 *                                               font-size: em(12px).
 *
 * return number A em value
 */
/**
 * Convert arbitrary units to or from percentages.
 * This works a little differently than the other unit functions, because it
 * does not retain units of its own type. In other words, a % value will be
 * converted, rather than returned entact.
 *
 * Examples:
 *     percent(24px, 240px) = 10%
 *     percent(1.5rem, 240px) = 10%
 *     percent(10%, 240px) = 24px
 *     percent(10%, rem(240px)) = 1.5rem
 *
 * @function percent
 * @param number $dim     If a %
 * @param number $context The total width for the calculation of the percentages.
 *
 * @return number If $dim is a % value, returns the percent calculation in the
 *                same unit as $context.
 *                If $dim is another unit, a % will be returned.
 */
/**
 * Visually relative to the pixels per inch of a device, but provides a
 * consistent mathmatical formula for converting units to pts for print.
 * Totally untested with actual print at this point.
 *
 * Examples:
 *     pt(16px) = 12pt
 *
 * @function pt
 * @param number $dim
 * @param number $px-per-inch Defaults to global $px-per-inch (96).
 * @param number $pt-per-inch Defaults to global $pt-per-inch (72).
 *
 * @return number A pt value.
 */
/**
 * Visually relative to the pixels per inch of a device, but provides a
 * consistent mathmatical formula for converting units to pts for print.
 * Totally untested with actual print at this point.
 *
 * Examples:
 *     cast-unit(px, 3em, 4em, (5))
 *
 * @function cast-unit
 * @param string $unit [em,pt,px,rem]
 * @param number $dims
 */
/**
 * Convert all numbers to the same unit type. Percentages are ignored.
 * Convert them first with percent(), if necessary.
 *
 * Examples:
 *     unity(12px, 1em) = unity(12px, 1em)
 *     unity(1em, 14px, 1.2rem, (16, 8%)) = 1em .25em 1.45em 16em 8%
 *
 * @function unity
 * @param number $dims
 *
 * @return number
 */
/**
 * Add numbers, normalizing them first. Percentages are ignored.
 * Convert them first with percent(), if necessary.
 *
 * Examples:
 *     plus(1rem, 4px, 7em, 5)
 *
 * @function plus
 * @param number $dims
 *
 * @return number
 */
/**
 * Subtract numbers, normalizing them first. Percentages are ignored.
 * Convert them first with percent(), if necessary.
 *
 * Examples:
 *     minus(20rem, 4px, 7em, 5)
 *
 * @function minus
 * @param number $dims
 *
 * @return number
 */
/**
 * Use rem units with px fallback.
 * Specify a px, em, or rem value with each property. Unitless values will be
 * considered an rem.
 *
 * Examples:
 *     rem(font-size 12px, line-height 1.4em)
 *
 * @mixin rem
 * @param string $properties
 *
 * @return number
 */
.fa-icon-helper, ul.list-icon > li::before, .btn-check-alarm::before, .btn-check-cookiebar::before, form > fieldset > div > .form-grp::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: inherit;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.break {
  clear: both;
  display: block;
  float: none;
  height: 20px;
}

/* =============================================================================
 *
 * Allgemein
 *
 * ========================================================================== */
/* =============================================================================
 *
 * Display: flex
 *
 * ========================================================================== */
/**
 * Kernaufbau
 *
 */
/**
 * Schrift
 *
 */
/* =============================================================================
 *
 * Body
 *
 * ========================================================================== */
/* =============================================================================
 *
 * Ueberschriften
 *
 * ========================================================================== */
/* =============================================================================
 *
 *  Sonstiges
 *
 * ========================================================================== */
/* =============================================================================
 *
 * Variablen
 *
 * ========================================================================== */
/* =============================================================================
 *
 * Elemente
 *
 * ========================================================================== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 1em;
}

head, head > * {
  display: none;
}

body {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-family: "Exo", Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: none;
}
body > * {
  margin: 40px 0;
}
body > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.clearfix {
  clear: both;
  float: none;
}
.clearfix::after, .clearfix::before {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}

.main-header .inner, .main, .main-footer .inner {
  margin: 0 auto;
}

.main, .main-header > .inner, .main-footer > .inner {
  width: 74%;
}

.main {
  -webkit-box-flex: 1 0 auto;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -webkit-flex: 1 0 auto;
  /* Safari 6.1+. iOS 7.1+, BB10 */
  -ms-flex: 1 0 auto;
  /* IE 10 */
  flex: 1 0 auto;
}
.main > * {
  margin: 20px 0;
}
.main > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.main > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 16px !important;
}
.main .content-extra > * {
  margin: 5px 0;
}
.main .content-extra > *:first-child {
  margin-top: 0;
}
.main .content-extra > *:last-child {
  margin-bottom: 0;
}
.main .content-header {
  margin-bottom: 50px;
}
.main .content-header > * {
  margin: 15px 0;
  padding-bottom: 10px;
}
.main .content-header > *:first-child {
  margin-top: 0;
}
.main .content-header > *:last-child {
  margin-bottom: 0;
}

.overlay {
  background: #fff;
  bottom: 0;
  height: 100%;
  left: -100%;
  opacity: 0.8;
  position: fixed;
  width: 100%;
  z-index: 10;
  -webkit-transition: left 0.5s ease 0.3s;
  -moz-transition: left 0.5s ease 0.3s;
  -o-transition: left 0.5s ease 0.3s;
  -ms-transition: left 0.5s ease 0.3s;
  transition: left 0.5s ease 0.3s;
}
.overlay.active {
  left: 0;
  -webkit-transition: left 0.5s;
  -moz-transition: left 0.5s;
  -o-transition: left 0.5s;
  -ms-transition: left 0.5s;
  transition: left 0.5s;
}

.extra {
  margin: 0 !important;
  overflow: visible;
}
.extra > * {
  margin: 5px;
}

.main-header {
  background: #fff;
  border-top: 20px solid #0c4276;
  font-size: 1.2em;
  margin-top: 0 !important;
  width: 100%;
}
.main-header > * {
  margin: 20px 0;
}
.main-header > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.main-header > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.main-header > .inner > .logo {
  float: left;
  margin-top: 20px;
  z-index: 11;
}
.main-header > .inner > .logo > .company {
  font-weight: 500;
}
.main-header > .inner > .nav-main {
  float: right;
}

@media (max-width: 767px) {
	.main-header > .inner > .logo > .company {
		display : none;
	}

	.main-header > .inner > .logo {
		margin-top: 30px;
	}
}

.main-footer {
  background: #0c4276;
  height: auto;
  width: 100%;
}
.main-footer * {
  color: #fff;
}
.main-footer > .inner {
  height: 100px;
}
.main-footer > .inner > .footer-info {
  bottom: 10px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
}
.main-footer > .inner > .footer-info > li {
  color: #fff;
  display: inline-block;
  font-weight: 700;
  list-style-type: none;
  margin: 0 10px;
  text-shadow: 1px 1px 3px #000;
}
.main-footer > .inner > .footer-info > li::after {
  content: "|";
  display: inline-block;
  left: 11.5px;
  position: relative;
}
.main-footer > .inner > .footer-info > li:first-child {
  margin-left: 0;
}
.main-footer > .inner > .footer-info > li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 1199px) {
  .main-footer > .inner {
    height: auto;
    padding: 15px 0;
  }
  .main-footer > .inner > * {
    margin: 15px 0;
    padding: 15px 0;
  }
  .main-footer > .inner > *:first-child {
    margin-top: 0;
    padding-top: 0;
  }
  .main-footer > .inner > *:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .main-footer > .inner .nav-side, .main-footer > .inner .footer-info {
    bottom: 0;
    position: relative;
    top: 0;
  }
  .main-footer > .inner .nav-side li, .main-footer > .inner .nav-side li > a, .main-footer > .inner .footer-info li, .main-footer > .inner .footer-info li > a {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .main-footer > .inner .nav-side > ul > li > a::before, .main-footer > .inner .footer-info > ul > li > a::before {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .main-footer > .inner .nav-side > ul > li:first-child > a::before, .main-footer > .inner .footer-info > ul > li:first-child > a::before {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .main-footer > .inner .nav-side > ul > li:last-child > a::before, .main-footer > .inner .footer-info > ul > li:last-child > a::before {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .main-footer > .inner .nav-side {
    border-bottom: 2px dotted;
  }
  .main-footer > .inner .nav-side > ul > li {
    margin: 5px 0;
  }
  .main-footer > .inner .nav-side > ul > li:first-child {
    margin-top: 0;
  }
  .main-footer > .inner .nav-side > ul > li:last-child {
    margin-bottom: 0;
  }
  .main-footer > .inner .nav-side > ul > li > a:hover, .main-footer > .inner .nav-side > ul > li > a.active {
    background: #fff;
  }
  .main-footer > .inner .nav-side > ul > li > a::before {
    display: none;
  }
  .main-footer > .inner .footer-info > li::after {
    content: "";
  }
}
/* =============================================================================
 *
 * Alle Elemente
 *
 * ========================================================================== */
* {
  color: #000;
  display: block;
  font-weight: 400;
  position: relative;
}
*::before, *::after {
  display: block;
  position: relative;
}
*.inside-text {
  display: inline-block;
}
*.chop-dotted, *.chop-solid {
  padding: 15px 0 !important;
}
*.chop-dotted {
  border-bottom: 2px dotted #000;
  border-top: 2px dotted #000;
}
*.chop-solid {
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
}

/* =============================================================================
 *
 * Alle Elemente
 *
 * ========================================================================== */
div {
  overflow: hidden;
}

/* =============================================================================
 *
 * Überschriften
 *
 * ========================================================================== */
h1 {
  color: #0c4276;
  font-size: 1.7142857143em;
  font-weight: 700;
}
h1.pagetitle {
  border-bottom: 3px dotted;
}

h2 {
  color: #2e2c2d;
  font-size: 1.5714285714em;
  font-weight: 700;
}

h3 {
  color: #2e2c2d;
  font-size: 1.4285714286em;
  font-weight: 700;
}

h4 {
  color: #0c4276;
  font-size: 1.2857142857em;
  font-weight: 700;
}
h4.subtitle {
  border-bottom: 2px solid;
}

h5 {
  color: #2e2c2d;
  font-size: 1.1428571429em;
  font-weight: 700;
}

/* =============================================================================
 *
 * Einfache Textelemente
 *
 * ========================================================================== */
span, strong, i, u {
  display: inline-block;
}

strong {
  font-weight: 700;
}
strong > * {
  font-weight: 700;
}

/* =============================================================================
 *
 * Listen
 *
 * ========================================================================== */
ul, ol {
  display: block;
  margin: 20px 0;
  padding: 0;
}
ul > *:first-child, ol > *:first-child {
  margin-top: 0;
}
ul > *:last-child, ol > *:last-child {
  margin-bottom: 0;
}
ul > li, ol > li {
  display: list-item;
  list-style-type: disc;
  margin: 5px 0 5px 20px;
}

ul.list-blank > li {
  list-style-type: none;
  margin: 0;
}
ul.list-icon > li {
  list-style-type: none;
  margin-left: 10px;
}
ul.list-icon > li::before {
  color: #0c4276;
  padding-right: 10px;
}
ul.list-icon.list-triangle > li::before {
  content: "\f105";
}
ul.list-icon.list-arrow > li::before {
  content: "\f061";
}
ul.list-icon.list-arrow-circle > li::before {
  content: "\f0a9";
}

/* =============================================================================
 *
 * Links
 *
 * ========================================================================== */
a {
  text-decoration: none;
}
a.casual-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
a.casual-link:hover {
  color: #0c4276;
  text-decoration: none !important;
}
a.casual-link:hover::before {
  background-color: #0c4276;
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
a.inside-text:hover, a.inside-text:focus, a.inside-text *:hover, a.inside-text *:focus {
  color: #0c4276;
}
a.inside-text:hover:before, a.inside-text:focus:before, a.inside-text *:hover:before, a.inside-text *:focus:before {
  background-color: #0c4276;
}
a.overlay-up-to-down, a.overlay-down-to-up, a.active {
  z-index: 1;
}
a.overlay-up-to-down::before, a.overlay-down-to-up::before, a.active::before {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: -1;
}
a.overlay-up-to-down:hover::before, a.overlay-up-to-down:focus::before {
  height: 100%;
  width: 100%;
}
a.overlay-up-to-down.active::before {
  height: 100%;
  width: 100%;
}
a[href^=tel] {
  color: inherit;
  font-size: 1em;
  text-decoration: none;
}

/* =============================================================================
 *
 * Buttons
 *
 * ========================================================================== */
.btn {
  display: block;
  text-decoration: none;
}
.btn-check-alarm::before {
  content: "\f00d";
}
.btn-check-cookiebar::before {
  content: "\f00c";
}

/* =============================================================================
 *
 * Tabellen
 *
 * ========================================================================== */
table {
  border-collapse: separate;
  border-spacing: 2px;
  display: table;
}
table > tbody {
  display: table-row-group;
  vertical-align: middle;
}
table > tbody tr {
  display: table-row;
  vertical-align: inherit;
}
table > tbody tr > th, table > tbody tr > td {
  display: table-cell;
  text-align: left;
  vertical-align: inherit;
}

/* =============================================================================
 *
 * Klassen
 *
 * ========================================================================== */
.centered {
  margin: 0 auto;
}

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

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

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

.text-medium {
  font-weight: 500;
}

.text-bold {
  font-weight: 700;
}

/**
 * Inhaltskomponenten (Header, Footer, etc.)
 *
 */
.grid {
  width: 100%;
}
.grid > .grid-element {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  float: left;
  height: auto;
  padding: 0 20px;
}
.grid > .grid-element:first-child {
  padding-left: 0;
}
.grid > .grid-element:last-child {
  padding-right: 0;
}
.grid > .grid-element > * {
  margin: 20px 0;
}
.grid > .grid-element > *:first-child {
  margin-top: 0;
}
.grid > .grid-element > *:last-child {
  margin-bottom: 0;
}
.grid.grid-1-1 > .grid-element {
  float: left;
  width: 50%;
}
.grid.grid-1-1-1 > .grid-element {
  float: left;
  width: 33.3333333333%;
}
.grid.grid-1-2 > .grid-element {
  float: left;
}
.grid.grid-1-2 > .grid-element:first-child {
  width: 33%;
}
.grid.grid-1-2 > .grid-element:last-child {
  width: 67%;
}
.grid.grid-2-1 > .grid-element {
  float: left;
}
.grid.grid-2-1 > .grid-element:first-child {
  width: 66%;
}
.grid.grid-2-1 > .grid-element:last-child {
  width: 34%;
}
.grid.grid-switched > .grid-element:first-child {
  float: right;
  padding: 0 0 0 20px;
}
.grid.grid-switched > .grid-element:last-child {
  float: left;
  padding: 0 20px 0 0;
}

/* =============================================================================
 *
 * Mediaqueries
 *
 * ========================================================================== */
@media only screen and (max-width: 1199px) {
  .grid > .grid-element {
    margin: 25px 0;
    padding: 0 0 0 0 !important;
    transition: width 0.5s;
    width: 100% !important;
  }
  .grid > .grid-element:first-child {
    margin-top: 0;
  }
  .grid > .grid-element:last-child {
    margin-bottom: 0;
  }
}
form {
  clear: both;
  float: none;
  width: auto;
}
form > fieldset {
  border: none;
  clear: both;
  float: none;
  margin: 0;
  padding: 0;
  width: auto;
}
form > fieldset > * {
  margin: 20px 0;
  width: 100%;
}
form > fieldset > *:first-child {
  margin-top: 0;
}
form > fieldset > *:last-child {
  margin-bottom: 0;
}
form > fieldset > div {
  clear: both;
  display: block;
  float: none;
}
form > fieldset > div > .form-grp {
  margin: 0 1%;
}
form > fieldset > div > .form-grp:first-child {
  margin-left: 0;
}
form > fieldset > div > .form-grp:last-child {
  margin-right: 0;
}
form > fieldset > div > .form-grp::after {
  font-size: 1.5em;
  opacity: 0.8;
  position: absolute;
  top: 15px;
  right: 5px;
  text-shadow: 1px 1px 2px #000;
  z-index: 1;
}
form > fieldset > div > .form-grp.valid::after {
  color: #44b06a;
  content: "\f058";
}
form > fieldset > div > .form-grp.invalid::after {
  color: #d0371c;
  content: "\f06a";
  font-weight: 900;
}
form > fieldset > div > .form-grp > input, form > fieldset > div > .form-grp textarea, form > fieldset > div > .form-grp button {
  background: #0c4276;
  color: #fff;
  border: 3px solid #0c4276;
  border-radius: 3px;
  font-family: "Exo", Helvetica, Arial, sans-serif;
  font-size: 0.9em;
}
form > fieldset > div > .form-grp > input, form > fieldset > div > .form-grp > textarea {
  padding: 15px 30px 15px 15px;
  position: relative;
  width: 100%;
  z-index: 1;
}
form > fieldset > div > .form-grp > input::-ms-clear, form > fieldset > div > .form-grp > textarea::-ms-clear {
  display: none;
}
form > fieldset > div > .form-grp > input::-webkit-input-placeholder, form > fieldset > div > .form-grp > textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #dbdbdb;
  position: relative;
  top: 0;
  -webkit-transition: top 0.5s;
  -moz-transition: top 0.5s;
  -o-transition: top 0.5s;
  -ms-transition: top 0.5s;
  transition: top 0.5s;
}
form > fieldset > div > .form-grp > input::-moz-placeholder, form > fieldset > div > .form-grp > textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #dbdbdb;
  position: relative;
  top: 0;
  -webkit-transition: top 0.5s;
  -moz-transition: top 0.5s;
  -o-transition: top 0.5s;
  -ms-transition: top 0.5s;
  transition: top 0.5s;
}
form > fieldset > div > .form-grp > input:-ms-input-placeholder, form > fieldset > div > .form-grp > textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #dbdbdb;
  position: relative;
  top: 0;
  -webkit-transition: top 0.5s;
  -moz-transition: top 0.5s;
  -o-transition: top 0.5s;
  -ms-transition: top 0.5s;
  transition: top 0.5s;
}
form > fieldset > div > .form-grp > input:-moz-placeholder, form > fieldset > div > .form-grp > textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #dbdbdb;
  position: relative;
  top: 0;
  -webkit-transition: top 0.5s;
  -moz-transition: top 0.5s;
  -o-transition: top 0.5s;
  -ms-transition: top 0.5s;
  transition: top 0.5s;
}
form > fieldset > div > .form-grp > input:focus::-webkit-input-placeholder, form > fieldset > div > .form-grp > textarea:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  top: -15px;
}
form > fieldset > div > .form-grp > input:focus::-moz-placeholder, form > fieldset > div > .form-grp > textarea:focus::-moz-placeholder {
  /* Firefox 19+ */
  top: -15px;
}
form > fieldset > div > .form-grp > input:focus:-ms-input-placeholder, form > fieldset > div > .form-grp > textarea:focus:-ms-input-placeholder {
  /* IE 10+ */
  top: -15px;
}
form > fieldset > div > .form-grp > input:focus:-moz-placeholder, form > fieldset > div > .form-grp > textarea:focus:-moz-placeholder {
  /* Firefox 18- */
  top: -15px;
}
form > fieldset > div > .form-grp > .validationText {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  background: #b02f18;
  border-radius: 2px;
  color: white;
  font-size: 0.8em;
  margin: 0;
  max-height: 0;
  width: 100%;
  -webkit-transition: max-height 0.3s ease-in, padding 0.1s 0.3s;
  -moz-transition: max-height 0.3s ease-in, padding 0.1s 0.3s;
  -o-transition: max-height 0.3s ease-in, padding 0.1s 0.3s;
  -ms-transition: max-height 0.3s ease-in, padding 0.1s 0.3s;
  transition: max-height 0.3s ease-in, padding 0.1s 0.3s;
}
form > fieldset > div > .form-grp > .validationText.active {
  max-height: 500px;
  padding: 5px;
  -webkit-transition: max-height 0.3s ease-out, padding 0.1s;
  -moz-transition: max-height 0.3s ease-out, padding 0.1s;
  -o-transition: max-height 0.3s ease-out, padding 0.1s;
  -ms-transition: max-height 0.3s ease-out, padding 0.1s;
  transition: max-height 0.3s ease-out, padding 0.1s;
}
form > fieldset > div > .form-grp > .validationText > * {
  color: white;
}
form > fieldset > div > .form-grp > .validationText > .break {
  font-weight: 700;
  height: auto;
}
form > fieldset > div > .form-grp-input {
  float: left;
  width: 49%;
}
form > fieldset > div > .form-grp-input > input {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
}
form > fieldset > div > .form-grp-checkbox {
  width: auto;
}
form > fieldset > div > .form-grp-checkbox > input {
  float: left;
  width: auto;
}
form > fieldset > div > .form-grp-checkbox > span {
  font-size: 0.7857142857em;
  font-weight: 700;
  width: 50%;
}
form > fieldset > div > .form-grp-checkbox > span > * {
  display: inline-block;
}
form > fieldset > div > .form-grp-checkbox > span > a {
  color: #0c4276;
  font-weight: inherit;
}
form > fieldset > div > .form-grp-checkbox > span > a:hover {
  text-decoration: underline;
}
form > fieldset > div > .form-grp-textarea > textarea {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  height: 200px;
  overflow: auto;
  resize: vertical;
}
form > fieldset > div > .form-grp-button > button {
  cursor: pointer;
  font-weight: 700;
  height: 40px;
}
form > fieldset > div > .form-grp-button > button:hover {
  background: #fff;
  color: #0c4276;
}

.contact-formular .text > * {
  float: none;
  margin: 20px 0;
  padding: 0;
  width: 100%;
}
.contact-formular .text > *:first-child {
  margin-top: 0;
}
.contact-formular .text > *:last-child {
  margin-bottom: 0;
}

/* =============================================================================
 *
 * Mediaqueries
 *
 * ========================================================================== */
@media only screen and (max-width: 991px) {
  form > fieldset > * > .form-grp {
    margin: 5px 0 !important;
  }
  form > fieldset > * > .form-grp:first-child {
    margin-top: 0;
  }
  form > fieldset > * > .form-grp:last-child {
    margin-bottom: 0;
  }
  form > fieldset .form-grp-input, form > fieldset .form-grp-textarea {
    width: 100% !important;
  }
}
.thumbnail {
  display: block;
  height: auto;
}
.thumbnail.custom-object-fit {
  background-position: center center !important;
  background-size: cover !important;
}
.thumbnail.custom-object-fit img {
  opacity: 0;
}
.thumbnail.cover > picture > img {
  -o-object-fit: cover;
  object-fit: cover;
}
.thumbnail * {
  display: block;
  height: inherit;
  width: inherit;
}

/* =============================================================================
 *
 * Allgemein
 *
 * ========================================================================== */
.nav-main > ul, .nav-side > ul {
  margin: 0;
  padding: 0;
}
.nav-main > ul > li, .nav-side > ul > li {
  display: inline-block;
  list-style-type: none;
  margin: 0 10px;
}
.nav-main > ul > li:first-child, .nav-side > ul > li:first-child {
  margin-left: 0 !important;
}
.nav-main > ul > li:last-child, .nav-side > ul > li:last-child {
  margin-right: 0 !important;
}
.nav-main > ul > li > a, .nav-side > ul > li > a {
  font-weight: 700;
}

/* =============================================================================
 *
 * Hauptmenü
 *
 * ========================================================================== */
.nav-main > ul > li > a {
  color: #000;
}
.nav-main > ul > li > a:hover, .nav-main > ul > li > a:focus {
  color: #fff;
}
.nav-main > ul > li > a.overlay-up-to-down {
  padding: 10px;
}
.nav-main > ul > li > a.overlay-up-to-down::before {
  background: #0c4276;
}
.nav-main > ul > li > a.overlay-up-to-down.active {
  color: #fff !important;
}
.nav-main > ul > li > a.btn-logout {
  color: #fff;
}
.nav-main > ul > li > a.btn-logout:hover, .nav-main > ul > li > a.btn-logout:focus {
  text-decoration: underline;
}
.nav-main > ul > li > a.btn-logout.overlay-up-to-down {
  padding: 10px;
}
.nav-main > ul > li > a.btn-logout.overlay-up-to-down::before {
  background: #A32B16;
  height: 100%;
}

/* =============================================================================
 *
 * Side-Menü
 *
 * ========================================================================== */
.nav-side > ul > li {
  display: inline-block;
  list-style-type: none;
}
.nav-side > ul > li > a {
  color: #fff;
}
.nav-side > ul > li > a:hover, .nav-side > ul > li > a:focus {
  color: #0c4276;
}
.nav-side > ul > li > a.overlay-up-to-down {
  padding: 10px 20px;
}
.nav-side > ul > li > a.overlay-up-to-down::before {
  background: #fff;
}
.nav-side > ul > li > a.overlay-up-to-down.active {
  color: #0c4276 !important;
}

/* =============================================================================
 *
 * Hamburger-Menü
 *
 * ========================================================================== */
.hmenu {
  display: block;
  margin: 0;
  position: absolute;
  top: 125px;
  width: 100%;
  z-index: 11;
}
.hmenu > * {
  margin: 20px 0;
}
.hmenu > *:first-child {
  margin-top: 0;
}
.hmenu > *:last-child {
  margin-bottom: 0;
}
.hmenu > .hmenu-main > ul, .hmenu > .hmenu-side > ul {
  margin: 0 auto;
}
.hmenu > .hmenu-main > ul > li, .hmenu > .hmenu-side > ul > li {
  display: block;
  list-style-type: none;
  left: -1000px;
  margin: 20px 0;
  position: relative;
  text-align: center;
  visibility: hidden;
}
.hmenu > .hmenu-main > ul > li:first-child, .hmenu > .hmenu-side > ul > li:first-child {
  margin-top: 0;
}
.hmenu > .hmenu-main > ul > li:last-child, .hmenu > .hmenu-side > ul > li:last-child {
  margin-bottom: 0;
}
.hmenu > .hmenu-main > ul > li:nth-child(1), .hmenu > .hmenu-side > ul > li:nth-child(1) {
  -webkit-transition: left 0.3s ease 0.3s, visibility 3s;
  -moz-transition: left 0.3s ease 0.3s, visibility 3s;
  -o-transition: left 0.3s ease 0.3s, visibility 3s;
  -ms-transition: left 0.3s ease 0.3s, visibility 3s;
  transition: left 0.3s ease 0.3s, visibility 3s;
}
.hmenu > .hmenu-main > ul > li:nth-child(2), .hmenu > .hmenu-side > ul > li:nth-child(2) {
  -webkit-transition: left 0.6s ease 0.3s, visibility 3s;
  -moz-transition: left 0.6s ease 0.3s, visibility 3s;
  -o-transition: left 0.6s ease 0.3s, visibility 3s;
  -ms-transition: left 0.6s ease 0.3s, visibility 3s;
  transition: left 0.6s ease 0.3s, visibility 3s;
}
.hmenu > .hmenu-main > ul > li:nth-child(3), .hmenu > .hmenu-side > ul > li:nth-child(3) {
  -webkit-transition: left 0.9s ease 0.3s, visibility 3s;
  -moz-transition: left 0.9s ease 0.3s, visibility 3s;
  -o-transition: left 0.9s ease 0.3s, visibility 3s;
  -ms-transition: left 0.9s ease 0.3s, visibility 3s;
  transition: left 0.9s ease 0.3s, visibility 3s;
}
.hmenu > .hmenu-main > ul > li:nth-child(4), .hmenu > .hmenu-side > ul > li:nth-child(4) {
  -webkit-transition: left 1.2s ease 0.3s, visibility 3s;
  -moz-transition: left 1.2s ease 0.3s, visibility 3s;
  -o-transition: left 1.2s ease 0.3s, visibility 3s;
  -ms-transition: left 1.2s ease 0.3s, visibility 3s;
  transition: left 1.2s ease 0.3s, visibility 3s;
}
.hmenu > .hmenu-main > ul > li:nth-child(5), .hmenu > .hmenu-side > ul > li:nth-child(5) {
  -webkit-transition: left 1.5s ease 0.3s, visibility 3s;
  -moz-transition: left 1.5s ease 0.3s, visibility 3s;
  -o-transition: left 1.5s ease 0.3s, visibility 3s;
  -ms-transition: left 1.5s ease 0.3s, visibility 3s;
  transition: left 1.5s ease 0.3s, visibility 3s;
}
.hmenu > .hmenu-main > ul > li:nth-child(6), .hmenu > .hmenu-side > ul > li:nth-child(6) {
  -webkit-transition: left 1.8s ease 0.3s, visibility 3s;
  -moz-transition: left 1.8s ease 0.3s, visibility 3s;
  -o-transition: left 1.8s ease 0.3s, visibility 3s;
  -ms-transition: left 1.8s ease 0.3s, visibility 3s;
  transition: left 1.8s ease 0.3s, visibility 3s;
}
.hmenu > .hmenu-main > ul > li:nth-child(7), .hmenu > .hmenu-side > ul > li:nth-child(7) {
  -webkit-transition: left 2.1s ease 0.3s, visibility 3s;
  -moz-transition: left 2.1s ease 0.3s, visibility 3s;
  -o-transition: left 2.1s ease 0.3s, visibility 3s;
  -ms-transition: left 2.1s ease 0.3s, visibility 3s;
  transition: left 2.1s ease 0.3s, visibility 3s;
}
.hmenu > .hmenu-main > ul > li:nth-child(8), .hmenu > .hmenu-side > ul > li:nth-child(8) {
  -webkit-transition: left 2.4s ease 0.3s, visibility 3s;
  -moz-transition: left 2.4s ease 0.3s, visibility 3s;
  -o-transition: left 2.4s ease 0.3s, visibility 3s;
  -ms-transition: left 2.4s ease 0.3s, visibility 3s;
  transition: left 2.4s ease 0.3s, visibility 3s;
}
.hmenu > .hmenu-main > ul > li:nth-child(9), .hmenu > .hmenu-side > ul > li:nth-child(9) {
  -webkit-transition: left 2.7s ease 0.3s, visibility 3s;
  -moz-transition: left 2.7s ease 0.3s, visibility 3s;
  -o-transition: left 2.7s ease 0.3s, visibility 3s;
  -ms-transition: left 2.7s ease 0.3s, visibility 3s;
  transition: left 2.7s ease 0.3s, visibility 3s;
}
.hmenu > .hmenu-main > ul > li:nth-child(10), .hmenu > .hmenu-side > ul > li:nth-child(10) {
  -webkit-transition: left 3s ease 0.3s, visibility 3s;
  -moz-transition: left 3s ease 0.3s, visibility 3s;
  -o-transition: left 3s ease 0.3s, visibility 3s;
  -ms-transition: left 3s ease 0.3s, visibility 3s;
  transition: left 3s ease 0.3s, visibility 3s;
}
.hmenu > .hmenu-main > ul > li > a, .hmenu > .hmenu-side > ul > li > a {
  display: inline;
  font-size: 2em;
  font-weight: 500;
}
.hmenu > .hmenu-main > ul > li > a:hover, .hmenu > .hmenu-main > ul > li > a.active, .hmenu > .hmenu-side > ul > li > a:hover, .hmenu > .hmenu-side > ul > li > a.active {
  color: #0c4276;
  text-decoration: underline;
}
.hmenu > .hmenu-main > ul > li > a.active, .hmenu > .hmenu-side > ul > li > a.active {
  border-left: 5px solid;
  padding-left: 10px;
}
.hmenu > .hmenu-main::after {
  border-bottom: 7px dotted #0c4276;
  content: "";
  height: 3px;
  margin-top: 20px;
  width: 0;
  -webkit-transition: width 0.5s;
  -moz-transition: width 0.5s;
  -o-transition: width 0.5s;
  -ms-transition: width 0.5s;
  transition: width 0.5s;
}
.hmenu > .hmenu-side > ul {
  text-align: center;
}
.hmenu > .hmenu-side > ul > li {
  display: inline-block;
  font-size: 0.5em;
  margin: 0 10px;
  text-decoration: underline;
}
.hmenu > .hmenu-side > ul > li:first-child {
  margin-left: 0;
}
.hmenu > .hmenu-side > ul > li:last-child {
  margin-right: 0;
}
.hmenu.activeHMenu > .hmenu-main > ul > li, .hmenu.activeHMenu > .hmenu-side > ul > li {
  left: 0;
  visibility: visible;
}
.hmenu.activeHMenu > .hmenu-main::after {
  width: 100%;
  -webkit-transition: width 1.5s;
  -moz-transition: width 1.5s;
  -o-transition: width 1.5s;
  -ms-transition: width 1.5s;
  transition: width 1.5s;
}

/* =============================================================================
 *
 * Hamburger
 *
 * ========================================================================== */
.hamburger {
  cursor: pointer;
  display: none;
  float: left;
  height: 50px;
  margin: 25px 40px 0 0;
  padding: 10px 10px 0 0;
  position: relative;
  width: 50px;
  z-index: 11;
}
.hamburger > .hamburger-line, .hamburger::before, .hamburger::after {
  background: #0c4276;
  content: "";
  display: block;
  height: 7px;
  left: 0;
  margin: 0 0 10px 0;
  position: relative;
  top: 0;
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.hamburger.active {
  position: relative;
}
.hamburger.active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 17px;
}
.hamburger.active > .hamburger-line {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  left: 30px;
}
.hamburger.active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -17px;
}

/* =============================================================================
 *
 * Mediaqueries
 *
 * ========================================================================== */
@media only screen and (max-width: 1349px) {
  .nav-main {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
.slider {
  border-bottom: 3px solid #0c4276;
  border-top: 3px solid #0c4276;
  display: block;
  height: 350px;
  width: 100%;
}
.slider * {
  height: inherit;
  width: inherit;
}
.slider > .slide-object-wrapper {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}
.slider > .slide-object-wrapper > li.slider-object {
  left: 100%;
  list-style-type: none;
  margin: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.slider > .slide-object-wrapper > li.slider-object.active, .slider > .slide-object-wrapper > li.slider-object:first-child {
  left: 0;
}

.contactBox.-group > *:first-child {
  margin-top: 0;
}
.contactBox.-group > *:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.contactBox > .contact {
  display: inline-block;
  margin: 0 20px 20px 0;
  padding: 0;
}
.contactBox > .contact:last-child {
  margin-bottom: 0;
}
.contactBox > .contact > li {
  display: block;
  margin: 0;
  text-decoration: none;
}
.contactBox > .contact > li.contact-image {
  margin: 0 0 15px 0;
}
.contactBox > .contact > li.contact-image > .thumbnail {
  height: 275px;
  width: 275px;
}
.contactBox > .contact > li.contact-name, .contactBox > .contact > li.contact-job {
  margin: 0 0 10px 0;
}
.contactBox > .contact > li.contact-job > span {
  font-weight: 700;
}

.news-search {
	margin-bottom : 40px;
}

.news-search > fieldset {
	align-items : center;
	display     : flex;
	flex-wrap   : wrap;
}

.news-search > fieldset > * {
	margin : 0;
	width  : auto;
}

.news-search > fieldset > .search-input {
	flex         : 1;
	margin-right : 15px;
}

.news-search > fieldset .form-grp {
	width : 100%;
}

.news-list > article {
	border-bottom  : 3px dotted;
	display        : flex;
	flex-wrap      : wrap;
	margin-bottom  : 40px;
	padding-bottom : 40px;
}

.news-list > article:last-child {
	border-bottom  : none;
	margin-bottom  : 0;
	padding-bottom : 0;
}

.news-list > article > * {
	margin : 10px 0;
}

.news-list > article > *:first-child {
	margin-top : 0;
}

.news-list > article > *:last-child {
	margin-bottom : 0;
}

.news-list > article > h1, .news-list > article > h2, .news-list > article > h3 {
	width : 100%;
}

.news-list > article > img {
	height : auto;
	width  : 30%;
}

.news-list > article > p {
	align-self   : center;
	box-sizing   : border-box;
	padding-left : 15px;
	width        : 70%;
}

.news-list > article > a {
	font-weight     : 700;
	margin-top      : 10px;
	text-decoration : none;
}

.news-list > article > a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #000;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.news-list > article > a:hover {
	color: #0c4276;
	text-decoration: none !important;
}

.news-list > article > a:hover::before {
	background-color: #0c4276;
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.news-detail > article > img {
	height    : auto;
	max-width : 700px;
	width     : 100%;
}

@media (max-width: 990px) {
	.news-list > article {
		display : block;
	}

	.news-list > article > img,
	.news-list > article > p {
		width : 100%;
	}

	.news-list > article > img {
		height : unset;
	}

	.news-list > article > p {
		padding-left : 0;
	}
}


/*
*
*Abschnitte, zu welchen man per Klick scrollt
*/
.toggleTo > .anchor {
  border-bottom: 3px dotted #000;
}
.toggleTo > .anchor:last-child {
  border-bottom: 0;
}

/*
*
*Links um zum gewünschten Abschnitt zu scrollen
*/
.triggerToggle > .linkToAnchor {
  color: #0c4276;
  cursor: pointer;
  display: block;
  font-weight: 700;
  list-style-type: none;
  margin: 15px 0;
  padding: 0;
}
.triggerToggle > .linkToAnchor:first-child {
  margin-top: 0;
}
.triggerToggle > .linkToAnchor:last-child {
  margin-bottom: 0;
}

.alarm, .cookiebar {
  align-items: center;
  border-radius: 3px;
  border-style: solid;
  border-width: 3px;
  display: flex;
  height: auto;
  padding: 5px;
}
.alarm *, .cookiebar * {
  color: #fff;
  font-weight: 700;
}
.alarm > .btn, .cookiebar > .btn {
  cursor: pointer;
  text-align: center;
  width: 3%;
}
.alarm > .btn:hover::before, .alarm > .btn:focus::before, .cookiebar > .btn:hover::before, .cookiebar > .btn:focus::before {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: transform 1s;
  -moz-transition: transform 1s;
  -o-transition: transform 1s;
  -ms-transition: transform 1s;
  transition: transform 1s;
}
.alarm > p, .cookiebar > p {
  border-right: 1px solid;
  float: left;
  padding-right: 20px;
  width: 97%;
}
.alarm > p > a, .cookiebar > p > a {
  color: #489cec;
}
.alarm > p > a:hover, .alarm > p > afocus, .cookiebar > p > a:hover, .cookiebar > p > afocus {
  color: #489cec;
  text-decoration: underline;
}
.alarm-error, .cookiebar-error {
  background: #b02f18;
  border-color: #A32B16;
}
.alarm-success, .cookiebar-success {
  background: #41a966;
  border-color: #3d9e5f;
}
.alarm-info, .cookiebar-info {
  background: #0d4a84;
  border-color: #0c4276;
}

.cookiebar > .btn:hover, .cookiebar > .btn:focus {
  color: #489cec;
}

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