@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,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  line-height: 1;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
img {
  display: block;
}

input,
textarea {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* ---
  Explode
--- */
/* ---
  String replace
--- */
/* Example of use is at the bottom of file */
/*

Example:

  div {
	 @include clear();
  }

Result:

  div:before,
  div:after {
	 content: '';
	 display: block;
	 clear: both;
  }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    div {
      background-attachment: fixed;

      @include browser('ie') {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
      }
    }

  Result:

    div {
      background-attachment: fixed;
    }

    @media screen and (min-width:0\0) {

      div {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
      }
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    input {
      color: $c-black;

      @include placeholder() {
        color: $c-black;
      }
    }

  Result:

    input {
      color: $c-black;
    }

    input::-webkit-input-placeholder {
      color: $c-black;
    }

    input::-moz-placeholder {
      color: $c-black;
    }

    input:-ms-input-placeholder {
      color: $c-black;
    }

    input:-moz-placeholder {
      color: $c-black;
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    ul {

      li {

        span {
          color: green;

          @include parent('li', '.red') {
            color: red;
          }

          @include parent('ul', '.hide || .hidden') {
            display: none;
          }
        }
      }
    }

  Result:

    ul li span {
      color: green;
    }

    ul li.red span {
      color: red;
    }

    ul.hide li span {
      display: none;
    }

    ul.hidden li span {
      display: none;
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    ul {
      margin-bottom: 15px;

      @include rwd(tablet, true) {
        margin-bottom: 30px;
      }

      li {
        margin-bottom: 20px;

        @include rwd(tablet) {
          margin-bottom: 10px;
        }
      }
    }

  Result:

    ul {
      margin-bottom: 15px;
    }

    ul li {
      margin-bottom: 20px;
    }

    @media (min-width: 769px) {
      ul {
        margin-bottom: 30px;
      }
    }

    @media (max-width: 768px) {
      ul li {
        margin-bottom: 10px;
      }
    }

*/
/* Example of use is at the bottom of file */
/*

  Example:

    div {
      float: left;

      @include rtl() {
        float: right;
      }
    }

  Result:

    div {
      float: left;
    }

    html[dir=rtl] div {
      float: right;
    }

*/
@keyframes up-and-down {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 6px);
  }
  75% {
    transform: translate(0, -6px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes opacitate {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacitate-fluently {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fluctuate {
  0% {
    fill: #fcfcfc;
  }
  40% {
    fill: #fcfcfc;
  }
  50% {
    fill: rgba(252, 252, 252, 0.2);
  }
  60% {
    fill: #fcfcfc;
  }
  100% {
    fill: #fcfcfc;
  }
}
/* Example of usage is at the bottom of file */
/*

  https://webagility.com/posts/the-ultimate-list-of-hacks-for-chromes-forced-yellow-background-on-autocompleted-inputs

  Example:

    input {
      @include autofill('#fff');
    }

  Result:

    input:-webkit-autofill {
      -webkit-box-shadow: 0 0 0 100px #fff inset;
    }

*/
/* Example of use is at the bottom of file */
/*

  Sample file name:
    • OpenSans-Bold.ttf
    • [prefix][delimiter][font_weight].ttf

  Mixin args:
    • path
    • font family
    • fonts weights:
      • name (font_weight in file names)
      • weight
      • style

  Example:
    $Roboto : (
      (
        'name'   : 'Regular',
        'weight' : 400,
        'style'  : 'normal'
      ),
      (
        'name'   : 'Medium',
        'weight' : 500,
        'style'  : 'normal'
      ),
      (
        'name'   : 'Bold',
        'weight' : 700,
        'style'  : 'normal'
      )
    );

    @include fontFace('../sources/fonts/font/', 'Roboto', 'Roboto', $Roboto);

*/
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../assets/fonts/Lato/Lato-Regular.woff2") format("woff2"), url("../assets/fonts/Lato/Lato-Regular.woff") format("woff"), url("../assets/fonts/Lato/Lato-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 300;
  src: url("../assets/fonts/Lato/Lato-Italic.woff2") format("woff2"), url("../assets/fonts/Lato/Lato-Italic.woff") format("woff"), url("../assets/fonts/Lato/Lato-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/Lato/Lato-Bold.woff2") format("woff2"), url("../assets/fonts/Lato/Lato-Bold.woff") format("woff"), url("../assets/fonts/Lato/Lato-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Arvo";
  font-style: normal;
  font-weight: 300;
  src: url("../assets/fonts/Arvo/Arvo-Regular.woff2") format("woff2"), url("../assets/fonts/Arvo/Arvo-Regular.woff") format("woff"), url("../assets/fonts/Arvo/Arvo-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Arvo";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/Arvo/Arvo-Bold.woff2") format("woff2"), url("../assets/fonts/Arvo/Arvo-Bold.woff") format("woff"), url("../assets/fonts/Arvo/Arvo-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "icomoon";
  src: url("../assets/fonts/icomoon/fonts/icomoon.eot?keyz29");
  src: url("../assets/fonts/icomoon/fonts/icomoon.eot?keyz29#iefix") format("embedded-opentype"), url("../assets/fonts/icomoon/fonts/icomoon.ttf?keyz29") format("truetype"), url("../assets/fonts/icomoon/fonts/icomoon.woff?keyz29") format("woff"), url("../assets/fonts/icomoon/fonts/icomoon.svg?keyz29#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-socials-instagram:before {
  content: "\E933";
}

.icon-socials-instragram:before {
  content: "\E932";
}

.icon-socials-bluesky:before {
  content: "\E931";
}

.icon-socials-mastodon:before {
  content: "\E92F";
}

.icon-logo-lite:before {
  content: "\E903";
}

.icon-chevron-tall-left:before {
  content: "\E927";
}

.icon-chevron-tall-right:before {
  content: "\E928";
}

.icon-chevron-left:before {
  content: "\E90D";
}

.icon-pause:before {
  content: "\E92D";
}

.icon-chevron-right:before {
  content: "\E911";
}

.icon-dropdown:before {
  content: "\E912";
}

.icon-home-breadcrumbs:before {
  content: "\E913";
}

.icon-grosse-co-working:before {
  content: "\E914";
}

.icon-grosse-newwork:before {
  content: "\E915";
}

.icon-grosse-compatibility:before {
  content: "\E916";
}

.icon-grosse-digital-transf:before {
  content: "\E917";
}

.icon-grosse-mobile-arbeit:before {
  content: "\E918";
}

.icon-grosse-employment-law:before {
  content: "\E919";
}

.icon-grosse-nachhaltigkeit:before {
  content: "\E92E";
}

.icon-search:before {
  content: "\E91A";
}

.icon-menu:before {
  content: "\E91B";
}

.icon-link-back:before {
  content: "\E91C";
}

.icon-link:before {
  content: "\E929";
}

.icon-close:before {
  content: "\E91D";
}

.icon-home2:before {
  content: "\E91E";
}

.icon-play:before {
  content: "\E91F";
}

.icon-play2:before {
  content: "\E92A";
}

.icon-play-circle:before {
  content: "\E92B";
}

.icon-link-kleine:before {
  content: "\E920";
}

.icon-extern-kleine:before {
  content: "\E921";
}

.icon-load:before {
  content: "\E90E";
}

.icon-check:before {
  content: "\E90F";
}

.icon-microphone:before {
  content: "\E910";
}

.icon-person-comments:before {
  content: "\E922";
}

.icon-socials-person:before {
  content: "\E923";
}

.icon-socials-share:before {
  content: "\E900";
}

.icon-socials-whatsapp:before {
  content: "\E902";
}

.icon-socials-mail-outline:before {
  content: "\E924";
}

.icon-socials-phone-outline:before {
  content: "\E904";
}

.icon-socials-twitter-outline:before {
  content: "\E925";
}

.icon-socials-twitter:before {
  content: "\E909";
}

.icon-socials-facebook:before {
  content: "\E901";
}

.icon-socials-soundcloud:before {
  content: "\E908";
}

.icon-socials-youtube:before {
  content: "\E926";
}

.icon-socials-linkedin:before {
  content: "\E905";
}

.icon-socials-mail:before {
  content: "\E907";
}

.icon-socials-web:before {
  content: "\E90A";
}

.icon-socials-xing:before {
  content: "\E906";
}

.icon-socials-instagram-outline:before {
  content: "\E90B";
}

.icon-socials-internet:before {
  content: "\E90C";
}

.icon-cc:before {
  content: "\E92C";
}

@media (min-width: 768px) {
  .showOnScroll {
    opacity: 0;
  }
  .showOnScroll--hidden {
    transform: translateY(100px);
  }
  .showOnScroll--hidden.showOnScroll--left {
    transform: translateX(-100px);
  }
  .showOnScroll--hidden.showOnScroll--right {
    transform: translateX(100px);
  }
  .showOnScroll--hidden.showOnScroll--circle {
    transform: scale(0);
  }
  .showOnScroll--active {
    transform: translateY(0);
    transition: transform 0.7s, opacity 1s;
    opacity: 1;
  }
  .showOnScroll--active.showOnScroll--left {
    transform: translateX(0);
  }
  .showOnScroll--active.showOnScroll--right {
    transform: translateX(0);
  }
  .showOnScroll--active.showOnScroll--circle {
    transform: scale(1);
  }
}

.button {
  display: inline-block;
  position: relative;
  padding: 0 12px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
  border: 1px solid #96bf4c;
  background-color: #fff;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.075rem;
  line-height: 30px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.button.active, .button:hover {
  background-color: #96bf4c;
  text-decoration: underline;
}
.button--noUnderline.active, .button--noUnderline:hover {
  text-decoration: none;
}
.button--social {
  width: 55px;
  height: 55px;
  border: 2px solid #96bf4c;
  background-color: #96bf4c;
}
.button--social::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  transition: color 0.3s;
  color: #3f4146;
}
.button--social.active:not(.button--static), .button--social:hover:not(.button--static) {
  background-color: #3f4146;
}
.button--social.active:not(.button--static)::after, .button--social:hover:not(.button--static)::after {
  color: #96bf4c;
}
.button--social.button--small {
  width: 35px;
  height: 35px;
  border: 1px solid #96bf4c;
}
.button--social.button--small::after {
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
}
.button--social.button--default {
  border: 2px solid transparent;
  background-color: transparent;
}
.button--socials-person::after {
  content: "\E923";
}
.button--socials-share::after {
  content: "\E900";
}
.button--socials-whatsapp::after {
  content: "\E902";
}
.button--socials-mail-outline::after {
  content: "\E924";
}
.button--socials-phone-outline::after {
  content: "\E904";
}
.button--socials-twitter-outline::after {
  content: "\E925";
}
.button--socials-twitter::after {
  content: "\E909";
}
.button--socials-bluesky::after {
  content: "\E931";
}
.button--socials-facebook::after {
  content: "\E901";
}
.button--socials-soundcloud::after {
  content: "\E908";
}
.button--socials-youtube::after {
  content: "\E926";
}
.button--socials-linkedin::after {
  content: "\E905";
}
.button--socials-mail::after {
  content: "\E907";
}
.button--socials-web::after {
  content: "\E90A";
}
.button--socials-xing::after {
  content: "\E906";
}
.button--socials-instagram::after {
  content: "\E933";
}
.button--socials-internet::after {
  content: "\E90C";
}
.button--socials-mastodon::after {
  content: "\E92F";
}
.button--microphone::after {
  content: "\E910";
}
.button--podcast::after {
  content: "\E910";
}
.button--play2::after {
  content: "\E92A";
}
.button--play-circle::after {
  content: "\E92B";
}
.button--video::after {
  content: "\E92B";
}
.button--big {
  padding: 0 32px;
  border: 2px solid #3f4146;
  background-color: #3f4146;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.089rem;
  line-height: 50px;
  text-transform: uppercase;
}
.button--big:hover {
  border: 2px solid #96bf4c;
  background-color: #3f4146;
}
.button--big.button--icon {
  padding: 0 74px 0 32px;
}
.button--big.button--icon::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  font-size: 24px;
  line-height: 24px;
  text-align: right;
  right: 28px;
  color: #96bf4c;
  content: "\E90E";
}
.button--big.button--disabled {
  border: 2px solid #ccc;
  background-color: #ccc;
  color: #b7b7b7;
  cursor: default;
}
.button--big.button--disabled:hover {
  text-decoration: none;
}
.button--big.button--disabled::after {
  color: #b7b7b7;
}
.button--static {
  cursor: default;
}

.buttonLink {
  display: inline-block;
  position: relative;
  height: 52px;
  padding: 0 40px 0 20px;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 52px;
  text-transform: uppercase;
  white-space: nowrap;
}
.buttonLink:hover {
  color: #fcfcfc;
}
.buttonLink::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
  right: 20px;
  left: auto;
  margin-top: -7px;
  content: "-->>";
}
.body__background--blue .buttonLink--product {
  border: 1px solid #fcfcfc;
  color: #fcfcfc;
}
.body__background--blue .buttonLink--product:hover {
  background-color: #fcfcfc;
  color: #96bf4c;
}

.body__background--blue .buttonLink--redInverted {
  border: 1px solid #96bf4c;
  background-color: #96bf4c;
  color: #fcfcfc;
}
.body__background--blue .buttonLink--redInverted:hover {
  background-color: #fcfcfc;
  color: #96bf4c;
}

@media (max-width: 479px) {
  .buttonLink--redInverted {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 70vw;
    height: 52px;
    margin: 0 auto;
    line-height: initial;
    white-space: normal;
  }
}
@media (max-width: 359px) {
  .buttonLink--redInverted {
    height: 90px;
  }
}
.body__background--blue .buttonLink--gray {
  border: 1px solid #b7b7b7;
  color: #b7b7b7;
}
.body__background--blue .buttonLink--gray:hover {
  background-color: #b7b7b7;
  color: #fcfcfc;
}

.body__background--blue .buttonLink--white {
  border: 1px solid #fcfcfc;
  color: #fcfcfc;
}
.body__background--blue .buttonLink--white:hover {
  background-color: #fcfcfc;
  color: #96bf4c;
}
.body__background--blue .buttonLink--whiteHover:hover {
  background-color: #fcfcfc;
  color: #96bf4c;
}
.buttonLink--topMargin {
  margin-top: 60px;
}

.buttonScrollTop {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 1111;
}
.buttonScrollTop__wrapper {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
}
.buttonScrollTop__link {
  display: inline-block;
  position: absolute;
  right: 30px;
  bottom: 84px;
  width: 54px;
  height: 52px;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
  border-radius: 20px 0;
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1023px) {
  .buttonScrollTop__link {
    right: auto;
    left: 78px;
  }
}
@media (max-width: 767px) {
  .buttonScrollTop__link {
    right: 20px;
    bottom: 26px;
    left: auto;
  }
}
@media (max-width: 479px) {
  .buttonScrollTop__link {
    bottom: 20px;
  }
}
.buttonScrollTop__link::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  content: "^";
}
.buttonScrollTop__link:hover {
  background-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
@media (max-width: 1023px) {
  .buttonScrollTop__link:hover {
    border: 1px solid #fff;
  }
}
.buttonScrollTop__link:hover::before {
  animation: upAndDown 1s ease-in infinite;
}

.hamburger {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hamburger__button {
  display: block;
  position: relative;
  flex-basis: 32px;
  flex-shrink: 0;
  padding: 0 0 20px;
  transition: transform 0.3s;
  border: 0;
  background-color: transparent;
  color: #96bf4c;
  font-size: 1.2rem;
  cursor: pointer;
}
.hamburger__button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  transform: translate3d(0, 23px, 0);
  transition: transform 0.3s;
  border-radius: 2px;
  background-color: #96bf4c;
  content: "";
}
.hamburger__button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  transform: translate3d(0, 31px, 0);
  transition: transform 0.3s;
  border-radius: 2px;
  background-color: #96bf4c;
  content: "";
}
.hamburger.active .hamburger__button::before {
  transform: rotate(45deg) translate3d(12px, 12px, 0);
}
.hamburger.active .hamburger__button::after {
  transform: rotate(-45deg) translate3d(-12px, 12px, 0);
}
.hamburger__buttonText {
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger__button.active .hamburger__buttonText {
  transform: scale(1.1);
}
.hamburger__button:hover .hamburger__buttonText {
  transform: scale(1.1);
}
.hamburger.active .hamburger__buttonText {
  opacity: 0;
}
.hamburger__svg {
  height: 60px;
  max-height: 70px;
  margin: 0 -17px;
  transition: transform 400ms;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hamburger__line {
  transition: stroke-dasharray 0.3s, stroke-dashoffset 0.3s, stroke 0.3s;
  fill: none;
  stroke: #b7b7b7;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.hamburger:hover .hamburger__line {
  stroke: #96bf4c;
}
.hamburger__line--bottom, .hamburger__line--top {
  stroke-dasharray: 40 121;
}
.hamburger.active .hamburger__line--bottom, .hamburger.active .hamburger__line--top {
  stroke-dashoffset: -68px;
}
.hamburger.active .hamburger__line--bottom, .hamburger.active .hamburger__line--top {
  stroke-dashoffset: -68px;
}
.hamburger.active .hamburger__rotate {
  transform: rotate(45deg);
}

.heading__h1 {
  margin-top: 30px;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 4.6rem;
  line-height: 5.4rem;
}
.heading__h1--blogger {
  margin-top: 0;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.03rem;
  line-height: 4.2rem;
}
.heading__h1--authorList {
  margin-top: 0;
  margin-bottom: 10px;
}
@media (max-width: 1279px) {
  .heading__h1 {
    font-size: 3.8rem;
    line-height: 4.6rem;
  }
}
@media (max-width: 1023px) {
  .heading__h1 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}
@media (max-width: 479px) {
  .heading__h1 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.heading__h2 {
  margin-top: 56px;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 4rem;
  line-height: 4.5rem;
}
@media (max-width: 479px) {
  .heading__h2 {
    font-size: 3rem;
    line-height: 3.6rem;
  }
}
.heading__h2--center {
  text-align: center;
}
.heading__h2--otherPosts {
  margin-top: 36px;
  font-size: 2.4rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .heading__h2--otherPosts {
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .heading__h2--singlePost {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .heading__h2--singlePost {
    font-size: 2rem;
  }
}
.heading__h3 {
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2.4rem;
  line-height: 3.2rem;
}
@media (max-width: 479px) {
  .heading__h3 {
    font-size: 2.2rem;
  }
}
.heading__h3--center {
  text-align: center;
}
.heading__reusable {
  margin: 50px 0 25px;
  border-top: 1px solid #b7b7b7;
  font-size: 2rem;
  font-weight: 100;
  line-height: 5rem;
}
.heading--noMargin {
  margin: 0;
}

.link {
  display: inline-block;
  position: relative;
  margin-top: 40px;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.113rem;
}
.link::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  font-size: 46px;
  line-height: 46px;
  text-align: right;
  right: -64px;
  transition: transform 0.3s;
  color: #96bf4c;
  content: "\E929";
}
.link.active, .link:hover {
  border-bottom: 1px solid rgba(63, 65, 70, 0.8);
  color: rgba(63, 65, 70, 0.8);
}
.link.active::after, .link:hover::after {
  transform: translateX(3px);
}
.link--blank {
  width: 46px;
  height: 20px;
  margin-top: 50px;
}
.link--blank:hover {
  border-bottom-color: transparent;
}
.link--blank::after {
  left: 0;
}
.link--liste {
  margin-left: 68px;
}
.link--liste::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  font-size: 46px;
  line-height: 46px;
  text-align: left;
  left: -68px;
}
.link--withMargin {
  margin-right: 68px;
}
.link--back {
  margin-left: 68px;
}
.link--back::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  font-size: 46px;
  line-height: 46px;
  text-align: left;
  left: -68px;
  content: "\E91C";
}
.link--back.active::after, .link--back:hover::after {
  transform: translateX(-3px);
}
.link--icon {
  margin-top: 20px;
  margin-left: 40px;
  color: #767676;
  font-size: 1.4rem;
  font-weight: 400;
}
.link--icon.active, .link--icon:hover {
  border-bottom: 1px solid rgba(63, 65, 70, 0.6);
}
.link--icon::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  font-size: 22px;
  line-height: 22px;
  text-align: left;
  left: -40px;
  color: #3f4146;
}
.link--white::after {
  color: #fff;
}
.link--teilen {
  margin: 0;
  letter-spacing: normal;
}
.link--teilen::after {
  font-size: 2rem;
}
.link--green {
  color: #96bf4c;
}
.link--green:hover {
  color: #96bf4c;
}
.link--green::after {
  left: -30px;
  color: #96bf4c;
}
.link--disabled {
  cursor: default;
}
.link--disabled:hover {
  border-bottom: 1px solid transparent;
}
.link--disabled:hover::after {
  transform: translateX(0);
}
.link--socials-person::after {
  content: "\E923";
}
.link--socials-share::after {
  content: "\E900";
}
.link--socials-whatsapp::after {
  content: "\E902";
}
.link--socials-mail-outline::after {
  content: "\E924";
}
.link--socials-phone-outline::after {
  content: "\E904";
}
.link--socials-twitter-outline::after {
  content: "\E925";
}
.link--socials-twitter::after {
  content: "\E909";
}
.link--socials-bluesky::after {
  content: "\E931";
}
.link--socials-facebook::after {
  content: "\E901";
}
.link--socials-soundcloud::after {
  content: "\E908";
}
.link--socials-youtube::after {
  content: "\E926";
}
.link--socials-linkedin::after {
  content: "\E905";
}
.link--socials-mastodon::after {
  content: "\E92F";
}
.link--socials-mail::after {
  content: "\E907";
}
.link--socials-web::after {
  content: "\E90A";
}
.link--socials-xing::after {
  content: "\E906";
}
.link--socials-instagram::after {
  content: "\E933";
}
.link--socials-internet::after {
  content: "\E90C";
}

.schlagwort {
  display: inline-block;
  padding: 0 14px;
  border: 1px solid #96bf4c;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
  letter-spacing: 0.016rem;
  line-height: 2.4rem;
}

.input__container {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}
.input__container:last-child {
  margin-bottom: 0;
}
.input__container--error {
  border: 1px solid #96bf4c;
}
.input__container--mini {
  margin-bottom: 0;
}
.input__container--captcha {
  display: flex;
  align-items: center;
}
.input__container--iconRight {
  width: auto;
  margin-right: 78px;
}
.input__container--iconCalendar::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -22.5px;
  margin-left: -22.5px;
  right: -78px;
  left: auto;
  color: #96bf4c;
  content: "calendar";
}
.input__container input {
  width: 100%;
  height: 58px;
  padding: 0 24px;
  transition: border-color 0.3s ease-in;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #96bf4c;
  font-size: 1.6rem;
  line-height: 58px;
}
.input__container:hover input {
  border: 1px solid rgba(150, 191, 76, 0.33);
}

.input__container:focus input {
  border: 1px solid rgba(150, 191, 76, 0.33);
}

.input__container input[type=file] {
  padding: 18px 24px;
  background-color: transparent;
  line-height: 26px;
}
@media (max-width: 479px) {
  .input__container input[type=file] {
    padding: 12px 24px;
  }
}
@media (max-width: 359px) {
  .input__container input[type=file] {
    padding: 9px 24px;
  }
}
.input__container input::-moz-placeholder {
  color: #b7b7b7;
}
.input__container input::placeholder {
  color: #b7b7b7;
}
.input__container input:-webkit-autofill {
  box-shadow: 0 0 0 60px #fff inset;
}
@media (max-width: 479px) {
  .input__container input {
    height: 50px;
    font-size: 1.6rem;
    line-height: 64px;
  }
}
@media (max-width: 359px) {
  .input__container input {
    height: 44px;
    padding: 0 25px;
    font-size: 1.4rem;
    line-height: 44px;
  }
}
.input__container input.input--mini {
  height: 28px;
  padding: 0 8px;
  border-radius: 3px;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.input__container input.input--noRightRadius {
  border-right-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input__container--withIcon {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.input__container--withIcon input {
  padding: 0 22px;
}
.input__container--slim {
  height: 76px;
  margin-bottom: 22px;
}
.input__container--slim input {
  height: 74px;
  font-size: 1.6rem;
  line-height: 74px;
}
@media (max-width: 1365px) {
  .input__container--slim {
    height: 46px;
  }
  .input__container--slim input {
    height: 44px;
    font-size: 1.6rem;
    line-height: 44px;
  }
}
@media (max-width: 359px) {
  .input__container--slim {
    height: 32px;
    margin-bottom: 5px;
  }
  .input__container--slim input {
    height: 30px;
    font-size: 1.4rem;
    line-height: 30px;
  }
}
.input__text {
  display: inline-block;
  padding-bottom: 10px;
  color: #96bf4c;
  font-size: 1.4rem;
}
.input__error {
  display: inline-block;
  max-height: 20px;
  margin-top: 6px;
  transition: max-height 0.3s;
  color: #96bf4c;
  font-size: 1.4rem;
  overflow: hidden;
}
.input__error--hidden {
  max-height: 0;
}
.input__error--center:not(.input__error--hidden) {
  width: 100%;
  max-height: initial;
  margin: 10px auto;
  text-align: center;
}
.input__icon {
  padding-left: 42px;
  color: #b7b7b7;
  font-size: 2rem;
}
@media (max-width: 359px) {
  .input__icon {
    padding-left: 16px;
  }
}

.checkbox__container {
  display: block;
  position: relative;
  min-height: 28px;
  margin-bottom: 26px;
  font-size: 22px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 479px) {
  .checkbox__container {
    margin-bottom: 12px;
  }
}
@media (max-width: 359px) {
  .checkbox__container {
    margin-bottom: 8px;
  }
}
.checkbox__container--noMarginBottom {
  margin-bottom: 0;
}
.checkbox__container--marginTop {
  margin-top: 10px;
}
.checkbox__container input {
  position: absolute;
  cursor: pointer;
  opacity: 0;
}
.checkbox__container input:checked ~ .checkbox__checkmarkWrapper span {
  color: #b7b7b7;
}
.checkbox__container input:checked ~ .checkbox__checkmarkWrapper .checkbox__checkmark::after {
  color: #b7b7b7;
  content: "X checked";
}
.checkbox__checkmark {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0;
  padding-right: 20px;
  padding-left: 45px;
}
@media (max-width: 479px) {
  .checkbox__checkmark {
    padding-right: 0;
    padding-left: 36px;
  }
}
.checkbox__checkmark::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  left: 13px;
  transition: color 0.3s ease-in;
  color: #b7b7b7;
  content: "- unchecked";
}
@media (max-width: 479px) {
  .checkbox__checkmark::after {
    font-size: 26px;
    line-height: 32px;
  }
}
.checkbox__checkmark span {
  display: block;
  transition: color 0.3s ease-in;
  color: #b7b7b7;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
}
@media (max-width: 1023px) {
  .checkbox__checkmark span {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media (max-width: 479px) {
  .checkbox__checkmark span {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
.checkbox__checkmark--smaller > span {
  color: #b7b7b7;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 24px;
}
@media (max-width: 1023px) {
  .checkbox__checkmark--smaller > span {
    line-height: 1.8rem;
  }
}
@media (max-width: 479px) {
  .checkbox__checkmark--smaller > span {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 359px) {
  .checkbox__checkmark--smaller > span {
    font-size: 1.2rem;
    line-height: 1.3rem;
  }
}
.checkbox__checkmarkWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: border-color 0.3s ease-in;
  border: 1px solid transparent;
  font-size: 2rem;
  font-weight: 600;
}
.checkbox__checkmarkWrapper:hover span {
  color: #b7b7b7;
}
.checkbox__checkmarkWrapper:hover span::after {
  color: #b7b7b7;
}

.checkbox2 a {
  color: #96bf4c;
  font-weight: 500;
}

.select--light {
  display: inline-block;
}
.select__field {
  position: relative;
}
.select__label {
  display: flex;
  align-items: center;
  color: #767676;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
  line-height: 22px;
  white-space: nowrap;
}
.select__select {
  position: relative;
}
.select__select::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  background-color: #96bf4c;
  content: "";
  pointer-events: none;
}
.select__select::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: -0.9rem;
  transform: rotate(-45deg);
  transform-origin: center;
  transition: border 0.3s;
  border: 2px solid #3f4146;
  border-top: 0;
  border-right: 0;
  border-radius: 2px;
  content: "";
  pointer-events: none;
}
.select__select:hover::after, .select__select:focus::after {
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-top: 0;
  border-right: 0;
}
.select__select.select--light::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background-color: transparent;
}
.select__select.select--light::after {
  top: 5px;
  right: 7px;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0;
  transform: rotate(-45deg);
  transform-origin: center;
  transition: border 0.3s;
  border: 1px solid #3f4146;
  border-top: 0;
  border-right: 0;
  border-radius: 2px;
  content: "";
  pointer-events: none;
}

.select__select select {
  width: 100%;
  height: 34px;
  padding-right: 40px;
  padding-left: 15px;
  transition: border 0.3s;
  border: 1px solid #96bf4c;
  background-color: #3f4146;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3.2rem;
  cursor: pointer;
}
.select__select select option {
  background-color: #3f4146;
  color: #c5c5c5;
}
.select__select:hover select {
  border: 1px solid rgba(150, 191, 76, 0.5);
}

.select__select:focus select {
  border: 1px solid rgba(150, 191, 76, 0.5);
}

.select__select.select--light select {
  width: auto;
  height: 22px;
  padding-right: 26px;
  border: 0 solid transparent;
  background-color: transparent;
  color: #3f4146;
  line-height: 22px;
}
.select__select.select--light select option {
  background-color: #f5f5f5;
  color: #3f4146;
}

.textarea__container {
  display: block;
  position: relative;
  margin-bottom: 32px;
  font-size: 22px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.textarea__container--nomargin {
  margin-bottom: 0;
}
.textarea__container textarea {
  width: 100%;
  min-height: 130px;
  padding: 12px 24px;
  transition: border-color 0.3s ease-in;
  border: 1px solid rgba(150, 191, 76, 0.12);
  border-radius: 5px;
  font-size: 1.8rem;
}
.textarea__container textarea::-moz-placeholder {
  color: #b7b7b7;
}
.textarea__container textarea::placeholder {
  color: #b7b7b7;
}
.textarea__container textarea:hover {
  border: 1px solid #96bf4c;
}
@media (max-width: 1365px) {
  .textarea__container textarea {
    min-height: 114px;
    padding: 18px 45px;
  }
}
@media (max-width: 1023px) {
  .textarea__container textarea {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}
@media (max-width: 479px) {
  .textarea__container textarea {
    min-height: 82px;
    padding: 16px 20px;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 359px) {
  .textarea__container textarea {
    min-height: 72px;
    padding: 12px 20px;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
.textarea__subLabel {
  position: absolute;
  top: 136px;
  right: 0;
  left: 0;
  color: #b7b7b7;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
  text-align: center;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #fcfcfc;
  color: #000;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2rem;
  font-size-adjust: 100%;
}

html {
  font-size: 62.5%;
}
html[dir=rtl] {
  font-size: 72.5%;
}

button,
select,
textarea,
input {
  font-family: "Lato", Tahoma, Arial;
}

*:focus {
  outline: none;
  box-shadow: none;
}

*::-moz-focus-inner {
  border: 0;
}

*::-moz-placeholder {
  opacity: 1;
}

*::placeholder {
  opacity: 1;
}

*::-moz-selection {
  background-color: #000;
  color: #96bf4c;
}

*::selection {
  background-color: #000;
  color: #96bf4c;
}

input,
textarea {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
}
input[type=radio] {
  -webkit-appearance: radio;
     -moz-appearance: radio;
          appearance: radio;
}
input[disabled=disabled], input[disabled], input:disabled {
  opacity: 1;
}

select {
  border-radius: 0;
  text-indent: 0.01px;
  text-overflow: "";
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select::-ms-expand {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

.column {
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.column--c3 .column__col {
  width: 33.33%;
}
@media (max-width: 1023px) {
  .column--c3 .column__col {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .column--c3 .column__col {
    width: 100%;
  }
}
.column--c2 .column__col {
  width: 50%;
}
@media (max-width: 1023px) {
  .column--c2 .column__col {
    width: 100%;
  }
}
.column--c2 .column__col--full {
  padding: 0;
}
@media (max-width: 1023px) {
  .column--c2 {
    flex-direction: column;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.wrapper--fill {
  height: 100%;
}
.wrapper--thin {
  max-width: 1440px;
}
.wrapper--full {
  max-width: 1440px;
  padding: 0;
}
@media (max-width: 767px) {
  .wrapper {
    padding: 0;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  transition: max-width 0.3s;
  background-color: #f5f5f5;
}
.container.active {
  max-width: none;
}
.container--black {
  background-color: #3f4146;
}
.container--white {
  background-color: #fff;
}
section.postFooter .container {
  padding: 122px 0 60px;
  background-color: #f7f7f7;
}
.container__inner {
  position: relative;
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: border-box;
}
.container__inner--noPadding {
  padding-right: 0;
  padding-left: 0;
}
.container__inner--paddingBottom {
  padding-bottom: 60px;
}
.container__inner--morePadding {
  padding-right: 45px;
  padding-left: 45px;
}
.container__inner--relative {
  position: relative;
}
.container__inner--overflow {
  overflow: hidden;
}
.container__inner--post {
  padding-right: 10px;
  padding-left: 10px;
}
@media (max-width: 1023px) {
  .container__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .container__inner--noPadding {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 479px) {
  .container__inner {
    padding-right: 5px;
    padding-left: 5px;
  }
  .container__inner--noPadding {
    padding-right: 0;
    padding-left: 0;
  }
}

.sections {
  margin-top: 85px;
  padding: 0;
}
.sections--aktuelles {
  margin-top: 125px;
}
.cookie.active + .header + .sections {
  margin-top: 210px;
}

.sections--page {
  padding: 0 0 40px;
}
.sections--noBPadding {
  padding-bottom: 0;
}

.section {
  overflow: hidden;
}
.section--noOverflow {
  overflow: visible;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 10;
}
.cookie.active + .header {
  top: 125px;
}

.header--sticky {
  transform: translateY(-85px);
  z-index: 10;
}
.header--sticky.header--stickyUp {
  transform: translateY(0);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  transition: transform 0.3s;
}
@media (max-width: 1279px) {
  .header__inner {
    top: 50px;
  }
}
@media (max-width: 479px) {
  .header__inner {
    padding: 0 7px;
  }
}
.header__innerCol {
  flex-basis: 33.3333333333%;
}
@media (max-width: 767px) {
  .header__innerCol {
    max-width: 33.3333333333%;
  }
}
@media (max-width: 599px) {
  .header__innerCol {
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: none;
  }
}
.header__buttons {
  display: flex;
  justify-content: flex-end;
}
.header__menu {
  position: absolute;
  top: 85px;
  right: 0;
  width: 368px;
  height: 100vh;
  padding: 85px 30px 20px 35px;
  transform: translate3d(736px, 0, 0);
  transition: transform 0.6s, opacity 0.3s 0.3s;
  background-color: #3f4146;
  opacity: 0;
}
@media (max-width: 1279px) {
  .header__menu {
    padding: 50px 30px 20px 35px;
  }
}
@media (max-width: 599px) {
  .header__menu {
    padding: 30px 30px 20px 35px;
  }
}
@media (max-width: 359px) {
  .header__menu {
    width: 320px;
    padding: 10px 16px 20px;
  }
}
.header__menu.active {
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s, opacity 0.3s;
  opacity: 1;
}
.header__backdrop {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -100%);
}
.header__backdrop.active {
  transform: translate(-50%, 0);
}
.header__themen {
  padding-bottom: 20px;
  color: #fff;
  font-family: "Lato", Tahoma, Arial;
  line-height: 2.7rem;
}
.header__menuTop a, .header__menuMiddle a {
  display: block;
  transition: opacity 0.3s;
  font-family: "Lato", Tahoma, Arial;
  line-height: 27px;
}
@media (max-width: 1279px) {
  .header__menuTop a, .header__menuMiddle a {
    font-size: 1.8rem;
  }
}
@media (max-width: 359px) {
  .header__menuTop a, .header__menuMiddle a {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}
.header__menuTop a:hover, .header__menuMiddle a:hover {
  opacity: 0.8;
}
.header__menuTop {
  padding-bottom: 36px;
}
.header__menuTop li + li {
  margin-top: 10px;
}
@media (max-width: 599px) {
  .header__menuTop {
    margin-top: 10px;
  }
}
.header__menuTop a {
  display: flex;
  position: relative;
  color: #96bf4c;
  line-height: 34px;
}
.header__menuTop a .menu-item-img {
  display: inline-block;
  width: 34px;
  height: auto;
  height: intrinsic;
  margin-right: 10px;
  margin-left: -5px;
}
.header__menuMiddle {
  padding-top: 36px;
  padding-bottom: 40px;
  border-top: 1px solid #fff;
}
@media (max-width: 1279px) {
  .header__menuMiddle {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.header__menuMiddle li + li {
  margin-top: 14px;
}
.header__menuMiddle li:last-child a {
  padding-left: 32px;
}
.header__menuMiddle li:last-child a::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
  content: "\E921";
}
.header__menuMiddle a {
  position: relative;
  color: #fff;
}
.header__menuLogo {
  display: flex;
  justify-content: center;
  width: 100%;
  border-top: 1px solid #fff;
}
@media (min-width: 600px) {
  .header__menuLogo {
    display: none;
  }
}
.header__menuImage {
  padding-top: 25px;
}
.header__menuBottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
@media (min-width: 600px) {
  .header__menuBottom {
    padding-top: 30px;
    border-top: 1px solid #fff;
  }
}
@media (max-width: 479px) {
  .header__menuBottom {
    flex-wrap: wrap;
  }
}
.header__menuBottom a {
  transition: opacity 0.3s;
  color: #c4c4c4;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.6rem;
}
.header__menuBottom a:hover {
  opacity: 0.8;
}
.header__aktuelles {
  height: 40px;
  border-top: 1px solid #6e6f74;
}

main {
  transition: transform 0.6s;
}
main.hamburgerOn {
  transform: translateX(360px);
  transition: transform 0.6s;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}
.footer.active {
  opacity: 1;
  z-index: 10;
  pointer-events: initial;
}
@media (max-width: 1023px) {
  .footer {
    position: static;
    opacity: 1;
    pointer-events: initial;
  }
}
.footer__topInner {
  display: flex;
  padding: 64px 80px 84px;
  border-bottom: 1px solid rgba(151, 151, 151, 0.42);
}
@media (max-width: 1279px) {
  .footer__topInner {
    flex-wrap: wrap;
    padding: 64px 40px 84px;
  }
}
@media (max-width: 479px) {
  .footer__topInner {
    padding: 64px 16px 54px;
  }
}
.footer__middleInner {
  padding: 42px 80px 56px;
}
@media (max-width: 1279px) {
  .footer__middleInner {
    padding: 42px 40px 56px;
  }
}
@media (max-width: 479px) {
  .footer__middleInner {
    padding: 20px 16px 56px;
  }
}
.footer__bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 80px;
}
@media (max-width: 1279px) {
  .footer__bottomInner {
    padding: 0 40px;
  }
}
@media (max-width: 479px) {
  .footer__bottomInner {
    flex-direction: column;
    height: auto;
    padding: 20px 15px;
  }
}
.footer__topCol {
  flex-basis: 33.3333333333%;
}
@media (max-width: 1279px) {
  .footer__topCol {
    flex-basis: 50%;
  }
}
.footer__title {
  padding-bottom: 40px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.footer__titleLink {
  padding-bottom: 6px;
  transition: border-bottom-color 0.3s;
  border-bottom: 2px solid transparent;
}
.footer__titleLink:hover {
  border-bottom: 2px solid #96bf4c;
}
.footer__menuBottom {
  display: flex;
}
@media (max-width: 479px) {
  .footer__menuBottom {
    margin-top: 16px;
  }
}
.footer__menuBottom li + li {
  margin-left: 16px;
}
.footer__menuBottom a {
  display: block;
  transition: opacity 0.3s;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.5rem;
}
.footer__menuBottom a:hover {
  opacity: 0.8;
}
.footer__filters {
  display: flex;
  justify-content: space-between;
  margin: 0 -30px;
}
@media (max-width: 1023px) {
  .footer__filters {
    margin: 0 -11px;
  }
}
@media (max-width: 599px) {
  .footer__filters {
    flex-basis: 100%;
    flex-direction: column;
  }
}
.footer__filter {
  flex-basis: 33.3333333333%;
  padding: 0 30px;
}
@media (max-width: 1023px) {
  .footer__filter {
    padding: 0 11px;
  }
}
@media (max-width: 599px) {
  .footer__filter {
    flex-basis: 100%;
    margin-top: 20px;
  }
}

.allePodcasts__banner {
  margin-top: 80px;
  padding: 38px 130px 40px;
  background-color: #3f4146;
  text-align: center;
}
@media (max-width: 479px) {
  .allePodcasts__banner {
    padding: 38px 32px 40px;
  }
}
.allePodcasts__heading {
  display: inline-block;
  position: relative;
  padding-left: 72px;
  color: #fff;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2.6rem;
  text-align: center;
}
.allePodcasts__heading::before {
  position: absolute;
  top: 50%;
  left: -90px;
  width: 206px;
  height: 206px;
  transform: translateY(-50%);
  background-image: url("../assets/images/newsletter-banner-back.png");
  background-repeat: no-repeat;
  content: "";
}
.allePodcasts__heading::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 40px;
  line-height: 40px;
  text-align: left;
  color: #96bf4c;
  content: "\E910";
}
.allePodcasts__items {
  display: flex;
  margin: 40px -15px 0;
}
@media (max-width: 1279px) {
  .allePodcasts__items {
    flex-wrap: wrap;
  }
}
.allePodcasts__item {
  flex-basis: 33.3333333333%;
  padding: 0 15px;
}
@media (max-width: 1279px) {
  .allePodcasts__item {
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .allePodcasts__item {
    flex-basis: 100%;
  }
}
.allePodcasts__link {
  position: relative;
  transition: color 0.3s;
}
.allePodcasts__link::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  font-size: 44px;
  line-height: 44px;
  text-align: right;
  right: -86px;
  transition: transform 0.3s;
  color: #96bf4c;
  content: "\E929";
}
.allePodcasts__link:hover {
  color: #96bf4c;
}
.allePodcasts__link:hover::after {
  transform: translate3d(3px, 0, 0);
}

.archive__inner {
  padding-bottom: 60px;
  overflow: hidden;
}
.archive__heading {
  margin-top: 84px;
  margin-bottom: 60px;
  font-size: 3.6rem;
  line-height: 4.4rem;
}
@media (max-width: 1279px) {
  .archive__heading {
    font-size: 3.8rem;
    line-height: 4.6rem;
  }
}
@media (max-width: 1023px) {
  .archive__heading {
    margin-bottom: 0;
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}
@media (max-width: 479px) {
  .archive__heading {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.archive__heading--category {
  position: relative;
  padding-left: 60px;
  background-image: url("../assets/images/icon-back.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 26px 40px;
}
@media (max-width: 479px) {
  .archive__heading--category {
    padding-left: 40px;
  }
}
.archive__heading--category::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  font-size: 36px;
  line-height: 36px;
  text-align: left;
  color: #3f4146;
}
.archive__heading--icon-co-working::before {
  content: "\E914";
}
.archive__heading--icon-new-work::before {
  content: "\E915";
}
.archive__heading--icon-compatibility::before {
  content: "\E916";
}
.archive__heading--icon-vereinbarkeit::before {
  content: "\E916";
}
.archive__heading--icon-digitale-transformation::before {
  content: "\E917";
}
.archive__heading--icon-mobile-arbeit::before {
  content: "\E918";
}
.archive__heading--icon-arbeitsrecht::before {
  content: "\E919";
}
.archive__heading--icon-nachhaltigkeit::before {
  content: "\E92E";
}
.archive__description {
  font-size: 2rem;
  line-height: 160%;
}

.bloggerList__lettersWrapper {
  display: flex;
  flex: 1;
  transition: transform 0.3s;
}
.bloggerList__authorLetter {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  max-width: 55px;
  height: 100%;
  transition: background-color 0.3s;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2.1rem;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
.bloggerList__authorLetter.active, .bloggerList__authorLetter:hover {
  background-color: #3f4146;
  color: #96bf4c;
}
@media (max-width: 1023px) {
  .bloggerList__authorLetter {
    min-width: 55px;
  }
}
@media (max-width: 479px) {
  .bloggerList__authorLetter {
    min-width: 40px;
  }
}
.bloggerList__lettersControl {
  display: none;
  position: absolute;
  width: 55px;
  height: 100%;
  background-color: #3f4146;
  color: #96bf4c;
  cursor: pointer;
  z-index: 1;
}
.bloggerList__lettersControl--left {
  left: 0;
}
.bloggerList__lettersControl--right {
  right: 0;
}
.bloggerList__lettersControl span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 1023px) {
  .bloggerList__lettersControl {
    display: block;
  }
}
@media (max-width: 479px) {
  .bloggerList__lettersControl {
    width: 40px;
  }
}
.bloggerList__inner {
  padding-top: 60px;
  padding-bottom: 41px;
}
@media (max-width: 1023px) {
  .bloggerList__inner {
    max-width: 695px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 54px;
  }
}
@media (max-width: 767px) {
  .bloggerList__inner {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.bloggerList__info {
  margin-top: 30px;
}
.bloggerList__authorSelect {
  display: flex;
  position: relative;
  max-width: 1440px;
  height: 48px;
  margin: 0 auto;
  background-color: #96bf4c;
  overflow-x: hidden;
}
@media (max-width: 1023px) {
  .bloggerList__authorSelect {
    padding: 0 55px;
  }
}
@media (max-width: 479px) {
  .bloggerList__authorSelect {
    padding: 0 40px;
  }
}
.bloggerList__checkProfile {
  position: relative;
  padding-bottom: 80px;
}
.bloggerList__checkProfile::after {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #c4c4c4;
  content: "";
  opacity: 0.3;
}
.bloggerList__articleTitle {
  display: block;
  padding-top: 20px;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2.4rem;
  line-height: 34px;
}
.bloggerList__linkUnderline {
  transition: border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.bloggerList__articleTitle:hover .bloggerList__linkUnderline {
  border-bottom: 1px solid #3f4146;
}
.bloggerList__column {
  position: relative;
  padding: 51px 58px 52px 62px;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .bloggerList__column {
    padding: 48px 34px 44px 43px;
  }
}
@media (max-width: 479px) {
  .bloggerList__column {
    padding: 40px 13px 25px;
  }
}
@media (min-width: 768px) {
  .bloggerList__column {
    overflow: hidden;
  }
}
.bloggerList__nav {
  display: flex;
  justify-content: space-between;
}
.bloggerList__navButton--hidden {
  opacity: 0;
}

.articleMasonry__loader {
  height: 60px;
}
.articleMasonry__more {
  margin: 60px 0;
  text-align: center;
}
@media (max-width: 479px) {
  .articleMasonry__more {
    margin-top: 30px;
  }
}

.bloggerSingle__inner {
  flex: 1;
  padding-top: 40px;
}
.bloggerSingle__column {
  position: relative;
  background-color: #fff;
}
.bloggerSingle__column--bloggerList {
  padding: 51px 58px 52px 62px;
}
@media (max-width: 1023px) {
  .bloggerSingle__column--bloggerList {
    padding: 48px 34px 44px 43px;
  }
}
@media (max-width: 479px) {
  .bloggerSingle__column--bloggerList {
    padding: 40px 13px 25px;
  }
}
.bloggerSingle__column--singleBlogger {
  padding: 47px 62px 80px 58px;
}
@media (max-width: 1023px) {
  .bloggerSingle__column--singleBlogger {
    padding: 27px 57px 35px 43px;
  }
}
@media (max-width: 479px) {
  .bloggerSingle__column--singleBlogger {
    padding: 25px 13px 50px;
  }
}
@media (min-width: 768px) {
  .bloggerSingle__column {
    overflow: hidden;
  }
}
.bloggerSingle__vita {
  margin-top: 40px;
  line-height: 32px;
}
.bloggerSingle__vitaDesc {
  color: #120a26;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2rem;
  font-weight: 400;
  line-height: 32px;
}
.bloggerSingle__vitaDesc span {
  color: #6a7b21;
  cursor: pointer;
}
.bloggerSingle__vitaDesc span.disabled {
  display: none;
}
@media (max-width: 479px) {
  .bloggerSingle__vitaDesc {
    font-size: 1.6rem;
    line-height: 26px;
  }
}

.contactUs {
  width: 100%;
}
@media (max-width: 599px) {
  .contactUs {
    margin-bottom: -30px;
  }
}
.contactUs__inner {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .contactUs__inner {
    flex-direction: column;
  }
}
.contactUs__left {
  display: flex;
  flex-basis: 400px;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 767px) {
  .contactUs__left {
    flex-basis: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.contactUs__right {
  display: flex;
  flex-grow: 1;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .contactUs__right {
    margin-top: 20px;
  }
}
.contactUs__heading {
  position: relative;
}
@media (max-width: 767px) {
  .contactUs__heading {
    flex-basis: 100%;
  }
}
.contactUs__heading::before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 40px;
  height: 5px;
  background-color: #96bf4c;
  content: "";
}
.contactUs__means {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .contactUs__means {
    flex-basis: 50%;
  }
}
@media (max-width: 599px) {
  .contactUs__means {
    max-width: 50%;
    font-size: 1.3rem;
  }
}
@media (max-width: 479px) {
  .contactUs__means {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.contactUs__meansItem {
  margin-top: 8px;
}
.contactUs__link {
  display: block;
  position: relative;
  padding-left: 53px;
  transition: color 0.3s;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.035rem;
  line-height: 4rem;
}
.contactUs__link:hover {
  color: #96bf4c;
}
.contactUs__link:hover::after {
  transform: scale(1.1) translate3d(0, 0, 0);
  color: #96bf4c;
}
.contactUs__link::after {
  transform: scale(1) translate3d(0, 0, 0);
  transition: transform 0.3s, color 0.3s;
}
.contactUs__link--mail::before, .contactUs__link--phone::before {
  position: absolute;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #96bf4c;
  content: "";
  opacity: 0.15;
}
.contactUs__link--mail::after, .contactUs__link--phone::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  font-size: 24px;
  line-height: 24px;
  text-align: left;
  left: 7px;
  color: #96bf4c;
}
.contactUs__link--mail::after {
  content: "\E924";
}
.contactUs__link--phone::after {
  content: "\E904";
}
.contactUs__text {
  margin-top: 30px;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.035rem;
  line-height: 2.6rem;
}
.contactUs__text strong {
  font-weight: 700;
}
@media (max-width: 767px) {
  .contactUs__text {
    flex-basis: 50%;
  }
}
@media (max-width: 599px) {
  .contactUs__text {
    max-width: 50%;
    font-size: 1.3rem;
    line-height: 2.4rem;
  }
}
@media (max-width: 479px) {
  .contactUs__text {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.contactUs__buttonWrapper {
  position: relative;
}
.contactUs__button {
  margin-top: 40px;
}
.contactUs__cityscape {
  display: block;
  width: calc(190px + 100%);
  height: auto;
  margin-right: -90px;
  margin-left: -100px;
  /* &.animation {
    $animation-length: 30s;

    #cityscape_front {
      animation: horizontalMoveFront $animation-length linear infinite;
      animation-delay: 0s;
    }

    #cityscape_sp {
      animation: verticalShowSP $animation-length ease-in-out infinite;
      animation-delay: 0s;
    }

    #cityscape_back3 {
      animation: horizontalMoveBack3 $animation-length linear infinite;
      animation-delay: 0s;
    }

    #cityscape_back2 {
      animation: horizontalMoveBack2 $animation-length linear infinite;
      animation-delay: 0s;
    }

    #cityscape_back1 {
      animation: horizontalMoveBack1 $animation-length linear infinite;
      animation-delay: 0s;
    }
  } */
}
@media (max-width: 1023px) {
  .contactUs__cityscape {
    width: calc(130px + 100%);
    margin-right: -30px;
  }
}
@media (max-width: 599px) {
  .contactUs__cityscape {
    width: calc(60px + 100%);
    margin-right: -30px;
    margin-left: -30px;
  }
}

.cookie {
  position: fixed;
  top: 0;
  width: 100%;
  transform: translate3d(0, -125px, 0);
  transition: transform 0.3s;
  z-index: 20;
}
.cookie.active {
  transform: translate3d(0, 0, 0);
}
.cookie__inner {
  height: 125px;
  padding: 20px 220px 20px 30px;
  background-color: #96bf4c;
}
@media (max-width: 1279px) {
  .cookie__inner {
    padding: 20px 150px 20px 30px;
  }
}
@media (max-width: 599px) {
  .cookie__inner {
    padding: 10px 130px 20px 20px;
    overflow: hidden;
  }
}
@media (max-width: 479px) {
  .cookie__inner {
    padding: 10px 80px 20px 10px;
  }
}
.cookie__header {
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2rem;
  font-weight: 700;
  line-height: 4.5rem;
}
@media (max-width: 767px) {
  .cookie__header {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}
@media (max-width: 479px) {
  .cookie__header {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}
.cookie__text {
  max-width: 980px;
  color: #3f4146;
  font-size: 1.4rem;
  line-height: 1.6rem;
}
@media (max-width: 1279px) {
  .cookie__text {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
@media (max-width: 599px) {
  .cookie__text {
    line-height: 1.2rem;
  }
}
@media (max-width: 359px) {
  .cookie__text {
    font-size: 1rem;
    line-height: 1rem;
  }
}
.cookie__link {
  text-decoration: underline;
}
.cookie__button {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
@media (max-width: 599px) {
  .cookie__button {
    right: 20px;
  }
}
@media (max-width: 479px) {
  .cookie__button {
    right: 10px;
    padding: 0 15px;
  }
}

@media (max-width: 1279px) {
  .footerArtikel {
    flex-grow: 1;
  }
}
.footerArtikel__image {
  display: block;
  max-width: 100%;
  height: auto;
}
.footerArtikel__logo {
  width: 100%;
  max-width: 132px;
}

@media (max-width: 1279px) {
  .footerAutoren {
    flex-basis: 360px;
    max-width: 360px;
  }
}
@media (max-width: 1023px) {
  .footerAutoren {
    margin-top: 70px;
  }
}
.footerAutoren__items {
  display: flex;
  flex-wrap: wrap;
  margin: -11px;
}
.footerAutoren__item {
  padding: 11px;
}
.footerAutoren__link {
  display: block;
  width: 68px;
  height: 68px;
  padding: 5px;
  transition: transform 0.3s;
  background-color: #96bf4c;
  background-size: contain;
  font-size: 1.2rem;
}
.footerAutoren__link:hover {
  transform: scale(1.1);
}

@media (max-width: 1279px) {
  .footerSocial {
    flex-basis: 100%;
    margin-top: 70px;
  }
}

.singlePage__inner {
  position: relative;
  width: 100%;
  max-width: 704px;
  margin: 0 auto;
  padding: 65px 0;
}
.singlePage__inner strong {
  font-weight: bold;
}
.singlePage__inner h1,
.singlePage__inner h2,
.singlePage__inner h3,
.singlePage__inner h4,
.singlePage__inner h5,
.singlePage__inner h6 {
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
}
.singlePage__inner h2 {
  margin-top: 68px;
  margin-bottom: 68px;
  font-size: 3.6rem;
  line-height: 44px;
}
.singlePage__inner h3,
.singlePage__inner h4,
.singlePage__inner h5 {
  font-size: 2.4rem;
  line-height: 45px;
}
.singlePage__inner h6 {
  max-width: 547px;
  margin: 0 auto 65px;
  font-size: 1.4rem;
  line-height: 18px;
  text-align: center;
}
.singlePage__inner a {
  color: #96bf4c;
}
.singlePage__inner p {
  margin-bottom: 35px;
  color: #120a26;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2rem;
  font-weight: 400;
  line-height: 32px;
}
.singlePage__inner img {
  max-width: 100%;
  height: 100%;
  margin-bottom: 25px;
}

.homepage__inner {
  overflow: hidden;
}
.homepage__inner--noYOverflow {
  overflow-y: visible;
  overflow-x: hidden;
}
.homepage__inner--overflow {
  overflow: visible;
}

.inDenNetzwerken__heading {
  margin-top: 80px;
  text-align: center;
}
.inDenNetzwerken__moduleWrapper {
  margin-top: 40px;
  text-align: center;
}
.inDenNetzwerken__moduleWrapper img {
  display: inline-block;
  max-width: 100%;
}
.inDenNetzwerken__more {
  margin-top: 50px;
  margin-bottom: 60px;
  text-align: center;
}
.inDenNetzwerken__iframe {
  width: 100%;
  height: 920px;
}
@media (max-width: 1279px) {
  .inDenNetzwerken__iframe {
    height: 560px;
  }
}
@media (max-width: 479px) {
  .inDenNetzwerken__iframe {
    height: 430px;
  }
}

.latestPost {
  display: flex;
  background-color: #fff;
}
@media (max-width: 767px) {
  .latestPost {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.latestPost__photo {
  position: relative;
  flex-basis: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .latestPost__photo {
    min-height: 260px;
  }
}
.latestPost__copy {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background-color: rgba(63, 65, 70, 0.5);
  color: #fff;
  font-size: 1.4rem;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
}
.latestPost__copyDetails {
  position: absolute;
  top: 0;
  right: 40px;
  width: 210px;
  padding: 20px 24px;
  transition: opacity 0.3s;
  background-color: #333;
  color: rgba(255, 255, 255, 0.8);
  line-height: normal;
  text-align: left;
  opacity: 0;
}
.latestPost__copyDetails::before {
  position: absolute;
  top: 3px;
  right: -9px;
  width: 0;
  height: 0;
  border-width: 8.5px 0 8.5px 9px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
  content: "";
}
.latestPost__copy:hover .latestPost__copyDetails {
  opacity: 1;
}
.latestPost__content {
  flex-basis: 50%;
  padding: 76px 35px 76px 56px;
}
@media (max-width: 599px) {
  .latestPost__content {
    padding: 50px 30px;
  }
}
@media (max-width: 479px) {
  .latestPost__content {
    padding: 36px 16px;
  }
}
.latestPost__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 479px) {
  .latestPost__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.latestPost__categoryText {
  margin-top: 20px;
  color: #3f4146;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}
.latestPost__authorsDate {
  display: flex;
  color: #767676;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (max-width: 479px) {
  .latestPost__authorsDate {
    margin-top: 12px;
  }
}
.latestPost__date, .latestPost__lesenZeit {
  position: relative;
  padding-left: 26px;
}
.latestPost__date::before, .latestPost__lesenZeit::before {
  position: absolute;
  top: 0;
  left: 13px;
  width: 1px;
  height: 14px;
  background-color: #767676;
  content: "";
}
.latestPost__lesenZeit:empty {
  display: none;
}

.meistGelesen__heading {
  text-align: center;
}
.meistGelesen__items {
  display: flex;
  margin: 40px -15px 0;
}
@media (max-width: 1279px) {
  .meistGelesen__items {
    flex-wrap: wrap;
  }
}
.meistGelesen__item {
  flex-basis: 33.3333333333%;
  padding: 0 15px;
}
@media (max-width: 1279px) {
  .meistGelesen__item {
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .meistGelesen__item {
    flex-basis: 100%;
  }
}

.otherPosts {
  word-wrap: break-word;
  word-break: break-word;
}
.otherPosts .container__inner {
  display: flex;
  flex-direction: column;
}
.otherPosts__wrapper {
  width: 100%;
  border-style: solid;
  border-color: transparent;
  background-clip: padding-box;
  -o-border-image: initial;
     border-image: initial;
  box-sizing: border-box;
}
.otherPosts__inner {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  margin: 40px -15px 0;
  padding-top: 5px;
  padding-bottom: 76px;
}
@media (max-width: 1279px) {
  .otherPosts__inner {
    justify-content: space-between;
  }
}
.otherPosts__items {
  display: flex;
  flex-grow: 1;
  margin: 0 -15px;
}
@media (max-width: 1279px) {
  .otherPosts__items {
    flex-wrap: wrap;
  }
}
.otherPosts__item {
  display: flex;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  flex-direction: column;
  padding: 0 15px;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .otherPosts__item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .otherPosts__item {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.otherPosts__item.transition {
  transition: margin-bottom 0.3s, max-height 1s;
}
.otherPosts__item.hidden {
  max-height: 0;
  margin-bottom: 0;
}
.otherPosts__column {
  margin-top: 25px;
}
@media (min-width: 1280px) {
  .otherPosts__column {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .otherPosts__column:not(:nth-of-type(3)) {
    margin-right: 30px;
  }
}
@media (max-width: 1279px) {
  .otherPosts__column {
    flex-basis: 50%;
    max-width: 50%;
  }
  .otherPosts__column:nth-of-type(odd) .otherPosts__wrapper {
    padding-right: 15px;
  }
  .otherPosts__column:nth-of-type(even) .otherPosts__wrapper {
    padding-left: 15px;
  }
  div.postFooter__otherPosts .otherPosts__column:nth-of-type(3) {
    display: none;
  }
}
@media (max-width: 767px) {
  .otherPosts__column {
    flex-basis: 100%;
    max-width: 100%;
  }
  .otherPosts__column:nth-of-type(odd) .otherPosts__wrapper {
    padding-right: 0;
  }
  .otherPosts__column:nth-of-type(even) .otherPosts__wrapper {
    padding-left: 0;
  }
  div.postFooter__otherPosts .otherPosts__column:nth-of-type(3) {
    display: block;
  }
}
.otherPosts__content {
  padding: 45px 50px 45px 40px;
  background-color: #fff;
}
@media (max-width: 479px) {
  .otherPosts__content {
    padding: 45px 20px 37px;
  }
}
.otherPosts__image {
  position: relative;
  background-size: cover;
  overflow: hidden;
}
.otherPosts__image:before {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 53.48%;
  content: "";
  visibility: hidden;
  z-index: -1;
}
.otherPosts__microphone {
  position: relative;
  top: -60px;
  height: 0;
  margin-bottom: 10px;
  font-size: 0;
}
.otherPosts__iconMic {
  padding: 16px;
  background-color: #96bf4c;
  font-size: 2.4rem;
}
.otherPosts__category {
  margin-bottom: 30px;
  color: #3f4146;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}
.otherPosts__link:hover .link::after {
  transform: translateX(10px);
}
.otherPosts__title {
  margin-bottom: 42px;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2.4rem;
  line-height: 3.4rem;
}
@media (max-width: 767px) {
  .otherPosts__title {
    font-size: 2rem;
  }
}
.otherPosts__titleUnderline {
  display: inline;
  transition: border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.otherPosts__link:hover .otherPosts__titleUnderline {
  border-bottom: 1px solid #3f4146;
}
.otherPosts__postInfo {
  display: flex;
  color: #767676;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
  font-weight: 400;
}
.otherPosts__loadMore {
  height: 12px;
  margin-bottom: 70px;
  color: #96bf4c;
  font-size: 4.7rem;
  line-height: 0;
  cursor: pointer;
}
.otherPosts__spaceBar {
  padding: 0 8px;
}
.otherPosts__loader {
  height: 60px;
}
.otherPosts__more {
  max-height: 54px;
  margin-bottom: 60px;
  transition: max-height 1s;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 479px) {
  .otherPosts__more {
    margin-top: 30px;
  }
}
.otherPosts__more.hidden {
  max-height: 0;
}

.singlePost__inner {
  display: flex;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 78px;
}
@media (max-width: 1023px) {
  .singlePost__inner {
    padding-top: 55px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .singlePost__inner {
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media (max-width: 767px) {
  .singlePost__inner {
    flex-direction: column;
  }
}
section.singlePost--withoutCover .singlePost__inner {
  padding-top: 50px;
}
.singlePost__wrapper {
  display: flex;
  position: relative;
  flex: 1;
  flex-direction: column;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .singlePost__wrapper {
    align-items: center;
  }
}
.singlePost--withoutCover .singlePost__wrapper {
  margin-top: -80px;
}
.singlePost--withoutCover .singlePost__teilen {
  margin-top: 80px;
}
.singlePost__bar {
  position: relative;
  padding: 0 20px;
}
.singlePost__bar::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 2px;
  transform: translate(-50%, -50%);
  background-color: #96bf4c;
  content: "";
}
section.singlePost--withCover .singlePost__type {
  position: absolute;
  top: -78px;
  left: 0;
  width: 55px;
  height: 55px;
  transform: translateY(-50%);
  font-size: 0;
}
@media (max-width: 1023px) {
  section.singlePost--withCover .singlePost__type {
    top: -70px;
  }
}
section.singlePost--withoutCover .singlePost__type {
  display: flex;
  margin-bottom: 45px;
}
.singlePost__postData, .singlePost__category {
  width: 100%;
  max-width: 704px;
}
.singlePost__postData {
  position: relative;
  padding-bottom: 15px;
  padding-right: 75px;
  color: #120a26;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .singlePost__postData {
    padding-bottom: 40px;
  }
}
.singlePost__category {
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  color: #3f4146;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}
.singlePost__categoryContent {
  padding-right: 10px;
}
.singlePost__featureImage {
  position: relative;
  height: 630px;
  max-height: 45vh;
}
@media (max-width: 767px) {
  .singlePost__featureImage {
    height: 240px;
  }
}
.singlePost__header {
  max-width: 704px;
  padding-bottom: 50px;
  color: #120a26;
  font-family: "Lato", Tahoma, Arial;
  font-size: 3.6rem;
  line-height: 4.4rem;
}
@media (max-width: 767px) {
  .singlePost__header {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}
@media (max-width: 479px) {
  .singlePost__header {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.singlePost__header--highlighted {
  background-color: #3f4146;
  color: #96bf4c;
}
.singlePost__authorLink {
  transition: opacity 0.3s;
}
.singlePost__authorLink:hover {
  opacity: 0.75;
}
.singlePost .crp_related {
  display: none;
}

.postFooter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.postFooter__tags {
  max-width: 704px;
}
.postFooter__tags h4 {
  padding-bottom: 10px;
  color: #333;
  font-size: 2.4rem;
  font-weight: 700;
}
.postFooter__comments {
  width: 100%;
  max-width: 1022px;
  padding-top: 125px;
}
@media (max-width: 767px) {
  .postFooter__comments {
    padding-top: 58px;
  }
}
.postFooter__writeComment {
  max-width: 100%;
  padding-top: 72px;
}
.postFooter__writeComment .comment-reply-title {
  display: none;
}
@media (max-width: 767px) {
  .postFooter__writeComment {
    padding-top: 33px;
  }
}
.postFooter__otherPosts, .postFooter__newsletter {
  display: flex;
  width: 100%;
  max-width: 1350px;
}
.postFooter__otherPosts {
  position: relative;
  margin: 50px auto 0;
  flex-direction: column;
}
@media (max-width: 767px) {
  .postFooter__otherPosts {
    flex-wrap: wrap;
    padding-top: 0;
  }
}
.postFooter__oval {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .postFooter__oval {
    left: 35px;
  }
}
@media (max-width: 1023px) {
  .postFooter__oval {
    left: -30px;
  }
}
@media (max-width: 767px) {
  .postFooter__oval {
    top: 17px;
    left: -55px;
    transform: none;
  }
}
.postFooter__postsWrapper {
  width: 100%;
  margin-top: 60px;
}
.postFooter__newsletter {
  position: relative;
  margin-top: 67px;
  padding: 0 131px 87px;
  background-color: #3f4146;
}
.postFooter__newsletter h2 {
  padding-bottom: 20px;
  color: #96bf4c;
}
.postFooter__newsletter p {
  color: #fff;
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .postFooter__newsletter {
    padding: 0 66px 63px;
  }
}
@media (max-width: 767px) {
  .postFooter__newsletter {
    flex-direction: column;
    padding: 0 25px 67px;
  }
}
.postFooter__newsletterText, .postFooter__newsletterMail {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .postFooter__newsletterText {
    padding-bottom: 47px;
  }
}
.postFooter__newsletterMail {
  position: relative;
}
@media (min-width: 1024px) {
  .postFooter__newsletterMail {
    align-self: flex-end;
  }
}
.postFooter__newsletterMail::after {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: #3f4146;
  font-family: "icomoon";
  font-size: 1.7rem;
  content: "\E920";
}
.postFooter__newsletterInput {
  max-width: 544px;
  padding: 12px 0 12px 20px;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .postFooter__newsletterInput {
    width: 100%;
  }
}

.search__inner {
  padding-bottom: 98px;
  overflow: hidden;
}
.search__header {
  height: 294px;
  background-color: #3f4146;
}
@media (max-width: 1279px) {
  .search__header {
    padding: 0 45px;
  }
}
@media (max-width: 1023px) {
  .search__header {
    padding: 0 20px;
  }
}
@media (max-width: 479px) {
  .search__header {
    height: 150px;
    padding: 0 10px;
  }
}
.search__heading {
  margin-top: 60px;
  margin-bottom: 30px;
  padding-left: 350px;
  color: #131e2c;
  font-size: 2.6rem;
  line-height: 6rem;
}
@media (max-width: 1279px) {
  .search__heading {
    padding-left: 0;
  }
}
@media (max-width: 479px) {
  .search__heading {
    padding: 0 5px;
    line-height: 4rem;
  }
}
.search__heading strong,
.search__heading b {
  font-weight: 700;
}
.search__columns {
  display: flex;
}
@media (max-width: 1279px) {
  .search__columns {
    flex-direction: column;
  }
}
.search__filters {
  flex-basis: 350px;
  flex-shrink: 0;
  padding-right: 70px;
}
@media (max-width: 1279px) {
  .search__filters {
    display: flex;
    flex-basis: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -20px;
    padding-right: 0;
  }
}
@media (max-width: 479px) {
  .search__filters {
    padding: 0 5px;
  }
}
.search__filtersHeading {
  color: #131e2c;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
}
@media (max-width: 1279px) {
  .search__filtersHeading {
    flex-basis: 100%;
    padding: 0 20px;
  }
}
.search__results {
  width: 100%;
}

.aktuelles {
  margin-right: -30px;
  margin-left: -30px;
  transition: opacity 0.3s;
  opacity: 1;
}
.searchActive .aktuelles {
  opacity: 0;
}

@media (max-width: 1023px) {
  .aktuelles {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (max-width: 479px) {
  .aktuelles {
    margin-right: -5px;
    margin-left: -5px;
  }
}
.aktuelles__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.aktuelles__title {
  flex-basis: 130px;
  flex-grow: 0;
  flex-shrink: 0;
  height: 100%;
  background-color: #3f4146;
  color: #96bf4c;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 38px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  .aktuelles__title {
    display: none;
  }
}
.aktuelles__marque {
  flex-grow: 1;
  height: 100%;
  background-color: #96bf4c;
  color: #031a22;
  overflow: hidden;
}
.aktuelles__items {
  display: flex;
  flex-wrap: nowrap;
}
.aktuelles__item {
  position: relative;
  padding-right: 40px;
  font-weight: 400;
}
.aktuelles__item::after {
  position: absolute;
  top: 12px;
  right: 0;
  width: 40px;
  height: 38px;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  content: "+++";
}
.aktuelles__item b,
.aktuelles__item strong {
  font-weight: 700;
}
.aktuelles__item i,
.aktuelles__item em {
  font-style: italic;
}
.aktuelles__item a {
  transition: padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid #6a7b21;
  font-weight: 400;
}
.aktuelles__item a:hover {
  padding-bottom: 1px;
  border-bottom: 1px solid #96bf4c;
}
.aktuelles__itemLink {
  font-size: 1.4rem;
  line-height: 38px;
  white-space: nowrap;
}
.aktuelles__controls {
  display: flex;
  flex-basis: 70px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.aktuelles__buttonLeft, .aktuelles__buttonRight, .aktuelles__buttonPause {
  position: relative;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s;
  background-color: transparent;
  color: transparent;
  cursor: pointer;
  overflow: hidden;
}
.aktuelles__buttonLeft::before, .aktuelles__buttonRight::before, .aktuelles__buttonPause::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  margin-left: -7px;
  color: #96bf4c;
}
.aktuelles__buttonLeft.disabled, .aktuelles__buttonRight.disabled, .aktuelles__buttonPause.disabled {
  opacity: 0.25;
}
.aktuelles__buttonLeft::before {
  content: "\E90D";
}
.aktuelles__buttonRight::before {
  content: "\E911";
}
.aktuelles__buttonPause::before {
  content: "\E92D";
}

.articleFilters {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 599px) {
  .articleFilters {
    flex-direction: column;
  }
}
.articleFilters--padding {
  padding-top: 66px;
  padding-bottom: 25px;
}
@media (max-width: 479px) {
  .articleFilters--padding {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
.articleFilters__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -9px;
}
@media (max-width: 479px) {
  .articleFilters__items {
    flex-wrap: wrap;
    margin: 0 -4px;
  }
}
.articleFilters__item {
  margin-right: 9px;
  margin-bottom: 9px;
  margin-left: 9px;
}
.articleFilters__item + .articleFilters__item {
  margin-right: 9px;
  margin-left: 9px;
}
@media (max-width: 479px) {
  .articleFilters__item + .articleFilters__item {
    margin-right: 4px;
    margin-left: 4px;
  }
}
@media (max-width: 479px) {
  .articleFilters__item {
    margin-right: 4px;
    margin-bottom: 8px;
    margin-left: 4px;
  }
}
@media (max-width: 599px) {
  .articleFilters__select {
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  .articleFilters__select {
    margin-top: 20px;
  }
}

.breadcrumbs__background {
  height: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
  background-color: #3f4146;
}
.breadcrumbs__inner {
  display: flex;
  justify-content: flex-start;
}
.breadcrumbs__items {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  display: block;
  position: relative;
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 54px;
}
.breadcrumbs__item:not(:first-child) {
  margin-left: 40px;
}
.breadcrumbs__item:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 15px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
}
.breadcrumbs__item:hover {
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumbs__item--current {
  color: white;
}
.breadcrumbs__item--current:hover {
  color: white;
}
.breadcrumbs__item--home {
  margin-right: 20px;
}
.breadcrumbs__item--home::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  font-size: 14px;
  line-height: 14px;
  text-align: left;
  content: "\E913";
}

.categoryIcon {
  position: relative;
  width: 40px;
  height: 40px;
  background-image: url("../assets/images/icon-back.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.categoryIcon::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  margin-left: -18px;
  color: #3f4146;
}
@media (max-width: 479px) {
  .categoryIcon {
    width: 27px;
    height: 27px;
  }
  .categoryIcon::before {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
  }
}
.categoryIcon__img {
  display: inline-block;
  width: 77px;
  height: 77px;
}
.categoryIcon__img--small {
  width: 40px;
  height: 40px;
}
.categoryIcon--bigger {
  width: 50px;
  height: 50px;
}
.categoryIcon--bigger::before {
  font-size: 42px;
  line-height: 42px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
}
.categoryIcon--smaller {
  width: 16px;
  height: 23px;
}
.categoryIcon--smaller::before {
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 15px;
  margin-top: -7.5px;
  margin-left: -10px;
}
.categoryIcon--icon-grosse-co-working::before {
  content: "\E914";
}
.categoryIcon--icon-grosse-newwork::before {
  content: "\E915";
}
.categoryIcon--icon-grosse-new-work::before {
  content: "\E915";
}
.categoryIcon--icon-grosse-compatibility::before {
  content: "\E916";
}
.categoryIcon--icon-grosse-vereinbarkeit::before {
  content: "\E916";
}
.categoryIcon--icon-grosse-digital-transf::before {
  content: "\E917";
}
.categoryIcon--icon-grosse-digitale-transformation::before {
  content: "\E917";
}
.categoryIcon--icon-grosse-mobile-arbeit::before {
  content: "\E918";
}
.categoryIcon--icon-grosse-employment-law::before {
  content: "\E919";
}
.categoryIcon--icon-grosse-arbeitsrecht::before {
  content: "\E919";
}

.categoryTiles {
  position: relative;
  margin: 45px 0;
  padding: 45px;
}
@media (max-width: 1279px) {
  .categoryTiles {
    padding: 45px 10px;
  }
}
.categoryTiles__items {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  transition: transform 0.6s;
}
@media (max-width: 1600px) {
  .categoryTiles__items {
    margin: 0;
  }
}
@media (max-width: 1279px) {
  .categoryTiles__items {
    margin: -10px;
  }
}
.categoryTiles__item {
  position: relative;
  flex-basis: 33.3333333333%;
  flex-grow: 0;
  flex-shrink: 0;
  max-width: 33.3333333333%;
  height: 240px;
  padding: 15px;
  cursor: pointer;
}
@media (max-width: 1279px) {
  .categoryTiles__item {
    padding: 10px;
  }
}
@media (max-width: 1023px) {
  .categoryTiles__item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .categoryTiles__item {
    padding: 10px;
  }
}
@media (max-width: 599px) {
  .categoryTiles__item {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.categoryTiles__flipper {
  display: block;
  position: relative;
  height: 100%;
  border: 1px solid #96bf4c;
  perspective: 1000px;
}
.categoryTiles__front, .categoryTiles__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in, opacity 0.6s;
  overflow: hidden;
  backface-visibility: hidden;
}
.categoryTiles__front {
  transform: rotateY(0deg);
  background-color: #96bf4c;
}
.categoryTiles__item.active .categoryTiles__front {
  transform: rotateY(180deg);
  /* >= Edge 12 */
}
.categoryTiles__item.active .categoryTiles__front _:-ms-lang(x), .categoryTiles__item.active .categoryTiles__front _:-webkit-full-screen, .categoryTiles__item.active .categoryTiles__front {
  opacity: 0;
}
.categoryTiles__item:hover .categoryTiles__front {
  transform: rotateY(180deg);
  /* >= Edge 12 */
}
.categoryTiles__item:hover .categoryTiles__front _:-ms-lang(x), .categoryTiles__item:hover .categoryTiles__front _:-webkit-full-screen, .categoryTiles__item:hover .categoryTiles__front {
  opacity: 0;
}
.categoryTiles__back {
  transform: rotateY(-180deg);
  background-color: #fff;
}
.categoryTiles__item.active .categoryTiles__back {
  transform: rotateY(0deg);
}
.categoryTiles__item:hover .categoryTiles__back {
  transform: rotateY(0deg);
}
.categoryTiles__back::before {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 150%;
  height: 100px;
  transform: rotate(-7deg) translate(-50%, 0);
  transform-origin: 0 50%;
  background-color: #96bf4c;
  content: "";
}
@media (max-width: 1023px) {
  .categoryTiles__back::before {
    top: -30px;
  }
}
.categoryTiles__logo {
  position: absolute;
  top: 0px;
  left: 50%;
  padding-right: 110px;
  transform: translateX(-50%);
}
.categoryTiles__logoBack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.categoryTiles__logoBackImg {
  height: 150px;
  width: 150px;
  margin-bottom: 20px;
}
.categoryTiles__title {
  position: absolute;
  bottom: 154px;
  left: 50%;
  width: 300px;
  padding-left: 150px;
  transform: translate(-50%, 0) skewY(-7deg);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .categoryTiles__title {
    padding-left: 140px;
  }
}
.categoryTiles__titleBack {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 300px;
  padding-left: 150px;
  transform: translate(-50%, 0) skewY(-7deg);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .categoryTiles__titleBack {
    padding-left: 120px;
  }
}
.categoryTiles__text {
  position: absolute;
  right: 20px;
  bottom: 10px;
  max-width: 350px;
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .categoryTiles__text {
    right: 0;
    padding: 0 10px;
  }
}
.categoryTiles__textCta {
  display: block;
  margin-top: 12px;
  color: #96bf4c;
  text-align: right;
}
@media (max-width: 1023px) {
  .categoryTiles__textCta {
    padding: 0 10px;
  }
}

.filterPanel {
  margin-top: 20px;
}
@media (max-width: 1279px) {
  .filterPanel {
    flex-basis: 50%;
    flex-grow: 0;
    padding: 20px;
  }
}
@media (max-width: 479px) {
  .filterPanel {
    flex-basis: 100%;
    padding-top: 0;
  }
}
.filterPanel__header {
  position: relative;
  padding-top: 14px;
  color: #131e2c;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
}
.filterPanel__header--topBorder {
  border-top: 1px solid rgba(151, 151, 151, 0.28);
}
@media (max-width: 1279px) {
  .filterPanel__header--topBorder {
    border-top: 0 solid transparent;
  }
}
@media (max-width: 479px) {
  .filterPanel__header--topBorder {
    border-top: 1px solid rgba(151, 151, 151, 0.28);
  }
}
.filterPanel__items {
  max-height: 300px;
  margin-top: 20px;
  overflow-y: auto;
}
@media (max-width: 1279px) {
  .filterPanel__items {
    max-height: 240px;
  }
}
.filterPanel__item + .filterPanel__item {
  margin-top: 15px;
}
.filterPanel__checkbox {
  display: none;
}
.filterPanel__labelText {
  display: block;
  position: relative;
  padding-left: 48px;
  transition: color 0.3s;
  color: #3f4146;
  font-size: 1.6rem;
  line-height: 3rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.filterPanel__labelText:hover {
  color: rgba(63, 65, 70, 0.7);
}
.filterPanel__labelText:hover::before {
  border: 1px solid #96bf4c;
}
.filterPanel__labelText::before {
  display: flex;
  position: absolute;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: border 0.3s, color 0.3s;
  border: 1px solid #b7b7b7;
  background-color: #fff;
  color: transparent;
  font-family: "icomoon";
  font-size: 2rem;
  content: "\E90F";
}
.filterPanel__checkbox:checked + .filterPanel__labelText::before {
  color: #3f4146;
}
.filterPanel__search {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  color: #3f4146;
  font-size: 1.4rem;
}
.filterPanel__searchFields {
  position: relative;
  margin-top: 6px;
}
.filterPanel__filterAuthor {
  width: 100%;
  padding: 0 45px 0 15px;
  border: 1px solid #b7b7b7;
  background-color: #fff;
  line-height: 34px;
}
.filterPanel__filterSubmit {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.filterPanel__filterSubmit::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  transition: color 0.3s;
  color: #3f4146;
  content: "\E91A";
}
.filterPanel__filterSubmit:hover::after {
  color: rgba(63, 65, 70, 0.8);
}
.filterPanel__filterSubmitInput {
  width: 36px;
  height: 36px;
  border: 0 solid transparent;
  background-color: transparent;
  color: transparent;
}
.filterPanel__hide {
  position: absolute;
  right: 0;
}
.filterPanel__hide::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  font-size: 14px;
  line-height: 14px;
  text-align: right;
  top: 8px;
  color: #6a7b21;
  content: "\E912";
}

.form__errors {
  display: flex;
  position: absolute;
  bottom: -40px;
  left: 50%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 3.6rem;
  max-height: 7.3rem;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 46px;
  transform: translateX(-50%);
  color: #96bf4c;
  font-size: 1.8rem;
  line-height: 2rem;
  overflow: hidden;
}
@media (max-width: 1365px) {
  .form__errors {
    bottom: 120px;
    max-height: 5.2rem;
  }
}
@media (max-width: 1023px) {
  .form__errors {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .form__errors {
    bottom: 90px;
  }
}
@media (max-width: 479px) {
  .form__errors {
    bottom: 80px;
    max-height: 4.2rem;
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 359px) {
  .form__errors {
    bottom: 60px;
    padding-right: 10px;
    padding-left: 40px;
    font-size: 1.2rem;
  }
}
.form__errors .error::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 5px;
  line-height: 5px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  margin-left: -2.5px;
  top: 20px;
  left: 16px;
  margin-top: -3px;
  transform: translateY(-50%);
  transition: opacity 0.2s ease-in;
  color: #96bf4c;
  font-size: 22px;
  content: "!";
}
@media (max-width: 359px) {
  .form__errors .error::after {
    top: 20px;
    left: 9px;
  }
}
.form__errors .error::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 33px;
  height: 33px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fde0e0;
  content: "";
}
@media (max-width: 359px) {
  .form__errors .error::before {
    top: 18px;
    left: 0;
    width: 26px;
    height: 26px;
  }
}
.form__fieldGroup {
  border: 1px solid rgba(255, 0, 0, 0);
}
.form__fieldGroup--error {
  border: 1px solid rgba(255, 0, 0, 0.3);
}
.form__fieldGroup--errorRadios label {
  border: 1px solid rgba(255, 0, 0, 0.3);
}
.form__fieldGroup--flexRow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.form__fieldGroup--flex2InRow {
  margin-right: -32px;
}
@media (max-width: 1365px) {
  .form__fieldGroup--flex2InRow {
    margin-right: -22px;
  }
}
.form__fieldGroup--flex2InRow > div {
  flex: 1 1 50%;
}
.form__fieldWrapper50--marginBottom {
  margin-bottom: 28px;
}
@media (max-width: 1365px) {
  .form__fieldWrapper50--marginBottom {
    margin-bottom: 4px;
  }
}
.form__label {
  display: inline-block;
  position: absolute;
  top: -10px;
  left: 30px;
  height: 20px;
  padding: 0 12px;
  transition: opacity 0.3s ease-in;
  background-color: #fff;
  color: #b7b7b7;
  font-size: 1.3rem;
  line-height: 20px;
  opacity: 0;
}
@media (max-width: 359px) {
  .form__label {
    top: -5px;
    left: 40px;
    height: 14px;
    font-size: 1rem;
    line-height: 1.4rem;
  }
}
.form__label--active {
  display: inline-block;
  opacity: 1;
}
.form__plusminus {
  display: flex;
  position: absolute;
  top: 50%;
  right: 46px;
  flex-direction: column;
  justify-content: space-between;
  height: 40px;
  transform: translateY(-50%);
}
@media (max-width: 479px) {
  .form__plusminus {
    display: none;
  }
}
.form__plusminus > span {
  padding: 5px;
  transition: color 0.3s ease-in;
  color: #b7b7b7;
  font-size: 10px;
  cursor: pointer;
}
.form__plusminus > span:hover {
  color: #96bf4c;
}

.loader,
.loader:before,
.loader:after {
  width: 1em;
  height: 4em;
  background: #96bf4c;
  animation: load1 1s infinite ease-in-out;
}

.loader {
  position: relative;
  margin: 88px auto;
  transform: translateZ(0);
  color: #96bf4c;
  font-size: 11px;
  text-indent: -9999em;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}

.loader:before {
  left: -1.5em;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}
@keyframes load1 {
  0%, 80%, 100% {
    height: 4em;
    box-shadow: 0 0;
  }
  40% {
    height: 5em;
    box-shadow: 0 -2em;
  }
}
.menuSocial {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.menuSocial a {
  display: block;
  position: relative;
  width: 55px;
  height: 55px;
  transition: background-color 0.3s, border-color 0.3s;
  border: 2px solid #96bf4c;
  background-color: #96bf4c;
  color: transparent;
}
.menuSocial a::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 19px;
  line-height: 19px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 19px;
  margin-top: -9.5px;
  margin-left: -9.5px;
  transition: color 0.3s;
  color: #3f4146;
}
.menuSocial a:hover {
  border-color: #96bf4c;
  background-color: #3f4146;
}
.menuSocial a:hover::after {
  color: #96bf4c;
}
.menuSocial a[href*="facebook.com"]::after {
  content: "\E901";
}
.menuSocial a[href*="twitter.com"]::after {
  content: "\E909";
}
.menuSocial a[href*="linkedin.com"]::after {
  content: "\E905";
}
.menuSocial a[href*="instagram.com"]::after {
  content: "\E933";
}
.menuSocial a[href*="soundcloud.com"]::after {
  content: "\E908";
}
.menuSocial a[href*="youtube.com"]::after {
  content: "\E926";
}
.menuSocial a[href*="mstdn.social"]::after {
  content: "\E92F";
}
.menuSocial a[href*="mastodon.social"]::after {
  content: "\E92F";
}
.menuSocial a[href*="bsky.app"]::after {
  content: "\E931";
}
.menuSocial a[href*=mailto]::after {
  content: "\E907";
}
.menuSocial a[href*=rss]::after {
  content: "\E90A";
}
.menuSocial a[href*=feed]::after {
  content: "\E90A";
}
.menuSocial a span {
  display: none;
}
.menuSocial .menu-item {
  padding: 0 10px 20px;
}

.newsletterBanner {
  display: flex;
  margin-top: 80px;
  padding: 66px 130px 86px;
  background-color: #3f4146;
}
@media (max-width: 1279px) {
  .newsletterBanner {
    padding: 66px 66px 86px;
  }
}
@media (max-width: 767px) {
  .newsletterBanner {
    flex-direction: column;
  }
}
@media (max-width: 479px) {
  .newsletterBanner {
    margin-top: 60px;
    padding: 60px 25px 70px;
  }
}
.newsletterBanner__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}
.newsletterBanner__text p {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
  color: #fff;
  font-size: 2rem;
  line-height: 2.6rem;
}
@media (max-width: 1023px) {
  .newsletterBanner__text p {
    flex-direction: column;
  }
}
@media (max-width: 1279px) {
  .newsletterBanner__text {
    padding-right: 20px;
  }
}
.newsletterBanner__inner {
  display: flex;
  flex: 1;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .newsletterBanner__inner {
    align-items: center;
  }
}
.newsletterBanner__heading {
  position: relative;
  color: #96bf4c;
  font-family: "Lato", Tahoma, Arial;
  font-size: 4rem;
  line-height: 4.5rem;
}
@media (max-width: 479px) {
  .newsletterBanner__heading {
    font-size: 3rem;
    line-height: 3.4rem;
  }
}
.newsletterBanner__heading::before {
  position: absolute;
  top: -44px;
  left: -94px;
  width: 206px;
  height: 206px;
  background-image: url("../assets/images/newsletter-banner-back.png");
  background-repeat: no-repeat;
  content: "";
}
.newsletterBanner .updated {
  position: relative;
  margin-top: 45px;
  padding: 22px 20px 23px 24px;
  border: 1px solid #96bf4c;
  background-color: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 2.6rem;
}
.newsletterBanner .updated::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: -18px;
  left: 23px;
  padding: 7px;
  border-radius: 50%;
  background-color: #3f4146;
  color: #96bf4c;
  content: "\E91A";
}
.newsletterBanner .widget_wysija {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
  color: #fff;
}
@media (max-width: 1023px) {
  .newsletterBanner .widget_wysija {
    flex-direction: column;
  }
}
.newsletterBanner .widget_wysija_cont {
  flex: 1;
}
.newsletterBanner .wysija-submit {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 45px;
  margin-top: 0;
  transition: background-color 0.3s;
  background-color: transparent;
  color: transparent;
  line-height: 41px;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .newsletterBanner .wysija-submit {
    bottom: 0;
  }
}
.newsletterBanner .wysija-submit:hover {
  background-color: rgba(241, 241, 241, 0.33);
}
.newsletterBanner .wysija-input {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  transition: border-color 0.3s;
  border: 1px solid #000;
  background-color: #f1f1f1;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.6rem;
  line-height: 45px;
}
@media (max-width: 479px) {
  .newsletterBanner .wysija-input {
    padding: 0 12px;
  }
}
.newsletterBanner .wysija-input:hover {
  border: 1px solid #96bf4c;
}
.newsletterBanner .formError + .wysija-input {
  border: 1px solid #e23642;
}
.newsletterBanner .wysija-paragraph {
  position: relative;
  flex-basis: 100%;
}
@media (max-width: 1023px) {
  .newsletterBanner .wysija-paragraph {
    margin-top: 30px;
  }
}
.newsletterBanner .wysija-paragraph::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  font-size: 18px;
  line-height: 18px;
  text-align: right;
  right: 20px;
  color: #3f4146;
  content: "\E920";
}

.postContentEmbed {
  width: 500px;
  margin: 0 auto;
  text-align: center;
}

.postThumb {
  margin-bottom: 30px;
  overflow: hidden;
}
.postThumb--noMargin {
  width: 100%;
  margin: 0;
}
.postThumb__image {
  display: block;
  position: relative;
  transition: background-position 0.3s;
  background-position: center center;
  background-size: cover;
}
.postThumb__image:before {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 53.48%;
  content: "";
  visibility: hidden;
  z-index: -1;
}
.postThumb__image:hover {
  background-position: top center;
}
.postThumb__youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 47.6%;
}
.postThumb__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.postThumb__copy {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(63, 65, 70, 0.5);
  color: #fff;
  font-size: 1.4rem;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}
.postThumb__copy::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  color: #fff;
  content: "\E92C";
}
.postThumb__copyDetails {
  position: absolute;
  top: 0;
  right: 40px;
  width: 210px;
  padding: 20px 24px;
  transition: opacity 0.3s;
  background-color: #333;
  color: rgba(255, 255, 255, 0.8);
  line-height: normal;
  text-align: left;
  opacity: 0;
}
.postThumb__copyDetails::before {
  position: absolute;
  top: 3px;
  right: -9px;
  width: 0;
  height: 0;
  border-width: 8.5px 0 8.5px 9px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
  content: "";
}
.postThumb__copy:hover .postThumb__copyDetails {
  opacity: 1;
}
.postThumb__type {
  position: absolute;
  bottom: -28px;
  left: 40px;
}
.postThumb__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 60px 50px 44px 38px;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .postThumb__content {
    padding: 60px 30px 44px 25px;
  }
}
.postThumb__category {
  display: flex;
  align-items: center;
  color: #3f4146;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}
.postThumb__categoryIcon {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.postThumb__categoryIconImg {
  margin-right: 8px;
}
.postThumb__title {
  margin-top: 30px;
  line-height: 3.4rem;
}
@media (max-width: 479px) {
  .postThumb__title {
    line-height: 3rem;
  }
}
.postThumb__titleUnderline {
  display: inline;
  transition: border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.postThumb__link:hover .postThumb__titleUnderline {
  border-bottom: 1px solid #3f4146;
}
.postThumb__titleHighlight {
  padding: 2px 0;
  background-color: #3f4146;
  color: #96bf4c;
}
.postThumb__link {
  display: block;
  flex-grow: 1;
}
.postThumb__link:hover .link::after {
  transform: translateX(10px);
}
.postThumb__authorsDate {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  color: #767676;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (max-width: 479px) {
  .postThumb__authorsDate {
    flex-wrap: wrap;
  }
}
.postThumb__authors {
  line-height: 1.25;
}
@media (max-width: 479px) {
  .postThumb__authors {
    margin-top: 10px;
  }
}
.postThumb__date, .postThumb__lesenZeit {
  line-height: 1.25;
  position: relative;
  padding-left: 24px;
}
@media (max-width: 479px) {
  .postThumb__date, .postThumb__lesenZeit {
    margin-top: 10px;
  }
}
.postThumb__date::before, .postThumb__lesenZeit::before {
  position: absolute;
  top: 0;
  left: 12px;
  width: 1px;
  height: 15px;
  background-color: #767676;
  content: "";
}
.postThumb__date {
  display: inline-block;
}
.postThumb__lesenZeit {
  width: 100%;
  padding-top: 10px;
  padding-left: 0;
}
.postThumb__lesenZeit:before {
  display: none;
}

.searchForm__box {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.searchForm__inputBox {
  flex-grow: 1;
  width: 100%;
  max-width: 0;
  overflow: hidden;
}
@media (max-width: 479px) {
  .searchForm__inputBox {
    max-width: 330px;
  }
}
.searchForm__input {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border-radius: 5px;
  color: #96bf4c;
  font-size: 1.4rem;
  line-height: 4rem;
}
.searchForm__input::-webkit-input-placeholder {
  color: rgba(150, 191, 76, 0.5);
}
.searchForm__input::-moz-placeholder {
  color: rgba(150, 191, 76, 0.5);
}
.searchForm__input:-ms-input-placeholder {
  color: rgba(150, 191, 76, 0.5);
}
.searchForm__input:-moz-placeholder {
  color: rgba(150, 191, 76, 0.5);
}
.searchForm__input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100px #fff inset;
}
@media (max-width: 479px) {
  .searchForm__input {
    max-width: 250px;
    border: 1px solid #b7d384;
  }
}
.searchForm__button {
  display: block;
  position: relative;
  flex-basis: 40px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  transition: transform 0.3s;
  border: 0;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 1;
}
.searchForm__button::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  margin-top: -11px;
  color: #96bf4c;
  content: "\E91A";
}
.searchForm__button:hover {
  transform: scale(1.1);
}

@media (max-width: 599px) {
  .topLogo {
    display: none;
  }
}
.topLogo__link {
  display: block;
  position: relative;
  width: 160px;
}
@media (max-width: 479px) {
  .topLogo__link {
    width: 140px;
  }
}
.topLogo__image {
  position: absolute;
  top: 50%;
  max-height: 78px;
  transform: translate3d(0, -50%, 0);
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 479px) {
  .topLogo__image {
    max-width: 120px;
  }
}
.topLogo__image:hover {
  transform: translate3d(0, -50%, 0) scale(1.2);
}

.simpleTabs {
  overflow: hidden;
}
.simpleTabs__inner {
  display: flex;
}
.simpleTabs__nav {
  z-index: 1;
}
.simpleTabs__links {
  display: flex;
}
@media (max-width: 479px) {
  .simpleTabs__links {
    display: inline-flex;
    flex-direction: column;
  }
}
.simpleTabs__link {
  padding-bottom: 6px;
  transition: color 0.3s, text-shadow 0.3s, border-bottom-color 0.3s;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-shadow: normal;
  cursor: pointer;
}
.simpleTabs__link + .simpleTabs__link {
  margin-left: 30px;
}
@media (max-width: 479px) {
  .simpleTabs__link + .simpleTabs__link {
    margin-top: 10px;
    margin-left: 0;
  }
}
.simpleTabs__link:hover, .simpleTabs__link.active {
  border-bottom: 2px solid #96bf4c;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0.1px 0.1px 0 #fff;
}
.simpleTabs__slide {
  display: none;
  position: relative;
  flex-basis: 79.5652173913%;
  align-items: center;
}
.simpleTabs__slide.active {
  display: flex;
}
.simpleTabs__slideInner {
  position: relative;
  width: 100%;
}
.simpleTabs__topics {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
.simpleTabs__topic + .simpleTabs__topic {
  margin-top: 22px;
}
.simpleTabs__articleLink {
  display: flex;
  justify-content: space-between;
}
.simpleTabs__topicContent {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  width: 100%;
  padding: 0 16px 5px;
  color: #fff;
}
@media (max-width: 1279px) {
  .simpleTabs__topicContent {
    padding: 0 26px 5px 16px;
  }
}
@media (max-width: 479px) {
  .simpleTabs__topicContent {
    padding: 0 0 5px;
  }
}
.simpleTabs__topicTitle {
  max-height: 44px;
  transition: transform 0.3s;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.6rem;
  line-height: 2.2rem;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .simpleTabs__topicTitle {
    max-height: 32px;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 479px) {
  .simpleTabs__topicTitle {
    max-height: none;
    line-height: 2.2rem;
  }
}
.simpleTabs__topicTitleUnderline {
  transition: border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.simpleTabs__articleLink.active .simpleTabs__topicTitleUnderline {
  border-bottom: 1px solid #fff;
}
.simpleTabs__articleLink:hover .simpleTabs__topicTitleUnderline {
  border-bottom: 1px solid #fff;
}
.simpleTabs__topicImg {
  flex-basis: 71px;
  flex-shrink: 0;
  width: 71px;
  height: 71px;
  transition: transform 0.3s;
  background-color: #96bf4c;
  background-size: cover;
}
.simpleTabs__articleLink.active .simpleTabs__topicImg {
  transform: scale(1.1);
}
.simpleTabs__articleLink:hover .simpleTabs__topicImg {
  transform: scale(1.1);
}
@media (max-width: 479px) {
  .simpleTabs__topicImg {
    display: none;
  }
}
.simpleTabs__authorsDate {
  display: flex;
}
@media (max-width: 1279px) {
  .simpleTabs__authorsDate {
    flex-wrap: wrap;
  }
}
@media (max-width: 479px) {
  .simpleTabs__authorsDate {
    margin-top: 9px;
  }
}
.simpleTabs__authors {
  padding-right: 20px;
  font-size: 1.2rem;
}
.simpleTabs__date {
  color: #a6a6a6;
  font-size: 1.2rem;
}

.siteLogo__link {
  display: block;
  position: relative;
  text-align: center;
}
@media (max-width: 479px) {
  .siteLogo__link {
    text-align: left;
  }
}
.siteLogo__image {
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
}
.siteLogo__image:hover {
  transform: scale(1.2);
}
@media (max-width: 599px) {
  .siteLogo__image {
    width: 200px;
  }
}
@media (max-width: 479px) {
  .siteLogo__image {
    width: 150px;
  }
}

.topMenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
}
@media (max-width: 1023px) {
  .topMenu {
    display: flex;
    position: absolute;
    top: 94px;
    right: 0;
    left: 0;
    flex-direction: column;
    max-width: initial;
    min-height: 280px;
    transition: border-color 0.3s;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .topMenu.active {
    border-bottom: 1px solid rgba(150, 191, 76, 0.2);
    pointer-events: initial;
  }
}
@media (max-width: 479px) {
  .topMenu {
    min-height: 330px;
  }
}
@media (max-width: 1023px) {
  .topMenu__item {
    width: 100%;
  }
  .topMenu__item:last-child {
    padding-bottom: 20px;
  }
}
.topMenu__item--date {
  display: none;
  padding-right: 25px;
  font-size: 1.1rem;
  text-align: right;
}
@media (max-width: 599px) {
  .topMenu__item--date {
    display: block;
  }
}
@media (max-width: 479px) {
  .topMenu__item--date {
    padding-bottom: 20px;
  }
}
.topMenu__link {
  display: flex;
  position: relative;
  flex-direction: column;
  transition: color 0.3s;
  color: #000;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
  text-transform: capitalize;
}
@media (max-width: 1023px) {
  .topMenu__link {
    flex-direction: row;
    align-items: center;
    padding-left: 20px;
    font-size: 1.3rem;
    line-height: 4rem;
    text-transform: capitalize;
  }
}
.topMenu__link:hover {
  color: #96bf4c;
}
.topMenu__link::before {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
  background-color: #96bf4c;
  content: "";
}
.topMenu__link::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  max-width: 0;
  height: 1px;
  transition: max-width 0.3s, background-color 0.3s;
  border-radius: 0 0 2px 2px;
  background-color: transparent;
  content: "";
}
.topMenu__item.active .topMenu__link::after {
  max-width: 100%;
  background-color: #96bf4c;
  animation: maxToHide 0.6s 1 normal forwards;
}
.topMenu__item:hover .topMenu__link::after {
  max-width: 100%;
  background-color: #96bf4c;
  animation: maxToHide 0.6s 1 normal forwards;
}

.topicsSlider {
  position: relative;
  padding: 62px 0;
  background-color: #fff;
  overflow: hidden;
}
.topicsSlider__items {
  display: flex;
  margin-left: 30px;
  transition: transform 0.6s;
}
.topicsSlider__item {
  position: relative;
  flex-basis: 432px;
  flex-shrink: 0;
  padding-left: 120px;
}
@media (max-width: 599px) {
  .topicsSlider__item {
    flex-basis: 380px;
    padding-left: 100px;
  }
}
@media (max-width: 479px) {
  .topicsSlider__item {
    flex-basis: 280px;
    padding-left: 70px;
  }
}
.topicsSlider__icon {
  position: absolute;
  top: 0;
  left: 64px;
}
@media (max-width: 599px) {
  .topicsSlider__icon {
    left: 50px;
  }
}
@media (max-width: 479px) {
  .topicsSlider__icon {
    left: 20px;
  }
}
.topicsSlider__topic {
  padding: 18px 0;
  color: #3f4146;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.075px;
  text-transform: uppercase;
}
.topicsSlider__topicLink {
  transition: text-shadow 0.3s;
  text-shadow: 0.3px 0 0 transparent;
}
.topicsSlider__topicLink:hover {
  text-shadow: 0.3px 0 0 #000;
}
.topicsSlider__title {
  height: 4.8rem;
  color: #120a26;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.6rem;
  line-height: 2.4rem;
  overflow: hidden;
}
@media (max-width: 479px) {
  .topicsSlider__title {
    height: 9.6rem;
  }
}
.topicsSlider__titleLink {
  transition: border-bottom-color 0.3s;
  border-bottom: 1px solid transparent;
}
.topicsSlider__titleLink:hover {
  border-bottom: 1px solid #120a26;
}
.topicsSlider__nav {
  display: flex;
  position: absolute;
  top: 50%;
  justify-content: space-between;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}
.topicsSlider__navButton {
  position: relative;
  width: 135px;
  height: 103px;
  padding: 0;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .topicsSlider__navButton {
    width: 80px;
  }
}
@media (max-width: 479px) {
  .topicsSlider__navButton {
    width: 46px;
    height: 150px;
  }
}
.topicsSlider__navButton::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s;
  color: #96bf4c;
}
.topicsSlider__navButton--left {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.9) 33%, rgba(255, 255, 255, 0) 100%);
}
.topicsSlider__navButton--left::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 90px;
  height: 90px;
  margin-top: -45px;
  font-size: 90px;
  line-height: 90px;
  text-align: left;
  left: -20px;
  content: "\E927";
}
.topicsSlider__navButton--left:hover::after {
  transform: translateX(-3px);
}
.topicsSlider__navButton--right {
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0.9) 33%, rgba(255, 255, 255, 0) 100%);
}
.topicsSlider__navButton--right::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 90px;
  height: 90px;
  margin-top: -45px;
  font-size: 90px;
  line-height: 90px;
  text-align: right;
  right: -20px;
  content: "\E928";
}
.topicsSlider__navButton--right:hover::after {
  transform: translateX(3px);
}

.ovalBackground {
  position: absolute;
  top: -90px;
  left: -550px;
}
@media (min-width: 360px) {
  .ovalBackground {
    top: -110px;
    left: -500px;
  }
}
@media (min-width: 480px) {
  .ovalBackground {
    left: -450px;
  }
}
@media (min-width: 600px) {
  .ovalBackground {
    left: -400px;
  }
}
@media (min-width: 768px) {
  .ovalBackground {
    left: -350px;
  }
}
@media (min-width: 1024px) {
  .ovalBackground {
    left: -200px;
  }
}
@media (min-width: 1368px) {
  .ovalBackground {
    left: -150px;
  }
}

.contactForm label {
  display: block;
  position: relative;
  cursor: pointer;
}
.contactForm label.contactForm__textarea {
  display: flex;
}
.contactForm label.contactForm__textarea > span {
  flex: 1;
}
.contactForm label:hover .wpcf7-text, .contactForm label:hover .wpcf7-textarea {
  border: 1px solid #96bf4c;
}
.contactForm__inputTitle {
  position: absolute;
  top: 30px;
  left: 24px;
  color: #525252;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 22px;
  z-index: 2;
}
label.contactForm__textarea .contactForm__inputTitle {
  top: 18px;
}
label.active .contactForm__inputTitle {
  display: none;
}
.contactForm .wpcf7-text,
.contactForm .wpcf7-textarea {
  width: 100%;
  transition: border 0.3s;
  border: 1px solid transparent;
  font-size: 1.6rem;
}
.contactForm .wpcf7-text:focus,
.contactForm .wpcf7-textarea:focus {
  border: 1px solid #96bf4c;
}
.contactForm .wpcf7-text {
  padding: 12px 24px;
}
.contactForm .wpcf7-textarea {
  min-height: 245px;
  padding: 21px 24px;
  resize: none;
}
.contactForm__inputHalf {
  width: 100%;
}
@media (min-width: 768px) {
  .contactForm__inputHalf {
    display: flex;
    justify-content: space-between;
  }
  .contactForm__inputHalf label {
    flex: 1;
  }
  .contactForm__inputHalf label:nth-of-type(1) {
    margin-right: 9px;
  }
  .contactForm__inputHalf label:nth-of-type(2) {
    margin-left: 9px;
  }
}
.contactForm .wpcf7-list-item {
  margin: 0;
}
.contactForm .wpcf7-checkbox {
  position: relative;
}
.contactForm .wpcf7-checkbox input {
  display: none;
}
.contactForm .wpcf7-checkbox input:checked + span::before {
  content: "\E90F";
}
.contactForm .wpcf7-checkbox input + span {
  display: block;
  width: 100%;
  max-width: 458px;
  padding-left: 50px;
  color: #3f4146;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 22px;
}
.contactForm .wpcf7-checkbox input + span:hover::before {
  border: 1px solid #96bf4c;
}
.contactForm .wpcf7-checkbox input + span::before {
  display: flex;
  position: absolute;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: border 0.3s;
  border: 1px solid transparent;
  background-color: #fff;
  font-family: "icomoon";
}
.contactForm .wpcf7-not-valid {
  border: 1px solid #dd1927;
}
.contactForm .wpcf7-not-valid-tip {
  display: none;
}
.contactForm .wpcf7-submit {
  margin-top: 20px;
  padding: 14px 45px;
  transition: border 0.3s;
  border: 2px solid transparent;
  background-color: #120a26;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.089rem;
  text-transform: uppercase;
  cursor: pointer;
}
.contactForm .wpcf7-submit:hover {
  border: 2px solid #96bf4c;
}
.contactForm .wpcf7-mail-sent-ng {
  padding: 1.2em 1em;
  border: 2px solid #e23642;
  font-size: 1.6rem;
  line-height: 22px;
}

.bloggerData__smallText {
  max-width: 180px;
  color: #767676;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: initial;
  word-break: break-word;
}
.bloggerData__smallText--bold {
  font-weight: 600;
}
.bloggerData__row {
  display: flex;
  width: 100%;
}
@media (min-width: 600px) {
  .bloggerData__row--center {
    align-items: center;
  }
}
@media (max-width: 599px) {
  .bloggerData__row {
    flex-direction: column;
  }
}
.bloggerData__columnLeft {
  flex: 6;
  width: 60%;
  padding-right: 5px;
}
@media (max-width: 599px) {
  .bloggerData__columnLeft {
    padding-right: 0;
  }
}
.bloggerData__columnRight {
  flex: 4;
  width: 40%;
}
@media (max-width: 599px) {
  .bloggerData__columnLeft, .bloggerData__columnRight {
    width: 100%;
  }
}
.bloggerData__name, .bloggerData__position {
  max-width: 60%;
}
@media (max-width: 599px) {
  .bloggerData__name, .bloggerData__position {
    max-width: 100%;
  }
}
.bloggerData__name {
  margin-bottom: 20px;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.03rem;
}
@media (max-width: 599px) {
  .bloggerData__name {
    font-size: 2rem;
  }
}
.bloggerData__nameLink {
  transition: opacity 0.3s;
}
.bloggerData__nameLink:hover {
  opacity: 0.75;
}
.bloggerData__position {
  color: #120a26;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 22px;
}
.bloggerData__tags {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}
.bloggerData__tag {
  margin-top: 5px;
  margin-right: 8px;
  padding: 4px 10px;
  border: 1px solid #96bf4c;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
  letter-spacing: 0.016rem;
  line-height: 24px;
}
@media (max-width: 767px) {
  .bloggerData__authorSocial {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.bloggerData__social {
  display: flex;
  margin-bottom: 20px;
  line-height: 0;
}
@media (max-width: 599px) {
  .bloggerData__social--singleBlogger {
    justify-content: flex-start;
    width: 100%;
  }
}
@media (max-width: 599px) {
  .bloggerData__social {
    flex: 1;
    align-items: center;
    min-width: 200px;
    padding: 15px 0;
  }
}
@media (min-width: 600px) {
  .bloggerData__social {
    justify-content: flex-start;
  }
}
.bloggerData__socialBox {
  padding-right: 5px;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .bloggerData__socialBox {
    margin-right: 8px;
  }
}
.bloggerData__contact {
  padding-top: 15px;
}
@media (max-width: 599px) {
  .bloggerData__contact {
    flex: 1;
    min-width: 250px;
    padding-top: 28px;
  }
}
.bloggerData__contact li {
  padding-bottom: 10px;
  overflow: hidden;
}
.bloggerData__contact li .link {
  margin-top: 0;
}
@media (min-width: 600px) {
  .bloggerData__contact li {
    padding-right: 0;
    padding-left: 0;
  }
}
.bloggerData__authorImage {
  min-height: 10px;
}
.bloggerData__authorImage img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 1024px) {
  .bloggerData__authorImage img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 1023px) {
  .bloggerData__authorImage img {
    width: 100%;
    height: auto;
  }
}

.bstPublication {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  color: #fff;
}
.bstPublication::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 150vw;
  transform: translateX(-50%);
  background-color: #3f4146;
  content: "";
}
.bstPublication__inner {
  padding: 110px 0;
  z-index: 1;
}
.bstPublication__sectionHeader {
  font-size: 2.2rem;
  font-weight: 600;
}
.bstPublication__content {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
}
@media (max-width: 1023px) {
  .bstPublication__content {
    flex-direction: column;
  }
}
.bstPublication__image {
  display: flex;
  flex-basis: 31.25%;
  align-items: center;
}
@media (max-width: 1279px) {
  .bstPublication__image {
    padding-left: 50px;
  }
}
@media (max-width: 1023px) {
  .bstPublication__image {
    flex-basis: 100%;
  }
}
@media (max-width: 767px) {
  .bstPublication__image {
    padding-left: 0;
  }
}
.bstPublication__info {
  flex-basis: 68.75%;
  padding-left: 50px;
}
@media (max-width: 1023px) {
  .bstPublication__info {
    flex-basis: 100%;
  }
}
@media (max-width: 767px) {
  .bstPublication__info {
    padding-left: 0;
  }
}
.bstPublication__header {
  color: #96bf4c;
  font-size: 2.8rem;
  line-height: 1.4;
}
@media (max-width: 479px) {
  .bstPublication__header {
    font-size: 2.4rem;
  }
}
.bstPublication__teaser {
  margin-top: 34px;
  line-height: 1.5;
}
@media (max-width: 479px) {
  .bstPublication__teaser {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.postContent a.bstPublication__link {
  margin-top: 30px;
  color: #fff;
  font-weight: normal;
}
@media (max-width: 479px) {
  .postContent a.bstPublication__link {
    font-size: 1.6rem;
  }
}

.tags {
  display: flex;
  flex-wrap: wrap;
}
.tags__tag {
  margin-top: 10px;
  margin-right: 10px;
  padding: 4px 10px;
  border: 1px solid #96bf4c;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
  letter-spacing: 0.016rem;
  line-height: 2.4rem;
  cursor: pointer;
}

.comments {
  display: flex;
  flex-direction: column;
  padding-top: 29px;
}
.comments .comment {
  position: relative;
  padding-top: 56px;
  padding-bottom: 25px;
}
.comments .comment::after {
  position: absolute;
  bottom: 0;
  content: "";
}
@media (max-width: 767px) {
  .comments .comment {
    padding-top: 21px;
  }
}
.comments .pingback {
  display: none;
}
.comments > .comment::after {
  width: 100%;
  max-width: 1022px;
  border: 1px solid #000;
  opacity: 0.14;
}
.comments .comment-body {
  max-width: 864px;
}
.comments .comment-meta {
  display: flex;
  width: 100%;
}
@media (min-width: 768px) {
  .comments .comment-meta {
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
  }
}
@media (max-width: 767px) {
  .comments .comment-meta {
    flex-direction: column-reverse;
  }
}
.comments .comment-author {
  display: flex;
}
.comments .comment-author img {
  width: 50px;
  height: 50px;
  margin-right: 25px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .comments .comment-author img {
    margin-right: 15px;
  }
}
.comments .reply {
  display: inline-block;
  position: relative;
  margin-top: 15px;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  color: #3f4146;
  font-size: 1.8rem;
  font-weight: 400;
}
.comments .reply::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  font-size: 46px;
  line-height: 46px;
  text-align: right;
  right: -64px;
  transition: transform 0.3s;
  color: #96bf4c;
  content: "\E929";
}
.comments .reply.active, .comments .reply:hover {
  border-bottom: 1px solid rgba(63, 65, 70, 0.8);
  color: rgba(63, 65, 70, 0.8);
}
.comments .reply.active::after, .comments .reply:hover::after {
  transform: translateX(3px);
}
@media (min-width: 768px) {
  .comments .reply {
    margin-left: 75px;
  }
}
.comments .fn {
  display: flex;
  align-items: center;
  color: #3f4146;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .comments .fn {
    padding-top: 15px;
    padding-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 600;
  }
}
.comments .says {
  display: none;
}
.comments .comment-metadata {
  color: #333;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .comments .comment-metadata {
    padding-bottom: 15px;
  }
}
.comments .comment-content {
  color: #120a26;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
@media (min-width: 768px) {
  .comments .comment-content {
    padding-left: 75px;
  }
}
@media (max-width: 767px) {
  .comments .comment-content {
    padding-top: 10px;
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.comments .children {
  display: flex;
  position: relative;
  flex-direction: column;
  max-width: 864px;
  margin-top: 41px;
  margin-left: 75px;
  padding: 0 24px 25px;
  border: 2px solid #96bf4c;
}
@media (max-width: 767px) {
  .comments .children {
    margin-left: 0;
    padding: 12px 15px;
  }
}
.comments .children::before, .comments .children::after {
  position: absolute;
  border-style: solid;
  content: "";
}
.comments .children::before {
  top: -25px;
  border-width: 24px 0 0 24px;
  border-color: transparent transparent transparent #96bf4c;
}
.comments .children::after {
  top: -20px;
  left: 26px;
  border-width: 20px 0 0 20px;
  border-color: transparent transparent transparent #f5f5f5;
}
@media (max-width: 767px) {
  .comments .children::after {
    left: 17px;
  }
}
.comments .children > .comment {
  padding: 25px 0;
}
.comments .children > .comment:not(:last-of-type)::before {
  position: absolute;
  bottom: 0;
  width: 100%;
  border: 0.5px solid #000;
  content: "";
  opacity: 0.05;
}

.comment-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 702px;
  margin-top: 20px;
}
.comment-form > label {
  order: 3;
}
.comment-form label {
  /*display: block;*/
  font-size: 14px;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}
.comment-form label:hover .wpcf7-text, .comment-form label:hover .wpcf7-textarea {
  border: 1px solid #96bf4c;
}
.comment-form label p {
  position: absolute;
  top: 10px;
  left: 24px;
  color: #525252;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 22px;
  z-index: 2;
}
.comment-form label.textarea p {
  top: 18px;
}

.comment-form label.active p {
  display: none;
}

.comment-form input {
  padding: 12px 24px;
}
.comment-form input[type=submit] {
  margin-top: 20px;
  padding: 6px 35px 6px 45px;
  background-color: #3f4146;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.089rem;
  line-height: 30px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .comment-form input[type=submit] {
    display: flex;
    justify-content: center;
    max-width: 100%;
    padding: 6px 20px;
  }
}
.comment-form input[type=text], .comment-form input[type=email] {
  width: 100%;
  transition: border 0.3s;
  border: 1px solid transparent;
  font-size: 1.6rem;
}
.comment-form input[type=text]:focus, .comment-form input[type=email]:focus {
  border: 1px solid #96bf4c;
}
.comment-form textarea {
  width: 100%;
  min-height: 245px;
  padding: 21px 24px;
  transition: border 0.3s;
  border: 1px solid transparent;
  font-size: 1.6rem;
  resize: none;
}
.comment-form textarea:focus {
  border: 1px solid #96bf4c;
}
.comment-form__inputHalf {
  order: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .comment-form__inputHalf {
    display: flex;
    justify-content: space-between;
  }
  .comment-form__inputHalf label {
    flex: 1;
  }
  .comment-form__inputHalf label:nth-of-type(1) {
    margin-right: 9px;
  }
  .comment-form__inputHalf label:nth-of-type(2) {
    margin-left: 9px;
  }
}
.comment-form .comment-form-url {
  order: 2;
}
.comment-form .form-submit {
  order: 4;
}
.comment-form .wysija-after-comment {
  display: none;
}

.reply-person {
  width: 100%;
  margin-top: 49px;
  margin-bottom: 15px;
  padding: 14px 26px;
  background-color: #3f4146;
  color: #96bf4c;
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .reply-person {
    margin-top: 53px;
  }
}

.resultBox {
  margin-right: 52px;
  padding: 45px 87px 40px 34px;
  background-color: #fff;
}
@media (max-width: 1279px) {
  .resultBox {
    margin-right: 0;
  }
}
@media (max-width: 479px) {
  .resultBox {
    padding: 45px 20px 40px;
  }
}
.resultBox + .resultBox {
  margin-top: 14px;
}
.resultBox__category {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}
.resultBox__title {
  margin-top: 30px;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2.4rem;
  line-height: 3.4rem;
}
.resultBox__title strong {
  font-weight: 700;
}
.resultBox__excerpt {
  margin-top: 14px;
  color: #333;
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.resultBox__excerpt strong {
  font-weight: 700;
}
.resultBox__link {
  color: transparent;
}
.resultBox__loader {
  height: 60px;
}
.resultBox__more {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 479px) {
  .resultBox__more {
    margin-top: 30px;
  }
}

.searchHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.searchHeader__box {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 980px;
  padding-left: 68px;
}
.searchHeader__box::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  font-size: 38px;
  line-height: 38px;
  text-align: left;
  top: 22px;
  left: 0;
  color: #96bf4c;
  content: "\E91A";
}
@media (max-width: 479px) {
  .searchHeader__box {
    padding-left: 0;
  }
  .searchHeader__box::after {
    display: none;
  }
}
.searchHeader__inputBox {
  flex-basis: 100%;
  padding-bottom: 24px;
  border-bottom: 2px solid #96bf4c;
}
.searchHeader__input {
  width: 100%;
  padding-right: 80px;
  background-color: transparent;
  color: #fff;
  font-family: "Lato", Tahoma, Arial;
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .searchHeader__input {
    font-size: 3rem;
    line-height: 5rem;
  }
}
@media (max-width: 479px) {
  .searchHeader__input {
    font-size: 2.6rem;
    line-height: 5rem;
  }
}
.searchHeader__button {
  display: block;
  position: relative;
  flex-basis: 40px;
  flex-shrink: 0;
  width: 58px;
  height: 49px;
  margin: 0 0 0 -50px;
  padding: 0;
  transition: transform 0.3s;
  border: 0;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 1;
}
.searchHeader__button::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 58px;
  line-height: 58px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  margin-top: -29px;
  margin-left: -29px;
  transition: color 0.3s;
  color: #fff;
  content: "\E929";
}
.searchHeader__button:hover {
  transform: translateX(3px);
}
.searchHeader__button:hover::after {
  color: #96bf4c;
}

.twitterBox {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 430px;
  margin-bottom: 30px;
  padding: 50px 41px 26px 38px;
  background-color: #3f4146;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .twitterBox {
    padding: 45px 35px 26px 38px;
  }
}
@media (max-width: 767px) {
  .twitterBox {
    padding: 45px 24px 26px 26px;
  }
}
.twitterBox__twitterLogo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.twitterBox__tag, .twitterBox__content, .twitterBox__footer {
  z-index: 5;
}
.twitterBox__tag {
  position: relative;
  padding-bottom: 35px;
  padding-left: 38px;
  color: #96bf4c;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2rem;
  line-height: 4.5rem;
}
.twitterBox__tag:before {
  content: "\E932";
  display: block;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  color: white;
  font-size: 26px;
  font-family: "icomoon";
}
.twitterBox__text {
  margin-bottom: 20px;
  color: #fff;
}
.twitterBox__content {
  flex: 1;
  padding-bottom: 100px;
}
.twitterBox__content .date {
  display: block;
  padding-bottom: 10px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.6rem;
  opacity: 0.7;
}
.twitterBox__content p {
  display: none;
  flex: 1;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.6rem;
}
.twitterBox__content p a {
  display: inline-block;
  color: #96bf4c;
}
.twitterBox__content p.visible {
  display: block;
}
.twitterBox__footer {
  display: flex;
  justify-content: space-between;
}
.twitterBox__controls {
  display: flex;
}
.twitterBox__control {
  margin-right: 8px;
  padding: 7px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}
.twitterBox .active {
  background-color: #96bf4c;
}
.twitterBox__follow {
  display: flex;
}
.twitterBox__follow p {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.067rem;
}
.twitterBox__followIcon {
  width: 10px;
  height: 9px;
  transform: rotateZ(-39deg);
  color: #96bf4c;
}
.twitterBox__followIcon::before {
  font-size: 1.8rem;
}

.overlaySearch {
  position: fixed;
  top: 86px;
  left: 50%;
  width: 100vw;
  height: 100vh;
  max-height: 0;
  transform: translateX(-50%);
  transition: max-height 0.3s, top 0.3s;
  background-color: #3f4146;
  overflow: hidden;
  z-index: 2;
}
.overlaySearch.active {
  top: 0;
  max-height: 100vh;
}
.overlaySearch__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 957px;
  padding-bottom: 43px;
  transform: translate(-50%, -50%);
  /* >= Internet Explorer 9 */
}
@media screen and (min-width: 0\0 ) {
  .overlaySearch__panel {
    width: auto;
  }
}
.overlaySearch__wrapper {
  margin-right: 25px;
  padding-right: 25px;
  padding-left: 45px;
}
@media (max-width: 479px) {
  .overlaySearch__wrapper {
    padding-left: 30px;
  }
}
.overlaySearch__input {
  display: flex;
  position: relative;
}
.overlaySearch__icon {
  position: relative;
  top: 5px;
  left: -30px;
}
@media (max-width: 1023px) {
  .overlaySearch__icon {
    left: -20px;
  }
}
@media (max-width: 479px) {
  .overlaySearch__icon {
    left: -10px;
  }
}
.overlaySearch__icon::before {
  color: #96bf4c;
  font-size: 3.5rem;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E91A";
}
@media (max-width: 767px) {
  .overlaySearch__icon::before {
    font-size: 3rem;
  }
}
.overlaySearch__send {
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  transform: translate3d(0, -50%, 0);
  transition: transform 0.3s;
  border: 0;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 1;
}
.overlaySearch__send::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.3s;
  color: #fff;
  font-size: 5.5rem;
  content: "\E929";
}
@media (max-width: 767px) {
  .overlaySearch__send::before {
    font-size: 4rem;
  }
}
.overlaySearch__send:hover {
  transform: translate3d(3px, -50%, 0);
}
.overlaySearch__send:hover::before {
  color: #96bf4c;
}
.overlaySearch__search {
  width: 100%;
  padding-right: 50px;
  padding-bottom: 25px;
  border-bottom: 2px solid #96bf4c;
  background-color: transparent;
  color: #fff;
  font-family: "Lato", Tahoma, Arial;
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .overlaySearch__search {
    font-size: 3rem;
  }
}
.overlaySearch__results {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  padding-left: 30px;
}
.overlaySearch__singleResult {
  display: inline-block;
  margin-top: 6px;
  padding-bottom: 20px;
  color: #888492;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2rem;
  line-height: 2.2rem;
}
@media (max-width: 767px) {
  .overlaySearch__singleResult {
    font-size: 1.8rem;
  }
}
@media (max-width: 479px) {
  .overlaySearch__singleResult {
    padding-bottom: 16px;
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
.overlaySearch__singleResult span {
  font-size: 1.4rem;
  white-space: nowrap;
}
.overlaySearch__singleResult strong {
  color: #fff;
}

.uberUns {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 430px;
  margin-bottom: 30px;
  padding: 48px 43px 59px 47px;
  background-color: #3f4146;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .uberUns {
    max-width: initial;
  }
}
@media (max-width: 767px) {
  .uberUns {
    padding: 48px 20px 47px 26px;
  }
}
.uberUns--noPadding {
  padding: 0;
}
@media (max-width: 767px) {
  .uberUns--noPadding {
    padding: 0;
  }
}
.uberUns__oval {
  position: absolute;
  top: -66px;
  left: -66px;
  z-index: 0;
}
.uberUns__wrapper {
  z-index: 1;
}
.uberUns__wrapper a {
  color: #fff;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  text-transform: lowercase;
}
.uberUns__wrapper a:hover {
  color: #fff;
}
.uberUns__youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 47.8%;
}
.uberUns__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.uberUns__title {
  color: #fff;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2.2rem;
  line-height: 3.2rem;
}

.postContent {
  position: relative;
  max-width: 100%;
  width: 100%;
}
.postContent a {
  color: #6a7b21;
  font-weight: 700;
}
.postContent strong {
  font-weight: 700;
}
.postContent em {
  font-style: italic;
}
.postContent h1,
.postContent h2,
.postContent h3,
.postContent h4,
.postContent h5,
.postContent h6,
.postContent p {
  max-width: 704px;
  margin: auto;
}
@media (max-width: 1023px) {
  .postContent h1,
.postContent h2,
.postContent h3,
.postContent h4,
.postContent h5,
.postContent h6,
.postContent p {
    max-width: 696px;
    margin: 0;
  }
}
.postContent h1,
.postContent h2,
.postContent h3,
.postContent h4,
.postContent h5,
.postContent h6 {
  margin-top: 30px;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
}
.postContent h1 ~ p,
.postContent h2 ~ p,
.postContent h3 ~ p,
.postContent h4 ~ p,
.postContent h5 ~ p,
.postContent h6 ~ p {
  margin-top: 25px;
}
@media (max-width: 1023px) {
  .postContent h1 ~ p,
.postContent h2 ~ p,
.postContent h3 ~ p,
.postContent h4 ~ p,
.postContent h5 ~ p,
.postContent h6 ~ p {
    margin-top: 10px;
  }
}
.postContent h1 ~ ul,
.postContent h2 ~ ul,
.postContent h3 ~ ul,
.postContent h4 ~ ul,
.postContent h5 ~ ul,
.postContent h6 ~ ul {
  margin-top: 20px;
}
.postContent h1,
.postContent h2 {
  font-size: 3.5rem;
  line-height: 5rem;
}
@media (max-width: 479px) {
  .postContent h1,
.postContent h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.postContent h3,
.postContent h4 {
  font-size: 3rem;
  line-height: 4.5rem;
}
@media (max-width: 479px) {
  .postContent h3,
.postContent h4 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}
.postContent h5 {
  font-size: 2.7rem;
  line-height: 4rem;
}
@media (max-width: 479px) {
  .postContent h5 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.postContent h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.postContent h4 {
  color: #96bf4c;
}
.postContent p {
  margin-bottom: 25px;
  color: #120a26;
  font-size: 2rem;
  line-height: 3.2rem;
}
@media (max-width: 1023px) {
  .postContent p {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .postContent p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
@media (max-width: 479px) {
  .postContent p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
.postContent .wp-video {
  width: 100% !important;
}
.postContent .customBlockquote {
  position: relative;
  margin: auto;
  color: #3f4146;
}
@media (max-width: 1023px) {
  .postContent .customBlockquote {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .postContent .customBlockquote {
    padding-top: 40px;
    padding-left: 0;
  }
}
.postContent .customBlockquote::before {
  position: absolute;
  top: 0;
  left: -45px;
  color: #96bf4c;
  font-family: "Lato", Tahoma, Arial;
  font-size: 4.4rem;
  font-weight: 700;
  content: "\201C";
}
@media (max-width: 1023px) {
  .postContent .customBlockquote::before {
    left: -5px;
  }
}
@media (max-width: 767px) {
  .postContent .customBlockquote::before {
    left: 0;
  }
}
.postContent .customBlockquote > p {
  padding-bottom: 30px;
  font-family: "Lato", Tahoma, Arial;
  font-weight: 700;
}
.postContent .customBlockquote > p:last-of-type {
  position: relative;
  border-bottom: 2px solid #96bf4c;
}
.postContent .customBlockquote > p:last-of-type::before, .postContent .customBlockquote > p:last-of-type::after {
  position: absolute;
  border-style: solid;
  content: "";
}
.postContent .customBlockquote > p:last-of-type::before {
  bottom: -20px;
  left: 50px;
  border-width: 20px 40px 0 0;
  border-color: #96bf4c transparent transparent;
}
.postContent .customBlockquote > p:last-of-type::after {
  bottom: -17px;
  left: 52px;
  border-width: 18px 36px 0 0;
  border-color: #fff transparent transparent;
}
.postContent .customBlockquote--big {
  width: 100%;
  max-width: 704px;
}
.postContent .customBlockquote--big > p {
  font-size: 2.6rem;
  letter-spacing: 0.03px;
  line-height: 4.2rem;
}
@media (max-width: 767px) {
  .postContent .customBlockquote--big > p {
    font-size: 2rem;
    letter-spacing: 0.023rem;
    line-height: 3rem;
  }
}
@media (max-width: 479px) {
  .postContent .customBlockquote--big > p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
@media (min-width: 768px) {
  .postContent .customBlockquote--small {
    max-width: 355px;
    padding-right: 60px;
    float: left;
  }
}
@media (max-width: 767px) {
  .postContent .customBlockquote--small {
    font-size: 2rem;
    letter-spacing: 0.023rem;
    line-height: 3rem;
  }
}
@media (min-width: 1024px) {
  .postContent .customBlockquote--small {
    margin-left: -100px;
  }
}
.postContent .customBlockquote--small + * {
  max-width: 858px;
}
.postContent .customBlockquote__author > p {
  margin-bottom: 0;
  font-size: 1.2rem;
}
.postContent iframe {
  width: calc(100% + 22px);
}
@media (max-width: 1023px) {
  .postContent iframe {
    width: 100%;
  }
}
.postContent ul,
.postContent ol {
  width: 100%;
  max-width: 704px;
  margin: 0 auto 20px;
  padding-inline-start: 40px;
}
.postContent ul li,
.postContent ol li {
  display: block;
  margin-top: 10px;
  color: #120a26;
  line-height: 3.2rem;
}
@media (max-width: 767px) {
  .postContent ul li,
.postContent ol li {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
@media (max-width: 479px) {
  .postContent ul li,
.postContent ol li {
    margin-top: 6px;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
.postContent ol {
  list-style-type: decimal;
}
.postContent ol li {
  display: list-item;
  margin-left: 10px;
  padding-left: 5px;
}
.postContent ul li {
  position: relative;
  margin-left: 10px;
  padding-left: 5px;
}
.postContent ul li::before {
  display: inline-block;
  width: 2rem;
  margin-left: -2rem;
  color: #96bf4c;
  font-weight: bold;
  content: "\2022";
}
.postContent figure {
  max-width: 874px;
  margin: 25px 0;
  position: relative;
}
@media (max-width: 1023px) {
  .postContent figure {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .postContent figure {
    max-width: 100%;
  }
}
.postContent figure img {
  padding: 0;
}
.postContent figure.alignright {
  max-width: 789px;
  padding-left: 20px;
  float: right;
  text-align: right;
  /* >= Internet Explorer 9 */
}
@media screen and (min-width: 0\0 ) {
  .postContent figure.alignright {
    display: block;
    float: none;
  }
}
@media (max-width: 1023px) {
  .postContent figure.alignright {
    max-width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .postContent figure.alignright {
    max-width: 100%;
    margin: 0;
  }
}
.postContent figure.alignright figcaption {
  text-align: right;
}
.postContent figure.aligncenter, .postContent figure.alignnone {
  display: block;
  max-width: 874px;
  text-align: center;
}
@media (max-width: 1023px) {
  .postContent figure.aligncenter, .postContent figure.alignnone {
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .postContent figure.aligncenter, .postContent figure.alignnone {
    max-width: 100%;
    margin: 0;
  }
}
.postContent figure.aligncenter figcaption, .postContent figure.alignnone figcaption {
  text-align: center;
}
.postContent figure.aligncenter {
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .postContent figure.aligncenter {
    width: 100% !important;
  }
}
.postContent figure.alignleft {
  max-width: 789px;
  padding-right: 20px;
  float: left;
  text-align: left;
  /* >= Internet Explorer 9 */
}
@media screen and (min-width: 0\0 ) {
  .postContent figure.alignleft {
    display: block;
    float: none;
  }
}
@media (max-width: 1023px) {
  .postContent figure.alignleft {
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .postContent figure.alignleft {
    max-width: 100%;
    margin: 0;
  }
}
.postContent figure.alignleft figcaption {
  text-align: left;
}
.postContent img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 25px 0;
}
.postContent img.alignright {
  max-width: 789px;
  margin-right: -85px;
  padding-left: 20px;
  float: right;
}
@media (max-width: 1023px) {
  .postContent img.alignright {
    max-width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .postContent img.alignright {
    max-width: 100%;
    margin: 0;
  }
}
.postContent img.aligncenter, .postContent img.alignnone {
  display: block;
  max-width: 874px;
  margin: 0 -85px;
}
@media (max-width: 1023px) {
  .postContent img.aligncenter, .postContent img.alignnone {
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .postContent img.aligncenter, .postContent img.alignnone {
    max-width: 100%;
    margin: 0;
  }
}
.postContent img.alignleft {
  max-width: 789px;
  margin-left: -85px;
  padding-right: 20px;
  float: left;
}
@media (max-width: 1023px) {
  .postContent img.alignleft {
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .postContent img.alignleft {
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 1023px) {
  .postContent img {
    max-width: 100%;
  }
  .postContent img.aligncenter, .postContent img.alignnone {
    margin: 0;
  }
  .postContent img.alignright {
    margin-right: 0;
  }
  .postContent img.alignleft {
    margin-left: 0;
  }
}
.postContent > p > figure > a > img.aligncenter {
  margin: 0 auto;
}
.postContent > p > img.aligncenter {
  margin: 0 auto;
}
.postContent figcaption {
  padding: 0 15px;
  color: #3f4146;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-align: center;
}
@media (max-width: 479px) {
  .postContent figcaption {
    font-size: 1.2rem;
  }
}

.gallery {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
}
.gallery-item {
  position: absolute;
  transition: opacity 0.6s;
  opacity: 0;
}
.gallery-item.visible {
  flex-direction: column;
  opacity: 1;
}
.gallery .gallery-icon a {
  cursor: default;
}
.gallery img {
  width: 100%;
}
.gallery figcaption {
  padding: 0 108px 0 88px;
}
.gallery__slideStatus {
  position: absolute;
  right: 60px;
  bottom: 60px;
  color: #291659;
  font-family: "Lato", Tahoma, Arial;
  font-size: 1.4rem;
}
.gallery__control {
  position: absolute;
  bottom: 45px;
  width: 48px;
  height: 48px;
  background-color: #3f4146;
  color: #96bf4c;
  font-size: 2.1rem;
  cursor: pointer;
}
.gallery__control::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery__control:nth-of-type(1) {
  left: 0;
}
.gallery__control:nth-of-type(1)::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E90D";
}
.gallery__control:nth-of-type(2) {
  right: 0;
}
.gallery__control:nth-of-type(2)::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E911";
}

.postNav {
  flex-basis: 192px;
  padding-right: 10px;
  padding-left: 15px;
}
@media (max-width: 1023px) {
  .postNav {
    display: none;
  }
}
.postNav__navElement {
  position: relative;
  margin-top: 22px;
  transition: opacity 0.3s;
  color: #3f4146;
  font-size: 1.6rem;
  line-height: 2rem;
  cursor: pointer;
  opacity: 0.59;
}
.postNav__navElement:hover {
  opacity: 1;
}
.postNav__navElement.active {
  font-weight: 700;
  opacity: 1;
}
.postNav__navElement.active::before {
  position: absolute;
  top: 50%;
  left: -16px;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #96bf4c;
  content: "";
}

.postSidebar {
  flex-basis: 245px;
  margin-bottom: 45px;
}
section.singlePost--withCover .postSidebar {
  margin-top: -150px;
}
@media (max-width: 767px) {
  section.singlePost--withCover .postSidebar {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .postSidebar {
    flex-basis: 215px;
  }
}
@media (max-width: 767px) {
  .postSidebar {
    flex-basis: 245px;
    align-self: center;
    max-width: 245px;
  }
}
.postSidebar__thumbnail {
  /*min-height: 245px;*/
}
@media (max-width: 1023px) {
  .postSidebar__thumbnail {
    min-height: 200px;
  }
}
.postSidebar__thumbnail img {
  width: 100%;
  height: auto;
}
.postSidebar__sidebarPosition {
  color: #fff;
  font-size: 1.2rem;
}
.postSidebar__sidebarName {
  padding-top: 10px;
  padding-bottom: 15px;
  transition: color 0.3s;
  color: #96bf4c;
  font-size: 1.8rem;
  font-weight: 500;
}
.postSidebar__sidebarName:hover {
  color: #fff;
}
.postSidebar__sidebarSocials {
  display: flex;
  flex-wrap: wrap;
}
.postSidebar__sidebarSocials a {
  padding-top: 25px;
}
.postSidebar__sidebarSocial {
  position: relative;
  width: 36px;
  height: 30px;
  margin: 20px 0 0;
}
.postSidebar__sidebarSocial::after {
  left: 0;
  font-size: 20px;
}
.postSidebar__sidebarInner {
  padding: 22px 26px 29px;
  background-color: #3f4146;
}

.postTeilen {
  position: absolute;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .postTeilen {
    top: 0;
    right: 25px;
  }
}
@media (max-width: 1023px) {
  .postTeilen {
    display: flex;
    right: 25px;
    justify-content: flex-end;
    width: 100%;
    max-width: 704px;
  }
}
@media (max-width: 767px) {
  .postTeilen {
    top: -45px;
    right: 0;
  }
}
.postTeilen__teilenButton {
  margin-top: 0;
  margin-left: 10px;
  color: #3f4146;
  font-size: 1.2rem;
  letter-spacing: normal;
}
.postTeilen__teilenBox {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  z-index: 10;
}
.postTeilen__teilenBox.active {
  display: block;
}
.postTeilen__teilenHeader {
  display: flex;
  position: relative;
  padding: 19px 20px 19px 50px;
  background-color: #3f4146;
  color: #96bf4c;
}
.postTeilen__teilenHeader .link {
  font-size: 1.3rem;
}
.postTeilen__teilenClose {
  position: absolute;
  right: 20px;
  left: auto;
  font-size: 1.6rem;
  cursor: pointer;
}
.postTeilen__teilenWrapper {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  background-color: #96bf4c;
}
.postTeilen__teilenSocial {
  display: flex;
  padding: 12px 20px 12px 60px;
}
.postTeilen__teilenSocial a {
  color: #120a26;
  font-size: 1.6rem;
  font-weight: 400;
}

.blog-container .widget_wysija {
  display: flex;
  flex-wrap: wrap;
}
.blog-container .widget_wysija_cont {
  margin: 60px 0;
}
.blog-container .widget_wysija_cont .wysija-msg .updated {
  padding: 20px;
  border-color: transparent;
  background-color: #3f4146;
  color: #fff;
  font-size: 1.6rem;
}
.blog-container .widget_wysija_cont .wysija-msg blink {
  padding: 20px;
  border-color: transparent;
  background-color: #3f4146;
  color: #fff;
  font-size: 1.6rem;
}
.blog-container .widget_wysija .wysija-paragraph {
  position: relative;
  flex-basis: 50%;
  margin-bottom: 6px;
  padding-right: 20px;
}
@media (max-width: 599px) {
  .blog-container .widget_wysija .wysija-paragraph {
    flex-basis: 100%;
  }
}
.blog-container .widget_wysija .wysija-paragraph label:first-child {
  position: absolute;
  bottom: 8px;
  left: 0;
  transform-origin: left center;
  transition: transform 0.3s, bottom 0.3s, opacity 0.3s, color 0.3s;
  opacity: 0.5;
  pointer-events: none;
}
.blog-container .widget_wysija .wysija-paragraph.invalid label:first-child {
  color: #dd1927;
  opacity: 1;
}
.blog-container .widget_wysija .wysija-paragraph.filled label:first-child {
  bottom: 33px;
  transform: scale(0.6);
  opacity: 1;
}
.blog-container .widget_wysija .wysija-paragraph:nth-child(n+5) {
  flex-basis: 100%;
}
.blog-container .widget_wysija .wysija-paragraph:nth-child(n+6) label:first-child {
  display: none;
}
.blog-container .widget_wysija .wysija-paragraph .formError {
  top: auto !important;
  right: 20px;
  bottom: 0;
  left: auto !important;
  transform: translateY(-50%);
}
.blog-container .widget_wysija .wysija-paragraph .formError .formErrorContent {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #dd1927;
  color: transparent;
}
.blog-container .widget_wysija .wysija-paragraph .formError .formErrorContent::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 9px;
  line-height: 9px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-top: -4.5px;
  margin-left: -4.5px;
  color: #fff;
  content: "\E91D";
}
.blog-container .widget_wysija .wysija-input {
  width: 100%;
  margin-top: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
}
.blog-container .widget_wysija .wysija-checkbox {
  width: 16px;
  height: 16px;
  margin: 0 8px 4px 0;
}
.blog-container .widget_wysija .wysija-checkbox-label {
  position: relative;
  margin-top: 20px;
  margin-right: -20px;
  margin-bottom: -20px;
}
.blog-container .widget_wysija .wysija-checkbox-label {
  color: rgba(0, 0, 0, 0.9);
  font-size: 1.6rem;
}
.blog-container .widget_wysija .wysija-submit {
  margin-top: 40px;
  padding: 0 26px;
  background-color: #3f4146;
  color: #fff;
  font-size: 1.6rem;
  line-height: 45px;
  text-transform: uppercase;
  cursor: pointer;
}

.wysija-user-list {
  margin-left: 20px;
  padding-bottom: 20px;
  list-style: disc;
}
.wysija-msg blink {
  position: relative;
  margin-top: 45px;
  padding: 22px 20px 23px 24px;
  border: 1px solid #96bf4c;
  background-color: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 2.6rem;
}

#wysija-subscriptions input[type=text] {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
}
#wysija-subscriptions input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 0 8px 4px 0;
}
#wysija-subscriptions input[type=submit] {
  margin-top: 20px;
  padding: 0 26px;
  background-color: #3f4146;
  color: #fff;
  font-size: 1.6rem;
  line-height: 45px;
  text-transform: uppercase;
  cursor: pointer;
}
#wysija-subscriptions th label {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 8px;
}
#wysija-subscriptions td label {
  display: inline-block;
  margin-top: 12px;
  padding-right: 20px;
}
#wysija-subscriptions h3 {
  margin-top: 20px;
  font-size: 2.2rem;
  font-weight: 600;
}
#wysija-subscriptions .hidden {
  display: none;
}

.authorsList {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.authorsList__item {
  padding: 20px;
  width: 25%;
  text-align: center;
}
.authorsList--cols2 .authorsList__item {
  width: 50%;
}
@media (max-width: 599px) {
  .authorsList--cols2 .authorsList__item {
    width: 100%;
  }
}
.authorsList--cols2 .authorsList__item figure.authorPhoto {
  width: 250px;
  height: 250px;
}
.authorsList--cols3 .authorsList__item {
  width: 33.33%;
}
@media (max-width: 767px) {
  .authorsList--cols3 .authorsList__item {
    width: 50%;
  }
}
.authorsList--cols3 .authorsList__item figure.authorPhoto {
  width: 200px;
  height: 200px;
}
.authorsList--cols4 .authorsList__item {
  width: 25%;
}
@media (max-width: 767px) {
  .authorsList--cols4 .authorsList__item {
    width: 33.33%;
  }
}
@media (max-width: 599px) {
  .authorsList--cols4 .authorsList__item {
    width: 50%;
  }
}
.authorsList--cols5 .authorsList__item {
  width: 20%;
}
@media (max-width: 767px) {
  .authorsList--cols5 .authorsList__item {
    width: 25%;
  }
}
@media (max-width: 599px) {
  .authorsList--cols5 .authorsList__item {
    width: 50%;
  }
}
.authorsList--cols6 .authorsList__item {
  width: 16.66%;
}
@media (max-width: 767px) {
  .authorsList--cols6 .authorsList__item {
    width: 25%;
  }
}
@media (max-width: 599px) {
  .authorsList--cols6 .authorsList__item {
    width: 50%;
  }
}
.authorsList__item figure.authorPhoto {
  display: block;
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f5f5f5;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}
.authorsList__item figure.authorPhoto > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.authorsList__item .authorContact {
  font-size: 0;
}
.authorsList__item .authorName,
.authorsList__item .authorPosition,
.authorsList__item .authorDepartment,
.authorsList__item .authorLatestPost {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
}
.authorsList__item .authorName {
  font-weight: 700;
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 10px;
}
.authorsList__item .authorDepartment {
  margin-bottom: 12px;
}
.authorsList__item .authorVita,
.authorsList__item .authorLatestPost {
  margin: 20px 0;
}
.authorsList__item .authorVita p,
.authorsList__item .authorLatestPost p {
  align-items: center;
  color: #04101c;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  line-height: 32px;
}
.authorsList__item .authorVita .authorTeaser {
  font-size: 16px;
  line-height: 19.2px;
}
.authorsList__item .authorLatestPost__articleTitle {
  transition: border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.authorsList__item .authorLatestPost__articleLink:hover .authorLatestPost__articleTitle {
  border-bottom: 1px solid #04101c;
}
.authorsList__item .authorTel .authorEmail,
.authorsList__item .authorSocial,
.authorsList__item .authorWeb,
.authorsList__item .authorProfile {
  display: inline-block;
  margin: 2px;
  font-size: 0;
  line-height: 1;
}
.authorsList__item .authorTel .authorEmail a,
.authorsList__item .authorSocial a,
.authorsList__item .authorWeb a,
.authorsList__item .authorProfile a {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #3f4146;
  transition: background-color 0.3s;
}
.authorsList__item .authorTel .authorEmail a:hover,
.authorsList__item .authorSocial a:hover,
.authorsList__item .authorWeb a:hover,
.authorsList__item .authorProfile a:hover {
  background-color: #27282b;
}
.authorsList__item .authorTel .authorEmail a::after,
.authorsList__item .authorTel .authorEmail a i::after,
.authorsList__item .authorSocial a::after,
.authorsList__item .authorSocial a i::after,
.authorsList__item .authorWeb a::after,
.authorsList__item .authorWeb a i::after,
.authorsList__item .authorProfile a::after,
.authorsList__item .authorProfile a i::after {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
}
.authorsList__item .authorTel a::after {
  content: "\E904";
}
.authorsList__item .authorEmail a::after {
  content: "\E924";
}
.authorsList__item .authorSocial a .icon-twitter::after {
  content: "\E925";
}
.authorsList__item .authorSocial a .icon-linkedin::after {
  content: "\E905";
}
.authorsList__item .authorSocial a .icon-facebook::after {
  content: "\E901";
}
.authorsList__item .authorSocial a .icon-xing::after {
  content: "\E906";
}
.authorsList__item .authorSocial a .icon-instagram::after {
  content: "\E933";
}
.authorsList__item .authorSocial a .icon-soundcloud::after {
  content: "\E908";
}
.authorsList__item .authorSocial a .icon-youtube::after {
  content: "\E926";
}
.authorsList__item .authorWeb a::after {
  content: "\E90C";
}
.authorsList__item .authorProfile a::after {
  content: "\E923";
}
.authorsList a {
  color: unset;
}
.authorsList p {
  margin-bottom: unset;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #fcfcfc;
  font-family: "Lato", Tahoma, Arial;
  font-size: 2rem;
  font-weight: 300;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 1;
}

[v-cloak] {
  display: none;
}