/*
         Grundfarben:
         #1d4f5f (Blau),
         #0e3541 (Dunkel Blau),
         #e4e9e9 (Hell Grau-Blau BG),
         #6d6960 (Braun Hell),
         #56534c Braun dunkel
*/

:root {
        --shadow-color: 0deg 0% 0%;
        --shadow-elevation-low:
          0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.1),
          0.4px 0.8px 1px -1.2px hsl(var(--shadow-color) / 0.1),
          1px 2px 2.5px -2.5px hsl(var(--shadow-color) / 0.1);
        --shadow-elevation-medium:
          0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.11),
          0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.11),
          2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.11),
          5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.11);
        --shadow-elevation-high:
          0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.1),
          1.5px 2.9px 3.7px -0.4px hsl(var(--shadow-color) / 0.1),
          2.7px 5.4px 6.8px -0.7px hsl(var(--shadow-color) / 0.1),
          4.5px 8.9px 11.2px -1.1px hsl(var(--shadow-color) / 0.1),
          7.1px 14.3px 18px -1.4px hsl(var(--shadow-color) / 0.1),
          11.2px 22.3px 28.1px -1.8px hsl(var(--shadow-color) / 0.1),
          17px 33.9px 42.7px -2.1px hsl(var(--shadow-color) / 0.1),
          25px 50px 62.9px -2.5px hsl(var(--shadow-color) / 0.1);
      }

