* {
   box-sizing: border-box;
   -webkit-font-smoothing: antialiased;
   padding: 0;
   margin: 0;
}
.breadcrumb {
   display: none !important;
}
.container.zindex5 {
   margin: 0 !important;
   padding: 0 !important;
   max-width: unset !important;
}
main {
   padding-top: 50px;
}
.container.is--wide {
   max-width: 1380px;
}
.layout__container {
   margin-bottom: 100px;
}
.layout__container.is--mb-big {
   margin-bottom: 200px;
}
.layout__container.is--nooverflow {
   overflow: hidden;
}
@media only screen and (max-width:767px) {
   .layout__container {
      margin-bottom: 60px !important;
   }
}


/* text */
.text {
   font-size: 20px;
   line-height: 28px;
}
.text h1 {
   font-size: 42px;
   line-height: 55px;
}
.text h2 {
   font-size: 32px;
   line-height: 40px;
   padding-top: 0;
}
.text h4 {
   font-size: 18px;
   line-height: 40px;
   font-weight: normal !important;
   margin: 0 !important;
   padding: 0 !important;
}
.text h1,
.text h2,
.text h3,
.text h4 {
   color: #015E9A;
   font-weight: bold;
   margin-bottom: 20px;
}
.text a {
   color: #B3C535;
   font-weight: 600;
   text-decoration: underline;
}
.text ul {
   padding-left: 50px;
}
.text blockquote {
   font-size: 24px;
   line-height: 30px;
   color: #B3C535;
   font-style: italic;
   max-width: 550px;
   margin: 20px 0 40px;
}
.text__image--1 {
   height: 100%;
   display: flex;
   align-items: flex-end;
   padding-bottom: 50px;
}
.text__image--1 img {
   max-width: unset !important;
   width: 600px;
}
.text__image--1.is--alt {
   justify-content: right;
}
.text__image--1.is--alt img {
   width: 320px;
   height: 220px;
   object-fit: cover;
   float: right;
   margin-right: -100px;
}
.text__image--2.is--alt img {
   width: 200px;
   height: 140px;
   object-fit: cover;
   max-width: unset !important;
   float: right;
}
.text__button {
   border: none !important;
   display: flex;
   align-items: center;
   padding: 0;
   padding-top: 20px;
   background-color: transparent;
   outline: none !important;
}
.text__button span {
   color: #B3C535;
   font-size: 20px;
   font-style: normal;
   font-weight: 600;
   line-height: normal;
   margin-left: 10px;
}
.text__button span:before {
   content: 'Mehr lesen';
}
.text__button[aria-expanded="true"] span:before {
   content: 'Weniger lesen';
}
.text__button[aria-expanded="true"] svg {
   transform: rotate(45deg);
}
@media only screen and (max-width:991px) {
   .text__image--1,
   .text__image--2 {
      display: none;
   }
}



/* hero */
.hero {
   margin-bottom: 250px;
}
.hero__left {
   position: relative;
}
.hero__right {
   padding-top: 50px;
}
.hero__images {
   width: 50vw;
   margin-right: 0;
   position: absolute;
   top: 0;
   right: 0;
}
.hero__image {
   width: 100%;
   padding-top: 70%;
   position: relative;
   box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}
.hero__image img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.hero__image:nth-of-type(2) {
   width: 320px;
   height: 210px;
   padding-top: 0;
   position: absolute;
   right: -70px;
   bottom: -100px;
}
@media only screen and (max-width:1600px) {
   .hero {
      margin-bottom: unset;
   }
}
@media only screen and (max-width:991px) {
   .hero__images {
      width: calc(100% - 20px);
      position: relative;
      margin-bottom: 40px;
   }
   .hero__image:nth-of-type(2) {
      width: 200px;
      height: 130px;
      right: -20px;
      bottom: -50px;
   }
}

/* blog */
.blog__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-template-rows: auto auto;
   gap: 30px;
   margin-bottom: 60px;
}
.blog__item {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: flex-start;
   padding: 20px;
   position: relative;
   overflow: hidden;
   min-height: 300px;
}
.blog__item small {
   font-size: 15px;
   line-height: 22px;
   color: #fff;
   text-transform: uppercase;
}
.blog__item a {
   font-family: "Roboto Slab";
   font-size: 24px;
   font-style: normal;
   font-weight: bold;
   line-height: 28px;
   color: #fff;
   text-decoration: none !important;
}
.blog__item a:hover + img {
   transform: scale(1.1);
   filter: brightness(60%);
}
.blog__item img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(80%);
   z-index: -1;
   transition: 0.5s ease;
}
.blog__item:nth-child(1) {
   grid-column: 1 / 3;
   grid-row: 1 / 3;
}
.blog__item:nth-child(2) {
   grid-column: 3 / 3;
   grid-row: 1 / 2;
}
.blog__item:nth-child(3) {
   grid-column: 3 / 3;
   grid-row: 2 / 3;
}
.blog__item:nth-child(4) {
   grid-column: 1 / 2;
   grid-row: 3 / 4;
}
.blog__item:nth-child(5) {
   grid-column: 2 / 3;
   grid-row: 3 / 4;
}
.blog__item:nth-child(6) {
   grid-column: 3 / 4;
   grid-row: 3 / 4;
}
@media only screen and (max-width:991px) {
   .blog__grid {
      grid-template-columns: 1fr;
   }
   .blog__item {
      grid-column: unset !important;
      grid-row: unset !important;
      min-height: 300px !important;
   }
   .blog__item small {
      font-size: 15px !important;
      line-height: 22px !important;
   }
   .blog__item a {
      font-size: 24px !important;
      line-height: 28px !important;
   }
}
