:root {
  /* ------- COLORS ------- */
  /*Primary Color*/
  --primary: #F6E2BD;
  --primaryTransparent: #F6E2BD;

  --primaryDark: var(--primary);
  --primaryLight: var(--primary);
  --primaryUltraLight:var(--primary);
  /*Accent Color*/
  --accent: #BF4040;
  --accentLight: #B2B2B3; 
  --accentDark: var(--accent);
  --accentUltraLight:var(--accent);

  /*Text Color*/
  --text: #6e6e6e;
  --link: #6e6e6e;
  --heading: var(--accent);
  --heading-dark: #414142;

  --navHeight:40px;

  --footerBackground: white;
  --navBackground: white;
  /* ------- SIZES ------- */
  --maxWidth: 1170px;
  --sectionBottomSpace: 25px;
  --headerBottomSpace: 25px;

}

::-moz-selection { /* Code for Firefox */
  color: white;
  background: var(--primary);
}

::selection {
color: white;
background: var(--accent);
}

*{
  /*font-family: "STIX Two Text";*/
  font-family: "Montserrat";
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}
html{
  background-color: var(--primary);
}
body{
  background-color: white;
}

html, body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body{
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-areas: 
      "header header header header" 
      "main main main main" 
      "footer footer footer footer";
}
h1, h2, h3, h4, h5, h6{
  color: var(--heading);
  margin: 0px 0px 20px 0px;
  font-family: "Montserrat";
}

h1{
  font-size: 3.1rem;

}
h2{
  font-size: 2.1rem;
}
h3{
  color: black;
}

p{
  margin-top: 0;
  line-height: 1.5em;
  text-align: justify;
  color: var(--text);
}
a{
  text-decoration: none;
  color: var(--link);
}
br{
  display: block;
  content: "";
  margin-bottom: 0.5em;
}

a.button, 
button, 
*[role="button"],
input[type="submit"]{
  display: block;
  width: fit-content;
  background-color: var(--primary);
  border: solid 2px var(--primary);
  padding: 10px 15px;
  color: white;
  font-weight: 700;
}
a.button, 
*[role="button"]{
  margin-top: 35px;
}
a.button.light, 
button.light, 
input[type="submit"].light, 
*[role="button"].light{
  background-color: white;
  border: solid 2px white;
  color: var(--primary);
}

a.button.outline, 
button.outline, 
*[role="button"].outline,
input[type="submit"].outline{
  background-color: transparent;
  border: solid 3px var(--primary);
  color: var(--primary);
}
hr{
  border-top: 1px solid var(--primary);
}
.center{
  margin-left: auto;
  margin-right: auto;
}
figure{
  width: 100%;
  margin: 0;
}

