@charset "UTF-8";
/*
Theme Name: Freiwillige Feuerwehr Aulendorf
Theme URI: http://ff-aulendorf.de
Author: Freiwillige Feuerwehr Aulendorf
Author URI: http://ff-aulendorf.de
Description: Description
Version: 1.0.0
Text Domain: FWA
Tags:

*/
@import url(fonts/vollkorn/vollkorn.css);
@import url(fonts/opensans/opensans.css);
@import url(fonts/icomoon/icomoon.css);
@import url(fonts/bitter/bitter.css);
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

q:before, q:after {
  content: '';
  content: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  vertical-align: baseline;
}

button, input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/*
//Media Queries

$tablet: "(min-width: 768px) and (max-width: 1025px)";
$desktop: "(min-width: 1026px) and (max-width: 1879px)";
$desktop-big: "(min-width: 1880px)";


// Media queries breakpoints

// phone

$screen-xs:                  480px !default;
$screen-xs-min:              $screen-xs !default;
$screen-phone:               $screen-xs-min !default;

// tablet
$screen-sm:                  768px !default;
$screen-sm-min:              $screen-sm !default;
$screen-tablet:              $screen-sm-min !default;

// desktop
$screen-md:                  992px !default;
$screen-md-min:              $screen-md !default;
$screen-desktop:             $screen-md-min !default;

// wide desktop
$screen-lg:                  1440px !default;
$screen-lg-min:              $screen-lg !default;
$screen-lg-desktop:          $screen-lg-min !default;

// So media queries don't overlap when required, provide a maximum
$screen-xs-max:              ($screen-sm-min - 1) !default;
$screen-sm-max:              ($screen-md-min - 1) !default;
$screen-md-max:              ($screen-lg-min - 1) !default;


// Media queries breakpoints

$iphone-width: 320px;
$tablet-width: 768px;
$smalldesktop-width: 1024px;
$middesktop-width: 1280px;
$bigdesktop-width: 1920px;
*/
.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.natural-height {
  align-items: flex-start;
}

.row.flex-column {
  flex-direction: column;
}

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 0rem;
}

.col.reverse {
  flex-direction: column-reverse;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

.align-start {
  align-self: flex-start;
}

.align-end {
  align-self: flex-end;
}

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

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 0rem;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.33333%;
  max-width: 8.33333%;
  padding: 0rem;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
  padding: 0rem;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 0rem;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
  padding: 0rem;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.66667%;
  max-width: 41.66667%;
  padding: 0rem;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 0rem;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.33333%;
  max-width: 58.33333%;
  padding: 0rem;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.66667%;
  max-width: 66.66667%;
  padding: 0rem;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
  padding: 0rem;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
  padding: 0rem;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.66667%;
  max-width: 91.66667%;
  padding: 0rem;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0rem;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

.row.center-xs {
  justify-content: center;
}

.row.end-xs {
  justify-content: flex-end;
}

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

.row.middle-xs {
  align-items: center;
}

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

.row.around-xs {
  justify-content: space-around;
}

.row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 41rem) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 0rem;
  }
  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
    padding: 0rem;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
    padding: 0rem;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0rem;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
    padding: 0rem;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
    padding: 0rem;
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0rem;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
    padding: 0rem;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
    padding: 0rem;
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0rem;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
    padding: 0rem;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
    padding: 0rem;
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0rem;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}

@media only screen and (min-width: 64rem) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 0rem;
  }
  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
    padding: 0rem;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
    padding: 0rem;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0rem;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
    padding: 0rem;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
    padding: 0rem;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0rem;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
    padding: 0rem;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
    padding: 0rem;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0rem;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
    padding: 0rem;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
    padding: 0rem;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0rem;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}

@media only screen and (min-width: 91rem) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 0rem;
  }
  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
    padding: 0rem;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
    padding: 0rem;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0rem;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
    padding: 0rem;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
    padding: 0rem;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0rem;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
    padding: 0rem;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
    padding: 0rem;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0rem;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
    padding: 0rem;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
    padding: 0rem;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0rem;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}

@media only screen and (min-width: 121rem) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 0rem;
  }
  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
    padding: 0rem;
  }
  .col-xl-offset-1 {
    margin-left: 8.33333%;
  }
  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
    padding: 0rem;
  }
  .col-xl-offset-2 {
    margin-left: 16.66667%;
  }
  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0rem;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
    padding: 0rem;
  }
  .col-xl-offset-4 {
    margin-left: 33.33333%;
  }
  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
    padding: 0rem;
  }
  .col-xl-offset-5 {
    margin-left: 41.66667%;
  }
  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0rem;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
    padding: 0rem;
  }
  .col-xl-offset-7 {
    margin-left: 58.33333%;
  }
  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
    padding: 0rem;
  }
  .col-xl-offset-8 {
    margin-left: 66.66667%;
  }
  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0rem;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
    padding: 0rem;
  }
  .col-xl-offset-10 {
    margin-left: 83.33333%;
  }
  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
    padding: 0rem;
  }
  .col-xl-offset-11 {
    margin-left: 91.66667%;
  }
  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0rem;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}

.col-gutter-lr {
  padding: 0 0rem;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.row.show {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block !important;
  }
  .row.show-xs-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-xs-only {
    display: none !important;
  }
}

@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block !important;
  }
  .row.show-sm {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-sm {
    display: none !important;
  }
}

@media only screen and (min-width: 41rem) and (max-width: 63rem) {
  .show-sm-only {
    display: block !important;
  }
  .row.show-sm-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}

@media only screen and (min-width: 64rem) {
  .show-md {
    display: block !important;
  }
  .row.show-md {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-md {
    display: none !important;
  }
}

@media only screen and (min-width: 64rem) and (max-width: 90rem) {
  .show-md-only {
    display: block !important;
  }
  .row.show-md-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-md-only {
    display: none !important;
  }
}

@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block !important;
  }
  .row.show-lg {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-lg {
    display: none !important;
  }
}

@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block !important;
  }
  .row.show-lg-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}

@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block !important;
  }
  .row.show-xl {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .hide-xl {
    display: none !important;
  }
}

html, body {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 35px;
}

@media (max-width: 1280px) {
  html, body {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: none;
    line-height: 28px;
  }
}

@media (max-width: 1024px) {
  html, body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: none;
    line-height: 26px;
  }
}

.center {
  text-align: center;
}

.searchform input {
  font-family: "Bitter", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: none;
  color: #c8c8c8;
}

@media (max-width: 1280px) {
  .searchform {
    font-family: "Bitter", serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

.ffa-icon {
  margin: 0 10px 0 0;
}

.ffa-icon-post {
  margin: 0 5px 0 0;
}

.ffa-icon-post2 {
  margin: 0 5px 0 10px;
}

.r-n-btn {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: bold;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1600px) {
  .r-n-btn {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: bold;
    text-align: center;
    text-transform: uppercase;
  }
}

.btn-normal {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: bold;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1600px) {
  .btn-normal {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: bold;
    text-align: center;
    text-transform: uppercase;
  }
}

.btn-normal-smaller {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: bold;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1600px) {
  .btn-normal-smaller {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: bold;
    text-align: center;
    text-transform: uppercase;
  }
}

.r-e-btn {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: bold;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1600px) {
  .r-e-btn {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: bold;
    text-align: center;
    text-transform: uppercase;
  }
}

.abteilung-con ul {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: none;
}

.fgr-post-title,
.abteilung-post-title {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 50px;
}

@media (max-width: 1600px) {
  .fgr-post-title,
  .abteilung-post-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 35px;
  }
}

@media (max-width: 1024px) {
  .fgr-post-title,
  .abteilung-post-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 35px;
  }
}

.startseite-text {
  font-family: "Bitter", serif;
  font-size: 85px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 90px;
}

@media (max-width: 1600px) {
  .startseite-text {
    font-family: "Bitter", serif;
    font-size: 65px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 70px;
  }
}

@media (max-width: 1280px) {
  .startseite-text {
    font-family: "Bitter", serif;
    font-size: 55px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 60px;
  }
}

@media (max-width: 1024px) {
  .startseite-text {
    font-family: "Bitter", serif;
    font-size: 55px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 60px;
  }
}

.startseite-headline {
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 50px;
  margin: 0 0 50px 0;
}

@media (max-width: 1600px) {
  .startseite-headline {
    font-family: "Bitter", serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: none;
    line-height: 45px;
  }
}

@media (max-width: 1440px) {
  .startseite-headline {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: none;
    line-height: 40px;
  }
}