/* Links */
a {
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

a:link,
a:visited {
  text-align: left;
  font-size: 1em;
  color: #1d4f5f;
  font-weight: normal;
  text-decoration: underline;
}

a:hover {
  font-weight: normal;
  color: #000000;
  /* text-decoration: none; */
}

a.button:link,
a.button:visited {
  display: inline-block;
  background: #1d4f5f;

  text-align: center;
  font-size: 18px;
  font-weight: normal;
  /* text-shadow: rgba(0,0,0,0.2) 1px 1px 1px; */
  color: #ffffff;

  padding: 5px 25px 5px 25px;
  margin: 5px 0px 5px 0px;
  text-decoration: none;
}

a.button:hover {
  background-color: #0e3541;
}

a.button.highlight {
  background-color: #6d6960;
  font-weight: normal;
  color: #ffffff;
  /* text-shadow: rgba(0,0,0,0.1) 1px 1px 1px; */
  padding: 5px 25px 5px 25px;
}

a.button.highlight:hover {
  background-color: #56534c;
}

/* �berschriften */
h1 {
  font-family: "Montserrat";
  font-size: 38px;
  font-weight: 700;
  text-align: left;
  color: #0e3541;
  margin: 0px 0px 5px 0px;
  padding: 0px 0px 0px 0px;
  vertical-align: top;
  line-height: 1.1em;
  margin-bottom: 8px;
}

h2 {
  font-family: "Montserrat";
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  color: #1d4f5f;
  margin: 0px 0px 5px 0px;
  padding: 0px 0px 0px 0px;
  vertical-align: top;
  text-decoration: none;
}

h1 span,
h2 span {
  color: #1d4f5f;
}

h3 {
  display: block;
  font-family: "Montserrat";
  font-size: 1.8em;
  font-weight: bold;
  text-align: left;
  color: #0e3541;
  margin: 5px 0px 5px 0px;
  padding: 0px 0px 0px 0px;
  vertical-align: top;
}

h4 {
  font-family: "Montserrat";
  font-size: 1.4em;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  color: #3337a5;

  margin: 0px 0px 0px 0px;
  padding: 5px 10px 5px 10px;

  background: #efefef;
  /* text-shadow: 1px 1px 0px rgba(255,255,255,0.2); */
  border-top: 2px #b50000 solid;
}

* {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  font-size-adjust: none;
  size-adjust: 100%;
}

/* Standards */
body {
  background: #ffffff;
  font-size: 1em;
  font-size: 15px;
  vertical-align: top;
  text-align: left;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  min-width: 320px;
}

body,
tr,
td,
div {
  font-family: "Montserrat", sans-serif;
  color: #0e3541;
  vertical-align: top;
  text-align: left;
}

img {
  border: 0px;
}

.clear {
  clear: both;
  line-height: 0em;
  height: 0px;
  display: block;
  background-color: #ffdf00;
}

.spacer {
  height: 50px;
  display: block;
  background-color: transparent;
}

.spacer_small {
  height: 30px;
  display: block;
  background-color: transparent;
}

.block {
  display: block !important;
}

.inline {
  display: inline-block !important;
}

.upper {
  text-transform: uppercase;
}

.pad {
  padding: 10px;
}

.pad_l {
  padding-left: 10px;
}

.pad_top {
  padding: 20px 0px;
}

.pad_r {
  padding-right: 10px;
}

.pad_big {
  padding: 20px;
}

.no_pad {
  padding: 0px !important;
}

.round {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.round_big {
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  border-radius: 50px !important;
}

.round_small {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.a_left {
  text-align: left;
}

.a_center {
  text-align: center !important;
}

.a_right {
  text-align: right;
}

.o75 {
  opacity: 0.75;
}

.o50 {
  opacity: 0.5;
}

.o25 {
  opacity: 0.25;
}

.big {
  font-size: 1.2em;
  margin-top: 8px;
  margin-bottom: 4px;

}

.bigger {
  display: flex;
  justify-content: center;
  font-size: 1.4em;
  margin: 70px 0;
}

.bigger_text{
  max-width:  75ch;
  text-wrap: pretty;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.small {
  font-size: 14px;
}

.smaller {
  font-size: 0.7em;
}

.f_l {
  float: left;
}

.f_r {
  float: right !important;
}

.w100 {
  float: left;
  width: 100%;
}

.w75 {
  float: left;
  width: 75%;
}

.w66 {
  float: left;
  width: 66%;
}

.w50 {
  float: left;
  width: 50%;
}

.w40 {
  float: left;
  width: 40%;
}

.w33 {
  float: left;
  width: calc(100% / 3);
}

.w25 {
  float: left;
  width: 25%;
}

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

.font1 {
  font-family: "Merriweather";
}

.font2 {
  font-family: "Montserrat";
}

.font3 {
  font-family: "Montserrat";
}

.font4 {
  font-family: "Open Sans";
}

.fontcolor1 {
  color: #e4e9e9;
}

.fontcolor2 {
  color: #1d4f5f;
}

.bg0 {
  background-color: #ffffff !important;
}

.bg1 {
  background-color: #e4e9e9 !important;
}

.bg2 {
  background-color: #1d4f5f !important;
}

.bg3 {
  background-color: #0e3541 !important;
}

.bg4 {
  background-color: #6d6960 !important;
}

.bg5 {
  background-color: #56534c !important;
}

.marked {
  background: #e4e9e9 !important;
  color: #1d4f5f !important;
}

.noScroll {
  overflow: hidden;
  position: fixed;
}

.bg_verlauf_1 {
  background: #1d4f5f;
  /* Old browsers */
  background: -moz-linear-gradient(top, #1d4f5f 0%, #0e3541 100%);
  background: -webkit-linear-gradient(top, #1d4f5f 0%, #0e3541 100%);
  background: linear-gradient(to bottom, #1d4f5f 0%, #0e3541 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1d4f5f', endColorstr='#0e3541', GradientType=0);
}

.bg_verlauf_2 {
  background: #6d6960;
  /* Old browsers */
  background: -moz-linear-gradient(bottom, #6d6960 0%, #56534c 100%);
  background: -webkit-linear-gradient(bottom, #6d6960 0%, #56534c 100%);
  background: linear-gradient(to top, #6d6960 0%, #56534c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6d6960', endColorstr='#56534c', GradientType=0);
}

/* Icons */
.icon {
  float: left;
  display: inline-block;

  width: 64px;
  height: 64px;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  border: 0px #ffffff solid;

  background-color: transparent;
  background-size: 64px 64px;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon.medium {
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
}

.icon.small {
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
}

.icon.arrow_l {
  background-image: url(../images/icon_a_l.png);
}

.icon.arrow_r {
  background-image: url(../images/icon_a_r.png);
}

.icon.phone {
  background-image: url(../images/icon_phone.png);
}

.icon.star {
  background-image: url(../images/icon_star.png);
}

.icon.star_hover {
  background-image: url(../images/icon_star_hover.png);
}

.icon.user {
  background-image: url(../images/icon_user.png);
}

.icon.stift {
  background-image: url(../images/icon_stift.png);
}

.icon.top {
  background-image: url(../images/icon_top.png);
}

.icon.top_heart {
  background-image: url(../images/icon_top_heart.png);
}

.icon.top_heart_check {
  background-image: url(../images/icon_top_heart_check.png);
}

.icon.top_heart_edit {
  background-image: url(../images/icon_top_heart_edit.png);
}

.icon.top_heart_search {
  background-image: url(../images/icon_top_heart_search.png);
}

.icon.x {
  background-image: url(../images/icon_x.png);
}

.icon.facebook {
  background-image: url(../images/icon_facebook.png);
}

.icon.insta {
  background-image: url(../images/icon_insta.png);
}

.icon_bg {
  display: inline-block;
  width: 64px;
  height: 64px;
  background: #ffffff;
  padding: 10px;
  margin: 5px;
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  border-radius: 50px !important;
}

/* Seite */
#wrapper {
  width: 100%;
  margin: 0px auto;
  padding: 0px;
  max-width: 1600px;
  background: #e4e9e9;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}

.in {
  width: calc(100% - 40px);
  max-width: 1400px;
  min-width: 320px;
  margin: 0px auto;
  height: 100%;
}

#header {
  display: block;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../images/header.jpg);
  /* background:  #1d4f5f url(../images/header.jpg) center top no-repeat; */
  width: calc(100% - 0px);
  height: 100svh;
  max-height: 900px;
  min-height: 700px;
  margin: 0px auto;
  background-size: cover;
  background-position:  center;
}

#header .headermenu {
  float: right;
  display: inline-block;
}

#header .headermenu a {
  float: left;
  display: inline-block;
  padding: 10px 10px;
  background-color: #ffffff;

  font-size: 1.3em;
  color: #1d4f5f;
  font-weight: 600;
  text-decoration: none;
  /* text-shadow: rgba(255,255,255,0.2) 1px 1px 0px; */
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-elevation-medium);
}

#header .headermenu a span {
  float: left;
  display: inline-block;
  padding: 5px 10px 0px 10px;
}

#header .headermenu a span b {
  font-weight: normal;
}

#header .headermenu a:hover {
  background-color: #1d4f5f;
  color: #ffffff;
  transition: all 0s ease-in-out !important;
}

#header .headermenu a:hover .icon.user {
  background-image: url(../images/icon_user_hover.png);
}

#header .logo {
  float: left;
  background: rgba(0, 0, 0, 0.4);
  width: calc(100% / 3);
  min-width: 300px;
  height: 100%;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);

  margin: 0px 0px 0px -100px;
  padding: 100px 0px 300px 0px;
  text-align: center;
  box-sizing: border-box;
}

#header .logo img {
  width: 350px;
  height: 350px;
  padding: 0;
}

#header_small {
  background-color: #1d4f5f;
  padding: 0px 0px;
  text-align: center;
}

#header_small .logo {
  width: calc(100%);
  height: auto;
  text-align: center;
}

#header_small .logo img {
  width: 200px;
  height: 200px;
  padding: 0;
}

#header_small .headermenu {
  display: block;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 10px 0px;
}

