@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: "Lato";
  font-style: normal;
  font-weight: 900;
  src: url("../assets/fonts/Lato/Lato-Black.woff2") format("woff2"), url("../assets/fonts/Lato/Lato-Black.woff") format("woff"), url("../assets/fonts/Lato/Lato-Black.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?5zvby8");
  src: url("../assets/fonts/icomoon/fonts/icomoon.eot?5zvby8#iefix") format("embedded-opentype"), url("../assets/fonts/icomoon/fonts/icomoon.ttf?5zvby8") format("truetype"), url("../assets/fonts/icomoon/fonts/icomoon.woff?5zvby8") format("woff"), url("../assets/fonts/icomoon/fonts/icomoon.svg?5zvby8#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: "\E90B";
}

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

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

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

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

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

.icon-tag-videos:before {
  content: "\E932";
}

.icon-tag-infographic-apps:before {
  content: "\E934";
}

.icon-tag-events:before {
  content: "\E935";
}

.icon-file:before {
  content: "\E93A";
}

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

.icon-plus:before {
  content: "\E930";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: "\E927";
}

.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-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-internet:before {
  content: "\E90C";
}

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

@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, .menuSocial a {
  color: #fff;
  position: relative;
  padding: 1rem 2.7rem;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
  background-color: #0C55A6;
  border: 2px solid #0C55A6;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  display: inline-block;
  text-decoration: none;
  border-radius: 0.5rem;
  /*aside & {
    font-size: 1.4rem;
    line-height: math.div(22,14);
  }*/
}
.button.active, .menuSocial a.active, .button:hover, .menuSocial a:hover {
  color: #0C55A6;
  background-color: #fff;
  border: 2px solid #0C55A6;
}
.button--link, .button--reload {
  background-color: #0C55A6;
  padding-left: 6.3rem;
}
.button--link:after, .button--reload:after {
  left: 2.7rem;
  right: auto;
  position: absolute;
  text-align: right;
  font-family: "icomoon";
}
.button--reload::after {
  content: "\E90E";
}
.button--link::after {
  content: "\E920";
}
.button--white, .button--whiteWithBorder {
  background: #fff;
  color: #333333;
  border-color: #fff;
}
.button--white.active, .button--white:hover, .button--whiteWithBorder.active, .button--whiteWithBorder:hover {
  color: #fff;
  background: #0C55A6;
}
.button--whiteWithBorder {
  border: 2px solid #333333;
}
.button--social, .menuSocial a {
  width: 38px;
  height: 38px;
  background-color: #0C55A6;
  padding: 1rem;
  line-height: 1rem;
}
.button--social:after, .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: 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: #fff;
}
.button--social.active:not(.button--static), .menuSocial a.active:not(.button--static), .button--social:hover:not(.button--static), .menuSocial a:hover:not(.button--static) {
  border-color: #0C55A6;
  background-color: #0C55A6;
  opacity: 1;
}
.button--social.active:not(.button--static)::after, .menuSocial a.active:not(.button--static)::after, .button--social:hover:not(.button--static)::after, .menuSocial a:hover:not(.button--static)::after {
  color: #fff;
}
.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: "\E93D";
}
.button--socials-twitter::after {
  content: "\E93D";
}
.button--socials-x::after {
  content: "\E93D";
}
.button--socials-mastodon::after {
  content: "\E915";
}
.button--socials-bluesky::after {
  content: "\E916";
}
.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: "\E90B";
}
.button--socials-internet::after {
  content: "\E90C";
}
.button--microphone::after {
  content: "\E910";
}
.button--podcast::after {
  content: "\E910";
}
.button--play2::after {
  content: "\E92B";
}
.button--play-circle::after {
  content: "\E92C";
}
.button--video::after {
  content: "\E92C";
}

.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.3rem;
  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: #0D2A4A;
}

.body__background--blue .buttonLink--redInverted {
  border: 2px solid #939AFC;
  background-color: #939AFC;
  color: #fcfcfc;
}
.body__background--blue .buttonLink--redInverted:hover {
  background-color: #fcfcfc;
  color: #939AFC;
}

@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 #333333;
  color: #333333;
}
.body__background--blue .buttonLink--gray:hover {
  background-color: #333333;
  color: #fcfcfc;
}

.body__background--blue .buttonLink--white {
  border: 1px solid #fcfcfc;
  color: #fcfcfc;
}
.body__background--blue .buttonLink--white:hover {
  background-color: #fcfcfc;
  color: #0D2A4A;
}
.body__background--blue .buttonLink--whiteHover:hover {
  background-color: #fcfcfc;
  color: #0D2A4A;
}
.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;
}
@media (max-width: 479px) {
  .hamburger {
    margin-left: 10px;
  }
}
.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: #333;
  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: #333;
  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: #333;
  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: #333333;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.hamburger:hover .hamburger__line {
  stroke: #939AFC;
}
.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: #333333;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 5.2rem;
}
.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: #333333;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 3.6rem;
}
@media (max-width: 479px) {
  .heading__h2 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}
.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;
  }
}
.heading__h2--singlePost {
  margin-top: 0px;
}
@media (max-width: 1023px) {
  .heading__h2--singlePost {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .heading__h2--singlePost {
    font-size: 2rem;
  }
}
.heading__h3 {
  color: #3c3c3c;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 3rem;
}
@media (max-width: 479px) {
  .heading__h3 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
.heading__h3--center {
  text-align: center;
}
.heading__reusable {
  margin: 50px 0 25px;
  border-top: 1px solid #333333;
  font-size: 2rem;
  font-weight: 100;
  line-height: 5rem;
}
.heading--noMargin {
  margin: 0;
}
.heading__h4 {
  color: #333333;
  font-size: 1.3rem;
  font-weight: 700;
}

.link {
  display: inline-block;
  position: relative;
  margin-top: 28px;
  padding-top: 2px;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  color: #333333;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.113rem;
  text-transform: uppercase;
}
.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: 12px;
  height: 12px;
  margin-top: -6px;
  font-size: 12px;
  line-height: 12px;
  text-align: right;
  right: -20px;
  transition: transform 0.3s;
  color: #fff;
  content: "\E930";
}
.link.active, .link:hover {
  border-bottom: 1px solid rgba(63, 65, 70, 0.8);
  color: rgba(63, 65, 70, 0.8);
}
.link--blank {
  width: 46px;
  height: 20px;
  margin-top: 48px;
}
.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::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  font-size: 12px;
  line-height: 12px;
  text-align: left;
  left: -20px;
  transition: transform 0.3s;
  color: #0D2A4A;
  content: "\E930";
}
.link--icon {
  margin-top: 18px;
  margin-left: 40px;
  color: #707070;
  font-size: 1.3rem;
  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: #333333;
}
.link--reload {
  margin-right: 28px;
  cursor: pointer;
}
.link--reload::after {
  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: -28px;
  content: "\E90E";
}
.link--white::after {
  color: #fff;
}
.link--teilen {
  margin: 0;
  letter-spacing: normal;
}
.link--teilen::after {
  font-size: 2rem;
}
.link--green {
  color: #0D2A4A;
}
.link--green:hover {
  color: #0D2A4A;
}
.link--green::after {
  left: -30px;
  color: #0D2A4A;
}
.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: "\E93D";
}
.link--socials-twitter::after {
  content: "\E93D";
}
.link--socials-x::after {
  content: "\E93D";
}
.link--socials-mastodon::after {
  content: "\E915";
}
.link--socials-bluesky::after {
  content: "\E916";
}
.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-mail::after {
  content: "\E907";
}
.link--socials-web::after {
  content: "\E90A";
}
.link--socials-xing::after {
  content: "\E906";
}
.link--socials-instagram::after {
  content: "\E90B";
}
.link--socials-internet::after {
  content: "\E90C";
}

.schlagwort {
  display: inline-block;
  padding: 0 14px;
  border: 1px solid #0D2A4A;
  color: #333333;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  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: 2px solid #939AFC;
}
.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: #0D2A4A;
  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: #0D2A4A;
  font-size: 1.6rem;
  line-height: 58px;
}
.input__container:hover input {
  border: 1px solid rgba(13, 42, 74, 0.33);
}

.input__container:focus input {
  border: 1px solid rgba(13, 42, 74, 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: #333333;
}
.input__container input::placeholder {
  color: #333333;
}
.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.3rem;
    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: 1367px) {
  .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.3rem;
    line-height: 30px;
  }
}
.input__text {
  display: inline-block;
  padding-bottom: 10px;
  color: #0D2A4A;
  font-size: 1.3rem;
}
.input__error {
  display: inline-block;
  max-height: 20px;
  margin-top: 6px;
  transition: max-height 0.3s;
  color: #939AFC;
  font-size: 1.3rem;
  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: #333333;
  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: #333333;
}
.checkbox__container input:checked ~ .checkbox__checkmarkWrapper .checkbox__checkmark::after {
  color: #333333;
  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: #333333;
  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: #333333;
  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.3rem;
    line-height: 1.6rem;
  }
}
.checkbox__checkmark--smaller > span {
  color: #333333;
  font-size: 1.3rem;
  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: #333333;
}
.checkbox__checkmarkWrapper:hover span::after {
  color: #333333;
}

.checkbox2 a {
  color: #0D2A4A;
  font-weight: 500;
}

.select--light {
  display: inline-block;
}
.select__field {
  position: relative;
}
.select__label {
  display: flex;
  align-items: center;
  color: #707070;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  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: #939AFC;
  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 #04101c;
  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 #04101c;
  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 #0D2A4A;
  background-color: #333333;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 3.2rem;
  cursor: pointer;
}
.select__select select option {
  background-color: #333333;
  color: #c5c5c5;
}
.select__select:hover select {
  border: 1px solid rgba(13, 42, 74, 0.5);
}

.select__select:focus select {
  border: 1px solid rgba(13, 42, 74, 0.5);
}

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

.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(13, 42, 74, 0.12);
  border-radius: 5px;
  font-size: 1.8rem;
}
.textarea__container textarea::-moz-placeholder {
  color: #333333;
}
.textarea__container textarea::placeholder {
  color: #333333;
}
.textarea__container textarea:hover {
  border: 1px solid #0D2A4A;
}
@media (max-width: 1367px) {
  .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.3rem;
    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: #333333;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.1rem;
  text-align: center;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #fcfcfc;
  color: #333333;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  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", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
}

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

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

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

*::placeholder {
  opacity: 1;
}

*::-moz-selection {
  background-color: #0D2A4A;
  color: #fff;
}

*::selection {
  background-color: #0D2A4A;
  color: #fff;
}

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: 1394px;
  margin: 0 auto;
}
.wrapper--fill {
  height: 100%;
}
.wrapper--thin {
  max-width: 1394px;
}
.wrapper--full {
  max-width: 1394px;
  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;
}
.container.active {
  max-width: none;
}
.container--black {
  background-color: #0D2A4A;
}
.container--white {
  background-color: #fff;
}
.container--primary {
  background-color: #fff;
}
.container__social {
  width: 100%;
  max-width: 807px;
  margin: auto;
  background: #0d2a4a;
  color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
}
@media (max-width: 479px) {
  .container__social {
    flex-direction: column;
  }
}
.singlePost--withPostNavigation .container__social {
  max-width: 704px;
}
.container__social h3 {
  line-height: 3.8rem;
  font-size: 2.6rem;
  font-weight: 700;
}
@media (max-width: 479px) {
  .container__social h3 {
    text-align: center;
  }
}
.container__social__links {
  display: flex;
  margin: 0 0 0 auto;
}
@media (max-width: 479px) {
  .container__social__links {
    padding-left: 0;
    margin: 15px auto;
  }
}
.container__social__links li {
  padding: 0 0 0 1.5rem;
}
.container__social__links li .button.button--social, .container__social__links li .menuSocial a, .menuSocial .container__social__links li a {
  background-color: #fff;
  border-color: #fff !important;
}
.container__social__links li .button.button--social:after, .container__social__links li .menuSocial a:after, .menuSocial .container__social__links li a:after {
  color: #0d2a4a;
}
.container__social__links li .button.button--social:hover, .container__social__links li .menuSocial a:hover, .menuSocial .container__social__links li a:hover {
  background-color: #0C55A6;
  border-color: #0C55A6 !important;
}
.container__social__links li .button.button--social:hover:after, .container__social__links li .menuSocial a:hover:after, .menuSocial .container__social__links li a:hover:after {
  color: #fff;
}
section.postFooter .container {
  padding: 50px 0;
}
.container--homeBanner .homepage__inner--overflow {
  overflow: hidden;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.container__inner {
  position: relative;
  width: 100%;
  padding-right: 53px;
  padding-left: 53px;
  box-sizing: border-box;
}
.container__inner--noPadding {
  padding-right: 0;
  padding-left: 0;
}
.container__inner--paddingBottom {
  padding-bottom: 60px;
}
.container__inner--bottomPadding {
  padding-bottom: 130px;
}
.container__inner--morePadding {
  padding-right: 53px;
  padding-left: 53px;
}
.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: 12px;
    padding-left: 12px;
  }
  .container__inner--noPadding {
    padding-right: 0;
    padding-left: 0;
  }
}

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

@media (max-width: 479px) {
  .sections {
    margin-top: 52px;
  }
  .cookie.active + .header + .sections {
    margin-top: 177px;
  }
}
.sections--page {
  padding: 0 0 40px;
}
.sections--noBPadding {
  padding-bottom: 0;
}

.section {
  overflow: visible;
}
.section--noOverflow {
  overflow: hidden;
}
.section.postFooter {
  display: none;
}
.section--highlight {
  background: #0D2A4A;
  padding: 6rem 0;
  margin: 0 0 6rem 0;
}
.section--articleFilter {
  padding: 4.6rem 0;
}

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

