@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-display: swap;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-family: 'Portada Text';
  font-weight: 400;
  src: url(//peggy-steinhauser.de/steinhauser/themes/PS-1.0/css/fonts/PortadaText-Regular.woff2) format("woff2"), url(//peggy-steinhauser.de/steinhauser/themes/PS-1.0/css/fonts/PortadaText-Regular.woff) format("woff");
}
@font-face {
  font-display: swap;
  font-style: italic;
  text-rendering: optimizeLegibility;
  font-family: 'Portada Text';
  font-weight: 400;
  src: url(//peggy-steinhauser.de/steinhauser/themes/PS-1.0/css/fonts/PortadaText-Italic.woff2) format("woff2"), url(//peggy-steinhauser.de/steinhauser/themes/PS-1.0/css/fonts/PortadaText-Italic.woff) format("woff");
}
@font-face {
  font-display: swap;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-family: 'Portada Text';
  font-weight: 700;
  src: url(//peggy-steinhauser.de/steinhauser/themes/PS-1.0/css/fonts/PortadaText-Bold.woff2) format("woff2"), url(//peggy-steinhauser.de/steinhauser/themes/PS-1.0/css/fonts/PortadaText-Bold.woff) format("woff");
}
@font-face {
  font-display: swap;
  font-style: italic;
  text-rendering: optimizeLegibility;
  font-family: 'Portada Text';
  font-weight: 700;
  src: url(//peggy-steinhauser.de/steinhauser/themes/PS-1.0/css/fonts/PortadaText-BoldItalic.woff2) format("woff2"), url(//peggy-steinhauser.de/steinhauser/themes/PS-1.0/css/fonts/PortadaText-BoldItalic.woff) format("woff");
}
/********************************************************************************************************************************************
 * Variablen
 ********************************************************************************************************************************************/
:root {
  --fontfamily: 'Portada Text', serif;
  --primarycolor: #09294d;
  --darkblue: #09294d;
  --blue: #004d7a;
  --lightblue: #669bde;
  --orange: #ff7836;
  --fontcolor: #1b2025;
  --bordercolor: #ccc;
  --radius: 4px;
  --radius_big: 20px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation_fadeIn {
  animation: fadeIn 1.5s;
}
.boxshadow {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.bold {
  font-weight: 700;
  font-style: normal;
}
.regular {
  font-weight: 400;
  font-style: normal;
}
.bolditalic {
  font-weight: 700;
  font-style: italic;
}
.italic {
  font-weight: 400;
  font-style: italic;
}
.pos-fix {
  position: fixed;
  z-index: 50;
}
.linktext {
  display: none;
}
.objectfit {
  width: 100%;
  height: 100%;
  display: block;
}
.objectfit img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.coverimage {
  background-size: cover;
  background-position: center;
}
.bg_gradient {
  background: linear-gradient(90deg, rgb(from var(--lightblue) r g b / 0.7) 0%, rgb(from var(--lightblue) r g b / 0) 60%);
}
/********************************************************************************************************************************************
 * Stylesheets
 ********************************************************************************************************************************************/
html,
body {
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
}
body {
  background: #fff;
  font-family: var(--fontfamily);
  font-size: 17px;
  color: var(--fontcolor);
  line-height: 1em;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-feature-settings: 'kern' 1, 'onum' 1, 'liga' 1;
  -webkit-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: 10 4 4;
}
@media only screen and (min-width: 769px) {
  body {
    -webkit-hyphens: manual;
    hyphens: manual;
  }
}
@media only screen and (min-width: 450px) {
  body {
    font-size: 18px;
  }
}
.viewport {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
@media only screen and (min-width: 450px) {
  .viewport {
    width: 86%;
  }
}
@media only screen and (min-width: 769px) {
  .viewport {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 450px) {
  .viewport .viewport {
    width: 100%;
  }
}
.flex_reverse_mobile .viewport {
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 769px) {
  .flex_reverse_mobile .viewport {
    flex-direction: row;
  }
}
@media only screen and (min-width: 769px) {
  .flex_bottom .viewport {
    align-items: flex-end;
  }
}
@media only screen and (min-width: 769px) {
  .flex_stretch .viewport {
    align-items: stretch;
  }
}
@media only screen and (min-width: 769px) {
  .flex_reverse .viewport {
    flex-direction: row-reverse;
  }
}
header,
footer,
article,
section,
nav,
address,
.h4,
.h5,
.h6,
figure,
main {
  display: block;
}
input,
select,
textarea {
  font-family: var(--fontfamily);
  font-size: 100%;
  border: 0;
  background: transparent;
}
h1 {
  color: var(--primarycolor);
  font-weight: 400;
  font-style: italic;
  font-size: 1.7em;
  margin: 15px 0;
  line-height: 1.2em;
  display: block;
}
@media only screen and (min-width: 450px) {
  h1 {
    font-size: 2em;
  }
}
h2,
.h2 {
  color: var(--primarycolor);
  font-weight: 400;
  font-style: italic;
  font-size: 1.7em;
  margin: 45px 0 15px 0;
  line-height: 1.2em;
  display: block;
}
@media only screen and (min-width: 450px) {
  h2,
  .h2 {
    font-size: 2em;
  }
}
h3,
.h3 {
  color: var(--primarycolor);
  font-weight: 700;
  font-style: normal;
  font-size: 1.4em;
  margin: 30px 0 15px 0;
  line-height: 1.3em;
  display: block;
}
h4,
.h4 {
  color: var(--primarycolor);
  font-weight: 700;
  font-style: normal;
  font-size: 1.2em;
  margin: 30px 0 15px 0;
  line-height: 1.4em;
  display: block;
}
h1 + h2,
h2 + h3,
h3 + h4 {
  margin-top: 15px;
}
img {
  width: 100%;
  height: auto;
}
a {
  color: var(--fontcolor);
  text-decoration: none;
}
a:focus {
  outline: none;
}
strong,
b {
  font-weight: 700;
  font-style: normal;
}
em,
i {
  font-style: italic;
}
h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a {
  color: var(--primarycolor);
}
.v {
  font-size: 97%;
  letter-spacing: 0.02em;
}
.space_top {
  margin-top: 60px;
}
.space_top_half {
  margin-top: 37.5px;
}
.space_bottom {
  margin-bottom: 60px;
}
.space_bottom_half {
  margin-bottom: 37.5px;
}
svg .darkblue {
  fill: var(--primarycolor);
}
svg .white {
  fill: #fff;
}
.darkblue {
  color: var(--primarycolor);
}
.darkblue a {
  color: var(--primarycolor);
}
.blue {
  color: var(--blue);
}
.blue a {
  color: var(--blue);
}
.orange {
  color: var(--orange);
}
.orange a {
  color: var(--orange);
}
.bg_darkblue {
  background-color: var(--primarycolor);
}
.bg_blue {
  background-color: var(--blue);
}
.bg_lightblue {
  background-color: var(--lightblue);
}
.bg_orange {
  background-color: var(--orange);
}
.icon_orange,
.icon_darkblue {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  box-sizing: border-box;
  padding: 8px;
  margin-bottom: 3px;
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.icon_orange.var01,
.icon_darkblue.var01 {
  border-radius: 57% 43% 44% 56% / 46% 47% 53% 54%;
}
.icon_orange.var02,
.icon_darkblue.var02 {
  border-radius: 49% 51% 51% 49% / 54% 51% 49% 46%;
}
.icon_orange.linkedin img,
.icon_darkblue.linkedin img {
  width: 75%;
}
.icon_orange.calendar,
.icon_darkblue.calendar {
  padding-bottom: 9px;
}
.icon_orange.print,
.icon_darkblue.print {
  cursor: pointer;
}
.icon_orange.print:focus,
.icon_darkblue.print:focus {
  outline: var(--orange);
}
.icon_orange.euro,
.icon_darkblue.euro {
  padding-left: 7px;
  padding-right: 9px;
}
.icon_orange.euro img,
.icon_darkblue.euro img {
  transform: scale(0.95);
}
.icon_orange img,
.icon_darkblue img {
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.icon_orange + h3,
.icon_darkblue + h3 {
  margin-top: 0;
}
.icon_orange {
  background: var(--orange);
}
.icon_darkblue {
  background: var(--primarycolor);
}
.icon_darkblue:hover,
.icon_darkblue:focus,
.icon_darkblue:active {
  background: var(--orange);
}
.borderradius_top_left {
  border-top-left-radius: var(--radius_big);
}
.borderradius_top_right {
  border-top-right-radius: var(--radius_big);
}
.borderradius_bottom_left {
  border-bottom-left-radius: var(--radius_big);
}
.borderradius_bottom_right {
  border-bottom-right-radius: var(--radius_big);
}
.border_left_darkblue {
  border-left: 1px solid var(--primarycolor);
  margin-left: 15px;
  margin-bottom: 15px;
}
.textlink,
.downloadlink {
  color: var(--fontcolor);
  border-bottom: 1px solid var(--primarycolor);
  transition: border 0.3s ease;
  position: relative;
}
.textlink:before,
.downloadlink:before {
  content: '→\00A0';
}
.textlink:after,
.downloadlink:after {
  content: ' ';
  display: block;
  position: absolute;
  left: -5px;
  top: 0;
  border-left: 5px solid var(--orange);
  border-right: 5px solid var(--orange);
  width: 100%;
  height: 100%;
  opacity: 0;
}
.textlink:hover,
.downloadlink:hover,
.textlink:focus,
.downloadlink:focus,
.textlink:active,
.downloadlink:active {
  background: var(--orange);
  color: var(--primarycolor);
  border: none;
}
.textlink:hover:after,
.downloadlink:hover:after,
.textlink:focus:after,
.downloadlink:focus:after,
.textlink:active:after,
.downloadlink:active:after {
  opacity: 1;
}
.downloadlink:before {
  display: none;
}
button,
button a,
.button,
input[type=submit] {
  background: var(--blue);
  color: #fff;
  display: inline-block;
  padding: 10px 15px;
  box-sizing: border-box;
  margin: 0 5px 5px 0;
  position: relative;
  border: none;
  line-height: 1.3em;
}
button:before,
button a:before,
.button:before,
input[type=submit]:before {
  display: none;
}
button:hover,
button a:hover,
.button:hover,
input[type=submit]:hover,
button:focus,
button a:focus,
.button:focus,
input[type=submit]:focus,
button:active,
button a:active,
.button:active,
input[type=submit]:active,
button.current,
button a.current,
.button.current,
input[type=submit].current {
  color: transparent;
}
button:hover:after,
button a:hover:after,
.button:hover:after,
input[type=submit]:hover:after,
button:focus:after,
button a:focus:after,
.button:focus:after,
input[type=submit]:focus:after,
button:active:after,
button a:active:after,
.button:active:after,
input[type=submit]:active:after,
button.current:after,
button a.current:after,
.button.current:after,
input[type=submit].current:after {
  content: attr(text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: color-mix(in srgb, var(--orange), #fff 10%);
  font-weight: 700;
  font-style: italic;
  padding: 10px 0;
  border: none;
  height: auto;
  background: var(--blue);
}
button.back_button,
button a.back_button,
.button.back_button,
input[type=submit].back_button {
  margin-right: 5px;
  font-size: 1.5em;
  line-height: 0.88;
}
button.back_button:hover:after,
button a.back_button:hover:after,
.button.back_button:hover:after,
input[type=submit].back_button:hover:after,
button.back_button:focus:after,
button a.back_button:focus:after,
.button.back_button:focus:after,
input[type=submit].back_button:focus:after,
button.back_button:active:after,
button a.back_button:active:after,
.button.back_button:active:after,
input[type=submit].back_button:active:after,
button.back_button.current:after,
button a.back_button.current:after,
.button.back_button.current:after,
input[type=submit].back_button.current:after {
  font-style: normal;
}
/********************************************************************************************************************************************
 * header
 ********************************************************************************************************************************************/
header {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  box-sizing: border-box;
  padding: 30px 5vw;
  width: 100vw;
  position: relative;
}
@media only screen and (min-width: 450px) {
  header {
    display: flex;
  }
}
@media only screen and (min-width: 769px) {
  header {
    justify-content: flex-start;
    align-items: flex-end;
    background: #fff;
  }
}
header .header_wrap {
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 769px) {
  header .header_wrap {
    position: relative;
  }
}
@media only screen and (min-width: 1000px) {
  header .header_wrap {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
header .logo {
  width: 250px;
  min-width: 200px;
  margin-right: 5vw;
  transition: all 0.5s ease;
}
header .logo:focus,
header .logo:active {
  outline: none;
}
@media only screen and (min-width: 450px) {
  header .logo {
    width: 350px;
    min-width: 250px;
  }
}
header nav.primary {
  width: auto;
  flex: 1 auto;
}
header nav.primary div.menu {
  line-height: 1.5em;
  display: block;
  position: absolute;
  background: #fff;
  z-index: 20;
  box-sizing: border-box;
  padding: 5vw 5vw 100vw 10vw;
  right: 0;
  top: calc(100% -  15px);
  transform: translateX(50em);
  height: auto;
  transition: all 1s ease;
}
@media only screen and (min-width: 769px) {
  header nav.primary div.menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    padding: 0;
    right: auto;
    left: auto;
    background: transparent;
    transform: translateX(0);
  }
}
header nav.primary div.menu.show {
  transform: translateX(0);
  min-height: 100vh;
}
header nav.primary div.menu ul {
  margin-right: 5vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
header nav.primary div.menu ul:before {
  content: '';
  display: block;
  position: absolute;
  top: -20%;
  left: -10px;
  height: 125%;
  width: 1px;
  background: var(--primarycolor);
}
header nav.primary div.menu ul li {
  position: relative;
  width: auto;
  min-width: 180px;
}
header nav.primary div.menu ul li a {
  color: var(--primarycolor);
  display: inline-block;
  line-height: 1.2em;
  padding: 4px 0;
}
header nav.primary div.menu ul li a:focus,
header nav.primary div.menu ul li a:active {
  outline: none;
  font-weight: 700;
  font-style: italic;
  color: var(--orange);
}
header nav.primary div.menu ul li:hover,
header nav.primary div.menu ul li.current-menu-item {
  outline: none;
}
header nav.primary div.menu ul li:hover a,
header nav.primary div.menu ul li.current-menu-item a {
  font-weight: 700;
  font-style: italic;
  color: var(--orange);
}
header .topinfo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  padding: 15px 5vw;
  background-color: var(--blue);
  width: 100vw;
  z-index: 20;
}
@media only screen and (min-width: 1000px) {
  header .topinfo {
    position: relative;
    display: block;
    padding: 0;
    width: auto;
    background: transparent;
  }
}
header .topinfo p {
  line-height: 1.4em;
  color: #fff;
}
@media only screen and (min-width: 1000px) {
  header .topinfo p {
    color: var(--blue);
  }
  header .topinfo p a {
    color: var(--blue);
  }
}
header .topinfo p a {
  color: #fff;
  white-space: nowrap;
}
@media only screen and (min-width: 1000px) {
  header .topinfo p a {
    color: var(--blue) !important;
  }
}
header .topinfo p a:active,
header .topinfo p a:focus {
  color: var(--orange) !important;
}
header .topinfo .icon_orange {
  margin-right: 7px;
}
@media only screen and (min-width: 1000px) {
  header .topinfo .icon_orange {
    margin-right: auto;
    margin-top: auto;
  }
}
@media only screen and (min-width: 769px) {
  header.pos-fix {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  }
}
header.pos-fix .logo {
  transform: scale(0.7);
  transform-origin: bottom;
  margin-top: -4em;
  display: none;
}
@media only screen and (min-width: 769px) {
  header.pos-fix .logo {
    display: block;
  }
}
header.pos-fix nav.primary div.menu.show {
  top: 0;
  padding-top: 80px;
}
header.pos-fix .topinfo {
  display: none;
}
header.pos-fix .mobilenav {
  position: fixed;
  top: 20px;
  right: 0;
  background: var(--primarycolor);
  box-sizing: border-box;
  padding: 10px;
  height: 49px;
  z-index: 500;
}
header.pos-fix .mobilenav span,
header.pos-fix .mobilenav:after,
header.pos-fix .mobilenav:before {
  background: #fff;
  width: 34px;
  height: 3px;
}
header.pos-fix .mobilenav:before {
  bottom: 11px;
}
header.pos-fix .mobilenav:after {
  top: 11px;
}
header.pos-fix .mobilenav.close:before,
header.pos-fix .mobilenav.close:after {
  right: 14px;
}
.mobilenav {
  position: relative;
  height: 40px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 5px;
  box-sizing: border-box;
  position: absolute;
  bottom: 31.5px;
  right: 5vw;
}
.mobilenav span {
  display: block;
  width: 50px;
  height: 5px;
  background: var(--primarycolor);
  transition: all 0.5s ease;
  transform-origin: right;
}
.mobilenav:after,
.mobilenav:before {
  content: " ";
  display: block;
  width: 50px;
  height: 5px;
  background: var(--primarycolor);
  position: absolute;
  transform: rotate(0deg);
  transform-origin: right;
  transition: all 0.5s ease;
}
.mobilenav:after {
  top: 0px;
}
.mobilenav:before {
  bottom: 0px;
}
.mobilenav.close span {
  transform: scale(0);
}
.mobilenav.close:before {
  transform: rotate(45deg);
  bottom: 0;
}
.mobilenav.close:after {
  transform: rotate(-45deg);
  top: 0;
}
@media only screen and (min-width: 769px) {
  .mobilenav {
    display: none;
  }
}
/********************************************************************************************************************************************
 * breadcrumbs
 ********************************************************************************************************************************************/
.width_breadcrumbs {
  position: relative;
}
nav.breadcrumbs {
  box-sizing: border-box;
  position: relative;
  z-index: 5;
  padding: 5vw;
}
@media only screen and (min-width: 769px) {
  nav.breadcrumbs {
    padding: 0;
    margin-bottom: 75px;
  }
}
nav.breadcrumbs ol li {
  display: inline;
}
nav.breadcrumbs ol li:after {
  content: " › ";
  color: var(--blue);
  display: inline;
}
nav.breadcrumbs ol li:after a {
  color: var(--blue);
}
nav.breadcrumbs ol li:last-child:after {
  content: "";
}
nav.breadcrumbs ol li a {
  font-size: 70%;
  color: var(--blue);
  border: none;
}
nav.breadcrumbs ol li a a {
  color: var(--blue);
}
nav.breadcrumbs ol li a:before,
nav.breadcrumbs ol li a:after {
  content: "";
  display: none;
}
nav.breadcrumbs ol li:hover a,
nav.breadcrumbs ol li:focus a {
  color: var(--primarycolor);
}
nav.breadcrumbs ol li:hover a a,
nav.breadcrumbs ol li:focus a a {
  color: var(--primarycolor);
}
/********************************************************************************************************************************************
 * pagemenu
 * unter den breadcrumbs
 ********************************************************************************************************************************************/
nav.pagemenu {
  position: relative;
  line-height: 1.5em;
  z-index: 15;
  background: #fff;
  padding: 5vw;
}
@media only screen and (min-width: 769px) {
  nav.pagemenu {
    position: absolute;
    max-width: 350px;
    padding: 0;
  }
}
nav.pagemenu span.navtitle {
  display: block;
  font-weight: 700;
  font-style: italic;
  color: var(--orange);
  box-sizing: border-box;
  padding: 0;
}
nav.pagemenu ul {
  line-height: 1.5em;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  padding-top: 15px;
}
nav.pagemenu ul:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  height: calc(100% + 10px);
  width: 1px;
  background: var(--primarycolor);
}
nav.pagemenu ul li a {
  color: var(--primarycolor);
  box-sizing: border-box;
  padding: 4px 50px 0px 10px;
  display: block;
  line-height: 1.25em;
  padding-top: 4px;
  padding-bottom: 4px;
}
nav.pagemenu ul li ul {
  margin-left: 10px;
}
nav.pagemenu ul li:hover a,
nav.pagemenu ul li:focus a,
nav.pagemenu ul li:active a,
nav.pagemenu ul li.current a {
  font-weight: 700;
  font-style: italic;
  padding-right: 48px;
  color: var(--orange);
}
nav.pagemenu ul li:hover ul:before,
nav.pagemenu ul li:focus ul:before,
nav.pagemenu ul li:active ul:before,
nav.pagemenu ul li.current ul:before {
  background: var(--orange);
}
nav.pagemenu ul li:hover ul li a,
nav.pagemenu ul li:focus ul li a,
nav.pagemenu ul li:active ul li a,
nav.pagemenu ul li.current ul li a {
  font-weight: 400;
  font-style: normal;
  padding-right: 50px;
  color: var(--primarycolor);
}
nav.pagemenu ul li:hover ul li:hover a,
nav.pagemenu ul li:focus ul li:hover a,
nav.pagemenu ul li:active ul li:hover a,
nav.pagemenu ul li.current ul li:hover a,
nav.pagemenu ul li:hover ul li:focus a,
nav.pagemenu ul li:focus ul li:focus a,
nav.pagemenu ul li:active ul li:focus a,
nav.pagemenu ul li.current ul li:focus a,
nav.pagemenu ul li:hover ul li:active a,
nav.pagemenu ul li:focus ul li:active a,
nav.pagemenu ul li:active ul li:active a,
nav.pagemenu ul li.current ul li:active a,
nav.pagemenu ul li:hover ul li.current a,
nav.pagemenu ul li:focus ul li.current a,
nav.pagemenu ul li:active ul li.current a,
nav.pagemenu ul li.current ul li.current a {
  font-weight: 700;
  font-style: italic;
  padding-right: 48px;
  color: var(--orange);
}
nav.pagemenu.pagemenu_fix.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  transform-origin: left top;
  transition: transform 0.5s ease;
  width: auto;
  max-width: 100%;
  height: auto;
  padding: 0;
}
@media only screen and (min-width: 450px) {
  nav.pagemenu.pagemenu_fix.fixed {
    bottom: 40px;
    transform: rotate(-90deg);
  }
}
@media only screen and (min-width: 769px) {
  nav.pagemenu.pagemenu_fix.fixed {
    bottom: 10vh;
  }
}
nav.pagemenu.pagemenu_fix.fixed span.navtitle {
  background: var(--orange);
  color: #fff;
  padding: 10px 30px 10px 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 15px 0 0;
  cursor: pointer;
  position: relative;
}
@media only screen and (min-width: 450px) {
  nav.pagemenu.pagemenu_fix.fixed span.navtitle {
    border-radius: 0 0 15px 0;
    padding: 4px 30px 4px 15px;
  }
}
nav.pagemenu.pagemenu_fix.fixed span.navtitle:after {
  content: '+';
  margin: -3px -15px 0 15px;
  font-size: 2.2em;
  font-weight: 400;
  font-style: normal;
}
nav.pagemenu.pagemenu_fix.fixed ul {
  display: none;
}
nav.pagemenu.pagemenu_fix.fixed.show {
  transform: rotate(0);
  box-sizing: border-box;
  padding: 10vw;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  width: 100vw;
}
@media only screen and (min-width: 450px) {
  nav.pagemenu.pagemenu_fix.fixed.show {
    width: auto;
    padding: 5vw;
  }
}
nav.pagemenu.pagemenu_fix.fixed.show span.navtitle {
  color: var(--orange);
  background: #fff;
  padding: 0;
}
nav.pagemenu.pagemenu_fix.fixed.show span.navtitle:after {
  transform: rotate(45deg) translateY(-3vw);
  font-size: 4em;
  margin: 0;
}
nav.pagemenu.pagemenu_fix.fixed.show ul {
  display: block;
}
/********************************************************************************************************************************************
 * Content
 ********************************************************************************************************************************************/
main {
  animation: fadeIn 1.5s;
  height: auto;
  flex: 1 auto;
  width: 86vw;
  margin: auto;
}
@media only screen and (min-width: 450px) {
  main {
    width: 90vw;
  }
}
main article p,
main article ul,
main article .p {
  margin: 15px 0;
  line-height: 1.7em;
}
main article p.space_top_half_minus,
main article ul.space_top_half_minus,
main article .p.space_top_half_minus {
  margin-top: -7.5px;
}
main article p,
main article ul,
main article .p,
main article h1,
main article h2,
main article h3,
main article h4,
main article .h2,
main article .h3,
main article .h4 {
  max-width: 900px;
  display: block;
}
main .wpb_text_column ul li {
  box-sizing: border-box;
  padding-left: 20px;
  position: relative;
}
main .wpb_text_column ul li:before {
  content: '–';
  position: absolute;
  left: 0;
  display: inline-block;
}
main .wpb_text_column ul.termine {
  border-top: 1px solid var(--primarycolor);
}
main .wpb_text_column ul.termine li {
  padding-left: 0;
  padding: 5px;
  border-bottom: 1px solid var(--primarycolor);
}
main .wpb_text_column ul.termine li:before {
  display: none;
}
main .wpb_text_column a {
  color: var(--fontcolor);
  border-bottom: 1px solid var(--primarycolor);
  transition: border 0.3s ease;
  position: relative;
}
main .wpb_text_column a:before {
  content: '→\00A0';
}
main .wpb_text_column a:after {
  content: ' ';
  display: block;
  position: absolute;
  left: -5px;
  top: 0;
  border-left: 5px solid var(--orange);
  border-right: 5px solid var(--orange);
  width: 100%;
  height: 100%;
  opacity: 0;
}
main .wpb_text_column a:hover,
main .wpb_text_column a:focus,
main .wpb_text_column a:active {
  background: var(--orange);
  color: var(--primarycolor);
  border: none;
}
main .wpb_text_column a:hover:after,
main .wpb_text_column a:focus:after,
main .wpb_text_column a:active:after {
  opacity: 1;
}
main .wpb_text_column a.phone,
main .wpb_text_column a.button {
  border: none;
}
main .wpb_text_column a.phone:before,
main .wpb_text_column a.button:before {
  display: none;
}
main .wpb_text_column a.button {
  color: #fff;
}
section.space_before {
  margin-top: 90px;
}
.vc_row.bordertop .vc_col-sm-12 {
  border-top: 1px solid var(--primarycolor);
}
.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li {
  margin-bottom: 10.5px;
}
.wpb_column.bg_blue {
  margin: 15px;
}
.wpb_column.bg_blue .wpb_content_element {
  margin-bottom: 15px;
  box-sizing: border-box;
  padding: 15px;
}
.wpb_column.bg_blue {
  color: color-mix(in srgb, var(--orange), #fff 10%);
}
.big_text {
  font-size: 130%;
}
.big_text p {
  line-height: 1.5em;
  -webkit-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: 10 4 4;
}
@media only screen and (min-width: 1200px) {
  .big_text p {
    -webkit-hyphens: manual;
    hyphens: manual;
  }
}
.blog .big_text p {
  color: var(--primarycolor);
}
.curved_line {
  margin-right: -5vw;
  margin-left: -2vw;
  position: relative;
}
.wpb-content-wrapper .fullwidth:first-child {
  margin-right: -5vw;
}
.wpb-content-wrapper .fullwidth:first-child .vc_column_container > .vc_column-inner {
  box-sizing: content-box;
}
.wpb-content-wrapper .fullwidth:first-child .vc_column_container > .vc_column-inner .singleimage {
  padding-top: 70%;
}
@media only screen and (min-width: 450px) {
  .wpb-content-wrapper .fullwidth:first-child .vc_column_container > .vc_column-inner .singleimage {
    padding-top: 50%;
  }
}
@media only screen and (min-width: 769px) {
  .wpb-content-wrapper .fullwidth:first-child .vc_column_container > .vc_column-inner .singleimage {
    padding-top: 40%;
  }
}
@media only screen and (min-width: 1000px) {
  .wpb-content-wrapper .fullwidth:first-child .vc_column_container > .vc_column-inner .singleimage {
    padding-top: 30%;
  }
}
.wpb-content-wrapper .fullwidth:first-child .vc_column_container > .vc_column-inner .singleimage span,
.wpb-content-wrapper .fullwidth:first-child .vc_column_container > .vc_column-inner .singleimage a {
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: var(--radius_big);
}
.wpb-content-wrapper .fullwidth:first-child + .vc_row > .curved_line {
  transform: translateY(-2.1vw);
}
.singleimage {
  position: relative;
  line-height: 0em;
  overflow: hidden;
}
.singleimage span,
.singleimage a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.singleimage.portrait {
  max-width: 350px;
  margin-top: 30px;
}
@media only screen and (min-width: 769px) {
  .singleimage.portrait {
    max-width: none;
  }
}
.singleimage figcaption {
  width: 80%;
}
.singleimage figcaption p {
  color: var(--blue);
  line-height: 1.5em;
  margin-top: 7.5px;
}
.teaser,
div.event {
  position: relative;
  border-top: 1px solid var(--primarycolor);
}
.teaser:last-child,
div.event:last-child {
  border-bottom: 1px solid var(--primarycolor);
}
.teaser:first-child,
div.event:first-child {
  margin-top: 75px;
}
.teaser p,
div.event p {
  margin: 7.5px 0;
}
.teaser a,
div.event a {
  pointer-events: auto;
}
.teaser .teaser_wrap,
div.event .teaser_wrap,
.teaser .event_wrap,
div.event .event_wrap {
  position: relative;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  padding: 30px 0;
  transition: all 1s ease;
  pointer-events: none;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
@media only screen and (min-width: 450px) {
  .teaser .teaser_wrap,
  div.event .teaser_wrap,
  .teaser .event_wrap,
  div.event .event_wrap {
    padding-right: 100px;
  }
}
@media only screen and (min-width: 1000px) {
  .teaser .teaser_wrap,
  div.event .teaser_wrap,
  .teaser .event_wrap,
  div.event .event_wrap {
    display: flex;
  }
}
@media only screen and (min-width: 450px) {
  .teaser .teaser_wrap,
  div.event .teaser_wrap,
  .teaser .event_wrap,
  div.event .event_wrap {
    width: 86%;
  }
}
@media only screen and (min-width: 769px) {
  .teaser .teaser_wrap,
  div.event .teaser_wrap,
  .teaser .event_wrap,
  div.event .event_wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 450px) {
  .teaser .teaser_wrap .viewport,
  div.event .teaser_wrap .viewport,
  .teaser .event_wrap .viewport,
  div.event .event_wrap .viewport {
    width: 100%;
  }
}
.teaser .teaser_wrap:after,
div.event .teaser_wrap:after,
.teaser .event_wrap:after,
div.event .event_wrap:after {
  content: '›';
  font-size: 5em;
  opacity: 0.3;
  width: 100px;
}
@media only screen and (min-width: 450px) {
  .teaser .teaser_wrap:after,
  div.event .teaser_wrap:after,
  .teaser .event_wrap:after,
  div.event .event_wrap:after {
    right: 0;
    top: 45%;
    text-align: right;
    position: absolute;
  }
}
.teaser .title,
div.event .title {
  margin-right: 30px;
}
.teaser .title .h2,
div.event .title .h2 {
  font-size: 1.9em;
}
.teaser .text,
div.event .text {
  flex: 1 1 initial;
}
.teaser .bg_link,
div.event .bg_link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.teaser .bg_link a,
div.event .bg_link a {
  display: block;
  width: 100%;
  height: 100%;
}
.teaser .bg_link:before,
div.event .bg_link:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: all 0.5s ease;
}
.teaser:hover .teaser_wrap,
div.event:hover .teaser_wrap,
.teaser:hover .event_wrap,
div.event:hover .event_wrap {
  transform: translateX(20px);
}
.teaser:hover .teaser_wrap:after,
div.event:hover .teaser_wrap:after,
.teaser:hover .event_wrap:after,
div.event:hover .event_wrap:after {
  opacity: 1;
}
.teaser:hover .bg_link,
div.event:hover .bg_link {
  background: linear-gradient(90deg, rgb(from var(--lightblue) r g b / 0.7) 0%, rgb(from var(--lightblue) r g b / 0) 60%);
}
.teaser:hover .bg_link:before,
div.event:hover .bg_link:before {
  width: 20px;
}
.categories {
  margin-bottom: 45px !important;
}
.archivheader {
  border-top: 1px solid var(--primarycolor);
  box-sizing: border-box;
  padding-top: 45px;
}
.archivheader p {
  display: inline-block;
  background: var(--blue);
  color: color-mix(in srgb, var(--orange), #fff 10%);
  margin: 0;
  box-sizing: border-box;
  padding: 15px 30px 7.5px 15px;
  font-size: 130%;
  font-weight: 700;
  font-style: normal;
  font-style: italic;
  border-top-right-radius: var(--radius_big);
}
/********************************************************************************************************************************************
 * Events
 ********************************************************************************************************************************************/
.events .event .title,
.events .event .subtitle,
.events .event .dates_place {
  display: block;
}
.events.events_soon {
  box-sizing: border-box;
  margin-top: 45px;
}
@media only screen and (min-width: 769px) {
  .events.events_soon {
    padding-right: 30px;
    margin-top: 0;
  }
}
.events.events_soon .blue {
  color: var(--blue);
}
.events.events_soon p {
  margin: 0;
  padding-top: 4.5px;
  padding-bottom: 4.5px;
  position: relative;
}
.events.events_soon p.event:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: all 0.5s ease;
}
.events.events_soon p.event span {
  display: block;
}
.events.events_soon p.event a {
  display: block;
  transition: all 1s ease;
}
.events.events_soon p.event a:focus,
.events.events_soon p.event a:active {
  color: var(--orange);
}
.events.events_soon p.event a:focus a,
.events.events_soon p.event a:active a {
  color: var(--orange);
}
.events.events_soon p.event:hover,
.events.events_soon p.event:focus {
  background: linear-gradient(90deg, rgb(from var(--lightblue) r g b / 0.7) 0%, rgb(from var(--lightblue) r g b / 0) 60%);
}
.events.events_soon p.event:hover:before,
.events.events_soon p.event:focus:before {
  width: 15px;
}
.events.events_soon p.event:hover a,
.events.events_soon p.event:focus a {
  transform: translateX(20px);
}
.events.events_soon p {
  line-height: 1.5em;
}
.events.events_soon .dates_place {
  color: var(--blue);
  font-weight: 400;
  font-style: italic;
}
.events.events_soon .dates_place a {
  color: var(--blue);
}
.events.events_preview p {
  border: none;
  display: inline-block;
}
@media only screen and (min-width: 450px) {
  .events.events_preview p:first-child {
    margin-right: 30px;
  }
}
.events.events_preview p .dates_place {
  font-weight: 400;
  font-style: italic;
  color: var(--blue);
  line-height: 1.5em;
  margin-bottom: 7.5px;
}
.events.events_preview p .dates_place a {
  color: var(--blue);
}
.events.events_preview p .title {
  color: var(--primarycolor);
  font-style: normal;
  margin: 30px 0 15px 0;
  display: block;
  font-size: 1.4em;
  line-height: 1.3em;
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
  margin: 0;
}
.events.events_preview p .title a {
  color: var(--primarycolor);
}
.events.events_preview p .title a {
  color: var(--blue);
}
.events.events_preview p .subtitle {
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
}
.events.events_preview p .subtitle a {
  color: var(--blue);
}
@media only screen and (min-width: 450px) {
  .events.events_preview .dateinfos:has(+.shortdescription) {
    max-width: 35%;
  }
}
@media only screen and (min-width: 450px) {
  .events.events_preview .shortdescription {
    width: 65%;
  }
}
.single_event .wpb_column h2:first-child {
  margin-top: 15px;
}
@media only screen and (min-width: 769px) {
  .single_event .vc_col-8 {
    width: 66.66666667%;
  }
}
.single_event .right_col {
  box-sizing: border-box;
}
@media only screen and (min-width: 769px) {
  .single_event .right_col {
    padding-left: 45px;
    width: 33.33333333%;
  }
}
.single_event .warteliste {
  font-weight: 700;
  font-style: normal;
  color: var(--primarycolor);
}
.single_event .warteliste a {
  color: var(--primarycolor);
}
.single_event .warteliste a {
  color: var(--primarycolor);
}
.single_event .warteliste a a {
  color: var(--primarycolor);
}
.single_event .dates_place {
  font-weight: 700;
  font-style: normal;
  font-size: 1.4em;
  margin: 30px 0 15px 0;
  line-height: 1.3em;
  display: block;
  color: var(--primarycolor);
  font-weight: 400;
  font-style: italic;
}
.single_event .dates_place a {
  color: var(--primarycolor);
}
.single_event .dates_place a {
  color: var(--primarycolor);
}
.single_event .subtitle {
  font-weight: 700;
  font-style: normal;
  font-size: 1.4em;
  margin: 30px 0 15px 0;
  line-height: 1.3em;
  display: block;
  color: var(--primarycolor);
  font-weight: 400;
  font-style: italic;
  margin-top: 0;
}
.single_event .subtitle a {
  color: var(--primarycolor);
}
.single_event .subtitle a {
  color: var(--primarycolor);
}
.single_event p.eventinfo,
.single_event .eventinfos li {
  margin: 0;
  text-wrap: balance;
}
.single_event .info_wrap {
  margin: 45px 0;
}
.single_event .address p,
.single_event .address h3 {
  margin: 7.5px 0;
}
.single_event .registration_button_top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (min-width: 769px) {
  .single_event .registration_button_top {
    justify-content: flex-end;
  }
}
/********************************************************************************************************************************************
 * Formular
 ********************************************************************************************************************************************/
.placeholder {
  color: var(--fontcolor);
  font-weight: 400;
  font-style: normal;
}
.formular {
  margin: 15px 0;
}
.formular .formdiv form {
  box-sizing: border-box;
}
.formular .formdiv form label {
  display: block;
  color: var(--primarycolor);
}
.formular .formdiv form label a {
  color: var(--primarycolor);
}
.formular .formdiv form .form_wrap {
  background: rgb(from #47658f r g b / 0.3);
  background: rgb(from var(--blue) r g b / 1);
  box-sizing: border-box;
  padding: 30px;
  margin: 15px 0;
}
@media only screen and (min-width: 769px) {
  .formular .formdiv form .form_wrap {
    padding: 45px 75px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.formular .formdiv form .form_wrap:first-of-type {
  border-top-left-radius: var(--radius_big);
}
.formular .formdiv form .form_wrap p.width_100 {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .formular .formdiv form .form_wrap p.width_50 {
    width: calc(50% -  15px);
  }
}
@media only screen and (min-width: 769px) {
  .formular .formdiv form .form_wrap p.width_33 {
    width: calc(33.333333333333% -  15px);
  }
}
.formular .formdiv form .form_wrap p label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  max-width: 500px;
  line-height: 1.4em;
}
.formular .formdiv form .form_wrap h2,
.formular .formdiv form .form_wrap h3 {
  width: 100%;
  color: color-mix(in srgb, var(--orange), #fff 10%);
}
.formular .formdiv form p {
  margin: 15px 0;
  max-width: 100%;
}
.formular .formdiv form p.checkbox {
  display: flex;
  flex-direction: row;
}
.formular .formdiv form p.checkbox label {
  display: block;
  vertical-align: 1px;
}
.formular .formdiv form p.formhinweis {
  opacity: 0.8;
  margin-top: 30px;
}
@media only screen and (min-width: 769px) {
  .formular .formdiv form p.formhinweis {
    float: right;
    margin-top: -50px;
    max-width: 70%;
    text-align: right;
    line-height: 1.3em;
  }
}
.formular .formdiv form p.error {
  background: var(--orange);
  box-sizing: border-box;
  padding: 10px;
  color: var(--primarycolor);
  font-weight: 700;
  font-style: normal;
}
.formular .formdiv form .flex {
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .formular .formdiv form .flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.formular .formdiv form .flex p {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .formular .formdiv form .flex p {
    width: 48%;
  }
}
.formular .formdiv form input[type=text],
.formular .formdiv form input[type=email],
.formular .formdiv form input[type=tel],
.formular .formdiv form input[type=date],
.formular .formdiv form select,
.formular .formdiv form textarea {
  border: none;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 10px;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  line-height: 1.5em;
  color: var(--fontcolor);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.5s ease;
}
.formular .formdiv form input[type=text]:focus,
.formular .formdiv form input[type=email]:focus,
.formular .formdiv form input[type=tel]:focus,
.formular .formdiv form input[type=date]:focus,
.formular .formdiv form select:focus,
.formular .formdiv form textarea:focus,
.formular .formdiv form input[type=text]:hover,
.formular .formdiv form input[type=email]:hover,
.formular .formdiv form input[type=tel]:hover,
.formular .formdiv form input[type=date]:hover,
.formular .formdiv form select:hover,
.formular .formdiv form textarea:hover {
  outline: 3px solid var(--orange);
  background: #ffffff;
}
.formular .formdiv form input[type=text].inhalt,
.formular .formdiv form input[type=email].inhalt,
.formular .formdiv form input[type=tel].inhalt,
.formular .formdiv form input[type=date].inhalt,
.formular .formdiv form select.inhalt,
.formular .formdiv form textarea.inhalt {
  display: none;
  border: none;
  height: 0px;
  padding: 0;
  line-height: 0px;
}
.formular .formdiv form textarea {
  height: 120px;
}
.formular .formdiv form input.false,
.formular .formdiv form textarea.false {
  outline: 3px solid var(--orange);
  background: #ffffff;
}
.formular .formdiv form .select_wrap {
  position: relative;
  margin: 27px 0;
}
.formular .formdiv form .select_wrap:after {
  content: " ";
  display: block;
  border-top: 9px solid var(--orange);
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  position: absolute;
  right: 20px;
  top: 40%;
  pointer-events: none;
}
.formular .formdiv form .select_wrap:hover:after {
  border-top: 10px solid var(--primarycolor);
}
.formular .formdiv form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0px;
}
.formular .formdiv form select::-ms-expand {
  display: none;
}
.formular .formdiv form input[type=checkbox] {
  width: 20px;
  height: 20px;
  position: relative;
  top: 3px;
  box-sizing: border-box;
  padding: 2px;
  border: 1px solid var(--primarycolor);
  background: #fff;
  vertical-align: text-bottom;
  margin-right: 10px;
  transition: all 0.5s ease;
}
.formular .formdiv form input[type=checkbox]:checked:after {
  content: " ";
  display: block;
  width: 90%;
  height: 50%;
  border-bottom: 5px solid var(--orange);
  border-left: 5px solid var(--orange);
  border-radius: 0 0 0 3px;
  transform: rotate(-45deg);
  margin-top: -15%;
}
.formular .formdiv form input[type=checkbox]:hover,
.formular .formdiv form input[type=checkbox]:focus {
  border: 3px solid var(--primarycolor);
  outline: 0;
}
.formular .formdiv form input[type=submit] {
  margin: 30px 0 15px 0;
  padding: 10px 30px;
  cursor: pointer;
}
.formular .formdiv form input[type=submit]:hover,
.formular .formdiv form input[type=submit]:focus {
  color: color-mix(in srgb, var(--orange), #fff 10%);
  font-weight: 700;
  font-style: italic;
}
.formular .formdiv form ::-webkit-input-placeholder {
  color: var(--fontcolor);
  font-weight: 400;
  font-style: normal;
}
.formular .formdiv form ::-moz-placeholder {
  color: #5c6c7d;
  color: var(--fontcolor);
  font-weight: 400;
  font-style: normal;
}
.formular .formdiv form :-ms-input-placeholder {
  color: #5c6c7d;
  font-weight: 400;
  font-style: normal;
}
.formular .formdiv form :-moz-placeholder {
  color: #5c6c7d;
  font-weight: 400;
  font-style: normal;
}
/********************************************************************************************************************************************
 * Footer
 ********************************************************************************************************************************************/
footer {
  animation: fadeIn 1.5s;
  position: relative;
  min-height: 140px;
  width: 90vw;
  margin: auto;
  line-height: 1.6em;
  margin-top: 10vw;
  padding-bottom: 135px;
  color: var(--primarycolor);
  box-sizing: border-box;
}
@media only screen and (min-width: 1000px) {
  footer {
    padding-bottom: 60px;
  }
}
footer a {
  color: var(--primarycolor);
}
footer a:hover,
footer a:active,
footer a:focus {
  color: var(--orange);
}
footer .flex {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  box-sizing: border-box;
  padding: 30px 0;
}
@media only screen and (min-width: 769px) {
  footer .flex {
    display: flex;
  }
}
footer address .name {
  font-weight: 700;
  font-style: italic;
}
footer ul.socialmedia_icons {
  margin-top: 15px;
}
footer ul.socialmedia_icons li {
  display: inline-block;
  margin-right: 5px;
}
footer nav.secondary {
  box-sizing: border-box;
  padding-top: 30px;
}
footer nav.secondary ul {
  flex-direction: row;
}
@media only screen and (min-width: 450px) {
  footer nav.secondary ul {
    display: inline-flex;
  }
}
footer nav.secondary ul li {
  margin-right: 15px;
}
@media only screen and (min-width: 769px) {
  footer nav.secondary ul li {
    margin-left: 15px;
    margin-right: 0;
  }
}
footer nav.secondary ul li a {
  font-size: 0.8em;
}