#header_small .headermenu a {
  float: left;
  display: inline-block;
  padding: 5px 10px;
  margin: 2px;
  background-color: #ffffff;

  font-size: 1.1em;
  color: #1d4f5f;
  font-weight: normal;
  text-decoration: none;
  /* text-shadow: rgba(255,255,255,0.2) 1px 1px 0px; */
}

#header_small .headermenu a span {
  float: left;
  display: inline-block;
  padding: 8px 10px 4px 10px;
}

#header_small .headermenu a:hover {
  background-color: #1d4f5f;
  color: #ffffff;
  transition: all 0s ease-in-out !important;
}

#header_small .headermenu a:hover .icon.user {
  background-image: url(../images/icon_user_hover.png);
}

#header_small #navi {
  cursor: pointer;
  display: none;
  float: left;
  background: transparent url(../images/icon_navi.png) center top no-repeat;
  width: 46px;
  height: 46px;
  margin: 0px auto;
}

#header_small #navi:hover {
  opacity: 0.75;
}

#header_small #navi.active {
  background-image: url(../images/icon_navi_hover.png);
}

#navigation {
  display: none;
  padding: 10px 0px;
}

#navigation a {
  float: left;
  display: inline-block;
  padding: 3px 6px;
  margin: 2px;
  background-color: #ffffff;

  font-size: 1.1em;
  color: #1d4f5f;
  font-weight: normal;
  text-decoration: none;
  /* text-shadow: rgba(255,255,255,0.2) 1px 1px 0px; */
}

#navigation a:hover {
  background-color: #beaa75;
  transition: all 0s ease-in-out !important;
}

#navigation a span {
  float: left;
  display: inline-block;
  padding: 3px 6px 2px 6px;
}

/* Seite */
#site {
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  min-height: 500px;
  font-size: 1em;
}

#sidebar {
  float: left;
  width: 300px;
}

#sidebar h3 {
  text-align: left;
}

#sidebar .box {
  color: #1d4f5f;
  background-color: rgba(255, 255, 255, 0.25);
}

#sidebar .box a {
  display: block;
  width: calc(100% - 20px);
  padding: 5px 10px;
  margin: 1px 0px 0px 0px;

  background: rgba(255, 255, 255, 0.75);
  line-height: 1.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1d4f5f;
  transition: background-color 0.3s ease-in-out;
}

#sidebar .box a:hover {
  background: #1d4f5f;
  color: #ffffff;
}

#content {
  float: right;
  width: calc(100% - 300px - 20px);
  margin: 0px 0px;
}

/* Footer */
#footer {
  background: #6d6960;
  width: calc(100% - 0px);
  padding: 16px 0px 16px 0px;
  margin: 0px;
  color: #ffffff;

}

#footer .in{
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .item {
  /* float: left; */
  display: block;
  width: calc(100% / 4 - 20px);

  padding: 0px 0px 0px 0px;
  margin: 20px 10px 20px 10px;

  color: #ffffff;
  font-size: 1.2em;
  /* text-align: left; */
}

#footer .item:nth-child(3) {
  float: right;
  width: calc(100% / 2 - 20px);
}

#footer .item:nth-child(3) a {
  float: left;
  display: inline-block;
  width: calc(50% - 20px);
}

#footer .item b {
  display: block;
  padding: 0px;
  margin: 0px 0px 10px 0px;

  color: #ffffff;
  font-size: 18px;
  text-align: center;
}

#footer .item a,
#footer .item a:link,
#footer .item a:visited {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;

  padding: 2px 0px 2px 0px;
  margin: 0px 0px 0px 0px;
  text-decoration: none;

  opacity: 0.8;
  text-align: center;
}

#footer .item a:hover {
  color: #000000;
  opacity: 1;
}

#footer .f_r div {
  color: #ffffff !important;
  opacity: 0.8;
  text-align: right;
}

#footer .footer_logo {
  /* background-color: #56534c; */
  padding: 25px 25px;
  text-align: center;
}

#footer .footer_logo img {
  width: 50%;
  height: auto;
  max-width: 200px;
  display: inline-block;
  opacity: 0.7;
}

#footer .footer_logo:hover img {
  opacity: 1;
}

/* Inahlte */
#presse {
  display: block;
  float: left;
  width: calc(50% - 50px);
  margin-top: 0px;
  border: 0px #0e3541 solid;
  text-align: center;
}

#presse .titel {
  display: block;
  width: 100%;
  font-size: 2em;
  text-align: left;
  margin: 70px 0px 50px 0px;
}

#presse .titel b {
  font-family: "Montserrat";
  font-size: 38px;
  text-align: left;
  font-weight: 700;
  color: #0e3541;
  margin-bottom: 8px;
}

#presse .titel i {
  font-family: "Montserrat";
  font-size: 22px;
  text-align: left;
  font-weight: 400;
  color: #1d4f5f;
  /* text-transform: uppercase; */
  font-style: normal;
}

#slider_presse {
  display: inline-block;
  width: 100%;
  height: 300px;
  max-width: 400px;
  border: 0px #0e3541 solid;
}

#slider_presse .s_l {
  display: inline-block;
  float: left;
  width: 50px;
  height: 250px;
  background: transparent url(../images/af1.png) center 130px no-repeat;
}

#slider_presse .s_r {
  display: inline-block;
  float: left;
  width: 50px;
  height: 250px;
  background: transparent url(../images/af2.png) center 180px no-repeat;
}

#slider_presse .s_items {
  display: inline-block;
  float: left;
  width: calc(100% - 100px);
  height: 250px;
  text-align: center;
}

#slider_presse .s_items .item {
  display: block;
  width: calc(100% - 0px);
  height: 235px;
  text-align: center;
}