.header--sticky {
  transform: translateY(-86px);
  z-index: 15;
}
@media (max-width: 479px) {
  .header--sticky {
    transform: translateY(-52px);
  }
}
.header--sticky.header--stickyUp {
  transform: translateY(0);
}
@media (max-width: 479px) {
  .header--sticky.header--stickyUp {
    transform: translateY(0);
  }
}
.header__progressbar {
  position: absolute;
  height: 0.5rem;
  background: #0C55A6;
  left: 0;
  width: 100%;
  transform-origin: 0 50%;
  animation: scaleProgress auto linear, colorChange auto linear;
  animation-timeline: scroll(root);
}
@keyframes scaleProgress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes colorChange {
  0% {
    background-color: #0C55A6;
  }
  100% {
    background-color: #0D2A4A;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  transition: transform 0.3s;
}
@media (max-width: 1279px) {
  .header__inner {
    top: 50px;
  }
}
@media (max-width: 479px) {
  .header__inner {
    height: 52px;
    padding: 0 7px;
  }
}
.header__logo {
  flex-basis: 25%;
}
@media (max-width: 767px) {
  .header__logo {
    display: none;
  }
}
.header__logoSite {
  flex-basis: 50%;
  /*@include rwd('tablet') {
    flex-basis: auto;
  }*/
}
.header__buttons {
  flex-basis: 25%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .header__buttons {
    flex-basis: auto;
  }
}
.header__menu {
  position: absolute;
  top: 86px;
  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;
  opacity: 0;
  background-color: #fff;
}
@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: 479px) {
  .header__menu {
    top: 52px;
  }
}
@media (max-width: 359px) {
  .header__menu {
    width: 320px;
    padding: 10px 16px 20px;
  }
}
.header__menu.active {
  transform: translate3d(0, 0, 0) !important;
  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: #333;
  line-height: 2.7rem;
  font-weight: 700;
}
.header__menuTop, .header__menuMiddle {
  padding-left: 20px;
  position: relative;
}
.header__menuTop a, .header__menuMiddle a {
  display: block;
  transition: opacity 0.3s;
  line-height: 27px;
  color: #333;
}
@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 {
  text-decoration: underline;
}
.header__menuTop a:before, .header__menuMiddle a:before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E909";
  display: block;
  font-size: 0.5rem;
  line-height: 2.7rem;
  color: #0C55A6;
  position: absolute;
  left: 0;
}
.header__menuTop {
  padding-bottom: 36px;
}
.header__menuTop li + li {
  margin-top: 15px;
}
@media (max-width: 599px) {
  .header__menuTop {
    margin-top: 10px;
  }
}
.header__menuMiddle {
  padding-top: 36px;
  padding-bottom: 40px;
  border-top: 2px solid #0C55A6;
}
@media (max-width: 1279px) {
  .header__menuMiddle {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.header__menuMiddle li + li {
  margin-top: 14px;
}
.header__menuMiddle li.seperator-below {
  padding-bottom: 28px;
  border-bottom: 1px solid #fff;
}
.header__menuMiddle li.seperator-below + li {
  padding-top: 28px;
}
.header__menuMiddle li.arrow a {
  padding-left: 32px;
}
.header__menuMiddle li.arrow 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__menuLogo {
  display: flex;
  justify-content: center;
  width: 100%;
  border-top: 2px solid #0C55A6;
}
@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: 2px solid #0C55A6;
  }
}
@media (max-width: 479px) {
  .header__menuBottom {
    flex-wrap: wrap;
  }
}
.header__menuBottom a {
  transition: opacity 0.3s;
  color: #333;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
}
.header__menuBottom a:hover {
  text-decoration: underline;
}

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

.footer__top {
  padding: 6rem 0;
}
.footer__topInner {
  display: flex;
  gap: 45px;
  justify-content: space-between;
  flex-wrap: wrap;
  /*@include rwd('laptop') {
    flex-wrap: wrap;
    padding: 64px 40px 84px;
  }*/
  /*&:has(> .footer__topCol:nth-of-type(3)) {
    @include rwd('large-tablet') {
      flex-direction: column;
    }
  }*/
}
@media (max-width: 767px) {
  .footer__topInner {
    flex-direction: column;
  }
}
.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__bottom {
  border-top: 1px solid rgba(151, 151, 151, 0.42);
}
.footer__bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 56px 45px;
  height: auto;
}
@media (max-width: 599px) {
  .footer__bottomInner {
    flex-direction: column;
    height: auto;
  }
}
.footer__topCol {
  flex: 1;
  /*& + .footerArtikel {
    flex: 0 0 calc(40%);

    @include rwd('small-tablet') {
      flex: 0 0 calc(100% - 22.5px);
    }
  }*/
}
@media (max-width: 1023px) {
  .footer__topCol {
    flex: 0 0 calc(50% - 22.5px);
  }
}
.footer__title {
  padding-bottom: 22px;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}
.footer__titleLink {
  padding-bottom: 6px;
  transition: border-bottom-color 0.3s;
  border-bottom: 2px solid transparent;
}
.footer__titleLink:hover {
  border-bottom: 2px solid #333333;
}
.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.4rem;
  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: #333333;
  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-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: #939AFC;
  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: #0D2A4A;
  content: "\E92A";
}
.allePodcasts__link:hover {
  color: #0D2A4A;
}
.allePodcasts__link:hover::after {
  transform: translate3d(3px, 0, 0);
}

.archive__header {
  background: #0D2A4A url("../assets/images/postthumb_arrow_bg_left.png") no-repeat top left;
  padding: 8rem 0 6.5rem 0;
}
.archive__inner {
  overflow: hidden;
}
.archive__description p {
  color: #fff !important;
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.archive__description p a {
  color: #fff !important;
}
.archive__heading {
  margin: 0 0 2.5rem 0;
  font-size: 3.6rem;
  line-height: 4.4rem;
  color: #fff;
}
@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;
  }
}

.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 0.3s;
  color: #fff;
  font-size: 2.1rem;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
.bloggerList__authorLetter.active, .bloggerList__authorLetter:hover {
  background-color: #fff;
  color: #fff;
}
.bloggerList__authorLetter.active:last-child, .bloggerList__authorLetter:hover:last-child {
  border-right: 1px solid #fff;
}
@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: #333333;
  color: #0D2A4A;
  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: 25px;
  padding-bottom: 25px;
}
@media (max-width: 1023px) {
  .bloggerList__inner {
    max-width: 695px;
    margin-right: auto;
    margin-left: auto;
  }
}
.bloggerList__info {
  margin-top: 30px;
}
.bloggerList__authorSelect {
  display: flex;
  position: relative;
  max-width: 1440px;
  height: 48px;
  margin: 0 auto;
  background-color: #767676;
  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: 40px;
}
.bloggerList__checkProfile::after {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #c4c4c4;
  content: "";
  opacity: 0.3;
}
.bloggerList__articleTitle {
  display: block;
  padding-top: 20px;
  color: #333333;
  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 #04101c;
}
.bloggerList__column {
  position: relative;
  padding: 25px 25px 25px 25px;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .bloggerList__column {
    padding: 20px 15px 20px 15px;
  }
}
@media (max-width: 479px) {
  .bloggerList__column {
    padding: 20px 13px 20px;
  }
}
@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-bottom: 60px;
  text-align: center;
}
@media (max-width: 479px) {
  .articleMasonry__more {
    margin-top: 2px;
  }
}
.articleMasonry__more .button, .articleMasonry__more .menuSocial a, .menuSocial .articleMasonry__more a {
  margin: 0;
}

.bloggerSingle__inner {
  flex: 1;
  padding: 40px 0;
}
.bloggerSingle__data {
  flex-direction: row-reverse;
}
.bloggerSingle__content {
  background: #fff;
  border-radius: 0.5rem;
}
.bloggerSingle__column {
  position: relative;
  flex: 1 1 auto;
  padding: 80px 60px;
}
@media (max-width: 1023px) {
  .bloggerSingle__column {
    padding: 35px 30px 0 35px;
  }
}
@media (max-width: 1023px) {
  .bloggerSingle__column--singleBlogger {
    padding: 40px 30px;
  }
}
@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: #333333;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 32px;
}
.bloggerSingle__vitaDesc span {
  color: #0D2A4A;
  cursor: pointer;
}
.bloggerSingle__vitaDesc span.disabled {
  display: none;
}
.bloggerSingle__vitaDesc a {
  color: #0C55A6;
  font-weight: 700;
}
.bloggerSingle__vitaDesc p {
  margin-bottom: 25px;
}
.bloggerSingle__vitaDesc ul li {
  position: relative;
}
.bloggerSingle__vitaDesc ul li::before {
  display: inline-block;
  width: 2rem;
  color: #0C55A6;
  font-weight: bold;
  font-family: "icomoon";
  font-size: 0.5rem;
  content: "\E909";
  position: relative;
  top: -4px;
}
@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: #939AFC;
  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: #939AFC;
}
.contactUs__link:hover::after {
  transform: scale(1.1) translate3d(0, 0, 0);
  color: #939AFC;
}
.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: #939AFC;
  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: #939AFC;
}
.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: #0D2A4A;
}
@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: #333333;
  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: #333333;
  font-size: 1.3rem;
  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: 767px) {
  .footerArtikel {
    flex-grow: 1;
  }
}
.footerArtikel__image {
  display: block;
  max-width: 100%;
  height: auto;
}
.footerArtikel__logo {
  width: 100%;
  max-width: 228px;
}

.footerAutoren__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 546px;
}
.footerAutoren__item {
  border-radius: 0.5rem;
  overflow: hidden;
}
.footerAutoren__link {
  display: block;
  transition: transform 0.3s;
  background-size: contain;
  font-size: 1.2rem;
  z-index: 1000;
  width: 71px !important;
  height: 71px !important;
  background-color: #0D2A4A;
}
.footerAutoren__link:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .footerSocial {
    order: 3;
  }
}
.footerSocial .social__menu a.button--social, .footerSocial .social__menu .menuSocial a, .menuSocial .footerSocial .social__menu a {
  font-size: 2rem;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
}
.footerSocial .social__menu a.button--social:before, .footerSocial .social__menu .menuSocial a:before, .menuSocial .footerSocial .social__menu a:before {
  content: "";
  display: inline-block;
  width: 3rem;
}
.footerSocial .social__menu a.button--social:hover, .footerSocial .social__menu .menuSocial a:hover, .menuSocial .footerSocial .social__menu a:hover {
  color: #0C55A6;
}

.homepage__inner {
  overflow: hidden;
}
.homepage__inner--noYOverflow {
  overflow-y: visible;
  overflow-x: hidden;
}
.homepage__inner--overflow {
  overflow: visible;
}
.homepage__inner--categories {
  padding-bottom: 56px;
}

.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;
  align-items: stretch;
  flex-direction: row-reverse;
  min-height: 689px;
}
@media (max-width: 767px) {
  .latestPost {
    flex-direction: column;
    height: auto;
  }
}
@media (max-width: 479px) {
  .latestPost {
    margin: 0 -5px;
  }
}
.latestPost__photo {
  position: relative;
  flex-basis: 50%;
  background-color: #fafafa;
  transition: background-position 0.3s;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.1);
}
.latestPost__photo:before {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 67.72%;
  content: "";
  visibility: hidden;
  z-index: -1;
}
@media (max-width: 767px) {
  .latestPost__photo {
    min-height: 254px;
  }
}
.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.3rem;
  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 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-basis: 50%;
  background: #0D2A4A url("../assets/images/postthumb_arrow_bg_left.png") no-repeat top left;
  padding: 8rem 3rem 8rem 5rem;
}
@media (max-width: 599px) {
  .latestPost__content {
    padding: 50px 30px;
  }
}
@media (max-width: 479px) {
  .latestPost__content {
    padding: 35px 13px;
  }
}
.latestPost .heading__h1 {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2222222222;
}
@media (max-width: 479px) {
  .latestPost .heading__h1 {
    font-size: 2.6rem;
    line-height: 1.3076923077;
  }
}
.latestPost .button, .latestPost .menuSocial a, .menuSocial .latestPost a {
  margin: 25px 0 45px 0;
}
.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__body {
  display: block;
  max-width: 100%;
}
.latestPost__body p {
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  margin: 2rem 0 0;
}
.latestPost__body .link {
  background: #fff;
  color: #333333;
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  text-transform: none;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  margin-bottom: 50px;
}
.latestPost__body .link:after {
  display: none;
  content: "";
}
.latestPost__footer {
  bottom: 30px;
  margin-top: auto;
  margin-bottom: 0;
  display: block;
  width: 100%;
  color: #fff;
}
.latestPost__categoryText {
  letter-spacing: 0.075rem;
  text-transform: none;
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5rem 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  border-radius: 0.5rem;
}
.latestPost__categoryText a:hover {
  text-decoration: underline;
}
.latestPost__text {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1666666667;
  flex: 1;
}
.latestPost__text span {
  display: block;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  opacity: 0.7;
}
.latestPost__authorsDate {
  display: flex;
  width: 100%;
  align-items: center;
  color: #707070;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
}
@media (max-width: 479px) {
  .latestPost__authorsDate {
    margin-top: 12px;
  }
}
.latestPost__authors-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
}
.latestPost__authors-container .latestPost__authors {
  display: flex;
  width: 100%;
}
.latestPost__authors-container .latestPost__authors__image {
  flex: 0 0 50px;
  height: 50px;
  background: #ccc;
  border-radius: 100%;
  margin: 0 2rem 0 0;
  overflow: hidden;
  text-align: center;
}
.latestPost__authors-container .latestPost__authors__image img {
  width: 50px;
  height: auto;
  display: block;
}
.latestPost__authors-container .latestPost__authors__image:not(:has(img)) {
  background: #ccc;
}
.latestPost__authors-container .latestPost__authors__image:not(:has(img)):after {
  font-family: "icomoon";
  content: "\E903";
  line-height: 5rem;
  font-size: 25px;
  color: #fff;
}
.latestPost__authors-container .latestPost__authors__text {
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1666666667;
  flex: 1;
}
.latestPost__authors-container .latestPost__authors__text span {
  display: block;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  opacity: 0.7;
}
.latestPost__authors-container .latestPost__authors__text a:hover {
  text-decoration: underline;
}
.latestPost__date {
  color: #fff;
  text-align: right;
  flex: 1;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  opacity: 0.7;
  white-space: pre;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}
.latestPost__title {
  margin-top: 24px;
}