a.img{
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

a.img::after{
  content: "";
  display: block;
  padding-bottom: calc(100% / var(--w) * var(--h));
}

a.img img{
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


img{
  width: 100%;
  height: auto;
}
img.circle{
  border-radius: 100%;
}

ul{

}
li{
  line-height: 1.5;
  color: var(--text);
}
table{
  width: 100%;
  border-spacing: 0;
}
table td, 
table th{
  text-align: center;
  padding: 15px 10px;
  background-color: #F8F8F8;
}
table td{
  text-align: center;
  border-bottom: solid 1px darkgray;
}
table th{
  border-bottom: solid 2px darkgray;

}
table tr:last-of-type td{
  border-bottom: none;
}
table tr{
}
/* ------------------- Structure Styling -----------------------*/
/* Site Structure Styling */
header, section, footer{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.light h1, .light h2, .light h3, .light h4, .light h5, .light h6, .light p, .light a{
  color: white;
}
.light a.button{
  background-color: white;
  border: solid 2px white;
  color: var(--primary);
}
header{
  grid-area: "header";
  grid-column: span 4;
  margin-bottom: var(--headerBottomSpace);
  background-color: var(--primary);
}
main{
  grid-area: "main";
  grid-column: span 4;
}
footer{
  grid-area: "footer";
  grid-column: span 4;
  padding: 50px 0px;
  background-color: var(--footerBackground);
}
/* Content Structure Styling*/
section{ 
  margin-bottom: var(--sectionBottomSpace);
  padding: 20px 0px;
}
section[class*="background"]{
  padding: 50px 0px;
}
section.background-none{
  padding: 0px;
}






section.overlayed{
  padding-bottom: 200px;
  margin-bottom: 0;
}
section.overlay{
  margin-top: -150px;
}

.bottom-space-none{
  margin-bottom: 0;
}
.bottom-space-small{
  margin-bottom: 50px;
}
.bottom-space-large{
  margin-bottom: 100px;
}
.top-space-none{
  margin-top: 0;
}
.top-space-small{
  margin-top: 50px;
}
.top-space-large{
  margin-top: 100px;

}

/*------------------- Nav Component ----------------------- */
nav{ 
  display: flex;
  flex-direction: column;
  position: absolute;
  padding: 15px 0px;
  width: 100%;
  top: 0;
  bottom: 0;
  height: var(--navHeight);
  z-index: 100;
  background-color: white;
}
nav a{
  color: var(--primary);
  font-weight: 500;
  padding-bottom: 5px !important;
  padding-top: 5px !important;
}
nav a.active{
  font-weight: 500;
}
nav .container{
  height: 100%;
  display: flex;
  flex-direction: row;
}
nav .container ul{
  margin: auto 0px auto auto;
}
nav .container ul li{
  display: inline;
}
nav .container ul li a{
  margin-left: 10px;
}
nav img{
  height: 100%;
  width: auto;
}

/* ----------------- Mobil Nav ----------------------------*/
nav.mobile-nav{
  display: none;
  background-color: white;
  height: 30px;
  padding: 10px 0px;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.1);
}

nav.mobile-nav button{
  display: flex;
  border: none;
  background: none;
  margin-left: auto;
  cursor: pointer;
  padding-right: 0;
}
nav.mobile-nav button span{
  margin: auto;
  color: var(--primary);
  margin-right: 5px;
  font-size: 1rem;
}
nav.mobile-nav .logo{
  width: 58px;
}
.nav-drawer button{
  border-bottom: none;
  margin-left: auto;
  font-size: 2rem;
  margin-right: 15px;
}
.nav-drawer span{
  font-size: 2rem;
  font-weight: 600;
  margin-left: 15px;
}
.nav-drawer ul{
  padding-left: 15px;
}
.nav-drawer ul li{
  list-style-type:none;
  padding:5px 0;
}

/* Nav Drawer*/
html.pushbar_locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.pushbar_locked .pushbar_main_content.pushbar_blur {
  filter: blur(15px);
}

.pushbar_overlay {
  z-index: -999;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  will-change: opacity;
  transition: opacity 0.5s ease;
  opacity: 0;
  background: var(--primary);
}

html.pushbar_locked .pushbar_overlay {
  opacity: 0.8;
  z-index: 999;
}

[data-pushbar-id] {
  z-index: 1000;
  position: fixed;
  overflow-y: auto;
  will-change: transform;
  transition: transform 0.5s ease;
  background: #fff;
}

[data-pushbar-direction="left"][data-pushbar-id], [data-pushbar-direction="right"][data-pushbar-id] {
  top: 0;
  width: calc(100% - 50px);
  max-width: 350px;
  height: 100%;
}

[data-pushbar-direction="top"][data-pushbar-id], [data-pushbar-direction="bottom"][data-pushbar-id] {
  left: 0;
  width: 100%;
  min-height: 150px;
}

[data-pushbar-direction="left"][data-pushbar-id] {
  left: 0;
  transform: translateZ(0) translateX(-100%);
}

[data-pushbar-direction="right"][data-pushbar-id] {
  right: 0;
  transform: translateZ(0) translateX(100%);
}

[data-pushbar-direction="top"][data-pushbar-id] {
  top: 0;
  transform: translateZ(0) translateY(-100%);
}

[data-pushbar-direction="bottom"][data-pushbar-id] {
  bottom: 0;
  transform: translateZ(0) translateY(100%);
}

[data-pushbar-id].opened {
  display: block;
  transform: translateX(0px) translateY(0px);
}

@media screen and (max-width: 900px) {

  nav.mobile-nav{
    display: flex;
    height: 45px;
  }
  nav.main-nav{
    display: none;
  }
}
/*------------------- Form Component ----------------------- */
form{
  width: 100%;
  display: inline-grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  justify-items: stretch;
}

form input, 
form textarea{
  grid-column: span 12;
  border: solid 2px var(--primary);
  border-radius: 0px;
  padding: 10px 15px;
  background: none;
}
form textarea{
  resize: vertical;
  min-height: 200px;
}

/* ------------------- Grid Component -----------------------*/
.grid{
  display: inline-grid;
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  justify-items: stretch;
}
[class^="test"] {
  display: flex;
  flex-direction: column;
}
.col-1{
  grid-column: span 1;
}
.col-2{
  grid-column: span 2;
}
.col-3{ 
  grid-column: span 3;
}
.col-4{
  grid-column: span 4;
}
.col-6{
  grid-column: span 6;
}
.col-7{
  grid-column: span 7;
}
.col-8{
  grid-column: span 8;
}
.col-12{
  grid-column: span 12;
}

.container{
  max-width: var(--maxWidth);
  margin: auto;
  width: calc(100% - 50px);
  padding:0 25px;
}
.container.no-padding{
  padding: 0;
  width: 100%;
}
/* ------------------- Card -----------------------*/
.card{

}
.card .content{
  margin-top: 20px;
}
/* ------------------- Callout -----------------------*/

.callout picture{
  width: 100%;
  max-width: 200px;
  border-radius: 100%;
  position: relative;
  display: block;
  margin-left: auto;
}
.callout picture:after{
  display: block;
  padding-bottom: 100%;
  content: "";
}
.callout picture img, 
.callout picture source{
  position: absolute;
  object-fit: cover;
  object-position: var(--object-position);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 100%;
}
.callout blockquote{
  font-size: 2rem;
  color: var(--heading);
  font-weight: 700;
  margin: 0;
  margin-bottom: 15px;
}
.callout address{
  font-weight: 700;
  font-style: normal;
}
.callout .col-8{
  display: flex;
}
.callout .quote-info{
  display: flex;
  flex-direction: row;
}
.callout .callout-content{
  margin-top: auto;
  margin-bottom: auto;
}

.callout .callout-content.with-infos{
  padding-top: 40px;
}

.callout .quote-info picture{
  width: 75px;
  height: 75px;
  margin:auto 25px auto 0px;
}
.callout .quote-info div{
  width: calc(100% - 100px);
}

/*--------------------- MEDIA QUERIES ---------------*/
.hide{
  display: none !important;
}
/*------- extra Large Screen -> xl */
@media screen and (min-width: 1024px) { 
  .hide-on-extra-large{
      display: none !important;
  }
  .show-on-extra-large{
      display: block !important;
  }
  .show-on-extra-large-flex{
      display: flex !important;
  }
}
/*------ medium Screen -> md*/
@media screen and (max-width: 768px) {

  .col-1,
  .col-3,
  .col-4{
    grid-column: span 6;
  }
  .col-6,
  .col-8{
      grid-column: span 12;
  }
  .col-12{
      grid-column: span 12;
  }
  .col-md-1{
      grid-column: span 1;
  }
  .col-md-3{
      grid-column: span 3;
  }
  .col-md-4{
      grid-column: span 4;
  }
  .col-md-6{
      grid-column: span 6;
  }
  .col-md-8{
      grid-column: span 8;
  }
  .col-md-12{
      grid-column: span 12;
  }

  .hide-on-medium{
      display: none !important;
  }
  .show-on-medium{
      display: block !important;
  }
  .show-on-medium-flex{
      display: flex !important;
  }
  footer .grid{
    grid-gap:12px !important;
  }
}
/* ------- Small Screens -> sm */
@media screen and (max-width: 550px) {
  [class^="col"]{
      grid-column: span 12;
  }
  .col-sm-1{
      grid-column: span 1;
  }
  .col-sm-3{
      grid-column: span 3;
  }
  .col-sm-4{
      grid-column: span 4;
  }
  .col-sm-6{
      grid-column: span 6;
  }
  .col-sm-8{
      grid-column: span 8;
  }
  .col-sm-12{
      grid-column: span 12;
  }

  .hide-on-small{
      display: none !important;
  }
  .show-on-small{
      display: block !important;
  }
  .show-on-small-flex{
      display: flex !important;
  }
}



/* -----------------------------------------------------------------------*/
/* -----------------------------------------------------------------------*/
/* ----------------------------- CUSTOM ----------------------------------*/
/* -----------------------------------------------------------------------*/
/* -----------------------------------------------------------------------*/

h1,h2,h3,h4,h5,h6{
}
h2{
  color: var(--heading-dark);
}

h3{
  text-transform: none;
}

h1.highlighted,h2.highlighted,h3.highlighted,h4.highlighted,h5.highlighted,h6.highlighted{
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1.5;
  display: inline;
  background-position-y: 100%;
  background-image: linear-gradient(var(--primary) 50%, var(--primary) 50%);
  background-size: 2px;
  background-size: auto 175%;
}

a.button, 
button, 
*[role="button"],
input[type="submit"]{
  display: block;
  width: fit-content;
  background-color: transparent;
  border: none;
  border-bottom: solid 5px var(--primary);
  padding: 10px 5px;
  color: var(--heading-dark);
  font-weight: 600;

}


a.button.download, 
button.download, 
*[role="button"].download,
input[type="submit"].download{
  background-color: var(--primary);
  color: white;
  --text: white;
  border-bottom: none;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 0.8em;
  display: flex;
}
a.button.download img, 
button.download img, 
*[role="button"].download img,
input[type="submit"].download img{
  height: 25px;
  width: auto;
  margin-right: 10px;
}
a.button.download span, 
button.download span, 
*[role="button"].download span,
input[type="submit"].download span{
  margin: auto 0;
}

table th{
  border-bottom: solid 1px darkgray;
  border-top: solid 3px var(--primary) ;
}

a.button.thin, 
button.thin, 
*[role="button"].thin,
input[type="submit"].thin{
  border-bottom: solid 1px var(--primary);
}

form input, 
form textarea{
  grid-column: span 12;
  border: none;
  background-color: #F8F8F8;
  border-radius: 0px;
  padding: 10px 15px;
}

form input[type="submit"]{
  background-color: var(--primary);
  color: white;
  padding-left: 15px;
  padding-right: 15px;
  border: none;
}

nav{
  min-height: 30px;
  height: var(--navHeight);
  position: fixed;
  background-color: white;
  box-shadow: 3px 2px 6px rgba(0,0,0, calc(0.2 - var(--visible-y)));
}
nav a{
  padding-bottom: 5px;
  border-bottom: solid 0px var(--accent) !important;
  transition: all 0.2s ease;
}
nav a.active, 
nav a:hover{
  padding-bottom: 2px;
  color: var(--accent);
}
nav .logo{
  height: 100%;
  display: block;
  position: relative;
}
nav li{
  position: relative;
}
nav li a{
  color: black;
}

nav ul li .dropdown{
  padding-top: 17px;
  position: absolute;
  left: 0;
  min-width: 270px;
  z-index: 3;
  display: none;
  flex-direction: column;
  --text:black;
}
nav ul li .dropdown a{
  padding:15px 15px !important;
  border-bottom: solid 1px lightgray;
  margin: 0;
  filter: none;
  background-color: white;
  color: black;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
nav ul li .dropdown a:hover{
  background-color: var(--primary);
  color: white;
}


nav ul li:hover .dropdown{
  display: flex;
}

header{
  margin-top: 200px;
}
header.hero{
  margin-top: 0;
  height: 90vh;
  /*max-height: 900px;*/
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
}

header.hero .slider{
  height: 100%;
  display: flex;
  position: relative;
  --heading: white;
  --text: white;
}

header.hero .slider.no-image{
  --heading: var(--accent);
  --text: var(--accent);
}

header.hero .slider .top{
  margin-bottom: auto;
  margin-top: auto;
  display: flex;
}

header.hero .slider .top .slide-nr, 
header.hero .slider .top .slide-nr span{
  color: white;
  font-family: "Merriweather";
  font-size: 2.8rem;
  border-top: solid 5px var(--primary);
  font-weight: 600;
  display: inline;
  margin-top: 50px;
}

header.hero .slider .hero-slide{
  /*min-height: 600px;*/
  height: 100%;
  width: 100%;
  /*max-height: 900px;*/
  display: flex;
  background-size: cover;
  background-position: center;
  position: absolute;
  opacity: 0;

  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

header.hero .slider .hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header.hero .slider .hero-slide.active{
  opacity: 1;
}

header.hero .slider .grid{
  margin-top: auto;
  margin-bottom: 25px;
  z-index: 2;
  height: 100%;
}

header.hero .slider .grid .col-12{
  display: flex;
  flex-direction: column;
}


header.hero h1{
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 50px;
}
header.hero p{
  padding-bottom: 5px;
  margin-bottom: 0px;
}

footer{
  padding-bottom: 0;
  background-color: var(--primary);
  color: var(--accent);
  --text:var(--accent);
} 

footer .logo{
  max-width: 150px;
  margin: auto;
}


footer h4{
  margin-bottom: 10px;
  font-family: "Montserrat";
}
footer hr{
  margin-top: 20px;
  margin-bottom: 20px;
}


footer div{
  color: var(--text);
}

footer h3::after{
  content: "";
  display: block;
  height: 2px;
  width: 55px;
  background-color: var(--primary);
  margin-top: 15px;
}

footer .grid{
  gap: 100px;
}

footer .sub{
  padding-top: 25px;
  padding-bottom: 10px;
  margin-top: 25px;
  display: flex;
}

footer .sub .grid{
  margin: auto;
}

footer .sub p{
  text-align: center;
}

footer .small-logo{
  width: 100%;
  display: flex;
}

footer .small-logo img{
  width: 75%;
  max-width: 250px;
  margin: auto;
}

footer .offset-logo{
  position: absolute;
  margin-top: auto;
  margin-bottom: auto;
  width: 200px;
  margin-left: -300px;
  display: none;
}

.text-block.center{
  text-align: center;
  --maxWidth:725px;
}
.text-block.center p, 
.text-block.center a{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.text-block .buttons{
  display: flex;
}
.text-block .buttons a{
  margin-right: 50px;
}
.text-block .buttons a:last-of-type{
  margin-right: 0;
}

.text-block.center .buttons{
  justify-content: center;
}



.image-links{
  gap: 10px;
}
.image-links .link{
  background-color: var(--primary);
  color: white;
  overflow: hidden;
  display: flex;
  position: relative;
  background-size: cover;
  background-position: center;
}
.image-links .link:after{
  content: "";
  padding-bottom: 150%;
  display: block;
}

.image-links .link:before{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0%;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.image-links .link:hover:before{
  opacity: 75%;
}
.image-links .link .caption{
  position: absolute;
  width: calc(100% - 50px);
  padding: 25px;
  bottom: 0;
}
.image-links .link .caption h2, 
.image-links .link .caption p{
  color: white;
}

.image-links .link .caption h2{
  font-size: 1.5rem;
}
.image-links .link .caption a{
  color: white;
  border-bottom: solid 1px white !important;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.image-links .link:hover .caption a{
  opacity: 1;
}

.gallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery picture {
  width: calc(50% - 20px);
  margin: 10px;
  display: block;
  position: relative;
}

.nummer-banner{
  width: 100%;
  display: flex;
  padding:150px 0px;
  background-image: url("/assets/brand/dot-pattern.png");
  background-size: 10px;
}

.nummer-banner .container{
  display: grid;
  grid-template-areas: 
    "top1 top2  top3  top4"
    "num1 num2  num3  num4"
    "sub1 sub2  sub3  sub4";
  grid-template-columns: repeat(4, 1fr);
}
.nummer-banner .item{
  display: flex;
  flex-direction: column;
  grid-area: var(--area);
}
.nummer-banner .item.center{
  margin-top: 20px;
  margin-bottom: 20px;
}
.nummer-banner .item a{
  display: contents;
}
.nummer-banner .item .figure{
  width: 100%;
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: 7px;
  color: white;
}
.nummer-banner .item p{
  width: 100%;
  text-align: center;
  color: var(--primary);
  margin-top: 15px;
  font-weight: 600;
  font-size: 1.2rem;
}
.nummer-banner .item.top p{
  margin-top: auto;
  margin-bottom: 0;
}
.nummer-banner .item.bottom p{
  margin-top: 0;
}
.nummer-banner .item img{
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 25px;
}

.text-image{
  gap: 25px;
}

.text-image img{
  margin-right: 50px;
  width: calc(100% - 50px);
  height: 100%;
  object-fit: cover;
}
.text-image .image{
  position: relative;
}
.wassermarke{
  display: flex;
  flex-direction: column;
  position: absolute;
  color: white;
  right: 0;
  border: solid 5px var(--primary);
  width: 100px;
  height: 100px;
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
}

.text-image .image.right{
  margin-left: 50px;
  margin-right: auto;
}
.text-image .image.right .wassermarke{
  left: -50px;
  right: auto;
}


.wassermarke .content{
  position: absolute;
  bottom: -60px;
  right: 0;
  left: -25px;
  width: 150px;
}

.wassermarke .content div{
  color: black;
  font-family: 'Merriweather';
  font-size: 4rem;
  margin: 0;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
.wassermarke .content p{
  margin: 0;
  color: black;
  font-family: 'Merriweather';
  font-size: 2rem;
  margin-top: -20px;
  width: 100%;
  text-align: center;
}
main.post{
  --maxWidth:725px; 
}
main.post header{
  margin-top:100px;
  background: none;
}
main.post h1{
  color: black;
  text-transform: none;
}

.blog-post.large{
  display: grid;
  grid-template-columns: minmax(100px, 300px) 1fr;
  gap: 20px;
  margin:20px 0px;
  align-items: stretch;
}
.blog-post.large a{
  display: contents;
}

.blog-post h2{
  text-transform: none;
  font-size: 1.5rem;
}
.blog-post .content{
  display: flex;
  flex-direction: column;
}
.blog-post .content div{
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 0.8em;
}

.blog-post .content a{
  margin-top: auto;
  margin-bottom: 25px;
  display: block;
}

.blog-post .content div span{
  color: black;
}

.blog-post .cover{
  padding-top: 80%;
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 0;
}

.blog-post .cover img{
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.blog-post.large img{
  object-fit: cover;
  height: 100%;
  width: 100%;
}
 
.blog-post h2, 
.blog-post p, 
.blog-post a{
  margin-bottom: 10px;
}

.blog-post.text h2, 
.blog-post.text p, 
.blog-post.text a{
  margin-bottom: 10px;

}


.categories.list li{
  display: flex;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px var(--accent);
  font-weight: 600;
}
.categories.list li span{
  margin-left: auto;
}

.blog-sidebar form.search{
  margin-bottom: 25px;
}

.news.highlight{
  gap: 50px;
}
.hinweis{
  --text: var(--primary);
  --heading: var(--primary);
  --heading-dark: var(--primary);

}

.person-group{
  margin-bottom: 50px;
}
.person-group:last-of-type{
  margin-bottom: 0px;
}
.person{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.person .profilbild{
  width: 100%;
  position: relative;
  border: solid 2px var(--primary);
}
.person .infos p{
  margin-bottom: 0px;
}
.person .infos p.name{
  color: black;
  font-family: "Merriweather";
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.1em;
}

.person .profilbild::before{
  content: "";
  padding-bottom: 150%;
  display: block;
}

.person .profilbild img{
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  object-position: center;
}

.person.extended{
  flex-direction: row;
}

.person.extended .profilbild{
  width: 40%;
}
.person .profilbild .overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--primaryTransparent);
  color: white;
  --text: white;
  top: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.person .profilbild .overlay:hover{
  opacity: 1;
}
.person.extended .profilbild .overlay:hover{
  opacity: 0;
}


.person .profilbild .overlay .content{
  margin: auto;
  padding: 25px;
  font-size: 0.8em;
}
.person .profilbild .overlay .content p{
  text-align: left;
}

.person.extended .infos{
  width: calc(60% - 50px);
  padding: 25px;
  padding-bottom: 0px;
  margin-top: auto;
}
.person.extended .infos p{
  margin-bottom: 5px;
}
.person.extended .infos p b{
  color: black;
}
.person.extended p.name{
  font-size: 1.2em;
  color: black;
  font-weight: 700;
  margin-bottom: 25px;
}
.person .profilbild p,
.person .profilbild a{
  color: white;
}
.person .profilbild p.name{
  margin-bottom: 25px;
  font-size: 1.2em;
  font-weight: 700;
}
.person .profilbild div.info{
  margin-bottom: 25px;
}
.person .profilbild p{
  margin-bottom: 5px;
}

.contact .form-info{
  margin-bottom: 25px;
}

.hero .exposesearch{
  margin-bottom: 25px;
}
.exposesearch{
  display: flex;
  padding: 25px;
  background-color: white;
}
.exposesearch .action{
  display: flex;
  margin-top: 10px;
}
.exposesearch .action input{
  margin-left: auto;
}

.accordion {
  background-color: #f7f7f7;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
}
.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: auto;
}

.accordion .active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.accordion p{
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1rem;
}

.active, .accordion:hover {
  border-bottom: solid 3px var(--primary);
}

.accordion-panel {
  padding: 0 18px;
  background-color: #f7f7f7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-panel div{
  padding-top: 18px;
  padding-bottom: 18px;
}

.image-slider{
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.image-slider img{
  
  object-fit: cover;
}

.event h3{
  font-size: 1.2em;
  font-weight: 600;
}


@media (min-width: 1870px) {
  footer .offset-logo{
    display: flex;
  }
  footer .small-logo img{
    display: none;
  }
}

@media (min-width: 550px) {
  .gallery picture {
    width: calc(25% - 20px);
  }
  
}
@media (max-width: 750px) {

header.hero h1{
  font-size: 2.5rem;
}
}

.gallery picture::after {
  display: block;
  content: '';
  /* 16:9 aspect ratio */
  padding-bottom: 100%;
}

.gallery picture img, .gallery picture source {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}