#slider_presse .s_items .item b {
  display: block;
  width: calc(100% - 0px);

  font-size: 1.2em;
  font-weight: 400;
  text-align: center;
  font-style: italic;
  color: #1d4f5f;

  margin: 0;
}

#slider_presse .s_items .item i {
  display: block;
  width: calc(100% - 0px);

  font-size: 1em;
  font-weight: 400;
  text-align: center;
  font-style: normal;
  color: #7f7f7f;

  margin: 10px 0px 10px 0px;
}

#slider_presse .s_items .item img {
  margin: 0px auto;
}

#vorteile {
  margin-top: 70px;
  display: table;
  float: right;
  width: calc(45% - 0px);
  vertical-align: middle !important;
  background-color: transparent;
  margin-right: 40px;
}

#vorteile .flip-card:nth-child(2),
#vorteile .flip-card:nth-child(4) {
  border-left: 0px;
}

#vorteile .flip-card:nth-child(3),
#vorteile .flip-card:nth-child(4) {
  border-top: 0px;
}

#vorteile .flip-card .icon {
  float: none;
  width: 100%;
  margin: 25px 0px;
}

#vorteile .flip-card {
  background-color: transparent;
  float: left;
  width: calc(50% - 10px);
  height: 200px;

  border: 5px solid #e4e9e9;
  perspective: 1000px;
}

#vorteile .flip-card-inner {
  position: relative;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;

  border: 0px #ffffff solid;
  margin: 5px;
  background-color: #e4e9e9;
  vertical-align: middle !important;
}

#vorteile .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

#vorteile .flip-card-front,
#vorteile .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#vorteile .flip-card-front {
  font-family: "Montserrat";
  color: #0e3541;
  font-size: 22px;
  text-align: center;
  vertical-align: middle !important;
  font-weight: 400;
}

#vorteile .flip-card-back {
  background-color: #e4e9e9;

  font-family: "Montserrat";
  color: #0e3541;
  font-size: 18px;
  text-align: center;

  transform: rotateY(180deg);

  width: calc(100% - 40px);
  height: calc(100% - 40px);
  padding: 20px;
}

#stories {
  display: block;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/stories_bg.jpg) center top no-repeat;
  width: calc(100% - 0px);
  height: auto;
  margin: 0px auto;
  text-align: center;
  background-size: cover;
}

#stories b {
  display: block;
  /* background-color: rgba(255, 255, 255, 0.4); */
  width: calc(100% - 50px);
  margin: 0px 0px 0px 0px;
  padding: 35px 25px 0px 25px;

  font-family: "Montserrat";
  color: #ffffff;
  font-size: 38px;
  /* text-shadow: 1px 1px 10px rgba(0,0,0,0.75); */
  text-align: center;
}

#stories #slider_stories {
  display: inline-block;
  width: 70%;
  margin: 5% 15% 5% 15%;
}

#stories .item {
  display: block;
  width: 100%;
  height: 100%;
  /* -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.8); */
  box-shadow: var(--shadow-elevation-high);
  border: 12px solid #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #ffffff;
}

#stories .item .image {
  display: block;
  float: left;
  height: 100%;
  /* max-width: 500px; */
  background-color: #ffffff;
}

#stories .item .info {
  display: block;
  float: left;
  width: calc(100% - 510px - 60px);
  height: 100%;
  position: relative;
  background: #ffffff;
  padding: 30px;

}
#stories .item .image img {
  border-radius: 8px;
  height: 100%;
  max-height: 490px;
  object-fit: cover;
}

/* #stories .item .info:after {
  right: 100%;
  top: 20%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #ffffff;
  border-width: 30px;
  margin-top: -30px;
} */

#stories .item .info .name {
  display: block;
  width: 100%;
  padding: 5px 0px;
  margin: 0px 0px 5px 0px;

  font-family: "Montserrat";
  font-size: 38px;
  text-align: left;
  font-weight: normal;
  color: #1d4f5f;
}

#stories .item .info .titel {
  display: block;
  width: 100%;
  height: auto;
  padding: 5px 0px;
  margin: 0px 0px 10px 0px;


  overflow: hidden;

  font-family: "Montserrat";
  font-size: 18px;
  color: #1d4f5f;
  font-weight: 400;
  text-align: left;
  color: #0e3541;
  /* text-transform: uppercase; */
}

#stories .item .info .text {
  display: block;
  width: 100%;
  height: auto;
  padding: 5px 0px;
  margin: 0px 0px 20px 0px;

  /* overflow: hidden; */

  font-size: 15px;
  color: #8f8f8f;
}

#stories .item .info .sterne {
  display: block;
  width: 100%;
  height: auto;
  padding: 0px 0px;
  margin: 0px 0px 0px 0px;
  overflow: hidden;
}

#stories .item .info .sterne .icon.star {
  opacity: 0.2;
}

/* FAQ */
#faq {
  background-color: #ffffff;
  padding: 25px;
}

#faq .item {
  position: relative;
  padding-bottom: 10px;
}

#faq .item h4 {
  display: block;
  cursor: pointer;
  width: calc(100% - 45px - 2px);

  padding: 10px 35px 10px 10px;
  margin: 0px 0px 0px 0px;

  background: transparent url(../images/icon_a_u.png) no-repeat 99% center;
  background-size: 22px 22px;
  border: 1px rgba(0, 0, 0, 0.05) solid;

  font-size: 1.2em;
  font-weight: 600;
  color: #1d4f5f;
}

#faq .item h4.open {
  background: transparent url(../images/icon_a_o.png) no-repeat 99% center;
  background-size: 22px 22px;
}

#faq .item .faqtext {
  display: none;
  background: rgba(0, 0, 0, 0.02);
  border: 1px rgba(0, 0, 0, 0.05) solid;
  border-top: 0px rgba(0, 0, 0, 0.05) solid;

  width: calc(100% - 40px - 2px);
  padding: 20px;
  margin-bottom: 20px;
}