.meistGelesen {
  margin-top: 54px;
}
.meistGelesen__heading {
  text-align: center;
}
.meistGelesen__heading--left {
  text-align: left;
}
.meistGelesen__items {
  display: flex;
  margin: 40px -15px 0;
}
@media (max-width: 1279px) {
  .meistGelesen__items {
    flex-wrap: wrap;
  }
}
.meistGelesen__item {
  flex-basis: 50%;
  padding: 0 23px;
}
@media (max-width: 767px) {
  .meistGelesen__item {
    flex-basis: 100%;
  }
}
.meistGelesen__showAll {
  margin: 6px 30px 0 0;
  float: right;
}

.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 {
  position: relative;
  padding: 50px 0;
}
@media (max-width: 1279px) {
  .otherPosts__inner {
    padding: 24px 0;
  }
}
.otherPosts__items {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .otherPosts__items {
    margin: 0 -13px;
  }
}
.otherPosts__item {
  display: flex;
  max-width: 33.3333333333%;
  flex-direction: column;
  padding: 0 23px 30px 0;
  flex: 0 0 33.33333%;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .otherPosts__item {
    flex-basis: 50%;
    max-width: 50%;
    padding: 13px;
  }
}
@media (max-width: 599px) {
  .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: #0D2A4A;
  font-size: 2.4rem;
}
.otherPosts__category {
  margin-bottom: 30px;
  color: #333333;
  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: #333333;
  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 #04101c;
}
.otherPosts__postInfo {
  display: flex;
  color: #707070;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
}
.otherPosts__loadMore {
  height: 12px;
  margin-bottom: 70px;
  color: #0D2A4A;
  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 {
  margin-bottom: 56px;
}
.singlePost__inner {
  display: flex;
  width: 100%;
  margin-top: 78px;
}
@media (max-width: 1023px) {
  .singlePost__inner {
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 54px;
  }
}
@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-grow: 1;
  flex-direction: column;
  /* >= Internet Explorer 9 */
  /*@include parent('.singlePost--withoutCover', '') {
    margin-top: -80px;
  }*/
}
@media screen and (min-width: 0\0 ) {
  .singlePost__wrapper {
    flex-basis: calc(100% - 290px - 230px);
  }
}
@media (min-width: 1024px) {
  .singlePost__wrapper {
    align-items: center;
  }
}
.singlePost--withoutCover .singlePost__teilen {
  margin-top: 80px;
}
.singlePost__bar {
  position: relative;
  padding: 0 20px;
}
.singlePost__bar::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 22px;
  background-color: #fff;
  content: "";
}
.singlePost__type {
  display: none;
}
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: 26px;
}
.singlePost__header, .singlePost__postData, .singlePost__category {
  width: 100%;
  max-width: 807px;
}
.singlePost--withPostNavigation .singlePost__header, .singlePost--withPostNavigation .singlePost__postData, .singlePost--withPostNavigation .singlePost__category {
  max-width: 704px;
}
.singlePost__featureImage {
  position: relative;
  height: 660px;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .singlePost__featureImage {
    height: 240px;
    margin-top: 24px;
  }
}
@media (max-width: 479px) {
  .singlePost__featureImage {
    margin: 0 -5px;
  }
}
.singlePost__header {
  padding-bottom: 25px;
  color: #333333 !important;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2571428571;
}
@media (max-width: 767px) {
  .singlePost__header {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
}
@media (max-width: 479px) {
  .singlePost__header {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.singlePost__header--highlighted {
  background-color: #333333;
  color: #0D2A4A;
}
.singlePost__postData {
  position: relative;
  padding-bottom: 30px;
  color: #333333;
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .singlePost__postData {
    padding-bottom: 40px;
  }
}
.singlePost__date, .singlePost__ttr {
  margin-left: 3.5rem;
  color: #707070;
}
@media (max-width: 599px) {
  .singlePost__date {
    flex: 1 0 0;
    text-align: right;
  }
}
@media (max-width: 599px) {
  .singlePost__ttr {
    order: 3;
    flex: 1 0 100%;
    margin-left: 0;
    text-align: left;
  }
}
.singlePost__category {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  padding-bottom: 18px;
  color: #333333;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  flex-wrap: wrap;
}
@media (max-width: 599px) {
  .singlePost__category {
    flex: 1 0 0;
  }
}
.singlePost__category__item {
  border-radius: 0.5rem;
  border: 2px solid #333;
  color: #333;
  font-size: 1.5rem;
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
  margin: 0 10px 10px 0;
}
.singlePost__categoryContent {
  padding-left: 10px;
}
.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: 807px;
}
.singlePost--withPostNavigation .postFooter__tags {
  max-width: 704px;
}
.postFooter__tags h4 {
  padding-bottom: 10px;
  color: #333;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.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: 80px;
  text-align: center;
}
.postFooter__writeComment .comment-reply-title {
  display: none;
}
@media (max-width: 767px) {
  .postFooter__writeComment {
    padding-top: 33px;
  }
}
.postFooter__otherPosts, .postFooter__newsletter {
  display: flex;
  width: 100%;
}
.postFooter__otherPosts {
  position: relative;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .postFooter__otherPosts {
    flex-wrap: wrap;
    padding-top: 0;
    margin-top: 25px;
  }
}
.postFooter__otherPosts .postThumb {
  background: #fff;
  padding: 2.5rem;
}
.postFooter__newsletterInput {
  margin: 0;
  width: 300px;
}
.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;
  background-color: #fff;
  color: #333333;
}
.postFooter__newsletter __newsletter h2 {
  margin: 0;
  padding-bottom: 20px;
}
.postFooter__newsletter p {
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .postFooter__newsletter {
    padding: 56px 64px;
  }
}
@media (max-width: 767px) {
  .postFooter__newsletter {
    padding: 56px 46px;
    flex-direction: column;
  }
}
@media (max-width: 599px) {
  .postFooter__newsletter {
    padding: 56px 20px;
  }
}
@media (max-width: 479px) {
  .postFooter__newsletter {
    padding: 56px 5px;
  }
}
.postFooter__newsletterText, .postFooter__newsletterMail {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
}
.postFooter__newsletterText {
  padding-right: 24px;
}
@media (max-width: 1023px) {
  .postFooter__newsletterText {
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .postFooter__newsletterText {
    padding-right: 0;
  }
}
.postFooter__newsletterMail {
  display: flex;
  flex-direction: row;
  position: relative;
  align-self: flex-end;
}
@media (max-width: 767px) {
  .postFooter__newsletterMail {
    align-self: stretch;
  }
}
@media (max-width: 599px) {
  .postFooter__newsletterMail {
    flex-direction: column;
  }
}
.postFooter__newsletterInput {
  flex-grow: 1;
  padding: 12px 24px;
  transition: border 0.3s;
  border: 2px solid #fff;
  font-size: 1.6rem;
  margin-right: 133px;
}
.postFooter__newsletterInput:focus {
  box-shadow: inset 0 0 4px 0 rgba(147, 154, 252, 0.4);
}
.postFooter__newsletterSubmit {
  padding: 12px 24px;
  transition: border 0.3s;
  border: 1px solid #0D2A4A;
  background-color: #0D2A4A;
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 599px) {
  .postFooter__newsletterSubmit {
    margin-top: 10px;
  }
}
.postFooter__twitterIcon {
  position: relative;
  height: 120px;
}
.postFooter__twitterIcon::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: 120px;
  line-height: 120px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-left: -60px;
  color: #58A1D8;
  content: "\E93D";
}
.postFooter__twitterText {
  margin-top: 26px;
  color: #333;
  font-size: 2.8rem;
  font-weight: 700;
}
.postFooter__twitterButton {
  margin-top: 26px;
}

.search__inner {
  padding-bottom: 98px;
  overflow: hidden;
}
.search__header {
  height: 294px;
  background-color: #fff;
}
@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-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
}
@media (max-width: 1279px) {
  .search__filtersHeading {
    flex-basis: 100%;
    padding: 0 20px;
  }
}
.search__results {
  width: 100%;
}

.sidebarRelatedPosts {
  padding-top: 40px;
}
.sidebarRelatedPosts__head {
  color: #333333;
  font-weight: 700;
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 20px;
}
.sidebarRelatedPosts__items {
  position: relative;
}
.sidebarRelatedPosts__item + .sidebarRelatedPosts__item {
  margin-top: 30px;
}
.sidebarRelatedPosts__image {
  display: block;
  position: relative;
  background-color: #fafafa;
  transition: background-position 0.3s;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.1);
}
.sidebarRelatedPosts__image:before {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 53.48%;
  content: "";
  visibility: hidden;
  z-index: -1;
}
.sidebarRelatedPosts__image:hover {
  background-position: top center;
}
.sidebarRelatedPosts__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(63, 65, 70, 0.5);
  color: #fff;
  font-size: 1.3rem;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}
.sidebarRelatedPosts__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;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif !important;
  font-weight: bold;
  color: #fff;
  content: "\A9";
}
.sidebarRelatedPosts__copy--top {
  top: 0;
  bottom: auto;
}
.sidebarRelatedPosts__copyDetails {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 210px;
  padding: 20px 24px;
  transition: visibility 0.3s, opacity 0.3s;
  background-color: #333;
  color: rgba(255, 255, 255, 0.8);
  line-height: normal;
  text-align: left;
  word-break: break-word;
  visibility: hidden;
  opacity: 0;
}
.sidebarRelatedPosts__copyDetails::before {
  position: absolute;
  bottom: 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: "";
}
.sidebarRelatedPosts__copyDetails--top {
  top: 0;
  bottom: auto;
}
.sidebarRelatedPosts__copyDetails--top::before {
  top: 3px;
  bottom: auto;
}
.sidebarRelatedPosts__copy:hover .sidebarRelatedPosts__copyDetails {
  visibility: visible;
  opacity: 1;
}
.sidebarRelatedPosts__content {
  padding: 20px 0;
  overflow: hidden;
}
.sidebarRelatedPosts__title {
  color: #333333;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.sidebarRelatedPosts__authorsDate {
  margin-top: 20px;
  color: #707070;
  font-size: 1.3rem;
  font-weight: 400;
}
.sidebarRelatedPosts__authors {
  margin-top: 10px;
}
.sidebarRelatedPosts__date {
  margin-top: 10px;
}

.team__buttons {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  margin-top: 40px;
}
.team__position {
  max-width: 180px !important;
  width: 180px;
  display: none;
}
.team__box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}
.team__dots {
  display: flex;
}
.team__dot {
  margin-right: 5px;
  font-size: 25px;
  color: blue;
}
.team__items {
  display: flex;
  flex-wrap: wrap;
  margin: -11px;
}
.team__aboutPlus {
  display: flex;
  flex-direction: row;
}
.team__about {
  font-size: 1.5rem;
  font-weight: 100;
  text-transform: uppercase;
  width: 180px;
  position: relative;
}
.team__about::after {
  content: "+";
  position: absolute;
  top: 0px;
  left: 55px;
  font-size: 1.3rem;
  color: #0D2A4A;
}
.team__plus {
  width: 90px;
  color: #0D2A4A;
}
@media (max-width: 1279px) {
  .team__item {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .team__item {
    align-items: center;
  }
}
@media (max-width: 479px) {
  .team__item {
    align-items: center;
  }
}
.team__itemEach {
  display: flex;
  margin-bottom: 7px;
}
.team__title {
  max-height: 170px;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 700;
  justify-self: start;
  text-align: left;
  align-self: start;
  position: relative;
  width: 180px;
  min-height: 25px;
}
@media (max-width: 1279px) {
  .team__title {
    align-self: center;
  }
}
@media (max-width: 767px) {
  .team__title {
    align-self: center;
  }
}
@media (max-width: 479px) {
  .team__title {
    align-self: center;
  }
}
.team__link {
  display: block;
  width: 180px;
  height: 180px;
  padding: 5px;
  transition: transform 0.3s;
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 1.2rem;
  z-index: 1000;
  margin-bottom: 10px;
}
.team__link:hover {
  transform: scale(1.1);
}
.team #slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 200px;
  height: 300px;
  text-align: center;
  line-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.team a.control_prev, .team a.control_next {
  top: 86%;
  z-index: 999;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #0D2A4A;
  color: #fff;
  font-size: 30px;
  opacity: 0.8;
  cursor: pointer;
  padding-top: 4px;
  text-align: center;
}
.team a.control_prev:hover, .team a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}
.team a.control_prev {
  border-radius: 0 2px 2px 0;
}
.team a.control_next {
  margin-left: 2%;
  border-radius: 2px 0 0 2px;
}
.team .sliderDiv {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.team .tns-nav > [aria-controls] {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  margin-left: 10px;
  border: 0;
  border: 1px solid blue;
  background: white;
  align-self: center;
}
.team .tns-nav-active {
  background: blue !important;
  width: 12px !important;
  height: 12px !important;
}
.team .tns-nav {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}
@media (max-width: 479px) {
  .team .tns-nav {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .section--events-upcoming .articleGrid__item {
    width: 100%;
    float: unset;
  }
}
@media (min-width: 768px) {
  .section--events-upcoming .postThumb--event-upcoming .postThumb {
    display: flex;
    flex-direction: row;
  }
}
.section--events-upcoming .postThumb--event-upcoming .postThumb__image {
  background: #0D2A4A url("../assets/images/postthumb_arrow_bg_left.png") no-repeat top left;
  background-size: contain;
}
@media (min-width: 768px) {
  .section--events-upcoming .postThumb--event-upcoming .postThumb__image {
    display: flex;
    flex: 0 0 30%;
  }
}
@media (min-width: 768px) {
  .section--events-upcoming .postThumb--event-upcoming .postThumb__content {
    padding: 0 4rem;
    flex: unset;
  }
}
.section--events-upcoming .postThumb--event-upcoming .postThumb__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: 50%; /* Moves the element's top to the middle of the parent */
  left: 50%; /* Optional, if you want to horizontally center it as well */
  transform: translate(-50%, -50%); /* Adjust the element back by half its height and width */
}
.section--events-upcoming .postThumb--event-upcoming .postThumb__date-day {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1;
}
.section--events-upcoming .postThumb--event-upcoming .postThumb__date-month {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.7647058824;
}

.articleFilters {
  background: #fff;
  display: flex;
  border-radius: 0.5rem;
}
@media (max-width: 599px) {
  .articleFilters {
    flex-direction: column;
  }
}
.articleFilters--padding {
  padding: 2.7rem;
  margin: 6rem 0 2rem;
}
@media (max-width: 479px) {
  .articleFilters--padding {
    padding: 3rem;
  }
}
.articleFilters__title {
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
  padding: 1.5rem 4.7rem 2.2rem 0.8rem;
  margin: 0;
  text-transform: uppercase;
}
.articleFilters_between {
  display: flex;
  margin: 4rem 0 3rem;
}
@media (max-width: 599px) {
  .articleFilters_between {
    flex-direction: column;
  }
}
.articleFilters_between .articleFilters__title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2142857143;
  flex: 1 1 auto;
  white-space: unset;
  text-transform: unset;
  padding: 0;
}
.section--highlight .articleFilters_between .articleFilters__title {
  color: #fff;
}
.articleFilters_between .articleFilters__select {
  align-self: flex-end;
  justify-content: center;
  text-align: right;
}
@media (max-width: 599px) {
  .articleFilters_between .articleFilters__select {
    align-self: flex-start;
    margin-top: 14px;
  }
}
.section--highlight .articleFilters_between {
  margin-top: 0;
}
.articleFilters__items {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin: 0;
}
@media (max-width: 479px) {
  .articleFilters__items {
    flex-wrap: wrap;
    margin: 0 -4px;
  }
}
.articleFilters__item {
  margin: 8px;
}
.articleFilters__item .button, .articleFilters__item .menuSocial a, .menuSocial .articleFilters__item a {
  font-size: 1.5rem;
  padding: 0.5rem 1.25rem;
}