@media (max-width: 1024px) {
  .startseite-headline {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

@media (max-width: 640px) {
  .startseite-headline {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

.startseite-headline:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .startseite-headline:after {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .startseite-headline:after {
    margin: 20px auto 20px auto;
  }
}

.recent-einsatz-datum {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  text-align: left;
  text-transform: normal;
}

@media (max-width: 1280px) {
  .recent-einsatz-datum {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    text-align: left;
    text-transform: normal;
  }
}

.recent-einsatz-title {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 35px;
}

@media (max-width: 1280px) {
  .recent-einsatz-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
  }
}

.content-last-news-title {
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
}

@media (max-width: 1600px) {
  .content-last-news-title {
    font-family: "Bitter", serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 1440px) {
  .content-last-news-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: none;
    line-height: 40px;
  }
}

@media (max-width: 1100px) {
  .content-last-news-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

@media (max-width: 1024px) {
  .content-last-news-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

@media (max-width: 640px) {
  .content-last-news-title {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

.last-news-entry-inhalt .head-area h1.last-news-title {
  font-family: "Bitter", serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 30px;
}

@media (max-width: 1600px) {
  .last-news-entry-inhalt .head-area h1.last-news-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 30px;
  }
}

@media (max-width: 1280px) {
  .last-news-entry-inhalt .head-area h1.last-news-title {
    font-family: "Bitter", serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 25px;
  }
}

.last-news-entry-inhalt .head-area h2.last-news-date {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 25px;
}

@media (max-width: 1280px) {
  .last-news-entry-inhalt .head-area h2.last-news-date {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: normal;
  }
}

.counter-zahl {
  font-family: "Bitter", serif;
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: normal;
  line-height: 75px;
}

@media (max-width: 1024px) {
  .counter-zahl {
    font-family: "Bitter", serif;
    font-size: 45px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.counter-title h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: normal;
  line-height: 25px;
}

.cta-aktive-title {
  font-family: "Bitter", serif;
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 65px;
}

@media (max-width: 1920px) {
  .cta-aktive-title {
    font-family: "Bitter", serif;
    font-size: 45px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 55px;
  }
}

@media (max-width: 1600px) {
  .cta-aktive-title {
    font-family: "Bitter", serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 1440px) {
  .cta-aktive-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: none;
    line-height: 40px;
  }
}

@media (max-width: 1024px) {
  .cta-aktive-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

@media (max-width: 640px) {
  .cta-aktive-title {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

.cta-jfw-title {
  font-family: "Bitter", serif;
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 65px;
}

@media (max-width: 1920px) {
  .cta-jfw-title {
    font-family: "Bitter", serif;
    font-size: 45px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 55px;
  }
}

@media (max-width: 1600px) {
  .cta-jfw-title {
    font-family: "Bitter", serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 1440px) {
  .cta-jfw-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: none;
    line-height: 40px;
  }
}

@media (max-width: 1024px) {
  .cta-jfw-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

@media (max-width: 640px) {
  .cta-jfw-title {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

.last-action-title {
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 50px;
}

@media (max-width: 1600px) {
  .last-action-title {
    font-family: "Bitter", serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 1440px) {
  .last-action-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: none;
    line-height: 40px;
  }
}

@media (max-width: 1100px) {
  .last-action-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

@media (max-width: 640px) {
  .last-action-title {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

h2.last-action-element-datum {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  text-transform: normal;
}

@media (max-width: 1440px) {
  h2.last-action-element-datum {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

@media (max-width: 1280px) {
  h2.last-action-element-datum {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.last-action-element-title {
  font-family: "Bitter", serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: normal;
  line-height: 35px;
}

@media (max-width: 1800px) {
  .last-action-element-title {
    font-family: "Bitter", serif;
    font-size: 23px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 30px;
  }
}

@media (max-width: 1280px) {
  .last-action-element-title {
    font-family: "Bitter", serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 25px;
  }
}

@media (max-width: 1024px) {
  .last-action-element-title {
    font-family: "Bitter", serif;
    font-size: 23px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 30px;
  }
}

div.last-action-effect p {
  line-height: 30px;
}

@media (max-width: 1600px) {
  div.last-action-effect p {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 20px;
  }
}

.cta-abt-title {
  font-family: "Bitter", serif;
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 95px;
}

@media (max-width: 1024px) {
  .cta-abt-title {
    font-family: "Bitter", serif;
    font-size: 55px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 55px;
  }
}

@media (max-width: 768px) {
  .cta-abt-title {
    font-family: "Bitter", serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 45px;
  }
}

.news-entry-title {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 40px;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

@media (max-width: 1024px) {
  .news-entry-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 35px;
  }
}

.entry-content ol,
.entry-content ul {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 25px;
}

@media (max-width: 1280px) {
  .entry-content ol,
  .entry-content ul {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: none;
  }
}

blockquote, q {
  font-family: "Bitter", serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: none;
  line-height: 35px;
}

@media (max-width: 1024px) {
  blockquote, q {
    font-size: 20px;
    line-height: 20px;
  }
}

blockquote:after, q:after {
  font-family: "Bitter", serif;
  font-size: 100px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: none;
  line-height: 100px;
}

blockquote footer, q footer {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  text-transform: none;
}

.recent-post-text {
  font-family: "Bitter", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 25px;
}

@media (max-width: 1600px) {
  .recent-post-text {
    font-family: "Bitter", serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
  }
}

h3.recent-post-datum {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 25px;
}

@media (max-width: 1600px) {
  h3.recent-post-datum {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: normal;
  }
}

.nav-links .pagination_prev {
  font-family: "Bitter", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
}

@media (max-width: 1440px) {
  .nav-links .pagination_prev {
    font-family: "Bitter", serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
  }
}

.nav-links .pagination_prev .nav-head-prev {
  font-family: "Bitter", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
  margin: 0 0 0 0;
  color: #828282;
}

@media (max-width: 1440px) {
  .nav-links .pagination_prev .nav-head-prev {
    font-family: "Bitter", serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
  }
}

.nav-links .pagination_prev .nav-head-prev a {
  color: #c8c8c8;
}

.nav-links .pagination_all {
  font-size: 30px;
  text-align: center;
  margin: 6px 0 0 0;
}

.nav-links .pagination_next {
  font-family: "Bitter", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: right;
  text-transform: normal;
}

@media (max-width: 1440px) {
  .nav-links .pagination_next {
    font-family: "Bitter", serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: right;
    text-transform: normal;
  }
}

.nav-links .pagination_next .nav-head-next {
  font-family: "Bitter", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
  margin: 0 0 0 0;
  color: #828282;
}

@media (max-width: 1440px) {
  .nav-links .pagination_next .nav-head-next {
    font-family: "Bitter", serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: right;
    text-transform: uppercase;
  }
}

.nav-links .pagination_next .nav-head-next a {
  color: #c8c8c8;
}

.nav-links .pag_icon_prev, .nav-links .pag_icon_next {
  font-size: 30px;
}

h1 {
  font-family: "Bitter", serif;
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 50px;
}

h2 {
  font-family: "Bitter", serif;
  font-size: 35px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 45px;
}

h3 {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 40px;
}

h4 {
  font-family: "Bitter", serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 35px;
}

h5 {
  font-family: "Bitter", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 25px;
}

h6 {
  font-family: "Bitter", serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 28px;
}

.site-header .widget {
  margin: 0 0 0 0;
}

.widget {
  margin: 0 0 50px 0;
}

.widget-title {
  color: black;
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 35px;
  position: relative;
  margin: 0 0 50px 0;
}

@media (max-width: 1600px) {
  .widget-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: none;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .widget-title {
    margin: 15% 0 15% 0;
  }
}

.widget-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 640px) {
  .widget-title:after {
    margin: 0 auto;
  }
}

.widget .wp-block-heading {
  color: black;
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 35px;
  position: relative;
  margin: 0 0 50px 0;
}

@media (max-width: 1600px) {
  .widget .wp-block-heading {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: none;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .widget .wp-block-heading {
    margin: 25px 0 25px 0;
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: none;
  }
}

@media (max-width: 640px) {
  .widget .wp-block-heading {
    margin: 25px 0 25px 0;
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

.widget .wp-block-heading:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 640px) {
  .widget .wp-block-heading:after {
    margin: 0 auto;
  }
}

.widget-headline-abstand {
  margin: 15% 0 15% 0;
}

.content-sidebar .widget-title {
  margin: 0 0 15% 0;
}

.post-entry-title {
  position: relative;
  z-index: 10;
  font-family: "Bitter", serif;
  font-size: 50px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: normal;
  color: #464646;
  line-height: 60px;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

@media (max-width: 1024px) {
  .post-entry-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 640px) {
  .post-entry-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 35px;
  }
}

.single-page-entry-title {
  position: relative;
  z-index: 100;
  font-family: "Bitter", serif;
  font-size: 75px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  color: #464646;
  line-height: 75px;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

@media (max-width: 1920px) {
  .single-page-entry-title {
    font-family: "Bitter", serif;
    font-size: 55px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 65px;
  }
}

@media (max-width: 1440px) {
  .single-page-entry-title {
    font-family: "Bitter", serif;
    font-size: 45px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 55px;
  }
}

@media (max-width: 1024px) {
  .single-page-entry-title {
    font-family: "Bitter", serif;
    font-size: 45px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.entry-title,
.news-entry-single-title,
.einsatz-entry-single-title {
  font-family: "Bitter", serif;
  font-size: 50px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: normal;
  color: #464646;
  line-height: 55px;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  margin: 2% 0 0 0;
}

@media (max-width: 1024px) {
  .entry-title,
  .news-entry-single-title,
  .einsatz-entry-single-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 40px;
  }
}

@media (max-width: 640px) {
  .entry-title,
  .news-entry-single-title,
  .einsatz-entry-single-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 35px;
  }
}

.fahrzeuge-title,
.fahrzeug-title,
.einsatz-jahre-title {
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 50px;
  margin: 50px 0 50px 0;
}

.fahrzeuge-title:after,
.fahrzeug-title:after,
.einsatz-jahre-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .fahrzeuge-title:after,
  .fahrzeug-title:after,
  .einsatz-jahre-title:after {
    margin: 0 auto;
  }
}

.fahrzeuge-title:first-child,
.fahrzeug-title:first-child,
.einsatz-jahre-title:first-child {
  margin: 0px 0 50px 0;
}

@media (max-width: 1280px) {
  .fahrzeuge-title,
  .fahrzeug-title,
  .einsatz-jahre-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: none;
  }
}

@media (max-width: 1024px) {
  .fahrzeuge-title,
  .fahrzeug-title,
  .einsatz-jahre-title {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

.fahrzeug-post-title {
  font-family: "Bitter", serif;
  font-size: 35px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  color: #464646;
  line-height: 45px;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  margin: -1% 0 30px 0;
}

.fahrzeuge-post-title {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 50px;
}

@media (max-width: 1600px) {
  .fahrzeuge-post-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 35px;
  }
}

@media (max-width: 1024px) {
  .fahrzeuge-post-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 35px;
  }
}

.post-info-meta {
  margin: 0 auto;
}

.post-info-meta-date {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  text-transform: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #828282;
}

@media (max-width: 1280px) {
  .post-info-meta-date {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

.post-info-meta-autor {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  text-transform: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #828282;
}

@media (max-width: 1280px) {
  .post-info-meta-autor {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    text-transform: none;
  }
}

.middle-line-grau {
  height: 1px;
  background: #828282;
  width: 30px;
  margin: 0 2% 0 2%;
}

.single-page-entry-subheadline {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
  color: #870109;
  letter-spacing: 3px;
}

@media (max-width: 1440px) {
  .single-page-entry-subheadline {
    font-family: "Open Sans", sans-serif;
    font-size: 25px;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
  }
}

@media (max-width: 1024px) {
  .single-page-entry-subheadline {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
  }
}

.einsatz-single-headline {
  font-family: "Bitter", serif;
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: none;
  line-height: 45px;
  margin: 0 0 50px 0;
}

.einsatz-single-details-headline {
  font-family: "Open Sans", sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: bold;
  text-align: left;
  text-transform: uppercase;
  line-height: 30px;
  margin: 0 0 50px 0;
  color: #464646;
  display: block;
}

.einsatz-single-details-headline:before {
  content: "";
  position: relative;
  top: 13px;
  height: 3px;
  float: left;
  background: #464646;
  width: 35px;
  margin: 0 10px 0 0;
}

@media (max-width: 1280px) {
  .einsatz-single-details-headline:before {
    margin: 0 10px 0 0;
    width: 25px;
  }
}

@media (max-width: 1100px) {
  .einsatz-single-details-headline:before {
    margin: 0 4px 0 0;
    width: 12px;
  }
}

@media (max-width: 1024px) {
  .einsatz-single-details-headline:before {
    margin: 0 10px 0 0;
    width: 35px;
  }
}

.fahrzeug-single-headline {
  font-family: "Bitter", serif;
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: none;
  line-height: 45px;
  margin: 0 0 50px 0;
}

.fahrzeug-single-details-headline {
  font-family: "Open Sans", sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: bold;
  text-align: left;
  text-transform: uppercase;
  line-height: 30px;
  margin: 0 0 50px 0;
  color: #464646;
  display: block;
}

.fahrzeug-single-details-headline:before {
  content: "";
  position: relative;
  top: 13px;
  height: 3px;
  float: left;
  background: #464646;
  width: 35px;
  margin: 0 10px 0 0;
}

@media (max-width: 1280px) {
  .fahrzeug-single-details-headline:before {
    margin: 0 10px 0 0;
    width: 25px;
  }
}

@media (max-width: 1100px) {
  .fahrzeug-single-details-headline:before {
    margin: 0 4px 0 0;
    width: 12px;
  }
}

@media (max-width: 1024px) {
  .fahrzeug-single-details-headline:before {
    margin: 0 10px 0 0;
    width: 35px;
  }
}

.nav-historie {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  text-transform: normal;
}

@media (max-width: 1024px) {
  .nav-historie {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.page-header-nav-historie {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 30px;
}

@media (max-width: 1024px) {
  .page-header-nav-historie {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.single-page-header-nav-historie {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 30px;
}

@media (max-width: 1024px) {
  .single-page-header-nav-historie {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.site-header-subnav {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: normal;
}

@media (max-width: 1024px) {
  .site-header-subnav {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.seiten-title {
  font-family: "Bitter", serif;
  font-size: 60px;
  font-weight: 600;
  font-style: bold;
  text-align: left;
  text-transform: uppercase;
  line-height: 65px;
}

.header-slider-parent .header-slider-element .header-slider-text-button {
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 600;
  font-style: bold;
  text-align: left;
  text-transform: normal;
  line-height: 50px;
}

.page-header-title {
  font-family: "Bitter", serif;
  font-size: 75px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 75px;
}

@media (max-width: 1280px) {
  .page-header-title {
    font-family: "Bitter", serif;
    font-size: 55px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 65px;
  }
}

@media (max-width: 1024px) {
  .page-header-title {
    font-family: "Bitter", serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 55px;
  }
}

@media (max-width: 640px) {
  .page-header-title {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 45px;
  }
}

.fahrzeuge-kuerzel {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
}

.fahrzeuge-post-title {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 40px;
}

@media (max-width: 640px) {
  .fahrzeuge-post-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 35px;
  }
}

.fahrzeuge-detail-label,
.fzg-info-table-cell:first-child {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
  line-height: 15px;
}

.fahrzeuge-con ul {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 35px;
}

@media (max-width: 1024px) {
  .fahrzeuge-con ul {
    font-family: "Bitter", serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 35px;
  }
}

.fzg-beschreibung-title {
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 50px;
}

@media (max-width: 1280px) {
  .fzg-beschreibung-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 1024px) {
  .fzg-beschreibung-title {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 40px;
  }
}

@media (max-width: 640px) {
  .fzg-beschreibung-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 35px;
  }
}

.fzg-recent-post-text {
  font-family: "Bitter", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 25px;
}

@media (max-width: 640px) {
  .fzg-recent-post-text {
    font-family: "Bitter", serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
  }
}

h3.fzg-recent-post-datum {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
  font-style: normal;
  text-align: left;
  text-transform: normal;
}

@media (max-width: 640px) {
  h3.fzg-recent-post-datum {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    text-align: left;
    text-transform: normal;
  }
}

.fzg-infos-con-title {
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 50px;
}

@media (max-width: 1280px) {
  .fzg-infos-con-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 1024px) {
  .fzg-infos-con-title {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 40px;
  }
}

@media (max-width: 640px) {
  .fzg-infos-con-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 35px;
  }
}

.fzg-infos-headline {
  font-family: "Bitter", serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 35px;
  color: white;
}

@media (max-width: 1280px) {
  .fzg-info-bilder-beladung-con h2 {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    text-transform: normal;
  }
}

@media (max-width: 640px) {
  .fzg-info-bilder-beladung-con h2 {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.logm-kat-title {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: bold;
  text-align: left;
  text-transform: none;
  line-height: 40px;
}

.einsatz-beschreibung-title,
.einsatz-allgm-title,
.einsatz-impr-title {
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 50px;
}

@media (max-width: 1280px) {
  .einsatz-beschreibung-title,
  .einsatz-allgm-title,
  .einsatz-impr-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 1024px) {
  .einsatz-beschreibung-title,
  .einsatz-allgm-title,
  .einsatz-impr-title {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 640px) {
  .einsatz-beschreibung-title,
  .einsatz-allgm-title,
  .einsatz-impr-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 40px;
  }
}

@media (max-width: 1440px) {
  .einsatz-info-details-text {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 30px;
  }
}

@media (max-width: 1280px) {
  .einsatz-info-details-text {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .einsatz-info-details-text {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 30px;
  }
}

.einsatz-fahrzeuge-tab-info {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: normal;
}

@media (max-width: 768px) {
  .einsatz-fahrzeuge-tab-info {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    letter-spacing: 0;
  }
}

@media (max-width: 640px) {
  .einsatz-fahrzeuge-tab-info {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    letter-spacing: 0;
  }
}

.einsatz-fahrzeuge-tab-inhalt {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: right;
  text-transform: normal;
}

@media (max-width: 768px) {
  .einsatz-fahrzeuge-tab-inhalt {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: right;
    text-transform: normal;
    letter-spacing: 0;
  }
}

@media (max-width: 640px) {
  .einsatz-fahrzeuge-tab-inhalt {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    letter-spacing: 0px;
  }
}

.einsatz-fahrzeuge-title {
  color: black;
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 50px;
}

@media (max-width: 1024px) {
  .einsatz-fahrzeuge-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.einsatz-fahrzeuge-post-title {
  color: black;
  font-family: "Bitter", serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 35px;
  /*@include breakpoint(1024) {
        @include fontstyle($bitter, $font-size20, 700, normal, left, normal);
        line-height:$font-size25;
    }*/
}

.einsatz-impr-title {
  color: white;
}

.einsatz-kraefte-headline {
  font-family: "Bitter", serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
  line-height: 35px;
  color: white;
}

.abteilung-con {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: none;
  line-height: 35px;
}

.abt-fahrzeuge-tab-info {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: normal;
}

@media (max-width: 768px) {
  .abt-fahrzeuge-tab-info {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    letter-spacing: 0;
  }
}

@media (max-width: 640px) {
  .abt-fahrzeuge-tab-info {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    letter-spacing: 0;
  }
}

.abt-fahrzeuge-tab-inhalt {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: right;
  text-transform: normal;
}

@media (max-width: 768px) {
  .abt-fahrzeuge-tab-inhalt {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: right;
    text-transform: normal;
    letter-spacing: 0;
  }
}

@media (max-width: 640px) {
  .abt-fahrzeuge-tab-inhalt {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    letter-spacing: 0;
  }
}

.abteilung-mannschaft-title,
.abteilung-beschreibung-title,
.abteilung-ghaus-title,
.abteilung-fahrzeuge-title,
.abteilung-ghaus-impr-title,
.jugend-beschreibung-title,
.jugend-aktionen-title,
.jugend-abzeichen-title,
.jfw-impr-title,
.jugend-faq-title,
.jugend-voraussetzungen-title,
.fgr-beschreibung-title,
.fgr-impr-title,
.ehren-beschreibung-title,
.ehren-impr-title {
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 50px;
  color: black;
}

@media (max-width: 1440px) {
  .abteilung-mannschaft-title,
  .abteilung-beschreibung-title,
  .abteilung-ghaus-title,
  .abteilung-fahrzeuge-title,
  .abteilung-ghaus-impr-title,
  .jugend-beschreibung-title,
  .jugend-aktionen-title,
  .jugend-abzeichen-title,
  .jfw-impr-title,
  .jugend-faq-title,
  .jugend-voraussetzungen-title,
  .fgr-beschreibung-title,
  .fgr-impr-title,
  .ehren-beschreibung-title,
  .ehren-impr-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 1024px) {
  .abteilung-mannschaft-title,
  .abteilung-beschreibung-title,
  .abteilung-ghaus-title,
  .abteilung-fahrzeuge-title,
  .abteilung-ghaus-impr-title,
  .jugend-beschreibung-title,
  .jugend-aktionen-title,
  .jugend-abzeichen-title,
  .jfw-impr-title,
  .jugend-faq-title,
  .jugend-voraussetzungen-title,
  .fgr-beschreibung-title,
  .fgr-impr-title,
  .ehren-beschreibung-title,
  .ehren-impr-title {
    font-family: "Bitter", serif;
    font-size: 35px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 45px;
  }
}

@media (max-width: 640px) {
  .abteilung-mannschaft-title,
  .abteilung-beschreibung-title,
  .abteilung-ghaus-title,
  .abteilung-fahrzeuge-title,
  .abteilung-ghaus-impr-title,
  .jugend-beschreibung-title,
  .jugend-aktionen-title,
  .jugend-abzeichen-title,
  .jfw-impr-title,
  .jugend-faq-title,
  .jugend-voraussetzungen-title,
  .fgr-beschreibung-title,
  .fgr-impr-title,
  .ehren-beschreibung-title,
  .ehren-impr-title {
    font-family: "Bitter", serif;
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 40px;
  }
}

.einsatz-details-bottom-title,
.abteilung-details-bottom-title,
.jugend-details-bottom-title,
.fzg-details-bottom-title,
.fgr-details-bottom-title {
  color: white;
  font-family: "Bitter", serif;
  font-size: 23px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 350px) {
  .einsatz-details-bottom-title,
  .abteilung-details-bottom-title,
  .jugend-details-bottom-title,
  .fzg-details-bottom-title,
  .fgr-details-bottom-title {
    font-family: "Bitter", serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: uppercase;
    line-height: 25px;
  }
}

.abteilung-ghaus-impr-title,
.jfw-impr-title {
  color: white;
}

.abteilung-counter-zahl,
.abt-counter-einsaetze {
  font-family: "Bitter", serif;
  font-size: 60px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  text-transform: normal;
  color: #f0f0f0;
}

@media (max-width: 1440px) {
  .abteilung-counter-zahl,
  .abt-counter-einsaetze {
    font-family: "Bitter", serif;
    font-size: 45px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

@media (max-width: 1024px) {
  .abteilung-counter-zahl,
  .abt-counter-einsaetze {
    font-family: "Bitter", serif;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.abteilung-counter-title {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  text-transform: normal;
  color: #f0f0f0;
}

@media (max-width: 1440px) {
  .abteilung-counter-title {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.abteilung-mannschaft-element-zahl {
  font-family: "Bitter", serif;
  font-size: 60px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  text-transform: normal;
  color: #af1531;
}

@media (max-width: 1440px) {
  .abteilung-mannschaft-element-zahl {
    font-family: "Bitter", serif;
    font-size: 45px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

@media (max-width: 1024px) {
  .abteilung-mannschaft-element-zahl {
    font-family: "Bitter", serif;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.abteilung-mannschaft-element-text {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  text-transform: normal;
  line-height: 35px;
}

@media (max-width: 1440px) {
  .abteilung-mannschaft-element-text {
    font-family: "Bitter", serif;
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    text-transform: normal;
  }
}

.abt-fahrzeuge-post-title {
  font-family: "Bitter", serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 30px;
}

.abteilung-details-info-title,
.jugend-details-info-title {
  font-family: "Bitter", serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 35px;
}

@media (max-width: 1440px) {
  .abteilung-details-info-title,
  .jugend-details-info-title {
    font-family: "Bitter", serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 25px;
  }
}

@media (max-width: 480px) {
  .abteilung-details-info-title,
  .jugend-details-info-title {
    font-family: "Bitter", serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 25px;
  }
}

.jfw-trenner-title {
  font-family: "Bitter", serif;
  font-size: 60px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 95px;
}

@media (max-width: 1440px) {
  .jfw-trenner-title {
    font-family: "Bitter", serif;
    font-size: 55px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
    line-height: 70px;
  }
}

@media (max-width: 1024px) {
  .jfw-trenner-title {
    font-family: "Bitter", serif;
    font-size: 45px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 55px;
  }
}

@media (max-width: 768px) {
  .jfw-trenner-title {
    font-family: "Bitter", serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    text-transform: normal;
    line-height: 45px;
  }
}

.accordion {
  font-family: "Bitter", serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 20px;
}

.jfw-abzeichen-headline {
  font-family: "Bitter", serif;
  font-size: 25px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 35px;
  color: white;
}

.jfw-voraussetzungen-single-num {
  font-family: "Bitter", serif;
  font-size: 45px;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  text-transform: normal;
}

.jfw-voraussetzungen-single-head {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
}

.content-fahrzeug-single-wrap-text .fahrzeug-inhalt .fahrzeug-details-con .fahrzeug-details .detail-fahrzeug {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  color: #828282;
}

.footer-cta-text,
.footer-social-text,
.footer-cta-text p,
.footer-social-text p {
  font-family: "Bitter", serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
  line-height: 40px;
}

.footer-element li a {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  text-transform: normal;
}

@media (max-width: 1280px) {
  .footer-element li a {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    text-transform: normal;
  }
}

.page-header-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .page-header-title:after {
    margin: 0 auto;
    background: white;
  }
}

.single-page-entry-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 30px;
  width: 100px;
}

@media (max-width: 1024px) {
  .single-page-entry-title:after {
    margin: 0 auto;
    background: white;
  }
}

.fahrzeug-post-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .fahrzeug-post-title:after {
    margin: 0 auto;
    background: white;
  }
}

.headline-underline-middle {
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  margin: 0 auto;
  width: 50px;
}

.headline-underline-middle-weiss {
  height: 3px;
  background: white;
  display: block;
  position: relative;
  margin: 0 auto;
  width: 50px;
}

.headline-underline-middle-hellgrau {
  height: 3px;
  background: #f0f0f0;
  display: block;
  position: relative;
  margin: 0 auto;
  width: 50px;
}

.headline-underline-middle-dunkelgrau {
  height: 3px;
  background: #828282;
  display: block;
  position: relative;
  margin: 0 auto;
  width: 50px;
}

.headline-underline-middle-rot {
  height: 3px;
  background: #af1531;
  display: block;
  position: relative;
  margin: 0 auto;
  width: 50px;
}

.headline-underline-left {
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  margin: 0;
  top: 13px;
  width: 50px;
}

.verlauf:after {
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
}

html {
  overflow-x: hidden;
}

html, body {
  color: black;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

*:focus {
  outline: none;
}

#site {
  margin: 0 0 0 0;
}

img {
  width: 100%;
  height: auto;
}

.clear::after {
  clear: both;
  content: "";
  display: table;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  z-index: 900;
  background: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .site-header {
    height: 100px;
  }
}

.container {
  margin: 0 8% 0 8%;
}

@media (max-width: 1280px) {
  .container {
    margin: 0 3% 0 3%;
  }
}

.first-content {
  margin: 120px 0 0px 0;
}

@media (max-width: 1024px) {
  .first-content {
    margin: 100px 0 0 0;
  }
}

.content2 {
  margin: 150px 0 0 0;
}

@media (max-width: 1280px) {
  .content2 {
    margin: 75px 0 0 0;
  }
}

@media (max-width: 1024px) {
  .content2 {
    margin: 55px 0 0 0;
  }
}

@media (max-width: 640px) {
  .content2 {
    margin: 30px 0 0 0;
  }
}

.content-last {
  margin: 150px 0 0px 0;
}

@media (max-width: 1100px) {
  .content-last {
    margin: 75px 0 0 0;
  }
}

@media (max-width: 640px) {
  .content-last {
    margin: 50px 0 0 0;
  }
}

.content-pages {
  margin: 150px 0 0 0;
}

@media (max-width: 1100px) {
  .content-pages {
    margin: 75px 0 0 0;
  }
}

@media (max-width: 640px) {
  .content-pages {
    margin: 50px 0 0 0;
  }
}

@media (max-width: 1024px) {
  .big-content {
    margin-left: 3%;
    margin-right: 3%;
  }
}

.middle-content {
  margin-left: 14%;
  margin-right: 14%;
}

@media (max-width: 1024px) {
  .middle-content {
    margin-left: 3%;
    margin-right: 3%;
  }
}

.small-content {
  margin-left: 20%;
  margin-right: 20%;
}

@media (max-width: 1280px) {
  .small-content {
    margin-left: 15%;
    margin-right: 15%;
  }
}

@media (max-width: 1024px) {
  .small-content {
    margin-left: 3%;
    margin-right: 3%;
  }
}

.content-news {
  width: 71%;
  float: left;
}

@media (max-width: 1440px) {
  .content-news {
    width: 60%;
  }
}

@media (max-width: 1024px) {
  .content-news {
    float: none;
    width: 100%;
  }
}

.content-sidebar {
  width: 24%;
  float: left;
  margin: 0 1% 0 4%;
}

@media (max-width: 1440px) {
  .content-sidebar {
    width: 35%;
  }
}

@media (max-width: 1024px) {
  .content-sidebar {
    display: none;
  }
}

.content-sidebar .widget {
  padding: 10%;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 10px 20px 0px rgba(17, 12, 79, 0.05);
  margin: 0 0 10% 0;
}

.content-hg-flamme-ges:before {
  content: "";
  position: absolute;
  left: -15%;
  bottom: -65%;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -5;
  max-height: 1000px;
  background: url("img/FFA_Flamme_Hellgrau.svg");
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .content-hg-flamme-ges:before {
    left: -10%;
    bottom: -30%;
  }
}

@media (max-width: 768px) {
  .content-hg-flamme-ges:before {
    left: -10%;
    bottom: -30%;
  }
}

@media (max-width: 768px) {
  .content-hg-flamme-ges:before {
    left: -5%;
    bottom: -40%;
  }
}

/*.spacer{
    @include margin(50px 0 0 0);
}*/
.footerspacer {
  height: 150px;
}

@media (max-width: 1280px) {
  .footerspacer {
    height: 75px;
  }
}

@media (max-width: 1024px) {
  .footerspacer {
    height: 50px;
  }
}

@media (max-width: 640px) {
  .footerspacer {
    height: 25px;
  }
}

@media (max-width: 1100px) {
  .desktop {
    display: none;
  }
}

@media (max-width: 640px) {
  .desktop-ss {
    display: none;
  }
}

.mobil {
  display: none;
}

@media (max-width: 1100px) {
  .mobil {
    display: block;
  }
}

.mobil-s {
  display: none;
}

@media (max-width: 1024px) {
  .mobil-s {
    display: block;
  }
}

.mobil-ss {
  display: none;
}

@media (max-width: 640px) {
  .mobil-ss {
    display: block;
  }
}

.footer-bereich {
  position: relative;
  background: #f0f0f0;
  /* wird dynamisch gesetzt */
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 90px;
}

/*
.footer-bereich.has-cta {
    padding-top: 200px;
}

.footer-bereich.no-cta {
    padding-top: 100px;
    //margin-top:150px;
}
*/
.disclaim {
  color: white;
  text-align: center;
  background: #464646;
  padding: 2%;
}

.disclaim a {
  color: white;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.disclaim a:hover {
  color: #af1531;
}

.seiten-info {
  color: white;
  text-align: center;
  background: #af1531;
  background: -webkit-linear-gradient(legacy-direction(90deg), #af1531, #f1c934);
  background: linear-gradient(90deg, #af1531, #f1c934);
  padding: 1%;
}

@media (max-width: 768px) {
  .seiten-info {
    padding: 3%;
  }
}

.seiten-header {
  margin: -30px 0 0 0;
}

.seiten-title {
  color: white;
}

.header-bild {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
}

.header-grid-parent {
  display: grid;
  height: 450px;
  grid-template-columns: repeat(auto-fit, minmax(10%, 1fr));
  grid-template-rows: repeat(auto-fit, 6, 1fr);
  margin: 0 0 10% 0;
  background: #828282;
}

.header-title {
  grid-area: 2 / 2 / 4 / 5;
  z-index: 2;
}

.header-image {
  grid-area: 1 / 5 / 6 / 13;
  z-index: 1;
}

.header-bg {
  grid-area: 5 / 1 / 7 / 13;
  background: #af1531;
  height: 200px;
}

.header-slider-parent {
  position: relative;
}

.header-slider-parent .header-slider-element {
  position: relative;
}

.header-slider-parent .header-slider-element .header-slider-text-button {
  position: absolute;
  z-index: 3;
  margin: 10% 10% 10% 11%;
  color: white;
  width: 50%;
  text-shadow: 1px 1px 4px black;
}

.header-slider-text-animation {
  animation: slideInDown;
  animation-duration: 2s;
  animation-direction: alternate;
}

.header-slider-element-image {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  height: 700px;
}

@media (max-width: 2400px) {
  .header-slider-element-image {
    height: 600px;
  }
}

@media (max-width: 1920px) {
  .header-slider-element-image {
    height: 450px;
  }
}

@media (max-width: 1440px) {
  .header-slider-element-image {
    height: 425px;
  }
}

@media (max-width: 1280px) {
  .header-slider-element-image {
    height: 325px;
  }
}

.slick-arrow {
  position: absolute;
  width: 100%;
  color: white;
  z-index: 10;
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  padding: 0;
  top: 75%;
}

@media (max-width: 1024px) {
  .slick-arrow {
    top: 85%;
  }
}

.header-slider-next {
  right: 10%;
  height: 30px;
  width: 30px;
  text-shadow: 1px 1px 4px black;
  padding: 1%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-slider-next:hover {
  background: #f0f0f0;
}

@media (max-width: 1024px) {
  .header-slider-next {
    right: 6%;
  }
}

.header-slider-prev {
  right: 20%;
  height: 30px;
  width: 30px;
  text-shadow: 1px 1px 4px black;
  padding: 1%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-slider-prev:hover {
  background: #f0f0f0;
}

@media (max-width: 1024px) {
  .header-slider-prev {
    left: 6%;
  }
}

.page-header-wrap {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #464646;
}

.page-header-wrap .page-head-inner {
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  height: 500px;
}

@media (max-width: 1024px) {
  .page-header-wrap .page-head-inner {
    height: 300px;
  }
}

.page-header-wrap .page-head-inner .page-header-bild {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.75;
}

.page-head-con {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  margin: 0 auto;
  background: white;
  padding: 1%;
  width: 50%;
}

@media (max-width: 1280px) {
  .page-head-con {
    width: 90%;
    margin: 0 3% 0 3%;
  }
}

@media (max-width: 768px) {
  .page-head-con {
    width: 90%;
    margin: 0 auto;
  }
}

.page-header-text-hg {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  background: #f0f0f0;
  background: -webkit-linear-gradient(legacy-direction(to bottom), #f0f0f0, #b4b4b4);
  background: linear-gradient(to bottom, #f0f0f0, #b4b4b4);
  height: 700px;
  float: left;
  width: 28.75%;
}

@media (max-width: 2400px) {
  .page-header-text-hg {
    height: 600px;
  }
}

@media (max-width: 1920px) {
  .page-header-text-hg {
    height: 450px;
  }
}

@media (max-width: 1440px) {
  .page-header-text-hg {
    height: 425px;
  }
}

@media (max-width: 1280px) {
  .page-header-text-hg {
    height: 325px;
    width: 26.5%;
  }
}

@media (max-width: 1024px) {
  .page-header-text-hg {
    display: none;
  }
}

.page-header-text-hg:before {
  content: "";
  position: absolute;
  top: 120px;
  left: -15%;
  bottom: -15%;
  width: 700px;
  height: 700px;
  opacity: 0.25;
  background: url("img/FFA_Flamme_weiss_3.svg");
  background-repeat: no-repeat;
}

.page-header-image {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  z-index: 0;
  float: left;
  width: 71.25%;
}

@media (max-width: 1280px) {
  .page-header-image {
    width: 73.5%;
  }
}

@media (max-width: 1024px) {
  .page-header-image {
    clear: both;
    width: 100%;
  }
}

.page-header-element-image {
  margin: -75px 0 0 0;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  height: 775px;
}

@media (max-width: 2400px) {
  .page-header-element-image {
    height: 675px;
  }
}

@media (max-width: 1920px) {
  .page-header-element-image {
    height: 525px;
  }
}

@media (max-width: 1440px) {
  .page-header-element-image {
    height: 500px;
  }
}

@media (max-width: 1280px) {
  .page-header-element-image {
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .page-header-element-image {
    height: 300px;
    margin: -25px 0 -130px 0;
  }
}

@media (max-width: 640px) {
  .page-header-element-image {
    height: 400px;
    margin: -25px 0 -130px 0;
  }
}

.page-header-text {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 55%;
  z-index: 4;
  left: 8%;
  top: 450px;
}

@media (max-width: 2400px) {
  .page-header-text {
    top: 400px;
  }
}

@media (max-width: 1920px) {
  .page-header-text {
    top: 275px;
  }
}

@media (max-width: 1920px) {
  .page-header-text {
    top: 250px;
  }
}

@media (max-width: 1280px) {
  .page-header-text {
    top: 200px;
    left: 3%;
  }
}

@media (max-width: 1024px) {
  .page-header-text {
    position: relative;
    top: 50%;
    transform: translateY(-25%);
    margin: 0 auto;
    left: 0%;
    width: 90%;
  }
}

@media (max-width: 640px) {
  .page-header-text {
    transform: translateY(-35%);
  }
}

.page-header-title {
  letter-spacing: 1px;
  color: white;
  text-shadow: 1px 1px 2px black;
}

/*       
.single-page-bg-header {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    position: relative;
    z-index:-10;
    @include linear-gradient(to bottom,( $weiss ,$hellgrau));
    @include padding(5% 9% 0 8%);
    @include margin(0 0 150px 0);
    height:500px;
    @include breakpoint(1280) {
        @include padding(5% 3% 0 3%);
        height:350px;
    }
    @include breakpoint(1024) {
        @include padding(25px 0 75px 0);
        height:425px;
    }
    @include breakpoint(640) {
        height:450px;
    }
}

.single-page-head-text-con {
    flex-basis:45%;
    @include margin(0 5% 0 0);
    display:flex;
    flex-direction:column;
    hyphens:auto;
    overflow-wrap:break-word;
    word-break:normal;
    position:relative;
    @include breakpoint(1024) {
        flex-basis:94%;
        @include margin(0 3% 0 3%);
        height:100%;
    }
    &:after {
        content:"";
        position:absolute;
        left:5%;
        top:2%;
        margin-left:-400px;
        width:1200px;
        height:1200px;
        opacity:1;
        z-index:-9;
        background:url('img/FFA_Flamme_Hellgrau.svg') no-repeat;
        @include breakpoint(1280) {
            margin-left:-450px;
            width:1000px;
            height:1000px;
        }
    }
}

.single-page-header-image-con {
    position:relative;
    margin-top:1%;
    flex-basis:50%;
    display:flex;
    @include breakpoint(1024) {
        flex-basis:94%;
        @include margin(-150px auto);
    }
}

.single-page-header-image-con-inner{
    width:100%;
    height:auto;
    img{
        box-shadow: 0 0 45px $hellgrau3;
        width:100%;
        display:block;
        height:650px;
        object-fit: cover; 
        @include breakpoint(1280) {
            height:450px;
        }
    }
}

.single-page-entry-title{
   margin-top:7.5%;
   color:$schwarz;
    @include breakpoint(1280) {
           margin-top:3%;
    }
}

.single-page-entry-subheadline{
    position: relative;
    z-index:10;
}

*/
/* =========================================================
   HEADER WRAPPER
   ========================================================= */
.single-page-header-wrapper {
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* =========================================================
   HEADER
   ========================================================= */
.single-page-bg-header {
  position: relative;
  display: grid;
  grid-template-columns: 45% 50%;
  column-gap: 5%;
  align-items: start;
  padding: 5% 9% 0 8%;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow: visible;
  z-index: 1;
}

@media (max-width: 1024px) {
  .single-page-bg-header {
    grid-template-columns: 1fr;
    column-gap: 0;
    align-items: start;
    padding: 50px 3% 0 3%;
  }
}

@media (max-width: 640px) {
  .single-page-bg-header {
    padding: 50px 3% 0 3%;
  }
}

/* =========================================================
   HINTERGRUND
   ========================================================= */
.single-page-bg-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: white;
  background: -webkit-linear-gradient(legacy-direction(to bottom), white, #f0f0f0);
  background: linear-gradient(to bottom, white, #f0f0f0);
  z-index: 0;
  pointer-events: none;
}

/* =========================================================
   FLAMME
   ========================================================= */
.single-page-bg-header-background:after {
  content: "";
  position: absolute;
  left: 5%;
  top: 0;
  margin-left: -400px;
  width: 1200px;
  height: 1200px;
  background: url("img/FFA_Flamme_Hellgrau.svg") no-repeat center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .single-page-bg-header-background:after {
    margin-left: -150px;
    width: 800px;
    height: 800px;
  }
}

@media (max-width: 1024px) {
  .single-page-bg-header-background:after {
    left: 50%;
    margin-left: -400px;
    width: 800px;
    height: 800px;
  }
}

@media (max-width: 640px) {
  .single-page-bg-header-background:after {
    margin-left: -300px;
    width: 600px;
    height: 600px;
  }
}

/* =========================================================
   TEXTBEREICH
   ========================================================= */
.single-page-head-text-con {
  position: relative;
  grid-column: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 10;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 1024px) {
  .single-page-head-text-con .single-page-head-text-con {
    grid-column: 1;
    width: 100%;
  }
}

/* =========================================================
   SUBHEADLINE
   ========================================================= */
.single-page-entry-subheadline {
  position: relative;
  z-index: 11;
  margin-top: 0;
  margin-bottom: 0;
}

/* =========================================================
   TITEL
   ========================================================= */
.single-page-entry-title {
  position: relative;
  z-index: 11;
  margin-top: 7.5%;
  margin-bottom: 0;
  color: black;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 1280px) {
  .single-page-entry-title {
    margin-top: 3%;
  }
}

@media (max-width: 1024px) {
  .single-page-entry-title {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .single-page-entry-title {
    margin-top: 15px;
  }
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.single-page-header-nav-historie {
  position: relative;
  z-index: 11;
  margin-top: 50px !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  height: auto;
  min-height: 0;
  overflow: visible;
}

@media (max-width: 640px) {
  .single-page-header-nav-historie {
    margin-top: 35px !important;
  }
}

/* =========================================================
   BILD CONTAINER
   ========================================================= */
.single-page-header-image-con {
  position: relative;
  grid-column: 2;
  width: 100%;
  z-index: 20;
  margin-top: 1%;
}

@media (max-width: 1024px) {
  .single-page-header-image-con {
    grid-column: 1;
    margin-top: 100px;
  }
}

/* =========================================================
   BILD INNER
   ========================================================= */
.single-page-header-image-con-inner {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 20;
}

/* =========================================================
   BILD
   ========================================================= */
.single-page-header-image-con-inner img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 21;
  box-shadow: 0 0 45px #b4b4b4;
}

@media (max-width: 1280px) {
  .single-page-header-image-con-inner img {
    min-height: 400px;
  }
}

@media (max-width: 1024px) {
  .single-page-header-image-con-inner img {
    min-height: 350px;
  }
}

@media (max-width: 640px) {
  .single-page-header-image-con-inner img {
    height: auto;
    min-height: 0;
    object-fit: cover;
  }
}

a {
  color: #af1531;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #464646;
}

.nav-historie {
  margin: 30px auto;
  z-index: 10;
  color: #828282;
}

.nav-historie a {
  color: #464646;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-historie a:hover {
  color: #af1531;
}

@media (max-width: 768px) {
  .nav-historie {
    display: none;
  }
}

.page-header-nav-historie {
  color: #464646;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .page-header-nav-historie {
    text-shadow: 1px 1px 2px black;
    color: white;
  }
  .page-header-nav-historie a {
    color: white;
  }
  .page-header-nav-historie a:hover {
    color: #af1531;
  }
}

.single-page-header-nav-historie {
  margin: 5% 0 0 0;
  color: #464646;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .single-page-header-nav-historie {
    display: none;
  }
}

.header-hauptnavigation-con {
  display: flex;
  flex-wrap: nowrap;
}

.header-logo {
  position: relative;
  flex: 0 0 24.75%;
  padding: 0;
  margin: 0;
}

.header-logo img {
  margin: 10px 0 0 0;
  width: auto;
  height: 100px;
}

@media (max-width: 1024px) {
  .header-logo img {
    margin: 5px 0 0 0;
    width: 100%;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .header-logo {
    flex: 0 0 50%;
  }
}

.site-header-subnav-search-con {
  flex: 1;
  padding: 0 0 0 0;
}

.site-header-subnav-search {
  display: flex;
  padding: 0 0 0 0;
}

@media (max-width: 1024px) {
  .site-header-subnav-search {
    display: none;
  }
}

.site-header-subnav {
  flex: 0 0 50%;
  margin: 7px 0 0 0;
  height: 43px;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-transform: normal;
}

.site-header-subnav ul {
  padding-inline-start: 0px;
  width: 100%;
}

.site-header-subnav ul li {
  display: inline-block;
  list-style-type: none;
  margin: 0 -4px 0 0;
}

.site-header-subnav ul li a {
  display: block;
  display: table-cell;
  vertical-align: middle;
  height: 50px;
  border-left: 1px solid #f0f0f0;
  padding: 0 29px 0 29px;
  color: black;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.site-header-subnav ul li a:hover {
  color: white;
  background: #464646;
  border-left: 1px solid #464646;
}

.site-header-subnav ul li:last-child {
  border-right: 1px solid #f0f0f0;
}

.site-header-search {
  flex: 1;
  text-align: right;
}

.searchform-header input {
  margin: 0px 0px 0 0;
  padding: 3px 15px 3px 15px;
  width: 76%;
  clear: both;
  list-style: none;
  height: 44px;
  border: none;
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}

@media (max-width: 1920px) {
  .searchform-header input {
    font-size: 18px;
  }
}

@media (max-width: 1600px) {
  .searchform-header input {
    font-size: 17px;
  }
}

@media (max-width: 1280px) {
  .searchform-header input {
    font-size: 15px;
  }
}

.haupt-navigation {
  flex: 1;
  padding: 0 20px 0 0;
  margin: 0px 0 0 0;
  height: 70px;
  background: #af1531;
  background: -webkit-linear-gradient(legacy-direction(90deg), #af1531, #f1c934);
  background: linear-gradient(90deg, #af1531, #f1c934);
}

@media (max-width: 1024px) {
  .haupt-navigation {
    background: #af1531;
    height: 100px;
  }
}

.haupt-navigation:before {
  position: absolute;
  content: "";
  height: 70px;
  width: 9%;
  right: 0px;
  background: #f1c934;
}

@media (max-width: 1280px) {
  .haupt-navigation:before {
    width: 3%;
  }
}

@media (max-width: 1024px) {
  .haupt-navigation:before {
    width: 3%;
    height: 100px;
    background: #af1531;
  }
}

#mega-menu-wrap-header-subnavi #mega-menu-header-subnavi > li.mega-menu-item:first-child > a.mega-menu-link {
  border-left: 1px solid #f0f0f0;
  border-right: 0px solid #f0f0f0;
}

@media (max-width: 1920px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    padding: 0px 20px 0px 20px;
  }
}

@media (max-width: 1600px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    padding: 0px 15px 0px 15px;
    font-size: 17px;
  }
}

@media (max-width: 1280px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    padding: 0px 13px 0px 13px;
    font-size: 15px;
  }
}

@media (max-width: 1600px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    padding: 15px;
    font-size: 17px;
  }
}

@media (max-width: 1280px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    padding: 13px;
    font-size: 15px;
  }
}

@media (max-width: 1600px) {
  #mega-menu-wrap-header-subnavi #mega-menu-header-subnavi > li.mega-menu-item > a.mega-menu-link {
    font-size: 17px;
  }
}

@media (max-width: 1280px) {
  #mega-menu-wrap-header-subnavi #mega-menu-header-subnavi > li.mega-menu-item > a.mega-menu-link {
    font-size: 15px;
  }
}

.main-navigation {
  margin: -14px 0 0 0;
}

.main-navigation li {
  list-style: none;
  display: inline-block;
}

.main-navigation li {
  margin: 0 -5px 0 0;
}

.main-navigation li a {
  padding: 0 20px 0 20px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main-navigation li a:hover {
  color: white;
  background: #af1531;
}

a.page-numbers {
  color: #b4b4b4;
}

a.page-numbers:hover {
  color: #464646;
}

.page-numbers {
  padding: 10px 15px;
  border: 2px solid #c8c8c8;
}

.page-numbers:hover {
  background: #c8c8c8;
}

.current {
  background: linear-gradient(-45deg, #f1c934, #af1531);
  color: white;
  border: 2px solid;
  border-image: linear-gradient(-45deg, #f1c934, #af1531) 1;
}

.current:hover {
  background: linear-gradient(-45deg, #f1c934, #af1531);
}

.nav-links {
  clear: both;
  border-top: 1px solid #f0f0f0;
  margin: 4% 9% 0 8%;
  height: 100%;
}

@media (max-width: 1280px) {
  .nav-links {
    margin: 4% 3% 0 3%;
  }
}

@media (max-width: 1024px) {
  .nav-links .page-nav-title {
    display: none;
  }
}

.nav-links .pagination_prev {
  float: left;
  width: 45%;
  padding: 50px 0 50px 0;
}

@media (max-width: 1024px) {
  .nav-links .pagination_prev {
    padding: 15px 0 30px 0;
  }
}

@media (max-width: 1024px) {
  .nav-links .pagination_prev .nav-head-prev {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-links .pagination_prev {
    padding: 15px 0 30px 0;
  }
}

.nav-links .pagination_all {
  float: left;
  width: 10%;
  padding: 50px 0 50px 0;
}

@media (max-width: 1024px) {
  .nav-links .pagination_all {
    padding: 15px 0 30px 0;
  }
}

@media (max-width: 640px) {
  .nav-links .pagination_all {
    padding: 15px 0 30px 0;
  }
}

.nav-links .pagination_next {
  float: right;
  width: 45%;
  padding: 50px 0 50px 0;
}

@media (max-width: 1024px) {
  .nav-links .pagination_next {
    width: 45%;
  }
}

@media (max-width: 1024px) {
  .nav-links .pagination_next .nav-head-next {
    display: none;
  }
}

@media (max-width: 1024px) {
  .nav-links .pagination_next {
    padding: 15px 0 30px 0;
  }
}

.nav-links a {
  color: #c8c8c8;
}

.nav-links a:hover {
  color: #af1531;
}

.nav-links .pag_icon_prev {
  float: left;
  width: 10%;
  margin: 5px 0 0 0;
}

@media (max-width: 640px) {
  .nav-links .pag_icon_prev {
    width: 100%;
  }
}

.nav-links .pag_icon_next {
  float: right;
  width: 10%;
  margin: 5px 0 0 0;
}

@media (max-width: 640px) {
  .nav-links .pag_icon_next {
    width: 100%;
  }
}

.disclaim {
  margin: 0;
}

.disclaim li {
  list-style: none;
  display: inline-block;
}

.disclaim li {
  margin: 0;
}

.disclaim li a {
  color: white;
  padding: 30px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.disclaim li a:hover {
  color: black;
}

.disclaim li:after {
  content: "·";
  margin: 0;
}

.disclaim li:last-child:after {
  content: "";
}

.seiten-info a {
  color: white;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.seiten-info a:hover {
  color: black;
}

.searchform li {
  list-style: none;
}

.searchform input {
  margin: 3% 0 0 0;
  min-height: 40px;
  width: 100%;
  clear: both;
  list-style: none;
  background: white;
  padding: 1%;
  height: 40px;
  border: none;
  border-top: 1px solid #c8c8c8;
}

.ff-search-results {
  padding: 5% 8% 0% 8%;
}

@media (max-width: 1280px) {
  .ff-search-results {
    padding: 5% 3% 0% 3%;
  }
}

@media (max-width: 1024px) {
  .ff-search-results {
    padding: 100px 3% 0% 3%;
  }
}

@media (max-width: 768px) {
  .ff-search-results {
    padding: 25px 3% 0% 3%;
  }
}

.ff-search-results-head {
  width: 100%;
  margin-bottom: 50px;
}

.ff-search-results-head .ff-search-results-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #af1531;
}

.ff-search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
}

@media (max-width: 1280px) {
  .ff-search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ff-search-results-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.ff-search-results .ff-search-result {
  border: 1px solid #ddd;
  background: white;
}

.ff-search-results .ff-search-result-inner {
  padding: 30px;
}

.ff-search-results .ff-search-result-type {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  color: #b4b4b4;
  letter-spacing: 1px;
}

.ff-search-results .ff-search-result h3 {
  margin: 0 0 15px;
}

.ff-search-results .ff-search-result h3 a {
  color: #af1531;
  text-decoration: none;
  transition: color .3s;
}

.ff-search-results .ff-search-result h3 a:hover {
  color: #464646;
}

.ff-search-results .ff-search-result-excerpt {
  margin-bottom: 25px;
  line-height: 1.6;
}

.ff-search-results .ff-search-result-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin: 25px 0 25px 0;
}

.ff-search-results .ff-search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ff-search-results .ff-search-pagination .nav-links {
  margin: 50px 0;
  padding: 50px 0;
}

.search-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 50px auto 0;
}

.search-actions .search-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 30px;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  background: #f0f0f0;
}

.search-actions .search-action-title {
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  color: #af1531;
  text-transform: uppercase;
  text-align: center;
}

.search-actions .search-search {
  width: 100%;
  max-width: 450px;
  padding: 3px;
  box-sizing: border-box;
  background: #af1531;
  background: -webkit-linear-gradient(legacy-direction(90deg), #af1531, #f1c934);
  background: linear-gradient(90deg, #af1531, #f1c934);
}

.search-actions .search-search #searchform {
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0;
  background: white;
}

.search-actions .search-search #s {
  display: block;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  margin: 0;
  padding: 0 15px;
  border: none;
  background: white;
  color: #464646;
}

.search-actions .search-search #s:focus {
  outline: none;
  background: white;
}

@media (max-width: 640px) {
  .search-actions {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .search-actions .error-404-action {
    min-height: 130px;
  }
}

.ff-search-no-results {
  min-height: 70vh;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.ff-search-no-results-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.ff-search-no-results-number {
  font-family: "Bitter", serif;
  font-size: clamp(120px, 20vw, 240px);
  line-height: 1;
  font-weight: 900;
  background: #af1531;
  background: -webkit-linear-gradient(legacy-direction(90deg), #af1531, #f1c934);
  background: linear-gradient(90deg, #af1531, #f1c934);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ff-search-no-results-content {
  max-width: 1200px;
  margin: 0 auto;
}

.ff-search-no-results-content h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
}

.ff-search-no-results-content p {
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.ff-search-no-results-links {
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid #828282;
}

.ff-search-no-results-links > span {
  display: block;
  margin-bottom: 15px;
}

.ff-search-no-results-links nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 25px;
}

.ff-search-no-results-links a {
  text-decoration: none;
  font-weight: 600;
}

.ff-search-no-results-links a:hover {
  color: #af1531;
}

@media (max-width: 640px) {
  .ff-search-no-results {
    min-height: 60vh;
    padding: 60px 20px;
  }
  .ff-search-no-results-number {
    margin-bottom: 45px;
  }
  .ff-search-no-results-links {
    margin-top: 50px;
  }
  .ff-search-no-results-links nav {
    gap: 12px 20px;
  }
}

.ff-search-label {
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: .15em;
  color: #af1531;
}

.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.error-404-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.error-404-number {
  font-family: "Bitter", serif;
  font-size: clamp(120px, 20vw, 240px);
  line-height: 1;
  font-weight: 900;
  background: #af1531;
  background: -webkit-linear-gradient(legacy-direction(90deg), #af1531, #f1c934);
  background: linear-gradient(90deg, #af1531, #f1c934);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.error-404-content {
  max-width: 1200px;
  margin: 0 auto;
}

.error-404-content .error-404-label {
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: .15em;
  color: #af1531;
}

.error-404-content h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
}

.error-404-content p {
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.error-404-links {
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid #828282;
}

.error-404-links > span {
  display: block;
  margin-bottom: 15px;
}

.error-404-links nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 25px;
}

.error-404-links a {
  text-decoration: none;
  font-weight: 600;
}

.error-404-links a:hover {
  color: #af1531;
}

@media (max-width: 640px) {
  .error-404 {
    min-height: 60vh;
    padding: 60px 20px;
  }
  .error-404-number {
    margin-bottom: 45px;
  }
  .error-404-links {
    margin-top: 50px;
  }
  .error-404-links nav {
    gap: 12px 20px;
  }
}

.error-404-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 50px auto 0;
}

.error-404-actions .error-404-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 30px;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  background: #f0f0f0;
}

.error-404-actions .error-404-action-title {
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  color: #af1531;
  text-transform: uppercase;
  text-align: center;
}

.error-404-actions .error-404-search {
  width: 100%;
  max-width: 450px;
  padding: 3px;
  box-sizing: border-box;
  background: #af1531;
  background: -webkit-linear-gradient(legacy-direction(90deg), #af1531, #f1c934);
  background: linear-gradient(90deg, #af1531, #f1c934);
}

.error-404-actions .error-404-search #searchform {
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0;
  background: white;
}

.error-404-actions .error-404-search #s {
  display: block;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  margin: 0;
  padding: 0 15px;
  border: none;
  background: white;
  color: #464646;
}

.error-404-actions .error-404-search #s:focus {
  outline: none;
  background: white;
}

@media (max-width: 640px) {
  .error-404-actions {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .error-404-actions .error-404-action {
    min-height: 130px;
  }
}

.footer-cta-con {
  position: sticky;
  bottom: -50%;
  z-index: 20;
  width: 84%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
}

.footer-cta-con > *:only-child {
  grid-column: 1 / -1;
}

.footer-cta-con > *:nth-child(1):nth-last-child(2),
.footer-cta-con > *:nth-child(2):nth-last-child(1) {
  grid-column: auto;
}

.footer-cta-con > *:nth-child(3):nth-last-child(1) {
  grid-column: 1 / -1;
}

@media (max-width: 1280px) {
  .footer-cta-con {
    width: 94%;
    margin: 0 3% 0 3%;
  }
}

@media (max-width: 768px) {
  .footer-cta-con {
    display: none;
  }
}

/* Jedes Element ist eigener Positionierungs-Kontext */
.footer-cta-aktive,
.footer-cta-jugend,
.footer-social-con {
  position: relative;
}

/* Social nimmt volle Breite, aber NUR wenn es wirklich unten ist */
.footer-social-con {
  min-height: 300px;
  background: black;
}

/* Hintergrundbilder */
.footer-cta-hg-bild,
.footer-social-hg-bild {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  opacity: 0.75;
}

/* Texte */
.footer-cta-text,
.footer-social-text {
  position: absolute;
  top: 0;
  z-index: 300;
  color: white;
  text-shadow: 1px 1px 2px black;
  padding: 50px;
}

.footer-cta-text p,
.footer-social-text p {
  margin-top: 0;
}

/* Buttons */
.footer-cta-button,
.footer-social-button {
  position: absolute;
  bottom: 0;
  padding: 50px;
  z-index: 300;
}

/* Button Layout */
.footer-btn-normal {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
}

.footer-btn-normal span {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-btn-normal img {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
}

.footer-btn-icon img {
  width: 22px;
  height: 22px;
  transition: filter .25s ease;
}

/* Standardfarbe */
.footer-btn-normal .footer-btn-icon img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg);
}

/* Hoverfarbe (weiß) */
.footer-btn-normal:hover .footer-btn-icon img {
  filter: brightness(0) invert(1);
}

footer,
.footer-wrapper {
  position: relative;
  z-index: 1;
  overflow: visible;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 30px;
}

@media (max-width: 1100px) {
  footer,
  .footer-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  footer,
  .footer-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.footer-element {
  padding: 0 3% 0 0;
}

@media (max-width: 1024px) {
  .footer-element {
    padding: 0 0 10% 0;
  }
}

@media (max-width: 640px) {
  .footer-element:first-child {
    text-align: center;
  }
  .footer-element:first-child img {
    margin: 0 0 0 35px;
  }
}

.footer-element:last-child {
  padding: 0 0 0 0;
}

@media (max-width: 1024px) {
  .footer-element:last-child {
    padding: 0 0 10% 1%;
  }
}

@media (max-width: 1024px) {
  .footer-element:nth-child(2) {
    padding: 0 1% 10% 0;
  }
}

@media (max-width: 640px) {
  .footer-element:nth-child(2) {
    padding: 0 3% 0 3%;
  }
}

@media (max-width: 640px) {
  .footer-element:nth-child(3) {
    padding: 0 3% 0 3%;
  }
}

.footer-element ul {
  margin: 0 0 0 -40px;
  display: block;
  list-style: none;
}

@media (max-width: 640px) {
  .footer-element ul {
    text-align: center;
  }
}

.footer-element li {
  margin: 0 0 2% 0;
}

@media (max-width: 640px) {
  .footer-element li {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .widget-title {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .wp-block-heading {
    text-align: center;
  }
}

.widget_media_text .media-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.widget_media_text .media-text img {
  margin: 0 !important;
  display: block;
}

.r-e-btn {
  display: table-cell;
  vertical-align: middle;
  padding: 2% 3% 2% 3%;
  color: white;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
}

.inline-block {
  display: inline-block;
  width: auto;
}

.r-n-btn:after,
.r-e-btn:after {
  content: '';
  position: absolute;
  z-index: -1;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
  color: white;
}

.r-e-btn-eff,
.r-e-btn-eff2 {
  overflow: hidden;
}

.r-e-btn-eff:after,
.r-e-btn-eff2:after {
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  background: #202020;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.r-e-btn-eff:hover,
.r-e-btn-eff:active,
.r-e-btn-eff2:hover,
.r-e-btn-eff2:active {
  color: white;
  z-index: 0;
}

.r-e-btn-eff:hover:after {
  height: 565%;
  opacity: 1;
}

.r-e-btn-eff:active:after {
  height: 400%;
  opacity: 1;
}

.r-e-btn-eff2:hover:after {
  height: 300%;
  opacity: 1;
}

.r-e-btn-eff2:active:after {
  height: 400%;
  opacity: 1;
}

.r-n-btn {
  display: table-cell;
  vertical-align: middle;
  padding: 2% 3% 2% 3%;
  color: white;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
}

.btn-normal {
  display: inline-block;
  padding: 10px 40px 10px 40px;
  color: black;
  border: 3px solid;
  border-image: linear-gradient(-45deg, #f1c934, #af1531) 1;
  text-transform: uppercase;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-normal:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -2;
}

.btn-normal:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #af1531;
  transition: all .3s;
  z-index: -1;
}

.btn-normal:hover {
  color: white;
}

.btn-normal:hover:before {
  width: 100%;
}

@media (max-width: 1600px) {
  .btn-normal {
    padding: 5px 25px 5px 25px;
  }
}

.btn-normal-smaller {
  display: inline-block;
  padding: 5px 20px 5px 20px;
  color: black;
  border: 3px solid;
  border-image: linear-gradient(-45deg, #f1c934, #af1531) 1;
  text-transform: uppercase;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-normal-smaller:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -2;
}

.btn-normal-smaller:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #af1531;
  transition: all .3s;
  z-index: -1;
}

.btn-normal-smaller:hover {
  color: white;
}

.btn-normal-smaller:hover:before {
  width: 100%;
}

.two-col,
.three-col,
.four-col {
  padding: 0;
  margin: 10px 3% 10px 0;
}

.two-col img,
.three-col img,
.four-col img {
  max-width: 100%;
}

.one-col {
  position: relative;
}

.two-col {
  float: left;
  width: 47%;
}

@media (max-width: 768px) {
  .two-col {
    float: none;
    width: 100%;
  }
}

.three-col {
  float: left;
  width: 30%;
}

@media (max-width: 768px) {
  .three-col {
    float: none;
    width: 100%;
  }
}

.four-col {
  float: left;
  width: 22%;
}

@media (max-width: 768px) {
  .four-col {
    float: none;
    width: 100%;
  }
}

.end-col-two {
  float: left;
  width: 47%;
}

@media (max-width: 768px) {
  .end-col-two {
    float: none;
    width: 100%;
  }
}

.end-col-three {
  float: left;
  width: 30%;
}

@media (max-width: 768px) {
  .end-col-three {
    float: none;
    width: 100%;
  }
}

.end-col-four {
  float: left;
  width: 22%;
}

@media (max-width: 768px) {
  .end-col-four {
    float: none;
    width: 100%;
  }
}

.divider {
  clear: both;
}

.spacer {
  margin: 50px 0 50px 0;
}

.center {
  margin: 50px 0 50px 0;
  text-align: center;
}

hr,
.line {
  width: 100%;
  border-width: 1px;
  border-color: #f0f0f0;
  margin: 50px 0 50px 0;
}

.accordion {
  background-color: #af1531;
  color: white;
  padding: 25px 25px 25px 50px;
  width: 100%;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion:last-child {
  border-bottom: none;
  border-top: none;
}

.active, .accordion:hover {
  background-color: #f1c934;
  color: black;
}

.accordion:after {
  content: "\e930";
  font-family: "icomoon";
  float: right;
  margin-right: 50px;
  font-size: 25px;
}

.active:after {
  content: "\e92e";
  font-family: "icomoon";
}

.panel {
  padding: 0;
  background-color: #f0f0f0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.cta-aktive-fw-container {
  position: relative;
  clear: both;
  width: 100%;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .cta-aktive-fw-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .cta-aktive-fw-container {
    height: 475px;
  }
}

@media (max-width: 640px) {
  .cta-aktive-fw-container {
    height: 600px;
  }
}

.cta-aktive-fw-text-hg {
  float: left;
  width: 29%;
  height: 100%;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  margin: 0 0 0 0;
}

@media (max-width: 1920px) {
  .cta-aktive-fw-text-hg {
    width: 28.75%;
  }
}

@media (max-width: 1280px) {
  .cta-aktive-fw-text-hg {
    width: 26.5%;
  }
}

@media (max-width: 1024px) {
  .cta-aktive-fw-text-hg {
    display: none;
  }
}

.cta-aktive-fw-bild-con {
  float: left;
  width: 71%;
  height: 100%;
  margin: 0 0 0 0;
}

@media (max-width: 1920px) {
  .cta-aktive-fw-bild-con {
    width: 71.25%;
  }
}

@media (max-width: 1280px) {
  .cta-aktive-fw-bild-con {
    width: 73.5%;
  }
}

@media (max-width: 1024px) {
  .cta-aktive-fw-bild-con {
    width: 100%;
    background: #f1c934;
    background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
    background: linear-gradient(-45deg, #f1c934, #af1531);
  }
}

.cta-aktive-fw-bild {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  height: 100%;
}

@media (max-width: 1024px) {
  .cta-aktive-fw-bild {
    opacity: 0.5;
  }
}

.cta-aktive-fw-text-con {
  position: absolute;
  z-index: 5;
  left: 8%;
}

@media (max-width: 1280px) {
  .cta-aktive-fw-text-con {
    left: 3%;
  }
}

@media (max-width: 1024px) {
  .cta-aktive-fw-text-con {
    left: 0;
    text-align: center;
    align-items: center;
  }
}

.cta-aktive-fw-text {
  width: 20%;
  margin: 2% 0 2% 0;
  color: white;
}

@media (max-width: 1600px) {
  .cta-aktive-fw-text {
    margin: 4% 0 2% 0;
  }
}

@media (max-width: 1024px) {
  .cta-aktive-fw-text {
    width: 84%;
    margin: 2% 8% 2% 8%;
    text-shadow: 1px 1px 2px black;
  }
}

.cta-aktive-title {
  width: 45%;
  margin: 0 0 5% 0;
  color: white;
  text-shadow: 1px 2px 2px black;
}

.cta-aktive-title:after {
  content: "";
  height: 3px;
  background: white;
  display: block;
  position: relative;
  top: 20px;
  bottom: 20px;
  width: 100px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .cta-aktive-title:after {
    margin: 0 auto;
  }
}

@media (max-width: 1440px) {
  .cta-aktive-title {
    width: 50%;
  }
}

@media (max-width: 1280px) {
  .cta-aktive-title {
    width: 65%;
  }
}

@media (max-width: 1100px) {
  .cta-aktive-title {
    margin: 0 0 50px 0;
  }
}

@media (max-width: 1024px) {
  .cta-aktive-title {
    width: 100%;
    color: white;
    text-shadow: 1px 1px 2px black;
  }
}

.cta-jfw-container {
  position: relative;
  clear: both;
  width: 100%;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .cta-jfw-container {
    height: 400px;
  }
}

@media (max-width: 640px) {
  .cta-jfw-container {
    height: 600px;
  }
}

.cta-jfw-text-hg {
  float: left;
  width: 29%;
  height: 100%;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  margin: 0 0 0 0;
}

@media (max-width: 1920px) {
  .cta-jfw-text-hg {
    width: 28.75%;
  }
}

@media (max-width: 1280px) {
  .cta-jfw-text-hg {
    width: 26.5%;
  }
}

@media (max-width: 1024px) {
  .cta-jfw-text-hg {
    display: none;
  }
}

.cta-jfw-bild-con {
  float: left;
  width: 71%;
  height: 100%;
  margin: 0 0 0 0;
}

@media (max-width: 1920px) {
  .cta-jfw-bild-con {
    width: 71.25%;
  }
}

@media (max-width: 1280px) {
  .cta-jfw-bild-con {
    width: 73.5%;
  }
}

@media (max-width: 1024px) {
  .cta-jfw-bild-con {
    width: 100%;
    background: #f1c934;
    background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
    background: linear-gradient(-45deg, #f1c934, #af1531);
  }
}

.cta-jfw-bild {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  height: 100%;
}

@media (max-width: 1024px) {
  .cta-jfw-bild {
    opacity: 0.5;
  }
}

.cta-jfw-text-con {
  position: absolute;
  left: 8%;
  z-index: 5;
}

@media (max-width: 1280px) {
  .cta-jfw-text-con {
    left: 3%;
  }
}

@media (max-width: 1024px) {
  .cta-jfw-text-con {
    left: 0;
    text-align: center;
    align-items: center;
  }
}

.cta-jfw-text {
  z-index: 5;
  width: 20%;
  color: white;
  margin: 2% 0 2% 0;
}

@media (max-width: 1600px) {
  .cta-jfw-text {
    margin: 4% 0 2% 0;
  }
}

@media (max-width: 1024px) {
  .cta-jfw-text {
    width: 84%;
    margin: 2% 8% 2% 8%;
    color: white;
    text-shadow: 1px 1px 2px black;
  }
}

.cta-jfw-title {
  z-index: 5;
  width: 45%;
  margin: 0 0 5% 0;
  color: white;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}

.cta-jfw-title:after {
  content: "";
  height: 3px;
  background: white;
  display: block;
  position: relative;
  top: 20px;
  bottom: 20px;
  width: 100px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .cta-jfw-title:after {
    margin: 0 auto;
  }
}

@media (max-width: 1440px) {
  .cta-jfw-title {
    width: 50%;
  }
}

@media (max-width: 1280px) {
  .cta-jfw-title {
    width: 65%;
  }
}

@media (max-width: 1100px) {
  .cta-jfw-title {
    margin: 0 0 50px 0;
  }
}

@media (max-width: 1024px) {
  .cta-jfw-title {
    width: 100%;
    color: white;
    text-shadow: 1px 1px 2px black;
  }
}

.text-background:after {
  position: relative;
  content: '';
  width: 60%;
  height: 25px;
  background: #af1531;
  left: 0;
  bottom: 0;
  z-index: 5;
}

.startseite-text-hg {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  background: #464646;
  height: 700px;
  float: left;
  width: 28.75%;
}

@media (max-width: 2400px) {
  .startseite-text-hg {
    height: 600px;
  }
}

@media (max-width: 1920px) {
  .startseite-text-hg {
    height: 450px;
  }
}

@media (max-width: 1440px) {
  .startseite-text-hg {
    height: 425px;
  }
}

@media (max-width: 1280px) {
  .startseite-text-hg {
    height: 325px;
    width: 26.5%;
  }
}

@media (max-width: 1024px) {
  .startseite-text-hg {
    display: none;
  }
}

.startseite-text-hg:before {
  content: "";
  position: absolute;
  top: 150px;
  left: -15%;
  bottom: -15%;
  width: 1050px;
  height: 1050px;
  opacity: 0.25;
  background: url("img/FFA_Flamme_weiss_3.svg");
  background-repeat: no-repeat;
}

@media (max-width: 2400px) {
  .startseite-text-hg:before {
    width: 900px;
    height: 900px;
  }
}

@media (max-width: 1920px) {
  .startseite-text-hg:before {
    width: 750px;
    height: 750px;
  }
}

@media (max-width: 1440px) {
  .startseite-text-hg:before {
    width: 600px;
    height: 600px;
  }
}

@media (max-width: 1280px) {
  .startseite-text-hg:before {
    width: 450px;
    height: 450px;
  }
}

.startseite-slider {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  z-index: 0;
  float: left;
  width: 71.25%;
}

@media (max-width: 1280px) {
  .startseite-slider {
    width: 73.5%;
  }
}

@media (max-width: 1024px) {
  .startseite-slider {
    clear: both;
    width: 100%;
  }
}

.startseite-slider-element-image {
  position: relative;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  height: 700px;
}

@media (max-width: 2400px) {
  .startseite-slider-element-image {
    height: 600px;
  }
}

@media (max-width: 1920px) {
  .startseite-slider-element-image {
    height: 450px;
  }
}

@media (max-width: 1440px) {
  .startseite-slider-element-image {
    height: 425px;
  }
}

@media (max-width: 1280px) {
  .startseite-slider-element-image {
    height: 325px;
  }
}

@media (max-width: 1024px) {
  .startseite-slider-element-image {
    display: none;
  }
}

.startseite-text {
  position: absolute;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40%;
  z-index: 4;
  left: 8%;
  top: 250px;
  color: white;
  text-shadow: 1px 1px 2px black;
}

@media (max-width: 1920px) {
  .startseite-text {
    top: 200px;
    width: 55%;
  }
}

@media (max-width: 1280px) {
  .startseite-text {
    top: 150px;
    left: 3%;
  }
}

@media (max-width: 1024px) {
  .startseite-text {
    display: none;
  }
}

.startseite-einsatz {
  position: absolute;
  z-index: 10;
  width: 41.5%;
  margin: -160px 0 10% 8%;
  height: 150px;
}

@media (max-width: 1920px) {
  .startseite-einsatz {
    margin: -168px 0 10% 8%;
  }
}

@media (max-width: 1800px) {
  .startseite-einsatz {
    margin: -168px 0 10% 8%;
  }
}

@media (max-width: 1280px) {
  .startseite-einsatz {
    margin: -165px 0 10% 3%;
  }
}

@media (max-width: 1024px) {
  .startseite-einsatz {
    display: none;
  }
}

.recent-einsatz-con {
  width: 100%;
  background: white;
  display: table;
}

.recent-einsatz-icon {
  float: left;
  width: 20%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recent-einsatz-icon img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 70px;
  max-height: 70px;
}

.recent-einsatz-datum-title {
  float: left;
  width: 69%;
  height: 150px;
  padding: 0% 3% 0 3%;
  border-left: 1px solid #c8c8c8;
}

@media (max-width: 1920px) {
  .recent-einsatz-datum-title {
    padding: 1% 3% 0 3%;
  }
}

.recent-einsatz-datum {
  margin: 2% 0 0 0;
  color: #828282;
  position: relative;
}

.recent-einsatz-datum:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 0px;
  bottom: 15px;
  width: 50px;
}

.recent-einsatz-title {
  position: relative;
  margin: 10px 0 0 0;
  color: black;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

@media (max-width: 1440px) {
  .recent-einsatz-title {
    line-height: 30px;
  }
}

@media (max-width: 1280px) {
  .recent-einsatz-title {
    margin: 7% 0 0 0;
  }
}

.recent-einsatz-button-con {
  clear: both;
  width: 100%;
  display: table;
}

.slick-arrow {
  position: absolute;
  width: 100%;
  height: 500px;
  color: white;
  z-index: 10;
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  padding: 0;
  top: 75%;
}

@media (max-width: 1024px) {
  .slick-arrow {
    top: 80%;
  }
}

.header-slider-next {
  right: 10%;
  height: 30px;
  width: 30px;
  text-shadow: 1px 1px 4px black;
  padding: 1%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-slider-next:hover {
  background: #f0f0f0;
  text-shadow: none;
  color: #828282;
}

@media (max-width: 1024px) {
  .header-slider-next {
    right: 3%;
  }
}

.header-slider-prev {
  right: 20%;
  height: 30px;
  width: 30px;
  text-shadow: 1px 1px 4px black;
  padding: 1%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-slider-prev:hover {
  background: #f0f0f0;
  text-shadow: none;
  color: #828282;
}

@media (max-width: 1024px) {
  .header-slider-prev {
    left: 3%;
  }
}

.startseite-headline {
  color: black;
}

.startseite-intro-text {
  float: left;
  width: 45%;
  margin: 0 5% 0 0;
}

@media (max-width: 1024px) {
  .startseite-intro-text {
    clear: both;
    width: 100%;
    text-align: center;
  }
}

.startseite-intro-images {
  float: left;
  width: 49%;
  margin: 0 1% 0 0;
}

@media (max-width: 1024px) {
  .startseite-intro-images {
    display: none;
  }
}

.startseite-images::after {
  content: ' ';
  display: table;
  clear: both;
}

.startseite-images-item-top {
  float: left;
  width: 65%;
  margin-right: -100%;
  padding-top: 15%;
  position: relative;
  z-index: 1;
}

.startseite-images-item-bottom {
  float: right;
  width: 50%;
}

.content-last-news-title-con {
  position: relative;
  width: 100%;
  height: 750px;
  margin: 150px 0 415px 0;
}

@media (max-width: 1920px) {
  .content-last-news-title-con {
    height: 650px;
  }
}

@media (max-width: 1800px) {
  .content-last-news-title-con {
    margin: 150px 0 290px 0;
    height: 600px;
  }
}

@media (max-width: 1440px) {
  .content-last-news-title-con {
    height: 500px;
  }
}

@media (max-width: 1280px) {
  .content-last-news-title-con {
    margin: 100px 0 257px 0;
  }
}

@media (max-width: 1100px) {
  .content-last-news-title-con {
    height: 100%;
  }
}

@media (max-width: 1024px) {
  .content-last-news-title-con {
    margin: 75px 0 75px 0;
  }
}

@media (max-width: 640px) {
  .content-last-news-title-con {
    margin: 0px 0 0 0;
  }
}

.content-last-news-hg {
  position: absolute;
  width: 37.5%;
  height: 100%;
  background: #464646;
  padding: 5% 4% 4% 8%;
}

@media (max-width: 1440px) {
  .content-last-news-hg {
    width: 40%;
    padding: 5% 2% 4% 8%;
  }
}

@media (max-width: 1280px) {
  .content-last-news-hg {
    width: 45%;
    padding: 5% 2% 4% 3%;
  }
}

@media (max-width: 1100px) {
  .content-last-news-hg {
    position: relative;
    width: 96%;
    padding: 5% 3% 1% 3%;
  }
}

@media (max-width: 640px) {
  .content-last-news-hg {
    position: relative;
    width: 96%;
    padding: 10% 3% 10% 3%;
  }
}

.content-last-news-title {
  color: black;
  line-height: 45px;
  margin: 2% 0 8% 0;
  color: white;
}

@media (max-width: 1100px) {
  .content-last-news-title {
    margin: 0 0 50px 0;
  }
}

.content-last-news-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1100px) {
  .content-last-news-title:after {
    margin: 0 auto;
  }
}

.content-last-news-text,
.content-last-news-button {
  width: 45%;
  color: white;
  margin: 2% 0 4% 0;
}

@media (max-width: 1440px) {
  .content-last-news-text,
  .content-last-news-button {
    width: 40%;
  }
}

@media (max-width: 1100px) {
  .content-last-news-text,
  .content-last-news-button {
    width: 98%;
    text-align: center;
  }
}

.content-last-news {
  position: absolute;
  width: 71.25%;
  right: 0;
  top: 310px;
}

@media (max-width: 1920px) {
  .content-last-news {
    top: 225px;
  }
}

@media (max-width: 1800px) {
  .content-last-news {
    top: 210px;
  }
}

@media (max-width: 1600px) {
  .content-last-news {
    top: 200px;
  }
}

@media (max-width: 1440px) {
  .content-last-news {
    top: 190px;
  }
}

@media (max-width: 1280px) {
  .content-last-news {
    top: 180px;
    width: 73.5%;
  }
}

@media (max-width: 1100px) {
  .content-last-news {
    position: relative;
    width: 100%;
    top: 0;
    height: 100%;
  }
}

.last-news-part-con {
  position: relative;
  margin: 0 0 0 0;
  height: 100%;
  max-height: 600px;
  overflow: hidden;
}

.last-news-part-con img {
  width: 100%;
  display: block;
  -moz-transition: transform 0.4s;
  -o-transition: transform 0.4s;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
}

.last-news-element {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .last-news-element {
    padding: 0 0 0 0;
  }
}

@media (max-width: 640px) {
  .last-news-element:nth-child(3), .last-news-element:nth-child(4) {
    display: none;
  }
}

.last-news-entry-inhalt {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  background: #f0f0f0;
  height: auto;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s, opacity 0.1s 0.3s;
}

.last-news-entry-inhalt .head-area {
  padding: 5% 8% 5% 8%;
  margin: 0 0 2% 0;
}

@media (max-width: 1280px) {
  .last-news-entry-inhalt .head-area {
    padding: 5%;
  }
}

@media (max-width: 1024px) {
  .last-news-entry-inhalt .head-area {
    padding: 10%;
  }
}

.last-news-entry-inhalt .head-area h1.last-news-title {
  margin: 12% 0 0 0;
}

@media (max-width: 1280px) {
  .last-news-entry-inhalt .head-area h1.last-news-title {
    margin: 10% 0 0 0;
  }
}

.last-news-entry-inhalt .head-area h1.last-news-title a {
  color: black;
}

.last-news-entry-inhalt .head-area h1.last-news-title a:hover {
  color: #af1531;
}

.last-news-entry-inhalt .head-area h2.last-news-date {
  color: black;
  margin: 7px 0 0 0;
}

.last-news-entry-inhalt .head-area h2.last-news-date:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 50px;
}

.last-news-entry-inhalt .button-area {
  width: 100.25%;
  height: 100%;
  display: table;
  height: 50px;
}

.last-news-entry-fp:hover img {
  transform: translateY(-50px);
}

.last-news-entry-fp:hover .last-news-entry-inhalt,
.last-news-entry-fp:focus .last-news-entry-inhalt {
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.4s, opacity 0.1s;
}

.counter-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch;
  gap: 50px;
}

.counter-container:has(> :nth-child(4)) {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 768px) {
  .counter-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .counter-container:not(:has(> :nth-child(4))) > :nth-child(3) {
    grid-column: 1 / -1;
  }
  .counter-container:has(> :nth-child(4)) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .counter-container {
    grid-template-columns: 1fr !important;
  }
  .counter-container:not(:has(> :nth-child(4))) > :nth-child(3),
  .counter-container:has(> :nth-child(4)) > :nth-child(3) {
    grid-column: auto;
  }
}

.counter-element-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #c8c8c8;
  height: 100%;
}

.counter-icon {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 20px 0;
}

.counter-icon img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 80px;
  max-height: 80px;
}

.counter-zahl {
  width: 100%;
  margin: 0 0 20px 0;
  color: #af1531;
  line-height: 75px;
}

.counter-title {
  margin: 20px 0 0 0;
  border-top: 1px solid #c8c8c8;
}

.counter-title h1 {
  color: black;
}

.last-action-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 600px;
  display: flex;
  flex-wrap: wrap;
}

.last-action-text-hg {
  content: "";
  position: absolute;
  top: -25%;
  left: -10%;
  width: 150%;
  height: 150%;
  opacity: 0.5;
  z-index: -5;
  background: url("img/FFA_Flamme_Hellgrau.svg") no-repeat;
}

@media (max-width: 1024px) {
  .last-action-text-hg {
    left: -25%;
    top: -15%;
  }
}

.last-action-text-con {
  flex: 0 0 28.75%;
  margin: 0;
}

@media (max-width: 1280px) {
  .last-action-text-con {
    flex-basis: 26.5%;
  }
}

@media (max-width: 1100px) {
  .last-action-text-con {
    flex-basis: 100%;
  }
}

.last-action-action-con {
  flex: 1;
  margin: 0;
}

@media (max-width: 1100px) {
  .last-action-action-con {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 25px;
  }
}

.last-action-text-element-con {
  position: absolute;
  top: 8%;
  left: 8%;
  z-index: 5;
}

@media (max-width: 1280px) {
  .last-action-text-element-con {
    left: 3%;
  }
}

@media (max-width: 1100px) {
  .last-action-text-element-con {
    top: 0;
    left: 3%;
    right: 3%;
    text-align: center;
  }
}

.last-action-text {
  width: 40%;
  height: auto;
  margin: 2% 0 4% 0;
}

@media (max-width: 1600px) {
  .last-action-text {
    width: 35%;
  }
}

@media (max-width: 1600px) {
  .last-action-text {
    width: 30%;
  }
}

@media (max-width: 1100px) {
  .last-action-text {
    width: 100%;
    margin: 0 0 4% 0;
  }
}

.last-action-title {
  width: 100%;
  color: black;
  margin: 0 0 8% 0;
}

@media (max-width: 1100px) {
  .last-action-title {
    margin: 0 0 50px 0;
  }
}

.last-action-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1100px) {
  .last-action-title:after {
    margin: 0 auto;
  }
}

.last-action-element-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 29px;
}

@media (max-width: 1100px) {
  .last-action-element-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }
}

@media (max-width: 640px) {
  .last-action-element-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 30px;
  }
}

@media (max-width: 640px) {
  .last-action-element:nth-child(3), .last-action-element:nth-child(4) {
    display: none;
  }
}

.last-action-action {
  position: relative;
  margin-top: 175px;
  z-index: 5;
  height: 100%;
}

@media (max-width: 1600px) {
  .last-action-action {
    margin-top: 170px;
  }
}

@media (max-width: 1100px) {
  .last-action-action {
    margin-top: 280px;
  }
}

@media (max-width: 640px) {
  .last-action-action {
    margin-top: 330px;
  }
}

div.last-action-effect {
  position: relative;
  background: #f0f0f0;
  overflow: hidden;
  width: 17vw;
  height: 400px;
  border: 1px solid #c8c8c8;
}

@media (max-width: 1440px) {
  div.last-action-effect {
    width: 16.875vw;
  }
}

@media (max-width: 1280px) {
  div.last-action-effect {
    width: 17vw;
  }
}

@media (max-width: 1100px) {
  div.last-action-effect {
    width: 45.25vw;
  }
}

@media (max-width: 655px) {
  div.last-action-effect {
    width: 92.25vw;
  }
}

div.last-action-effect:hover {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  background: white;
}

.last-action-element-datum {
  margin: 5% 5% 0 5%;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  text-transform: normal;
  color: #828282;
}

@media (max-width: 1280px) {
  .last-action-element-datum {
    margin: 10% 5% 0 5%;
  }
}

@media (max-width: 1100px) {
  .last-action-element-datum {
    margin: 5% 5% 0 5%;
  }
}

.last-action-element-title {
  margin: 15% 5% 0 5%;
  color: black;
}

@media (max-width: 1440px) {
  .last-action-element-title {
    padding: 0% 1% 1% 0%;
  }
}

@media (max-width: 1100px) {
  .last-action-element-title {
    margin: 8% 5% 0 5%;
  }
}

.last-action-element-button {
  position: absolute;
  width: 94.15%;
}

.last-action-element-icon {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50vw;
}

.last-action-element-icon img {
  display: block;
  max-height: 75px;
  width: auto;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .last-action-element-icon {
    top: 7px;
  }
}

@media (max-width: 1100px) {
  .last-action-element-icon {
    top: 35px;
    width: 45.25vw;
  }
}

@media (max-width: 768px) {
  .last-action-element-icon {
    width: 45.25vw;
  }
}

@media (max-width: 675px) {
  .last-action-element-icon {
    width: 45.25vw;
  }
}

@media (max-width: 655px) {
  .last-action-element-icon {
    width: 92.25vw;
  }
}

@media (max-width: 640px) {
  .last-action-element-icon {
    width: 92.25vw;
  }
}

div.last-action-effect h2,
div.last-action-effect h1,
div.last-action-effect p {
  position: absolute;
  right: 10px;
  left: 10px;
  padding: 10px 0;
  text-align: center;
}

div.last-action-effect .last-action-element-icon img {
  top: 60px;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
}

div.last-action-effect .last-action-element-button {
  bottom: 0px;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
}

div.last-action-effect p {
  bottom: 30px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

@media (max-width: 1024px) {
  div.last-action-effect p {
    bottom: 40px;
  }
}

div.last-action-effect h2 {
  top: 85px;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
}

@media (max-width: 1280px) {
  div.last-action-effect h2 {
    top: 65px;
  }
}

@media (max-width: 1100px) {
  div.last-action-effect h2 {
    top: 85px;
  }
}

@media (max-width: 1024px) {
  div.last-action-effect h2 {
    top: 100px;
  }
}

div.last-action-effect h1 {
  top: 120px;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
}

@media (max-width: 1280px) {
  div.last-action-effect h1 {
    top: 110px;
  }
}

@media (max-width: 1280px) {
  div.last-action-effect h1 {
    top: 120px;
  }
}

@media (max-width: 1024px) {
  div.last-action-effect h1 {
    top: 150px;
  }
}

div.last-action-effect:hover h2,
div.last-action-effect:hover h1,
div.last-action-effect:hover img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

div.last-action-effect h2::after,
div.last-action-effect h1::after,
div.last-action-effect img::after,
div.last-action-effect p,
div.last-action-effect a {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

div.last-action-effect:hover h2::after,
div.last-action-effect:hover h1::after,
div.last-action-effect:hover img::after,
div.last-action-effect:hover p,
div.last-action-effect:hover a {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.post-einsatz-con {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  grid-auto-columns: 1fr;
  align-items: stretch;
}

@media (max-width: 2200px) {
  .post-einsatz-con {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1920px) {
  .post-einsatz-con {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1600px) {
  .post-einsatz-con {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .post-einsatz-con {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .post-einsatz-con {
    grid-template-columns: repeat(1, 1fr);
  }
}

h1.einsatz-jahre-title {
  grid-column: 1 / -1;
  color: black;
}

.post-einsatz-inner-con {
  display: flex;
  /* Inhalt strecken */
  flex-direction: column;
  /* vertikal anordnen */
  height: 100%;
  /* volle Höhe vom Grid */
  box-sizing: border-box;
  height: 100%;
}

.post-einsatz-inner-con .post-einsatz-inner {
  flex: 1;
  /* jedes Kind füllt die Höhe */
}

.post-einsatz-bild {
  margin: 0;
  padding: 0;
  height: auto;
}

.post-einsatz-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #f0f0f0;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  box-shadow: 0 0 10px #c8c8c8;
}

.post-einsatz-icon img {
  width: 40px;
  height: 40px;
}

.post-einsatz-inner {
  position: relative;
  margin: -7px 0;
  padding: 35px 5px 5px 5px;
  border: 1px solid #f0f0f0;
}

.post-einsatz-tab-info {
  margin: 2% 0 2% 0;
  float: left;
  width: 50%;
}

.post-einsatz-tab-inhalt {
  margin: 2% 0 2% 0;
  float: left;
  width: 50%;
  text-align: right;
}

.post-einsatz-line {
  clear: both;
  border-bottom: 1px solid #f0f0f0;
}

.post-einsatz-tab-link {
  margin: 3% 0 3% 0;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.post-einsatz-button {
  width: 94%;
  margin: 3% 0 0 0;
  display: block;
}

@media (max-width: 1280px) {
  .post-einsatz-button {
    margin: 2% 0 0 0;
  }
}

@media (max-width: 1024px) {
  .post-einsatz-button {
    margin: 0 0 0 0;
  }
}

.einsatz-details-con {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  padding: 0% 8% 0% 8%;
}

@media (max-width: 1280px) {
  .einsatz-details-con {
    padding: 0 3% 0% 3%;
  }
}

.einsatz-details-con-inner {
  order: 1;
  width: 44.5%;
  padding: 0 5% 0 0;
}

@media (max-width: 1280px) {
  .einsatz-details-con-inner {
    padding: 0 0 0 0;
    width: 100%;
    order: unset;
  }
}

@media (max-width: 1024px) {
  .einsatz-details-con-inner {
    order: 2;
  }
}

.einsatz-details-con-beschreibung {
  order: 2;
  width: 50%;
}

@media (max-width: 1280px) {
  .einsatz-details-con-beschreibung {
    width: 100%;
    order: unset;
  }
}

@media (max-width: 1024px) {
  .einsatz-details-con-beschreibung {
    order: 1;
    margin: 0 0 50px 0;
  }
}

.einsatz-details-top {
  float: left;
  width: 90%;
  margin-right: -100%;
  margin-top: 75px;
  position: relative;
  z-index: 1;
  background: #f0f0f0;
  padding: 5% 3% 5% 3%;
}

.einsatz-details-bottom {
  float: right;
  width: 90%;
  height: auto;
  min-height: 200px;
  background: #af1531;
  padding: 15px 30px;
  color: white;
}

@media (max-width: 1920px) {
  .einsatz-details-bottom {
    width: 80%;
  }
}

@media (max-width: 1280px) {
  .einsatz-details-bottom {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .einsatz-details-bottom {
    width: 75%;
  }
}

.einsatz-details-bottom-title {
  margin-top: 0px;
}

.einsatz-info-details-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-image: linear-gradient(to right, transparent calc(50% - 0.5px), #c8c8c8 calc(50% - 0.5px), #c8c8c8 calc(50% + 0.5px), transparent calc(50% + 0.5px));
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

@media (max-width: 1280px) {
  .einsatz-info-details-items {
    grid-template-columns: repeat(4, 1fr);
    background-image: linear-gradient(to right, transparent calc(25% - 0.5px), #c8c8c8 calc(25% - 0.5px), #c8c8c8 calc(25% + 0.5px), transparent calc(25% + 0.5px), transparent calc(50% - 0.5px), #c8c8c8 calc(50% - 0.5px), #c8c8c8 calc(50% + 0.5px), transparent calc(50% + 0.5px), transparent calc(75% - 0.5px), #c8c8c8 calc(75% - 0.5px), #c8c8c8 calc(75% + 0.5px), transparent calc(75% + 0.5px));
  }
}

@media (max-width: 768px) {
  .einsatz-info-details-items {
    grid-template-columns: repeat(2, 1fr);
    background-image: linear-gradient(to right, transparent calc(50% - 0.5px), #c8c8c8 calc(50% - 0.5px), #c8c8c8 calc(50% + 0.5px), transparent calc(50% + 0.5px));
  }
}

@media (max-width: 640px) {
  .einsatz-info-details-items {
    grid-template-columns: repeat(1, 1fr);
    background-image: none;
  }
}

.einsatz-info-details-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding: 20px;
  box-shadow: inset 0 -1px 0 0 #c8c8c8;
}

@media (max-width: 1600px) {
  .einsatz-info-details-item {
    gap: 20px;
  }
}

@media (max-width: 1440px) {
  .einsatz-info-details-item {
    padding: 10px;
  }
}

@media (max-width: 1280px) {
  .einsatz-info-details-item {
    padding: 10px 20px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media (max-width: 1280px) {
  .einsatz-info-details-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .einsatz-info-details-item {
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    justify-items: left;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .einsatz-info-details-item {
    column-gap: 25px;
    row-gap: 0;
    padding: 20px;
  }
}

.einsatz-info-details-item:last-child {
  box-shadow: none;
}

.einsatz-info-details-item:only-child {
  box-shadow: none;
}

.einsatz-info-details-text {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .einsatz-info-details-text {
    grid-row: 2;
    min-height: 5.5em;
  }
}

@media (max-width: 768px) {
  .einsatz-info-details-text {
    grid-row: 1;
    min-height: auto;
  }
}

.einsatz-info-details-title {
  font-weight: bold;
}

.einsatz-details-info-icon {
  margin: 0 0 0 0;
  border-radius: 50%;
  background: #af1531;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1440px) {
  .einsatz-details-info-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 1280px) {
  .einsatz-details-info-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}

@media (max-width: 1024px) {
  .einsatz-details-info-icon {
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  .einsatz-details-info-icon {
    grid-row: 1;
  }
}

.einsatz-beschreibung-title,
.einsatz-allgm-title {
  width: 100%;
  margin: 0 0 5% 0;
  line-height: 50px;
  color: black;
}

@media (max-width: 1100px) {
  .einsatz-beschreibung-title,
  .einsatz-allgm-title {
    left: 3%;
  }
}

.einsatz-beschreibung-title:after,
.einsatz-allgm-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .einsatz-beschreibung-title:after,
  .einsatz-allgm-title:after {
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .einsatz-beschreibung-title,
  .einsatz-allgm-title {
    margin: 0 0 35px 0;
  }
}

@media (max-width: 768px) {
  .einsatz-beschreibung-title,
  .einsatz-allgm-title {
    margin: 35px 0 25px 0;
  }
}

.einsatz-allgm-con {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .einsatz-allgm-con {
    flex-direction: column;
  }
}

.einsatz-allgm-beschreibung-con-inner {
  width: 44.5%;
  padding: 0 5% 0% 0%;
}

@media (max-width: 1024px) {
  .einsatz-allgm-beschreibung-con-inner {
    width: 100%;
  }
}

.einsatz-allgm-con-inner {
  width: 50%;
  margin: 1% 0% 0% 0;
}

@media (max-width: 1920px) {
  .einsatz-allgm-con-inner {
    margin: 2% 0% 0% 0;
  }
}

@media (max-width: 1024px) {
  .einsatz-allgm-con-inner {
    width: 99%;
  }
}

.einsatz-allgm-text-hg {
  content: "";
  position: absolute;
  margin: -10% 0% 0% 0;
  left: -10%;
  width: 70%;
  height: 70%;
  z-index: -5;
  background: url("img/FFA_Flamme_Hellgrau.svg");
  background-repeat: no-repeat;
}

.einsatz-kraefte-detail-con {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

@media (max-width: 1440px) {
  .einsatz-kraefte-detail-con {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .einsatz-kraefte-detail-con {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .einsatz-kraefte-detail-con {
    flex-direction: column;
  }
}

.einsatz-kraefte-detail {
  flex: 1;
  background: white;
  border: 1px solid #e6e6e6;
  box-shadow: 0 0 25px #e6e6e6;
}

.einsatz-kraefte-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.einsatz-kraefte-head {
  padding: 2% 5% 2% 5%;
  background: #af1531;
}

.einsatz-kraefte-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 4%;
}

.einsatz-kraefte-info-list li {
  padding: 2%;
  border-bottom: 1px solid #e6e6e6;
}

.einsatz-kraefte-info-list li:last-child {
  border-bottom: none;
}

.einsatz-abt-list {
  list-style: none;
}

.einsatz-abt-item {
  line-height: 0px;
  border-bottom: 1px solid #e6e6e6;
}

.einsatz-abt-item:last-child {
  border-bottom: none;
}

.einsatz-abt-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.einsatz-abt-thumb {
  flex: 0 0 48px;
}

.einsatz-abt-thumb img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  display: block;
}

.einsatz-abt-info-title {
  flex: 1;
  font-weight: bold;
  line-height: 25px;
}

.einsatz-abt-info-title a {
  color: black;
}

.einsatz-abt-info-icon-con {
  flex: 0 0 30px;
  text-align: right;
  display: block;
  line-height: 48px;
}

.einsatz-abt-info-icon {
  margin: 0 0 0 0;
  border-radius: 50%;
  background: #af1531;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #af1531;
}

.einsatz-abt-link {
  display: flex;
  padding: 4%;
  transition: background-color 0.2s ease;
}

.einsatz-abt-link:hover {
  background-color: #af1531;
}

.einsatz-abt-link:hover .einsatz-abt-info-title {
  color: white;
}

.einsatz-abt-link:hover .einsatz-abt-info-icon {
  background: white;
  border: 1px solid #af1531;
  color: #af1531;
}

.einsatz-impr-con {
  position: relative;
  width: 100%;
  margin: 5% 0% 10% 0%;
  padding: 100px 8% 100px 8%;
  background: #464646;
  max-height: 275px;
}

@media (max-width: 1920px) {
  .einsatz-impr-con {
    margin: 8% 0% 10% 0%;
  }
}

@media (max-width: 1280px) {
  .einsatz-impr-con {
    width: 101%;
    padding: 2% 3% 2% 3%;
    margin: 8% 0% 20% 0%;
  }
}

@media (max-width: 1024px) {
  .einsatz-impr-con {
    margin: 0% 0% 150px 0%;
  }
}

.einsatz-impr-con {
  background: #af1531;
}

/*
.slick-track {
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: translate3d(0, 0, 0) !important;
    justify-content: flex-start !important;
    display: flex !important;
    @include breakpoint(1024) {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
*/
.einsatz-impr-title {
  width: 100%;
  line-height: 50px;
}

.einsatz-impr-title:after {
  content: "";
  height: 3px;
  background: white;
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .einsatz-impr-title:after {
    margin: 0 auto 70px auto;
  }
}

@media (max-width: 1024px) {
  .einsatz-impr-title {
    margin-bottom: 50px;
  }
}

.einsatz-impr-slider-con {
  width: 84%;
  margin: 3% 0% 7% 0%;
}

@media (max-width: 1280px) {
  .einsatz-impr-slider-con {
    width: 94%;
  }
}

.einsatz-impr-slider-element-image {
  width: 100%;
  display: flex;
}

.einsatz-impr-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
  max-height: 450px;
}

@media (max-width: 1920px) {
  .einsatz-impr-slider img {
    min-height: 325px;
    max-height: 325px;
  }
}

@media (max-width: 1024px) {
  .einsatz-impr-slider img {
    min-height: 250px;
    max-height: 250px;
  }
}

.einsatz-slider-next {
  top: -35%;
  right: 0px;
  height: 30px;
  width: 30px;
  padding: 1%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid #f0f0f0;
}

.einsatz-slider-next:hover {
  background: #c8c8c8;
}

@media (max-width: 1920px) {
  .einsatz-slider-next {
    top: -30%;
    right: 18px;
  }
}

@media (max-width: 1280px) {
  .einsatz-slider-next {
    right: 0px;
  }
}

.einsatz-slider-prev {
  top: -35%;
  right: 100px;
  height: 30px;
  width: 30px;
  padding: 1%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid #f0f0f0;
}

.einsatz-slider-prev:hover {
  background: #c8c8c8;
}

@media (max-width: 1920px) {
  .einsatz-slider-prev {
    top: -30%;
  }
}

@media (max-width: 1280px) {
  .einsatz-slider-prev {
    right: 6%;
  }
}

@media (max-width: 1024px) {
  .einsatz-slider-prev {
    left: 0px;
  }
}

.einsatz-fahrzeuge-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 650px;
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}

.einsatz-fahrzeuge-text-hg {
  content: "";
  position: absolute;
  top: -25%;
  left: -10%;
  width: 150%;
  height: 150%;
  opacity: 0.5;
  z-index: -5;
  background: url("img/FFA_Flamme_Hellgrau.svg");
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .einsatz-fahrzeuge-text-hg {
    left: -25%;
    top: -15%;
  }
}

.einsatz-fahrzeuge-title {
  margin: 0 0 5% 0;
}

.einsatz-fahrzeuge-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1280px) {
  .einsatz-fahrzeuge-title:after {
    margin: 0 auto;
  }
}

@media (max-width: 1280px) {
  .einsatz-fahrzeuge-con {
    margin: 0 -1% 0 0;
  }
}

.einsatz-fahrzeuge-text-con {
  flex: 0 0 21.75%;
  margin: 0 0 0 0;
}

@media (max-width: 1280px) {
  .einsatz-fahrzeuge-text-con {
    flex-basis: 26.5%;
  }
}

@media (max-width: 1100px) {
  .einsatz-fahrzeuge-text-con {
    flex-basis: 100%;
  }
}

.einsatz-fahrzeuge-fahrzeuge-con {
  flex: 1;
  margin: 25px 0 0 0;
}

@media (max-width: 1100px) {
  .einsatz-fahrzeuge-fahrzeuge-con {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 25px;
  }
}

.einsatz-fahrzeuge-fahrzeuge {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1920px) {
  .einsatz-fahrzeuge-fahrzeuge {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1600px) {
  .einsatz-fahrzeuge-fahrzeuge {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .einsatz-fahrzeuge-fahrzeuge {
    grid-template-columns: repeat(1, 1fr);
  }
}

.einsatz-fahrzeuge-text {
  margin: 2% 0 4% 0;
}

.einsatz-fahrzeuge-con-inner {
  margin: 1% 1% 1% 1%;
  min-height: 275px;
  background: #f0f0f0;
}

.einsatz-fahrzeuge-bild {
  margin: 0;
  padding: 0;
  height: auto;
}

.einsatz-fahrzeuge-post-title {
  min-height: 60px;
}

.einsatz-fahrzeuge-inhalte {
  padding: 5px 15px 5px 15px;
  min-height: 220px;
}

.einsatz-fahrzeuge-tab-info {
  margin: 2% 0 2% 0;
  float: left;
  width: 40%;
}

@media (max-width: 1920px) {
  .einsatz-fahrzeuge-tab-info {
    letter-spacing: -0.4px;
  }
}

@media (max-width: 640px) {
  .einsatz-fahrzeuge-tab-info {
    width: 100%;
  }
}

.einsatz-fahrzeuge-tab-inhalt {
  margin: 2% 0 2% 0;
  float: left;
  width: 60%;
}

@media (max-width: 1920px) {
  .einsatz-fahrzeuge-tab-inhalt {
    letter-spacing: -0.4px;
  }
}

@media (max-width: 640px) {
  .einsatz-fahrzeuge-tab-inhalt {
    margin: 0 0 10px 0;
    width: 100%;
  }
}

.einsatz-fahrzeuge-line {
  clear: both;
  border-bottom: 1px solid #c8c8c8;
}

.einsatz-fahrzeuge-button {
  width: 94%;
  display: block;
  margin: 0 0 0 0;
}

.news-post-element-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
}

@media (max-width: 768px) {
  .news-post-element-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 30px;
  }
}

.news-post-element:nth-child(odd) {
  padding: 0 2% 8% 0;
}

@media (max-width: 1100px) {
  .news-post-element:nth-child(odd) {
    padding: 0 0 8% 0;
  }
}

@media (max-width: 640px) {
  .news-post-element:nth-child(odd) {
    padding: 0 0 8% 0;
  }
}

.news-post-element:nth-child(even) {
  padding: 0 0 8% 2%;
}

@media (max-width: 1100px) {
  .news-post-element:nth-child(even) {
    padding: 0 0 8% 0;
  }
}

@media (max-width: 768px) {
  .news-post-element:nth-child(even) {
    padding: 0 0 0 0;
  }
}

.news-post-inner {
  margin: 0 0 0 0;
}

.news-post-images {
  width: 100%;
  margin: 0 0 0 0;
}

.news-post-images::after {
  content: ' ';
  display: table;
  clear: both;
}

.news-post-images-item-top {
  float: left;
  width: 92%;
  margin-right: -100%;
  padding-top: 55px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .news-post-images-item-top {
    width: 95%;
    padding-top: 35px;
  }
}

.news-post-images-item-bottom {
  float: right;
  width: 80%;
  height: auto;
  min-height: 200px;
  background: #af1531;
  padding: 15px 30px;
  color: white;
}

@media (max-width: 1440px) {
  .news-post-images-item-bottom {
    min-height: 300px;
  }
}

@media (max-width: 1024px) {
  .news-post-images-item-bottom {
    width: 70%;
    min-height: 150px;
  }
}

@media (max-width: 768px) {
  .news-post-images-item-bottom {
    min-height: 100px;
  }
}

.news-post-jugend {
  background: #f1c934;
}

.news-post-senioren {
  background: #828282;
}

.news-post-text {
  clear: both;
  width: 100%;
}

.news-entry-title {
  color: #464646;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.news-post-text-preview {
  margin: 25px 0px 50px 0px;
}

.news-post-info-desktop {
  display: block;
}

@media (max-width: 1024px) {
  .news-post-info-desktop {
    display: none;
  }
}

.news-post-info-desktop {
  display: block;
}

@media (max-width: 1024px) {
  .news-post-info-desktop {
    display: none;
  }
}

.news-post-info-mobil {
  display: none;
}

@media (max-width: 1024px) {
  .news-post-info-mobil {
    display: block;
    margin: 25px 0px -10px 0px;
    color: #828282;
  }
}

.post-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  z-index: 1;
}

.post-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
  z-index: 0;
}

.post-head-con {
  width: 75%;
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.post-head-con:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  opacity: 0.75;
  z-index: -1;
  background: url("img/FFA_Flamme_Hellgrau.svg") no-repeat center;
  background-size: contain;
}

.post-image-con {
  width: 83%;
  position: relative;
  z-index: 3;
  margin-top: 50px;
}

@media (max-width: 1280px) {
  .post-image-con {
    width: 94%;
  }
}

.post-image-con img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
}

ol,
ul {
  color: #828282;
  margin: 50px 0 50px 0;
}

ul {
  list-style-type: square;
}

.wp-block-details {
  border: 1px solid #f0f0f0;
  margin-bottom: 12px;
  overflow: hidden;
}

.wp-block-details > summary {
  padding: 16px 20px;
  list-style: none;
  position: relative;
  transition: background .2s;
}

.wp-block-details > summary::after {
  content: "▸";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .3s;
}

.wp-block-details[open] > summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.wp-block-details > *:not(summary) {
  padding: 16px 20px;
  line-height: 1.5;
  border-top: 1px solid #f0f0f0;
}

.wp-block-accordion {
  margin: 0px;
  padding: 0px;
}

h3.wp-block-accordion-heading {
  margin-top: 0em;
  margin-bottom: 0em;
}

.wp-block-accordion-item {
  border: 1px solid #f0f0f0;
  margin-bottom: 12px;
  background: var(--wp--custom--background-color);
  color: var(--wp--custom--color);
  font-size: var(--wp--preset--font-size--medium, 18px);
}

.wp-block-accordion-heading__toggle {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: inherit;
  transition: background .2s ease;
}

.wp-block-accordion-heading__toggle:hover {
  background: #f0f0f0;
  color: black;
}

.wp-block-accordion-heading__toggle-title {
  flex: 1;
  text-align: left;
}

.wp-block-accordion-heading__toggle-icon {
  font-size: 1.4em;
  transition: transform .3s ease;
  color: currentColor;
}

.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon {
  transform: rotate(45deg);
}

.wp-block-accordion-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height .35s ease, padding .35s ease;
  font-size: inherit;
  color: inherit;
}

.wp-block-accordion-item.is-open .wp-block-accordion-panel {
  max-height: 500px;
  padding: 20px;
}

.wp-block-accordion-heading {
  font-size: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wp-block-accordion-heading,
.wp-block-accordion-heading:hover,
.wp-block-accordion-heading:focus,
.wp-block-accordion-heading * {
  text-decoration: none !important;
}

.wp-block-accordion-heading__toggle,
.wp-block-accordion-heading__toggle:hover,
.wp-block-accordion-heading__toggle:focus {
  text-decoration: none !important;
}

.wp-block-accordion .wp-block-accordion-panel p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.wp-block-accordion .wp-block-accordion-panel p + p {
  margin-top: 12px !important;
}

.gallery {
  margin: 50px -18.5% 50px -20%;
}

@media (max-width: 1280px) {
  .gallery {
    margin: 50px -17% 50px -17%;
  }
}

@media (max-width: 1024px) {
  .gallery {
    margin: 50px 0 0 0;
  }
}

.gallery-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin: 0 0 50px;
}

.gallery-item img {
  max-width: 100%;
  display: block;
}

.gallery-item .gallery-caption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  background: #af1531;
  color: white;
  z-index: 10;
}

.gallery-item .gallery-caption {
  height: 95%;
  width: 95%;
  opacity: 0;
  text-align: left;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  -webkit-transform: translate(15px, 15px);
  -moz-transform: translate(15px, 15px);
  -ms-transform: translate(15px, 15px);
  transform: translate(15px, 15px);
}

.gallery-columns-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.gallery-columns-3 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

@media (max-width: 768px) {
  .gallery-columns-3 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

.gallery-columns-4 {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
}

@media (max-width: 1024px) {
  .gallery-columns-4 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .gallery-columns-4 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

.gallery-columns-5 {
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
}

@media (max-width: 1024px) {
  .gallery-columns-5 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .gallery-columns-5 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

.gallery-columns-1,
.gallery-columns-2,
.gallery-columns-3,
.gallery-columns-4,
.gallery-columns-5 {
  gap: 50px;
}

@media (max-width: 768px) {
  .gallery-columns-1,
  .gallery-columns-2,
  .gallery-columns-3,
  .gallery-columns-4,
  .gallery-columns-5 {
    gap: 20px;
  }
}

.wp-block-gallery {
  margin: 50px -18.5% 50px -20%;
  width: 138.5% !important;
}

@media (max-width: 1280px) {
  .wp-block-gallery {
    width: 134% !important;
    margin: 50px -17% 50px -17%;
  }
}

@media (max-width: 1024px) {
  .wp-block-gallery {
    width: 100% !important;
    margin: 50px 0 50px 0;
  }
}

.wp-block-gallery.is-layout-flex {
  gap: 50px !important;
}

.wp-block-gallery.is-layout-flex,
.wp-block-gallery.wp-block-gallery-is-layout-flex {
  display: block !important;
  column-gap: 50px !important;
}

.wp-block-gallery.is-layout-flex > figure,
.wp-block-gallery.wp-block-gallery-is-layout-flex > figure {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 50px 0 !important;
  padding: 0 !important;
  break-inside: avoid;
}

.wp-block-gallery.columns-2 {
  column-count: 2;
}

.wp-block-gallery.columns-3 {
  column-count: 3;
}

.wp-block-gallery.columns-4 {
  column-count: 4;
}

.wp-block-gallery.columns-5 {
  column-count: 5;
}

.wp-block-gallery.columns-6 {
  column-count: 6;
}

.wp-block-gallery.columns-7 {
  column-count: 7;
}

.wp-block-gallery.columns-8 {
  column-count: 8;
}

.wp-block-gallery.columns-9 {
  column-count: 9;
}

.wp-block-gallery.is-layout-flex img,
.wp-block-gallery.wp-block-gallery-is-layout-flex img {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.wp-block-gallery > figure {
  position: relative;
}

.wp-block-gallery > figure > figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  padding: 20px;
  background: #af1531 !important;
  color: white;
  opacity: 0;
  z-index: 10;
  display: block;
  transition: opacity .3s, transform .3s;
}

.wp-block-gallery > figure:hover > figcaption {
  opacity: 1;
  transform: translate(15px, 15px);
}

@media (max-width: 640px) {
  .wp-block-gallery > figure:hover > figcaption {
    transform: translate(0px, 0px);
  }
}

.wp-block-gallery figcaption {
  font-size: 20px !important;
  text-shadow: none !important;
  text-align: left !important;
}

@media (max-width: 1280px) {
  .wp-block-gallery figcaption {
    font-size: 18px !important;
  }
}

@media (max-width: 1440px) {
  .wp-block-gallery.columns-9,
  .wp-block-gallery.columns-8,
  .wp-block-gallery.columns-7,
  .wp-block-gallery.columns-6,
  .wp-block-gallery.columns-5,
  .wp-block-gallery.columns-4 {
    column-count: 4 !important;
  }
}

@media (max-width: 1280px) {
  .wp-block-gallery.columns-9,
  .wp-block-gallery.columns-8,
  .wp-block-gallery.columns-7,
  .wp-block-gallery.columns-6,
  .wp-block-gallery.columns-5,
  .wp-block-gallery.columns-4,
  .wp-block-gallery.columns-3 {
    column-count: 3 !important;
  }
}

@media (max-width: 1024px) {
  .wp-block-gallery.columns-9,
  .wp-block-gallery.columns-8,
  .wp-block-gallery.columns-7,
  .wp-block-gallery.columns-6,
  .wp-block-gallery.columns-5,
  .wp-block-gallery.columns-4,
  .wp-block-gallery.columns-3 {
    column-count: 2 !important;
  }
}

@media (max-width: 600px) {
  .wp-block-gallery.columns-9,
  .wp-block-gallery.columns-8,
  .wp-block-gallery.columns-7,
  .wp-block-gallery.columns-6,
  .wp-block-gallery.columns-5,
  .wp-block-gallery.columns-4,
  .wp-block-gallery.columns-3,
  .wp-block-gallery.columns-2 {
    column-count: 1 !important;
  }
}

.aligncenter {
  margin: 50px auto;
  box-shadow: 0 0 45px #b4b4b4;
  width: 100%;
  display: block;
}

.alignleft {
  float: left;
  margin: 50px 50px 50px -20%;
  width: 70%;
  box-shadow: 0 0 45px #b4b4b4;
}

@media (max-width: 1280px) {
  .alignleft {
    margin: 50px 50px 50px -17%;
  }
}

@media (max-width: 1024px) {
  .alignleft {
    margin: 50px 50px 50px 0;
    width: 50%;
    box-shadow: 0 0 25px #b4b4b4;
  }
}

@media (max-width: 768px) {
  .alignleft {
    margin: 10px 10px 10px 0;
    width: 60%;
  }
}

.alignright {
  float: right;
  margin: 50px -17% 50px 50px;
  width: 70%;
  box-shadow: 0 0 45px #b4b4b4;
}

@media (max-width: 1280px) {
  .alignright {
    margin: 50px -17% 50px 50px;
  }
}

@media (max-width: 1024px) {
  .alignright {
    margin: 50px 0 50px 50px;
    width: 50%;
    box-shadow: 0 0 25px #b4b4b4;
  }
}

@media (max-width: 768px) {
  .alignright {
    margin: 10px 0 10px 10px;
    width: 60%;
  }
}

.alignnone {
  margin: 50px -17% 50px -17%;
  display: block;
  box-shadow: 0 0 45px #b4b4b4;
  min-width: 134%;
}

@media (max-width: 1024px) {
  .alignnone {
    box-shadow: 0 0 25px #b4b4b4;
    margin: 50px 0 50px 0;
    min-width: 100%;
  }
}

blockquote, q {
  clear: both;
  position: relative;
  border: 1px solid #af1531;
  width: 70%;
  margin: 50px auto 50px auto;
  padding: 4% 5% 2% 5%;
  text-align: center;
}

@media (max-width: 640px) {
  blockquote, q {
    padding: 12% 5% 8% 5%;
    width: 90%;
  }
}

blockquote:after, q:after {
  content: '"';
  color: #af1531;
  position: absolute;
  text-align: center;
  top: -15px;
  left: 46%;
  margin: 0px auto 0px auto;
  background: white;
  height: 50px;
  width: 65px;
}

@media (max-width: 640px) {
  blockquote:after, q:after {
    left: 41%;
  }
}

blockquote footer, q footer {
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0px 0px 0;
}

blockquote footer:after, blockquote footer:before, q footer:after, q footer:before {
  content: " ― ";
  margin: 10px 10px 10px 10px;
}

.wp-block-pullquote blockquote {
  margin: 0 auto;
  width: 90%;
  border: none;
  background: var(--wp--custom--accordion-bg, var(--wp--preset--color--background));
  color: var(--wp--custom--accordion-color, var(--wp--preset--color--foreground));
  font-size: inherit;
  padding: 10px;
}

.wp-block-pullquote blockquote:after {
  content: '"';
  background: none;
  color: var(--wp--custom--accordion-color, var(--wp--preset--color--foreground));
  top: -50px;
}

.recent-post-con {
  min-height: 90px;
  padding: 20px 0 0 0;
}

@media (max-width: 1024px) {
  .recent-post-con {
    padding: 20px 0 0 0;
  }
}

.recent-post-line {
  margin: 10px 0 10px 0;
  border-bottom: 1px solid #c8c8c8;
}

.recent-post-thumb {
  float: left;
  width: 20%;
  display: flex;
  justify-content: middle;
  align-items: middle;
}

.recent-post-thumb img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100px;
  max-width: 100px;
}

@media (max-width: 640px) {
  .recent-post-thumb {
    width: 26%;
    justify-content: center;
    align-items: center;
  }
}

.recent-post-thumb-small img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 75px;
  max-width: 75px;
}

.recent-post-text {
  float: left;
  width: 74%;
  margin: 0 0 5% 5%;
}

.recent-post-text a {
  color: #464646;
}

.recent-post-text a:hover {
  color: #af1531;
}

@media (max-width: 640px) {
  .recent-post-text {
    width: 68%;
  }
}

h3.recent-post-datum {
  margin: -2% 0 3% 0;
  color: #828282;
}

b {
  color: #af1531;
}

p {
  margin: 25px 0 25px 0;
  line-height: 30px;
  font-size: inherit;
}

@media (max-width: 1280px) {
  p {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  p {
    font-size: 16px;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #af1531;
}

hr,
.line,
hr.wp-block-separator {
  border: none;
  border-bottom: 1px solid #af1531;
  margin: 32px 0;
}

.wp-block-button .wp-block-button__link {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.wp-block-columns {
  display: flex;
  gap: 100px;
  margin: 32px 0;
}

@media (max-width: 1280px) {
  .wp-block-columns {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .wp-block-columns {
    gap: 35px;
  }
}

.wp-block-column {
  flex: 1;
}

.wp-block-table table {
  border: none;
  border-collapse: collapse;
  background: transparent;
}

.wp-block-table thead,
.wp-block-table tfoot {
  border: none !important;
}

.wp-block-table thead th {
  background: rgba(0, 0, 0, 0.15);
  color: var(--wp--preset--color--contrast);
  padding: 0.75em;
  font-weight: 600;
  border-bottom: 3px solid #f0f0f0;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.075) !important;
}

.wp-block-table tfoot th,
.wp-block-table tfoot td {
  background: rgba(0, 0, 0, 0.15);
  color: var(--wp--preset--color--contrast);
  padding: 0.75em;
  font-weight: 600;
  border-top: 3px solid #f0f0f0;
  border-bottom: 0px;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.75em;
  background: transparent;
  border: none;
  border-bottom: 1px solid #f0f0f0;
}

.wp-block-table tbody tr:last-child td {
  border-bottom: none;
}

.wp-block-table.has-background td,
.wp-block-table.has-background th,
.wp-block-table.has-background thead th,
.wp-block-table.has-background tfoot th,
.wp-block-table.has-background tfoot td,
.wp-block-table.has-background tbody tr:nth-child(even) {
  background: inherit;
}

.wp-block-media-text {
  margin: 0 0 50px 0;
}

.fahrzeuge {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 50px 30px;
  margin: 60px 0 100px 0;
  align-items: stretch;
}

@media (max-width: 1920px) {
  .fahrzeuge {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1600px) {
  .fahrzeuge {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .fahrzeuge {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .fahrzeuge {
    grid-template-columns: 1fr;
  }
}

.fahrzeug-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.fahrzeuge-con-inner {
  flex: 1 0 auto;
  overflow: hidden;
  background: white;
  border: 1px solid #f0f0f0;
  border-bottom: 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.fahrzeuge-bild {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f0f0;
}

.fahrzeuge-bild a {
  display: block;
  width: 100%;
  height: 100%;
}

.fahrzeuge-bild img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.fahrzeug-item:hover .fahrzeuge-bild img {
  transform: scale(1.04);
}

.fahrzeuge-inhalte {
  padding: 24px;
}

.fahrzeuge-kuerzel {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 7px 15px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  color: white;
  border-radius: 5px;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.fahrzeuge-post-title {
  margin: 0 0 22px;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .fahrzeuge-post-title {
    min-height: 100%;
  }
}

.fahrzeuge-details {
  display: flex;
  flex-direction: column;
  margin-top: 2px;
}

.fahrzeuge-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0 12px 13px;
  border-top: 1px solid #c8c8c8;
}

.fahrzeuge-detail:last-child {
  border-bottom: 0;
}

.fahrzeuge-detail:first-child {
  border-top: 0;
}

.fahrzeuge-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0 12px 0px;
  border-top: 1px solid #c8c8c8;
}

.fahrzeuge-detail:last-child {
  border-bottom: 0;
}

.fahrzeuge-detail:first-child {
  border-top: 0;
}

.fahrzeuge-detail-label {
  display: block;
  color: #af1531;
  margin-bottom: 4px;
}

.fahrzeuge-detail-value {
  display: block;
  line-height: 1.35;
}

.fzg-details-con {
  padding: 5% 8% 0% 8%;
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
  position: relative;
}

@media (max-width: 1280px) {
  .fzg-details-con {
    padding: 5% 3% 0% 3%;
  }
}

@media (max-width: 1024px) {
  .fzg-details-con {
    padding: 150px 3% 0% 3%;
  }
}

.fzg-details-con-inner {
  flex: 0 0 44.5%;
  padding: 0 5% 0% 0%;
}

@media (max-width: 1024px) {
  .fzg-details-con-inner {
    flex: 0 0 100%;
    order: 1;
  }
}

.fzg-details-con-beschreibung {
  flex: 0 0 50%;
  padding: 0 0% 0% 0;
}

@media (max-width: 1024px) {
  .fzg-details-con-beschreibung {
    flex: 0 0 100%;
    padding: 0 0 50px 0;
  }
}

.fzg-details-top {
  float: left;
  width: 90%;
  margin-right: -100%;
  margin-top: 75px;
  position: relative;
  z-index: 1;
  background: #f0f0f0;
  padding: 5% 3% 5% 3%;
}

.fzg-details-bottom {
  float: right;
  width: 90%;
  height: auto;
  min-height: 200px;
  background: #af1531;
  padding: 15px 30px;
}

@media (max-width: 1920px) {
  .fzg-details-bottom {
    width: 80%;
    min-height: 200px;
  }
}

.fzg-details-bottom-title {
  margin-top: 0px;
}

.fzg-beschreibung-title {
  width: 100%;
  margin: 0 0 5% 0;
}

@media (max-width: 1100px) {
  .fzg-beschreibung-title {
    left: 3%;
  }
}

.fzg-beschreibung-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .fzg-beschreibung-title:after {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .fzg-beschreibung-title {
    margin: 0 0 50px 0;
  }
}

.fzg-recent-post-con {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
}

@media (max-width: 1600px) {
  .fzg-recent-post-con {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fzg-recent-post-con {
    grid-template-columns: repeat(1, 1fr);
  }
}

.fzg-recent-post-text {
  padding: 15px 0 15px 0;
  border-bottom: 1px solid #ccc;
}

.fzg-recent-post-text a {
  color: #464646;
}

.fzg-recent-post-text a:hover {
  color: #af1531;
}

.fzg-recent-post-text:nth-last-child(-n + 3) {
  border-bottom: none;
}

@media (max-width: 1600px) {
  .fzg-recent-post-text:nth-last-child(-n + 3) {
    border-bottom: 1px solid #ccc;
  }
  .fzg-recent-post-text:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .fzg-recent-post-text:nth-child(4) {
    display: none;
  }
  .fzg-recent-post-text:nth-child(5) {
    display: none;
  }
  .fzg-recent-post-text:nth-child(6) {
    display: none;
  }
  .fzg-recent-post-text:nth-child(3) {
    border-bottom: none;
  }
}

h3.fzg-recent-post-datum {
  margin: 0 0 10px 0;
  color: #828282;
}

@media (max-width: 640px) {
  h3.fzg-recent-post-datum {
    margin: 0;
  }
}

.fzg-infos-con {
  position: relative;
  clear: both;
  width: 83%;
  padding: 0 8% 0 8%;
}

@media (max-width: 1280px) {
  .fzg-infos-con {
    width: 94%;
    padding: 0 3% 0% 3%;
  }
}

.fzg-infos-con-inner {
  float: left;
  width: 48%;
}

@media (max-width: 1024px) {
  .fzg-infos-con-inner {
    width: 100%;
  }
}

.fzg-infos-text-hg {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -5;
  background: url("img/FFA_Flamme_Hellgrau.svg");
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .fzg-infos-text-hg {
    left: -25%;
    top: -15%;
  }
}

.fzg-infos-con-title {
  width: 100%;
  line-height: 50px;
}

.fzg-infos-con-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .fzg-infos-con-title:after {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .fzg-infos-con-title {
    margin: 0 0 50px 0;
  }
}

.fzg-info-con-text {
  margin: 8% 0 8% 0;
}

.fzg-infos-single-con {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

@media (max-width: 1600px) {
  .fzg-infos-single-con {
    flex-wrap: wrap;
  }
}

/*
 * Fahrzeug Detail-Box
 */
.fzg-infos-single-detail {
  flex: 1;
  background: white;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

@media (max-width: 1600px) {
  .fzg-infos-single-detail {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 900px) {
  .fzg-infos-single-detail {
    flex: 0 0 100%;
  }
}

.fzg-infos-single-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fzg-infos-head {
  padding: 20px 5%;
  background: #af1531;
  border-bottom: 0;
  color: white;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.fzg-infos-single-detail {
  flex: 1;
  background: white;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

@media (max-width: 1600px) {
  .fzg-infos-single-detail {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 900px) {
  .fzg-infos-single-detail {
    flex: 0 0 100%;
  }
}

.fzg-infos-single-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fzg-infos-head {
  padding: 20px 5%;
  background: #af1531;
  color: white;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.fzg-info-table {
  display: flex;
  flex-direction: column;
  padding: 2% 5%;
}

.fzg-info-table-row {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 16px 0 16px 0px;
  border-top: 1px solid #e6e6e6;
}

.fzg-info-table-row:first-child {
  border-top: 0;
}

.fzg-info-table-cell {
  padding: 0;
}

.fzg-info-table-cell:first-child {
  margin-bottom: 4px;
}

.fzg-info-table-cell:nth-child(2) {
  line-height: 1.4;
  text-align: left;
}

.fzg-info-table-row:last-child {
  padding-bottom: 8px;
}

.fzg-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 4%;
}

.fzg-info-list li {
  padding: 2%;
  border-bottom: 1px solid #e6e6e6;
}

.fzg-info-list li:last-child {
  border-bottom: none;
}

.fzg-info-bilder-beladung-con {
  position: relative;
  clear: both;
  width: 83%;
  padding: 0 8% 2% 8%;
}

@media (max-width: 1280px) {
  .fzg-info-bilder-beladung-con {
    width: 94%;
    padding: 0 3% 0% 3%;
  }
}

.uebercon_abteilung {
  width: 49%;
  margin: 2% 2% 5% 0;
}

@media (max-width: 1024px) {
  .uebercon_abteilung {
    width: 100%;
    margin: 2% 2% 50px 0;
  }
}

.abteilungen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 175px 100px;
  margin: 0 0 50px 0;
}

.abteilungen .abteilung-con {
  position: relative;
  height: 250px;
}

@media (max-width: 1024px) {
  .abteilungen .abteilung-con {
    height: auto;
  }
}

@media (max-width: 640px) {
  .abteilungen {
    grid-template-columns: 1fr;
    gap: 50px 0px;
  }
  .abteilungen .abteilung-con {
    height: auto;
  }
}

.abteilung-title {
  clear: both;
}

.abteilung-con-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 250px;
}

@media (max-width: 1024px) {
  .abteilung-con-inner {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}

@media (max-width: 640px) {
  .abteilung-con-inner {
    height: 100%;
  }
}

.abteilung-bild {
  position: absolute;
  width: 45%;
  z-index: 2;
}

@media (max-width: 1024px) {
  .abteilung-bild {
    position: relative;
    width: 85%;
    margin: 0 auto;
  }
}

.abteilung-inhalte {
  position: absolute;
  z-index: 0;
  width: 48%;
  left: 35%;
  padding: 1% 2% 2% 15%;
  height: 250px;
  display: table;
  box-shadow: 10px 10px 30px #f0f0f0, -10px -10px 30px #fafafa;
}

@media (max-width: 1024px) {
  .abteilung-inhalte {
    position: relative;
    left: 0;
    width: auto;
    text-align: center;
    padding: 100px 10px 25px 10px;
    top: -85px;
  }
}

@media (max-width: 640px) {
  .abteilung-inhalte {
    height: auto;
  }
}

.abteilung-text {
  display: table-cell;
  vertical-align: middle;
}

.abteilung-con ul {
  color: #828282;
  list-style-type: none;
  margin: 10px 0 10px -40px;
}

.abteilung-con ul li {
  margin: 0 0 -5px 0;
}

.abteilung-con ul li:last-child {
  margin: 0;
}

.abteilung-details-con,
.jugend-details-con {
  padding: 0% 8% 0% 8%;
  position: relative;
  z-index: 10;
}

@media (max-width: 1280px) {
  .abteilung-details-con,
  .jugend-details-con {
    padding: 0% 3% 0% 3%;
  }
}

.abteilung-details-con-inner,
.jugend-details-con-inner {
  float: left;
  width: 44.5%;
  padding: 0 5% 0% 0%;
}

@media (max-width: 1024px) {
  .abteilung-details-con-inner,
  .jugend-details-con-inner {
    width: 100%;
    margin: 50px 0 0 0;
  }
}

.abteilung-details-con-beschreibung,
.jugend-details-con-beschreibung {
  float: left;
  width: 50%;
  padding: 0;
}

@media (max-width: 1024px) {
  .abteilung-details-con-beschreibung,
  .jugend-details-con-beschreibung {
    width: 100%;
    padding: 50px 0% 0% 0%;
  }
}

.abteilung-details-con-beschreibung p,
.jugend-details-con-beschreibung p {
  margin: 0;
}

.abteilung-details-top,
.jugend-details-top {
  float: left;
  width: 90%;
  margin-right: -100%;
  margin-top: 75px;
  position: relative;
  z-index: 1;
  background: #f0f0f0;
  padding: 5% 3% 5% 3%;
}

@media (max-width: 350px) {
  .abteilung-details-top,
  .jugend-details-top {
    margin-top: 50px;
  }
}

.abteilung-details-bottom,
.jugend-details-bottom {
  float: right;
  width: 90%;
  height: auto;
  min-height: 200px;
  background: #af1531;
  padding: 15px 30px;
  color: white;
}

@media (max-width: 1920px) {
  .abteilung-details-bottom,
  .jugend-details-bottom {
    width: 80%;
    min-height: 400px;
  }
}

@media (max-width: 1024px) {
  .abteilung-details-bottom,
  .jugend-details-bottom {
    width: 70%;
    min-height: 400px;
  }
}

.abteilung-details-bottom-title,
.jugend-details-bottom-title {
  margin-top: 0px;
  color: white;
}

.abteilung-details-info-con,
.jugend-details-info-con {
  margin: 2%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
  row-gap: 50px;
  flex-wrap: wrap;
}

@media (max-width: 1920px) {
  .abteilung-details-info-con,
  .jugend-details-info-con {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .abteilung-details-info-con,
  .jugend-details-info-con {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .abteilung-details-info-con,
  .jugend-details-info-con {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .abteilung-details-info-con,
  .jugend-details-info-con {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    column-gap: 0;
    row-gap: 25px;
  }
}

.abteilung-details-info,
.jugend-details-info {
  display: flex;
  column-gap: 50px;
}

@media (max-width: 480px) {
  .abteilung-details-info,
  .jugend-details-info {
    flex-direction: column;
    align-items: center;
    column-gap: 0;
    width: 100%;
  }
}

.jugend-details-info:last-child {
  grid-column: 2 / -1;
}

.abteilung-details-info-icon,
.jugend-details-info-icon {
  margin: 0 0 20px 0;
  border-radius: 50%;
  background: #af1531;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .abteilung-details-info-icon,
  .jugend-details-info-icon {
    margin: 0 auto 20px auto;
  }
}

.abteilung-details-info-text,
.jugend-details-info-text {
  margin: 1%;
}

.abteilung-details-info-title,
.jugend-details-info-title {
  color: #af1531;
  margin: 0 0 35px 0;
}

.abteilung-details-info-title:after,
.jugend-details-info-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 50px;
}

@media (max-width: 480px) {
  .abteilung-details-info-title:after,
  .jugend-details-info-title:after {
    margin: 0 auto;
  }
}

ul.abteilung-details-infotexte,
ul.jugend-details-infotexte {
  list-style: none;
  margin: 0;
}

.abteilung-beschreibung-title,
.jugend-beschreibung-title,
.jugend-aktionen-title,
.jugend-abzeichen-title,
.jugend-faq-title,
.jugend-voraussetzungen-title {
  width: 100%;
  margin: 0 0 70px 0;
  line-height: 50px;
}

@media (max-width: 1100px) {
  .abteilung-beschreibung-title,
  .jugend-beschreibung-title,
  .jugend-aktionen-title,
  .jugend-abzeichen-title,
  .jugend-faq-title,
  .jugend-voraussetzungen-title {
    left: 3%;
  }
}

.abteilung-beschreibung-title:after,
.jugend-beschreibung-title:after,
.jugend-aktionen-title:after,
.jugend-abzeichen-title:after,
.jugend-faq-title:after,
.jugend-voraussetzungen-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .abteilung-beschreibung-title:after,
  .jugend-beschreibung-title:after,
  .jugend-aktionen-title:after,
  .jugend-abzeichen-title:after,
  .jugend-faq-title:after,
  .jugend-voraussetzungen-title:after {
    margin: 0 auto;
  }
}

.jugend-acc-title {
  margin: 0% 0 2% 0;
}

.jugend-allgm-con {
  padding: 0% 8% 0% 8%;
}

@media (max-width: 1280px) {
  .jugend-allgm-con {
    padding: 0% 3% 0% 3%;
  }
}

.jugend-faq-con {
  padding: 0% 8% 0% 8%;
}

@media (max-width: 1920px) {
  .jugend-faq-con {
    padding: 8% 8% 0% 8%;
  }
}

@media (max-width: 1280px) {
  .jugend-faq-con {
    padding: 0% 3% 0% 3%;
  }
}

.jugend-allgm-beschreibung-con-inner,
.jugend-faq-beschreibung-con-inner {
  float: left;
  width: 44.5%;
  padding: 0 5% 0% 0%;
}

.jugend-allgm-accord-con-inner,
.jugend-faq-accord-con-inner {
  float: left;
  width: 49.25%;
  margin: 1% 0% 0% 0;
  box-shadow: 0 0 25px #c8c8c8;
}

@media (max-width: 1920px) {
  .jugend-allgm-accord-con-inner,
  .jugend-faq-accord-con-inner {
    margin: 2% 0% 0% 0;
  }
}

.jugend-allgm-text-hg,
.jugend-faq-text-hg {
  content: "";
  position: absolute;
  margin: -10% 0% 0% 0;
  left: -10%;
  width: 70%;
  height: 70%;
  z-index: -5;
  background: url("img/FFA_Flamme_Hellgrau.svg");
  background-repeat: no-repeat;
}

.abteilung-count-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  column-gap: 20px;
}

@media (max-width: 768px) {
  .abteilung-count-container {
    grid-template-columns: repeat(2, 1fr) !important;
    row-gap: 50px;
  }
}

@media (max-width: 640px) {
  .abteilung-count-container {
    grid-template-columns: repeat(1, 1fr) !important;
    row-gap: 50px;
  }
}

.abteilung-count-einsaetze-con {
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  padding: 100px;
}

@media (max-width: 1440px) {
  .abteilung-count-einsaetze-con {
    padding: 50px;
  }
}

.abteilung-count-element-inner {
  padding: 0%;
}

.abteilung-counter-zahl {
  width: 100%;
  color: #af1531;
  line-height: 75px;
}

.abteilung-counter-title {
  margin: 25px 0 0 0;
}

.jfw-trenner-con {
  position: relative;
  clear: both;
  width: 100%;
  height: 500px;
}

@media (max-width: 1024px) {
  .jfw-trenner-con {
    height: 400px;
  }
}

@media (max-width: 640px) {
  .jfw-trenner-con {
    height: 450px;
  }
}

.jfw-trenner-text-hg {
  float: left;
  width: 28.75%;
  height: 100%;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  margin: 0 0 0 0;
}

@media (max-width: 1280px) {
  .jfw-trenner-text-hg {
    width: 26.5%;
  }
}

@media (max-width: 1024px) {
  .jfw-trenner-text-hg {
    display: none;
  }
}

.jfw-trenner-bild-con {
  float: left;
  width: 71.25%;
  height: 100%;
  margin: 0 0 0 0;
}

@media (max-width: 1280px) {
  .jfw-trenner-bild-con {
    width: 73.5%;
  }
}

@media (max-width: 1024px) {
  .jfw-trenner-bild-con {
    width: 100%;
    background: #f1c934;
    background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
    background: linear-gradient(-45deg, #f1c934, #af1531);
  }
}

.jfw-trenner-bild {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  height: 100%;
}

@media (max-width: 1024px) {
  .jfw-trenner-bild {
    opacity: 0.5;
  }
}

.jfw-trenner-text-con {
  position: absolute;
  left: 8%;
  z-index: 5;
}

@media (max-width: 1280px) {
  .jfw-trenner-text-con {
    left: 3%;
  }
}

@media (max-width: 1024px) {
  .jfw-trenner-text-con {
    top: 3%;
    left: 3%;
    right: 3%;
    text-align: center;
  }
}

.jfw-trenner-title {
  width: 50%;
  margin: 4% 0 2% 0;
  color: white;
  text-shadow: 1px 2px 2px black;
}

@media (max-width: 1920px) {
  .jfw-trenner-title {
    width: 75%;
    margin: 6% 0 2% 0;
  }
}

@media (max-width: 1440px) {
  .jfw-trenner-title {
    width: 50%;
  }
}

@media (max-width: 1280px) {
  .jfw-trenner-title {
    width: 65%;
  }
}

@media (max-width: 1024px) {
  .jfw-trenner-title {
    width: 100%;
    color: white;
    text-shadow: 1px 1px 2px black;
  }
}

.abteilung-mannschaft-container {
  position: relative;
  clear: both;
  width: 84%;
  padding: 0 8% 0 8%;
}

@media (max-width: 1280px) {
  .abteilung-mannschaft-container {
    padding: 0% 3% 0% 3%;
    width: 94%;
  }
}

.abteilung-mannschaft-text-hg {
  content: "";
  position: absolute;
  top: -25%;
  left: -10%;
  width: 150%;
  height: 150%;
  opacity: 0.5;
  z-index: -5;
  background: url("img/FFA_Flamme_Hellgrau.svg");
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .abteilung-mannschaft-text-hg {
    left: -25%;
    top: -15%;
  }
}

.abteilung-mannschaft-text-con {
  float: left;
  width: 44.5%;
  padding: 0 5% 0 0%;
}

@media (max-width: 1024px) {
  .abteilung-mannschaft-text-con {
    width: 100%;
  }
}

.abteilung-mannschaft-mannschaft-con {
  float: left;
  width: 50%;
  margin: 1% 0 0 0;
}

@media (max-width: 1024px) {
  .abteilung-mannschaft-mannschaft-con {
    width: 100%;
  }
}

.abteilung-mannschaft-text {
  width: 100%;
}

@media (max-width: 1100px) {
  .abteilung-mannschaft-text {
    width: 100%;
  }
}

.abteilung-mannschaft-text p {
  margin: 0;
}

.abteilung-mannschaft-stand-personal {
  margin: 2% 0 0 0;
}

@media (max-width: 1024px) {
  .abteilung-mannschaft-stand-personal {
    margin: 5% 0 5% 0;
  }
}

.abteilung-mannschaft-title {
  width: 100%;
  margin: 0 0 70px 0;
}

.abteilung-mannschaft-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .abteilung-mannschaft-title:after {
    margin: 0 auto;
  }
}

.abteilung-mannschaft-mannschaft {
  display: flex;
  gap: 20px;
}

@media (max-width: 640px) {
  .abteilung-mannschaft-mannschaft {
    display: block;
    margin: 20px 0 0 0;
  }
}

.abteilung-mannschaft-element {
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 640px) {
  .abteilung-mannschaft-element {
    display: block;
    margin-bottom: 20px;
  }
}

.abteilung-mannschaft-element-inner {
  flex: 1;
  padding: 25px;
  background: #f0f0f0;
  border: 1px solid #c8c8c8;
}

@media (max-width: 640px) {
  .abteilung-mannschaft-element-inner {
    flex: none;
  }
}

.abteilung-mannschaft-element-zahl,
.abteilung-mannschaft-element-text {
  margin: 25px 0 25px 0;
}

.jfw-acc-inner-con {
  padding: 50px;
}

.jfw-acc-inner-con-text {
  float: left;
  width: 55%;
  margin: 0 5% 3% 0;
}

.jfw-acc-inner-con-image {
  float: left;
  width: 40%;
  margin: 2% 0 0 0;
}

.jfw-acc-inner-con-image img {
  margin: 0 0 50px 0;
}

.jfw-abzeichen-con {
  position: relative;
  clear: both;
  width: 83%;
  padding: 2% 9% 2% 8%;
}

@media (max-width: 1280px) {
  .jfw-abzeichen-con {
    width: 94%;
    padding: 0 3% 0% 3%;
  }
}

.jfw-abzeichen-con-inner {
  float: left;
  width: 48%;
}

.jfw-abzeichen-text-hg {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 60%;
  height: 60%;
  opacity: 0.5;
  z-index: -5;
  background: url("img/FFA_Flamme_Hellgrau.svg");
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .jfw-abzeichen-text-hg {
    left: -25%;
    top: -15%;
  }
}

.jfw-abzeichen-grid-con {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 4% 0 0 0;
}

@media (max-width: 1440px) {
  .jfw-abzeichen-grid-con {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jfw-abzeichen-con-details {
  padding: 0;
}

.jfw-abzeichen-con-inner-details {
  height: 100%;
  background: white;
  border: 1px solid #e6e6e6;
  box-shadow: 0 0 25px #e6e6e6;
}

.jfw-abzeichen-head {
  padding: 2% 5% 2% 5%;
  border-bottom: 1px solid #e6e6e6;
  background: #af1531;
}

@media (max-width: 1920px) {
  .jfw-abzeichen-head {
    min-height: 120px;
  }
}

@media (max-width: 1440px) {
  .jfw-abzeichen-head {
    min-height: auto;
  }
}

.jfw-abzeichen-image {
  padding: 2% 0% 2% 0;
  border-bottom: 1px solid #e6e6e6;
}

.jfw-abzeichen-image img {
  width: 100%;
  max-height: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.jfw-abzeichen-beschreibung-info {
  padding: 2% 5% 4% 5%;
  border-bottom: 1px solid #e6e6e6;
  background: #fafafa;
}

.jfw-abzeichen-beschreibung-info p {
  margin: 0;
  padding: 0;
}

.jfw-abzeichen-beschreibung {
  padding: 2% 5% 2% 5%;
}

.jfw-abzeichen-beschreibung p {
  margin: 0;
  padding: 0;
}

.jfw-abzeichen-beschreibung ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.jfw-abzeichen-beschreibung ul li {
  position: relative;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.jfw-abzeichen-beschreibung ul li:before {
  content: "\e930";
  font-family: "icomoon";
  padding: 3px 10px 0 0;
  color: #af1531;
  font-weight: bold;
}

.jfw-abzeichen-beschreibung-headline {
  font-size: 20px;
  text-transform: uppercase;
  margin: 10px 0 -5px 0;
  color: #af1531;
}

.jfw-abzeichen-trennlinie {
  border-top: 1px solid #e6e6e6;
  margin: 15px 0 15px 0;
}

.jfw-voraussetzungen-con {
  position: relative;
  clear: both;
  width: 83%;
  padding: 2% 9% 2% 8%;
}

.jfw-voraussetzungen-beschreibung-con-inner {
  float: left;
  width: 20%;
  padding: 0 5% 0% 0%;
}

.jfw-voraussetzungen-con-inner {
  float: left;
  width: 75%;
  margin: 1% 0% 0% 0;
  flex-wrap: nowrap;
  gap: 20px;
}

@media (max-width: 1920px) {
  .jfw-voraussetzungen-con-inner {
    margin: 2% 0% 0% 0;
  }
}

.jfw-voraussetzungen-single {
  color: white;
  background: #464646;
  padding: 2%;
}

.jfw-voraussetzungen-single-num {
  color: #464646;
  background: #f1c934;
  padding: 5%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jfw-voraussetzungen-single-head {
  margin: 50px 0 0 0;
  color: #f1c934;
}

.jfw-voraussetzungen-single-text {
  margin: 10px 0 0 0;
}

.jfw-voraussetzungen-text-hg {
  content: "";
  position: absolute;
  top: -25%;
  left: -10%;
  width: 150%;
  height: 150%;
  opacity: 1;
  z-index: -5;
  background: url("img/FFA_Flamme_Hellgrau.svg");
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .jfw-voraussetzungen-text-hg {
    left: -25%;
    top: -15%;
  }
}

.abteilung-ghaus-con {
  padding: 0% 8% 0 8%;
}

@media (max-width: 1280px) {
  .abteilung-ghaus-con {
    padding: 0% 3% 0% 3%;
  }
}

.abteilung-ghaus-con-inner {
  float: left;
  width: 44.5%;
  padding: 0 5% 0% 0%;
}

@media (max-width: 1280px) {
  .abteilung-ghaus-con-inner {
    width: 100%;
  }
}

@media (max-width: 1280px) {
  .abteilung-ghaus-con-inner {
    margin: 0 0 50px 0;
  }
}

.abteilung-ghaus-con-beschreibung {
  float: left;
  width: 49.5%;
  padding: 0 0% 0% 0;
}

@media (max-width: 1280px) {
  .abteilung-ghaus-con-beschreibung {
    width: 100%;
  }
}

.abteilung-ghaus-con-beschreibung p {
  margin: 0;
}

img.abteilung-ghaus-top {
  width: 100%;
  height: auto;
}

.abteilung-ghaus-title {
  width: 100%;
  margin: 0 0 70px 0;
  line-height: 50px;
}

@media (max-width: 1100px) {
  .abteilung-ghaus-title {
    left: 3%;
  }
}

.abteilung-ghaus-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .abteilung-ghaus-title:after {
    margin: 0 auto;
  }
}

.abteilung-ghaus-impr-con,
.jfw-impr-con {
  position: relative;
  width: 100%;
  margin: 5% 0% 10% 0%;
  padding: 100px 8% 100px 8%;
  background: #464646;
  max-height: 275px;
}

@media (max-width: 1920px) {
  .abteilung-ghaus-impr-con,
  .jfw-impr-con {
    margin: 8% 0% 10% 0%;
  }
}

@media (max-width: 1280px) {
  .abteilung-ghaus-impr-con,
  .jfw-impr-con {
    width: 101%;
    padding: 2% 3% 2% 3%;
    margin: 8% 0% 20% 0%;
  }
}

@media (max-width: 1024px) {
  .abteilung-ghaus-impr-con,
  .jfw-impr-con {
    margin: 0% 0% 150px 0%;
  }
}

.jfw-impr-con {
  background: #af1531;
}

/*
.slick-track {
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: translate3d(0, 0, 0) !important;
    justify-content: flex-start !important;
    display: flex !important;
    @include breakpoint(1024) {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
*/
.abteilung-ghaus-impr-title,
.jfw-impr-title {
  width: 100%;
  line-height: 50px;
}

.abteilung-ghaus-impr-title:after,
.jfw-impr-title:after {
  content: "";
  height: 3px;
  background: white;
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .abteilung-ghaus-impr-title:after,
  .jfw-impr-title:after {
    margin: 0 auto 70px auto;
  }
}

@media (max-width: 1024px) {
  .abteilung-ghaus-impr-title,
  .jfw-impr-title {
    margin-bottom: 50px;
  }
}

.abteilung-ghaus-impr-slider-con,
.jfw-impr-slider-con {
  width: 84%;
  margin: 3% 0% 7% 0%;
}

@media (max-width: 1280px) {
  .abteilung-ghaus-impr-slider-con,
  .jfw-impr-slider-con {
    width: 94%;
  }
}

.abteilung-ghaus-impr-slider-element-image,
.jfw-impr-slider-element-image {
  width: 100%;
  display: flex;
}

.abteilung-ghaus-impr-slider img,
.jfw-impr-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
  max-height: 450px;
}

@media (max-width: 1920px) {
  .abteilung-ghaus-impr-slider img,
  .jfw-impr-slider img {
    min-height: 325px;
    max-height: 325px;
  }
}

@media (max-width: 1024px) {
  .abteilung-ghaus-impr-slider img,
  .jfw-impr-slider img {
    min-height: 250px;
    max-height: 250px;
  }
}

.abt-slider-next,
.jfw-slider-next {
  top: -35%;
  right: 0px;
  height: 30px;
  width: 30px;
  padding: 1%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid #f0f0f0;
}

.abt-slider-next:hover,
.jfw-slider-next:hover {
  background: #c8c8c8;
}

@media (max-width: 1920px) {
  .abt-slider-next,
  .jfw-slider-next {
    top: -30%;
    right: 0px;
  }
}

@media (max-width: 1280px) {
  .abt-slider-next,
  .jfw-slider-next {
    right: 0px;
  }
}

.abt-slider-prev,
.jfw-slider-prev {
  top: -35%;
  right: 100px;
  height: 30px;
  width: 30px;
  padding: 1%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid #f0f0f0;
}

.abt-slider-prev:hover,
.jfw-slider-prev:hover {
  background: #c8c8c8;
}

@media (max-width: 1920px) {
  .abt-slider-prev,
  .jfw-slider-prev {
    top: -30%;
  }
}

@media (max-width: 1280px) {
  .abt-slider-prev,
  .jfw-slider-prev {
    right: 6%;
  }
}

@media (max-width: 1024px) {
  .abt-slider-prev,
  .jfw-slider-prev {
    left: 0px;
  }
}

.abteilung-fahrzeuge-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 650px;
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}

.abteilung-fahrzeuge-text-hg {
  content: "";
  position: absolute;
  top: -25%;
  left: -10%;
  width: 150%;
  height: 150%;
  opacity: 0.5;
  z-index: -5;
  background: url("img/FFA_Flamme_Hellgrau.svg");
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .abteilung-fahrzeuge-text-hg {
    left: -25%;
    top: -15%;
  }
}

.abteilung-fahrzeuge-title {
  margin: 0 0 70px 0;
}

.abteilung-fahrzeuge-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .abteilung-fahrzeuge-title:after {
    margin: 0 auto;
  }
}

@media (max-width: 1280px) {
  .abteilung-fahrzeuge-con {
    margin: 0 -1% 0 0;
  }
}

.abteilung-fahrzeuge-text-con {
  flex: 0 0 21.75%;
  margin: 0 0 0 0;
}

@media (max-width: 1280px) {
  .abteilung-fahrzeuge-text-con {
    flex-basis: 26.5%;
  }
}

@media (max-width: 1100px) {
  .abteilung-fahrzeuge-text-con {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .abteilung-fahrzeuge-text-con p {
    margin: 0;
  }
}

.abteilung-fahrzeuge-fahrzeuge-con {
  flex: 1;
  margin: 25px 0 0 0;
}

@media (max-width: 1100px) {
  .abteilung-fahrzeuge-fahrzeuge-con {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 25px;
  }
}

.abteilung-fahrzeuge-fahrzeuge {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1920px) {
  .abteilung-fahrzeuge-fahrzeuge {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1600px) {
  .abteilung-fahrzeuge-fahrzeuge {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .abteilung-fahrzeuge-fahrzeuge {
    grid-template-columns: repeat(1, 1fr);
  }
}

.abteilung-fahrzeuge-text {
  margin: 2% 0 4% 0;
}

.abt-fahrzeuge-con-inner {
  margin: 1% 1% 1% 1%;
  min-height: 275px;
  background: #f0f0f0;
}

.abt-fahrzeuge-bild {
  margin: 0;
  padding: 0;
  height: auto;
}

.abt-fahrzeuge-post-title {
  min-height: 60px;
  color: black;
}

.abt-fahrzeuge-inhalte {
  padding: 5px 15px 5px 15px;
  min-height: 220px;
}

.abt-fahrzeuge-tab-info {
  margin: 2% 0 2% 0;
  float: left;
  width: 40%;
}

@media (max-width: 1920px) {
  .abt-fahrzeuge-tab-info {
    letter-spacing: -0.4px;
  }
}

@media (max-width: 640px) {
  .abt-fahrzeuge-tab-info {
    width: 100%;
  }
}

.abt-fahrzeuge-tab-inhalt {
  margin: 2% 0 2% 0;
  float: left;
  width: 60%;
}

@media (max-width: 1920px) {
  .abt-fahrzeuge-tab-inhalt {
    letter-spacing: -0.4px;
  }
}

@media (max-width: 640px) {
  .abt-fahrzeuge-tab-inhalt {
    margin: 0 0 10px 0;
    width: 100%;
  }
}

.abt-fahrzeuge-line {
  clear: both;
  border-bottom: 1px solid #c8c8c8;
}

.abt-fahrzeuge-button {
  width: 94%;
  display: block;
  margin: 0 0 0 0;
}

.fgr-con {
  position: relative;
  float: left;
  height: 250px;
  width: 49%;
  margin: 2% 2% 5% 0;
}

.fgr-con:nth-child(2n+1) {
  margin: 2% 0 5% 0;
}

.fgr-title {
  clear: both;
}

.fgr-con-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 250px;
}

.fgr-bild {
  position: absolute;
  width: 45%;
  z-index: 2;
}

.fgr-inhalte {
  position: absolute;
  z-index: 0;
  width: 48%;
  left: 35%;
  padding: 1% 2% 2% 15%;
  height: 250px;
  display: table;
  box-shadow: 10px 10px 30px #f0f0f0, -10px -10px 30px #fafafa;
}

.fgr-text {
  display: table-cell;
  vertical-align: middle;
}

.fgr-con ul {
  color: #828282;
  list-style-type: none;
  margin: 10px 0 10px -40px;
}

.fgr-con ul li {
  margin: 0 0 -5px 0;
}

.fgr-con ul li:last-child {
  margin: 0 0 0 0;
}

.fgr-beschreibung {
  padding: 0 0 20px 0;
}

.uebercon_fgr {
  width: 49%;
  margin: 2% 2% 5% 0;
}

.fgr-details-con,
.ehren-details-con {
  position: relative;
  padding: 5% 8% 0% 8%;
  z-index: 10;
}

.fgr-details-con-inner,
.ehren-details-con-inner {
  float: left;
  width: 44.5%;
  padding: 0 5% 0% 0%;
}

.fgr-details-con-beschreibung,
.ehren-details-con-beschreibung {
  float: left;
  width: 50%;
  padding: 0 0% 0% 0;
}

.fgr-details-top,
.ehren-details-top {
  float: left;
  width: 90%;
  margin-right: -100%;
  margin-top: 75px;
  position: relative;
  z-index: 1;
  background: #f0f0f0;
  padding: 5% 3% 5% 3%;
}

.fgr-details-bottom,
.ehren-details-bottom {
  float: right;
  width: 90%;
  height: auto;
  min-height: 200px;
  background: #af1531;
  padding: 5px 30px;
  color: white;
}

@media (max-width: 1920px) {
  .fgr-details-bottom,
  .ehren-details-bottom {
    width: 80%;
    min-height: 400px;
  }
}

.fgr-details-info-con,
.ehren-details-info-con {
  margin: 2%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  column-gap: 50px;
  row-gap: 50px;
  flex-wrap: wrap;
}

@media (max-width: 1920px) {
  .fgr-details-info-con,
  .ehren-details-info-con {
    grid-template-columns: 1fr 1fr;
  }
}

.ehren-details-info-con {
  grid-template-columns: 1fr 1fr 1fr;
}

.fgr-details-info,
.ehren-details-info {
  display: flex;
  column-gap: 50px;
}

.fgr-details-info:last-child {
  grid-column: 1 / -1;
}

.fgr-details-info-icon,
.ehren-details-info-icon {
  margin: 0 0 20px 0;
  border-radius: 50%;
  background: #af1531;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fgr-details-info-text,
.ehren-details-info-text {
  margin: 1%;
}

.fgr-details-info-text ul,
.ehren-details-info-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px -5px;
}

.fgr-details-info-text ul li,
.ehren-details-info-text ul li {
  position: relative;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.fgr-details-info-text ul li:before,
.ehren-details-info-text ul li:before {
  content: "\e930";
  font-family: "icomoon";
  padding: 3px 10px 0 0;
  color: #af1531;
  font-weight: bold;
}

.fgr-details-info-title,
.ehren-details-info-title {
  color: #af1531;
  margin: 0 0 20px 0;
}

.fgr-details-info-title:after,
.ehren-details-info-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 50px;
}

ul.fgr-details-infotexte,
ul.ehren-details-infotexte {
  list-style: none;
  margin: 0;
}

.fgr-beschreibung-title,
.ehren-beschreibung-title {
  width: 100%;
  margin: 0 0 5% 0;
  line-height: 50px;
}

@media (max-width: 1100px) {
  .fgr-beschreibung-title,
  .ehren-beschreibung-title {
    left: 3%;
  }
}

.fgr-beschreibung-title:after,
.ehren-beschreibung-title:after {
  content: "";
  height: 3px;
  background: #f1c934;
  background: -webkit-linear-gradient(legacy-direction(-45deg), #f1c934, #af1531);
  background: linear-gradient(-45deg, #f1c934, #af1531);
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .fgr-beschreibung-title:after,
  .ehren-beschreibung-title:after {
    margin: 0 auto;
  }
}

.fgr-impr-con,
.ehren-impr-con {
  position: relative;
  width: 100%;
  margin: 5% 0% 10% 0%;
  padding: 100px 8% 100px 8%;
  background: #464646;
  max-height: 275px;
}

@media (max-width: 1920px) {
  .fgr-impr-con,
  .ehren-impr-con {
    margin: 8% 0% 10% 0%;
  }
}

@media (max-width: 1280px) {
  .fgr-impr-con,
  .ehren-impr-con {
    width: 101%;
    padding: 2% 3% 2% 3%;
    margin: 8% 0% 20% 0%;
  }
}

@media (max-width: 1024px) {
  .fgr-impr-con,
  .ehren-impr-con {
    margin: 0% 0% 150px 0%;
  }
}

.fgr-impr-con {
  background: #f1c934;
}

.ehren-impr-con {
  background: #af1531;
}

/*
.slick-track {
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: translate3d(0, 0, 0) !important;
    justify-content: flex-start !important;
    display: flex !important;
    @include breakpoint(1024) {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
*/
.fgr-impr-title,
.ehren-impr-title {
  width: 100%;
  line-height: 50px;
}

.fgr-impr-title:after,
.ehren-impr-title:after {
  content: "";
  height: 3px;
  background: white;
  display: block;
  position: relative;
  top: 13px;
  bottom: 15px;
  width: 100px;
}

@media (max-width: 1024px) {
  .fgr-impr-title:after,
  .ehren-impr-title:after {
    margin: 0 auto 70px auto;
  }
}

@media (max-width: 1024px) {
  .fgr-impr-title,
  .ehren-impr-title {
    margin-bottom: 50px;
  }
}

.ehren-impr-title {
  color: white;
}

.ehren-impr-title:after {
  background: white;
}

.fgr-impr-title {
  color: #464646;
}

.fgr-impr-title:after {
  background: #464646;
}

.fgr-impr-slider-con,
.ehren-impr-slider-con {
  width: 84%;
  margin: 3% 0% 7% 0%;
}

@media (max-width: 1280px) {
  .fgr-impr-slider-con,
  .ehren-impr-slider-con {
    width: 94%;
  }
}

.fgr-impr-slider-element-image,
.ehren-impr-slider-element-image {
  width: 100%;
  display: flex;
}

.fgr-impr-slider img,
.ehren-impr-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
  max-height: 450px;
}

@media (max-width: 1920px) {
  .fgr-impr-slider img,
  .ehren-impr-slider img {
    min-height: 325px;
    max-height: 325px;
  }
}

@media (max-width: 1024px) {
  .fgr-impr-slider img,
  .ehren-impr-slider img {
    min-height: 250px;
    max-height: 250px;
  }
}

.fgr-slider-next,
.ehren-slider-next {
  top: -45%;
  right: 31px;
  height: 30px;
  width: 30px;
  padding: 1%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 1920px) {
  .fgr-slider-next,
  .ehren-slider-next {
    top: -35%;
    right: 18px;
  }
}

.fgr-slider-prev,
.ehren-slider-prev {
  top: -45%;
  right: 6%;
  height: 30px;
  width: 30px;
  padding: 1%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 1920px) {
  .fgr-slider-prev,
  .ehren-slider-prev {
    top: -35%;
    right: 6%;
  }
}

.ehren-slider-prev,
.ehren-slider-next {
  color: white;
  border: 1px solid white;
}

.ehren-slider-prev:hover,
.ehren-slider-next:hover {
  background: white;
  border: 1px solid #af1531;
  color: #af1531;
}

.fgr-slider-prev,
.fgr-slider-next {
  color: #464646;
  border: 1px solid #464646;
}

.fgr-slider-prev:hover,
.fgr-slider-next:hover {
  background: #464646;
  border: 1px solid #f1c934;
  color: #f1c934;
}

.uebercon_logm {
  width: 49%;
  margin: 2% 2% 5% 0;
}

.logm-masonry {
  position: relative;
  margin: 50px 0 0 0;
}

/* Sizer definiert die Spaltenbreite */
.logm-sizer {
  width: calc((100% - 60px) / 3);
  /* 2×20px Gutter */
}

/* Items übernehmen die Sizer-Breite */
.logm-con {
  width: calc((100% - 60px) / 3);
  float: left;
  margin-bottom: 30px;
  box-sizing: border-box;
}

/* Jedes 3. Element: KEIN rechter Abstand */
.logm-con:nth-child(3n + 2) {
  margin-right: 0;
}

.logm-title {
  background: #af1531;
  color: white;
  padding: 10px 30px;
}

.logm-kat-title {
  color: #af1531;
}

.logm-con-inner {
  margin: 0 auto;
}

.logm-image {
  width: 100%;
  margin: 0;
  padding: 0;
}

.logm-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  max-width: 100%;
  /* WICHTIG */
}

.logm_beschreibung {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 0;
  /* Masonry Fix */
  box-sizing: border-box;
  padding: 10px 30px;
  background: white;
  border: 1px solid #e6e6e6;
}

.logm_beschreibung ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0%;
}

.logm_beschreibung ul li {
  padding: 2% 0 2% 0;
  border-bottom: 1px solid #e6e6e6;
}

.logm_beschreibung ul li:last-child {
  border-bottom: none;
}

/* Trennlinie */
.logm_beschreibung > div:first-child {
  padding-right: 20px;
  border-right: 1px solid #e6e6e6;
}

.logm_beschreibung > div:last-child {
  padding-left: 20px;
}

.uebercon_historie {
  width: 49%;
  margin: 2% 2% 5% 0;
}

.historie {
  position: relative;
}

.historie::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #464646;
  transform: translateX(-50%);
  z-index: 1;
}

/* Startpunkt oben */
.historie::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #464646;
  border-radius: 50%;
  z-index: 2;
}

/* Endpunkt unten */
.historie-endpunkt {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 18px;
  height: 18px;
  background: #464646;
  border-radius: 50%;
  z-index: 2;
}

.historie-item {
  width: 100%;
  position: relative;
  margin: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gleiche Höhe */
}

.historie-item.left {
  flex-direction: row;
  /* Content links, Bild rechts */
}

.historie-item.right {
  flex-direction: row-reverse;
  /* Content rechts, Bild links */
}

.historie-jahr-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: white;
  color: #af1531;
  padding: 8px 18px;
  border: 4px solid #af1531;
  border-radius: 10px;
  font-weight: 600;
}

.historie-jahr-box::before,
.historie-jahr-box::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: #af1531;
  z-index: -9999;
}

.historie-jahr-box::before {
  right: 100%;
  width: clamp(60px, 12vw, 200px);
}

.historie-jahr-box::after {
  left: 100%;
  width: clamp(60px, 12vw, 200px);
}

.historie-content {
  width: 44%;
  position: relative;
  margin-top: 0;
  /* gleiche Höhe wie Bild */
  z-index: 100;
}

.historie-title {
  background: #af1531;
  color: #fff;
  padding: 10px 20px;
  position: relative;
}

.historie-beschreibung {
  background: #f8f9fb;
  padding: 10px 20px;
}

.historie-image-box {
  width: 44%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 0;
  z-index: 100;
}

.historie-image-box img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* Abstand zur Mittellinie */
.historie-item.left .historie-image-box {
  margin-left: 100px;
  border-left: 4px solid #af1531;
}

.historie-item.right .historie-image-box {
  margin-right: 100px;
  border-right: 4px solid #af1531;
}

.historie-item.left .historie-content {
  margin-right: 100px;
  border-right: 4px solid #af1531;
}

.historie-item.right .historie-content {
  margin-left: 100px;
  border-left: 4px solid #af1531;
}

@media (max-width: 1024px) {
  .historie-item.left .historie-image-box,
  .historie-item.right .historie-image-box {
    margin-left: 100px;
    margin-right: 100px;
  }
  .historie-item.left .historie-content,
  .historie-item.right .historie-content {
    margin-left: 100px;
    margin-right: 100px;
  }
  .historie-content,
  .historie-image-box {
    width: 46%;
  }
  .historie-title {
    font-size: 20px;
    padding: 12px 16px;
  }
  .historie-beschreibung {
    padding: 18px 20px;
  }
}

@media (max-width: 768px) {
  .historie::before {
    left: 5px;
    background: #af1531;
    z-index: 1;
  }
  .historie-jahr-box {
    position: absolute;
    left: 50px;
    /* <<< MASTER-LINIE für ALLE Elemente */
    top: -14px;
    padding: 6px 14px;
    border-radius: 12px;
    background: #af1531;
    color: #fff;
    transform: none;
    z-index: 5;
  }
  .historie-jahr-box::after {
    display: none;
  }
  .historie-jahr-box::before {
    content: "";
    position: absolute;
    left: -30px;
    /* verbindet Jahreszahl mit der Linie */
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 5px;
    background: #af1531;
  }
  .historie-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin: 70px 0 50px 0;
    padding-left: 50px;
    /* <<< EXAKT gleiche Linie wie Jahreszahl */
    width: calc(100% - 50px);
    position: relative;
  }
  .historie-item .historie-content {
    margin-top: 35px !important;
  }
  /* Content & Bild exakt auf derselben Linie */
  .historie-content,
  .historie-image-box {
    width: 100% !important;
    max-width: 420px;
    /* sorgt für harmonischen rechten Abstand */
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 25px !important;
  }
  /* Bild */
  .historie-image-box img {
    max-height: 240px;
    border-radius: 12px;
  }
  /* Pfeile ausblenden */
  .historie-title::after {
    display: none;
  }
  /* title */
  .historie-title {
    font-size: 18px;
    padding: 12px 16px;
  }
  /* Text */
  .historie-beschreibung {
    padding: 16px 18px;
  }
}

.startseite-text-animation {
  animation: fadeInDown;
  animation-duration: 1.5s;
  animation-direction: alternate;
}

.startseite-einsatz-animation {
  animation: fadeInLeft;
  animation-duration: 1.5s;
  animation-direction: alternate;
}

.animation_fade_in {
  animation: fadeIn;
  animation-duration: 1.5s;
  animation-direction: alternate;
}

.animation_fade_up {
  animation: fadeInUp;
  animation-duration: 1.5s;
  animation-direction: alternate;
}

.animation_fade_left {
  animation: fadeInLeft;
  animation-duration: 1.5s;
  animation-direction: alternate;
}

.animation_fade_right {
  animation: fadeInRight;
  animation-duration: 1.5s;
  animation-direction: alternate;
}