#faq .item .faqtext.open {
  display: block;
}

/* Boxen */
.box {
  display: block;
  width: calc(100% - 22px);
  background: #ffffff;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px rgba(0, 0, 0, 0.1) solid;
  -webkit-box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.25);
}

.box_head {
  display: block;
  font-size: 1.1em;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  color: #ffffff;

  margin: 0px 0px 10px 0px;
  padding: 8px 10px 5px 10px;

  background: #1d4f5f;
}

/* Reg und Login Boxen */
#reg_box {
  position: absolute;
  background-color: #ffffff;
  z-index: 999;
  right: 100px;
  top: 430px;

  display: block;
  width: 400px;
  height: 350px;
  height: auto;
  padding: 0px 0px 0px 0px;
  margin: 0px auto;

  text-align: center;
  font-size: 1.2em;

  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.28);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.28);

  border-radius: 8px;
}

#reg_box b {
  display: block;
  width: calc(100% - 40px);
  padding: 30px 20px;
  margin: 0px 0px 30px 0px;

  color: #0e3541;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
  border-radius: 8px 8px 0 0;
  line-height: 1.4;
}

#reg_box span {
  display: block;
  width: 100%;
  padding: 30px 0px;
  margin: 0px;
}

#reg_box span.alt {
  display: none;
}

#reg_box .button {
  width: calc(80% - 50px);
  padding: 15px 25px;
  border-radius: 8px;
}

#reg_box img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin: 25px 0px;
}

#register_box {
  position: absolute;
  z-index: 1001;
  left: calc(50% - 320px);
  top: calc(30% - 100px);

  display: none;
  width: 600px;
  padding: 10px 20px 20px 20px;
  margin: 0px auto;

  text-align: center;
  color: #ffffff;

  /* -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5); */
  box-shadow: var(--shadow-elevation-high);

  border-radius: 8px;
}

#register_box p{
 margin-top: 5px;
}

#register_box b {
  display: block;

  color: #ffffff;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
}

#register_box a {
  color: #ffffff !important;
}

#register_box hr {
  display: block;
  width: 100%;
  height: 3px;
  border: 0px;
  border-bottom: 3px rgba(255, 255, 255, 0.4) dotted;
  margin: 0px 0px 5px 0px;
}

#register_box form {
  max-width: calc(100% - 100px);
  margin: 20px auto;
}

#register_box .inblock {
  float: left;
  width: calc(50% - 10px);
  margin: 5px 5px;
}

#register_box .block {
  margin: 10px 5px;
}

#register_box form,
#register_box fieldset {
  border: 0px;
}

#register_box form label {
  display: none;
  padding-top: 10px;
  opacity: 0.8;
}

#register_box input {
  width: calc(100% - 16px);
  font-size: 16px;
}

#register_box input[type="submit"] {
  width: calc(100% - 10px);
  padding: 8px 0px !important;
  margin: 5px 5px;
  font-size: 16px;
  margin-top: 10px;
}

#register_box span {
  display: block;
  color: #ffffff;
  padding: 5px 0px !important;
  /* margin-bottom: 5px; */
}

#register_box form label[for="me"],
#register_box form label[for="searchfor"] {
  display: none;
}

#login_box {
  position: absolute;
  z-index: 1001;
  left: calc(50% - 170px);
  top: calc(30% - 100px);

  display: none;
  width: 300px;
  padding: 10px 20px 20px 20px;
  margin: 0px auto;

  text-align: center;
  color: #ffffff;

  /* -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5); */
  box-shadow: var(--shadow-elevation-high);
  border-radius: 8px;

}

#login_box b {
  display: block;

  color: #ffffff;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
}

#login_box form {
  max-width: 300px;
  margin: 10px auto;
}

#login_box form,
#login_box fieldset {
  border: 0px;
}

#login_box form label {
  display: none;
  padding-top: 10px;
  opacity: 0.8;
}

#login_box input {
  width: calc(100% - 16px);
  font-size: 16px;
  margin-top: 8px;
}

#login_box input[type="submit"] {
  width: calc(100% - 0px);
  padding: 8px 0px !important;
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
}

/* Slider Dots */
.slider-dots {
  margin: 10px auto 10px auto;
  padding: 5px 0px;
  text-align: center;
  width: 100%;
  border: 0px #000 solid;
}

.slider-dots ul {
  margin: 0px !important;
  padding: 0px !important;
}

.slider-dots li {
  list-style: none;
  display: inline;
  color: #e4e9e9;
  margin: 2px 4px;
}