.articleGrid__items {
  margin: 0 -24px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .articleGrid__items {
    margin: 0 -13px;
  }
}
.articleGrid__items:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
.articleGrid__item {
  display: block;
  float: left;
  padding: 0 24px 30px;
  width: 33.3333333333%;
}
.articleGrid__item:nth-child(3n+1) {
  clear: left;
}
.articleGrid__item > * {
  margin: 0;
  height: 100%;
}
@media (max-width: 1023px) {
  .articleGrid__item {
    width: 50%;
  }
  .articleGrid__item:nth-child(3n+1) {
    clear: none;
  }
  .articleGrid__item:nth-child(2n+1) {
    clear: left;
  }
}
@media (max-width: 599px) {
  .articleGrid__item {
    width: 100%;
  }
  .articleGrid__item:nth-child(2n+1) {
    clear: none;
  }
}
.articleGrid__item--wide {
  width: 66.6666666667%;
  clear: left;
}
@media (max-width: 1023px) {
  .articleGrid__item--wide {
    width: 100%;
  }
}
.articleGrid__item--25 {
  width: 25%;
  padding: 0 18px 30px;
}
@media (max-width: 1023px) {
  .articleGrid__item--25 {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .articleGrid__item--25 {
    width: 100%;
  }
}
.articleGrid__item--50 {
  width: 50%;
  padding: 0 18px 30px;
}
@media (max-width: 1023px) {
  .articleGrid__item--50 {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .articleGrid__item--50 {
    width: 100%;
  }
}

.socialMediaFeed {
  background: none;
  width: 100%;
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: none;
}
.socialMediaFeed__title {
  font-weight: 700;
  font-size: 1.3em;
  margin-bottom: 18px;
  color: #222;
}
.socialMediaFeed__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.socialMediaFeed__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  min-height: 71px;
}
.socialMediaFeed__img {
  width: 71px;
  height: 71px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.socialMediaFeed__content {
  flex: 1;
  min-width: 0;
}
.socialMediaFeed__title {
  font-size: 1.08em;
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.socialMediaFeed__meta {
  font-size: 1em;
  color: #444;
  display: flex;
  gap: 10px;
  align-items: center;
}
.socialMediaFeed__category {
  font-weight: 700;
  color: #1a355e;
}
.socialMediaFeed__dot {
  font-size: 1.2em;
  color: #888;
}
.socialMediaFeed__date {
  color: #444;
}

.gridNewsletter {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 430px;
  margin-bottom: 30px;
  padding: 40px 30px;
  background-color: #fff;
  background-image: none;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .gridNewsletter {
    max-width: initial;
  }
}
@media (max-width: 767px) {
  .gridNewsletter {
    padding: 30px 20px;
  }
}
@media (max-width: 479px) {
  .gridNewsletter {
    padding: 20px 10px;
  }
}
.gridNewsletter__wrapper {
  z-index: 1;
}
.gridNewsletter__title {
  color: #333;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 3.6rem;
}
.gridNewsletter__text {
  color: #767676;
  font-size: 2rem;
  line-height: 3rem;
  margin-top: 10px;
}
.gridNewsletter__text strong {
  font-weight: 700;
}
.gridNewsletter__form {
  display: block;
  margin-top: 20px;
}
@media (max-width: 599px) {
  .gridNewsletter__form {
    margin-top: 15px;
  }
}
.gridNewsletter__input,
.gridNewsletter .wysija-input {
  width: 100%;
  padding: 12px 24px;
  transition: border 0.3s;
  border: 2px solid #767676;
  font-size: 1.6rem;
}
.gridNewsletter__input:focus,
.gridNewsletter .wysija-input:focus {
  box-shadow: inset 0 0 4px 0 rgba(13, 42, 74, 0.4);
}
.gridNewsletter__input--invalid,
.gridNewsletter .wysija-input--invalid {
  border-color: #dd1927;
}
.gridNewsletter__submit,
.gridNewsletter .wysija-submit {
  padding: 0.5rem 1.25rem;
  transition: border 0.3s;
  border: 2px solid #333;
  background-color: #fff;
  color: #333;
  font-size: 1.5rem;
  text-transform: none;
  cursor: pointer;
  margin-top: 15px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 0.5rem;
}
@media (max-width: 599px) {
  .gridNewsletter__submit,
  .gridNewsletter .wysija-submit {
    margin-top: 10px;
  }
}
.gridNewsletter__submit:hover,
.gridNewsletter .wysija-submit:hover {
  background-color: #fff;
  border-color: #767676;
}
.gridNewsletter .formError {
  left: 40px !important;
}
.gridNewsletter .wysija-paragraph label {
  padding-bottom: 4px;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.gridNewsletter .updated {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-color: transparent;
}
.gridNewsletter .updated ul {
  margin: 0;
  padding: 10px 20px;
  border: 1px solid #0D2A4A;
  background-color: #fff;
  color: #000;
  font-size: 1.6rem;
}
.gridNewsletter .updated li {
  line-height: 1.2;
}
.gridNewsletter .widget_wysija_cont .allmsgs li {
  list-style-type: none;
}

.breadcrumbs {
  display: none;
}
.breadcrumbs__background {
  height: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
  background-color: #fff;
}
.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.3rem;
  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 {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 28px;
}
.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: 28px;
  line-height: 28px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  margin-left: -14px;
  color: #0D2A4A;
}
@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--bigger {
  width: 50px;
  height: 50px;
}
.categoryIcon--bigger::before {
  font-size: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
}

.categoryTiles {
  position: relative;
  padding: 62px 0;
  background-color: #fff;
}
.categoryTiles__items {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  transition: transform 0.6s;
}
@media (max-width: 1500px) {
  .categoryTiles__items {
    margin: 0;
  }
}
.categoryTiles__item {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 15px;
  cursor: pointer;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}
@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__itemInner {
  position: relative;
  padding: 50px 30px 50px 75px;
  background-color: #fff;
}
@media (max-width: 599px) {
  .categoryTiles__itemInner {
    padding-left: 70px;
  }
}
@media (max-width: 479px) {
  .categoryTiles__itemInner {
    padding-left: 70px;
  }
}
.categoryTiles__header {
  position: relative;
  padding-left: 45px;
  transform-origin: left center;
  transition: transform 0.3s;
  color: #fff;
}
.categoryTiles__item:hover .categoryTiles__header {
  transform: scale(1.2);
}
@media (max-width: 1279px) {
  .categoryTiles__item:hover .categoryTiles__header {
    transform: scale(1.1);
  }
}
.categoryTiles__item.active .categoryTiles__header {
  transform: scale(1.2);
}
@media (max-width: 1279px) {
  .categoryTiles__item.active .categoryTiles__header {
    transform: scale(1.1);
  }
}
@media (max-width: 1279px) {
  .categoryTiles__header {
    font-size: 1.7rem;
  }
}
.categoryTiles__heading {
  margin: 0 0 31px 0;
}
.categoryTiles__icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 33px;
  height: 33px;
  transform: translateY(-50%);
  display: inline-flex;
}
.categoryTiles__img {
  display: block;
  width: 100%;
  height: auto;
}
.categoryTiles__link {
  transition: opacity 0.3s, color 0.3s;
  color: #fff;
  opacity: 0;
}
.categoryTiles__link::after {
  color: #fff;
}
.categoryTiles__link:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
}
.categoryTiles__item:hover .categoryTiles__link {
  opacity: 1;
}
.categoryTiles__item.active .categoryTiles__link {
  opacity: 1;
}
@media (max-width: 767px) {
  .categoryTiles__link {
    max-width: 70%;
    font-size: 1.6rem;
  }
}
.categoryTiles__description {
  position: relative;
  margin-top: 30px;
  transition: opacity 0.6s;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.6rem;
  opacity: 0;
}
.categoryTiles__item:hover .categoryTiles__description {
  opacity: 1;
}
.categoryTiles__item.active .categoryTiles__description {
  opacity: 1;
}
@media (max-width: 1279px) {
  .categoryTiles__description {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .categoryTiles__description {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
}
@media (max-width: 599px) {
  .categoryTiles__description {
    font-size: 1.3rem;
    line-height: normal;
  }
}
.categoryTiles__moreText {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 40px;
  padding: 40px 30px;
  transition: max-height 0.3s, background-color 0.6s;
  background-color: #fff;
  overflow: hidden;
}
.categoryTiles__moreText::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: top 0.6s, right 0.6s, bottom 0.6s, left 0.6s;
  background-color: #fff;
  box-shadow: 8px 8px 12px 6px rgba(0, 0, 0, 0);
  content: "";
}
.categoryTiles__item:hover .categoryTiles__moreText {
  max-height: 250px;
  background-color: #f1f1f1;
  overflow: visible;
  z-index: 1;
}
.categoryTiles__item:hover .categoryTiles__moreText::before {
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  box-shadow: 8px 8px 12px 6px rgba(0, 0, 0, 0.04);
}
.categoryTiles__item.active .categoryTiles__moreText {
  max-height: 250px;
  background-color: #f1f1f1;
  overflow: visible;
  z-index: 1;
}
.categoryTiles__item.active .categoryTiles__moreText::before {
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  box-shadow: 8px 8px 12px 6px rgba(0, 0, 0, 0.04);
}
@media (max-width: 1279px) {
  .categoryTiles__moreText {
    padding: 40px 15px 40px 25px;
  }
}

.categoryList {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1023px) {
  .categoryList {
    display: block;
  }
}
.categoryList__title {
  color: #333333;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.075rem;
  padding-right: 20px;
  text-transform: uppercase;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}
@media (max-width: 1023px) {
  .categoryList__title {
    max-width: none;
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.categoryList__list {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}
@media (max-width: 1023px) {
  .categoryList__list {
    max-width: none;
  }
}
.categoryList__items {
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -15px;
  transition: transform 0.6s;
}
.categoryList__item {
  position: relative;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 15px;
}
@media (max-width: 1023px) {
  .categoryList__item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 599px) {
  .categoryList__item {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.categoryList__link {
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}
.categoryList__link:hover {
  color: #0D2A4A;
}
.categoryList__icon {
  margin-right: 10px;
}
.categoryList__text {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2rem;
}

.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", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  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: #333333;
  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: 2px solid #939AFC;
}
.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 #333333;
  background-color: #fff;
  color: transparent;
  font-family: "icomoon";
  font-size: 2rem;
  content: "\E90F";
}
.filterPanel__checkbox:checked + .filterPanel__labelText::before {
  color: #333333;
}
.filterPanel__search {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  color: #333333;
  font-size: 1.3rem;
}
.filterPanel__searchFields {
  position: relative;
  margin-top: 6px;
}
.filterPanel__filterAuthor {
  width: 100%;
  padding: 0 45px 0 15px;
  border: 1px solid #333333;
  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: #333333;
  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: #939AFC;
  font-size: 1.8rem;
  line-height: 2rem;
  overflow: hidden;
}
@media (max-width: 1367px) {
  .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: #939AFC;
  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: 1367px) {
  .form__fieldGroup--flex2InRow {
    margin-right: -22px;
  }
}
.form__fieldGroup--flex2InRow > div {
  flex: 1 1 50%;
}
.form__fieldWrapper50--marginBottom {
  margin-bottom: 28px;
}
@media (max-width: 1367px) {
  .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: #333333;
  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: #333333;
  font-size: 10px;
  cursor: pointer;
}
.form__plusminus > span:hover {
  color: #0D2A4A;
}

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

.loader {
  position: relative;
  margin: 88px auto;
  transform: translateZ(0);
  color: #0C55A6;
  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 {
  margin: 0 -10px;
}
.menuSocial a::after {
  transition: color 0.3s;
  color: #fff;
}
.menuSocial a:hover {
  background-color: #fff !important;
  border-color: #fff !important;
  text-decoration: underline !important;
  color: #333333 !important;
}
.menuSocial a:hover::after {
  color: #0C55A6 !important;
}
.menuSocial a[href*="facebook.com"]::after {
  content: "\E901";
}
.menuSocial a[href*="twitter.com"]::after {
  content: "\E93D";
}
.menuSocial a[href*="x.com"]::after {
  content: "\E93D";
}
.menuSocial a[href*="bluesky.app"]::after {
  content: "\E916";
}
.menuSocial a[href*="mastodon.social"]::after {
  content: "\E915";
}
.menuSocial a[href*="linkedin.com"]::after {
  content: "\E905";
}
.menuSocial a[href*="instagram.com"]::after {
  content: "\E90B";
}
.menuSocial a[href*="soundcloud.com"]::after {
  content: "\E908";
}
.menuSocial a[href*="youtube.com"]::after {
  content: "\E926";
}
.menuSocial a[href*="bsky.app"]::after {
  content: "\E916";
}
.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;
}

/*
.menuSocial {
  $p: &;
  a {
    padding-left: 32px;
    color: $c-text;
  }
}*/
.newsletterBanner__inner {
  display: flex;
  flex: 1;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .newsletterBanner__inner {
    align-items: center;
  }
}
.newsletterBanner .updated {
  position: relative;
  margin-top: 45px;
  padding: 40px 20px 23px 24px;
  border: 1px solid #0D2A4A;
  background-color: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 2.6rem;
}
.newsletterBanner .updated ul {
  padding: 4px 20px;
  border: 1px solid #0D2A4A;
  background-color: #fff;
  color: #000;
  font-size: 1.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: 1px solid #0D2A4A;
  border-radius: 50%;
  background-color: #fff;
  color: #0D2A4A;
  content: "\E924";
}
.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;
    padding-top: 0;
  }
}
.newsletterBanner .widget_wysija_cont {
  flex: 1;
}
.newsletterBanner .wysija-submit {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 135px;
  margin-top: 0;
  padding: 0 20px;
  transition: background-color 0.3s;
  background-color: #0D2A4A;
  color: #fff;
  font-size: 1.6rem;
  line-height: 47px;
  text-transform: uppercase;
  cursor: pointer;
}
.newsletterBanner .wysija-submit:hover {
  background-color: rgba(13, 42, 74, 0.7);
}
.newsletterBanner .wysija-input {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
  border: 1px solid #0D2A4A;
  background-color: #fff;
  color: #333333;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 45px;
}
.newsletterBanner .wysija-input:focus {
  box-shadow: inset 0 0 4px 0 rgba(29, 109, 178, 0.4);
}
@media (max-width: 479px) {
  .newsletterBanner .wysija-input {
    padding: 0 12px;
  }
}
.newsletterBanner .wysija-input:hover {
  border: 2px solid #939AFC;
}
.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: 0;
  }
}

.postFooter__newsletter {
  background: #0d2a4a url("../assets/images/newsletter_bg.png") no-repeat top right;
  border-radius: 0.5rem;
  padding: 5.5rem 3rem;
}
.postFooter__newsletter__row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .postFooter__newsletter__row {
    flex-direction: column;
  }
}
.postFooter__newsletter__newsletterText h2 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  padding: 0.5rem 0 1.5rem;
  text-transform: none;
  color: #fff;
  position: relative;
}
.postFooter__newsletter__newsletterText p {
  text-transform: none;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  padding: 0.5rem 0;
  color: #fff;
  margin: 0;
  white-space: pre-line;
}
.postFooter__newsletter__newsletterForm {
  border-radius: 0.5rem;
  background: #fff;
  margin: 3rem 0 0;
  padding: 8px;
  display: inline-block;
  max-width: 496px;
}
@media (max-width: 767px) {
  .postFooter__newsletter__newsletterForm {
    display: block;
  }
}
.postFooter__newsletter__newsletterForm .postFooter__newsletterInput {
  margin: 0;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 400;
  padding: 1rem;
}
@media (max-width: 767px) {
  .postFooter__newsletter__newsletterForm .postFooter__newsletterInput {
    width: 100%;
  }
}
.postFooter__newsletter__newsletterForm input[type=submit] {
  margin: 0;
}
@media (max-width: 767px) {
  .postFooter__newsletter__newsletterForm input[type=submit] {
    width: 100%;
  }
}
.postFooter__newsletter__colLeft {
  flex-basis: 50%;
  padding: 0 3rem 0;
  position: relative;
}
@media (max-width: 1023px) {
  .postFooter__newsletter__colLeft {
    flex-basis: 100%;
  }
}
.postFooter__newsletter__colLeft p {
  font-size: 3.6rem;
  line-height: 1.2222222222;
}
@media (max-width: 1023px) {
  .postFooter__newsletter__colLeft p {
    font-size: 2.6rem;
    line-height: 1.3076923077;
  }
}
.postFooter__newsletter__colRight {
  flex-basis: 40%;
  padding: 0 3rem 0 0.5rem;
  display: flex;
  align-self: flex-end;
}
@media (max-width: 1023px) {
  .postFooter__newsletter__colRight {
    flex-basis: 100%;
    padding: 5.7rem 3rem 0 3rem;
  }
  .postFooter__newsletter__colRight h2:before {
    content: "";
    position: absolute;
    background-color: white;
    width: 33px;
    height: 2px;
    top: -20px;
    left: 0;
    opacity: 0.3;
  }
}

.postThumb {
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 2.5rem;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
}
.postThumb__image {
  display: block;
  position: relative;
  background-color: #fafafa;
  transition: background-position 0.3s;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.postThumb__image:before {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 63.52%;
  content: "";
  visibility: hidden;
  z-index: -1;
}
.postThumb__image:hover {
  background-position: top center;
}
.postThumb__description {
  display: block;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: #333;
}
.postThumb__copy {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  background-color: rgba(63, 65, 70, 0.5);
  color: #fff;
  font-size: 1.3rem;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  z-index: 15;
  border-radius: 50%;
}
.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;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif !important;
  font-weight: bold;
  color: #fff;
  content: "\A9";
}
.postThumb__copy--top {
  top: 0;
  bottom: auto;
}
.postThumb__copyDetails {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 210px;
  padding: 20px 24px;
  transition: visibility 0.3s, opacity 0.3s;
  background-color: #333;
  color: rgba(255, 255, 255, 0.8);
  line-height: normal;
  text-align: left;
  word-break: break-word;
  visibility: hidden;
  opacity: 0;
}
.postThumb__copyDetails::before {
  position: absolute;
  bottom: 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__copyDetails--top {
  top: 0;
  bottom: auto;
}
.postThumb__copyDetails--top::before {
  top: 3px;
  bottom: auto;
}
.postThumb__copy:hover .postThumb__copyDetails {
  visibility: visible;
  opacity: 1;
}
.postThumb__type {
  position: absolute;
  bottom: -28px;
  left: 40px;
}
.postThumb__content {
  overflow: visible;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1279px) {
  .postThumb__content {
    padding: 20px 0;
  }
}
.postThumb__content--youtube {
  width: 80%;
  align-self: center;
}
.postThumb__categoryIcon {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.postThumb__categoryIconImg {
  margin-right: 8px;
  width: 5%;
  height: auto;
}
.postThumb__category, .postThumb__tag {
  display: flex;
  position: absolute;
  bottom: 10px;
  z-index: 10;
  padding: 0 0 0 10px;
}
.postThumb__category__item, .postThumb__tag__item {
  padding: 10px;
  color: #333333;
  background: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0.075rem;
  margin: 10px 0 0 0;
  border-radius: 0.5rem;
}
.postThumb__tag {
  top: 10px;
  bottom: unset;
}
.postThumb__tag__item {
  background-color: #333333;
  opacity: 0.8;
  color: #fff;
  margin: 0 0 10px 0;
}
.postThumb__kicker {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 20px 0 5px 0;
}
.postThumb__title {
  margin: 20px 0 15px 0;
}
@media (max-width: 479px) {
  .postThumb__title {
    line-height: 2.6rem;
  }
}
.postThumb__title--highlight {
  color: black;
  padding: 10px 0 0 0;
  font-weight: 500;
  font-size: 1.3em;
  margin-bottom: 18px;
  width: 100%;
}
.postThumb__kicker + .postThumb__title {
  margin-top: 0px;
}
.postThumb__titleUnderline {
  display: inline;
  transition: border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.postThumb__link:hover .postThumb__titleUnderline {
  border-bottom: 1px solid #04101c;
}
.postThumb__link:hover .link::after {
  transform: translateX(10px);
}
.postThumb__authorsDate {
  display: flex;
  color: #707070;
  font-size: 1.3rem;
  line-height: 2.1rem;
  font-weight: 400;
  margin: auto 0 0 0;
  padding: 30px 0 0;
}
@media (max-width: 479px) {
  .postThumb__authorsDate {
    flex-wrap: wrap;
  }
}
.postThumb__authors {
  display: none;
}
@media (max-width: 479px) {
  .postThumb__authors {
    margin-top: 10px;
  }
}
.postThumb .authorsDetailed__container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
}
.postThumb .authorsDetailed__container .authorsDetailed__item {
  display: flex;
  position: relative;
}
.postThumb .authorsDetailed__container .authorsDetailed__item__thumb {
  flex: 0 0 5rem;
  height: 5rem;
  overflow: hidden;
  margin: 0 1rem 0 0;
  align-self: end;
  text-align: center;
  border-radius: 100%;
}
.postThumb .authorsDetailed__container .authorsDetailed__item__thumb img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.postThumb .authorsDetailed__container .authorsDetailed__item__thumb:not(:has(img)) {
  background: #ccc;
}
.postThumb .authorsDetailed__container .authorsDetailed__item__thumb:not(:has(img)):after {
  font-family: "icomoon";
  content: "\E903";
  line-height: 5rem;
  font-size: 25px;
  color: #fff;
}
.postThumb .authorsDetailed__container .authorsDetailed__item__small {
  font-size: 1.2rem;
  padding-bottom: 0.2px;
}
.postThumb .authorsDetailed__container .authorsDetailed__item__name {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.1rem;
  text-transform: none;
  color: #333333;
  padding-right: 20px;
}
.postThumb .authorsDetailed__container .authorsDetailed__item__name a:hover {
  text-decoration: underline;
}
.postThumb .authorsDetailed__container .authorsDetailed__item .authorsDetailed_count {
  display: none;
}
.postThumb__date {
  position: relative;
  white-space: nowrap;
  align-self: flex-end;
  text-align: right;
  flex: 1 1 auto;
}
@media (max-width: 479px) {
  .postThumb__date {
    margin-top: 10px;
  }
}
.postThumb__date::before {
  position: absolute;
  top: 0;
  left: 12px;
  width: 1px;
  height: 15px;
  background-color: #707070;
  content: "";
  display: none;
}
.postThumb--blue {
  background: #0D2A4A url("../assets/images/postthumb_arrow_bg_right.png") no-repeat top right;
  background-size: contain;
}
.postThumb--blue .postThumb__title,
.postThumb--blue .postThumb__description,
.postThumb--blue .postThumb__kicker {
  color: #fff;
}
.postThumb--blue .postThumb__title {
  font-size: 3.6rem;
  line-height: 1.3333333333;
}
@media (max-width: 767px) {
  .postThumb--blue .postThumb__title {
    font-size: 2.6rem;
    line-height: 1.3076923077;
  }
}
.postThumb--blue .button, .postThumb--blue .menuSocial a, .menuSocial .postThumb--blue a {
  border-color: transparent;
}
.postThumb--highlight {
  background: rgba(255, 255, 255, 0.05);
}
.postThumb--highlight .postThumb__title,
.postThumb--highlight .postThumb__description,
.postThumb--highlight .postThumb__kicker {
  color: #fff;
}
.postThumb--highlight .button, .postThumb--highlight .menuSocial a, .menuSocial .postThumb--highlight a {
  border-color: transparent;
}
.postThumb--author {
  justify-content: center;
  align-items: center;
}
.postThumb--author:before {
  display: none;
}
.postThumb--author .postThumb__link:hover .postThumb__title {
  text-decoration: underline;
}
.postThumb--author .postThumb__title,
.postThumb--author .postThumb__description,
.postThumb--author .postThumb__kicker {
  text-align: center;
}
.postThumb--author .postThumb__image {
  border-radius: 100%;
  width: 150px;
  height: 150px;
}
.postThumb--author .postThumb__image:before {
  padding-bottom: 100%;
}
.postThumb--author .postThumb__image:after {
  display: none;
}
.postThumb--author .postThumb__authorsDate {
  justify-content: center;
  align-items: center;
}
.postThumb--higlightsocial {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
  padding: 32px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
}
.postThumb__excerpt {
  font-size: 1.15em;
  color: #222;
  margin-bottom: 32px;
  text-align: left;
  width: 100%;
  line-height: 1.5;
}

.postThumb--iframe-wrapper {
  justify-content: center;
}

.postThumb__iframe {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fafafa;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  margin: 0 0 20px;
}
.postThumb__iframe:before {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 63.52%;
  content: "";
  visibility: hidden;
  z-index: -1;
  content: "";
  display: block;
}
.postThumb__iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 0.5rem;
}

.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: #939AFC;
  font-size: 1.3rem;
  line-height: 4rem;
}
.searchForm__input::-webkit-input-placeholder {
  color: rgba(147, 154, 252, 0.5);
}
.searchForm__input::-moz-placeholder {
  color: rgba(147, 154, 252, 0.5);
}
.searchForm__input:-ms-input-placeholder {
  color: rgba(147, 154, 252, 0.5);
}
.searchForm__input:-moz-placeholder {
  color: rgba(147, 154, 252, 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 #dde0fe;
  }
}
.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: #333;
  content: "\E91A";
}
.searchForm__button:hover {
  transform: scale(1.1);
}