.slider-dots li span {
  display: inline-block;
  background: #e4e9e9;
  width: 15px;
  height: 15px;
  text-indent: -9999px;
  cursor: pointer;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.slider-dots li span:hover,
.slider-dots li.slick-active span {
  background: #1d4f5f;
}

.slider-dots-stories {
  position: absolute;
  margin: -75px 0px 0px 500px;
  padding: 5px 0px;
  text-align: center;
  width: calc(100% - 500px);
  border: 0px #000 solid;
}

.slider-dots-stories ul {
  margin: 0px !important;
  padding: 0px !important;
}

.slider-dots-stories li {
  list-style: none;
  display: inline;
  color: #e4e9e9;
  margin: 2px 4px;
}

.slider-dots-stories li button {
  display: inline-block;
  background-size: 80px !important;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  cursor: pointer;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  border-radius: 80px;
  border: 0px;
  box-shadow: var(--shadow-elevation-medium);
}

/* Formulare Sumbit + Button */
input[type="text"],
input[type="email"],
input[type="password"] {
  display: inline-block;
  width: calc(100% - 16px);

  font-family: "Montserrat";
  text-align: left;
  font-size: 16px;
  font-weight: normal;
  /* text-shadow: rgba(0,0,0,0.2) 1px 1px 1px; */
  color: #000000;

  padding: 8px;
  margin: 2px 0px;

  text-decoration: none;

  background: #ffffff;

  border: 0px transparent solid;
  border-bottom: 2px transparent solid;

  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

select {
  display: inline-block;
  width: calc(100% - 0px);

  font-family: "Montserrat";
  text-align: left;
  font-size: 16px;
  font-weight: normal;
  /* text-shadow: rgba(0,0,0,0.2) 1px 1px 1px; */
  color: #000000;

  padding: 7px;
  margin: 2px 0px;

  text-decoration: none;

  background: #ffffff;

  border: 0px transparent solid;
  border-bottom: 2px transparent solid;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.error {
  border-bottom: 2px #ff0000 solid !important;
}

.error2 {
  border: 2px #ff0000 solid !important;
}

input[type="submit"],
button[type="submit"] {
  display: inline-block;
  cursor: pointer;
  width: calc(100% - 0px);

  font-family: "Montserrat";
  text-align: center;
  font-size: 1.4em;
  font-weight: normal;
  /* text-shadow: rgba(255,255,255,0.2) 1px 1px 0px; */
  color: #000000;

  padding: 5px 0px 5px 0px;
  margin: 2px 0px;

  text-decoration: none;

  background: #d9dde1;

  border: 0px transparent solid;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  background: #a9bdd8;
  color: #000000;
}

input[type="submit"].disabled {
  opacity: 0.3;
  background: #d9dde1;
}

form input[type="checkbox"] {
  display: none;
}

form input[type="checkbox"] + label {
  width: 50px;
  height: 20px;
  border-radius: 20px;
  border: 2px solid #ddd;
  background-color: rgba(255, 255, 255, 0.7);
  display: inline-block !important;
  content: "";
  float: left;
  margin-right: 10px;
  transition: background-color 0.5s linear;
  margin-top: 2px;
  padding-top: 0px !important;
  opacity: 1 !important;
}

form input[type="checkbox"] + label:hover {
  cursor: pointer;
}

form input[type="checkbox"] + label::before {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background-color: #fff;
  display: block;
  content: "";
  float: left;
  margin: 2px 0 0 2px;
  transition: margin 0.1s linear;
}

form input[type="checkbox"]:checked + label {
  background-color: #23625c;
}

form input[type="checkbox"]:checked + label::before {
  margin: 2px 0 0 32px;
}

/* Sonstiges */
#shadow {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;

  z-index: 999;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#w {
  position: fixed;
  z-index: 20000;
  display: none;
  bottom: 0;
  left: 0px;
  background: #000000;
  color: #ffffff;
  padding: 10px;
}

#websiegel {
  position: absolute;
  display: block;
  background: transparent url(../images/websiegel_2023.png) center center
    no-repeat;
  width: 130px;
  height: 175px;
  margin: -200px 0px 0px 30px;
}

/*
######################################
        Media-Queries
###################################### */

@media (max-width: 1399.98px) {
  #stories #slider_stories {
    display: inline-block;
    width: 80%;
    margin: 5% 10% 5% 10%;
}

  .in {
    width: calc(100% - 100px);
    max-width: 1600px;
    margin: 0px auto;
  }

  #websiegel {
    margin: -230px 0px 0px calc((100% / 3) / 2 - 80px);
  }

  #header {
    height: 670px;
    /* background-size: 120% auto; */
    overflow: hidden;
  }

  #header .logo {
    width: calc(100% / 3);
    /* height: 320px; */
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    margin: 0px 0px 0px -50px;
    padding: 50px 0px 300px 0px;
  }

  #header .logo img {
    width: 300px;
    height: 300px;
    padding: 0;
  }

  #reg_box {
    left: auto;
    right: 50px;
    top: 280px;
    width: 425px;
    padding: 0px;
    margin: 0px auto;
    font-size: 1.1em;
  }
}