.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.3rem;
  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 #0D2A4A;
  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__topics--noMargin {
  margin-top: 0;
  padding-left: 0;
}
.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;
  }
}
.simpleTabs__topicTitle {
  transition: transform 0.3s;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3125;
}
.simpleTabs__topicTitleUnderline {
  transition: border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.simpleTabs__articleLink.active .simpleTabs__topicTitleUnderline {
  border-bottom: 1px solid #333333;
}
.simpleTabs__articleLink:hover .simpleTabs__topicTitleUnderline {
  border-bottom: 1px solid #333333;
}
.simpleTabs__topicImg {
  flex-basis: 71px;
  flex-shrink: 0;
  width: 71px;
  height: 71px;
  transition: transform 0.3s;
  background-size: cover;
  background-color: #0C55A6;
  background-position: center center;
  border-radius: 0.5rem;
}
.simpleTabs__articleLink.active .simpleTabs__topicImg {
  transform: scale(1.1);
}
.simpleTabs__articleLink:hover .simpleTabs__topicImg {
  transform: scale(1.1);
}
.simpleTabs__authorsDate {
  margin-top: 7px;
}
@media (max-width: 1279px) {
  .simpleTabs__authorsDate {
    flex-wrap: wrap;
  }
}
@media (max-width: 479px) {
  .simpleTabs__authorsDate {
    margin-top: 7px;
  }
}
.simpleTabs__date {
  white-space: nowrap;
}
.simpleTabs__category {
  white-space: nowrap;
}
.simpleTabs__category, .simpleTabs__authors, .simpleTabs__date {
  display: inline;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3333333333;
  color: #333;
  padding: 0;
}
.simpleTabs__category:after, .simpleTabs__date:after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333;
  display: inline-block;
  margin: 0 1rem 0.2rem 1rem;
}
.simpleTabs__date, .simpleTabs__authors {
  color: #707070;
}
.simpleTabs__category {
  font-weight: 700;
}
@media (max-width: 479px) {
  .simpleTabs__category {
    display: none;
  }
}

.siteLogo__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s, opacity 0.3s;
}
.siteLogo__link:hover {
  transform: scale(1.2);
}
@media (max-width: 479px) {
  .siteLogo__link {
    text-align: left;
    display: block;
  }
}
.siteLogo__image {
  display: block;
  max-width: 100%;
  max-height: 46px;
}
@media (max-width: 479px) {
  .siteLogo__image {
    max-width: 132px;
  }
}
@media (max-width: 359px) {
  .siteLogo__image {
    max-width: 108px;
  }
}
.siteLogo__text {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  margin-left: 24px;
  transform: translateZ(0);
}
.siteLogo__text span {
  display: block;
}
@media (max-width: 599px) {
  .siteLogo__text {
    margin-left: 18px;
  }
}
@media (max-width: 479px) {
  .siteLogo__text {
    margin-left: 14px;
    font-size: 10px;
    line-height: 12px;
  }
}

.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(147, 154, 252, 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", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  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: #939AFC;
}
.topMenu__link::before {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
  background-color: #939AFC;
  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: #939AFC;
  animation: maxToHide 0.6s 1 normal forwards;
}
.topMenu__item:hover .topMenu__link::after {
  max-width: 100%;
  background-color: #939AFC;
  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: #333333;
  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-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: #939AFC;
}
.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: "\E928";
}
.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: "\E929";
}
.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 #0D2A4A;
}
.contactForm__inputTitle {
  position: absolute;
  top: 30px;
  left: 24px;
  color: #525252;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  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 #0D2A4A;
}
.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: #333333;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 22px;
}
.contactForm .wpcf7-checkbox input + span:hover::before {
  border: 1px solid #0D2A4A;
}
.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: #333333;
  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 #0D2A4A;
}
.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: #707070;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  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: #333333;
  line-height: 1.2222222222;
  font-size: 3.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: #333333;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 1rem;
}
.bloggerData__tags {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}
.bloggerData__tag {
  margin-top: 5px;
  margin-right: 8px;
  padding: 4px 10px;
  border: 1px solid #0D2A4A;
  color: #333333;
  font-size: 1.3rem;
  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: 10px;
  font-size: 1.6rem;
}
.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;
  flex-basis: 40%;
  flex-grow: 0;
  text-align: center;
}
@media (max-width: 1023px) {
  .bloggerData__authorImage {
    flex-basis: 100%;
  }
}
.bloggerData__authorImage figure {
  position: relative;
  display: block;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  /*img {
    max-width: 400px;
    height: auto;
    display: block;
    overflow: hidden;
    margin: 0 0 0 auto;
    @include bst_cornerRadius(100%);
  }*/
}
@media (max-width: 1279px) {
  .bloggerData__authorImage figure {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1023px) {
  .bloggerData__authorImage figure {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 599px) {
  .bloggerData__authorImage figure {
    width: 225px;
    height: 225px;
  }
}
.bloggerData__authorImage figure > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0;
}
.bloggerData__authorImage figure:not(:has(img)) {
  background: #ccc;
}
.bloggerData__authorImage figure:not(:has(img)):after {
  font-family: "icomoon";
  content: "\E903";
  line-height: 40rem;
  font-size: 200px;
  color: #fff;
}
.bloggerData__authorImage img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  height: auto;
}

.tags {
  display: flex;
  flex-wrap: wrap;
}
.tags__tag {
  margin-top: 10px;
  margin-right: 10px;
  padding: 4px 10px;
  border: 1px solid #767676;
  color: #333333;
  font-size: 1.3rem;
  letter-spacing: 0.016rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  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.07;
}
.comments .comment-body {
  max-width: 864px;
}
.comments .comment-meta {
  display: flex;
  flex-wrap: wrap;
  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%;
  border: 1px solid #0D2A4A;
}
@media (max-width: 767px) {
  .comments .comment-author img {
    margin-right: 15px;
  }
}
.comments .comment-awaiting-moderation {
  width: 100%;
  margin: 10px 0;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #0D2A4A;
}
@media (min-width: 768px) {
  .comments .comment-awaiting-moderation {
    margin-left: 75px;
  }
}
.comments .reply {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .comments .reply {
    margin-left: 75px;
  }
}
.comments .fn {
  display: flex;
  align-items: center;
  color: #333333;
  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: #333333;
  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.3rem;
    line-height: 2rem;
  }
}
.comments .children {
  display: flex;
  position: relative;
  flex-direction: column;
  max-width: 864px;
  margin-top: 41px;
  margin-left: 75px;
  padding: 0 24px;
  border: 2px solid #fafafa;
  background-color: #fff;
}
@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 #fafafa;
}
.comments .children::after {
  top: -20px;
  left: 26px;
  border-width: 20px 0 0 20px;
  border-color: transparent transparent transparent #fff;
}
@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;
}
.comments .comment-reply-link {
  display: inline-block;
  position: relative;
  padding-top: 2px;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  color: #333333;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.113rem;
  text-transform: uppercase;
}
.comments .comment-reply-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: 12px;
  height: 12px;
  margin-top: -6px;
  font-size: 12px;
  line-height: 12px;
  text-align: right;
  right: -20px;
  transition: transform 0.3s;
  color: #0D2A4A;
  content: "\E930";
}
.comments .comment-reply-link.active, .comments .comment-reply-link:hover {
  border-bottom: 1px solid rgba(63, 65, 70, 0.8);
  color: rgba(63, 65, 70, 0.8);
}

.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;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}
.comment-form label:hover .wpcf7-text, .comment-form label:hover .wpcf7-textarea {
  border: 1px solid #fff;
}
.comment-form label p {
  position: absolute;
  top: 10px;
  left: 24px;
  color: #525252;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  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;
  border-color: #fff;
  background-color: #fff;
  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 #fff;
  font-size: 1.6rem;
}
.comment-form input[type=text]:focus, .comment-form input[type=email]:focus {
  box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.4);
}
.comment-form textarea {
  width: 100%;
  min-height: 245px;
  padding: 21px 24px;
  transition: border 0.3s;
  border: 1px solid #fff;
  font-size: 1.6rem;
  resize: none;
}
.comment-form textarea:focus {
  box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.4);
}
.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: #333333;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .reply-person {
    margin-top: 53px;
  }
}

.commentForm {
  display: block;
}
.commentForm__form {
  display: block;
  font-size: 0;
}
.commentForm__form > * {
  display: block;
  font-size: 1.6rem;
}
.commentForm__replyTo {
  position: relative;
  padding: 12px 24px;
  padding-right: 46px;
  width: 100%;
  border: 1px solid #0D2A4A;
  font-size: 1.6rem;
  line-height: 1.9rem;
}
.commentForm__replyTo a {
  font-size: 0;
  color: transparent;
  display: block;
  width: 41px;
  height: 41px;
  position: absolute;
  top: 1px;
  right: 1px;
}
.commentForm__replyTo a: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: "\E91D";
  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;
  color: #0D2A4A;
  transition: transform 0.3s;
}
.commentForm__replyTo a:hover:before {
  transform: rotate(180deg);
}
.commentForm__field {
  width: 100%;
  position: relative;
}
.commentForm__field--replyTo {
  margin-top: 45px;
}
.commentForm__field--half {
  width: 100%;
}
@media (min-width: 768px) {
  .commentForm__field--half {
    display: flex;
    justify-content: space-between;
    vertical-align: top;
    width: calc(50% - 9px);
  }
  .commentForm__field--half:nth-of-type(1) {
    margin-right: 9px;
  }
  .commentForm__field--half:nth-of-type(2) {
    margin-left: 9px;
  }
}
.commentForm__cookies {
  position: relative;
  margin-bottom: 20px;
}
.commentForm__cookies input {
  display: block;
  width: 1px;
  height: 0;
  position: absolute;
  top: 1px;
  left: 1px;
  padding: 0;
  margin: 0;
}
.commentForm__cookies label {
  position: relative;
  display: block;
  visibility: hidden;
  margin: 0;
  padding: 0;
  padding-left: 26px;
}
.commentForm__cookies label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  visibility: visible;
}
.commentForm__cookies label: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;
  content: "\E90F";
  font-size: 12px;
  line-height: 12px;
  width: 12px;
  height: 12px;
  color: transparent;
  visibility: hidden;
  position: absolute;
  top: 3px;
  left: 3px;
}
.commentForm__cookies label p {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  font-size: 1.6rem;
  line-height: 1.8rem;
  visibility: visible;
}
.commentForm__cookies input:checked + label:after {
  color: #fff;
  visibility: visible;
}

.resultBox {
  margin-right: 44px;
  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 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}
.resultBox__categoryIcon {
  margin-right: 8px;
}
.resultBox__title {
  margin-top: 20px;
  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__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: #939AFC;
  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 #939AFC;
}
.searchHeader__input {
  width: 100%;
  padding-right: 80px;
  background-color: transparent;
  color: #fff;
  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: "\E92A";
}
.searchHeader__button:hover {
  transform: translateX(3px);
}
.searchHeader__button:hover::after {
  color: #939AFC;
}

.twitterBox {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 430px;
  margin-bottom: 30px;
  padding: 40px 30px;
  background-color: #fff;
  background-image: none;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .twitterBox {
    max-width: initial;
  }
}
@media (max-width: 767px) {
  .twitterBox {
    padding: 30px 20px;
  }
}
@media (max-width: 479px) {
  .twitterBox {
    padding: 20px 10px;
  }
}
.twitterBox__twitterLogo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.twitterBox__tag, .twitterBox__content, .twitterBox__footer {
  z-index: 5;
}
.twitterBox__tag {
  position: relative;
  margin-bottom: 20px;
  padding-left: 38px;
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 4.5rem;
}
.twitterBox__tag:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  background-image: url("../assets/images/twitter.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}
.twitterBox__text {
  margin-bottom: 20px;
}
.twitterBox__content {
  flex: 1;
  padding-bottom: 100px;
  transition: min-height 0.6s;
}
.twitterBox__content .date {
  display: block;
  padding-bottom: 10px;
  color: inherit;
  font-size: 1.3rem;
  line-height: 2.6rem;
  opacity: 0.7;
}
.twitterBox__content p {
  position: absolute;
  right: 40px;
  left: 40px;
  flex: 1;
  transition: opacity 0.6s;
  color: #000;
  font-size: 1.8rem;
  line-height: 2.6rem;
  opacity: 0;
}
.twitterBox__content p a {
  display: inline-block;
  color: #0D2A4A;
}
.twitterBox__content p.visible {
  display: block;
  opacity: 1;
}
.twitterBox__footer {
  display: flex;
  justify-content: space-between;
}
.twitterBox__controls {
  display: flex;
}
.twitterBox__control {
  position: relative;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  cursor: pointer;
  border-color: #333;
}
.twitterBox__control:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  margin-left: -7px;
  transform: scale(0.5);
  transition: background-color 0.3s, transform 0.3s;
  border: 2px solid #333;
  border-radius: 50%;
  background-color: #fff;
  content: "";
}
.twitterBox__control.active:before {
  transform: scale(1);
  background-color: #fff;
}
.twitterBox__control:hover:before {
  background-color: #0D2A4A;
}
.twitterBox__follow {
  display: flex;
}
.twitterBox__follow p {
  color: #333;
  font-size: 1.2rem;
  letter-spacing: 0.067rem;
  text-transform: uppercase;
}
.twitterBox__followIcon {
  width: 10px;
  height: 9px;
  transform: rotateZ(-39deg);
  color: #0D2A4A;
}
.twitterBox__followIcon::before {
  font-size: 1.8rem;
  color: #767676;
}

.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: #fff;
  overflow: hidden;
}
@media (max-width: 479px) {
  .overlaySearch {
    top: 52px;
  }
}
.overlaySearch.active {
  top: 0;
  max-height: 100vh;
  z-index: 2;
}
.overlaySearch__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  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: 20px;
  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: #333;
  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: #333;
  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: #333;
  font-size: 5.5rem;
  content: "\E92A";
}
@media (max-width: 767px) {
  .overlaySearch__send::before {
    font-size: 4rem;
  }
}
.overlaySearch__send:hover {
  transform: translate3d(3px, -50%, 0);
}
.overlaySearch__send:hover::before {
  color: #333;
}
.overlaySearch__search {
  width: 100%;
  padding-right: 50px;
  padding-bottom: 25px;
  font-size: 4rem;
  font-weight: 700;
  border-bottom: 2px solid #333;
  background-color: transparent;
  color: #333;
}
@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: #333;
  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.3rem;
  white-space: nowrap;
}
.overlaySearch__singleResult strong {
  font-weight: bold;
}

.uberUns {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 430px;
  margin-bottom: 30px;
  padding: 31px 27px 31px 30px;
  background-image: none;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .uberUns {
    max-width: initial;
  }
}
@media (max-width: 767px) {
  .uberUns {
    padding: 30px 20px;
  }
}
@media (max-width: 479px) {
  .uberUns {
    padding: 20px 10px;
  }
}
.uberUns__oval {
  position: absolute;
  top: -66px;
  left: -66px;
  z-index: 0;
}
.uberUns__wrapper {
  z-index: 1;
}
.uberUns__wrapper a {
  color: #333;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.081rem;
  text-transform: uppercase;
}
.uberUns__title {
  color: #333;
  font-size: 2rem;
  line-height: 1.9;
}
.uberUns__title strong {
  font-weight: 700;
}