@media (max-width: 1199.98px) {
  #websiegel {
    margin: -200px 0px 0px calc((100% / 3) / 2 - 60px);
    background-size: 100% auto;
    width: 97px;
    height: 130px;
  }

  #vorteile {
    margin-right: 10px;
    width: calc(51% - 0px);
  }
  #header {
    height: 500px;
    /* background-size: 120% auto; */
    overflow: hidden;
  }

  #header .logo {
    margin: 0px 0px 0px -50px;
    padding: 50px 0px 200px 0px;
  }

  #header .logo img {
    width: 250px;
    height: 250px;
    padding: 0;
  }

  #reg_box {
    left: auto;
    right: 50px;
    top: 320px;
    width: 350px;
    padding: 0px 0px 0px 0px;
    margin: 0px auto;
    font-size: 1.1em;
  }

  #reg_box b {
    width: calc(100% - 40px);
    padding: 20px 20px;
    margin: 0px 0px 20px 0px;
    font-size: 1.4em;
  }

  #reg_box img {
    max-width: 250px;
  }

  #vorteile .flip-card-front,
  #vorteile .flip-card-back {
    font-size: 20px;
  }

  #stories {
    width: calc(100% - 0px);
    height: auto;
    /* background-size: 130% auto; */
    padding-bottom: 110px
  }

  #stories b {
    font-size: 2em;
    padding: 25px 25px;
  }

  #stories #slider_stories {
    width: 92%;
    margin: 5% 4%;
  }

  #stories .item {
    /* height: 400px; */
  }

  #stories .item .image {
    /* height: 400px; */
    /* max-width: 400px; */
  }

  #stories .item .image img {
    width: 100%;
    height: 100%;
  }

  #stories .item .info {
    width: calc(100% - 510px - 60px);
    height: 100%;
    padding: 30px;
  }

  .slider-dots-stories {
    margin: -80px 0px 0px 400px;
    width: calc(100% - 400px);
  }

  .slider-dots-stories li button {
    background-size: 60px !important;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 991.98px) {
  .slider-dots-stories {
    clear: both;
    margin: 26px auto 0px auto;
    width: calc(100% - 0px);
    border: 0px #fff solid;
  }

  .in {
    width: calc(100% - 60px);
    margin: 0px auto;
  }

  #websiegel {
    top: 250px;
    left: 80px;
    margin: 0px 0px 0px 0px;
    width: 89px;
    height: 120px;
  }

  #header {
    height: 470px;
    /* background-size: auto 470px; */
    overflow: hidden;
  }

  #header .logo {
    width: 250px;
    min-width: 250px;
    margin: 0px 0px 0px -30px;
    padding: 50px 0px 200px 0px;
  }

  #header .logo img {
    width: 200px;
    height: 200px;
    padding: 0;
  }

  #header_small .headermenu a {
    padding: 5px 5px;
    font-size: 1em;
  }

  #footer .item {
    margin: 20px 0px 20px 0px;
    font-size: 1.1em;
    text-align: center;
  }

  #footer .item:nth-child(1) {
    width: calc(50% - 0px);
  }

  #footer .item:nth-child(2) {
    float: right;
    width: calc(50% - 0px);
  }

  #footer .item:nth-child(3) {
    float: none;
    width: calc(100% - 0px);
  }

  #footer .item:nth-child(3) a {
    float: left;
    display: block;
    width: calc(50% - 0px);
  }

  #footer .footer_logo img {
    max-width: 120px;
  }

  #footer .f_r {
    float: none;
    text-align: center !important;
    margin-top: 50px;
  }

  #footer .f_r div {
    text-align: center !important;
  }

  #sidebar {
    width: 220px;
  }

  #content {
    width: calc(100% - 220px - 20px);
  }

  #vorteile {
    margin-top: 50px;
  }

  #vorteile .flip-card {
    height: 180px;
  }

  #vorteile .flip-card-front,
  #vorteile .flip-card-back {
    font-size: 16px;
  }

  #vorteile .flip-card .icon {
    float: none;
    width: 100%;
    margin: 20px 0px;
  }

  #presse {
    margin-top: 0px;
  }

  #stories .item {
    height: auto;
    width: 400px;
    margin: 0px auto !important;
  }

  #stories .item .image {
    float: none;
    height: 100%;
    max-width: 400px;
    margin: 0px auto !important;
  }

  #stories .item .info {
    float: none;
    width: calc(400px - 40px);
    height: 100%;
    padding: 20px;
    font-size: 0.9em;
    margin: 0px auto !important;
  }

  #stories .item .info .name {
    font-size: 2.2em;
  }

  #stories .item .info .titel {
    height: auto;
    padding: 5px 0px;
    margin: 0px 0px 5px 0px;
  }

  #stories .item .info .text {
    height: auto;
    padding: 5px 0px;
    margin: 0px 0px 10px 0px;
  }

  #faq_block .w25,
  #faq_block .w66 {
    display: block;
    float: none;
    width: 100%;
  }

  #faq_block .w25 span {
    float: left;
    display: inline-block;
    width: calc(100% - 30px);
    margin: 0 10px;
  }
}

@media (max-width: 767.98px) {
  #websiegel {
    top: 260px;
    left: 55px;
    margin: 0px 0px 0px 0px;
    width: 80px;
    height: 110px;
  }

  #header .logo {
    width: 220px;
    min-width: 220px;
    margin: 0px 0px 0px -50px;
    padding: 50px 0px 150px 0px;
  }

  #header .logo img {
    width: 180px;
    height: 180px;
    padding: 0;
  }

  .spacer {
    height: 50px;
  }

  .spacer_small {
    height: 45px;
  }

  #sidebar {
    display: none;
    float: none;
    width: 0px;
  }

  #content {
    float: none;
    width: calc(100% - 0px - 0px);
  }

  #reg_box {
    position: absolute;
    z-index: 1;
    left: 30px;
    right: 30px;
    top: auto;
    width: calc(100% - 60px);
    margin: -30px auto 0px auto;
    padding: 0px 0px 10px 0px;
    text-align: center;
    max-width: 400px;
  }

  #reg_box b {
    width: calc(100% - 40px);
    padding: 15px 20px;
    margin: 0px 0px 10px 0px;
  }

  #reg_box .button {
    float: none;
    width: calc(80% - 30px);
    width: calc(55% - 20px);
    padding: 15px 0px;
    margin: 10px;
    font-size: 1.1em;
  }

  #reg_box img {
    float: none;
    width: calc(80% - 30px);
    padding: 0px 0px;
    margin: 10px;
    border: 0px #000 solid;

  }

  #presse {
    float: none;
    width: 100%;
    margin-top: 280px;
  }

  #vorteile {
    float: none;
    width: calc(100% - 0px);
    margin-top: 50px;
  }

  #vorteile .item {
    height: 180px;
  }

  #vorteile .flip-card-front,
  #vorteile .flip-card-back {
    font-size: 14px;
  }

  #stories {
    width: calc(100% - 0px);
    height: auto;
    /* background-size: auto 120%; */
    padding-bottom: 110px;
  }

  #stories .item {
    height: auto;
    width: 400px;
    margin: 0px auto !important;
  }

  #stories .item .image {
    float: none;
    height: 100%;
    max-width: 400px;
    margin: 0px auto !important;
  }

  #stories .item .info {
    float: none;
    width: calc(400px - 40px);
    height: 100%;
    padding: 20px;
    font-size: 0.9em;
    margin: 0px auto !important;
  }

  #stories .item .info:after {
    top: auto;
    bottom: 100%;
    left: 20%;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 20px;
    margin-left: -20px;
  }

  #stories .item .info .titel {
    text-align: center;
  }

  #stories .item .info .name {
    text-align: center;
  }

  #stories .item .info .name span {
    display: block;
    font-size: 0.9em;
    text-align: center;
  }

  #stories .item .info .sterne {
    text-align: center;
    height: 35px;
  }

  #stories .item .info .sterne .icon.star,
  #stories .item .info .sterne .icon.star_hover {
    float: none;
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
  }

  .slider-dots-stories {
    clear: both;
    margin: 26px auto 0px auto;
    width: calc(100% - 0px);
    border: 0px #fff solid;
  }

  #faq_block .w25 span {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  #presse .titel b {
    font-size: 26px;
  }
  #presse .titel i{
    font-size: 20px;
  }
  #register_box input{
    font-size: 16px;
  }
  #register_box input[type="submit"]{
    font-size: 18px;
  }
  #login_box b {
    font-size: 20px;
  }
  #register_box p {
    margin-bottom: 22px;
}
  #register_box b {
    font-size: 20px;
  }
  #stories b {
    font-size: 26px;
    padding: 36px 25px;
  }
  #faq_block .w25{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
  }
  #faq_block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .in {
    width: calc(100% - 40px);
    margin: 0px auto;
  }

  .bigger_text {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0.1px;
  }

  h1{
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  h2 {
    font-size: 19px;
    line-height: 1.2;
  }

  h3 {
    font-size: 1.3em;
  }

  h4 {
    font-size: 1.2em;
  }

  #header {
    background-position:  center;
    height: 470px;
    min-height: 470px;
  }

  #header .headermenu a span b {
    display: none;
  }

  /*#header .headermenu a .icon { width: 42px; height: 42px; background-size: 42px 42px; }   */
  #header .logo {
    width: 220px;
    min-width: 220px;
    margin: 0px 0px 0px -40px;
    padding: 50px 0px 150px 0px;
  }

  #header_small .headermenu a {
    display: none;
  }

  #header_small .headermenu a.login {
    display: block;
  }

  #header_small #navi {
    display: inline-block;
  }

  #reg_box .button {
    float: none;
    width: calc(80% - 30px);
    margin: 24px 0;
    padding: 15px 15px;
    font-size: 16px;
  }

  #reg_box img {
    float: none;
    width: calc(80% - 30px);
  }

  #register_box {
    left: 50px;
    right: 50px;
    width: calc(100% - 100px - 40px);
    top: 4%;
  }

  #register_box form {
    max-width: 100%;
    margin: 10px auto;
  }

  #register_box .inblock {
    float: none;
    width: calc(100% - 10px);
    margin: 8px 5px;
  }

  #footer {
    padding: 20px 0px 0px 0px;
  }

  #footer .in{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #footer .footer_logo img {
    max-width: 200px;
}
  #footer .item {
    font-size: 1em;
  }

  #footer .item a,
  #footer .item a:link,
  #footer .item a:visited {
    padding: 10px 0px;
    text-align: center;
  }

  #footer .item:nth-child(2) b,
  #footer .item:nth-child(2) a,
  #footer .item:nth-child(3) a:nth-child(odd) {
    text-align: center;
  }

  #presse {
    display: block;
    float: none;
    width: calc(100% - 10px);
    margin-top: 280px;
  }

  #presse .titel {
    margin: 0px 0px 20px 0px;
    padding: 0px;
  }

  #slider_presse {
    width: 100%;
    max-width: 500px;
    border: 0px #e4e9e9 solid;
    padding-top: 40px;
    text-align: center;
  }

  #faq {
    padding: 15px;
  }
}

@media (max-width: 460px) {
  form input[type="checkbox"] + label {
    margin-top: 8px;
  }
  .small {
    font-size: 12px;
  }
  #stories .item .image img{
    object-fit: cover;
    height: 100%;
    border-radius: 8px;
    width: 100%;
  }
  .in {
    width: calc(100% - 30px);
    margin: 0px auto;
  }

  .big {
    font-size: 18px;
    /* margin-top: 40px; */
    margin-bottom: 0;
  }

  .bigger {
    font-size: 1.2em;
    margin: 40px 0;
  }

  #start .bigger {
    font-size: 1.1em;
    text-align: center;
  }

  #header .headermenu a .icon {
    display: none;
  }

  #header .logo {
    width: 220px;
    min-width: 220px;
    margin: 0px 0px 0px -30px;
    padding: 50px 0px 150px 0px;
  }

  #reg_box b {
    width: calc(100% - 20px);
    padding: 15px 10px;
    font-size: 22px;
  }

  #reg_box .button {
    font-size: 16px;
  }

  #register_box {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px - 20px);
    padding: 10px;
  }

  #register_box form {
    max-width: 100%;
    margin: 10px auto;
  }

  #presse .titel {
    margin: 24px 0px 10px 0px;
    padding: 0px;
  }

  #slider_presse {
    padding-top: 20px;
  }

  #stories .item {
    height: auto;
    width: calc(90% - 20px);
    margin: 0px auto !important;
    border: 0px #000000 solid;
  }

  #stories .item .image {
    height: 300px;
    max-width: 100%;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
    padding: 8px;
  }

  #stories .item .info {
    width: calc(100% - 30px);
    min-height: 425px;
    height: auto;
    padding: 0px 15px 5px 15px;
    border-radius: 0 0 8px 8px;
  }

  #stories .item .info .text {
    text-align: center;
  }

  #stories .item .info .name {
    font-size: 26px;
  }

  #stories .item .info .name span {
    font-size: 0.8em;
  }

  #faq {
    padding: 10px;
  }

  #faq .item .faqtext {
    width: calc(100% - 20px - 2px);
    padding: 10px;
    margin-bottom: 10px;
  }
}

.password-reset{
	color:white!important;
	text-decoration: none!important;
}
.password-reset:hover{
	color:#a9bdd8!important;
	text-decoration: underline!important;
}