.postContent, .archive__description p {
  position: relative;
  width: 100%;
}
.postContent a, .archive__description p a {
  /*font-weight: 700;
  */
  color: #0C55A6;
  text-decoration: underline;
}
.postContent a:hover, .archive__description p a:hover {
  text-decoration: none;
}
.postContent strong, .archive__description p strong {
  font-weight: 700;
}
.postContent em, .archive__description p em {
  font-style: italic;
}
.postContent h1, .archive__description p h1,
.postContent h2,
.archive__description p h2,
.postContent h3,
.archive__description p h3,
.postContent h4,
.archive__description p h4,
.postContent h5,
.archive__description p h5,
.postContent h6,
.archive__description p h6,
.postContent p,
.archive__description p p,
.postContent ul,
.archive__description p ul,
.postContent ol,
.archive__description p ol,
.postContent figure,
.archive__description p figure,
.postContent table,
.archive__description p table,
.postContent pre,
.archive__description p pre,
.postContent > img,
.archive__description p > img,
.postContent hr,
.archive__description p hr,
.postContent iframe,
.archive__description p iframe {
  width: 100%;
  max-width: 807px;
  margin: auto;
}
@media (max-width: 1023px) {
  .postContent h1, .archive__description p h1,
  .postContent h2,
  .archive__description p h2,
  .postContent h3,
  .archive__description p h3,
  .postContent h4,
  .archive__description p h4,
  .postContent h5,
  .archive__description p h5,
  .postContent h6,
  .archive__description p h6,
  .postContent p,
  .archive__description p p,
  .postContent ul,
  .archive__description p ul,
  .postContent ol,
  .archive__description p ol,
  .postContent figure,
  .archive__description p figure,
  .postContent table,
  .archive__description p table,
  .postContent pre,
  .archive__description p pre,
  .postContent > img,
  .archive__description p > img,
  .postContent hr,
  .archive__description p hr,
  .postContent iframe,
  .archive__description p iframe {
    max-width: 696px;
    margin: 0;
  }
}
.singlePost--withPostNavigation .postContent h1, .singlePost--withPostNavigation .archive__description p h1, .archive__description .singlePost--withPostNavigation p h1,
.singlePost--withPostNavigation .postContent h2,
.singlePost--withPostNavigation .archive__description p h2,
.archive__description .singlePost--withPostNavigation p h2,
.singlePost--withPostNavigation .postContent h3,
.singlePost--withPostNavigation .archive__description p h3,
.archive__description .singlePost--withPostNavigation p h3,
.singlePost--withPostNavigation .postContent h4,
.singlePost--withPostNavigation .archive__description p h4,
.archive__description .singlePost--withPostNavigation p h4,
.singlePost--withPostNavigation .postContent h5,
.singlePost--withPostNavigation .archive__description p h5,
.archive__description .singlePost--withPostNavigation p h5,
.singlePost--withPostNavigation .postContent h6,
.singlePost--withPostNavigation .archive__description p h6,
.archive__description .singlePost--withPostNavigation p h6,
.singlePost--withPostNavigation .postContent p,
.singlePost--withPostNavigation .archive__description p p,
.archive__description .singlePost--withPostNavigation p p,
.singlePost--withPostNavigation .postContent ul,
.singlePost--withPostNavigation .archive__description p ul,
.archive__description .singlePost--withPostNavigation p ul,
.singlePost--withPostNavigation .postContent ol,
.singlePost--withPostNavigation .archive__description p ol,
.archive__description .singlePost--withPostNavigation p ol,
.singlePost--withPostNavigation .postContent figure,
.singlePost--withPostNavigation .archive__description p figure,
.archive__description .singlePost--withPostNavigation p figure,
.singlePost--withPostNavigation .postContent table,
.singlePost--withPostNavigation .archive__description p table,
.archive__description .singlePost--withPostNavigation p table,
.singlePost--withPostNavigation .postContent pre,
.singlePost--withPostNavigation .archive__description p pre,
.archive__description .singlePost--withPostNavigation p pre,
.singlePost--withPostNavigation .postContent > img,
.singlePost--withPostNavigation .archive__description p > img,
.archive__description .singlePost--withPostNavigation p > img,
.singlePost--withPostNavigation .postContent hr,
.singlePost--withPostNavigation .archive__description p hr,
.archive__description .singlePost--withPostNavigation p hr,
.singlePost--withPostNavigation .postContent iframe,
.singlePost--withPostNavigation .archive__description p iframe,
.archive__description .singlePost--withPostNavigation p iframe {
  max-width: 704px;
}
.postContent h1, .archive__description p h1,
.postContent h2,
.archive__description p h2,
.postContent h3,
.archive__description p h3,
.postContent h4,
.archive__description p h4,
.postContent h5,
.archive__description p h5,
.postContent h6,
.archive__description p h6 {
  margin-top: 50px;
  color: #333;
  font-weight: 700;
}
.postContent h1 ~ p, .archive__description p h1 ~ p,
.postContent h2 ~ p,
.archive__description p h2 ~ p,
.postContent h3 ~ p,
.archive__description p h3 ~ p,
.postContent h4 ~ p,
.archive__description p h4 ~ p,
.postContent h5 ~ p,
.archive__description p h5 ~ p,
.postContent h6 ~ p,
.archive__description p h6 ~ p {
  margin-top: 25px;
}
@media (max-width: 1023px) {
  .postContent h1 ~ p, .archive__description p h1 ~ p,
  .postContent h2 ~ p,
  .archive__description p h2 ~ p,
  .postContent h3 ~ p,
  .archive__description p h3 ~ p,
  .postContent h4 ~ p,
  .archive__description p h4 ~ p,
  .postContent h5 ~ p,
  .archive__description p h5 ~ p,
  .postContent h6 ~ p,
  .archive__description p h6 ~ p {
    margin-top: 10px;
  }
}
.postContent h1 ~ ul, .archive__description p h1 ~ ul,
.postContent h2 ~ ul,
.archive__description p h2 ~ ul,
.postContent h3 ~ ul,
.archive__description p h3 ~ ul,
.postContent h4 ~ ul,
.archive__description p h4 ~ ul,
.postContent h5 ~ ul,
.archive__description p h5 ~ ul,
.postContent h6 ~ ul,
.archive__description p h6 ~ ul {
  margin-top: 20px;
}
.postContent h1, .archive__description p h1,
.postContent h2,
.archive__description p h2 {
  font-size: 2.8rem;
  line-height: 5rem;
}
@media (max-width: 479px) {
  .postContent h1, .archive__description p h1,
  .postContent h2,
  .archive__description p h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.postContent h3, .archive__description p h3,
.postContent h4,
.archive__description p h4 {
  font-size: 2.6rem;
  line-height: 3.4rem;
}
@media (max-width: 479px) {
  .postContent h3, .archive__description p h3,
  .postContent h4,
  .archive__description p h4 {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
.postContent h5, .archive__description p h5,
.postContent h6,
.archive__description p h6 {
  font-size: 2.4rem;
  line-height: 2.8rem;
}
@media (max-width: 479px) {
  .postContent h5, .archive__description p h5,
  .postContent h6,
  .archive__description p h6 {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
.postContent p, .archive__description p p {
  margin-bottom: 25px;
  color: #333333;
  font-size: 2rem;
  line-height: 3.2rem;
}
@media (max-width: 1023px) {
  .postContent p, .archive__description p p {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .postContent p, .archive__description p p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
@media (max-width: 479px) {
  .postContent p, .archive__description p p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
.postContent .customBlockquote, .archive__description p .customBlockquote {
  position: relative;
  margin: auto;
  color: #333333;
}
@media (max-width: 1023px) {
  .postContent .customBlockquote, .archive__description p .customBlockquote {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .postContent .customBlockquote, .archive__description p .customBlockquote {
    padding-top: 40px;
    padding-left: 0;
  }
}
.postContent .customBlockquote::before, .archive__description p .customBlockquote::before {
  position: absolute;
  top: 0;
  left: -45px;
  color: #0D2A4A;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  content: "\201C";
}
@media (max-width: 1023px) {
  .postContent .customBlockquote::before, .archive__description p .customBlockquote::before {
    left: -5px;
  }
}
@media (max-width: 767px) {
  .postContent .customBlockquote::before, .archive__description p .customBlockquote::before {
    left: 0;
  }
}
.postContent .customBlockquote > p, .archive__description p .customBlockquote > p {
  padding-bottom: 30px;
  font-weight: 700;
}
.postContent .customBlockquote > p:last-of-type, .archive__description p .customBlockquote > p:last-of-type {
  position: relative;
  border-bottom: 2px solid #0D2A4A;
}
.postContent .customBlockquote > p:last-of-type::before, .archive__description p .customBlockquote > p:last-of-type::before, .postContent .customBlockquote > p:last-of-type::after, .archive__description p .customBlockquote > p:last-of-type::after {
  position: absolute;
  border-style: solid;
  content: "";
}
.postContent .customBlockquote > p:last-of-type::before, .archive__description p .customBlockquote > p:last-of-type::before {
  bottom: -20px;
  left: 50px;
  border-width: 20px 40px 0 0;
  border-color: #0D2A4A transparent transparent;
}
.postContent .customBlockquote > p:last-of-type::after, .archive__description p .customBlockquote > p:last-of-type::after {
  bottom: -17px;
  left: 52px;
  border-width: 18px 36px 0 0;
  border-color: #fff transparent transparent;
}
.postContent .customBlockquote--big, .archive__description p .customBlockquote--big {
  width: 100%;
  max-width: 807px;
}
.singlePost--withPostNavigation .postContent .customBlockquote--big, .singlePost--withPostNavigation .archive__description p .customBlockquote--big, .archive__description .singlePost--withPostNavigation p .customBlockquote--big {
  max-width: 704px;
}
.postContent .customBlockquote--big > p, .archive__description p .customBlockquote--big > p {
  font-size: 2.6rem;
  letter-spacing: 0.03px;
  line-height: 4.2rem;
}
@media (max-width: 767px) {
  .postContent .customBlockquote--big > p, .archive__description p .customBlockquote--big > p {
    font-size: 2rem;
    letter-spacing: 0.023rem;
    line-height: 3rem;
  }
}
@media (max-width: 479px) {
  .postContent .customBlockquote--big > p, .archive__description p .customBlockquote--big > p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
@media (min-width: 768px) {
  .postContent .customBlockquote--small, .archive__description p .customBlockquote--small {
    max-width: 355px;
    padding-right: 60px;
    float: left;
  }
}
@media (max-width: 767px) {
  .postContent .customBlockquote--small, .archive__description p .customBlockquote--small {
    font-size: 2rem;
    letter-spacing: 0.023rem;
    line-height: 3rem;
  }
}
@media (min-width: 1024px) {
  .postContent .customBlockquote--small, .archive__description p .customBlockquote--small {
    margin-left: -100px;
  }
}
.postContent .customBlockquote__author > p, .archive__description p .customBlockquote__author > p {
  margin-bottom: 0;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .postContent .customBlockquote__author--small, .archive__description p .customBlockquote__author--small {
    max-width: 355px;
    padding-right: 60px;
    float: left;
    clear: left;
  }
}
@media (min-width: 1024px) {
  .postContent .customBlockquote__author--small, .archive__description p .customBlockquote__author--small {
    margin-left: -100px;
  }
}
.postContent iframe, .archive__description p iframe {
  width: 100%;
}
@media (max-width: 1023px) {
  .postContent iframe, .archive__description p iframe {
    width: 100%;
  }
}
.postContent ul, .archive__description p ul,
.postContent ol,
.archive__description p ol {
  width: 100%;
  max-width: 807px;
  margin-bottom: 20px;
  padding-inline-start: 40px;
}
.singlePost--withPostNavigation .postContent ul, .singlePost--withPostNavigation .archive__description p ul, .archive__description .singlePost--withPostNavigation p ul,
.singlePost--withPostNavigation .postContent ol,
.singlePost--withPostNavigation .archive__description p ol,
.archive__description .singlePost--withPostNavigation p ol {
  max-width: 704px;
}
.postContent ul li, .archive__description p ul li,
.postContent ol li,
.archive__description p ol li {
  display: block;
  margin-top: 10px;
  color: #333333;
  line-height: 3.2rem;
}
@media (max-width: 767px) {
  .postContent ul li, .archive__description p ul li,
  .postContent ol li,
  .archive__description p ol li {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
@media (max-width: 479px) {
  .postContent ul li, .archive__description p ul li,
  .postContent ol li,
  .archive__description p ol li {
    margin-top: 6px;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
.postContent ol, .archive__description p ol {
  list-style-type: decimal;
}
.postContent ol li, .archive__description p ol li {
  display: list-item;
  padding-left: 5px;
}
.postContent ul li, .archive__description p ul li {
  position: relative;
}
.postContent ul li::before, .archive__description p ul li::before {
  display: inline-block;
  width: 2rem;
  color: #0C55A6;
  font-weight: bold;
  font-family: "icomoon";
  font-size: 0.5rem;
  content: "\E909";
  position: relative;
  top: -4px;
}
.postContent img, .archive__description p img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 25px 0;
}
@media (max-width: 1023px) {
  .postContent img, .archive__description p img {
    max-width: 100%;
    margin-left: 0;
  }
}
.postContent img.alignleft, .archive__description p img.alignleft {
  padding-right: 20px;
  float: left;
}
.postContent img.alignright, .archive__description p img.alignright {
  padding-left: 20px;
  float: right;
}
.postContent img.aligncenter, .archive__description p img.aligncenter {
  display: block;
  margin: 0 auto;
}
.postContent figure, .archive__description p figure {
  max-width: 803px;
  padding-bottom: 55px;
}
.postContent figure img, .archive__description p figure img {
  max-width: 100%;
  margin-left: 0;
}
.postContent figure figcaption, .archive__description p figure figcaption {
  padding: 0 100px 0 64px;
}
.postContent figure.alignleft, .archive__description p figure.alignleft {
  width: max(700px, 100%) !important;
  max-width: 100%;
  padding-right: 20px;
  float: left;
  text-align: left;
  /* >= Internet Explorer 9 */
}
@media screen and (min-width: 0\0 ) {
  .postContent figure.alignleft, .archive__description p figure.alignleft {
    display: block;
    float: none;
  }
}
.postContent figure.alignleft figcaption, .archive__description p figure.alignleft figcaption {
  text-align: left;
}
.postContent figure.alignright, .archive__description p figure.alignright {
  width: max(700px, 100%) !important;
  padding-left: 20px;
  float: right;
  text-align: right;
  /* >= Internet Explorer 9 */
}
@media screen and (min-width: 0\0 ) {
  .postContent figure.alignright, .archive__description p figure.alignright {
    display: block;
    float: none;
  }
}
.postContent figure.alignright figcaption, .archive__description p figure.alignright figcaption {
  text-align: right;
}
.postContent figure.aligncenter, .archive__description p figure.aligncenter {
  width: max(700px, 100%) !important;
  margin: 0 auto;
  text-align: center;
}
.postContent figcaption, .archive__description p figcaption {
  padding: 0 15px;
  color: #333333;
  font-size: 1.3rem;
  line-height: 1.8rem;
  text-align: center;
}
@media (max-width: 479px) {
  .postContent figcaption, .archive__description p figcaption {
    font-size: 1.2rem;
  }
}
.postContent .wp-video, .archive__description p .wp-video {
  width: 807px !important;
  margin: 0 auto 25px;
}
@media (max-width: 1023px) {
  .postContent .wp-video, .archive__description p .wp-video {
    max-width: 100% !important;
  }
}
.singlePost--withPostNavigation .postContent .wp-video, .singlePost--withPostNavigation .archive__description p .wp-video, .archive__description .singlePost--withPostNavigation p .wp-video {
  max-width: 704px;
}

.single-post .section.postFooter {
  display: none;
}

.embedContainer--video {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  max-width: 807px;
  margin: auto;
}
.embedContainer--video:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  visibility: hidden;
}
.embedContainer--video > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.singlePost--withPostNavigation .embedContainer--video {
  max-width: 704px;
}
.embedContainer .twitter-tweet {
  margin: 10px auto;
}

.iframe--flourish {
  padding: 0;
  margin: 0 -10.5px; /*Negate flourish padding*/
  border: 0;
  display: block;
  border: none;
  width: 1px;
  min-width: 100%;
  min-height: 570px;
}

.gallery {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  margin: 16px 0;
}
.gallery figure.gallery-item, .gallery-item {
  display: none;
  padding: 0;
}
.gallery figure.gallery-item.visible, .gallery-item.visible {
  display: flex;
  flex-direction: column;
}
.gallery figure.gallery-item img, .gallery-item img {
  padding: 0;
}
.gallery .gallery-icon {
  padding-bottom: 10px;
}
.gallery .gallery-icon a {
  cursor: default;
}
.gallery img {
  width: 100%;
}
.gallery figcaption {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  padding: 0 100px 0 64px;
  height: 74px;
}
.gallery__slideStatus {
  position: absolute;
  right: 60px;
  bottom: 30px;
  color: #291659;
  font-size: 1.3rem;
}
.gallery__control {
  position: absolute;
  bottom: 0;
  width: 46px;
  height: 74px;
  border: 1px solid #767676;
  background-color: transparent;
  color: #333333;
  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: "\E911";
}
.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: "\E91F";
}

.postSidebarNav {
  width: 210px;
  flex-shrink: 0;
  margin-right: 20px;
}
@media (max-width: 1023px) {
  .postSidebarNav {
    display: none;
  }
}
.postSidebarNav__share {
  display: block;
  flex-wrap: nowrap;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid #e3e3e3;
  font-size: 0;
  text-align: left;
}
.postSidebarNav__shareLabel {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  margin-right: 12px;
  padding-bottom: 2px;
}
.postSidebarNav__shareLinks {
  display: inline-block;
  vertical-align: middle;
  margin: -4px 0;
}
.postSidebarNav__links {
  padding-top: 85px;
}
.postSidebarNav__nav {
  padding-top: 85px;
  position: sticky;
  top: 0;
}

.postNav {
  display: block;
  padding-right: 10px;
  padding-left: 15px;
}
.postNav__navElement {
  position: relative;
  margin-top: 1.5rem;
  transition: opacity 0.3s;
  color: #333333;
  font-size: 1.2rem;
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400;
}
.postNav__navElement:hover {
  font-weight: 700;
}
.postNav__navElement.active {
  font-weight: 700;
}
.postNav__navElement.active: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: "\E909";
  display: block;
  font-size: 0.5rem;
  line-height: 1.5;
  color: #0C55A6;
  position: absolute;
  left: -15px;
  top: 4px;
}
.postNav__navElement > ul {
  padding-left: 30px;
}

.linkList {
  display: block;
  border: 1px solid #0D2A4A;
}
.linkList__title {
  background-color: #0D2A4A;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.2rem;
  padding: 6px 10px;
}
.linkList__items {
  display: block;
}
.linkList__item {
  display: block;
}
.linkList__item + .linkList__item {
  border-top: 1px solid #0D2A4A;
}
.linkList__link {
  position: relative;
  display: block;
  font-size: 1.6rem;
  line-height: 2rem;
  padding: 4px 10px;
  color: #0D2A4A;
  transition: color 0.3s;
  padding-left: 36px;
}
.linkList__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;
  content: "\E93A";
  display: block;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 16px;
  position: absolute;
  left: 10px;
  top: 6px;
}
.linkList__link:hover {
  color: #000;
}

.postSidebar {
  width: 299px;
  flex-shrink: 0;
  margin-bottom: 45px;
  margin-left: 20px;
}
section.singlePost--withCover .postSidebar {
  margin-top: 0;
  margin-bottom: auto;
}
@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 {
  overflow: hidden;
  background: #ccc;
  border-radius: 100%;
}
.postSidebar__thumbnail img {
  width: 100%;
  height: auto;
}
.postSidebar__thumbnail:not(:has(img))::after {
  display: block;
  font-family: "icomoon";
  content: "\E903";
  line-height: 30rem;
  font-size: 15rem;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .postSidebar__thumbnail:not(:has(img))::after {
    font-size: 15rem;
    line-height: 24.5rem;
  }
}
.postSidebar__sidebarPosition {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  text-align: center;
  padding-top: 8px;
}
.postSidebar__sidebarName {
  transition: color 0.3s;
  margin-top: 8px;
  font-size: 2.6rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3076923077;
  text-align: center;
}
.postSidebar__sidebarName:hover {
  text-decoration: underline;
}
.postSidebar__sidebarSocials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.postSidebar__sidebarSocials .button--social, .postSidebar__sidebarSocials .menuSocial a, .menuSocial .postSidebar__sidebarSocials a {
  margin: -50px 5px 0;
}
.postSidebar__sidebarSocials a {
  padding-top: 25px;
}
.postSidebar__sidebarInner {
  padding: 22px 26px 29px;
  background: none;
  text-align: center;
}

.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: 807px;
  }
  .singlePost--withPostNavigation .postTeilen {
    max-width: 704px;
  }
}
@media (max-width: 767px) {
  .postTeilen {
    top: -45px;
    right: 0;
  }
}
.postTeilen__teilenButton {
  margin-top: 0;
  margin-left: 10px;
  color: #333333;
  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: #333333;
  color: #0D2A4A;
}
.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: #0D2A4A;
}
.postTeilen__teilenSocial {
  display: flex;
  padding: 12px 20px 12px 60px;
}
.postTeilen__teilenSocial a {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 400;
}

.authorsList {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 40px;
  flex-direction: row;
}
.postContent .authorsList, .archive__description p .authorsList {
  max-width: 807px;
  margin: 3rem auto 0 auto;
}
.authorsList h2 {
  margin-top: 6rem;
}
.authorsList__item {
  text-align: center;
  box-sizing: border-box;
  flex: 0 0 calc((100% - 160px) / 3);
}
.authorsList__item figure.authorPhoto {
  display: block;
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .authorsList__item figure.authorPhoto {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 479px) {
  .authorsList__item figure.authorPhoto {
    width: 200px;
    height: 200px;
  }
}
.authorsList__item figure.authorPhoto > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0;
}
.authorsList__item figure.authorPhoto:not(:has(img)) {
  background: #ccc;
}
.authorsList__item figure.authorPhoto:not(:has(img)):after {
  font-family: "icomoon";
  content: "\E903";
  line-height: 20rem;
  font-size: 100px;
  color: #fff;
}
.authorsList__item .authorContact {
  font-size: 0;
  text-align: center;
}
.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 .authorLatestPost {
  margin: 20px 0;
  display: none;
}
.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 .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,
.authorsList__item .authorEmail,
.authorsList__item .authorSocial,
.authorsList__item .authorWeb,
.authorsList__item .authorProfile {
  display: inline-block;
  margin: 2px;
  font-size: 0;
  line-height: 1;
}
.authorsList__item .authorTel a,
.authorsList__item .authorEmail a,
.authorsList__item .authorSocial a,
.authorsList__item .authorWeb a,
.authorsList__item .authorProfile a {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  background-color: #0C55A6;
  transition: background-color #0C55A6;
}
.authorsList__item .authorTel a:hover,
.authorsList__item .authorEmail a:hover,
.authorsList__item .authorSocial a:hover,
.authorsList__item .authorWeb a:hover,
.authorsList__item .authorProfile a:hover {
  background-color: #093d76;
}
.authorsList__item .authorTel a::after,
.authorsList__item .authorTel a i::after,
.authorsList__item .authorEmail a::after,
.authorsList__item .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: "\E93D";
}
.authorsList__item .authorSocial a .icon-bluesky::after {
  content: "\E916";
}
.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: "\E90B";
}
.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;
}
.authorsList + .divider {
  padding: 2rem 0;
}
.authorsList + .divider hr {
  color: transparent;
  border-width: 1px;
  border-style: inset;
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
  margin-inline-start: auto;
  margin-inline-end: auto;
  overflow: hidden;
  display: none !important;
}

.authorDefaultList .blog-post-title {
  max-width: calc(100vw - 300px);
  margin: 0 -150px;
}
@media (max-width: 1023px) {
  .authorDefaultList .blog-post-title {
    max-width: 100%;
    margin: 0;
  }
}

.shortcode__authorlist {
  max-width: calc(100vw - 300px);
  margin: 0 -150px;
}
@media (max-width: 1023px) {
  .shortcode__authorlist {
    max-width: 100%;
    margin: 0;
  }
}
.shortcode__authorlist .col-md-6 {
  padding: 4rem 0 0;
  display: flex;
  flex-direction: column;
}
.shortcode__authorlist .col-md-6 .authorContact {
  flex: 1;
}

.news_columns {
  margin-top: 20px;
}
.news_columns__sectionTitle {
  margin-bottom: 45px;
}
.news_columns__columns {
  display: flex;
  margin: 0 -60px;
}
@media (max-width: 1279px) {
  .news_columns__columns {
    margin: 0 -40px;
  }
}
@media (max-width: 1023px) {
  .news_columns__columns {
    flex-direction: column;
    margin: 0;
  }
}
.news_columns__column {
  max-width: 340px;
  padding: 28px 30px 30px;
  border: #f4f4f4 1px solid;
  margin: 0 60px;
  flex-basis: 33.3333333333%;
  width: 33.3333333333%;
}
@media (max-width: 1279px) {
  .news_columns__column {
    margin: 0 40px;
  }
}
@media (max-width: 1023px) {
  .news_columns__column {
    max-width: none;
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 359px) {
  .news_columns__column {
    padding: 24px;
  }
}
@media (max-width: 1023px) {
  .news_columns__column + .news_columns__column {
    margin-left: 0;
    margin-top: 20px;
  }
}
.news_columns__title, .news_columns__sectionTitle {
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5;
}
.news_columns__link {
  margin-top: 30px;
}
.news_columns__link:after {
  content: "\E921";
}

.bstPublication {
  padding-top: 66px;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  font-weight: 400;
}
.bstPublication__header {
  font-weight: 700;
  margin-bottom: 5px;
}
.bstPublication__image {
  margin-bottom: 10px;
}
.bstPublication__image img {
  max-width: 100%;
}
.bstPublication__teaser {
  margin-bottom: 2.1rem;
}

.wpml-ls-legacy-list-horizontal ul {
  display: flex;
  color: #333333;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6rem;
}
.wpml-ls-legacy-list-horizontal ul li {
  position: relative;
}
.wpml-ls-legacy-list-horizontal ul li + li:before {
  content: "";
  display: flex;
  width: 1px;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: 10%;
  background: #333333;
}
.wpml-ls-legacy-list-horizontal ul li.wpml-ls-current-language {
  font-weight: 700;
}

.wpml-ls-first-item.wpml-ls-last-item {
  display: none !important;
}

.front--stage__figure {
  height: 100%;
}

.front--stage__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.front-stage__inner {
  height: 58rem;
}
@media (max-width: 767px) {
  .front-stage__inner {
    height: 42rem;
  }
}

.front--stage__content {
  position: relative;
  color: white;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: 100%;
  transform: translateY(-100%);
  width: 100rem;
}

.front-stage__content-inner {
  max-width: calc(100% - 4.8rem);
  flex-direction: row;
  position: absolute;
  width: 100%;
  bottom: 11rem;
}

.front--stage__headline {
  font-size: 6rem;
  margin: 0;
}
@media (max-width: 767px) {
  .front--stage__headline {
    font-size: 4rem;
  }
}

.front--stage__headline-kicker {
  font-size: 3rem;
  margin: 20px 0 30px 0;
}

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

body {
  background-color: #f3f7fb;
  font-family: "Lato", Lucida Grande, Tahoma, Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: red green;
}

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

[v-cloak] {
  display: none;
}

.bawpvc-ajax-counter {
  display: none;
}