@charset "UTF-8";
/*

A method of using psuedo elements to maintain an elements aspect ratio, even as it scales.
The mixin assumes you'll be nesting an <a> element inside your initial block that has a background image.

*/
@font-face {
  font-family: "MuseoSansRounded-100";
  src: url("../fonts/museo/museosansrounded-100-webfont.woff2") format("woff2"), url("../fonts/museo/museosansrounded-100-webfont.woff") format("woff");
}
@font-face {
  font-family: "MuseoSansRounded-300";
  src: url("../fonts/museo/museosansrounded-300-webfont.woff2") format("woff2"), url("../fonts/museo/museosansrounded-300-webfont.woff") format("woff");
}
@font-face {
  font-family: "MuseoSansRounded-500";
  src: url("../fonts/museo/museosansrounded-500-webfont.woff2") format("woff2"), url("../fonts/museo/museosansrounded-500-webfont.woff") format("woff");
}
@font-face {
  font-family: "MuseoSansRounded-700";
  src: url("../fonts/museo/museosansrounded-700-webfont.woff2") format("woff2"), url("../fonts/museo/museosansrounded-700-webfont.woff") format("woff");
}
@font-face {
  font-family: "MuseoSansRounded-900";
  src: url("../fonts/museo/museosansrounded-900-webfont.woff2") format("woff2"), url("../fonts/museo/museosansrounded-900-webfont.woff") format("woff");
}
@font-face {
  font-family: "MuseoSansRounded-1000";
  src: url("../fonts/museo/museosansrounded-1000-webfont.woff2") format("woff2"), url("../fonts/museo/museosansrounded-1000-webfont.woff") format("woff");
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%, 43%, 70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%, 43%, 70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%, 80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%, 80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  60%, 80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  60%, 80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
  }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    transform-origin: top left;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
  }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    transform-origin: top left;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%, to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%, to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

img {
  margin: 0;
  max-width: 100%;
  height: auto;
}

[class^=entry-content] .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
[class^=entry-content] .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
[class^=entry-content] figure {
  margin: 40px 0;
  padding: 0;
}
@media only screen and (max-width: 599px) {
  [class^=entry-content] figure {
    max-width: 100%;
  }
}
[class^=entry-content] figure img {
  max-width: 100%;
  height: auto;
}
[class^=entry-content] figure img.size-large {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 599px) {
  [class^=entry-content] figure.alignleft,
[class^=entry-content] figure.alignright {
    width: 100% !important;
  }
}
@media only screen and (min-width: 600px) {
  [class^=entry-content] figure.alignleft,
[class^=entry-content] figure.alignright {
    width: 100%;
  }
}
[class^=entry-content] figure.alignleft img,
[class^=entry-content] figure.alignright img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 599px) {
  [class^=entry-content] figure.alignleft img,
[class^=entry-content] figure.alignright img {
    width: 100%;
  }
}
[class^=entry-content] .alignleft, [class^=entry-content] img.alignleft {
  margin: 0 1em 1em 0;
  display: inline;
  float: left;
  height: auto;
}
[class^=entry-content] .alignright, [class^=entry-content] img.alignright {
  margin: 0 0 1em 1em;
  display: inline;
  float: right;
}
[class^=entry-content] .aligncenter, [class^=entry-content] img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
[class^=entry-content] .alignnone {
  position: relative;
  /*left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width:none;*/
  height: auto;
}
[class^=entry-content] .wp-caption {
  text-align: center;
  line-height: 0;
}
[class^=entry-content] .wp-caption.alignnone {
  left: 0;
  right: 0;
  width: 100% !important;
  margin: 0 auto;
}
[class^=entry-content] .wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}
[class^=entry-content] .wp-caption-text {
  font-family: "MuseoSansRounded-300", sans-serif;
  font-style: italic;
  max-width: 100%;
  line-height: 1.2;
  font-size: 14px;
  margin: 0 auto;
  padding: 8px 0 8px 0;
  text-align: left;
}
[class^=entry-content] .aligncenter .wp-caption-text,
[class^=entry-content] .alignleft .wp-caption-text,
[class^=entry-content] .alignright .wp-caption-text {
  padding: 8px 32px;
}
[class^=entry-content] .wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

[class^=entry-content].entry-content-gutenberg .wp-block-cover.alignleft, [class^=entry-content].entry-content-gutenberg .wp-block-cover.alignright {
  float: none;
  display: block;
}
[class^=entry-content].entry-content-gutenberg .wp-block-cover.alignleft {
  margin: 0 auto 0 0;
}
[class^=entry-content].entry-content-gutenberg .wp-block-cover.alignright {
  margin: 0 0 0 auto;
}

.slide-editor-on .video-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide-editor-on .video-container video {
  position: absolute;
  object-fit: cover;
  z-index: 1;
}

.compat-field-photo-credits span.alignleft {
  margin: 0;
}

.media-modal-content .attachments-browser .search {
  width: auto;
}

.wp-image-4591.alignnone,
.wp-image-4465.alignnone {
  height: auto;
}
@media only screen and (min-width: 900px) {
  .wp-image-4591.alignnone,
.wp-image-4465.alignnone {
    width: 992px !important;
    margin-left: -100px;
    left: 0px;
  }
}
@media only screen and (min-width: 1200px) {
  .wp-image-4591.alignnone,
.wp-image-4465.alignnone {
    width: 1280px !important;
    margin-left: -200px;
    left: -40px;
  }
}

.wp-image-4465 {
  display: none;
}
@media only screen and (min-width: 900px) {
  .wp-image-4465 {
    display: block;
  }
}

[data-tab-content=who-we-are] figure,
[data-tab-content=how-we-work] figure {
  display: none;
}
@media only screen and (min-width: 900px) {
  [data-tab-content=who-we-are] figure,
[data-tab-content=how-we-work] figure {
    display: block;
  }
}

.wp-video-shortcode {
  position: absolute;
}

.filter-button button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  cursor: pointer;
  background: transparent;
  font-size: 16px;
  padding: 0 0 8px 0;
  color: #666666;
}
.filter-button button:focus, .filter-button button:active {
  outline: none;
}
.filter-button.active button {
  font-family: "MuseoSansRounded-900", sans-serif;
  border-bottom: 3px solid #666666;
}

.link-button {
  display: inline-block;
  padding: 8px 16px;
  font-size: 1em;
  margin-top: 32px;
}
@media only screen and (min-width: 900px) {
  .link-button {
    font-size: 1.1em;
  }
}
.link-button.red-button {
  background-color: #D51317;
}
.link-button.ghost-button, .link-button.white-button {
  background-color: white;
}
.link-button.ghost-button a, .link-button.ghost-button i, .link-button.white-button a, .link-button.white-button i {
  color: #D51317;
}
.link-button a {
  text-decoration: none;
  color: white;
  font-family: "MuseoSansRounded-300", sans-serif;
}
.link-button a:after {
  content: "";
  background-image: url(../img/right-arrow.png);
  position: relative;
  top: 0;
  width: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

input[type=submit] {
  -webkit-appearance: none;
}

input[type=submit],
.btn-load-more,
.button-load-more {
  background-color: #D51317;
  color: white;
  display: inline-block;
  font-family: "MuseoSansRounded-500", sans-serif;
  padding: 16px;
  font-size: 16px;
  text-transform: none;
  text-decoration: none;
}

.slide-hero-red .link-button.ghost-button,
.slide-hero-red .link-button.white-button {
  background: transparent;
  position: relative;
}
.slide-hero-red .link-button.ghost-button a {
  color: white;
}
@media only screen and (min-width: 900px) {
  .slide-hero-red .link-button.ghost-button a {
    padding-right: 24px;
  }
}

.slide-hero-white .link-button .arrow-square-right {
  color: #D51317;
}

.slide-hero-red .link-button.ghost-button a,
.slide-hero-white .link-button.ghost-button a {
  text-transform: none;
  font-size: 1em;
  z-index: 1;
}
@media only screen and (min-width: 900px) {
  .slide-hero-red .link-button.ghost-button a,
.slide-hero-white .link-button.ghost-button a {
    font-size: 24px;
  }
}
.slide-hero-red .link-button.ghost-button a:after,
.slide-hero-white .link-button.ghost-button a:after {
  content: none;
}

.type-label {
  background: #D51317;
  color: white;
  padding: 4px 8px;
  display: inline-block;
}
.type-label a {
  color: white;
  text-decoration: none;
}

.card-link {
  font-family: "MuseoSansRounded-700", sans-serif;
  background: white;
  color: #D51317;
  padding: 8px 16px;
  text-decoration: none;
}
.card-link:after {
  content: "";
  background-image: url(../img/right-arrow.png);
  position: relative;
  top: 0;
  width: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

.button-donate {
  padding: 12px;
  font-family: "MuseoSansRounded-500", sans-serif;
  line-height: 20px;
  text-align: center;
  background-color: white;
  width: 100%;
  display: block;
  vertical-align: top;
  cursor: pointer;
  text-transform: uppercase;
}
.active .button-donate {
  font-family: "MuseoSansRounded-700", sans-serif;
  border: 2px solid #D51317;
  background-color: #fdf9f9 !important;
  margin: -2px 0;
}

.button-amount.active.active {
  font-family: "MuseoSansRounded-700", sans-serif;
  border: 2px solid #D51317;
  background-color: #fdf9f9 !important;
  margin: -2px 0;
}

input[type=submit].button-prev-next,
.button-prev-next {
  background: transparent;
  text-transform: uppercase;
  color: #D51317;
  border: 0 none;
  cursor: pointer;
  padding: 8px 4px;
  font-family: "MuseoSansRounded-700", sans-serif;
  display: inline-block;
  vertical-align: middle;
  width: auto !important;
  font-size: 1rem;
}
input[type=submit].button-prev-next.submit,
.button-prev-next.submit {
  background: #D51317;
  padding: 8px 16px;
  font-size: 1.25rem;
  line-height: inherit;
  color: white;
  text-transform: uppercase;
}

.next-icon:after,
.previous-icon:before {
  content: "";
  position: relative;
  top: 0;
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

.next-icon:after {
  background-image: url(../img/right-arrow.png);
}

.previous-icon:before {
  background-image: url(../img/right-arrow.png);
  transform: rotate(180deg);
  top: -1px;
}

.button-close {
  padding: 36px 20px;
  cursor: pointer;
  background: #D51317;
  color: white;
  position: relative;
}
.button-close span {
  bottom: -24px;
  left: 2px;
  position: relative;
}
.button-close:before, .button-close:after {
  background-color: white;
  content: "";
  position: absolute;
  height: 2px;
  width: 50%;
  top: 38%;
  left: 23px;
  margin-top: -1px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 599px) {
  .button-close:before, .button-close:after {
    top: 45%;
    left: 16px;
  }
}
.button-close:after {
  transform: rotate(-45deg);
}

.button-extend div {
  background: #D51317;
  padding: 8px 16px;
  color: white;
  font-family: "MuseoSansRounded-500", sans-serif;
  cursor: pointer;
  text-align: center;
}
.button-extend div .next-icon {
  color: white;
}
@media only screen and (max-width: 599px) {
  .button-extend div {
    font-size: 16px;
  }
}

@media only screen and (max-width: 599px) {
  .link-button a {
    font-family: "MuseoSansRounded-500", sans-serif;
  }
}

.navigation ul.list li.white-button > a {
  background-color: white;
  color: #D51317;
  padding: 8px 16px;
  font-family: "MuseoSansRounded-900", sans-serif;
}

.doner-button {
  background: #D51317;
  display: block;
  color: white;
  padding: 16px;
  width: max-content;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  font-family: "MuseoSansRounded-700", sans-serif;
}

.slide-hero-text-1 h1,
.page-title,
.entry-title,
.entry-content h1 {
  color: #D51317;
  font-family: "MuseoSansRounded-500", sans-serif;
  line-height: 1.1;
  font-size: 32px;
  margin: 0 0 16px;
}
@media only screen and (min-width: 900px) {
  .slide-hero-text-1 h1,
.page-title,
.entry-title,
.entry-content h1 {
    font-size: 3rem;
    margin: 32px auto 32px;
    line-height: 1.1;
  }
}

.slide-hero-text-1 h2, .slide-hero-text-1 h3, .slide-hero-text-1 h4 {
  color: #D51317;
}

@media only screen and (max-width: 599px) {
  .slide-hero-text-1 h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 599px) {
  .slide-hero-text-1 h1 {
    padding-top: 32px;
  }
}

@media only screen and (min-width: 900px) {
  .main-content .entry-title {
    margin: 32px 0;
  }
}

.focus-area .entry-title,
h1.entry-title-mobile {
  font-size: 24px;
  font-family: "MuseoSansRounded-300", sans-serif;
  display: block;
}
@media only screen and (min-width: 600px) {
  .focus-area .entry-title,
h1.entry-title-mobile {
    display: none;
  }
}

h1.entry-title-mobile.overview {
  margin-left: 16px;
}

.vacancy .type-title.no-image,
.contact .type-title.no-image {
  color: white;
  background-color: #D51317;
  display: inline-block;
  padding: 4px 8px;
  width: auto;
  left: 16px;
}
@media only screen and (max-width: 599px) {
  .vacancy .type-title.no-image,
.contact .type-title.no-image {
    top: 100px;
  }
}
@media only screen and (min-width: 600px) {
  .vacancy .type-title.no-image,
.contact .type-title.no-image {
    top: 134px;
  }
}

.type-title {
  font-family: "MuseoSansRounded-500", sans-serif;
  color: white;
  display: inline-block;
  padding: 0px 8px;
  text-transform: uppercase;
  line-height: 1.3;
  position: relative;
  font-size: 1.2em;
  margin: 0;
  left: 16px;
  z-index: 1;
}
@media only screen and (min-width: 900px) {
  .type-title {
    font-size: 2.5em;
  }
}
@media only screen and (min-width: 1200px) {
  .type-title {
    left: 0;
    font-size: 3em;
  }
}
.type-title.no-image {
  background-color: white;
  color: #D51317;
  text-transform: none;
  width: 100%;
}
.type-title span {
  padding: 2px;
  background-color: #D51317;
  box-shadow: 8px 0 0 #D51317, -8px 0 0 #D51317;
}

.entry-content .section-title,
.section-title {
  font-family: "MuseoSansRounded-500", sans-serif;
  color: #D51317;
  font-size: 2em;
  display: block;
  margin: 16px 0;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .entry-content .section-title,
.section-title {
    font-size: 3em;
    margin: 32px 0;
  }
}

body:not(.wp-admin) .widgettitle,
body:not(.wp-admin) .widget-title {
  font-size: 18px;
  font-family: "MuseoSansRounded-500", sans-serif;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}

.layover .widget-title {
  display: none;
}

.slide .slide-title {
  font-size: 1.5em;
  font-family: "MuseoSansRounded-100", sans-serif;
  font-weight: 100;
  color: #D51317;
}
.slide .slide-title a {
  text-decoration: none;
}
@media only screen and (min-width: 900px) {
  .slide .slide-title {
    font-size: 2.75em;
  }
}
.slide .slide-title strong {
  font-family: "MuseoSansRounded-500", sans-serif;
  line-height: 1.1;
}
@media only screen and (min-width: 1080px) {
  .slide .slide-title {
    font-size: 3em;
  }
}
.slide .slide-title-big {
  font-family: "MuseoSansRounded-700", sans-serif;
  line-height: 1.3;
  margin: 48px 0;
}
.slide .slide-title.invert {
  line-height: 1.3;
  margin-left: 16px;
}
.slide .slide-title.invert span {
  padding: 2px;
}
.slide .slide-title.invert-red {
  color: white;
}
.slide .slide-title.invert-white {
  color: #D51317;
}
.slide .call-box-content .title {
  text-transform: uppercase;
  color: #D51317;
}
.slide .text-container h1, .slide .text-container h2, .slide .text-container h3 {
  color: #D51317;
}
.slide.slide-hero-8 .slide-title.title-handwrite p,
.slide .title-handwrite {
  margin: 0;
  color: white;
  font-size: 80px;
  line-height: 1;
  font-family: "Kristi", cursive;
}
@media only screen and (min-width: 900px) {
  .slide.slide-hero-8 .slide-title.title-handwrite p,
.slide .title-handwrite {
    font-size: 180px;
  }
}
.slide.text-transparent .slide-title.red-transparent p, .slide.text-transparent .slide-title.invert-red p {
  font-family: "MuseoSansRounded-500", sans-serif;
}
@media only screen and (max-width: 599px) {
  .slide.text-transparent .slide-title.red-transparent p, .slide.text-transparent .slide-title.invert-red p {
    font-size: 20px;
    padding: 2px 8px;
  }
}
@media only screen and (min-width: 600px) {
  .slide.text-transparent .slide-title.red-transparent p, .slide.text-transparent .slide-title.invert-red p {
    font-size: 32px;
  }
}
@media only screen and (min-width: 900px) {
  .slide.text-transparent .slide-title.red-transparent p, .slide.text-transparent .slide-title.invert-red p {
    font-size: 80px;
  }
}
.slide.image-block .slide-title {
  font-family: "MuseoSansRounded-300", sans-serif;
}
.slide .slide-title.slide-title-big p {
  max-width: 100%;
  margin: 0 auto 4px;
  font-size: 32px;
}
@media only screen and (min-width: 900px) {
  .slide .slide-title.slide-title-big p {
    font-size: 96px;
  }
}
.slide.slide-hero-7 .slide-title {
  font-family: "MuseoSansRounded-100", sans-serif;
  text-transform: uppercase;
}
.slide.slide-hero-7 .slide-title p {
  line-height: 1;
}
@media only screen and (min-width: 900px) {
  .slide.slide-hero-7 .slide-title p {
    font-size: 96px;
  }
}
.slide.text-columns .text-title p {
  font-size: 32px;
  text-transform: uppercase;
  font-family: "MuseoSansRounded-100", sans-serif;
  line-height: 1;
}
@media only screen and (min-width: 900px) {
  .slide.text-columns .text-title p {
    font-size: 48px;
  }
}
.slide.text-columns .text-title strong {
  font-family: "MuseoSansRounded-500", sans-serif;
}

.entry-content h2.card-title,
.entry-content-program h2.card-title,
h2.card-title {
  font-family: "MuseoSansRounded-500", sans-serif;
  font-size: 1.05rem;
  color: #D51317;
  line-height: 1.3;
  margin: 0;
}
@media only screen and (max-width: 599px) {
  .entry-content h2.card-title,
.entry-content-program h2.card-title,
h2.card-title {
    font-size: 1rem;
    font-family: "MuseoSansRounded-500", sans-serif;
  }
}

.page-vacancies h2.card-title,
.page-vacantes h2.card-title,
[data-tab-content=vacantes] h2.card-title,
[data-tab-content=vacancies] h2.card-title {
  font-size: 2rem;
  line-height: 1.1;
  margin: 32px 0;
}
@media only screen and (max-width: 599px) {
  .page-vacancies h2.card-title,
.page-vacantes h2.card-title,
[data-tab-content=vacantes] h2.card-title,
[data-tab-content=vacancies] h2.card-title {
    font-size: 1.5rem;
    margin: 0 0 16px;
  }
}

/*.nav-tabs.nav-tabs-mobile h3 {
  margin: 0 0 8px;
  color: $color-red;
}*/
.tab-entry-content h2, .tab-entry-content h3, .tab-entry-content h4, .tab-entry-content h5,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content-program h2,
.entry-content-program h3,
.entry-content-program h4,
.entry-content-program h5 {
  font-family: "MuseoSansRounded-500", sans-serif;
  color: #D51317;
}
.tab-entry-content h2,
.entry-content h2,
.entry-content-program h2 {
  font-size: 1.25em;
  line-height: 1.5;
  margin: 0;
  -webkit-margin-after: 4px;
}
@media only screen and (min-width: 1024px) {
  .tab-entry-content h2,
.entry-content h2,
.entry-content-program h2 {
    font-size: 1.5em;
  }
}
.tab-entry-content h3,
.entry-content h3,
.entry-content-program h3 {
  font-size: 1.1em;
  margin: 0;
  line-height: 1.3;
}
.tab-entry-content h4,
.entry-content h4,
.entry-content-program h4 {
  font-size: 1em;
  margin: 0;
  line-height: 1.5;
}
.tab-entry-content h5,
.entry-content h5,
.entry-content-program h5 {
  font-size: 0.9em;
  margin: 0;
  line-height: 1.5;
}

.type-focus-area.focus-area .entry-title.card-title {
  display: block;
}

.programme-meta-title {
  color: white;
  font-size: 1.5em;
  font-family: "MuseoSansRounded-300", sans-serif;
  margin-bottom: 16px;
  line-height: 1;
  display: inline-block;
}
@media only screen and (max-width: 599px) {
  .programme-meta-title {
    margin-bottom: 32px;
    font-size: 24px;
  }
}

.section-white .programme-meta-title {
  color: #D51317;
}

.entry-title {
  max-width: 824px;
}

.call-box-content h1, .call-box-content h2, .call-box-content h3, .call-box-content h4 {
  font-family: "MuseoSansRounded-100", sans-serif;
  color: #D51317;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 24px;
}

.slide-hero-text-1 h3 {
  font-size: 24px;
  margin: 0 0 1em 0;
  letter-spacing: 0.5px;
  font-weight: normal;
}

body {
  color: black;
  font-family: "MuseoSansRounded-300", sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

p {
  margin: 0 0 1em 0;
  letter-spacing: 0.5px;
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (min-width: 600px) {
  p {
    font-size: 1.1rem;
  }
}

[class^=entry-content] {
  line-height: 1.5;
}
@media only screen and (min-width: 1024px) {
  [class^=entry-content] {
    font-size: 1.1rem;
  }
}
[class^=entry-content] strong {
  font-family: "MuseoSansRounded-700", sans-serif;
}
[class^=entry-content] li {
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (min-width: 600px) {
  [class^=entry-content] li {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 599px) {
  [class^=entry-content] iframe {
    max-width: 100%;
  }
}

strong {
  font-family: "MuseoSansRounded-700", sans-serif;
}

.tab-entry-content .introduction p,
[class^=entry-content] .introduction p {
  font-size: 18px;
}
@media only screen and (min-width: 900px) {
  .tab-entry-content .introduction p,
[class^=entry-content] .introduction p {
    font-size: 24px;
  }
}

.section-red a {
  color: white;
  text-decoration: underline;
  font-family: "MuseoSansRounded-500", sans-serif;
  display: block;
}
.section-red a[target=_blank]:after {
  margin: 0px 0px 0 4px;
  color: white;
  width: 16px;
  height: 16px;
  background-image: url("../../assets/img/icon-external.svg");
  background-size: 16px 16px;
  display: inline-block;
  content: " ";
  top: 4px;
  position: relative;
}

[class^=entry-content] .news-source {
  background-color: #D8D7D8;
  padding: 16px;
  margin-bottom: 16px;
}

[class^=entry-content] ul,
.tabs-content [class^=entry-content] ul {
  list-style-type: disc;
}

[class^=entry-content] ul,
[class^=entry-content] ol,
.main-content [class^=entry-content] ul {
  padding: 1em 0 1em 1em;
}

@media only screen and (min-width: 900px) {
  [class^=entry-content] ul.sub-tabs-content,
[class^=entry-content] ul.grid {
    padding-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  [class^=entry-content] ul.sub-tabs-content,
[class^=entry-content] ul.grid {
    padding: 0;
    margin: 0;
    width: auto;
  }
}

[class^=entry-content] .sub-tabs-content .active-tab {
  list-style-type: none;
}

.related-list-class, .related-list-class-all {
  display: flex;
  list-style-type: none;
}

.related-list-class, .related-list-class-all {
  text-align: center;
}

.card-head {
  background-color: black;
  color: white;
}

.pattern-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  display: none;
  top: 0;
  left: 0;
  z-index: 1;
}

.pattern-overlay.pattern-visible {
  display: block;
}

.slide.bk-effect-ken-burn .wbb-hero-bg {
  width: 100%;
  animation: move 40s ease !important;
  background-size: cover !important;
  /* Add infinite to loop. */
  background-position: center center;
  -ms-animation: move 60s ease;
  -webkit-animation: move 60s ease;
  -o-animation: move 60s ease;
  -moz-animation: move 60s ease;
  position: absolute;
}

@-webkit-keyframes move {
  from {
    transform: scale(1);
    -ms-transform: scale(1);
    /* IE 9 */
    -webkit-transform: scale(1);
    /* Safari and Chrome */
    -moz-transform: scale(1);
    /* Firefox */
  }
  to {
    transform: scale(1.5);
    -ms-transform: scale(1.5);
    /* IE 9 */
    -webkit-transform: scale(1.5);
    /* Safari and Chrome */
    -moz-transform: scale(1.5);
    /* Firefox */
  }
}
@media only screen and (min-width: 320px) {
  .slide-editor-on .bk-effect-parallax {
    left: 0;
    transform: none;
    width: 100% !important;
  }
  .slide-editor-on .bk-effect-parallax .wbb-hero-bg {
    background-position: center center !important;
  }
}
@media only screen and (min-width: 1280px) {
  .bk-effect-parallax .wbb-hero-bg {
    background-position: center;
  }
}
hr {
  border-bottom: 1px solid #D51317;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.list-unstyled,
.entry-content .grid.list-unstyled {
  list-style-type: none;
}

/* =WordPress Core
-------------------------------------------------------------- */
article a {
  color: #D51317;
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.hidden {
  display: none;
}

strong {
  font-family: "MuseoSansRounded-500", sans-serif;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  font-size: 16px;
}

.page-container .sub-nav-tabs {
  display: block;
}
@media only screen and (max-width: 599px) {
  .page-container .sub-nav-tabs {
    display: none;
  }
}

a.nav-tab,
button.nav-tab {
  text-decoration: none;
  display: inline-block;
  padding: 11px;
  background: white;
  color: #D51317;
  font-size: 1em;
  text-transform: uppercase;
  font-family: "MuseoSansRounded-500", sans-serif;
  cursor: pointer;
  line-height: 24px;
}
a.nav-tab.is-active,
button.nav-tab.is-active {
  background-color: #D51317;
  border: 0;
  color: white;
}

button.nav-tab.is-active + .sub-nav-tabs {
  display: block;
  position: absolute;
  top: 30px;
  right: 0;
  width: 100%;
  padding: 0;
}
button.nav-tab.is-active + .sub-nav-tabs .sub-nav-wrap {
  padding: 16px 0;
}

a.sub-nav-tab,
button.sub-nav-tab {
  text-decoration: none;
  color: #666666;
  text-transform: none;
  font-size: 0.9em;
  padding: 0 0 4px 0;
  margin-right: 16px;
}
a.sub-nav-tab.is-active,
button.sub-nav-tab.is-active {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom-color: #666666;
  border-bottom-width: 3px;
  font-family: "MuseoSansRounded-700", sans-serif;
  background-color: transparent;
  border-style: solid;
}

.filter-button button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  cursor: pointer;
  background: transparent;
  font-size: 16px;
  padding: 0 0 8px 0;
  color: #666666;
}
.filter-button button:focus, .filter-button button:active {
  outline: none;
}
.filter-button.active button {
  font-family: "MuseoSansRounded-900", sans-serif;
  border-bottom: 3px solid #666666;
}

.link-button {
  display: inline-block;
  padding: 8px 16px;
  font-size: 1em;
  margin-top: 32px;
}
@media only screen and (min-width: 900px) {
  .link-button {
    font-size: 1.1em;
  }
}
.link-button.red-button {
  background-color: #D51317;
}
.link-button.ghost-button, .link-button.white-button {
  background-color: white;
}
.link-button.ghost-button a, .link-button.ghost-button i, .link-button.white-button a, .link-button.white-button i {
  color: #D51317;
}
.link-button a {
  text-decoration: none;
  color: white;
  font-family: "MuseoSansRounded-300", sans-serif;
}
.link-button a:after {
  content: "";
  background-image: url(../img/right-arrow.png);
  position: relative;
  top: 0;
  width: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

input[type=submit] {
  -webkit-appearance: none;
}

input[type=submit],
.btn-load-more,
.button-load-more {
  background-color: #D51317;
  color: white;
  display: inline-block;
  font-family: "MuseoSansRounded-500", sans-serif;
  padding: 16px;
  font-size: 16px;
  text-transform: none;
  text-decoration: none;
}

.slide-hero-red .link-button.ghost-button,
.slide-hero-red .link-button.white-button {
  background: transparent;
  position: relative;
}
.slide-hero-red .link-button.ghost-button a {
  color: white;
}
@media only screen and (min-width: 900px) {
  .slide-hero-red .link-button.ghost-button a {
    padding-right: 24px;
  }
}

.slide-hero-white .link-button .arrow-square-right {
  color: #D51317;
}

.slide-hero-red .link-button.ghost-button a,
.slide-hero-white .link-button.ghost-button a {
  text-transform: none;
  font-size: 1em;
  z-index: 1;
}
@media only screen and (min-width: 900px) {
  .slide-hero-red .link-button.ghost-button a,
.slide-hero-white .link-button.ghost-button a {
    font-size: 24px;
  }
}
.slide-hero-red .link-button.ghost-button a:after,
.slide-hero-white .link-button.ghost-button a:after {
  content: none;
}

.type-label {
  background: #D51317;
  color: white;
  padding: 4px 8px;
  display: inline-block;
}
.type-label a {
  color: white;
  text-decoration: none;
}

.card-link {
  font-family: "MuseoSansRounded-700", sans-serif;
  background: white;
  color: #D51317;
  padding: 8px 16px;
  text-decoration: none;
}
.card-link:after {
  content: "";
  background-image: url(../img/right-arrow.png);
  position: relative;
  top: 0;
  width: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

.button-donate {
  padding: 12px;
  font-family: "MuseoSansRounded-500", sans-serif;
  line-height: 20px;
  text-align: center;
  background-color: white;
  width: 100%;
  display: block;
  vertical-align: top;
  cursor: pointer;
  text-transform: uppercase;
}
.active .button-donate {
  font-family: "MuseoSansRounded-700", sans-serif;
  border: 2px solid #D51317;
  background-color: #fdf9f9 !important;
  margin: -2px 0;
}

.button-amount.active.active {
  font-family: "MuseoSansRounded-700", sans-serif;
  border: 2px solid #D51317;
  background-color: #fdf9f9 !important;
  margin: -2px 0;
}

input[type=submit].button-prev-next,
.button-prev-next {
  background: transparent;
  text-transform: uppercase;
  color: #D51317;
  border: 0 none;
  cursor: pointer;
  padding: 8px 4px;
  font-family: "MuseoSansRounded-700", sans-serif;
  display: inline-block;
  vertical-align: middle;
  width: auto !important;
  font-size: 1rem;
}
input[type=submit].button-prev-next.submit,
.button-prev-next.submit {
  background: #D51317;
  padding: 8px 16px;
  font-size: 1.25rem;
  line-height: inherit;
  color: white;
  text-transform: uppercase;
}

.next-icon:after,
.previous-icon:before {
  content: "";
  position: relative;
  top: 0;
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

.next-icon:after {
  background-image: url(../img/right-arrow.png);
}

.previous-icon:before {
  background-image: url(../img/right-arrow.png);
  transform: rotate(180deg);
  top: -1px;
}

.button-close {
  padding: 36px 20px;
  cursor: pointer;
  background: #D51317;
  color: white;
  position: relative;
}
.button-close span {
  bottom: -24px;
  left: 2px;
  position: relative;
}
.button-close:before, .button-close:after {
  background-color: white;
  content: "";
  position: absolute;
  height: 2px;
  width: 50%;
  top: 38%;
  left: 23px;
  margin-top: -1px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 599px) {
  .button-close:before, .button-close:after {
    top: 45%;
    left: 16px;
  }
}
.button-close:after {
  transform: rotate(-45deg);
}

.button-extend div {
  background: #D51317;
  padding: 8px 16px;
  color: white;
  font-family: "MuseoSansRounded-500", sans-serif;
  cursor: pointer;
  text-align: center;
}
.button-extend div .next-icon {
  color: white;
}
@media only screen and (max-width: 599px) {
  .button-extend div {
    font-size: 16px;
  }
}

@media only screen and (max-width: 599px) {
  .link-button a {
    font-family: "MuseoSansRounded-500", sans-serif;
  }
}

.navigation ul.list li.white-button > a {
  background-color: white;
  color: #D51317;
  padding: 8px 16px;
  font-family: "MuseoSansRounded-900", sans-serif;
}

.doner-button {
  background: #D51317;
  display: block;
  color: white;
  padding: 16px;
  width: max-content;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  font-family: "MuseoSansRounded-700", sans-serif;
}

blockquote {
  margin: 0;
}
@media only screen and (min-width: 600px) {
  blockquote {
    margin: 0 40px;
  }
}

blockquote:not(.small-quote) p {
  font-family: "MuseoSansRounded-300", sans-serif;
  color: #D51317;
  font-size: 1.5rem;
  text-align: center;
  padding: 24px 32px;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: #D51317;
  line-height: 1.5;
  position: relative;
}
@media only screen and (min-width: 600px) {
  blockquote:not(.small-quote) p {
    max-width: 80%;
    margin: 64px auto 1em;
    font-size: 1.8rem;
  }
}
blockquote:not(.small-quote) p:before, blockquote:not(.small-quote) p:after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
}
blockquote:not(.small-quote) p:before {
  background-image: url(../img/left-quote.svg);
  left: 0;
  line-height: 1;
}
blockquote:not(.small-quote) p:after {
  background-image: url(../img/right-quote.svg);
  bottom: 32px;
  right: 0;
  line-height: 0.8;
}

.entry-content .small-quote {
  padding: 0;
  margin: 32px 0;
}
@media only screen and (min-width: 900px) {
  .entry-content .small-quote {
    margin-left: 32px;
  }
}
.entry-content .small-quote p {
  position: relative;
  font-weight: 900;
  color: #D51317;
  max-width: 90%;
  padding: 0 0 0 16px;
  font-size: 1.1rem;
  line-height: 1.5;
}
.entry-content .small-quote p:before {
  content: "";
  display: block;
  width: 2px;
  position: absolute;
  top: 12px;
  left: 0;
  height: calc(100% - 20px);
  background: #D51317;
}

body:not(.wp-admin) input[type=text],
body:not(.wp-admin) input[type=number],
body:not(.wp-admin) input[type=email],
body.wp-admin.block-editable-page input[type=text],
body.wp-admin.block-editable-page input[type=number],
body.wp-admin.block-editable-page input[type=email] {
  border: 0;
  border-radius: 0;
  font-size: 1rem;
  text-align: left;
  line-height: inherit;
  padding: 12px;
  font-family: "MuseoSansRounded-500", sans-serif;
  line-height: 20px;
  background-color: white;
  width: 100%;
  display: block;
  vertical-align: top;
  cursor: pointer;
  position: relative;
  top: 2px;
  margin: 0;
}
body:not(.wp-admin) input[type=text]::placeholder,
body:not(.wp-admin) input[type=number]::placeholder,
body:not(.wp-admin) input[type=email]::placeholder,
body.wp-admin.block-editable-page input[type=text]::placeholder,
body.wp-admin.block-editable-page input[type=number]::placeholder,
body.wp-admin.block-editable-page input[type=email]::placeholder {
  font-size: 16px;
  line-height: 1;
  color: #D51317;
  font-family: "MuseoSansRounded-500", sans-serif;
  opacity: 1;
  text-transform: uppercase;
}
body:not(.wp-admin) input[type=text]:focus::-webkit-input-placeholder,
body:not(.wp-admin) input[type=number]:focus::-webkit-input-placeholder,
body:not(.wp-admin) input[type=email]:focus::-webkit-input-placeholder,
body.wp-admin.block-editable-page input[type=text]:focus::-webkit-input-placeholder,
body.wp-admin.block-editable-page input[type=number]:focus::-webkit-input-placeholder,
body.wp-admin.block-editable-page input[type=email]:focus::-webkit-input-placeholder {
  color: transparent;
}
body:not(.wp-admin) input[type=text].input-disabeled,
body:not(.wp-admin) input[type=number].input-disabeled,
body:not(.wp-admin) input[type=email].input-disabeled,
body.wp-admin.block-editable-page input[type=text].input-disabeled,
body.wp-admin.block-editable-page input[type=number].input-disabeled,
body.wp-admin.block-editable-page input[type=email].input-disabeled {
  background-color: #cccccc;
  color: black;
}

body:not(.wp-admin) label {
  display: block;
  padding-left: 15px;
  text-indent: -15px;
  color: black;
}
body:not(.wp-admin) input[type=checkbox] {
  display: inline-block;
  width: 24px;
  margin: 0;
}

.checkbox-text {
  position: relative;
  padding-left: 26px;
  text-indent: 0;
}
.checkbox-text input {
  position: absolute;
  top: 2px;
  left: 0;
}

.site-logo {
  width: 128px;
  position: absolute;
  left: 16px;
  transition: opacity 0.4s ease;
}
@media only screen and (min-width: 1024px) {
  .site-logo {
    width: 140px;
  }
}
@media only screen and (min-width: 1366px) {
  .site-logo {
    width: 150px;
  }
}
.site-logo img {
  display: block;
  width: 100%;
}
@media print {
  .site-logo {
    display: none;
  }
}
.site-logo .site-region {
  background-color: white;
  color: #D51317;
  text-transform: uppercase;
  text-align: center;
  font-family: "MuseoSansRounded-500", sans-serif;
}

.header-down .site-logo {
  opacity: 1;
}

.header-up .site-logo {
  opacity: 0;
}

@media only screen and (max-width: 599px) {
  .footer .site-logo {
    display: none;
  }
}

.hivos-global .site-logo .site-region {
  display: none;
}

button.search {
  display: none;
}
@media only screen and (min-width: 900px) {
  button.search {
    display: block;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 1;
  }
}

button {
  -webkit-appearance: none;
  border: 0;
  background: transparent;
}
button:focus, button:active {
  outline: none;
}

.mgfy {
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border: 0.07em solid white;
  position: relative;
  border-radius: 0.35em;
}
@media only screen and (min-width: 320px) {
  .mgfy {
    font-size: 3em;
  }
}
@media only screen and (min-width: 992px) {
  .mgfy {
    font-size: 4em;
  }
}
.mgfy:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -0.2em;
  bottom: -0.1em;
  border-width: 0;
  background: #ffffff;
  width: 0.25em;
  height: 0.07em;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}
.mgfy:hover {
  cursor: pointer;
}

.filter-search {
  position: relative;
  display: inline;
}
.filter-search .mgfy {
  position: absolute;
  top: 6px;
  right: 8px;
  border-color: #D8D7D8;
  font-size: 2em;
}
.filter-search .mgfy:after {
  background: #D8D7D8;
}

.search-container .mgfy {
  text-indent: -9999px;
}
@media only screen and (min-width: 320px) {
  .search-container .mgfy {
    font-size: 4em;
  }
}
@media only screen and (min-width: 992px) {
  .search-container .mgfy {
    font-size: 6em;
  }
}

.McButton {
  position: absolute;
  top: 26px;
  right: 0px;
  margin-left: 8px;
  width: 12px;
  height: 10px;
  cursor: pointer;
  z-index: 2;
}
.McButton.active b {
  background-color: white;
}
.McButton b {
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: white;
}
.McButton b:nth-child(1) {
  top: 0;
}
.McButton b:nth-child(2) {
  top: 50%;
}
.McButton b:nth-child(3) {
  top: 100%;
}

.search-mobile .search {
  position: absolute;
  right: 6px;
  top: 30px;
  display: inline-block;
}
@media only screen and (max-width: 599px) {
  .search-mobile .search {
    top: 62px;
  }
}

.close-thin {
  position: fixed;
  right: 16px;
  color: #ffffff;
  font: 32px/100% arial, sans-serif;
  text-decoration: none;
  padding: 8px;
  width: 32px;
  height: 32px;
}
@media only screen and (min-width: 320px) {
  .close-thin {
    top: 64px;
  }
}
@media only screen and (min-width: 992px) {
  .close-thin {
    top: 32px;
  }
}
.close-thin b {
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  background: #ffffff;
  top: 50%;
}
.close-thin b:nth-child(1) {
  transform: rotate(45deg);
}
.close-thin b:nth-child(2) {
  transform: rotate(-45deg);
}
.close-thin:hover {
  cursor: pointer;
}

.drop-toggle {
  position: absolute;
  top: 16px;
  right: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #666;
  box-sizing: border-box;
  transition: transform 0.4s ease;
  width: 7px;
  height: 7px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  margin: 0;
  transform: rotate(135deg);
}
.drop-toggle:after, .drop-toggle:before {
  content: "";
  box-sizing: border-box;
}
.drop-toggle:before {
  right: 0;
  top: -1px;
  position: absolute;
  height: 1px;
  box-shadow: inset 0 0 0 32px;
  transform: rotate(-45deg);
  width: 10px;
  transform-origin: right top;
}

.cool-dropdowns.active .drop-toggle {
  transform: rotate(-45deg);
  color: #D51317;
}

[class*=button] [class*=arrow-square] {
  width: 10px;
  height: 10px;
}
[class*=button] [class*=arrow-square]:before {
  width: 13px;
}

[class*=arrow] {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: white;
  box-sizing: border-box;
}
[class*=arrow]:after, [class*=arrow]:before {
  content: "";
  box-sizing: border-box;
}

[class*=arrow-square] {
  width: 20px;
  height: 20px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  margin: 10px;
}
[class*=arrow-square]:before {
  right: 0;
  top: -2px;
  position: absolute;
  height: 2px;
  box-shadow: inset 0 0 0 32px;
  transform: rotate(-45deg);
  width: 23px;
  transform-origin: right top;
}
[class*=arrow-square][class*=-up] {
  transform: rotate(-45deg);
}
[class*=arrow-square][class*=-right] {
  transform: rotate(45deg);
}
[class*=arrow-square][class*=-right][class*=-down] {
  transform: rotate(90deg);
}

.slide-hero-red [class*=arrow-square] {
  width: 10px;
  height: 10px;
  position: relative;
  top: -2px;
  left: 0;
}
.slide-hero-red [class*=arrow-square]:before {
  width: 13px;
}

.loading-layer {
  position: fixed;
  z-index: -100;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: none;
  background-color: white;
}
.loading-layer img {
  margin: 50vh auto;
  max-width: 60px;
}

.dashicons-arrow-left:before {
  content: "" !important;
  color: black;
}

.dashicons-arrow-right:before {
  content: "" !important;
  color: black;
}

.block-editor strong {
  font-family: "MuseoSansRounded-700", sans-serif;
}
.block-editor .wp-block[data-align=wide] {
  max-width: 1280px;
}
.block-editor .wp-block[data-align=full] {
  max-width: none;
}
.block-editor .wp-block[data-type="cgb/featured-posts"] {
  max-width: none;
}
.block-editor .wp-block-cover {
  height: auto;
  width: 100%;
}
.block-editor .hivos-text-block .wp-block-pullquote {
  border: 0;
  padding: 0;
}
.block-editor .hivos-text-block .wp-block-buttons,
.block-editor .hivos-text-block .wp-block-button,
.block-editor .hivos-text-block .wp-block-button__link {
  margin: 0;
}
.block-editor .block-editor-block-list__layout.is-root-container > .block-editor-block-list__block {
  margin: 0 auto;
}
.block-editor blockquote:not(.has-text-color) p {
  font-family: "MuseoSansRounded-300", sans-serif;
  color: #D51317;
  font-size: 1.5em;
  text-align: center;
  padding: 24px 32px;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: #D51317;
  line-height: 1.5;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .block-editor blockquote:not(.has-text-color) p {
    max-width: 80%;
    margin: 64px auto;
    font-size: 3rem;
  }
}
.block-editor blockquote:not(.has-text-color) p:before, .block-editor blockquote:not(.has-text-color) p:after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
}
.block-editor blockquote:not(.has-text-color) p:before {
  background-image: url(../img/left-quote.svg);
  left: 0;
  line-height: 1;
}
.block-editor blockquote:not(.has-text-color) p:after {
  background-image: url(../img/right-quote.svg);
  bottom: 32px;
  right: 0;
  line-height: 0.8;
}

.wp-block-quote {
  margin: 2.5rem auto;
}
.wp-block-quote.is-style-large p {
  font-size: 3rem;
  margin: 0 auto 1rem;
  max-width: 100%;
}

.wp-block-cover .wp-block-cover__inner-container h1 {
  color: #D51317;
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0 0 1rem 0;
}

.wp-block-pullquote.is-style-solid-color.has-color-red-background-color {
  background-color: #D51317;
}
.wp-block-pullquote.is-style-solid-color.has-color-red-background-color blockquote {
  max-width: 900px;
  padding: 5rem 0;
}
.wp-block-pullquote.is-style-solid-color.has-color-red-background-color blockquote p {
  color: inherit;
}
.wp-block-pullquote.is-style-solid-color.alignfull p {
  font-size: 3rem;
}

.wp-block-pullquote blockquote {
  max-width: 900px;
  margin: 0 auto;
}
.wp-block-pullquote blockquote p {
  font-size: 3rem;
  max-width: 100%;
}
.wp-block-pullquote blockquote p:before, .wp-block-pullquote blockquote p:after {
  background-image: none;
}
.wp-block-pullquote cite {
  font-size: 0.9rem;
  font-family: "MuseoSansRounded-300", sans-serif;
  font-style: italic;
}

.entry-content-gutenberg > :not(.aws-pattern):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
.post-header,
.post-meta {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
@media only screen and (min-width: 1280px) {
  .entry-content-gutenberg > :not(.aws-pattern):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
.post-header,
.post-meta {
    padding: 0;
  }
}

.entry-content-gutenberg .has-hivos-white-background-color {
  background: white;
}
.entry-content-gutenberg .has-hivos-white-background-color blockquote p {
  color: #D51317;
}
.entry-content-gutenberg .has-hivos-white-background-color .wp-block-button__link {
  color: #D51317;
}
.entry-content-gutenberg .has-hivos-white-background-color .wp-block-button__link:after {
  background-color: #D51317;
}
.entry-content-gutenberg .has-hivos-red-background-color {
  background: #D51317;
}
.entry-content-gutenberg .has-hivos-red-background-color blockquote p {
  color: white;
}
.entry-content-gutenberg .has-hivos-red-background-color .wp-block-button__link {
  color: white;
}
.entry-content-gutenberg .has-hivos-red-background-color .wp-block-button__link:after {
  background-color: white;
}
.entry-content-gutenberg .has-hivos-red-color {
  color: #D51317;
}
.entry-content-gutenberg .has-hivos-white-color {
  color: white;
}
.entry-content-gutenberg .blocks-gallery-grid {
  padding: 0;
}
.entry-content-gutenberg figure {
  margin-left: auto;
  margin-right: auto;
}

.alignwide {
  max-width: 1280px;
  margin: 2.5rem auto;
}

.alignfull {
  max-width: 100vw;
  margin: 5rem 0;
}

p {
  margin-bottom: 1rem;
}
p.has-medium-font-size {
  font-size: 1.5rem;
}

h2 {
  margin-bottom: 0.25rem;
}

.blocks-gallery-grid .blocks-gallery-item cite,
.blocks-gallery-grid .blocks-gallery-item figcaption {
  font-family: "MuseoSansRounded-300", sans-serif;
  font-style: italic;
  max-width: 100%;
  line-height: 1.2;
  font-size: 0.9rem;
  text-align: left;
}

cite,
figcaption {
  font-family: "MuseoSansRounded-300", sans-serif;
  font-style: italic;
  max-width: 100%;
  line-height: 1.2;
  font-size: 0.9rem;
  text-align: left;
}

[class^=entry-content] ul.awesome-accordion,
.awesome-accordion {
  list-style-type: none;
  padding: 8px 0 16px;
}
[class^=entry-content] ul.awesome-accordion .awesome-accordion-item .awesome-accordion-heading:before, [class^=entry-content] ul.awesome-accordion .awesome-accordion-item.closed .awesome-accordion-heading:before,
.awesome-accordion .awesome-accordion-item .awesome-accordion-heading:before,
.awesome-accordion .awesome-accordion-item.closed .awesome-accordion-heading:before {
  color: #D51317;
}
[class^=entry-content] ul.awesome-accordion .awesome-accordion-btn,
.awesome-accordion .awesome-accordion-btn {
  font-family: "MuseoSansRounded-500", sans-serif;
  color: #D51317;
  border-color: #D51317;
}
[class^=entry-content] ul.awesome-accordion .awesome-accordion-btn:hover, [class^=entry-content] ul.awesome-accordion .awesome-accordion-btn:focus,
.awesome-accordion .awesome-accordion-btn:hover,
.awesome-accordion .awesome-accordion-btn:focus {
  color: #D51317;
  border-color: #D51317;
}

.header .navigation {
  display: none;
}
@media only screen and (min-width: 900px) {
  .header .navigation {
    display: inline-block;
  }
}

.navigation {
  vertical-align: top;
}
@media only screen and (min-width: 320px) {
  .navigation {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .navigation {
    display: inline-block;
  }
}
.navigation ul.list {
  list-style-type: none;
  margin: 0;
  padding: 20.5px 0;
}
.navigation ul.list li {
  display: inline;
  position: relative;
  margin-left: 16px;
}
@media only screen and (min-width: 900px) {
  .navigation ul.list li {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 1200px) {
  .navigation ul.list li {
    margin-right: 48px;
  }
}
.navigation ul.list li:first-child {
  margin-left: 0;
}
.navigation ul.list li > a {
  font-size: 16px;
  font-family: "MuseoSansRounded-500", sans-serif;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}
@media only screen and (min-width: 900px) {
  .navigation ul.list li > a {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .america-latina .navigation ul.list li {
    margin-right: 24px;
  }
}

@media only screen and (min-width: 900px) {
  .navigation {
    margin-left: 180px;
  }
}
@media only screen and (min-width: 1200px) {
  .navigation {
    margin-left: 232px;
  }
}

.navigation ul.list {
  position: relative;
}
.navigation ul.list li {
  display: inline-block;
}
.navigation ul.list .sub-menu {
  position: absolute;
  margin-top: 16px;
  padding-left: 0;
  width: 275px;
}
@media only screen and (max-width: 1200px) {
  .navigation ul.list .sub-menu {
    width: auto;
  }
}
.navigation ul.list .sub-menu li {
  display: block;
  position: relative;
  margin-left: 0px;
  margin-right: 16px;
  padding-left: 16px;
  border-left: 1px solid white;
}
.navigation ul.list .sub-menu li a {
  text-transform: none;
  font-size: 15px;
}
.navigation ul.list .sub-menu .sub-menu {
  position: relative;
  margin-top: 0;
}
.navigation ul.list .sub-menu .sub-menu li {
  border-left: none;
  padding-left: 0px;
}
.navigation ul.list .sub-menu .sub-menu li a {
  font-size: 13px;
}
.navigation ul.list .sub-menu .sub-menu li a:before {
  content: "—";
  margin-right: 4px;
}

.navigation-footer ul.list {
  padding: 32px 0;
}
.navigation-footer ul.list > li > ul {
  margin-left: 8px;
}
.navigation-footer ul.list > li:nth-child(3) {
  width: 213px;
}
.navigation-footer ul.list li {
  display: inline-block;
  vertical-align: top;
  width: 180px;
  margin: 0;
}
.navigation-footer ul.list .sub-menu {
  position: relative;
}
.navigation-footer ul.list .sub-menu li {
  width: 100%;
}

.widget_nav_menu a {
  text-transform: none;
  font-size: 13px;
}

.go-top {
  position: fixed;
  z-index: 1;
  bottom: 10px;
  right: 16px;
  display: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: #D51317;
}
@media only screen and (min-width: 900px) {
  .go-top {
    right: 32px;
  }
}
.go-top.active {
  display: block;
}
.go-top b {
  position: absolute;
  text-decoration: none;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 2em;
  width: 15px;
  height: 3px;
  background: #ffffff;
  transition: 0.3s;
  top: 15px;
}
.go-top b:nth-child(1) {
  left: 0;
  margin-left: 3px;
  transform: rotate(135deg);
}
.go-top b:nth-child(2) {
  right: 0;
  margin-right: 3px;
  transform: rotate(45deg);
}
.go-top b:hover {
  opacity: 1;
}

.scroll-down {
  position: absolute;
  left: 50%;
  cursor: pointer;
  bottom: 100px;
  z-index: 2;
}
@media only screen and (max-width: 599px) {
  .scroll-down {
    bottom: 60px;
  }
}

.scroll-down b {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}

.slide:last-child .scroll-down {
  display: none;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
/*doc
---
title: Off Canvas
name: off-canvas
parent: navigation
---
This is the traditional hamburger menu

*/
/* -----------------------------------------------------------------------------
  NAVIGATION MENU

----------------------------------------------------------------------------- */
@media only screen and (min-width: 320px) {
  .mobile-menu.mobile {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .mobile-menu.mobile {
    display: none;
  }
}
@media only screen and (min-width: 320px) {
  .mobile-menu.tablet {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .mobile-menu.tablet {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .mobile-menu.desktop {
    display: block;
  }
}
.mobile-menu nav {
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 320px;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background-color: #D51317;
  transition: all 0.3s ease;
}
.mobile-menu nav.active {
  box-shadow: 0 0 10px black;
}
.mobile-menu nav ul li {
  list-style-type: none;
}
.mobile-menu nav > ul {
  list-style: none;
  padding: 0;
  top: 0;
  left: 0;
  width: 340px;
  height: auto;
  overflow-y: scroll;
  margin: 0;
}
.mobile-menu nav > ul li {
  padding: 0 32px 0 16px;
  transition: all 0.3s ease;
  border-width: 0 0 0 0;
  border-style: solid;
  border-color: #b91014;
}
.mobile-menu nav > ul li a {
  padding: 10px 0;
  color: white;
  display: block;
  font-size: 18px;
  text-decoration: none;
  font-family: "MuseoSansRounded-300", sans-serif;
  text-transform: uppercase;
}
.mobile-menu nav > ul li:first-child {
  border-top: 0;
}
.mobile-menu nav > ul li:last-child {
  border-bottom: 0;
}
.mobile-menu nav > ul li:hover {
  background-color: #D51317;
}
.mobile-menu nav > ul li ul.sub-menu {
  position: absolute;
  top: 0;
  background-color: #D51317;
  transition: all 0.3s ease;
  height: 100%;
  width: 100%;
  padding: 0;
  overflow: scroll;
  display: none;
}
.mobile-menu nav > ul li ul.sub-menu li:first-child {
  margin-top: 20px;
}
.mobile-menu nav > ul li ul.sub-menu li:first-child a {
  font-size: 14px;
}
.mobile-menu nav > ul li ul.sub-menu li:nth-child(1n+2) {
  padding-left: 32px;
}
.mobile-menu nav > ul li ul.sub-menu li {
  padding: 0 16px;
}
.mobile-menu nav > ul li ul.sub-menu li.js-back-container {
  text-transform: uppercase;
}
.mobile-menu nav > ul li ul.sub-menu li.js-back-container button {
  position: relative;
  display: block;
  padding: 14px 1em 14px 1em;
  width: 100%;
  text-align: left;
  background-color: #D51317;
  color: white;
  font-size: 18px;
  font-family: "MuseoSansRounded-300", sans-serif;
}
.mobile-menu nav > ul li ul.sub-menu li.js-back-container button:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -0.3em;
  margin-left: 0;
  left: 0;
  /* By using an em scale, the arrows will size with the font */
  width: 0.6em;
  height: 0.6em;
  border-right: 0.2em solid white;
  border-top: 0.2em solid white;
  transform: rotate(-135deg);
}
.mobile-menu nav > ul li[class*=-has-children] a {
  position: relative;
  display: block;
}
.mobile-menu nav > ul li[class*=-has-children] a:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: auto;
  margin-left: 0;
  right: 5px;
  /* By using an em scale, the arrows will size with the font */
  width: 12px;
  height: 12px;
  border-right: 3px solid white;
  border-top: 3px solid white;
  transform: rotate(45deg);
}
.mobile-menu nav > ul li:not(.menu-item-has-children) a:after {
  content: "";
  border: 0;
}

.mobile-menu[data-menu-transition=slide] ~ .main-container, .mobile-menu[data-menu-transition=push] ~ .main-container {
  /*transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);*/
}
.mobile-menu[data-menu-transition=slide][data-menu-direction=left] .launch-menu, .mobile-menu[data-menu-transition=push][data-menu-direction=left] .launch-menu {
  right: 0;
}
.mobile-menu[data-menu-transition=slide][data-menu-direction=left] nav,
.mobile-menu[data-menu-transition=slide][data-menu-direction=left] nav .sub-menu, .mobile-menu[data-menu-transition=push][data-menu-direction=left] nav,
.mobile-menu[data-menu-transition=push][data-menu-direction=left] nav .sub-menu {
  left: -320px;
}
.mobile-menu[data-menu-transition=slide][data-menu-direction=left] nav.active,
.mobile-menu[data-menu-transition=slide][data-menu-direction=left] nav .sub-menu.active, .mobile-menu[data-menu-transition=push][data-menu-direction=left] nav.active,
.mobile-menu[data-menu-transition=push][data-menu-direction=left] nav .sub-menu.active {
  left: 0;
}
.mobile-menu[data-menu-transition=slide][data-menu-direction=right] .launch-menu, .mobile-menu[data-menu-transition=push][data-menu-direction=right] .launch-menu {
  right: 0;
}
.mobile-menu[data-menu-transition=slide][data-menu-direction=right] nav,
.mobile-menu[data-menu-transition=slide][data-menu-direction=right] nav .sub-menu, .mobile-menu[data-menu-transition=push][data-menu-direction=right] nav,
.mobile-menu[data-menu-transition=push][data-menu-direction=right] nav .sub-menu {
  right: -320px;
  left: inherit;
}
.mobile-menu[data-menu-transition=slide][data-menu-direction=right] nav.active,
.mobile-menu[data-menu-transition=slide][data-menu-direction=right] nav .sub-menu.active, .mobile-menu[data-menu-transition=push][data-menu-direction=right] nav.active,
.mobile-menu[data-menu-transition=push][data-menu-direction=right] nav .sub-menu.active {
  right: 0;
}
.mobile-menu[data-menu-transition=push] ~ .main-container {
  transition: all 0.3s ease;
}
.mobile-menu[data-menu-transition=push][data-menu-active=on][data-menu-direction=left] ~ .main-container {
  transform: translate3d(320px, 0, 0);
  -moz-transform: translate3d(320px, 0, 0);
  -webkit-transform: translate3d(320px, 0, 0);
}
.mobile-menu[data-menu-transition=push][data-menu-active=on][data-menu-direction=right] ~ .main-container {
  transform: translate3d(-320px, 0, 0);
  -moz-transform: translate3d(-320px, 0, 0);
  -webkit-transform: translate3d(-320px, 0, 0);
}
.mobile-menu[data-menu-transition=overlay] nav {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  transition: all 0.6s ease;
}
.mobile-menu[data-menu-transition=overlay] nav .menu {
  width: 100%;
  height: auto;
}
.mobile-menu[data-menu-transition=overlay] nav .menu li {
  border: 0;
  text-align: center;
}
.mobile-menu[data-menu-transition=overlay] nav.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.6s ease;
}

.launch-menu {
  position: fixed;
  top: 0;
  z-index: 159890;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-hamburger {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.c-hamburger:focus, .c-hamburger:active {
  outline: none;
  border: 0;
  background-color: transparent;
}
.c-hamburger:hover {
  background-color: transparent;
  border: 0;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 29px;
  left: 16px;
  right: 18px;
  height: 4px;
  width: 50%;
  background: white;
}
.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: white;
  content: "";
}
.c-hamburger span::before {
  top: -8px;
}
.c-hamburger span::after {
  bottom: -8px;
}

/**
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.c-hamburger--htx {
  background-color: rgba(255, 255, 255, 0);
}
.c-hamburger--htx span {
  transition: background 0s 0.3s;
}
.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
  transition-property: top, transform;
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2), 0px 8px 8px rgba(0, 0, 0, 0.2), 0px 16px 16px rgba(0, 0, 0, 0.2), 0px 32px 32px rgba(0, 0, 0, 0.2), 0px 0px 40px #323232;
}
.c-hamburger--htx span::before {
  transition-property: top, transform;
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2), 0px 8px 8px rgba(0, 0, 0, 0.2), 0px 16px 16px rgba(0, 0, 0, 0.2), 0px 32px 32px rgba(0, 0, 0, 0.2), 0px 0px 40px #323232;
}
.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: transparent;
}
.c-hamburger--htx.is-active span {
  background: none;
}
.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
  box-shadow: none;
}
.c-hamburger--htx.is-active span::before, .c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}

.mobile-menu[data-hamburguer-wrap=full] .launch-menu {
  position: fixed;
}
.mobile-menu[data-hamburguer-wrap=boxed] {
  max-width: 1280px;
  margin: 0 auto;
  top: 16px;
  position: sticky;
  z-index: 159980;
}
@media only screen and (min-width: 992px) {
  .mobile-menu[data-hamburguer-wrap=boxed] .launch-menu {
    position: sticky;
  }
}
.mobile-menu[data-hamburguer-wrap=boxed][data-menu-direction=right] .launch-menu {
  float: right;
}

.levels-menu-navigation.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 2;
}
.levels-menu-navigation.sticky.sticky-with-header {
  top: 67px;
  transition: top 0.2s ease-in-out;
}
.levels-menu-navigation .wrapper-small {
  padding: 16px 0;
  max-width: 980px;
}
@media only screen and (max-width: 599px) {
  .levels-menu-navigation.desktop {
    display: none;
  }
}
.levels-menu-navigation.desktop ul.parent-child {
  padding: 0;
  margin: 0;
}
.levels-menu-navigation.desktop ul.parent-child li {
  display: inline-block;
  margin-right: 16px;
}
.levels-menu-navigation.desktop ul.parent-child li a {
  text-decoration: none;
  display: inline-block;
  padding: 11px;
  background: white;
  color: #D51317;
  font-size: 1em;
  text-transform: uppercase;
  font-family: "MuseoSansRounded-500", sans-serif;
  cursor: pointer;
  line-height: 24px;
}
.levels-menu-navigation.desktop ul.parent-child li a.is-active {
  background-color: #D51317;
  color: white;
}
.levels-menu-navigation.desktop ul.grand-child li {
  display: inline-block;
  margin-right: 16px;
}
.levels-menu-navigation.desktop ul.grand-child li a {
  text-decoration: none;
  color: #666666;
  text-transform: none;
  font-size: 0.9em;
  padding: 0 0 4px 0;
  margin-right: 16px;
}
.levels-menu-navigation.desktop ul.grand-child li a.is-active {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom-color: #666666;
  border-bottom-width: 3px;
  font-family: "MuseoSansRounded-700", sans-serif;
  background-color: transparent;
  border-style: solid;
}
.levels-menu-navigation.phone {
  display: none;
}
@media only screen and (max-width: 599px) {
  .levels-menu-navigation.phone {
    display: block;
  }
}
.levels-menu-navigation.phone .grey-back {
  background: #D8D7D8;
  padding: 16px;
  margin: -16px 0;
}
.levels-menu-navigation.phone .levels-phone-dropdown-title {
  display: block;
  width: calc(100% - 53px);
  height: 40px;
  overflow: hidden;
  padding: 12px;
}
.levels-menu-navigation.phone ul.parent-child {
  margin: 0;
  padding: 12px 32px 12px 12px;
  overflow: hidden;
  position: relative;
  max-height: 44px;
  transition: all 0.45s ease;
  background: white;
  width: 100%;
}
.levels-menu-navigation.phone ul.parent-child.active {
  max-height: 400px;
  transition: all 0.45s ease;
}
.levels-menu-navigation.phone ul.parent-child li {
  display: block;
  margin-bottom: 8px;
}
.levels-menu-navigation.phone ul.parent-child li:first-child {
  margin: 0;
}
.levels-menu-navigation.phone ul.parent-child li .menu-arrow-icon {
  position: absolute;
  z-index: 1000;
  top: 6px;
  right: 0;
  width: 32px;
  height: 32px;
  padding: 8px;
  transition: all 0.45s ease;
}
.levels-menu-navigation.phone ul.parent-child li .menu-arrow-icon:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDY0IDY0IiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDY0IDY0IiB3aWR0aD0iNTEyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Im0zMiA4Yy0xLjEwNCAwLTIgLjg5Ni0yIDJ2MzkuODk5bC0xNC41NTItMTUuMjc4Yy0uNzYxLS43OTktMi4wMjYtLjgzMi0yLjgyOC0uMDY5LS44Ljc2Mi0uODMxIDIuMDI3LS4wNjkgMi44MjdsMTYuNjIgMTcuNDQ5Yy43NTYuNzU2IDEuNzYgMS4xNzIgMi44MjkgMS4xNzIgMS4wNjggMCAyLjA3My0uNDE2IDIuODYyLTEuMjA3bDE2LjU4Ni0xNy40MTRjLjc2Mi0uOC43My0yLjA2NS0uMDY5LTIuODI3LS43OTktLjc2My0yLjA2NS0uNzMxLTIuODI3LjA2OWwtMTQuNTUyIDE1LjM0MnYtMzkuOTYzYzAtMS4xMDQtLjg5Ni0yLTItMnoiLz48L3N2Zz4=);
  background-size: contain;
}
.levels-menu-navigation.phone ul.parent-child li a {
  color: black;
  font-family: "MuseoSansRounded-300", sans-serif;
  font-size: 16px;
  padding: 0;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
}
.levels-menu-navigation.phone ul.parent-child ul.grand-child {
  display: none;
  padding: 0px;
  margin: 0px;
}
.levels-menu-navigation.phone ul.parent-child ul.grand-child li {
  margin: 0 16px 8px 0;
}
.levels-menu-navigation.phone ul.parent-child ul.grand-child li:before {
  content: "-";
}
.levels-menu-navigation.phone ul.parent-child ul.grand-child li:first-child {
  margin-top: 8px;
}
.levels-menu-navigation.phone ul.parent-child ul.grand-child li a {
  text-transform: capitalize;
}

.page-news-and-views .levels-menu-navigation {
  display: none;
}

.page-id-13062 .levels-menu-navigation.desktop ul.grand-child,
.parent-pageid-13062 .levels-menu-navigation.desktop ul.grand-child,
.page-id-12168 .levels-menu-navigation.desktop ul.grand-child,
.parent-pageid-12168 .levels-menu-navigation.desktop ul.grand-child,
.page-id-12755 .levels-menu-navigation.desktop ul.grand-child,
.parent-pageid-12755 .levels-menu-navigation.desktop ul.grand-child,
.page-id-11962 .levels-menu-navigation.desktop ul.grand-child,
.parent-pageid-11962 .levels-menu-navigation.desktop ul.grand-child,
.page-id-11731 .levels-menu-navigation.desktop ul.grand-child,
.parent-pageid-11731 .levels-menu-navigation.desktop ul.grand-child,
.page-id-12786 .levels-menu-navigation.desktop ul.grand-child,
.parent-pageid-12786 .levels-menu-navigation.desktop ul.grand-child,
.page-id-20813 .levels-menu-navigation.desktop ul.grand-child,
.parent-pageid-20813 .levels-menu-navigation.desktop ul.grand-child {
  display: none;
}

.entry-content {
  /*--------------------------------------------------------------
   ## Galleries
   --------------------------------------------------------------*/
}
.entry-content .gallery {
  margin: 0 auto 16px;
  text-align: center;
}
.entry-content .gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  max-width: 100%;
  margin: 0;
  padding: 0 16px 16px 0;
}
.entry-content .gallery-item .gallery-icon {
  border: 1px solid #e6e6e6;
  line-height: 0;
  display: table;
  padding: 8px;
  width: 100%;
}
.entry-content .gallery-item .gallery-icon a {
  display: table-cell;
  vertical-align: middle;
}
.entry-content .gallery-item img {
  max-width: 100%;
  object-fit: contain;
}
.entry-content .gallery-item .gallery-caption {
  display: none;
}
.entry-content .gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.entry-content .gallery-columns-2 .gallery-item img {
  height: 350px;
}
.entry-content .gallery-columns-3 .gallery-item {
  width: 33.33%;
}
.entry-content .gallery-columns-3 .gallery-item img {
  height: 250px;
}
.entry-content .gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.entry-content .gallery-columns-4 .gallery-item img {
  height: 184px;
}
.entry-content .gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.entry-content .gallery-columns-5 .gallery-item img {
  height: 150px;
}
.entry-content .gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.entry-content .gallery-columns-6 .gallery-item img {
  height: 120px;
}
.entry-content .gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.entry-content .gallery-columns-7 .gallery-item img {
  height: 100px;
}
.entry-content .gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.entry-content .gallery-columns-8 .gallery-item img {
  height: 75px;
}
.entry-content .gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.entry-content .gallery-columns-9 .gallery-item img {
  height: 50px;
}
.entry-content .gallery-caption {
  display: block;
  padding: 8px;
  font-size: 12px;
  text-align: center;
}

.gallery-container .owl-item .item {
  height: 450px;
}
.gallery-container .owl-item .item:hover {
  cursor: zoom-in;
}
.gallery-container .owl-item .item img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.gallery-container .owl-nav {
  position: absolute;
  top: calc(50% - 27px);
  left: 0;
  width: 100%;
}
.gallery-container .owl-dots {
  margin-top: 32px;
}
.gallery-container .owl-prev,
.gallery-container .owl-next {
  width: auto;
}
.gallery-container .owl-prev span,
.gallery-container .owl-next span {
  background-color: black;
  color: white;
  padding: 0 8px;
  margin-left: 2px;
  font-size: 20px;
}
.gallery-container .owl-prev.disabled,
.gallery-container .owl-next.disabled {
  visibility: hidden;
}
.gallery-container .gallery-modal-content .owl-item .item {
  height: auto;
  position: relative;
}
.gallery-container .gallery-modal-content .owl-item .item img {
  border: 0;
}
.gallery-container .gallery-modal-content .owl-item .item:hover {
  cursor: default;
}
.gallery-container .gallery-modal-content .owl-carousel .owl-stage-outer {
  width: 100%;
  top: -18px;
}
.gallery-container .gallery-modal-content .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  background: rgba(240, 0, 0, 0.65);
  padding: 16px 0;
  height: 110px;
}
.gallery-container .gallery-modal-content .caption.show {
  display: block;
}
.gallery-container .gallery-modal-content .caption.hide {
  display: none;
}
.gallery-container .gallery-modal-content .caption-wrap {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}
.gallery-container .owl-prev {
  left: 0;
}
.gallery-container .owl-next {
  right: 0;
}
.gallery-container .owl-carousel .owl-prev,
.gallery-container .owl-carousel .owl-next {
  position: absolute;
}
.gallery-container .owl-carousel .owl-prev span,
.gallery-container .owl-carousel .owl-next span {
  color: white;
  background: #D51317;
  padding: 8px 16px;
  font: 200 32px system-ui;
}
.gallery-container .owl-carousel .owl-prev.disabled,
.gallery-container .owl-carousel .owl-next.disabled {
  display: none;
}

.slider-1 .owl-carousel .owl-nav button.owl-prev,
.slider-1 .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: calc(50% - 24px);
  width: 48px;
  height: 48px;
}
.slider-1 .owl-carousel .owl-nav button.owl-prev span,
.slider-1 .owl-carousel .owl-nav button.owl-next span {
  color: white;
  background: #D51317;
  padding: 8px 16px;
  font: 200 32px system-ui;
}
.slider-1 .owl-carousel .owl-nav button.owl-prev {
  content: "<";
}
.slider-1 .owl-carousel .owl-nav button.owl-next {
  content: ">";
}

.close-modal {
  background: #D51317;
  border-radius: 0;
}

.single-img .gallery-modal-content {
  height: 85% !important;
}
.single-img .gallery-modal-content img {
  object-fit: scale-down;
}
.single-img .single-img {
  overflow: hidden;
}
.single-img .owl-carousel,
.single-img .owl-carousel img {
  height: 100%;
}

.entry-content .gallery {
  text-align: inherit;
}

.filter-container {
  background: #D8D7D8;
  padding: 16px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 599px) {
  .filter-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 900px) {
  .filter-container {
    padding: 0;
    min-height: 36px;
  }
}

.filter-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.filter-buttons {
  margin-bottom: 32px;
  padding: 0;
}
.filter-buttons li {
  display: inline-block;
  padding-right: 16px;
}

.filters-data-block {
  display: inline-block;
  width: 250px;
  vertical-align: top;
}
.filters-data-block.hidden {
  display: none;
}

.filter-pagination {
  list-style: none;
}
.filter-pagination li {
  display: inline-block;
  margin-right: 5px;
}
.filter-pagination li a {
  padding: 7px 14px;
  text-decoration: none;
  background-color: white;
  color: #D51317;
  font-weight: bold;
}
.filter-pagination li.active a {
  background-color: #D51317;
  color: white;
}

.filters-bar-element {
  padding: 16px 0;
}

.filters-bar-element {
  margin-bottom: 16px;
  display: none;
}
.filters-bar-element .tabs-selector {
  max-width: 824px;
  margin: 0 auto;
  text-align: left;
}
.filters-bar-element .tabs-selector ul {
  padding: 0;
}

/* SUPER ULTRA COOL DROPDOWNS */
.filters-dropdown-element {
  display: inline-block;
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 599px) {
  .filters-dropdown-element {
    position: relative;
  }
}
.filters-dropdown-element ul.filters-data-block > li {
  display: inline-block;
}
.filters-dropdown-element input {
  vertical-align: top;
  border: 0;
  padding: 8px;
  font-size: 16px;
  height: 36px;
}
@media only screen and (max-width: 599px) {
  .filters-dropdown-element input {
    width: 100%;
  }
}

.filters-result-container {
  margin-top: 32px;
}
.filters-result-container.with-tag {
  margin-top: 16px;
}
.filters-result-container.without-tag {
  margin-top: 32px;
}
.filters-result-container ul {
  padding: 0;
}

.cool-dropdowns {
  position: relative;
  background-color: white;
  display: inline-block;
  padding: 8px 32px 8px 8px;
  max-height: 36px;
  overflow: hidden;
  vertical-align: top;
  font-family: "MuseoSansRounded-500", sans-serif;
}
@media only screen and (max-width: 599px) {
  .cool-dropdowns {
    width: 100%;
    margin-bottom: 4px;
  }
}
.cool-dropdowns .drop-title {
  text-transform: uppercase;
  padding: 0 40px 0 20px;
  cursor: pointer;
}
.cool-dropdowns.active {
  max-height: 100%;
}
.cool-dropdowns.active .drop-title {
  color: #D51317;
}
.cool-dropdowns.hidden {
  display: none;
}
.cool-dropdowns ul {
  padding: 8px 40px 0 20px;
  list-style: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media only screen and (max-width: 599px) {
  .cool-dropdowns ul {
    padding: 0 20px !important;
  }
}
.cool-dropdowns ul li {
  cursor: pointer;
  color: black;
  margin-bottom: 8px !important;
  width: auto;
  float: none !important;
  margin-left: 0 !important;
  margin-top: 8px;
  padding: 0 20px;
}
.cool-dropdowns ul li.hidden {
  display: none;
}
.cool-dropdowns span.remove {
  display: none;
}

.cool-dropdowns-tags-container {
  padding-top: 36px;
}
@media only screen and (max-width: 599px) {
  .cool-dropdowns-tags-container {
    padding-top: 0;
  }
}
.cool-dropdowns-tags-container.hidden {
  display: none;
}
.cool-dropdowns-tags-container ul {
  padding: 16px 0 0;
  margin: 0;
  list-style: none;
}
@media only screen and (min-width: 600px) {
  .cool-dropdowns-tags-container ul {
    padding: 0 !important;
  }
}
.cool-dropdowns-tags-container ul li {
  display: inline-block;
  padding: 5px 10px;
  margin: 16px 8px 0 0;
  background-color: #D51317;
  color: white;
  font-size: 16px;
  width: auto !important;
}
.cool-dropdowns-tags-container ul li span.remove {
  cursor: pointer;
  margin-left: 10px;
}

.clear-all-tags {
  cursor: pointer;
  text-transform: none;
  font-family: "MuseoSansRounded-500", sans-serif;
  font-size: 16px;
}
.clear-all-tags.active {
  margin-left: 16px;
}

/**** SEARCH UGLY CSS    can this be removed ? **/
.search-form-container {
  background-color: #D51317;
  padding: 48px;
}

.button-container {
  text-align: center;
  padding: 0 0 16px;
}
@media only screen and (min-width: 600px) {
  .button-container {
    padding: 32px 0;
  }
}

.drop-title {
  font-size: 16px;
}

.filters-dropdown-element li {
  font-size: 16px;
}
@media only screen and (min-width: 600px) {
  .filters-dropdown-element li {
    font-size: 12px;
  }
}
@media only screen and (min-width: 900px) {
  .filters-dropdown-element li {
    font-size: 16px;
  }
}

.entry-content .filters-dropdown-element ul {
  list-style-type: none;
}
.entry-content .filters-result-container ul {
  list-style-type: none;
}

body.search .cool-dropdowns {
  position: absolute;
  max-height: 38px;
  padding: 8px 0;
}
@media only screen and (max-width: 599px) {
  body.search .cool-dropdowns {
    position: relative;
  }
}
body.search .cool-dropdowns.active {
  max-height: 100%;
}
body.search .drop-toggle {
  top: 16px;
}
body.search .cool-dropdowns ul li {
  width: 210px;
}
[data-tab-content=auto-new-latest] .filters-result-container {
  padding-top: 32px;
}

.cool-dropdowns.js-cool-dropdowns.active {
  max-height: 500px !important;
  overflow-y: auto;
}

body.search .cool-dropdowns {
  position: relative !important;
}

.clear-all-tags.hidden {
  display: none;
}

.page-vacancies .filter-container,
[data-tab-content=vacantes] .filter-container,
[data-tab-content=vacancies] .filter-container {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}
.page-vacancies .filter-wrapper,
[data-tab-content=vacantes] .filter-wrapper,
[data-tab-content=vacancies] .filter-wrapper {
  max-width: 820px;
}
.page-vacancies .cool-dropdowns-tags-container,
[data-tab-content=vacantes] .cool-dropdowns-tags-container,
[data-tab-content=vacancies] .cool-dropdowns-tags-container {
  padding-top: 36px;
}

.tabs-selector ul li.active {
  border-color: #666666;
  border-width: 0 0 3px 0;
  border-style: solid;
}

.tabs-selector ul li.all-active {
  border-bottom: 0;
}

.tabs-selector ul li {
  display: inline;
  cursor: pointer;
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 8px;
  margin-left: 16px;
  padding: 0 0 4px;
}

.loading-layer {
  position: fixed;
  z-index: -100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: none;
  background-color: white;
}

.loading-layer img {
  /* Boni Style */
  margin: 15% auto !important;
  width: 300px !important;
  height: auto !important;
}

.filter-container ul {
  list-style-type: none;
  padding: 0;
}

.filter-top {
  position: relative;
  background: #cccccc;
  margin: 0 auto 16px;
  background: #e6e6e6;
  padding: 16px;
  display: none;
}

.filter-bar {
  z-index: 2;
}
@media only screen and (min-width: 600px) {
  .filter-bar {
    position: absolute;
  }
}

.filter-select {
  display: inline-block;
  vertical-align: top;
  margin-right: 16px;
  min-width: 200px;
}
.filter-select ul {
  max-height: 38px;
  overflow: hidden;
  padding: 8px 8px 10px;
  background: white;
}
@media only screen and (max-width: 599px) {
  .filter-select ul {
    margin: 0 0 16px;
  }
}
@media only screen and (min-width: 600px) {
  .filter-select ul {
    margin: 16px 0;
  }
}
.filter-select.active ul {
  max-height: 100%;
}
.filter-select.active ul li:first-of-type {
  color: #D51317;
}
.filter-select.active ul li:first-of-type:after {
  transform: rotate(-180deg);
  transition: all 0.45s ease;
  background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDIxLjgyNSAyMS44MjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDIxLjgyNSAyMS44MjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4Ij4KPHBhdGggZD0iTTE2Ljc5MSwxMy4yNTRjMC40NDQtMC40NDQsMS4xNDMtMC40NDQsMS41ODcsMGMwLjQyOSwwLjQ0NCwwLjQyOSwxLjE0MywwLDEuNTg3bC02LjY1LDYuNjUxICBjLTAuMjA2LDAuMjA2LTAuNDkyLDAuMzMzLTAuODA5LDAuMzMzYy0wLjMxNywwLTAuNjAzLTAuMTI3LTAuODEtMC4zMzNsLTYuNjUtNi42NTFjLTAuNDQ0LTAuNDQ0LTAuNDQ0LTEuMTQzLDAtMS41ODcgIHMxLjE0My0wLjQ0NCwxLjU4NywwbDQuNzQ2LDQuNzYyVjEuMTExQzkuNzkxLDAuNDkyLDEwLjI5OSwwLDEwLjkxOCwwYzAuNjE5LDAsMS4xMTEsMC40OTIsMS4xMTEsMS4xMTF2MTYuOTA0TDE2Ljc5MSwxMy4yNTR6IiBmaWxsPSIjZDUxMzE3Ii8+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=) no-repeat;
  background-size: contain;
}
.filter-select li {
  position: relative;
  cursor: pointer;
  line-height: 1.8;
}
.filter-select li:first-of-type {
  padding-right: 24px;
}
.filter-select li:first-of-type:after {
  content: "";
  background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDIxLjgyNSAyMS44MjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDIxLjgyNSAyMS44MjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4Ij4KPHBhdGggZD0iTTE2Ljc5MSwxMy4yNTRjMC40NDQtMC40NDQsMS4xNDMtMC40NDQsMS41ODcsMGMwLjQyOSwwLjQ0NCwwLjQyOSwxLjE0MywwLDEuNTg3bC02LjY1LDYuNjUxICBjLTAuMjA2LDAuMjA2LTAuNDkyLDAuMzMzLTAuODA5LDAuMzMzYy0wLjMxNywwLTAuNjAzLTAuMTI3LTAuODEtMC4zMzNsLTYuNjUtNi42NTFjLTAuNDQ0LTAuNDQ0LTAuNDQ0LTEuMTQzLDAtMS41ODcgIHMxLjE0My0wLjQ0NCwxLjU4NywwbDQuNzQ2LDQuNzYyVjEuMTExQzkuNzkxLDAuNDkyLDEwLjI5OSwwLDEwLjkxOCwwYzAuNjE5LDAsMS4xMTEsMC40OTIsMS4xMTEsMS4xMTF2MTYuOTA0TDE2Ljc5MSwxMy4yNTR6IiBmaWxsPSIjMDAwMDAwIi8+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=) no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  transition: all 0.45s ease;
}

.filter-search {
  vertical-align: top;
  float: right;
}
@media only screen and (max-width: 599px) {
  .filter-search {
    margin: 0;
    width: 100%;
    display: inline-block;
  }
}
@media only screen and (min-width: 600px) {
  .filter-search {
    margin: 0 0 0 5px;
    width: 150px;
  }
}
@media only screen and (min-width: 900px) {
  .filter-search {
    width: 350px;
  }
}
.filter-search input {
  float: left;
  height: 36px;
  margin: 0;
  border-radius: 0;
  -webkit-appearance: none;
}
.filter-search input[type=text] {
  width: 100%;
  border-color: black;
  color: black;
}
.filter-search input[type=text]::placeholder {
  color: #999999;
}
.filter-search input[type=button] {
  width: 20%;
  cursor: pointer;
  color: white;
  background: #D51317;
  border: 1px solid black;
}

.filter-tags {
  padding-bottom: 16px;
}
@media only screen and (min-width: 600px) {
  .filter-tags {
    padding-top: 72px;
  }
}
.filter-tags li {
  display: inline-block;
  padding: 4px 12px;
  background: #D51317;
  color: white;
}
.filter-tags .remove-tag {
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
}
.filter-tags .remove-tag:after {
  content: "";
  background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDIxMi45ODIgMjEyLjk4MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjEyLjk4MiAyMTIuOTgyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CjxnIGlkPSJDbG9zZSI+Cgk8cGF0aCBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7IiBkPSJNMTMxLjgwNCwxMDYuNDkxbDc1LjkzNi03NS45MzZjNi45OS02Ljk5LDYuOTktMTguMzIzLDAtMjUuMzEyICAgYy02Ljk5LTYuOTktMTguMzIyLTYuOTktMjUuMzEyLDBsLTc1LjkzNyw3NS45MzdMMzAuNTU0LDUuMjQyYy02Ljk5LTYuOTktMTguMzIyLTYuOTktMjUuMzEyLDBjLTYuOTg5LDYuOTktNi45ODksMTguMzIzLDAsMjUuMzEyICAgbDc1LjkzNyw3NS45MzZMNS4yNDIsMTgyLjQyN2MtNi45ODksNi45OS02Ljk4OSwxOC4zMjMsMCwyNS4zMTJjNi45OSw2Ljk5LDE4LjMyMiw2Ljk5LDI1LjMxMiwwbDc1LjkzNy03NS45MzdsNzUuOTM3LDc1LjkzNyAgIGM2Ljk4OSw2Ljk5LDE4LjMyMiw2Ljk5LDI1LjMxMiwwYzYuOTktNi45OSw2Ljk5LTE4LjMyMiwwLTI1LjMxMkwxMzEuODA0LDEwNi40OTF6IiBmaWxsPSIjRkZGRkZGIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==) no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  display: block;
}

.filter-tags ul,
.filter-results ul {
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 599px) {
  .filter-results {
    padding: 0;
  }
}
.filter-results li:first-of-type .card-publication {
  border-top: 0;
}

.single.single-publication .featured-image {
  height: auto;
}

.filter-publication {
  max-width: 1280px;
  padding: 0 16px;
  margin: 0 auto;
  background: white;
}

.page-publications .filter-container {
  padding: 32px 0;
  min-height: 100px;
  position: relative;
}
.page-publications .filter-container:before, .page-publications .filter-container:after {
  content: "";
  display: block;
  position: absolute;
  background: #D8D7D8;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: -1;
}
.page-publications .filter-container:before {
  left: calc(0px - ((100vw - 1200px) / 2));
}
.page-publications .filter-container:after {
  right: calc(8px - ((100vw - 1200px) / 2));
}

.filter-labels li {
  width: auto !important;
}
.filter-labels li .filter-label {
  background: #D51317;
}

.page-vacancies .entry-content-outer .filter-labels li {
  margin-left: 0;
}
.page-vacancies .entry-content-outer .filter-labels li:first-of-type {
  margin-left: 20px;
}

.aws-filter-dropdown .multi-select > ul, .aws-filter-dropdown .multi-select-plugin > ul {
  min-width: auto;
  width: 100%;
  border: 0;
  box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.175);
}

.multi-select > ul > li.selected > label:before,
.multi-select-plugin > ul > li.selected > label:before {
  left: auto;
  right: 8px;
  top: 8px;
  height: 12px;
}

form.search-container {
  position: fixed;
  background: #D51317;
  padding: 0;
  display: none;
  height: 100vh;
  z-index: 3;
}
form.search-container label {
  width: 100%;
  text-indent: -9999px !important;
}
form.search-container input[type=text] {
  display: block;
  width: 100%;
  flex: 1;
  text-align: center;
  border-bottom: 1px solid white;
  color: white;
  font-family: "MuseoSansRounded-500", sans-serif;
}
@media only screen and (min-width: 320px) {
  form.search-container input[type=text] {
    font-size: 1.2em;
    padding: 8px 0;
  }
}
@media only screen and (min-width: 992px) {
  form.search-container input[type=text] {
    font-size: 4em;
    padding: 8px 48px;
  }
}
form.search-container i {
  position: absolute;
  width: 1px;
  background-color: white;
  left: 50%;
  top: 40px;
  animation: blink 1s linear infinite;
  opacity: 1;
}
@media only screen and (min-width: 320px) {
  form.search-container i {
    height: 30%;
  }
}
@media only screen and (min-width: 992px) {
  form.search-container i {
    height: 48%;
  }
}
form.search-container:focus {
  outline: none;
}
form.search-container:focus + i {
  display: none;
}

.main-container .search-form-container {
  padding: 64px 0 32px;
  background: white;
}
.main-container .search-form-container input[type=submit] {
  vertical-align: bottom;
  background: transparent;
  border: 0;
  color: white;
  font-size: 14px;
  padding: 12px 64px 12px 12px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.main-container .search-form-container input[type=text] {
  font-size: 1.8em;
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #D51317;
  color: #D51317;
}
@media only screen and (max-width: 599px) {
  .main-container .search-form-container input[type=text] {
    width: 100%;
    border-radius: 0;
  }
}
@media only screen and (min-width: 600px) {
  .main-container .search-form-container input[type=text] {
    width: 70%;
    display: inline-block;
  }
}

@media only screen and (min-width: 600px) {
  .main-container .search-form-container,
form.search-container {
    top: 0;
    left: 0;
    width: 100vw;
  }
}
.main-container .search-form-container input[type=text],
form.search-container input[type=text] {
  border-width: 0 0 1px 0;
  background: transparent;
  font-family: "MuseoSansRounded-300", sans-serif;
}
.main-container .search-form-container input:focus,
form.search-container input:focus {
  outline: none;
}
.main-container .search-form-container .search,
form.search-container .search {
  left: 16px;
}
@media only screen and (min-width: 320px) {
  .main-container .search-form-container .search,
form.search-container .search {
    top: calc(50% - 12px);
  }
}
@media only screen and (min-width: 992px) {
  .main-container .search-form-container .search,
form.search-container .search {
    top: calc(50% - 16px);
  }
}

.header .search-container .wrapped {
  top: 40%;
  display: flex;
  max-width: 1280px;
}

.main-container .search-form-container .wrapped {
  max-width: 900px;
}

form.search-container .wrapped {
  margin: 0 auto;
}

.error404 .search-form-container {
  padding: 0;
}
@media only screen and (max-width: 599px) {
  .error404 .search-form-container .wrapped {
    padding: 0;
  }
}

.header .search-container .wrapped,
.main-container .search-form-container .wrapped {
  position: relative;
  padding: 32px 0;
}
@media only screen and (max-width: 599px) {
  .header .search-container .wrapped,
.main-container .search-form-container .wrapped {
    padding: 0;
  }
}

::placeholder {
  color: #cccccc;
  opacity: 0.5;
}

:-ms-input-placeholder {
  color: #cccccc;
  opacity: 0.5;
}

::-ms-input-placeholder {
  color: #cccccc;
  opacity: 0.5;
}

@keyframes blink {
  from, 49.9% {
    opacity: 0;
  }
  50%, to {
    opacity: 1;
  }
}
body.search .wrapper-small,
body.error404 .wrapper-small {
  max-width: 824px;
}
body.search .filter-wrapper,
body.error404 .filter-wrapper {
  max-width: 824px;
  padding: 0;
}
body.search .search-submit,
body.error404 .search-submit {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  margin-left: 16px;
  background: #D51317;
}
@media only screen and (max-width: 599px) {
  body.search .search-submit,
body.error404 .search-submit {
    width: 100%;
    margin-top: 16px;
    margin-left: 0;
  }
}
body.search i.arrow-square-right-down,
body.error404 i.arrow-square-right-down {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
}
body.search i.arrow-square-right-down:before,
body.error404 i.arrow-square-right-down:before {
  width: 18px;
}
body.search main.article,
body.error404 main.article {
  max-width: 900px;
  margin: 0 auto;
}
body.search .filters-result-container li,
body.search .post-list li,
body.error404 .filters-result-container li,
body.error404 .post-list li {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid #D51317;
}
@media only screen and (max-width: 599px) {
  body.search .filters-result-container li,
body.search .post-list li,
body.error404 .filters-result-container li,
body.error404 .post-list li {
    padding-top: 16px;
  }
}

@media only screen and (min-width: 320px) {
  .header .search {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .header .search {
    display: block;
  }
}

.mobile-menu form.search-mobile {
  padding: 16px;
}
@media only screen and (max-width: 599px) {
  .mobile-menu form.search-mobile {
    margin-top: 10px;
  }
}
.mobile-menu form.search-mobile label {
  text-indent: -9999px;
  padding-left: 0;
}
.mobile-menu form.search-mobile input {
  background: transparent;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: white;
  padding: 8px 0;
  width: calc(100% + 4px);
  color: white;
  font-size: 20px;
  font-family: "MuseoSansRounded-100", sans-serif;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.mobile-menu form.search-mobile input:focus {
  outline: none;
}
.mobile-menu form.search-mobile input::placeholder {
  color: white;
  opacity: 1;
}

.map {
  text-align: center;
  width: 800px;
  max-height: 80vh;
  margin: 0 auto;
  display: none;
}
@media only screen and (min-width: 1200px) {
  .map {
    display: block;
  }
}
.map img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

.map.js-hivos-map image,
.map.js-hivos-red-map image {
  width: 170px;
}
.map.js-hivos-map image:nth-child(5),
.map.js-hivos-red-map image:nth-child(5) {
  width: 250px;
}

.wwwm-aside {
  width: 200px;
  display: inline-block;
  vertical-align: top;
}

.wwwm-map {
  display: inline-block;
  height: 550px;
  background: white;
  vertical-align: top;
}

.wwwm-aside ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.wwwm-aside ul li {
  list-style: none;
}

.wwwm-aside ul li.group-title {
  margin-top: 10px;
  font-weight: bold;
}

.wwwm-container.wrapper-wide {
  width: 100vw !important;
  margin-left: 0 !important;
  max-width: 100vw;
  padding: 0;
}
@media only screen and (min-width: 600px) {
  .wwwm-container.wrapper-wide {
    transform: translateX(-50%);
    left: 50%;
  }
}

.globe-map-legend {
  left: calc((100vw - 1280px) / 2 + 16px);
}

.js-alternative-map-page.wrapper-small {
  padding: 0;
}

@media only screen and (min-width: 600px) {
  .where-we-work .wrapper-small {
    padding: 0;
  }
}

.where-we-work .wwwm-container + p {
  display: none;
}

.footer .jvectormap-container path {
  cursor: default !important;
}
.footer .jvectormap-marker {
  cursor: default;
}

.modal-layover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0.8;
  background: black;
}

.modal-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
}

.modal-close {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 10002;
  color: white;
  font-weight: bold;
  font-size: 35px;
  cursor: pointer;
}

.cookie-modal {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
}
.cookie-modal .cookie-container {
  max-width: 800px;
  margin: 5% auto;
  background: white;
  padding: 32px;
}
.cookie-modal p {
  padding: 8px 0;
  display: block;
}
.cookie-modal a {
  color: #D51317;
}
.cookie-modal img {
  height: 70px;
}
.cookie-modal .title {
  display: inline-block;
  float: right;
  color: #D51317;
  font-size: 32px;
  margin: 32px 0 0;
}
.cookie-modal .cookie-links a {
  font-size: 18px;
  float: left;
  clear: both;
}
.cookie-modal .cookie-links,
.cookie-modal .cookie-button {
  display: inline-block;
  width: calc(50% - 2px);
}
.cookie-modal .cookie-button {
  text-align: right;
}
.cookie-modal .cookie-button .link-button {
  background: #D51317;
  color: white;
  margin: 0;
  cursor: pointer;
}
.cookie-modal .cookie-2 {
  display: none;
}
.cookie-modal label.container {
  font-size: 1.1rem;
}
.cookie-modal label.container input,
.cookie-modal label.container span {
  display: inline-block;
}
.cookie-modal label.container input {
  vertical-align: top;
  margin-top: 6px;
}
.cookie-modal label.container span {
  width: calc(100% - 30px);
}

.breadcrumb {
  line-height: 1.5;
  display: none;
  padding: 32px 0 0;
  color: #999999;
}
@media only screen and (min-width: 900px) {
  .breadcrumb {
    display: block;
  }
}
.breadcrumb a {
  color: #999999;
}

.single .breadcrumb {
  display: none;
}

ul.socials {
  margin: 0;
  padding: 0;
}
ul.socials li {
  display: inline-block;
}
ul.socials li a {
  text-decoration: none;
  color: white;
  display: block;
}
ul.socials li .icon-wasap img {
  width: 44px;
  height: 40px;
  padding: 8px;
}
ul.socials li img {
  width: 48px;
  height: 48px;
}
ul.socials li a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 599px) {
  ul.socials li:nth-child(4) {
    background: #d8d7d8;
    line-height: 1;
    margin-top: 3px;
    vertical-align: top;
    margin-left: 2px;
  }
}

[data-tab-content=programs] .socials,
[data-tab-content=programas] .socials {
  display: none;
}

.flex-grid {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  padding: 0;
  flex-wrap: wrap;
}
@media only screen and (max-width: 599px) {
  .flex-grid li {
    flex-basis: 100%;
    margin-bottom: 4px;
  }
}
@media only screen and (min-width: 600px) {
  .flex-grid li {
    margin-left: 16px;
    flex: 1;
    margin-right: 16px;
    flex-basis: 28.5%;
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 900px) {
  .flex-grid li {
    flex-basis: 30%;
  }
}
.flex-grid li:first-of-type {
  margin-left: 0;
}
.flex-grid li:last-of-type {
  margin-right: 0;
}
@media only screen and (min-width: 600px) {
  .flex-grid li:nth-child(3n+1) {
    margin-left: 0;
  }
}

.home .main-container {
  width: 100%;
  max-width: 100%;
}
@media only screen and (min-width: 900px) {
  .home .main-container {
    margin-top: 68px;
  }
}
.home .main-container .slide {
  margin-bottom: 8px;
}
@media only screen and (min-width: 600px) {
  .home .main-container .slide {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 900px) {
  .home .main-container .slide {
    margin-bottom: 32px;
  }
}

.slide:not(.bk-effect-parallax),
.wbb-slide {
  position: relative;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.slide {
  overflow: hidden;
}
.slide .mobile-image,
.slide video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  left: 50%;
  transform: translateX(-50%);
}
.slide video {
  display: none;
}
@media only screen and (min-width: 600px) {
  .slide video {
    display: block;
  }
}
.slide .mobile-image {
  display: block;
}
@media only screen and (min-width: 600px) {
  .slide .mobile-image {
    display: none !important;
  }
}
.slide .slide-title {
  margin-bottom: 4px;
}
.slide .slide-title span {
  background: none;
  box-shadow: none;
  padding: 0;
}
.slide .slide-title p {
  font-size: 2rem;
  margin-bottom: 4px;
  display: table;
}
@media only screen and (min-width: 768px) {
  .slide .slide-title p {
    font-size: 3rem;
  }
}
.slide .slide-title.invert-red span, .slide .slide-title.invert-red p {
  background-color: #D51317;
  box-shadow: 16px 0 0 #D51317, -16px 0 0 #D51317;
  color: white;
  line-height: 1.2;
}
.slide .slide-title.invert-white span, .slide .slide-title.invert-white p {
  background-color: white;
  box-shadow: 16px 0 0 white, -16px 0 0 white;
  color: #D51317;
  line-height: 1.2;
}
.slide .slide-title.red-transparent span, .slide .slide-title.red-transparent p {
  background: rgba(213, 19, 23, 0.7);
  color: white;
}
.slide .slide-title.text-center p {
  margin: 0 auto 4px;
}
.slide-builder .slide-body {
  overflow: hidden;
}

@media only screen and (max-width: 599px) {
  .slide-post-list ul.grid {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .slide-post-list ul.grid li {
    margin-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  .slide-post-list ul {
    margin: 8px 0 0;
  }
}
@media only screen and (max-width: 599px) {
  .slide-post-list .card-content {
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 900px) {
  .slide-post-list .wrapper-wide {
    padding: 32px 0;
  }
  .slide-post-list .wrapper-wide ul {
    margin: 0;
  }
  .slide-post-list .wrapper-wide .card-default {
    margin-bottom: 0;
  }
}

.mobile-hidden {
  display: none;
}
@media only screen and (min-width: 600px) {
  .mobile-hidden {
    display: block;
  }
}

.mobile-visible {
  display: block;
}
@media only screen and (min-width: 600px) {
  .mobile-visible {
    display: none;
  }
}

.wbb-slide-post-list-item {
  width: 31.33%;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0px 1%;
  min-height: 200px;
  position: relative;
  background-size: cover;
}

.wbb-slide-post-list h1 {
  color: #DB0F21;
}

.wbb-slide-post-list-item h3 {
  margin: 0px 0px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: rgba(219, 15, 13, 0.5);
  padding: 10px 15px;
  border-radius: 0px 0px 4px 4px;
  color: #fff;
}

.wbb-slide-post-list-item h3 a {
  color: #fff;
  text-decoration: none;
}

.wbb-slide-post-list-item h3 a:hover {
  color: #000;
  text-decoration: underline;
}

.wbb-slide.wbb-slide-hero .wbb-hero-bg {
  min-height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.wbb-slide.wbb-slide-hero .wbb-hero-bg h1 {
  position: absolute;
  bottom: 50px;
  left: 150px;
  color: #fff;
  background-color: rgba(219, 15, 13, 0.5);
  margin: 0px;
  padding: 8px 15px 10px;
  border-radius: 4px;
  font-size: 17px;
}

.wbb-slide.wbb-slide-hero-1 .wbb-hero-bg {
  min-height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.wbb-slide.wbb-slide-hero-1 .wbb-hero-bg h1 {
  position: absolute;
  bottom: 50px;
  right: 150px;
  color: #fff;
  background-color: rgba(219, 15, 13, 0.5);
  margin: 0px;
  padding: 8px 15px 10px;
  border-radius: 4px;
  font-size: 17px;
}

.wbb-slide.wbb-slide-hero-2 .wbb-hero-bg {
  background-color: #00f;
}

.wbb-slide.wbb-slide-hero-2 .wbb-hero-bg h1 {
  margin: 0;
  padding: 50px;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.wbb-slide.wbb-slide-hero-5 .wbb-hero-bg,
.wbb-slide.wbb-slide-hero-3 .wbb-hero-bg {
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-size: cover;
}

.wbb-slide.wbb-slide-hero-5 .desc,
.wbb-slide.wbb-slide-hero-3 .desc {
  position: absolute;
  bottom: 100px;
  margin-left: 110px;
  width: 300px;
}

.wbb-slide.wbb-slide-hero-3 .wbb-slide-align.slide-align-right .desc,
.wbb-slide.wbb-slide-hero-5 .desc {
  right: 100px;
  margin: 0;
}

.wbb-slide.wbb-slide-hero-5 h1,
.wbb-slide.wbb-slide-hero-3 h1 {
  color: #fff;
  text-transform: capitalize;
  font-size: 3em;
  line-height: 1.05em;
  margin-bottom: 20px;
}

.wbb-slide.wbb-slide-hero-5 a,
.wbb-slide.wbb-slide-hero-3 a {
  background-color: #D51317;
  padding: 10px 20px;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  display: inline-block;
  border: 0;
  text-decoration: none;
  font-weight: bold;
}

.wbb-slide.wbb-slide-hero-3 a:hover,
.wbb-slide.wbb-slide-hero-5 a:hover {
  background-color: #be1114;
  text-decoration: none;
}

.wbb-slide.wbb-slide-hero-6 .wbb-hero-bg {
  background-color: #D51216;
  text-align: center;
  color: #fff;
  padding: 100px 200px;
}

.wbb-slide.wbb-slide-hero-6 .wbb-hero-bg h1 {
  margin: 0;
  color: #fff;
  font-weight: normal;
  font-size: 2em;
  line-height: 1em;
}

.wbb-slide.wbb-slide-hero-6 .wbb-hero-bg div {
  margin-top: 30px;
  font-size: 1.3em;
}

.wbb-slide.wbb-slide-post-list-2-6 .wbb-slide-post-list-item {
  width: 31.2%;
  border-radius: 0;
  border: none;
  margin: 0 0 30px 3.2%;
  height: 230px;
}

.wbb-slide.wbb-slide-post-list-2-6 .wbb-slide-post-list-item:first-child,
.wbb-slide.wbb-slide-post-list-2-6 .wbb-slide-post-list-item:nth-of-type(3n+1) {
  clear: left;
  margin-left: 0 !important;
}

.wbb-slide.wbb-slide-post-list-2-6 .wbb-slide-post-list-item h3 {
  background-color: rgba(240, 0, 0, 0.65);
  font-weight: normal;
}

.wbb-slide.wbb-slide-post-list-2-6 h1,
.wbb-slide.wbb-slide-post-list-4 h1 {
  color: #D51317;
  margin-bottom: 10px;
  font-weight: normal;
}

.wbb-slide.wbb-slide-post-list-4 .wbb-slide-post-list-item {
  width: 48.4%;
  border-radius: 0;
  border: none;
  margin: 0 0 30px 3.2%;
  height: 360px;
}

.wbb-slide.wbb-slide-post-list-4 .wbb-slide-post-list-item:nth-of-type(odd) {
  clear: left;
  margin-left: 0 !important;
}

.wbb-slide.wbb-slide-post-list-4 .wbb-slide-post-list-item h3 {
  background-color: rgba(240, 0, 0, 0.65);
  font-weight: normal;
}

.wbb-slide.wbb-slide-post-list-4 .wbb-slide-post-list-item h3 a:hover {
  text-decoration: none;
  color: #fff;
}

.wbb-slide.wbb-slide-post-list-5 h2 {
  color: #D51317;
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 22px !important;
}

.wbb-slide.wbb-slide-post-list-5 .wbb-slide-post-info-item {
  margin-bottom: 10px;
}

.wbb-slide.wbb-slide-post-list-5 .wbb-slide-post-info-item .thumb {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}

.wbb-slide.wbb-slide-post-list-5 .wbb-slide-post-info-item .thumb img {
  width: 250px;
  height: 250px;
}

.wbb-slide.wbb-slide-post-list-5 .wbb-slide-post-info-item .desc {
  border-bottom: 1px solid #D51317;
  height: 255px;
  width: 60%;
  display: inline-block;
  position: relative;
}

.wbb-slide.wbb-slide-post-list-5 .wbb-slide-post-info-item .desc a {
  text-decoration: none;
  color: #D51317;
}

.wbb-slide.wbb-slide-post-list-5 .wbb-slide-post-info-item .desc h2 {
  color: #D51317;
  margin: 0 0 2px !important;
  font-weight: normal;
  font-size: 22px !important;
  padding: 0 !important;
}

.wbb-slide.wbb-slide-post-list-5 .wbb-slide-post-info-item .desc .meta {
  margin-bottom: 5px;
  color: #D51317;
  font-size: 14px;
}

.wbb-slide.wbb-slide-post-list-5 .wbb-slide-post-info-item .desc .content {
  margin-top: 10px;
}

.wbb-slide.wbb-slide-post-list-5 .wbb-slide-post-info-item .desc .read-more {
  position: absolute;
  bottom: 10px;
}

.wbb-slide.wbb-slide-post-list-5 .wbb-slide-post-info-item .desc .read-more strong {
  font-weight: bold;
  font-size: 24px;
  vertical-align: initial;
  height: 20px;
  overflow: hidden;
  display: inline-block;
}

.wbb-slide-text-1 .wbb-t-bg {
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-size: cover;
  color: #fff;
  min-height: 800px;
}

.wbb-slide-text-1 .container {
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.wbb-slide-text-1 .block-img {
  width: 50%;
  float: left;
}

.wbb-slide-text-1 .block-img img {
  height: 200px;
}

.wbb-slide-text-1 .block-img, .wbb-slide-text-1 .content {
  margin-top: 40%;
  margin-bottom: 20px;
}

.wbb-slide-text-1 .content {
  width: 50%;
  display: inline-block;
  padding: 10px;
  background: #c9de19;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.wbb-slide-text-1 .title {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: #0073aa;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wbb-slide-text-1 .subtitle {
  color: #fff;
  font-size: 12px;
  padding: 0;
  margin: 0;
}

.wbb-slide-text-1 .content p {
  color: black;
  font-weight: 500;
  font-size: 11px;
}

.wbb-slide.wbb-slide-text-2 {
  width: 100%;
  display: block;
  background: #0291d3;
  padding: 80px 0px 40px 0px;
}

.wbb-slide.wbb-slide-text-2.slide-color-red {
  background-color: #DB0F21;
}

.wbb-slide.wbb-slide-text-2.slide-color-white {
  background-color: #FFF;
}

.wbb-slide.wbb-slide-text-2:after, .container:after, .wbb-clear {
  clear: both;
  content: "";
  display: block;
}

.wbb-slide.wbb-slide-text-2 .container {
  width: 90%;
  display: block;
  margin: 0 auto;
}

.wbb-slide-text-2 .title {
  color: yellow;
}

.wbb-slide.wbb-slide-text-2 .container .block {
  width: 44%;
  float: left;
  margin: 15px;
}

.wbb-slide.wbb-slide-text-2 .container .content {
  margin-left: 15px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.wbb-slide.wbb-slide-text-2 .block img {
  margin-top: 20px;
  margin-bottom: 20px;
  min-height: 150px;
}

.pattern-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  display: none;
}

.pattern-overlay.pattern-visible {
  display: block;
}

.bk-effect-parallax .wbb-hero-bg {
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.bk-effect-ken-burn .wbb-hero-bg {
  background-size: 100% !important;
  animation-name: kenburns;
  animation-duration: 4s;
  -webkit-animation-name: kenburns;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s;
  transition: background-size 1s ease-in;
  -moz-transition: background-size 1s ease-in;
  -ms-transition: background-size 1s ease-in;
  -o-transition: background-size 1s ease-in;
  -webkit-transition: background-size 1s ease-in;
}

.post-slider {
  background-color: #D51317;
  color: white;
  padding: 16px 0;
  padding: 64px 0;
}

.post-slider .ptitle {
  text-transform: uppercase;
  font-size: 16px;
}

.post-slider .pcontent {
  margin: 0 0 1em 0;
  letter-spacing: 0.5px;
  font-size: 40px;
  line-height: 1.5;
}

.hero-left-text-column .text-white-column {
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 50px;
  left: 187px;
  width: 40%;
}

.hero-left-text-column .text-con {
  height: 80vh;
}

.hero-left-text-column .text-white-column h1 {
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 50px;
  left: 187px;
  width: 40%;
}

.back-photo-credit {
  position: absolute;
  right: 60px;
  bottom: 50px;
  z-index: 99;
}

.back-photo-credit i {
  background: url(../imgs/info-sprite.png) 0px -38px no-repeat;
  cursor: pointer;
  height: 38px;
  z-index: 30;
  width: 39px;
  display: block;
}

.back-photo-credit i:hover {
  background-position: 0 0;
}

.back-photo-credit .detail {
  background-color: #fff;
  padding: 5px 20px;
  position: absolute;
  bottom: 48px;
  right: 0;
  border-radius: 4px;
  max-width: 400px;
  display: none;
  width: max-content;
}

.back-photo-credit:hover .detail,
.back-photo-credit.open .detail {
  display: block;
}

.hide-element {
  display: none !important;
}

.show-element {
  display: block !important;
}

.link-button.show-element {
  display: inline-block !important;
}

.img-caption {
  position: absolute;
  background-color: #ff000040;
  font-size: 20px;
  color: #fff;
  bottom: 0;
  height: auto !important;
  padding: 20px 35px;
  left: 25px;
  right: 25px;
  bottom: 45px;
}

.slide-wrap.center-aligned {
  text-align: center;
}

.slide-wrap.center-aligned span, .slide-wrap.center-aligned p {
  margin: 0 auto 4px;
}

.owl-nav .owl-next,
.owl-nav .owl-prev {
  height: 100%;
  position: absolute;
  top: 0;
  width: 5%;
}

.owl-nav .owl-next {
  right: 0;
}
@media only screen and (max-width: 599px) {
  .owl-nav .owl-next {
    right: 20px;
  }
}

.owl-nav .owl-prev {
  left: 0;
}

.owl-theme .owl-nav .owl-next:hover,
.owl-theme .owl-nav .owl-prev:hover {
  background: rgba(134, 151, 145, 0.7);
}

@-webkit-keyframes kenburns {
  0%, 100% {
    background-size: 120%;
    -webkit-background-size: 120%;
  }
  50% {
    background-size: 110%;
    -webkit-background-size: 110%;
  }
}
@keyframes kenburns {
  0%, 100% {
    background-size: 120%;
    -webkit-background-size: 120%;
  }
  50% {
    background-size: 110%;
    -webkit-background-size: 110%;
  }
}
[class*=slide-hero] {
  width: 100%;
  height: 70vh;
  position: relative;
}
@media only screen and (min-width: 900px) {
  [class*=slide-hero] {
    height: 100vh;
  }
}
[class*=slide-hero] .image-container {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
}
[class*=slide-hero] .image-container img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}
[class*=slide-hero] .slide-content {
  display: table;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
[class*=slide-hero] .slide-wrapper {
  display: table-cell;
  vertical-align: middle;
}
[class*=slide-hero] .slide-wrap {
  padding: 0 16px;
  margin-right: 16px;
}
@media only screen and (min-width: 900px) {
  [class*=slide-hero] .slide-wrap {
    padding: 0 16px;
    margin-right: auto;
    max-width: 1280px;
    margin: 0 auto;
  }
}
[class*=slide-hero][class*=-red] .slide-hero-content, [class*=slide-hero][class*=-white] .slide-hero-content {
  display: table;
}
[class*=slide-hero][class*=-red] .slide-wrapper, [class*=slide-hero][class*=-white] .slide-wrapper {
  margin: 0 auto;
}
[class*=slide-hero][class*=-red] .slide-wrap, [class*=slide-hero][class*=-white] .slide-wrap {
  text-align: center;
  max-width: 900px;
}
[class*=slide-hero][class*=-red] [class*=title] p, [class*=slide-hero][class*=-white] [class*=title] p {
  width: 100%;
  font-size: 1.3rem;
  line-height: 1.3;
  color: white;
}
@media only screen and (min-width: 768px) {
  [class*=slide-hero][class*=-red] [class*=title] p, [class*=slide-hero][class*=-white] [class*=title] p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  [class*=slide-hero][class*=-red] [class*=title] p, [class*=slide-hero][class*=-white] [class*=title] p {
    font-size: 3rem;
  }
}
[class*=slide-hero][class*=-red] {
  background: #D51317;
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero][class*=-red] {
    border-width: 5px 0 5px 0;
    border-style: solid;
    border-color: white;
  }
}
[class*=slide-hero][class*=-red] .slide-content {
  background: transparent;
}
[class*=slide-hero][class*="-1"] .slide-title {
  width: 100%;
}
[class*=slide-hero][class*="-1"] .slide-title p {
  display: inline-block;
  float: left;
  margin-bottom: 4px;
  clear: both;
}
[class*=slide-hero][class*="-1"] .link-button {
  float: left;
  clear: both;
}
[class*=slide-hero][class*="-1-right"] .slide-title span,
[class*=slide-hero][class*="-1-right"] .slide-title p {
  float: right;
  margin-right: 16px;
}
[class*=slide-hero][class*="-1-right"] .link-button {
  float: right;
  margin-right: -16px;
}
[class*=slide-hero][class*="-6"] [class*=title] p {
  line-height: 1;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-family: "MuseoSansRounded-500", sans-serif;
  margin-bottom: 0;
}
@media only screen and (min-width: 900px) {
  [class*=slide-hero][class*="-6"] [class*=title] p {
    font-size: 5rem;
  }
}
[class*=slide-hero].text-center.text-transparent .slide-wrap {
  padding-top: 0;
}
[class*=slide-hero].text-transparent .slide-title.red-transparent, [class*=slide-hero].text-transparent .slide-title.invert-red {
  margin-top: 0;
}
[class*=slide-hero].text-transparent .slide-title.red-transparent p, [class*=slide-hero].text-transparent .slide-title.invert-red p {
  text-transform: uppercase;
  line-height: 1;
  padding: 0 8px;
  max-width: none;
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].text-transparent .slide-title.red-transparent p, [class*=slide-hero].text-transparent .slide-title.invert-red p {
    padding: 2px 8px;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].hero-call-box {
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].hero-call-box .image-container,
[class*=slide-hero].hero-call-box .slide-content {
    height: 300px;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].hero-call-box .call-box-container {
    position: relative;
    right: 0;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].hero-call-box .call-box-content {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].hero-call-box .call-box-content h3 {
    padding: 16px 16px 0;
    margin: 0;
    font-size: 20px;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].hero-call-box .call-box-content p {
    padding: 16px;
    font-size: 16px;
    margin-bottom: 0;
  }
}

.call-box-container {
  position: absolute;
  bottom: 0;
  right: -450px;
  transition: right 0.6s ease-in-out;
  z-index: 1;
}
.call-box-container.active {
  right: 0;
}
.call-box-container.active .call-box-trigger [class*=arrow-square][class*=-up] {
  transform: rotate(135deg);
  transition: all 0.4s ease;
}
.call-box-container .call-box-trigger {
  position: absolute;
  transform: rotate(-90deg);
  top: 50%;
  left: -251px;
  width: 430px;
  background: #D51317;
  text-align: center;
  color: white;
  padding: 16px;
  font-size: 20px;
  font-family: "MuseoSansRounded-100", sans-serif;
  cursor: pointer;
}
.call-box-container .call-box-trigger [class*=arrow-square][class*=-up] {
  transition: all 0.4s ease;
}
@media only screen and (max-width: 599px) {
  .call-box-container .call-box-trigger [class*=arrow-square][class*=-up] {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .call-box-container .call-box-trigger {
    left: 0;
    top: 0;
    padding: 8px 16px;
    transform: none;
    position: relative;
    text-align: left;
  }
}
.call-box-container .call-box-content {
  width: 450px;
  background: white;
  padding: 64px;
  height: 80vh;
}
@media only screen and (max-width: 599px) {
  .call-box-container .call-box-content {
    width: 80vw;
    padding: 32px;
  }
}
.call-box-container .call-box-content p {
  font-size: 18px;
  font-family: "MuseoSansRounded-100", sans-serif;
}

.slide.slide-hero-center-big .slide-title p {
  line-height: 1.2;
}
.slide.slide-hero-center-big .slide-title.invert-red span, .slide.slide-hero-center-big .slide-title.invert-red p {
  box-shadow: 8px 0 0 #D51317, -8px 0 0 #D51317;
}
@media only screen and (min-width: 900px) {
  .slide.slide-hero-center-big .slide-title.invert-red span, .slide.slide-hero-center-big .slide-title.invert-red p {
    box-shadow: 32px 0 0 #D51317, -32px 0 0 #D51317;
  }
}

.slide-hero-red {
  height: auto;
}
@media only screen and (min-width: 900px) {
  .slide-hero-red {
    height: 80vh;
  }
}
.slide-hero-red .slide-hero-content {
  height: auto;
  padding: 64px 0;
}
@media only screen and (min-width: 900px) {
  .slide-hero-red .slide-hero-content {
    height: 80vh;
    padding: 0;
  }
}

.wbb-img-uploader video {
  position: inherit !important;
}

@media only screen and (max-width: 599px) {
  .we-are-hivos .has-video {
    min-height: 400px;
  }
  .we-are-hivos .has-video#section3, .we-are-hivos .has-video#section7 {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .we-are-hivos .has-video video {
    position: relative;
    width: 100%;
  }
}
.we-are-hivos #section3 {
  background-color: #FFF;
  height: 700px;
}
.we-are-hivos #section3 video {
  width: 1280px;
  min-width: auto;
}
.we-are-hivos #section3 .image-container {
  max-width: 1280px;
  background-size: contain;
  margin: 0 auto;
}
.we-are-hivos #section7 {
  background-color: #A9A099;
  height: 700px;
}
.we-are-hivos #section7 .image-container {
  max-width: 1280px;
  background-size: contain;
  margin: 0 auto;
}

@media only screen and (max-width: 599px) {
  .has-gif {
    display: none;
  }
}

[data-height=small] {
  height: 350px;
}
[data-height=small] .hero-content,
[data-height=small] .image-content,
[data-height=small] .video-content {
  height: 350px;
}
[data-height=small] .hero-content .video-effect,
[data-height=small] .image-content .video-effect,
[data-height=small] .video-content .video-effect {
  height: 350px;
}

.mobile-visible.slide {
  height: auto;
}
.mobile-visible .card-content-wrap {
  max-width: 360px;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (max-width: 599px) {
  .mobile-visible .card-image {
    height: 415px;
  }
}
@media only screen and (max-width: 599px) {
  .mobile-visible .card-image img {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.mobile-visible .mobile-image {
  position: relative;
}
.mobile-visible .card-title {
  display: block;
  font-size: 2rem;
  line-height: 1.3;
  font-family: "MuseoSansRounded-500", sans-serif;
  color: white;
}
.mobile-visible .card-content {
  background: #D51317;
  padding-bottom: 78px;
  padding-top: 16px;
}
.mobile-visible .card-content p {
  font-size: 32px;
  line-height: 1.3;
}
.mobile-visible .card-link {
  font-family: "MuseoSansRounded-700", sans-serif;
  background: white;
  color: #D51317;
  text-decoration: none;
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 8px 16px;
  bottom: 16px;
  max-width: 90%;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mobile-visible .card-link:after {
  display: none;
}
.mobile-visible br {
  display: none;
}
.mobile-visible p {
  display: inline-block;
  margin-bottom: 0;
}

[class*=slide-hero][class*=-center] .slide-wrapper {
  text-align: center;
}
[class*=slide-hero][class*=-center] .slide-wrap {
  padding-top: 128px;
}

[class*=slide-hero][class*=-boxed] .slide-wrapper {
  vertical-align: bottom;
  text-align: left;
}
[class*=slide-hero][class*=-boxed] [class*=box] {
  padding: 16px;
  max-width: 500px;
}
@media only screen and (min-width: 900px) {
  [class*=slide-hero][class*=-boxed] [class*=box] {
    padding: 32px;
  }
}
[class*=slide-hero][class*=-boxed] .slide-content {
  height: 80%;
}
[class*=slide-hero][class*=-boxed] .slide-title {
  margin: 0 0 16px;
  font-size: 2.5em;
  line-height: 1.1;
  font-family: "MuseoSansRounded-700", sans-serif;
}
[class*=slide-hero][class*=-boxed] .invert-white p {
  font-size: 20px;
  font-family: "MuseoSansRounded-300", sans-serif;
}
[class*=slide-hero][class*=-boxed] .heading-title {
  position: absolute;
  top: 128px;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero][class*=-boxed] .heading-title {
    padding: 0 16px;
  }
}
@media only screen and (min-width: 600px) {
  [class*=slide-hero][class*=-boxed] .heading-title {
    padding: 0 32px;
  }
}
[class*=slide-hero][class*=-boxed] .heading-title [class*=title] {
  color: white;
  font-family: "MuseoSansRounded-500", sans-serif;
  max-width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero][class*=-boxed] .heading-title [class*=title] {
    font-size: 32px;
  }
}
@media only screen and (min-width: 600px) {
  [class*=slide-hero][class*=-boxed] .heading-title [class*=title] {
    font-size: 3.5em;
  }
}
@media only screen and (min-width: 1280px) {
  [class*=slide-hero][class*=-boxed] .heading-title [class*=title] {
    padding: 0 32px;
  }
}
[class*=slide-hero][class*=-boxed][class*=-wide] [class*=content] {
  height: 100%;
  padding-bottom: 64px;
}
[class*=slide-hero][class*=-boxed][class*=-wide] [class*=box] {
  max-width: 100%;
  padding: 12px;
}
[class*=slide-hero][class*=-boxed][class*=-wide] p {
  margin: 0;
}
[class*=slide-hero][class*=-right] .slide-box {
  float: right;
}
[class*=slide-hero][class*=red-boxed] p, [class*=slide-hero][class*=red-boxed] p {
  font-size: 1.1rem;
}
@media only screen and (min-width: 900px) {
  [class*=slide-hero][class*=red-boxed] p, [class*=slide-hero][class*=red-boxed] p {
    font-size: 48px;
  }
}
[class*=slide-hero][class*=-right] .slide-box, [class*=slide-hero][class*=-left] .slide-box {
  max-width: 550px;
}
[class*=slide-hero][class*=-right] .slide-box p, [class*=slide-hero][class*=-left] .slide-box p {
  font-family: "MuseoSansRounded-300", sans-serif;
}
[class*=slide-hero][class*=-right] .slide-box p strong, [class*=slide-hero][class*=-left] .slide-box p strong {
  font-family: "MuseoSansRounded-500", sans-serif;
}
[class*=slide-hero] [class*=box][class*=invert-white] {
  background: white;
}
[class*=slide-hero] [class*=box][class*=invert-white] [class*=title] {
  color: #D51317;
}
[class*=slide-hero] [class*=box][class*=invert-red] {
  background: rgba(213, 19, 23, 0.7);
}
[class*=slide-hero] [class*=box][class*=invert-red] [class*=title],
[class*=slide-hero] [class*=box][class*=invert-red] p {
  color: white;
}
[class*=slide-hero][class*=-story] .slide-box {
  max-width: 500px;
}
[class*=slide-hero][class*=-story] [class*=meta] p {
  color: #D51317;
  font-size: 14px;
  font-family: "MuseoSansRounded-700", sans-serif;
}
[class*=slide-hero][class*=-story] [class*=title] {
  font-family: "MuseoSansRounded-700", sans-serif;
  margin: 32px 0;
  font-size: 3.5em;
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero][class*=-story] [class*=title] {
    font-size: 2.5em;
  }
}
[class*=slide-hero][class*=-story] p {
  font-size: 30px;
  line-height: 1.3;
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].text-slide-2 {
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].text-slide-2 .image-container {
    height: 320px;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].text-slide-2 .slide-content {
    position: relative;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].text-slide-2 .slide-wrap {
    padding: 0;
    margin: 0;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].text-slide-2 .invert-red {
    background: #D51317;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].text-slide-2 .slide-title {
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 599px) {
  [class*=slide-hero].text-slide-2 .heading-title {
    background: #D51317;
    position: relative;
    top: 0;
  }
}

[class*=slide-hero][class*=-text-] {
  height: auto;
}
[class*=slide-hero][class*=-text-] .slide-content {
  position: relative;
  padding: 0;
  background: white;
}
@media only screen and (min-width: 600px) {
  [class*=slide-hero][class*=-text-] .slide-content {
    padding: 32px 0;
  }
}
[class*=slide-hero][class*=-text-] [class*=-title] {
  font-size: 3em;
  font-family: "MuseoSansRounded-700", sans-serif;
  margin: 0 0 16px;
  color: #D51317;
}
[class*=slide-hero][class*=-text-] [class*=-subtitle] {
  font-size: 1.5em;
  line-height: 1.3;
  font-family: "MuseoSansRounded-300", sans-serif;
}
[class*=slide-hero][class*=-text-] [class*=wrap] {
  max-width: 800px;
}

.slide-subtitle a {
  font-size: 1.1rem;
  color: #D51317;
}

[class*=slide-hero][class*=text-overlay], [class*=slide-hero][class*=text-alternate] {
  background: white;
}
[class*=slide-hero][class*=text-overlay] .slide-left,
[class*=slide-hero][class*=text-overlay] .slide-right, [class*=slide-hero][class*=text-alternate] .slide-left,
[class*=slide-hero][class*=text-alternate] .slide-right {
  display: inline-table;
  vertical-align: top;
  width: calc(50% - 2px);
}
[class*=slide-hero][class*=text-overlay] .slide-left, [class*=slide-hero][class*=text-alternate] .slide-left {
  padding-right: 8px;
}
[class*=slide-hero][class*=text-overlay] .slide-right, [class*=slide-hero][class*=text-alternate] .slide-right {
  padding-left: 8px;
}
[class*=slide-hero][class*=text-overlay] .slide-title, [class*=slide-hero][class*=text-alternate] .slide-title {
  margin: 0;
}
[class*=slide-hero][class*=text-overlay] .text-container, [class*=slide-hero][class*=text-alternate] .text-container {
  text-align: left;
  padding: 16px;
}
[class*=slide-hero][class*=text-overlay] .text-container p, [class*=slide-hero][class*=text-alternate] .text-container p {
  font-size: 16px;
  font-family: "MuseoSansRounded-300", sans-serif;
}
[class*=slide-hero][class*=text-overlay] .slide-wrap, [class*=slide-hero][class*=text-alternate] .slide-wrap {
  max-width: 1280px;
}
[class*=slide-hero][class*=text-overlay] .text-container {
  background: white;
}
[class*=slide-hero][class*=text-overlay] .video-container-left video {
  position: relative;
  left: 0;
  width: 100%;
  transform: none;
}
[class*=slide-hero][class*=text-alternate] .image-container {
  height: 350px;
}
[class*=slide-hero][class*=text-alternate] .slide-left .image-container {
  margin-top: 20px;
}
[class*=slide-hero][class*=text-alternate] .slide-right .image-container {
  margin-bottom: 20px;
}

.slider-logos-carousel {
  background-color: #D8D7D8;
  padding: 32px 0;
}
.slider-logos-carousel .owl-theme .owl-item {
  background-color: white;
  padding: 32px;
}
.slider-logos-carousel .owl-theme .card-logo {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-logos-carousel .owl-theme .owl-dots {
  margin: 32px 0;
  bottom: 16px;
}
.slider-logos-carousel .owl-theme .owl-dots .owl-dot span {
  background: #D51317;
}
.slider-logos-carousel .owl-theme .owl-dots .owl-dot.active span {
  background: black;
}
.slider-logos-carousel .owl-theme .owl-nav .owl-next,
.slider-logos-carousel .owl-theme .owl-nav .owl-prev {
  height: 250px;
  margin: 0;
  padding: 0;
}
.slider-logos-carousel .owl-theme .owl-nav .owl-next span,
.slider-logos-carousel .owl-theme .owl-nav .owl-prev span {
  font-size: 32px;
  background-color: #D51317;
  color: white;
  padding: 16px;
}

[class*=slide-hero].image-block .slide-wrapper {
  padding: 64px 0;
  vertical-align: top;
}

@media only screen and (max-width: 599px) {
  .slide-hero-text.text-columns {
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .slide-hero-text.text-columns .slide-content {
    position: relative;
    display: block;
  }
}
.slide-hero-text.text-columns .column {
  font-size: 18px;
}
@media only screen and (max-width: 599px) {
  .slide-hero-text.text-columns .column {
    width: 100%;
    display: inline-block;
    padding-bottom: 16px;
  }
}
@media only screen and (min-width: 600px) {
  .slide-hero-text.text-columns .column {
    width: calc((100% / 2) - 2px);
    display: inline-block;
    padding-right: 64px;
    vertical-align: top;
  }
}
@media only screen and (min-width: 900px) {
  .slide-hero-text.text-columns .column {
    width: calc((100% / 3) - 3px);
    display: inline-block;
    padding-right: 64px;
    padding-top: 0;
  }
}
.slide-hero-text.text-columns .column:first-child {
  display: none;
}
@media only screen and (min-width: 900px) {
  .slide-hero-text.text-columns .column:first-child {
    display: inline-block;
  }
}
.slide-hero-text.text-columns .column strong, .slide-hero-text.text-columns .column p {
  color: #D51317;
}
.slide-hero-text.text-columns .column .text-title p {
  margin: 0;
}
@media only screen and (min-width: 900px) {
  .slide-hero-text.text-columns .column .text-title p {
    max-width: 280px;
    margin: auto;
  }
}
@media only screen and (max-width: 599px) {
  .slide-hero-text.text-columns .column:nth-child(2) {
    padding-top: 16px;
  }
}
@media only screen and (max-width: 599px) {
  .slide-hero-text.text-columns .column:nth-child(2) .text-title {
    padding-bottom: 32px;
  }
}
@media only screen and (min-width: 900px) {
  .slide-hero-text.text-columns .column:nth-child(2) .text-title {
    display: none;
  }
}
.slide-hero-text.text-columns .column:nth-child(3) .text-title {
  display: none;
}
@media only screen and (min-width: 900px) {
  .slide-hero-text.text-columns .column:nth-child(3) .text-title {
    display: block;
  }
}
.slide-hero-text.text-columns .column:nth-child(3) p {
  color: black;
}

.slider-1 {
  height: 70vh;
}
@media only screen and (max-width: 599px) {
  .slider-1 {
    height: auto;
  }
}
@media only screen and (min-width: 900px) {
  .slider-1 {
    height: 100vh;
  }
}
.slider-1 .owl-carousel.owl-drag .owl-item {
  height: 70vh;
}
@media only screen and (max-width: 599px) {
  .slider-1 .owl-carousel.owl-drag .owl-item {
    height: auto;
  }
}
@media only screen and (min-width: 900px) {
  .slider-1 .owl-carousel.owl-drag .owl-item {
    height: 100vh;
  }
}
.slider-1 .owl-carousel.owl-drag .owl-item div {
  height: 70vh;
}
@media only screen and (max-width: 599px) {
  .slider-1 .owl-carousel.owl-drag .owl-item div {
    height: auto;
  }
}
@media only screen and (min-width: 900px) {
  .slider-1 .owl-carousel.owl-drag .owl-item div {
    height: 100vh;
  }
  .slider-1 .owl-carousel.owl-drag .owl-item div .slide-box {
    max-width: 1280px;
    margin: 0 auto;
  }
}
.slider-1 .owl-carousel .owl-item img {
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 599px) {
  .slider-1 .owl-carousel .owl-item img {
    height: 250px;
  }
}
.slider-1 .owl-carousel .owl-item .img-caption {
  max-width: calc(1280px - 32px);
  margin: 0 auto;
}
@media only screen and (max-width: 599px) {
  .slider-1 .owl-carousel .owl-item .img-caption {
    position: relative;
    background-color: #D51317 !important;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 600px) {
  .slider-1 .owl-carousel .owl-item .img-caption {
    background-color: rgba(213, 19, 23, 0.7) !important;
  }
}
.slider-1 .owl-theme .owl-nav.disabled + .owl-dots {
  position: relative;
  margin-top: -40px;
}
.slider-1 .owl-carousel .owl-prev,
.slider-1 .owl-carousel .owl-next {
  width: auto;
}
.slider-1 .owl-carousel .owl-prev span,
.slider-1 .owl-carousel .owl-next span {
  color: white;
  background: #D51317;
  padding: 8px 16px;
  font: 200 32px system-ui;
}
.slider-1 .owl-carousel .owl-dots {
  position: absolute;
  bottom: 32px;
  width: 100%;
}
.slider-1 .owl-carousel .owl-dots .owl-dot.active span {
  background: #D51317;
}

.owl-theme .owl-nav .owl-prev:hover,
.owl-theme .owl-nav .owl-next:hover {
  background: transparent !important;
}

.slide-slogan h2 {
  font-size: 16px;
  text-align: -webkit-auto;
  font-family: "MuseoSansRounded-500", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}
.slide-slogan p {
  text-align: -webkit-auto;
  font-size: 40px;
  letter-spacing: 0.5px;
  font-family: "MuseoSansRounded-500", sans-serif;
}

@media only screen and (min-width: 600px) {
  .slide.slide-post-list-people {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 599px) {
  .slide.slide-post-list-people .wrapper-wide {
    padding: 0;
  }
}
@media only screen and (max-width: 599px) {
  .slide.slide-post-list-people .flex-grid {
    margin: 0;
  }
}
@media only screen and (max-width: 599px) {
  .slide.slide-post-list-people .flex-grid li:last-of-type {
    margin-bottom: 4px;
  }
}
@media only screen and (min-width: 600px) {
  .slide.slide-post-list-people .flex-grid li {
    margin-bottom: 0;
    height: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .slide.slide-post-list-people:not(.slide-themes) .flex-grid li {
    flex-basis: 100%;
    margin: 0 0 32px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .slide.slide-post-list-people:not(.slide-themes) .flex-grid li:last-of-type {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 600px) {
  [class*=slide-hero] + .slide-post-list-people {
    margin-top: -32px;
  }
}

.slide.quote-slider {
  height: 80vh;
}
.slide.quote-slider .slide-wrap {
  padding: 0;
  margin: 0 auto;
}
.slide.quote-slider .quote-title,
.slide.quote-slider .quote-author {
  color: white;
}
.slide.quote-slider .quote-title p {
  font-size: 1.3rem;
  font-family: "MuseoSansRounded-100", sans-serif;
}
@media only screen and (min-width: 600px) {
  .slide.quote-slider .quote-title p {
    font-size: 2.5rem;
  }
}
.slide.quote-slider .quote-author {
  font-size: 1rem;
}
@media only screen and (min-width: 600px) {
  .slide.quote-slider .quote-author {
    font-size: 1.5rem;
  }
}
.slide.quote-slider .owl-theme .owl-dots {
  text-align: right;
}
.slide.quote-slider .owl-theme .owl-dots .owl-dot span {
  background: white;
}
.slide.quote-slider .owl-theme .owl-dots .owl-dot.active span {
  background: #770b0d;
}

.slide.slide-hero-numbers {
  background-color: white;
}
.slide.slide-hero-numbers .slide-wrap {
  max-width: 1280px !important;
}
.slide.slide-hero-numbers .slide-title {
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.2;
  font-family: "MuseoSansRounded-500", sans-serif;
  color: #D51317;
}
.slide.slide-hero-numbers .slide-title a {
  color: #D51317;
}
.slide.slide-hero-numbers.slide-red .slide-title {
  color: white;
}
.slide.slide-hero-numbers.slide-red .slide-title a {
  color: white;
}
.slide.slide-hero-numbers .numbers-block {
  text-align: left;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
  flex-wrap: wrap;
  width: 70%;
  margin: 0 auto;
}
@media only screen and (min-width: 900px) {
  .slide.slide-hero-numbers .numbers-block {
    width: 100%;
    display: flex;
    padding: 0 16px;
  }
}
.slide.slide-hero-numbers .numbers-block li {
  flex: 1;
  margin: 0 32px;
  padding-bottom: 64px;
  position: relative;
  color: #D51317;
}
@media only screen and (max-width: 599px) {
  .slide.slide-hero-numbers .numbers-block li {
    padding-bottom: 32px;
  }
}
@media only screen and (min-width: 900px) {
  .slide.slide-hero-numbers .numbers-block li:first-of-type {
    margin-left: 0;
  }
}
@media only screen and (min-width: 600px) {
  .slide.slide-hero-numbers .numbers-block li:first-of-type .link-button.ghost-button {
    padding-left: 0;
  }
}
.slide.slide-hero-numbers .numbers-block li:last-of-type {
  margin-right: 0;
}
@media only screen and (min-width: 600px) {
  .slide.slide-hero-numbers .numbers-block li:last-of-type .link-button.ghost-button {
    padding-left: 0;
  }
}
@media only screen and (min-width: 600px) {
  .slide.slide-hero-numbers .numbers-block li:nth-child(2) .link-button.ghost-button {
    padding-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  .slide.slide-hero-numbers .numbers-block li {
    flex-basis: 100%;
    margin: 0;
  }
}
.slide.slide-hero-numbers .numbers-block li span {
  font-size: 6em;
  font-family: "MuseoSansRounded-700", sans-serif;
  line-height: 0.75;
}
@media only screen and (max-width: 599px) {
  .slide.slide-hero-numbers .numbers-block li span {
    font-size: 4em;
  }
}
.slide.slide-hero-numbers .numbers-block li p {
  max-width: 90%;
  font-family: "MuseoSansRounded-500", sans-serif;
  color: #D51317;
}
.slide.slide-hero-numbers .link-button.ghost-button {
  position: relative;
  padding: 8px 0;
  margin-top: 0;
}
@media only screen and (min-width: 900px) {
  .slide.slide-hero-numbers .link-button.ghost-button {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.slide.slide-hero-numbers .link-button.ghost-button a {
  color: #D51317;
  font-size: 1.1em;
}
.slide.slide-hero-numbers .number-bottom .link-button a:after {
  display: inline-block;
  content: "";
}
.slide.slide-hero-numbers.slide-red {
  background-color: #D51317;
}
.slide.slide-hero-numbers.slide-red .numbers-block li {
  color: white;
}
.slide.slide-hero-numbers.slide-red .numbers-block li .number-top {
  border-bottom: 8px solid white;
}
.slide.slide-hero-numbers.slide-red .numbers-block li p {
  color: white;
}
.slide.slide-hero-numbers.slide-red .link-button.ghost-button a {
  color: white;
}
.slide.slide-hero-numbers.slide-red .link-button.ghost-button a:after {
  filter: brightness(100);
}
.slide.slide-hero-numbers .number-top {
  border-bottom: 8px solid #D51317;
  width: 100%;
  padding-bottom: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
}
.slide.slide-hero-numbers .number-top span,
.slide.slide-hero-numbers .number-top .number-image {
  flex: 1;
}
.slide.slide-hero-numbers .number-image {
  position: relative;
  bottom: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  margin: 0 16px 0 0;
}
@media only screen and (max-width: 599px) {
  .slide.slide-hero-numbers .number-image {
    width: 56px;
    height: 56px;
    margin: 0 16px 0 0;
  }
}
@media only screen and (min-width: 600px) {
  .slide.slide-hero-numbers .number-image {
    width: 53px;
    height: 53px;
  }
}
@media only screen and (min-width: 900px) {
  .slide.slide-hero-numbers .number-image {
    width: 113px;
    height: 113px;
  }
}

.wp-block-cgb-carousel-text {
  /*position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);*/
}

.gt-owl-slide-carousel.owl-carousel,
.gt-owl-slide-carousel .owl-stage-outer,
.gt-owl-slide-carousel .owl-stage,
.gt-owl-slide-carousel .owl-item,
.gt-owl-slide-carousel .item {
  height: 100%;
}

.entry-content-gutenberg > :not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  width: 100%;
}

.main-content {
  min-height: 50vh;
  display: inline-block;
}
@media only screen and (max-width: 599px) {
  .main-content {
    width: 100%;
  }
}
@media only screen and (min-width: 900px) {
  .main-content {
    display: block;
  }
}
.main-content .entry-content,
.main-content .entry-content-outer {
  padding: 32px 0;
}
.main-content ul {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  list-style-type: none;
}
.main-content .list-social {
  padding: 16px 0;
}
.main-content .entry-content ul.socials {
  display: none;
}

.resources .main-content,
.latest .main-content,
.programs .main-content,
.projects .main-content {
  background: #D8D7D8;
}
.resources .main-content .wrapper-small,
.latest .main-content .wrapper-small,
.programs .main-content .wrapper-small,
.projects .main-content .wrapper-small {
  max-width: 1280px;
}
.resources .main-content .breadcrumb,
.latest .main-content .breadcrumb,
.programs .main-content .breadcrumb,
.projects .main-content .breadcrumb {
  visibility: hidden;
}
.resources .main-content .list-social,
.latest .main-content .list-social,
.programs .main-content .list-social,
.projects .main-content .list-social {
  display: none;
}

@media only screen and (min-width: 900px) {
  .page-programs.programs .entry-content-outer .wrapper-small {
    padding-top: 14px;
  }
}

.projects .card-meta {
  display: none;
}

.js-phone-dropdown-title {
  background-color: white;
  text-transform: uppercase;
  padding: 12px 32px 8px 12px;
  position: absolute;
  z-index: 9000;
}

@media only screen and (min-width: 700px) {
  .js-phone-dropdown-title {
    display: none;
  }
}
.is-active {
  font-weight: bold;
}

[class^=entry-content] ul,
.tabs-content [class^=entry-content] ul {
  list-style-type: disc;
}

[class^=entry-content] ul,
[class^=entry-content] ol,
.main-content [class^=entry-content] ul {
  padding: 1em 0 1em 1em;
}

@media only screen and (min-width: 900px) {
  [class^=entry-content] ul.sub-tabs-content,
[class^=entry-content] ul.grid {
    padding-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  [class^=entry-content] ul.sub-tabs-content,
[class^=entry-content] ul.grid {
    padding: 0;
    margin: 0;
    width: auto;
  }
}

[class^=entry-content] .sub-tabs-content .active-tab {
  list-style-type: none;
}

.related-list-class, .related-list-class-all {
  display: flex;
  list-style-type: none;
}

.related-list-class, .related-list-class-all {
  text-align: center;
}

.card-head {
  background-color: black;
  color: white;
}

.widget_social_block ul {
  padding-left: 0;
}
.widget_social_block li {
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.widget_social_block li a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSI0MjBweCIgaGVpZ2h0PSI2MHB4IiB2aWV3Qm94PSIwIDAgNDIwIDYwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPiAgICAgICAgPHRpdGxlPnNvY2lhbF9idXR0b25zPC90aXRsZT4gICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+ICAgIDxnIGlkPSJzb2NpYWxfYnV0dG9ucyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8cmVjdCBmaWxsPSIjMDAwMDAwIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDIwIiBoZWlnaHQ9IjYwIj48L3JlY3Q+ICAgICAgICA8ZyBpZD0iZmFjZWJvb2siIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00LjAwMDAwMCwgLTUuMDAwMDAwKSI+ICAgICAgICAgICAgPGcgaWQ9ImJhY2tncm91bmQiPiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iY2FudmFzX2JhY2tncm91bmQiIHg9IjAiIHk9IjAiIHdpZHRoPSI1ODIiIGhlaWdodD0iNDAyIj48L3JlY3Q+ICAgICAgICAgICAgPC9nPiAgICAgICAgICAgIDxnIGlkPSJMYXllci0xIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0LjAwMDAwMCwgNS4wMDAwMDApIiBmaWxsPSIjRDhEN0Q4Ij4gICAgICAgICAgICAgICAgPHBhdGggZD0iTTI1Ljc2NSw0Ni4zMTkgTDMyLjUwOSw0Ni4zMTkgTDMyLjUwOSwyOS45OTggTDM3LjAwOCwyOS45OTggTDM3LjYwNCwyNC4zNzQgTDMyLjUwOSwyNC4zNzQgTDMyLjUxNiwyMS41NTggQzMyLjUxNiwyMC4wOTIgMzIuNjU2LDE5LjMwNSAzNC43NiwxOS4zMDUgTDM3LjU3MiwxOS4zMDUgTDM3LjU3MiwxMy42OCBMMzMuMDcyLDEzLjY4IEMyNy42NjcsMTMuNjggMjUuNzY1LDE2LjQwOSAyNS43NjUsMjAuOTk3IEwyNS43NjUsMjQuMzc0IEwyMi4zOTYsMjQuMzc0IEwyMi4zOTYsMjkuOTk5IEwyNS43NjUsMjkuOTk5IEwyNS43NjUsNDYuMzE5IFogTTAsMCBMNjAsMCBMNjAsNjAgTDAsNjAgTDAsMCBaIiBpZD0ic3ZnXzEiPjwvcGF0aD4gICAgICAgICAgICA8L2c+ICAgICAgICA8L2c+ICAgICAgICA8ZyBpZD0iaW5zdGFncmFtIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNzYuMDAwMDAwLCAtNS4wMDAwMDApIj4gICAgICAgICAgICA8ZyBpZD0iYmFja2dyb3VuZCI+ICAgICAgICAgICAgICAgIDxyZWN0IGlkPSJjYW52YXNfYmFja2dyb3VuZCIgeD0iMCIgeT0iMCIgd2lkdGg9IjU4MiIgaGVpZ2h0PSI0MDIiIHJ4PSIyMDEiPjwvcmVjdD4gICAgICAgICAgICA8L2c+ICAgICAgICAgICAgPGcgaWQ9IkxheWVyLTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuMDAwMDAwLCA1LjAwMDAwMCkiIGZpbGw9IiNEOEQ3RDgiPiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNDEuMjcxLDIyLjU3OCBMNDEuMjcxLDIyLjU3MiBDNDEuNzczLDIyLjU3MiA0Mi4yNzYsMjIuNTgyIDQyLjc3OSwyMi41NyBDNDMuNDI1LDIyLjU1NCA0My45NTEsMjIgNDMuOTUxLDIxLjM1MyBDNDMuOTUxLDIwLjM5IDQzLjk1MSwxOS40MjYgNDMuOTUxLDE4LjQ2MyBDNDMuOTUxLDE3Ljc3MiA0My40MDQsMTcuMjIzIDQyLjcxNSwxNy4yMjIgQzQxLjc1NCwxNy4yMjIgNDAuNzkzLDE3LjIyMSAzOS44MzIsMTcuMjIyIEMzOS4xNDQsMTcuMjIzIDM4LjU5NiwxNy43NzQgMzguNTk2LDE4LjQ2NSBDMzguNTk1LDE5LjQyIDM4LjU5MiwyMC4zNzUgMzguNTk5LDIxLjMzIEMzOC42LDIxLjQ3MyAzOC42MjcsMjEuNjIxIDM4LjY3MiwyMS43NTYgQzM4Ljg0NSwyMi4yNjQgMzkuMzExLDIyLjU3NiAzOS44ODEsMjIuNTc5IEM0MC4zNDQsMjIuNTc5IDQwLjgwOCwyMi41NzggNDEuMjcxLDIyLjU3OCBaIE0zMiwyMy44MTcgQzI4LjYxNiwyMy44MTUgMjUuODY1LDI2LjUzOCAyNS44MTgsMjkuOTA2IEMyNS43NjksMzMuMzY2IDI4LjUzOCwzNi4xMDcgMzEuODU4LDM2LjE3OCBDMzUuMzEyLDM2LjI1MiAzOC4xMDYsMzMuNDkyIDM4LjE3OSwzMC4xMzUgQzM4LjI1NCwyNi42NzUgMzUuNDYyLDIzLjgxNSAzMiwyMy44MTcgWiBNMjAuMDQ2LDI3LjExNiBMMjAuMDQ2LDI3LjE5OCBDMjAuMDQ2LDMxLjcxMyAyMC4wNDUsMzYuMjI4IDIwLjA0Niw0MC43NDMgQzIwLjA0Niw0MS4zOTIgMjAuNjA4LDQxLjk1MSAyMS4yNTgsNDEuOTUxIEMyOC40MTgsNDEuOTUyIDM1LjU3Nyw0MS45NTIgNDIuNzM3LDQxLjk1MSBDNDMuMzkzLDQxLjk1MSA0My45NTIsNDEuMzk0IDQzLjk1Miw0MC43MzkgQzQzLjk1MywzNi4yMyA0My45NTIsMzEuNzE5IDQzLjk1MiwyNy4yMTEgTDQzLjk1MiwyNy4xMTcgTDQxLjA0LDI3LjExNyBDNDEuNDUxLDI4LjQzMSA0MS41NzcsMjkuNzY4IDQxLjQxNiwzMS4xMzEgQzQxLjI1NSwzMi40OTQgNDAuODE1LDMzLjc2MiA0MC4xLDM0LjkzNCBDMzkuMzg1LDM2LjEwNiAzOC40NTYsMzcuMDc5IDM3LjMyMSwzNy44NTIgQzM0LjM3NywzOS44NTggMzAuNSw0MC4wMzQgMjcuMzc1LDM4LjI4IEMyNS43OTYsMzcuMzk1IDI0LjU1NiwzNi4xNiAyMy42OSwzNC41NjcgQzIyLjQwMSwzMi4xOTQgMjIuMTk1LDI5LjcwMiAyMi45NTEsMjcuMTE2IEMyMS45ODMsMjcuMTE2IDIxLjAyMSwyNy4xMTYgMjAuMDQ2LDI3LjExNiBaIE00NC4yMDUsNDUuMjU1IEM0NC4zNjQsNDUuMjI5IDQ0LjUyMyw0NS4yMDYgNDQuNjgsNDUuMTcyIEM0NS45MjYsNDQuOTA3IDQ2Ljk0NCw0My44NjggNDcuMTg4LDQyLjYxNSBDNDcuMjEzLDQyLjQ3OCA0Ny4yMzMsNDIuMzQyIDQ3LjI1NSw0Mi4yMDYgTDQ3LjI1NSwxNy43OTQgQzQ3LjIzNCwxNy42NjEgNDcuMjE1LDE3LjUyNiA0Ny4xOSwxNy4zOTMgQzQ2LjkyMiwxNi4wMjYgNDUuNzk0LDE0Ljk2NSA0NC40MSwxNC43NzUgQzQ0LjM1MiwxNC43NjggNDQuMjk3LDE0Ljc1NSA0NC4yNCwxNC43NDUgTDE5Ljc2MSwxNC43NDUgQzE5LjYxNCwxNC43NzIgMTkuNDY1LDE0Ljc5MiAxOS4zMiwxNC44MjUgQzE3Ljk2OCwxNS4xMzMgMTYuOTY4LDE2LjIyMSAxNi43NzUsMTcuNTkxIEMxNi43NjcsMTcuNjQ4IDE2Ljc1NSwxNy43MDUgMTYuNzQ2LDE3Ljc2MiBMMTYuNzQ2LDQyLjI0IEMxNi43NzQsNDIuMzk0IDE2Ljc5Niw0Mi41NTEgMTYuODMxLDQyLjcwNSBDMTcuMTMsNDQuMDI3IDE4LjI1OCw0NS4wNTIgMTkuNjAxLDQ1LjIyNSBDMTkuNjY1LDQ1LjIzMyAxOS43MzEsNDUuMjQ2IDE5Ljc5Niw0NS4yNTUgTDQ0LjIwNSw0NS4yNTUgWiBNMCwtNy4xMDU0MjczNmUtMTUgTDYwLC03LjEwNTQyNzM2ZS0xNSBMNjAsNjAgTDAsNjAgTDAsLTcuMTA1NDI3MzZlLTE1IFoiIGlkPSJzdmdfMSI+PC9wYXRoPiAgICAgICAgICAgIDwvZz4gICAgICAgIDwvZz4gICAgICAgIDxnIGlkPSJsaW5rZWRpbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTE2LjAwMDAwMCwgLTUuMDAwMDAwKSI+ICAgICAgICAgICAgPGcgaWQ9ImJhY2tncm91bmQiPiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iY2FudmFzX2JhY2tncm91bmQiIHg9IjAiIHk9IjAiIHdpZHRoPSI1ODIiIGhlaWdodD0iNDAyIj48L3JlY3Q+ICAgICAgICAgICAgPC9nPiAgICAgICAgICAgIDxnIGlkPSJMYXllci0xIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0LjAwMDAwMCwgNS4wMDAwMDApIiBmaWxsPSIjRDhEN0Q4Ij4gICAgICAgICAgICAgICAgPHBhdGggZD0iTTQ2LjgzNyw0NC4xMzcgTDQ2LjgzNywzMi40MjUgQzQ2LjgzNywyNi4xNSA0My40ODcsMjMuMjMgMzkuMDIxLDIzLjIzIEMzNS40MTcsMjMuMjMgMzMuODAyLDI1LjIxMyAzMi45MDIsMjYuNjA0IEwzMi45MDIsMjMuNzEgTDI2LjExMiwyMy43MSBDMjYuMjAyLDI1LjYyNyAyNi4xMTIsNDQuMTM3IDI2LjExMiw0NC4xMzcgTDMyLjkwMiw0NC4xMzcgTDMyLjkwMiwzMi43MjkgQzMyLjkwMiwzMi4xMiAzMi45NDYsMzEuNTEgMzMuMTI2LDMxLjA3NCBDMzMuNjE2LDI5Ljg1NCAzNC43MzMsMjguNTkxIDM2LjYwOCwyOC41OTEgQzM5LjA2NiwyOC41OTEgNDAuMDQ4LDMwLjQ2NCA0MC4wNDgsMzMuMjA5IEw0MC4wNDgsNDQuMTM4IEw0Ni44MzcsNDQuMTM4IEw0Ni44MzcsNDQuMTM3IFogTTE4Ljk1OSwyMC45MjIgQzIxLjMyNiwyMC45MjIgMjIuODAxLDE5LjM1MiAyMi44MDEsMTcuMzkxIEMyMi43NTcsMTUuMzg4IDIxLjMyNiwxMy44NjMgMTkuMDA0LDEzLjg2MyBDMTYuNjgyLDEzLjg2MyAxNS4xNjMsMTUuMzg3IDE1LjE2MywxNy4zOTEgQzE1LjE2MywxOS4zNTIgMTYuNjM3LDIwLjkyMiAxOC45MTYsMjAuOTIyIEwxOC45NTksMjAuOTIyIFogTTIyLjM1NCw0NC4xMzcgTDIyLjM1NCwyMy43MSBMMTUuNTY1LDIzLjcxIEwxNS41NjUsNDQuMTM3IEwyMi4zNTQsNDQuMTM3IFogTTAsMCBMNjAsMCBMNjAsNjAgTDAsNjAgTDAsMCBaIiBpZD0ic3ZnXzEiPjwvcGF0aD4gICAgICAgICAgICA8L2c+ICAgICAgICA8L2c+ICAgICAgICA8ZyBpZD0idHdpdHRlciIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTYuMDAwMDAwLCAtNS4wMDAwMDApIj4gICAgICAgICAgICA8ZyBpZD0iYmFja2dyb3VuZCI+ICAgICAgICAgICAgICAgIDxyZWN0IGlkPSJjYW52YXNfYmFja2dyb3VuZCIgeD0iMCIgeT0iMCIgd2lkdGg9IjU4MiIgaGVpZ2h0PSI0MDIiPjwvcmVjdD4gICAgICAgICAgICA8L2c+ICAgICAgICAgICAgPGcgaWQ9IkxheWVyLTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuMDAwMDAwLCA1LjAwMDAwMCkiIGZpbGw9IiNEOEQ3RDgiPiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMzQuMTY3LDE4LjI4MyBDMzEuNTQ4LDE5LjIzNiAyOS44OTMsMjEuNjk0IDMwLjA4MSwyNC4zODQgTDMwLjE0NCwyNS40MjIgTDI5LjA5NiwyNS4yOTUgQzI1LjI4MywyNC44MDggMjEuOTUxLDIzLjE1NiAxOS4xMjIsMjAuMzggTDE3LjczOSwxOS4wMDMgTDE3LjM4MywyMC4wMiBDMTYuNjI5LDIyLjI4NyAxNy4xMTEsMjQuNjgxIDE4LjY4MiwyNi4yOTEgQzE5LjUyLDI3LjE4MSAxOS4zMzEsMjcuMzA4IDE3Ljg4NiwyNi43NzggQzE3LjM4MywyNi42MDkgMTYuOTQzLDI2LjQ4MiAxNi45MDEsMjYuNTQ1IEMxNi43NTUsMjYuNjk0IDE3LjI1NywyOC42MjEgMTcuNjU1LDI5LjM4NCBDMTguMiwzMC40NDQgMTkuMzEsMzEuNDgxIDIwLjUyNiwzMi4wOTYgTDIxLjU1MywzMi41ODMgTDIwLjMzOCwzMi42MDQgQzE5LjE2NSwzMi42MDQgMTkuMTIzLDMyLjYyNSAxOS4yNDksMzMuMDcxIEMxOS42NjgsMzQuNDQ4IDIxLjMyMywzNS45MSAyMy4xNjcsMzYuNTQ2IEwyNC40NjYsMzYuOTkgTDIzLjMzNSwzNy42NjggQzIxLjY1OSwzOC42NDQgMTkuNjg5LDM5LjE5NCAxNy43MTksMzkuMjM1IEMxNi43NzUsMzkuMjU2IDE2LDM5LjM0MSAxNiwzOS40MDUgQzE2LDM5LjYxNiAxOC41NTcsNDAuODAyIDIwLjA0NCw0MS4yNjkgQzI0LjUwNyw0Mi42NDYgMjkuODA5LDQyLjA1MiAzMy43OSwzOS43MDEgQzM2LjYxOSwzOC4wMjcgMzkuNDQ3LDM0LjcwMSA0MC43NjgsMzEuNDggQzQxLjQ4MSwyOS43NjUgNDIuMTkzLDI2LjYyOSA0Mi4xOTMsMjUuMTI2IEM0Mi4xOTMsMjQuMTUxIDQyLjI1NiwyNC4wMjQgNDMuNDI5LDIyLjg1OSBDNDQuMTIxLDIyLjE4MSA0NC43NywyMS40NCA0NC44OTYsMjEuMjI4IEM0NS4xMDYsMjAuODI1IDQ1LjA4NCwyMC44MjUgNDQuMDE2LDIxLjE4NSBDNDIuMjM1LDIxLjgyMSA0MS45ODMsMjEuNzM2IDQyLjg2NCwyMC43ODMgQzQzLjUxMywyMC4xMDUgNDQuMjg5LDE4Ljg3NiA0NC4yODksMTguNTE2IEM0NC4yODksMTguNDUzIDQzLjk3NSwxOC41NTggNDMuNjE4LDE4Ljc0OSBDNDMuMjQxLDE4Ljk2MSA0Mi40MDMsMTkuMjc5IDQxLjc3NCwxOS40NjkgTDQwLjY0MywxOS44MyBMMzkuNjE2LDE5LjEzIEMzOS4wNSwxOC43NDkgMzguMjU1LDE4LjMyNSAzNy44MzUsMTguMTk4IEMzNi43NjYsMTcuOTAyIDM1LjEzMSwxNy45NDQgMzQuMTY3LDE4LjI4MyBaIE0wLDAgTDYwLDAgTDYwLDYwIEwwLDYwIEwwLDAgWiIgaWQ9InN2Z18xIj48L3BhdGg+ICAgICAgICAgICAgPC9nPiAgICAgICAgPC9nPiAgICAgICAgPGcgaWQ9InlvdXR1YmUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIzNi4wMDAwMDAsIC01LjAwMDAwMCkiPiAgICAgICAgICAgIDxnIGlkPSJiYWNrZ3JvdW5kIj4gICAgICAgICAgICAgICAgPHJlY3QgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiB4PSIwIiB5PSIwIiB3aWR0aD0iNTgyIiBoZWlnaHQ9IjQwMiI+PC9yZWN0PiAgICAgICAgICAgIDwvZz4gICAgICAgICAgICA8ZyBpZD0iTGF5ZXItMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNC4wMDAwMDAsIDUuMDAwMDAwKSIgZmlsbD0iI0Q4RDdEOCI+ICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zOS41MjcsMzcuMzQgQzM5LjI0OSwzNy4zNCAzOS4wNDksMzcuNDE4IDM4LjkyNywzNy41ODQgQzM4LjgwNiwzNy43NCAzOC43NDcsMzguMDA4IDM4Ljc0NywzOC4zOCBMMzguNzQ3LDM5LjI3NiBMNDAuMjksMzkuMjc2IEw0MC4yOSwzOC4zOCBDNDAuMjksMzguMDA4IDQwLjIyOCwzNy43NCA0MC4xMDUsMzcuNTg0IEMzOS45ODksMzcuNDE4IDM5Ljc5MiwzNy4zNCAzOS41MjcsMzcuMzQgWiBNMzMuNTA5LDM3LjMwOSBDMzMuNzQzLDM3LjMwOSAzMy45MjYsMzcuMzg1IDM0LjA1MywzNy41MzkgQzM0LjE3NiwzNy42OTMgMzQuMjM4LDM3LjkyMiAzNC4yMzgsMzguMjIxIEwzNC4yMzgsNDIuODA1IEMzNC4yMzgsNDMuMDkxIDM0LjE4NSw0My4yOTIgMzQuMDg1LDQzLjQxNiBDMzMuOTg1LDQzLjU0MyAzMy44MjksNDMuNjA1IDMzLjYxNSw0My42MDUgQzMzLjQ2Nyw0My42MDUgMzMuMzI4LDQzLjU3MiAzMy4xOTQsNDMuNTA5IEMzMy4wNTksNDMuNDQ3IDMyLjkyLDQzLjMzOCAzMi43NzksNDMuMTk2IEwzMi43NzksMzcuNjY1IEMzMi44OTgsMzcuNTQzIDMzLjAxOCwzNy40NTIgMzMuMTM5LDM3LjM5NCBDMzMuMjYsMzcuMzM1IDMzLjM4MywzNy4zMDkgMzMuNTA5LDM3LjMwOSBaIE0zOC43NDgsNDAuNjU4IEwzOC43NDgsNDIuMzMgQzM4Ljc0OCw0Mi43OTggMzguODA1LDQzLjEyMiAzOC45MTgsNDMuMzA0IEMzOS4wMzYsNDMuNDg1IDM5LjIzMSw0My41NzMgMzkuNTEsNDMuNTczIEMzOS43OTksNDMuNTczIDQwLjAwMSw0My40OTcgNDAuMTE2LDQzLjM0NCBDNDAuMjMsNDMuMTkxIDQwLjI5MSw0Mi44NTUgNDAuMjkxLDQyLjMzMSBMNDAuMjkxLDQxLjkyNiBMNDIuMDg2LDQxLjkyNiBMNDIuMDg2LDQyLjM4MiBDNDIuMDg2LDQzLjI5MyA0MS44NjksNDMuOTc4IDQxLjQyOSw0NC40NDEgQzQwLjk5NCw0NC45IDQwLjM0LDQ1LjEyOCAzOS40NzEsNDUuMTI4IEMzOC42OSw0NS4xMjggMzguMDczLDQ0Ljg4NiAzNy42MjQsNDQuMzk3IEMzNy4xNzYsNDMuOTExIDM2Ljk0OCw0My4yNCAzNi45NDgsNDIuMzgzIEwzNi45NDgsMzguMzk3IEMzNi45NDgsMzcuNjI5IDM3LjE5NywzNi45OTkgMzcuNjksMzYuNTE1IEMzOC4xODMsMzYuMDMgMzguODE4LDM1Ljc4OCAzOS42MDEsMzUuNzg4IEM0MC40LDM1Ljc4OCA0MS4wMTQsMzYuMDEzIDQxLjQ0NCwzNi40NjIgQzQxLjg3MywzNi45MSA0Mi4wODYsMzcuNTU1IDQyLjA4NiwzOC4zOTcgTDQyLjA4Niw0MC42NjEgTDM4Ljc0OCw0MC42NjEgTDM4Ljc0OCw0MC42NTggWiBNMzUuNjIzLDQ0LjQ5NSBDMzUuMzUyLDQ0LjgzMSAzNC45NTQsNDQuOTk2IDM0LjQzNiw0NC45OTYgQzM0LjA5Myw0NC45OTYgMzMuNzksNDQuOTM0IDMzLjUyNCw0NC44MDQgQzMzLjI1Nyw0NC42NzUgMzMuMDA1LDQ0LjQ3NyAzMi43NzgsNDQuMjAzIEwzMi43NzgsNDQuODg0IEwzMS4wMTQsNDQuODg0IEwzMS4wMTQsMzIuODUyIEwzMi43NzgsMzIuODUyIEwzMi43NzgsMzYuNzI3IEMzMy4wMTUsMzYuNDU3IDMzLjI2MywzNi4yNDkgMzMuNTI2LDM2LjExIEMzMy43OTMsMzUuOTY4IDM0LjA2LDM1Ljg5OSAzNC4zMzEsMzUuODk5IEMzNC44ODUsMzUuODk5IDM1LjMwNiwzNi4wODggMzUuNTk2LDM2LjQ2NCBDMzUuODksMzYuODQzIDM2LjAzNCwzNy4zOTcgMzYuMDM0LDM4LjEyNCBMMzYuMDM0LDQzLjA1IEMzNi4wMzQsNDMuNjc4IDM1Ljg5Nyw0NC4xNTkgMzUuNjIzLDQ0LjQ5NSBaIE0yNy45NTgsNDQuODg0IEwyNy45NTgsNDMuOTA4IEMyNy42MzMsNDQuMjY5IDI3LjMsNDQuNTQ0IDI2Ljk0OSw0NC43MyBDMjYuNiw0NC45MjEgMjYuMjYzLDQ1LjAxMiAyNS45MzUsNDUuMDEyIEMyNS41Myw0NS4wMTIgMjUuMjMsNDQuODgzIDI1LjAyMiw0NC42MTYgQzI0LjgyMSw0NC4zNSAyNC43MTcsNDMuOTU4IDI0LjcxNyw0My40MjcgTDI0LjcxNywzNi4wMDUgTDI2LjQ2MSwzNi4wMDUgTDI2LjQ2MSw0Mi44MTQgQzI2LjQ2MSw0My4wMjUgMjYuNDk4LDQzLjE3NiAyNi41NjgsNDMuMjcxIEMyNi42NDUsNDMuMzY2IDI2Ljc2NCw0My40MTIgMjYuOTI2LDQzLjQxMiBDMjcuMDU0LDQzLjQxMiAyNy4yMTgsNDMuMzUgMjcuNDE0LDQzLjIyNCBDMjcuNjExLDQzLjA5OSAyNy43ODksNDIuOTQxIDI3Ljk1Niw0Mi43NDkgTDI3Ljk1NiwzNi4wMDUgTDI5LjcsMzYuMDA1IEwyOS43LDQ0Ljg4MyBMMjcuOTU4LDQ0Ljg4MyBMMjcuOTU4LDQ0Ljg4NCBaIE0yMS45MTYsMzQuNiBMMjEuOTE2LDQ0Ljg4NCBMMTkuOTQ4LDQ0Ljg4NCBMMTkuOTQ4LDM0LjYgTDE3LjkxNCwzNC42IEwxNy45MTQsMzIuODUyIEwyMy45NSwzMi44NTIgTDIzLjk1LDM0LjYgTDIxLjkxNiwzNC42IFogTTI5Ljk5NCwyOC45NzggQzI5Ljk5NCwyOC45NzcgNDIuMDc0LDI4Ljk5NiA0My41MDgsMzAuNDI4IEM0NC45NDcsMzEuODYzIDQ0Ljk2MywzOC45NDIgNDQuOTYzLDM4Ljk4MyBDNDQuOTYzLDM4Ljk4MyA0NC45NTEsNDYuMSA0My41MDgsNDcuNTM5IEM0Mi4wNzQsNDguOTY5IDI5Ljk5NCw0OSAyOS45OTQsNDkgQzI5Ljk5NCw0OSAxNy45MTUsNDguOTY5IDE2LjQ3OCw0Ny41MzggQzE1LjA0LDQ2LjEwMyAxNS4wMzcsMzkuMDM2IDE1LjAzNywzOC45ODIgQzE1LjAzNywzOC45NDEgMTUuMDQxLDMxLjg2MiAxNi40NzgsMzAuNDI3IEMxNy45MTYsMjguOTk2IDI5Ljk5NCwyOC45NzcgMjkuOTk0LDI4Ljk3OCBaIE0zOS41MiwyNS4yNTUgTDM3LjU1NCwyNS4yNTUgTDM3LjU1NCwyNC4xNzUgQzM3LjE5NiwyNC41NzIgMzYuODE4LDI0Ljg3OCAzNi40MjQsMjUuMDg0IEMzNi4wMzIsMjUuMjkyIDM1LjY1MywyNS4zOTYgMzUuMjg0LDI1LjM5NiBDMzQuODI2LDI1LjM5NiAzNC40ODcsMjUuMjUgMzQuMjU3LDI0Ljk1OSBDMzQuMDI4LDI0LjY2OCAzMy45MTIsMjQuMjMyIDMzLjkxMiwyMy42NDggTDMzLjkxMiwxNS40NzYgTDM1Ljg3NCwxNS40NzYgTDM1Ljg3NCwyMi45NzMgQzM1Ljg3NCwyMy4yMDQgMzUuOTE5LDIzLjM3MiAzNi4wMDEsMjMuNDc1IEMzNi4wODEsMjMuNTc5IDM2LjIxNywyMy42MzEgMzYuNCwyMy42MzEgQzM2LjU0MywyMy42MzEgMzYuNzI3LDIzLjU2MiAzNi45NDgsMjMuNDI1IEMzNy4xNjgsMjMuMjg4IDM3LjM3MSwyMy4xMTMgMzcuNTUzLDIyLjg5OCBMMzcuNTUzLDE1LjQ3NiBMMzkuNTE5LDE1LjQ3NiBMMzkuNTE5LDI1LjI1NSBMMzkuNTIsMjUuMjU1IFogTTI4Ljg0NywyMy41ODggQzI4Ljk4NiwyMy43MzUgMjkuMTg2LDIzLjgwNyAyOS40NDcsMjMuODA3IEMyOS43MTMsMjMuODA3IDI5LjkyMywyMy43MzIgMzAuMDgxLDIzLjU4NCBDMzAuMjM4LDIzLjQzMiAzMC4zMTYsMjMuMjI2IDMwLjMxNiwyMi45NjYgTDMwLjMxNiwxNy42MzkgQzMwLjMxNiwxNy40MjUgMzAuMjM2LDE3LjI1MiAzMC4wNzUsMTcuMTIgQzI5LjkxNSwxNi45ODkgMjkuNzA1LDE2LjkyNCAyOS40NDcsMTYuOTI0IEMyOS4yMDYsMTYuOTI0IDI5LjAxMiwxNi45ODkgMjguODYxLDE3LjEyIEMyOC43MTMsMTcuMjUyIDI4LjYzNiwxNy40MjUgMjguNjM2LDE3LjYzOSBMMjguNjM2LDIyLjk2NiBDMjguNjM2LDIzLjIzMyAyOC43MDgsMjMuNDM5IDI4Ljg0NywyMy41ODggWiBNMjcuNDA4LDE1LjkwMyBDMjcuOTM2LDE1LjQ1NCAyOC42NDksMTUuMjI5IDI5LjU0LDE1LjIyOSBDMzAuMzUyLDE1LjIyOSAzMS4wMiwxNS40NjYgMzEuNTQxLDE1Ljk0IEMzMi4wNTgsMTYuNDEzIDMyLjMxOCwxNy4wMjMgMzIuMzE4LDE3Ljc2OCBMMzIuMzE4LDIyLjgxOSBDMzIuMzE4LDIzLjY1NSAzMi4wNjMsMjQuMzEgMzEuNTU2LDI0Ljc4NyBDMzEuMDQzLDI1LjI2MyAzMC4zNDQsMjUuNTAxIDI5LjQ1LDI1LjUwMSBDMjguNTkyLDI1LjUwMSAyNy45MDMsMjUuMjU1IDI3LjM4NiwyNC43NjUgQzI2Ljg3MywyNC4yNzMgMjYuNjE0LDIzLjYxMiAyNi42MTQsMjIuNzgxIEwyNi42MTQsMTcuNzEzIEMyNi42MTMsMTYuOTU0IDI2Ljg3NywxNi4zNTEgMjcuNDA4LDE1LjkwMyBaIE0yMS4yNjIsMTIgTDE5LjAzMywxMiBMMjEuNjY3LDIwLjAwMyBMMjEuNjY3LDI1LjI1NSBMMjMuODgsMjUuMjU1IEwyMy44OCwxOS43NTUgTDI2LjQ1NCwxMiBMMjQuMjA0LDEyIEwyMi44MzgsMTcuMjk4IEwyMi42OTksMTcuMjk4IEwyMS4yNjIsMTIgWiBNLTcuMTA1NDI3MzZlLTE1LDEuMDY1ODE0MWUtMTQgTDYwLDEuMDY1ODE0MWUtMTQgTDYwLDYwIEwtNy4xMDU0MjczNmUtMTUsNjAgTC03LjEwNTQyNzM2ZS0xNSwxLjA2NTgxNDFlLTE0IFoiIGlkPSJzdmdfMSI+PC9wYXRoPiAgICAgICAgICAgIDwvZz4gICAgICAgIDwvZz4gICAgICAgIDxnIGlkPSJ2aW1lbyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjk2LjAwMDAwMCwgLTUuMDAwMDAwKSI+ICAgICAgICAgICAgPGcgaWQ9ImJhY2tncm91bmQiPiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iY2FudmFzX2JhY2tncm91bmQiIHg9IjAiIHk9IjAiIHdpZHRoPSI1ODIiIGhlaWdodD0iNDAyIj48L3JlY3Q+ICAgICAgICAgICAgPC9nPiAgICAgICAgICAgIDxnIGlkPSJMYXllci0xIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0LjAwMDAwMCwgNS4wMDAwMDApIiBmaWxsPSIjRDhEN0Q4Ij4gICAgICAgICAgICAgICAgPHBhdGggZD0iTTE0LjU1NywyNS4xMDYgQzE0LjU1NywyNS4xMDYgMTcuMzczLDIyLjg4NiAxOC4zMTIsMjMuOTk2IEMxOS4yNSwyNS4xMDYgMjIuODMzLDM4LjUwNSAyNC4wMyw0MC45NzYgQzI1LjA3NCw0My4xNDQgMjcuOTU0LDQ2LjAwOSAzMS4xMTEsNDMuOTYyIEMzNC4yNjcsNDEuOTE2IDQ0Ljc2MywzMi45NTUgNDYuNjQxLDIyLjM3NCBDNDguNTE5LDExLjc5NSAzNC4wMTEsMTQuMDExIDMyLjQ3NSwyMy4yMjggQzM2LjMxNiwyMC45MjIgMzguMzY2LDI0LjE2NCAzNi40MDEsMjcuODM2IEMzNC40MzksMzEuNTA0IDMyLjY0NiwzMy44OTYgMzEuNzA4LDMzLjg5NiBDMzAuNzcxLDMzLjg5NiAzMC4wNSwzMS40NDEgMjguOTc3LDI3LjE1MSBDMjcuODY4LDIyLjcxNiAyNy44NzQsMTQuNzI3IDIzLjI2MSwxNS42MzMgQzE4LjkxLDE2LjQ4NyAxMy4xOTMsMjMuMzE0IDEzLjE5MywyMy4zMTQgTDE0LjU1NywyNS4xMDYgWiBNLTEuNzc2MzU2ODRlLTE1LDAgTDYwLDAgTDYwLDYwIEwtMS43NzYzNTY4NGUtMTUsNjAgTC0xLjc3NjM1Njg0ZS0xNSwwIFoiIGlkPSJzdmdfMSI+PC9wYXRoPiAgICAgICAgICAgIDwvZz4gICAgICAgIDwvZz4gICAgICAgIDxnIGlkPSJlbWFpbCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzU2LjAwMDAwMCwgLTUuMDAwMDAwKSI+ICAgICAgICAgICAgPGcgaWQ9ImJhY2tncm91bmQiIGZpbGw9IiNEOEQ4RDgiPiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iY2FudmFzX2JhY2tncm91bmQiIHg9IjAiIHk9IjAiIHdpZHRoPSI1ODIiIGhlaWdodD0iNDAyIj48L3JlY3Q+ICAgICAgICAgICAgPC9nPiAgICAgICAgICAgIDxnIGlkPSJtYWlsIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMi4wMDAwMDAsIDE5LjAwMDAwMCkiIGZpbGw9IiMwMDAwMDAiIGZpbGwtcnVsZT0ibm9uemVybyI+ICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zOC4wNjI0NzI2LDEuMjY1NjY5MmUtMTUgTDMuOTM3NTI3NCwxLjI2NTY2OTJlLTE1IEMxLjc2NjI0MTI1LDEuMjY1NjY5MmUtMTUgMCwxLjc5NDI3NDMzIDAsNC4wMDAwMjIyNyBMMCwyNy45OTk5Nzc3IEMwLDMwLjIwNTcyNTcgMS43NjYyNDEyNSwzMiAzLjkzNzUyNzQsMzIgTDM4LjA2MjQ3MjYsMzIgQzQwLjIzMzc1ODgsMzIgNDIsMzAuMjA1NzI1NyA0MiwyNy45OTk5Nzc3IEw0Miw0LjAwMDAyMjI3IEM0MiwxLjc5NDI3NDMzIDQwLjIzMzc1ODgsMCAzOC4wNjI0NzI2LDEuMjY1NjY5MmUtMTUgWiBNMzguMDYyNDcyNiwyLjY2NjY1MTgyIEMzOC4yNDA3OTc2LDIuNjY2NjUxODIgMzguNDEwNDQzLDIuNzA0MjM2NjQgMzguNTY1NTM0OSwyLjc2OTg3NjQ4IEwyMSwxOC4yMzU2NzMzIEwzLjQzNDM3NzQ3LDIuNzY5ODc2NDggQzMuNTg5NDY5MzMsMi43MDQzMjU3MSAzLjc1OTExNDc2LDIuNjY2NjUxODIgMy45Mzc0Mzk3MywyLjY2NjY1MTgyIEwzOC4wNjI0NzI2LDIuNjY2NjUxODIgWiBNMzguMDYyNDcyNiwyOS4zMzMyNTkxIEwzLjkzNzUyNzQsMjkuMzMzMjU5MSBDMy4yMTMzNTYyMSwyOS4zMzMyNTkxIDIuNjI0OTg5MDQsMjguNzM1NjQyNyAyLjYyNDk4OTA0LDI3Ljk5OTg4ODcgTDIuNjI0OTg5MDQsNS41ODcyMjM4MyBMMjAuMTM5OTM3MSwyMS4wMDc3NzY0IEMyMC4zODczNDc3LDIxLjIyNTE4MDUgMjAuNjkzNjczOCwyMS4zMzMzMDM2IDIxLDIxLjMzMzMwMzYgQzIxLjMwNjMyNjIsMjEuMzMzMzAzNiAyMS42MTI2NTIzLDIxLjIyNTI2OTYgMjEuODYwMDYyOSwyMS4wMDc3NzY0IEwzOS4zNzUwMTEsNS41ODcyMjM4MyBMMzkuMzc1MDExLDI3Ljk5OTk3NzcgQzM5LjM3NDkyMzMsMjguNzM1NjQyNyAzOC43ODY2NDM4LDI5LjMzMzI1OTEgMzguMDYyNDcyNiwyOS4zMzMyNTkxIFoiIGlkPSJTaGFwZSI+PC9wYXRoPiAgICAgICAgICAgIDwvZz4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==) no-repeat;
  background-size: 280px;
}
.widget_social_block li a.social-facebook {
  background-position: 0 0;
}
.widget_social_block li a.social-twitter {
  background-position: -40px 0;
}
.widget_social_block li a.social-linkedin {
  background-position: -80px 0;
}
.widget_social_block li a.social-instagram {
  background-position: -120px 0;
}
.widget_social_block li a.social-youtube {
  background-position: -160px 0;
}
.widget_social_block li a.social-vimeo {
  background-position: -200px 0;
}
.widget_social_block li a.social-email {
  background-position: -240px 0;
}
.widget_social_block li a:hover {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSI0MjBweCIgaGVpZ2h0PSI2MHB4IiB2aWV3Qm94PSIwIDAgNDIwIDYwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPiAgICAgICAgPHRpdGxlPnNvY2lhbF9idXR0b25zX2hvdmVyPC90aXRsZT4gICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+ICAgIDxnIGlkPSJzb2NpYWxfYnV0dG9uc19ob3ZlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8cmVjdCBmaWxsPSIjRkZGRkZGIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDIwIiBoZWlnaHQ9IjYwIj48L3JlY3Q+ICAgICAgICA8ZyBpZD0iZW1haWwiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM2MC4wMDAwMDAsIC0xLjAwMDAwMCkiPiAgICAgICAgICAgIDxnIGlkPSJiYWNrZ3JvdW5kIiBmaWxsPSIjRDUxMzE3Ij4gICAgICAgICAgICAgICAgPHJlY3QgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiB4PSIwIiB5PSIwIiB3aWR0aD0iNTgyIiBoZWlnaHQ9IjQwMiI+PC9yZWN0PiAgICAgICAgICAgIDwvZz4gICAgICAgICAgICA8ZyBpZD0ibWFpbCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOC4wMDAwMDAsIDE1LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+ICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zOC4wNjI0NzI2LDEuMjY1NjY5MmUtMTUgTDMuOTM3NTI3NCwxLjI2NTY2OTJlLTE1IEMxLjc2NjI0MTI1LDEuMjY1NjY5MmUtMTUgMCwxLjc5NDI3NDMzIDAsNC4wMDAwMjIyNyBMMCwyNy45OTk5Nzc3IEMwLDMwLjIwNTcyNTcgMS43NjYyNDEyNSwzMiAzLjkzNzUyNzQsMzIgTDM4LjA2MjQ3MjYsMzIgQzQwLjIzMzc1ODgsMzIgNDIsMzAuMjA1NzI1NyA0MiwyNy45OTk5Nzc3IEw0Miw0LjAwMDAyMjI3IEM0MiwxLjc5NDI3NDMzIDQwLjIzMzc1ODgsMCAzOC4wNjI0NzI2LDEuMjY1NjY5MmUtMTUgWiBNMzguMDYyNDcyNiwyLjY2NjY1MTgyIEMzOC4yNDA3OTc2LDIuNjY2NjUxODIgMzguNDEwNDQzLDIuNzA0MjM2NjQgMzguNTY1NTM0OSwyLjc2OTg3NjQ4IEwyMSwxOC4yMzU2NzMzIEwzLjQzNDM3NzQ3LDIuNzY5ODc2NDggQzMuNTg5NDY5MzMsMi43MDQzMjU3MSAzLjc1OTExNDc2LDIuNjY2NjUxODIgMy45Mzc0Mzk3MywyLjY2NjY1MTgyIEwzOC4wNjI0NzI2LDIuNjY2NjUxODIgWiBNMzguMDYyNDcyNiwyOS4zMzMyNTkxIEwzLjkzNzUyNzQsMjkuMzMzMjU5MSBDMy4yMTMzNTYyMSwyOS4zMzMyNTkxIDIuNjI0OTg5MDQsMjguNzM1NjQyNyAyLjYyNDk4OTA0LDI3Ljk5OTg4ODcgTDIuNjI0OTg5MDQsNS41ODcyMjM4MyBMMjAuMTM5OTM3MSwyMS4wMDc3NzY0IEMyMC4zODczNDc3LDIxLjIyNTE4MDUgMjAuNjkzNjczOCwyMS4zMzMzMDM2IDIxLDIxLjMzMzMwMzYgQzIxLjMwNjMyNjIsMjEuMzMzMzAzNiAyMS42MTI2NTIzLDIxLjIyNTI2OTYgMjEuODYwMDYyOSwyMS4wMDc3NzY0IEwzOS4zNzUwMTEsNS41ODcyMjM4MyBMMzkuMzc1MDExLDI3Ljk5OTk3NzcgQzM5LjM3NDkyMzMsMjguNzM1NjQyNyAzOC43ODY2NDM4LDI5LjMzMzI1OTEgMzguMDYyNDcyNiwyOS4zMzMyNTkxIFoiIGlkPSJTaGFwZSI+PC9wYXRoPiAgICAgICAgICAgIDwvZz4gICAgICAgIDwvZz4gICAgICAgIDxnIGlkPSJmYWNlYm9vay1yZWQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00LjAwMDAwMCwgLTUuMDAwMDAwKSI+ICAgICAgICAgICAgPGcgaWQ9ImJhY2tncm91bmQiPiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iY2FudmFzX2JhY2tncm91bmQiIHg9IjAiIHk9IjAiIHdpZHRoPSI1ODIiIGhlaWdodD0iNDAyIj48L3JlY3Q+ICAgICAgICAgICAgPC9nPiAgICAgICAgICAgIDxnIGlkPSJMYXllci0xIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0LjAwMDAwMCwgNS4wMDAwMDApIiBmaWxsPSIjRDUxMzE3Ij4gICAgICAgICAgICAgICAgPHBhdGggZD0iTTI1Ljc2NSw0Ni4zMTkgTDMyLjUwOSw0Ni4zMTkgTDMyLjUwOSwyOS45OTggTDM3LjAwOCwyOS45OTggTDM3LjYwNCwyNC4zNzQgTDMyLjUwOSwyNC4zNzQgTDMyLjUxNiwyMS41NTggQzMyLjUxNiwyMC4wOTIgMzIuNjU2LDE5LjMwNSAzNC43NiwxOS4zMDUgTDM3LjU3MiwxOS4zMDUgTDM3LjU3MiwxMy42OCBMMzMuMDcyLDEzLjY4IEMyNy42NjcsMTMuNjggMjUuNzY1LDE2LjQwOSAyNS43NjUsMjAuOTk3IEwyNS43NjUsMjQuMzc0IEwyMi4zOTYsMjQuMzc0IEwyMi4zOTYsMjkuOTk5IEwyNS43NjUsMjkuOTk5IEwyNS43NjUsNDYuMzE5IFogTTAsMCBMNjAsMCBMNjAsNjAgTDAsNjAgTDAsMCBaIiBpZD0ic3ZnXzEiPjwvcGF0aD4gICAgICAgICAgICA8L2c+ICAgICAgICA8L2c+ICAgICAgICA8ZyBpZD0idHdpdHRlci1yZWQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDU2LjAwMDAwMCwgLTUuMDAwMDAwKSI+ICAgICAgICAgICAgPGcgaWQ9ImJhY2tncm91bmQiPiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iY2FudmFzX2JhY2tncm91bmQiIHg9IjAiIHk9IjAiIHdpZHRoPSI1ODIiIGhlaWdodD0iNDAyIj48L3JlY3Q+ICAgICAgICAgICAgPC9nPiAgICAgICAgICAgIDxnIGlkPSJMYXllci0xIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0LjAwMDAwMCwgNS4wMDAwMDApIiBmaWxsPSIjRDUxMzE3Ij4gICAgICAgICAgICAgICAgPHBhdGggZD0iTTM0LjE2NywxOC4yODMgQzMxLjU0OCwxOS4yMzYgMjkuODkzLDIxLjY5NCAzMC4wODEsMjQuMzg0IEwzMC4xNDQsMjUuNDIyIEwyOS4wOTYsMjUuMjk1IEMyNS4yODMsMjQuODA4IDIxLjk1MSwyMy4xNTYgMTkuMTIyLDIwLjM4IEwxNy43MzksMTkuMDAzIEwxNy4zODMsMjAuMDIgQzE2LjYyOSwyMi4yODcgMTcuMTExLDI0LjY4MSAxOC42ODIsMjYuMjkxIEMxOS41MiwyNy4xODEgMTkuMzMxLDI3LjMwOCAxNy44ODYsMjYuNzc4IEMxNy4zODMsMjYuNjA5IDE2Ljk0MywyNi40ODIgMTYuOTAxLDI2LjU0NSBDMTYuNzU1LDI2LjY5NCAxNy4yNTcsMjguNjIxIDE3LjY1NSwyOS4zODQgQzE4LjIsMzAuNDQ0IDE5LjMxLDMxLjQ4MSAyMC41MjYsMzIuMDk2IEwyMS41NTMsMzIuNTgzIEwyMC4zMzgsMzIuNjA0IEMxOS4xNjUsMzIuNjA0IDE5LjEyMywzMi42MjUgMTkuMjQ5LDMzLjA3MSBDMTkuNjY4LDM0LjQ0OCAyMS4zMjMsMzUuOTEgMjMuMTY3LDM2LjU0NiBMMjQuNDY2LDM2Ljk5IEwyMy4zMzUsMzcuNjY4IEMyMS42NTksMzguNjQ0IDE5LjY4OSwzOS4xOTQgMTcuNzE5LDM5LjIzNSBDMTYuNzc1LDM5LjI1NiAxNiwzOS4zNDEgMTYsMzkuNDA1IEMxNiwzOS42MTYgMTguNTU3LDQwLjgwMiAyMC4wNDQsNDEuMjY5IEMyNC41MDcsNDIuNjQ2IDI5LjgwOSw0Mi4wNTIgMzMuNzksMzkuNzAxIEMzNi42MTksMzguMDI3IDM5LjQ0NywzNC43MDEgNDAuNzY4LDMxLjQ4IEM0MS40ODEsMjkuNzY1IDQyLjE5MywyNi42MjkgNDIuMTkzLDI1LjEyNiBDNDIuMTkzLDI0LjE1MSA0Mi4yNTYsMjQuMDI0IDQzLjQyOSwyMi44NTkgQzQ0LjEyMSwyMi4xODEgNDQuNzcsMjEuNDQgNDQuODk2LDIxLjIyOCBDNDUuMTA2LDIwLjgyNSA0NS4wODQsMjAuODI1IDQ0LjAxNiwyMS4xODUgQzQyLjIzNSwyMS44MjEgNDEuOTgzLDIxLjczNiA0Mi44NjQsMjAuNzgzIEM0My41MTMsMjAuMTA1IDQ0LjI4OSwxOC44NzYgNDQuMjg5LDE4LjUxNiBDNDQuMjg5LDE4LjQ1MyA0My45NzUsMTguNTU4IDQzLjYxOCwxOC43NDkgQzQzLjI0MSwxOC45NjEgNDIuNDAzLDE5LjI3OSA0MS43NzQsMTkuNDY5IEw0MC42NDMsMTkuODMgTDM5LjYxNiwxOS4xMyBDMzkuMDUsMTguNzQ5IDM4LjI1NSwxOC4zMjUgMzcuODM1LDE4LjE5OCBDMzYuNzY2LDE3LjkwMiAzNS4xMzEsMTcuOTQ0IDM0LjE2NywxOC4yODMgWiBNMCwwIEw2MCwwIEw2MCw2MCBMMCw2MCBMMCwwIFoiIGlkPSJzdmdfMSI+PC9wYXRoPiAgICAgICAgICAgIDwvZz4gICAgICAgIDwvZz4gICAgICAgIDxnIGlkPSJsaW5rZWRpbi1yZWQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDExNi4wMDAwMDAsIC01LjAwMDAwMCkiPiAgICAgICAgICAgIDxnIGlkPSJiYWNrZ3JvdW5kIj4gICAgICAgICAgICAgICAgPHJlY3QgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiB4PSIwIiB5PSIwIiB3aWR0aD0iNTgyIiBoZWlnaHQ9IjQwMiI+PC9yZWN0PiAgICAgICAgICAgIDwvZz4gICAgICAgICAgICA8ZyBpZD0iTGF5ZXItMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNC4wMDAwMDAsIDUuMDAwMDAwKSIgZmlsbD0iI0Q1MTMxNyI+ICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik00Ni44MzcsNDQuMTM3IEw0Ni44MzcsMzIuNDI1IEM0Ni44MzcsMjYuMTUgNDMuNDg3LDIzLjIzIDM5LjAyMSwyMy4yMyBDMzUuNDE3LDIzLjIzIDMzLjgwMiwyNS4yMTMgMzIuOTAyLDI2LjYwNCBMMzIuOTAyLDIzLjcxIEwyNi4xMTIsMjMuNzEgQzI2LjIwMiwyNS42MjcgMjYuMTEyLDQ0LjEzNyAyNi4xMTIsNDQuMTM3IEwzMi45MDIsNDQuMTM3IEwzMi45MDIsMzIuNzI5IEMzMi45MDIsMzIuMTIgMzIuOTQ2LDMxLjUxIDMzLjEyNiwzMS4wNzQgQzMzLjYxNiwyOS44NTQgMzQuNzMzLDI4LjU5MSAzNi42MDgsMjguNTkxIEMzOS4wNjYsMjguNTkxIDQwLjA0OCwzMC40NjQgNDAuMDQ4LDMzLjIwOSBMNDAuMDQ4LDQ0LjEzOCBMNDYuODM3LDQ0LjEzOCBMNDYuODM3LDQ0LjEzNyBaIE0xOC45NTksMjAuOTIyIEMyMS4zMjYsMjAuOTIyIDIyLjgwMSwxOS4zNTIgMjIuODAxLDE3LjM5MSBDMjIuNzU3LDE1LjM4OCAyMS4zMjYsMTMuODYzIDE5LjAwNCwxMy44NjMgQzE2LjY4MiwxMy44NjMgMTUuMTYzLDE1LjM4NyAxNS4xNjMsMTcuMzkxIEMxNS4xNjMsMTkuMzUyIDE2LjYzNywyMC45MjIgMTguOTE2LDIwLjkyMiBMMTguOTU5LDIwLjkyMiBaIE0yMi4zNTQsNDQuMTM3IEwyMi4zNTQsMjMuNzEgTDE1LjU2NSwyMy43MSBMMTUuNTY1LDQ0LjEzNyBMMjIuMzU0LDQ0LjEzNyBaIE0wLDAgTDYwLDAgTDYwLDYwIEwwLDYwIEwwLDAgWiIgaWQ9InN2Z18xIj48L3BhdGg+ICAgICAgICAgICAgPC9nPiAgICAgICAgPC9nPiAgICAgICAgPGcgaWQ9Imluc3RhZ3JhbS1yZWQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE3Ni4wMDAwMDAsIC01LjAwMDAwMCkiPiAgICAgICAgICAgIDxnIGlkPSJiYWNrZ3JvdW5kIj4gICAgICAgICAgICAgICAgPHJlY3QgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiB4PSIwIiB5PSIwIiB3aWR0aD0iNTgyIiBoZWlnaHQ9IjQwMiI+PC9yZWN0PiAgICAgICAgICAgIDwvZz4gICAgICAgICAgICA8ZyBpZD0iTGF5ZXItMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNC4wMDAwMDAsIDUuMDAwMDAwKSIgZmlsbD0iI0Q1MTMxNyI+ICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik00MS4yNzEsMjIuNTc4IEw0MS4yNzEsMjIuNTcyIEM0MS43NzMsMjIuNTcyIDQyLjI3NiwyMi41ODIgNDIuNzc5LDIyLjU3IEM0My40MjUsMjIuNTU0IDQzLjk1MSwyMiA0My45NTEsMjEuMzUzIEM0My45NTEsMjAuMzkgNDMuOTUxLDE5LjQyNiA0My45NTEsMTguNDYzIEM0My45NTEsMTcuNzcyIDQzLjQwNCwxNy4yMjMgNDIuNzE1LDE3LjIyMiBDNDEuNzU0LDE3LjIyMiA0MC43OTMsMTcuMjIxIDM5LjgzMiwxNy4yMjIgQzM5LjE0NCwxNy4yMjMgMzguNTk2LDE3Ljc3NCAzOC41OTYsMTguNDY1IEMzOC41OTUsMTkuNDIgMzguNTkyLDIwLjM3NSAzOC41OTksMjEuMzMgQzM4LjYsMjEuNDczIDM4LjYyNywyMS42MjEgMzguNjcyLDIxLjc1NiBDMzguODQ1LDIyLjI2NCAzOS4zMTEsMjIuNTc2IDM5Ljg4MSwyMi41NzkgQzQwLjM0NCwyMi41NzkgNDAuODA4LDIyLjU3OCA0MS4yNzEsMjIuNTc4IFogTTMyLDIzLjgxNyBDMjguNjE2LDIzLjgxNSAyNS44NjUsMjYuNTM4IDI1LjgxOCwyOS45MDYgQzI1Ljc2OSwzMy4zNjYgMjguNTM4LDM2LjEwNyAzMS44NTgsMzYuMTc4IEMzNS4zMTIsMzYuMjUyIDM4LjEwNiwzMy40OTIgMzguMTc5LDMwLjEzNSBDMzguMjU0LDI2LjY3NSAzNS40NjIsMjMuODE1IDMyLDIzLjgxNyBaIE0yMC4wNDYsMjcuMTE2IEwyMC4wNDYsMjcuMTk4IEMyMC4wNDYsMzEuNzEzIDIwLjA0NSwzNi4yMjggMjAuMDQ2LDQwLjc0MyBDMjAuMDQ2LDQxLjM5MiAyMC42MDgsNDEuOTUxIDIxLjI1OCw0MS45NTEgQzI4LjQxOCw0MS45NTIgMzUuNTc3LDQxLjk1MiA0Mi43MzcsNDEuOTUxIEM0My4zOTMsNDEuOTUxIDQzLjk1Miw0MS4zOTQgNDMuOTUyLDQwLjczOSBDNDMuOTUzLDM2LjIzIDQzLjk1MiwzMS43MTkgNDMuOTUyLDI3LjIxMSBMNDMuOTUyLDI3LjExNyBMNDEuMDQsMjcuMTE3IEM0MS40NTEsMjguNDMxIDQxLjU3NywyOS43NjggNDEuNDE2LDMxLjEzMSBDNDEuMjU1LDMyLjQ5NCA0MC44MTUsMzMuNzYyIDQwLjEsMzQuOTM0IEMzOS4zODUsMzYuMTA2IDM4LjQ1NiwzNy4wNzkgMzcuMzIxLDM3Ljg1MiBDMzQuMzc3LDM5Ljg1OCAzMC41LDQwLjAzNCAyNy4zNzUsMzguMjggQzI1Ljc5NiwzNy4zOTUgMjQuNTU2LDM2LjE2IDIzLjY5LDM0LjU2NyBDMjIuNDAxLDMyLjE5NCAyMi4xOTUsMjkuNzAyIDIyLjk1MSwyNy4xMTYgQzIxLjk4MywyNy4xMTYgMjEuMDIxLDI3LjExNiAyMC4wNDYsMjcuMTE2IFogTTQ0LjIwNSw0NS4yNTUgQzQ0LjM2NCw0NS4yMjkgNDQuNTIzLDQ1LjIwNiA0NC42OCw0NS4xNzIgQzQ1LjkyNiw0NC45MDcgNDYuOTQ0LDQzLjg2OCA0Ny4xODgsNDIuNjE1IEM0Ny4yMTMsNDIuNDc4IDQ3LjIzMyw0Mi4zNDIgNDcuMjU1LDQyLjIwNiBMNDcuMjU1LDE3Ljc5NCBDNDcuMjM0LDE3LjY2MSA0Ny4yMTUsMTcuNTI2IDQ3LjE5LDE3LjM5MyBDNDYuOTIyLDE2LjAyNiA0NS43OTQsMTQuOTY1IDQ0LjQxLDE0Ljc3NSBDNDQuMzUyLDE0Ljc2OCA0NC4yOTcsMTQuNzU1IDQ0LjI0LDE0Ljc0NSBMMTkuNzYxLDE0Ljc0NSBDMTkuNjE0LDE0Ljc3MiAxOS40NjUsMTQuNzkyIDE5LjMyLDE0LjgyNSBDMTcuOTY4LDE1LjEzMyAxNi45NjgsMTYuMjIxIDE2Ljc3NSwxNy41OTEgQzE2Ljc2NywxNy42NDggMTYuNzU1LDE3LjcwNSAxNi43NDYsMTcuNzYyIEwxNi43NDYsNDIuMjQgQzE2Ljc3NCw0Mi4zOTQgMTYuNzk2LDQyLjU1MSAxNi44MzEsNDIuNzA1IEMxNy4xMyw0NC4wMjcgMTguMjU4LDQ1LjA1MiAxOS42MDEsNDUuMjI1IEMxOS42NjUsNDUuMjMzIDE5LjczMSw0NS4yNDYgMTkuNzk2LDQ1LjI1NSBMNDQuMjA1LDQ1LjI1NSBaIE0wLC03LjEwNTQyNzM2ZS0xNSBMNjAsLTcuMTA1NDI3MzZlLTE1IEw2MCw2MCBMMCw2MCBMMCwtNy4xMDU0MjczNmUtMTUgWiIgaWQ9InN2Z18xIj48L3BhdGg+ICAgICAgICAgICAgPC9nPiAgICAgICAgPC9nPiAgICAgICAgPGcgaWQ9InlvdXR1YmUtcmVkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMzYuMDAwMDAwLCAtNS4wMDAwMDApIj4gICAgICAgICAgICA8ZyBpZD0iYmFja2dyb3VuZCI+ICAgICAgICAgICAgICAgIDxyZWN0IGlkPSJjYW52YXNfYmFja2dyb3VuZCIgeD0iMCIgeT0iMCIgd2lkdGg9IjU4MiIgaGVpZ2h0PSI0MDIiPjwvcmVjdD4gICAgICAgICAgICA8L2c+ICAgICAgICAgICAgPGcgaWQ9IkxheWVyLTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuMDAwMDAwLCA1LjAwMDAwMCkiIGZpbGw9IiNENTEzMTciPiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMzkuNTI3LDM3LjM0IEMzOS4yNDksMzcuMzQgMzkuMDQ5LDM3LjQxOCAzOC45MjcsMzcuNTg0IEMzOC44MDYsMzcuNzQgMzguNzQ3LDM4LjAwOCAzOC43NDcsMzguMzggTDM4Ljc0NywzOS4yNzYgTDQwLjI5LDM5LjI3NiBMNDAuMjksMzguMzggQzQwLjI5LDM4LjAwOCA0MC4yMjgsMzcuNzQgNDAuMTA1LDM3LjU4NCBDMzkuOTg5LDM3LjQxOCAzOS43OTIsMzcuMzQgMzkuNTI3LDM3LjM0IFogTTMzLjUwOSwzNy4zMDkgQzMzLjc0MywzNy4zMDkgMzMuOTI2LDM3LjM4NSAzNC4wNTMsMzcuNTM5IEMzNC4xNzYsMzcuNjkzIDM0LjIzOCwzNy45MjIgMzQuMjM4LDM4LjIyMSBMMzQuMjM4LDQyLjgwNSBDMzQuMjM4LDQzLjA5MSAzNC4xODUsNDMuMjkyIDM0LjA4NSw0My40MTYgQzMzLjk4NSw0My41NDMgMzMuODI5LDQzLjYwNSAzMy42MTUsNDMuNjA1IEMzMy40NjcsNDMuNjA1IDMzLjMyOCw0My41NzIgMzMuMTk0LDQzLjUwOSBDMzMuMDU5LDQzLjQ0NyAzMi45Miw0My4zMzggMzIuNzc5LDQzLjE5NiBMMzIuNzc5LDM3LjY2NSBDMzIuODk4LDM3LjU0MyAzMy4wMTgsMzcuNDUyIDMzLjEzOSwzNy4zOTQgQzMzLjI2LDM3LjMzNSAzMy4zODMsMzcuMzA5IDMzLjUwOSwzNy4zMDkgWiBNMzguNzQ4LDQwLjY1OCBMMzguNzQ4LDQyLjMzIEMzOC43NDgsNDIuNzk4IDM4LjgwNSw0My4xMjIgMzguOTE4LDQzLjMwNCBDMzkuMDM2LDQzLjQ4NSAzOS4yMzEsNDMuNTczIDM5LjUxLDQzLjU3MyBDMzkuNzk5LDQzLjU3MyA0MC4wMDEsNDMuNDk3IDQwLjExNiw0My4zNDQgQzQwLjIzLDQzLjE5MSA0MC4yOTEsNDIuODU1IDQwLjI5MSw0Mi4zMzEgTDQwLjI5MSw0MS45MjYgTDQyLjA4Niw0MS45MjYgTDQyLjA4Niw0Mi4zODIgQzQyLjA4Niw0My4yOTMgNDEuODY5LDQzLjk3OCA0MS40MjksNDQuNDQxIEM0MC45OTQsNDQuOSA0MC4zNCw0NS4xMjggMzkuNDcxLDQ1LjEyOCBDMzguNjksNDUuMTI4IDM4LjA3Myw0NC44ODYgMzcuNjI0LDQ0LjM5NyBDMzcuMTc2LDQzLjkxMSAzNi45NDgsNDMuMjQgMzYuOTQ4LDQyLjM4MyBMMzYuOTQ4LDM4LjM5NyBDMzYuOTQ4LDM3LjYyOSAzNy4xOTcsMzYuOTk5IDM3LjY5LDM2LjUxNSBDMzguMTgzLDM2LjAzIDM4LjgxOCwzNS43ODggMzkuNjAxLDM1Ljc4OCBDNDAuNCwzNS43ODggNDEuMDE0LDM2LjAxMyA0MS40NDQsMzYuNDYyIEM0MS44NzMsMzYuOTEgNDIuMDg2LDM3LjU1NSA0Mi4wODYsMzguMzk3IEw0Mi4wODYsNDAuNjYxIEwzOC43NDgsNDAuNjYxIEwzOC43NDgsNDAuNjU4IFogTTM1LjYyMyw0NC40OTUgQzM1LjM1Miw0NC44MzEgMzQuOTU0LDQ0Ljk5NiAzNC40MzYsNDQuOTk2IEMzNC4wOTMsNDQuOTk2IDMzLjc5LDQ0LjkzNCAzMy41MjQsNDQuODA0IEMzMy4yNTcsNDQuNjc1IDMzLjAwNSw0NC40NzcgMzIuNzc4LDQ0LjIwMyBMMzIuNzc4LDQ0Ljg4NCBMMzEuMDE0LDQ0Ljg4NCBMMzEuMDE0LDMyLjg1MiBMMzIuNzc4LDMyLjg1MiBMMzIuNzc4LDM2LjcyNyBDMzMuMDE1LDM2LjQ1NyAzMy4yNjMsMzYuMjQ5IDMzLjUyNiwzNi4xMSBDMzMuNzkzLDM1Ljk2OCAzNC4wNiwzNS44OTkgMzQuMzMxLDM1Ljg5OSBDMzQuODg1LDM1Ljg5OSAzNS4zMDYsMzYuMDg4IDM1LjU5NiwzNi40NjQgQzM1Ljg5LDM2Ljg0MyAzNi4wMzQsMzcuMzk3IDM2LjAzNCwzOC4xMjQgTDM2LjAzNCw0My4wNSBDMzYuMDM0LDQzLjY3OCAzNS44OTcsNDQuMTU5IDM1LjYyMyw0NC40OTUgWiBNMjcuOTU4LDQ0Ljg4NCBMMjcuOTU4LDQzLjkwOCBDMjcuNjMzLDQ0LjI2OSAyNy4zLDQ0LjU0NCAyNi45NDksNDQuNzMgQzI2LjYsNDQuOTIxIDI2LjI2Myw0NS4wMTIgMjUuOTM1LDQ1LjAxMiBDMjUuNTMsNDUuMDEyIDI1LjIzLDQ0Ljg4MyAyNS4wMjIsNDQuNjE2IEMyNC44MjEsNDQuMzUgMjQuNzE3LDQzLjk1OCAyNC43MTcsNDMuNDI3IEwyNC43MTcsMzYuMDA1IEwyNi40NjEsMzYuMDA1IEwyNi40NjEsNDIuODE0IEMyNi40NjEsNDMuMDI1IDI2LjQ5OCw0My4xNzYgMjYuNTY4LDQzLjI3MSBDMjYuNjQ1LDQzLjM2NiAyNi43NjQsNDMuNDEyIDI2LjkyNiw0My40MTIgQzI3LjA1NCw0My40MTIgMjcuMjE4LDQzLjM1IDI3LjQxNCw0My4yMjQgQzI3LjYxMSw0My4wOTkgMjcuNzg5LDQyLjk0MSAyNy45NTYsNDIuNzQ5IEwyNy45NTYsMzYuMDA1IEwyOS43LDM2LjAwNSBMMjkuNyw0NC44ODMgTDI3Ljk1OCw0NC44ODMgTDI3Ljk1OCw0NC44ODQgWiBNMjEuOTE2LDM0LjYgTDIxLjkxNiw0NC44ODQgTDE5Ljk0OCw0NC44ODQgTDE5Ljk0OCwzNC42IEwxNy45MTQsMzQuNiBMMTcuOTE0LDMyLjg1MiBMMjMuOTUsMzIuODUyIEwyMy45NSwzNC42IEwyMS45MTYsMzQuNiBaIE0yOS45OTQsMjguOTc4IEMyOS45OTQsMjguOTc3IDQyLjA3NCwyOC45OTYgNDMuNTA4LDMwLjQyOCBDNDQuOTQ3LDMxLjg2MyA0NC45NjMsMzguOTQyIDQ0Ljk2MywzOC45ODMgQzQ0Ljk2MywzOC45ODMgNDQuOTUxLDQ2LjEgNDMuNTA4LDQ3LjUzOSBDNDIuMDc0LDQ4Ljk2OSAyOS45OTQsNDkgMjkuOTk0LDQ5IEMyOS45OTQsNDkgMTcuOTE1LDQ4Ljk2OSAxNi40NzgsNDcuNTM4IEMxNS4wNCw0Ni4xMDMgMTUuMDM3LDM5LjAzNiAxNS4wMzcsMzguOTgyIEMxNS4wMzcsMzguOTQxIDE1LjA0MSwzMS44NjIgMTYuNDc4LDMwLjQyNyBDMTcuOTE2LDI4Ljk5NiAyOS45OTQsMjguOTc3IDI5Ljk5NCwyOC45NzggWiBNMzkuNTIsMjUuMjU1IEwzNy41NTQsMjUuMjU1IEwzNy41NTQsMjQuMTc1IEMzNy4xOTYsMjQuNTcyIDM2LjgxOCwyNC44NzggMzYuNDI0LDI1LjA4NCBDMzYuMDMyLDI1LjI5MiAzNS42NTMsMjUuMzk2IDM1LjI4NCwyNS4zOTYgQzM0LjgyNiwyNS4zOTYgMzQuNDg3LDI1LjI1IDM0LjI1NywyNC45NTkgQzM0LjAyOCwyNC42NjggMzMuOTEyLDI0LjIzMiAzMy45MTIsMjMuNjQ4IEwzMy45MTIsMTUuNDc2IEwzNS44NzQsMTUuNDc2IEwzNS44NzQsMjIuOTczIEMzNS44NzQsMjMuMjA0IDM1LjkxOSwyMy4zNzIgMzYuMDAxLDIzLjQ3NSBDMzYuMDgxLDIzLjU3OSAzNi4yMTcsMjMuNjMxIDM2LjQsMjMuNjMxIEMzNi41NDMsMjMuNjMxIDM2LjcyNywyMy41NjIgMzYuOTQ4LDIzLjQyNSBDMzcuMTY4LDIzLjI4OCAzNy4zNzEsMjMuMTEzIDM3LjU1MywyMi44OTggTDM3LjU1MywxNS40NzYgTDM5LjUxOSwxNS40NzYgTDM5LjUxOSwyNS4yNTUgTDM5LjUyLDI1LjI1NSBaIE0yOC44NDcsMjMuNTg4IEMyOC45ODYsMjMuNzM1IDI5LjE4NiwyMy44MDcgMjkuNDQ3LDIzLjgwNyBDMjkuNzEzLDIzLjgwNyAyOS45MjMsMjMuNzMyIDMwLjA4MSwyMy41ODQgQzMwLjIzOCwyMy40MzIgMzAuMzE2LDIzLjIyNiAzMC4zMTYsMjIuOTY2IEwzMC4zMTYsMTcuNjM5IEMzMC4zMTYsMTcuNDI1IDMwLjIzNiwxNy4yNTIgMzAuMDc1LDE3LjEyIEMyOS45MTUsMTYuOTg5IDI5LjcwNSwxNi45MjQgMjkuNDQ3LDE2LjkyNCBDMjkuMjA2LDE2LjkyNCAyOS4wMTIsMTYuOTg5IDI4Ljg2MSwxNy4xMiBDMjguNzEzLDE3LjI1MiAyOC42MzYsMTcuNDI1IDI4LjYzNiwxNy42MzkgTDI4LjYzNiwyMi45NjYgQzI4LjYzNiwyMy4yMzMgMjguNzA4LDIzLjQzOSAyOC44NDcsMjMuNTg4IFogTTI3LjQwOCwxNS45MDMgQzI3LjkzNiwxNS40NTQgMjguNjQ5LDE1LjIyOSAyOS41NCwxNS4yMjkgQzMwLjM1MiwxNS4yMjkgMzEuMDIsMTUuNDY2IDMxLjU0MSwxNS45NCBDMzIuMDU4LDE2LjQxMyAzMi4zMTgsMTcuMDIzIDMyLjMxOCwxNy43NjggTDMyLjMxOCwyMi44MTkgQzMyLjMxOCwyMy42NTUgMzIuMDYzLDI0LjMxIDMxLjU1NiwyNC43ODcgQzMxLjA0MywyNS4yNjMgMzAuMzQ0LDI1LjUwMSAyOS40NSwyNS41MDEgQzI4LjU5MiwyNS41MDEgMjcuOTAzLDI1LjI1NSAyNy4zODYsMjQuNzY1IEMyNi44NzMsMjQuMjczIDI2LjYxNCwyMy42MTIgMjYuNjE0LDIyLjc4MSBMMjYuNjE0LDE3LjcxMyBDMjYuNjEzLDE2Ljk1NCAyNi44NzcsMTYuMzUxIDI3LjQwOCwxNS45MDMgWiBNMjEuMjYyLDEyIEwxOS4wMzMsMTIgTDIxLjY2NywyMC4wMDMgTDIxLjY2NywyNS4yNTUgTDIzLjg4LDI1LjI1NSBMMjMuODgsMTkuNzU1IEwyNi40NTQsMTIgTDI0LjIwNCwxMiBMMjIuODM4LDE3LjI5OCBMMjIuNjk5LDE3LjI5OCBMMjEuMjYyLDEyIFogTS03LjEwNTQyNzM2ZS0xNSwxLjA2NTgxNDFlLTE0IEw2MCwxLjA2NTgxNDFlLTE0IEw2MCw2MCBMLTcuMTA1NDI3MzZlLTE1LDYwIEwtNy4xMDU0MjczNmUtMTUsMS4wNjU4MTQxZS0xNCBaIiBpZD0ic3ZnXzEiPjwvcGF0aD4gICAgICAgICAgICA8L2c+ICAgICAgICA8L2c+ICAgICAgICA8ZyBpZD0idmltZW8tcmVkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyOTYuMDAwMDAwLCAtNS4wMDAwMDApIj4gICAgICAgICAgICA8ZyBpZD0iYmFja2dyb3VuZCI+ICAgICAgICAgICAgICAgIDxyZWN0IGlkPSJjYW52YXNfYmFja2dyb3VuZCIgeD0iMCIgeT0iMCIgd2lkdGg9IjU4MiIgaGVpZ2h0PSI0MDIiPjwvcmVjdD4gICAgICAgICAgICA8L2c+ICAgICAgICAgICAgPGcgaWQ9IkxheWVyLTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuMDAwMDAwLCA1LjAwMDAwMCkiIGZpbGw9IiNENTEzMTciPiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTQuNTU3LDI1LjEwNiBDMTQuNTU3LDI1LjEwNiAxNy4zNzMsMjIuODg2IDE4LjMxMiwyMy45OTYgQzE5LjI1LDI1LjEwNiAyMi44MzMsMzguNTA1IDI0LjAzLDQwLjk3NiBDMjUuMDc0LDQzLjE0NCAyNy45NTQsNDYuMDA5IDMxLjExMSw0My45NjIgQzM0LjI2Nyw0MS45MTYgNDQuNzYzLDMyLjk1NSA0Ni42NDEsMjIuMzc0IEM0OC41MTksMTEuNzk1IDM0LjAxMSwxNC4wMTEgMzIuNDc1LDIzLjIyOCBDMzYuMzE2LDIwLjkyMiAzOC4zNjYsMjQuMTY0IDM2LjQwMSwyNy44MzYgQzM0LjQzOSwzMS41MDQgMzIuNjQ2LDMzLjg5NiAzMS43MDgsMzMuODk2IEMzMC43NzEsMzMuODk2IDMwLjA1LDMxLjQ0MSAyOC45NzcsMjcuMTUxIEMyNy44NjgsMjIuNzE2IDI3Ljg3NCwxNC43MjcgMjMuMjYxLDE1LjYzMyBDMTguOTEsMTYuNDg3IDEzLjE5MywyMy4zMTQgMTMuMTkzLDIzLjMxNCBMMTQuNTU3LDI1LjEwNiBaIE0tMS43NzYzNTY4NGUtMTUsMCBMNjAsMCBMNjAsNjAgTC0xLjc3NjM1Njg0ZS0xNSw2MCBMLTEuNzc2MzU2ODRlLTE1LDAgWiIgaWQ9InN2Z18xIj48L3BhdGg+ICAgICAgICAgICAgPC9nPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+) no-repeat;
  background-size: 280px;
}
.widget_social_block li a:hover.social-facebook {
  background-position: 0 0;
}
.widget_social_block li a:hover.social-twitter {
  background-position: -40px 0;
}
.widget_social_block li a:hover.social-linkedin {
  background-position: -80px 0;
}
.widget_social_block li a:hover.social-instagram {
  background-position: -120px 0;
}
.widget_social_block li a:hover.social-youtube {
  background-position: -160px 0;
}
.widget_social_block li a:hover.social-vimeo {
  background-position: -200px 0;
}
.widget_social_block li a:hover.social-email {
  background-position: -240px 0;
}

.related-items .related-members .contact-list {
  padding: 0;
}
.related-items .related-members .contact-list li {
  font-family: "MuseoSansRounded-700", sans-serif;
  margin-left: 0;
}

.external-links a {
  color: #D51317;
  font-family: "MuseoSansRounded-500", sans-serif;
}

.section-red .external-links a {
  color: white;
}

.widget_mailchimp_block .email {
  width: 100%;
  height: 32px;
  padding: 4px;
  font-size: 16px;
  text-transform: uppercase;
}
.widget_mailchimp_block .button {
  height: 32px;
  background-color: #D51317;
  font-family: "MuseoSansRounded-300", sans-serif;
  color: white;
  text-transform: uppercase;
  border: none;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
}
.widget_mailchimp_block .newsletter-button,
.widget_mailchimp_block .newsletter-input {
  display: inline;
  float: left;
}
.widget_mailchimp_block .newsletter-button input,
.widget_mailchimp_block .newsletter-input input {
  width: 100%;
}
.widget_mailchimp_block .newsletter-input {
  width: 69%;
}
@media only screen and (max-width: 599px) {
  .widget_mailchimp_block .newsletter-input {
    width: 67%;
  }
}
.widget_mailchimp_block .newsletter-input label {
  background: white;
}
.widget_mailchimp_block .newsletter-input input {
  background: transparent;
  text-transform: none;
}
.widget_mailchimp_block .newsletter-button {
  width: 29%;
  margin-left: 8px;
}
@media only screen and (max-width: 599px) {
  .widget_mailchimp_block .newsletter-button {
    width: 30%;
  }
}
.widget_mailchimp_block .newsletter-input label {
  padding-left: 0;
  text-indent: 0;
}
.widget_mailchimp_block input {
  -webkit-appearance: none;
  border-radius: 0;
}

.layover .widget_mailchimp_block .button {
  background-color: black;
}

#PopupSignupForm_0 {
  position: fixed;
  z-index: 999999;
}

.card-default {
  box-shadow: none;
}
.card-default a {
  text-decoration: none;
  color: #D51317;
  display: block;
}
.card-default .card-image {
  height: 250px;
}
.card-default .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card-default .card-content {
  background-color: #ffffff;
  padding: 16px;
  min-height: 120px;
  line-height: 1.5;
  white-space: normal;
}
.card-default .card-meta {
  font-size: 12px;
}
.card-default .card-meta .card-country {
  text-transform: uppercase;
  font-family: "MuseoSansRounded-900", sans-serif;
}
.card-default .card-meta span {
  font-family: "MuseoSansRounded-500", sans-serif;
  display: inline-block;
  margin-bottom: 4px;
}

.page-vacancies .card-meta,
.page-vacantes .card-meta,
.page-id-3471 .card-meta,
.page-id-3452 .card-meta,
.page-id-3524 .card-meta,
.stories-list .card-default .card-meta,
[data-tab-content=our-themes] .card-meta,
[data-tab-content=programs] .card-meta,
[data-tab-content=vacantes] .card-meta,
[data-tab-content=vacancies] .card-meta {
  display: none;
}

.card-vacancy-meta {
  display: none;
}

.page-vacancies .card-vacancy-meta,
.page-vacantes .card-vacancy-meta,
[data-tab-content=vacantes] .card-vacancy-meta,
[data-tab-content=vacancies] .card-vacancy-meta,
.page-id-3471 .card-vacancy-meta {
  display: block;
}

.single-relations .card-default {
  margin-bottom: 16px;
}

.card-vacancy {
  background: white;
  padding: 0 16px;
  margin-bottom: 16px;
}
.card-vacancy .card-content {
  padding: 0;
  color: black;
  display: inline-block;
  vertical-align: top;
  min-height: inherit;
  margin-bottom: 0;
}
@media only screen and (max-width: 599px) {
  .card-vacancy .card-content {
    padding: 0;
  }
}

@media only screen and (max-width: 599px) {
  .card-overview {
    padding: 0 16px;
  }
}
.card-overview .card-title {
  font-size: 2.2em;
  max-width: none;
  margin-bottom: 1em;
}
@media only screen and (max-width: 599px) {
  .card-overview .card-title {
    font-size: 1.6em;
    line-height: 1.2;
  }
}
.card-overview .card-title a {
  text-decoration: none;
}
.card-overview .card-summary {
  margin-top: 16px;
}

.archive .type-label {
  display: none;
}

.card-program.card-layover .image {
  height: 287px;
}
.card-program.card-layover .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card-program.card-layover .content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  top: auto;
  background-color: white;
  width: 100%;
  height: 70px;
  padding: 16px;
}
@media only screen and (max-width: 599px) {
  .card-program.card-layover .content {
    padding: 16px;
  }
}
.card-program.card-layover .content .title {
  color: #D51317;
  max-width: 100%;
  width: 100%;
  line-height: 1.3;
  font-size: 1.1rem;
  margin: 0;
  white-space: normal;
}
@media only screen and (max-width: 599px) {
  .card-program.card-layover .content .title {
    font-size: 1rem;
    font-family: "MuseoSansRounded-500", sans-serif;
  }
}

.card-contact {
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .card-contact {
    float: left;
  }
}
.card-contact .card-image {
  float: left;
  line-height: 0;
}
.card-contact .card-image img {
  width: 100%;
  height: 160px;
  width: 160px;
}
.card-contact .card-content.no-image {
  margin-left: 0;
}
.card-contact .card-content {
  position: relative;
  margin-left: 192px;
  color: #D51317;
  font-family: "MuseoSansRounded-500", sans-serif;
}
.card-contact .card-content .card-title {
  margin-bottom: 0;
  color: white;
}
.card-contact .card-content .card-title a {
  color: #D51317;
  text-decoration: none;
}
.card-contact .card-content a.mailto-link {
  color: #D51317;
}

.section-red .card-contact .card-content {
  color: white;
}
.section-red .card-contact .card-content .card-title a {
  color: white;
}
.section-red .card-contact .card-content a.mailto-link {
  color: white;
}

.card-resources .card-image {
  position: relative;
}
.card-resources .card-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background-color: #D51317;
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 11px;
  font-family: "MuseoSansRounded-500", sans-serif;
  cursor: pointer;
  line-height: 24px;
  font-size: 1rem;
  text-transform: uppercase;
}

.card-stories-side .image {
  line-height: 0;
  float: left;
  height: 450px;
  overflow: hidden;
  width: 60%;
}
@media only screen and (max-width: 599px) {
  .card-stories-side .image {
    height: auto;
    float: none;
    position: relative;
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .card-stories-side .image {
    width: 700px;
  }
}
.card-stories-side .image img {
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .card-stories-side .image img {
    object-fit: cover;
    min-height: 450px;
  }
}
.card-stories-side .body {
  float: left;
  position: relative;
  border-bottom: 1px solid #D51317;
  margin: 0 24px;
  padding: 24px 0;
  width: calc(40% - 48px);
}
@media only screen and (max-width: 599px) {
  .card-stories-side .body {
    height: auto;
    margin: 0 0 32px;
    padding: 24px 16px;
    width: 100%;
  }
}
@media only screen and (min-width: 600px) {
  .card-stories-side .body {
    height: 450px;
    padding: 24px 16px;
    border-top: 1px solid #D51317;
  }
}
@media only screen and (min-width: 1200px) {
  .card-stories-side .body {
    max-width: 410px;
  }
}
.card-stories-side .excerpt {
  color: black;
}
.card-stories-side .excerpt p {
  font-size: 17.6px;
}

.entry-content .card-stories-side h2.card-title {
  font-family: "MuseoSansRounded-500", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.entry-content .card-publication,
.card-publication {
  position: relative;
  min-height: 250px;
  border-bottom: 1px solid #D51317;
  padding: 16px;
}
@media only screen and (min-width: 600px) {
  .entry-content .card-publication,
.card-publication {
    display: flex;
  }
}
.entry-content .card-publication .card-image,
.entry-content .card-publication .card-content,
.card-publication .card-image,
.card-publication .card-content {
  display: inline-block;
  vertical-align: top;
}
.entry-content .card-publication .card-image,
.card-publication .card-image {
  flex: 1;
}
.entry-content .card-publication .card-image img,
.card-publication .card-image img {
  border: 1px solid #D8D7D8;
}
@media only screen and (max-width: 599px) {
  .entry-content .card-publication .card-image,
.card-publication .card-image {
    width: 20%;
  }
}
.entry-content .card-publication .card-content,
.card-publication .card-content {
  flex: 4;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 32px;
  color: black;
}
@media only screen and (max-width: 599px) {
  .entry-content .card-publication .card-content,
.card-publication .card-content {
    width: 78%;
    padding: 0 0 0 16px;
  }
}
@media only screen and (min-width: 600px) {
  .entry-content .card-publication .card-content,
.card-publication .card-content {
    display: flex;
  }
}
.entry-content .card-publication .card-title,
.card-publication .card-title {
  font-size: 1.5rem;
  margin: 0 0 16px;
  font-family: "MuseoSansRounded-700", sans-serif;
  font-weight: normal;
  color: #D51317;
}
@media only screen and (max-width: 599px) {
  .entry-content .card-publication .card-title,
.card-publication .card-title {
    font-size: 1.25rem;
  }
}
.entry-content .card-publication .card-meta-list,
.card-publication .card-meta-list {
  padding: 0;
  list-style-type: none;
}
.entry-content .card-publication .card-meta-list .document-label,
.card-publication .card-meta-list .document-label {
  font-family: "MuseoSansRounded-700", sans-serif;
}
.entry-content .card-publication .card-meta-list .meta-item,
.card-publication .card-meta-list .meta-item {
  margin: 0;
  display: block;
  width: 100%;
}
.entry-content .card-publication .card-downloads,
.card-publication .card-downloads {
  justify-content: space-between;
}
@media only screen and (max-width: 599px) {
  .entry-content .card-publication .card-downloads,
.card-publication .card-downloads {
    width: 100%;
    padding-left: calc(20% + 16px);
    margin-top: 16px;
  }
}
@media only screen and (min-width: 600px) {
  .entry-content .card-publication .card-downloads,
.card-publication .card-downloads {
    display: flex;
  }
}
.entry-content .card-publication .card-download-button a,
.card-publication .card-download-button a {
  text-decoration: none;
  text-transform: uppercase;
  color: #D51317;
  font-family: "MuseoSansRounded-700", sans-serif;
  font-size: 1.1rem;
}
.entry-content .card-publication .card-download-button a:before,
.card-publication .card-download-button a:before {
  content: "";
  display: inline-block;
  vertical-align: baseline;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/download-button.png);
  width: 26px;
  height: 22px;
  background-size: contain;
}
.entry-content .card-publication .card-more-info-button,
.card-publication .card-more-info-button {
  margin-top: 8px;
  padding: 0;
}
.entry-content .card-publication .card-more-info-button a,
.card-publication .card-more-info-button a {
  color: #D51317;
}
.entry-content .card-publication .card-more-info-button a:after,
.card-publication .card-more-info-button a:after {
  left: 8px;
}

.entry-content .card-publication-overview,
.card-publication-overview {
  border-bottom: 1px solid #D51317;
  padding: 32px 0;
}
@media only screen and (min-width: 600px) {
  .entry-content .card-publication-overview .card-image,
.entry-content .card-publication-overview .card-downloads,
.card-publication-overview .card-image,
.card-publication-overview .card-downloads {
    flex: 1;
  }
}
.entry-content .card-publication-overview .card-content,
.card-publication-overview .card-content {
  flex: 2;
}

.card-publication-shortcode {
  border-top: 1px solid #D51317;
}
.card-publication-shortcode .card-downloads {
  width: 100%;
}
.card-publication-shortcode .card-downloads .card-download-button,
.card-publication-shortcode .card-downloads .card-more-info-button {
  display: inline-block;
}
.card-publication-shortcode .card-downloads .card-download-button {
  margin-right: 32px;
}

.card-publication-single {
  border-top: 1px solid #D51317;
}
.card-publication-single:hover {
  background-color: #f2f2f2;
}
.card-publication-single .card-download-button a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.card-story-list .card-image {
  height: 250px;
  overflow: hidden;
}
.card-story-list .card-title .title {
  margin: 16px 0 0;
  text-transform: uppercase;
  font-size: 1em;
  color: #666666;
}
.card-story-list a {
  text-decoration: none;
}

.card-layover {
  position: relative;
  margin-bottom: 16px;
}
@media only screen and (max-width: 599px) {
  .card-layover {
    margin-bottom: 16px;
  }
}
.card-layover .image {
  line-height: 0;
}
.card-layover .content {
  position: absolute;
  bottom: 16px;
  left: 16px;
}
.card-layover .content .theme-title {
  max-width: 350px;
  font-family: "MuseoSansRounded-500", sans-serif;
  font-size: 1.5em;
  color: white;
  display: inline-block;
  padding: 8px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.4;
  margin: 0;
}
@media only screen and (min-width: 900px) {
  .card-layover .content .theme-title {
    font-size: 2em;
    line-height: 1.3;
  }
}
.card-layover .content .theme-title p {
  font-size: 24px;
  line-height: 1.3;
}
@media only screen and (min-width: 900px) {
  .card-layover .content .theme-title p {
    font-size: 40px;
    line-height: 1.3;
  }
}
.card-layover .content .theme-title span {
  padding: 2px;
  background-color: #D51317;
  box-shadow: 8px 0 0 #D51317, -8px 0 0 #D51317;
}

.card-people {
  text-align: center;
  color: white;
  position: relative;
}
.card-people .card-content-wrap {
  max-width: 360px;
  margin: 0 auto;
}
@media only screen and (max-width: 599px) {
  .card-people .card-content-wrap {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 599px) {
  .card-people .card-image {
    height: 415px;
  }
}
@media only screen and (min-width: 600px) {
  .card-people .card-image {
    height: 415px;
  }
}
.card-people .card-image img {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.card-people .card-content h3 {
  font-family: "MuseoSansRounded-500", sans-serif;
  font-size: 2.5em;
  margin: 0;
}
.card-people .card-link {
  font-family: "MuseoSansRounded-700", sans-serif;
  background: white;
  color: #D51317;
  text-decoration: none;
  position: absolute;
  bottom: 20px;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media only screen and (max-width: 599px) {
  .card-people .card-link {
    padding: 8px 16px;
    bottom: 16px;
  }
}
.card-people .card-content {
  padding-top: 32px;
  background: #D51317;
  padding-bottom: 78px;
}
@media only screen and (max-width: 599px) {
  .card-people .card-content {
    padding-top: 16px;
  }
}
@media only screen and (min-width: 900px) {
  .card-people .card-content {
    min-height: 220px;
  }
}
.card-people .card-content p {
  font-size: 2rem;
  font-family: "MuseoSansRounded-700", sans-serif;
  line-height: 1.3;
}
@media only screen and (max-width: 599px) {
  .card-people .card-content p {
    font-size: 32px;
  }
}
.card-people .card-image {
  position: relative;
}
.card-people .card-title {
  position: absolute;
  bottom: 16px;
  left: 32px;
  right: 32px;
  display: none;
  text-align: left;
  text-transform: uppercase;
  line-height: 1.1;
  word-break: break-word;
  font-family: "MuseoSansRounded-700", sans-serif;
}
@media only screen and (max-width: 599px) {
  .card-people .card-title {
    font-size: 2rem;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 600px) {
  .card-people .card-title {
    font-size: 2.5em;
  }
}
@media only screen and (min-width: 1200px) {
  .card-people .card-title {
    font-size: 3em;
  }
}
.card-people .card-title span {
  background-color: white;
  box-shadow: 16px 0 0 white, -16px 0 0 white;
}

.card-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}
.card-overlay a {
  text-decoration: none;
  color: #D51317;
}
@media only screen and (min-width: 600px) {
  .card-overlay a {
    color: white;
  }
}
.card-overlay a .card-title {
  max-width: 80%;
  font-size: 40px;
  line-height: 1.3;
  font-family: "MuseoSansRounded-700", sans-serif;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 599px) {
  .card-overlay a .card-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 600px) {
  .card-overlay a .card-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .card-overlay a .card-title {
    font-size: 40px;
  }
}
.card-overlay .card-image {
  width: 100%;
  display: block;
  overflow: hidden;
  height: 300px;
}
.card-overlay .card-image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
}
@media only screen and (min-width: 1200px) {
  .card-overlay .card-image {
    height: 100%;
  }
}
.card-overlay .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-overlay .card-body {
  position: relative;
  padding: 16px;
  background: white;
}
@media only screen and (min-width: 600px) {
  .card-overlay .card-body {
    position: absolute;
    background: transparent;
    bottom: 32px;
    left: 32px;
    right: 32px;
    padding: 0;
  }
}
.card-overlay .card-label {
  position: absolute;
  background: white;
  top: 32px;
  left: 32px;
  padding: 4px 8px;
  font-weight: 900;
  color: #D51317;
}

.post-list .card-overlay {
  max-height: 650px;
  overflow: hidden;
}

.entry-content .gform_wrapper {
  background: #e6e6e6;
  position: relative;
  padding: 32px 0 16px;
  margin-bottom: 0;
}
.entry-content .gform_wrapper:before, .entry-content .gform_wrapper:after {
  content: "";
  background: #e6e6e6;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.entry-content .gform_wrapper:before {
  left: -100%;
}
.entry-content .gform_wrapper:after {
  right: -100%;
}
.entry-content .gform_wrapper h3.gform_title {
  font-family: "MuseoSansRounded-700", sans-serif;
  font-size: 1.5em;
}
.entry-content .gform_wrapper .gfield_checkbox li label,
.entry-content .gform_wrapper .gfield_radio li label {
  text-indent: 0;
  position: relative;
  top: 3px;
}
.entry-content .gform_wrapper ul.gfield_checkbox li,
.entry-content .gform_wrapper ul.gfield_radio li {
  display: inline;
  margin-right: 16px;
}
.entry-content .gform_wrapper .gform_footer input.button,
.entry-content .gform_wrapper .gform_footer input[type=submit],
.entry-content .gform_wrapper .gform_page_footer input.button,
.entry-content .gform_wrapper .gform_page_footer input[type=submit] {
  padding: 8px 16px;
}

svg {
  touch-action: none;
}

.jvectormap-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  touch-action: none;
}

.jvectormap-tip {
  position: absolute;
  display: none;
  border: solid 1px #CDCDCD;
  border-radius: 3px;
  background: #292929;
  color: white;
  font-family: sans-serif, Verdana;
  font-size: smaller;
  padding: 3px;
}

.jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback {
  position: absolute;
  left: 10px;
  border-radius: 3px;
  background: #292929;
  padding: 3px;
  color: white;
  cursor: pointer;
  line-height: 10px;
  text-align: center;
  box-sizing: content-box;
}

.jvectormap-zoomin, .jvectormap-zoomout {
  width: 10px;
  height: 10px;
}

.jvectormap-zoomin {
  top: 10px;
}

.jvectormap-zoomout {
  top: 30px;
}

.jvectormap-goback {
  bottom: 10px;
  z-index: 1000;
  padding: 6px;
}

.jvectormap-spinner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: center no-repeat url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==);
}

.jvectormap-legend-title {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

.jvectormap-legend-cnt {
  position: absolute;
}

.jvectormap-legend-cnt-h {
  bottom: 0;
  right: 0;
}

.jvectormap-legend-cnt-v {
  top: 0;
  right: 0;
}

.jvectormap-legend {
  background: black;
  color: white;
  border-radius: 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend {
  float: left;
  margin: 0 10px 10px 0;
  padding: 3px 3px 1px 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick {
  float: left;
}

.jvectormap-legend-cnt-v .jvectormap-legend {
  margin: 10px 10px 0 0;
  padding: 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick {
  width: 40px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample {
  height: 15px;
}

.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample {
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
}

.jvectormap-legend-tick-text {
  font-size: 12px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick-text {
  text-align: center;
}

.jvectormap-legend-cnt-v .jvectormap-legend-tick-text {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
  padding-left: 3px;
}

.tooltip-container {
  position: absolute;
  bottom: 32px;
  right: 48px;
}
.tooltip-container .tooltip-content {
  background: white;
  color: black;
  cursor: pointer;
  font-size: 1.8em;
  line-height: 1.2;
  padding: 0.2em;
  position: relative;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  /* webkit flicker fix */
  -webkit-font-smoothing: antialiased;
  /* webkit text rendering fix */
  background-image: url("../img/info-sprite.png");
  background-position: 0 39px;
}
@media only screen and (max-width: 599px) {
  .tooltip-container .tooltip-content {
    width: 25px;
    height: 25px;
    font-size: 1rem;
    background-position: -7px 30px;
  }
}
.tooltip-container .tooltip-content.active {
  background-position: 0 1px;
}
@media only screen and (max-width: 599px) {
  .tooltip-container .tooltip-content.active {
    background-position: -7px -7px;
  }
}
.tooltip-container .tooltip-content .tooltip {
  background: white;
  bottom: 100%;
  color: black;
  display: block;
  right: -16px;
  margin-bottom: 15px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  width: 150px;
  font-size: 1rem;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}
@media only screen and (max-width: 599px) {
  .tooltip-container .tooltip-content .tooltip {
    font-size: 12px;
    width: 100px;
  }
}
.tooltip-container .tooltip-content .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}
.tooltip-container .tooltip-content .tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid white 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  right: -5px;
  margin-right: 32px;
  position: absolute;
  width: 0;
}
.tooltip-container .tooltip-content .tooltip.active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.reasons-why {
  background-color: #D51317;
  color: white;
  padding: 16px 0;
}
@media only screen and (min-width: 900px) {
  .reasons-why {
    padding: 64px 0;
  }
}
.reasons-why .reason-title {
  text-transform: uppercase;
  font-family: "MuseoSansRounded-500", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
.reasons-why .reason-content p {
  font-size: 16px;
}
@media only screen and (min-width: 900px) {
  .reasons-why .reason-content p {
    font-size: 40px;
  }
}

.reason-text {
  display: none;
  padding: 0 16px;
}
@media only screen and (min-width: 900px) {
  .reason-text {
    padding: 0;
  }
}

.reason-content.freedom .reason-freedom {
  display: block;
}

.reason-content.determination .reason-determination {
  display: block;
}

.reason-content.justice .reason-justice {
  display: block;
}

.reason-content.citizenship .reason-citizenship {
  display: block;
}

.reason-content.sustainable .reason-sustainable {
  display: block;
}

.tablenav .tablenav-pages a, .tablenav-pages-navspan {
  display: inline !important;
}

body.search ul.filter-pagination {
  text-align: center;
  padding: 32px 0;
}

.background-container {
  height: 100%;
}

.slides-indicators {
  position: fixed;
  left: 16px;
  width: 20px;
  padding: 0px;
  margin: 0;
  list-style: none;
  z-index: 3;
}
@media only screen and (max-width: 599px) {
  .slides-indicators {
    display: none;
  }
}

.slides-indicators li {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: red;
  margin-bottom: 16px;
  cursor: pointer;
}

.slides-indicators li.active {
  background-color: white;
}

.widgets-box {
  display: inline-block;
  position: relative;
  top: 48px;
}

body:not(.wp-admin) .widget {
  float: left;
  width: 100%;
}

.footer .widgets-box {
  top: 4px;
}

@media only screen and (max-width: 599px) {
  .widget_nav_menu {
    display: none;
  }
}
.widget_nav_menu ul {
  border-left: 1px solid white;
  list-style-type: none;
  padding-left: 16px;
}
.widget_nav_menu a {
  text-decoration: none;
  color: white;
  font-family: "MuseoSansRounded-500", sans-serif;
}

.widget_social_block {
  margin-top: 16px;
}

.menu-privacy-container ul {
  margin: 0;
  padding: 0;
}
.menu-privacy-container li {
  display: inline-block;
  float: left;
  margin-right: 8px;
  padding-right: 8px;
  line-height: 1;
}
.menu-privacy-container li {
  border-right: 1px solid white;
}
.menu-privacy-container li:last-child {
  border: 0px;
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: white;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D8D7D8;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: white;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D8D7D8;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.owl-theme .owl-nav .owl-next,
.owl-theme .owl-nav .owl-prev {
  height: 250px;
  margin: 0;
  padding: 0;
  top: calc(50% - 125px);
}
.owl-theme .owl-nav .owl-next span,
.owl-theme .owl-nav .owl-prev span {
  font-size: 32px;
  background-color: #D51317;
  color: white;
  padding: 16px;
}
.owl-theme .owl-dots {
  position: relative;
  bottom: 48px;
}

.header-form .donate-block {
  display: none;
}
@media only screen and (min-width: 900px) {
  .header-form .donate-block {
    display: block;
  }
}
.header-form.mobile-footer .donate-block {
  display: block;
}
@media only screen and (min-width: 900px) {
  .header-form.mobile-footer .donate-block {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .header-form p {
    margin: 0 0 3rem 0;
  }
}

.footer-form,
.header-form {
  color: #D51317;
  z-index: 1;
}
@media only screen and (min-width: 1025px) {
  .footer-form,
.header-form {
    position: absolute;
    right: 32px;
    top: 380px;
  }
}
@media only screen and (min-width: 1600px) {
  .footer-form,
.header-form {
    top: 564px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-form,
.header-form {
    right: calc((100% - 1280px) / 2);
  }
}
.footer-form .block-wrapper,
.header-form .block-wrapper {
  padding: 16px;
  background: #e6e6e6;
  border-bottom: 24px solid white;
}
@media only screen and (min-width: 1025px) {
  .footer-form .block-wrapper,
.header-form .block-wrapper {
    width: 400px;
    padding: 32px;
  }
}
.footer-form .single-payment-option,
.footer-form .amounts-list,
.header-form .single-payment-option,
.header-form .amounts-list {
  display: none;
}
.footer-form .single-payment-option.visible,
.footer-form .amounts-list.visible,
.header-form .single-payment-option.visible,
.header-form .amounts-list.visible {
  display: block;
}
.footer-form h2, .footer-form h3, .footer-form h4,
.header-form h2,
.header-form h3,
.header-form h4 {
  font-family: "MuseoSansRounded-700", sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
}
.footer-form h2, .footer-form h3,
.header-form h2,
.header-form h3 {
  margin: 0 0 1rem;
}
.footer-form h2,
.header-form h2 {
  font-size: 1.5em;
}
@media only screen and (min-width: 900px) {
  .footer-form h2,
.header-form h2 {
    font-size: 3rem;
  }
}
.footer-form h3, .footer-form h4,
.header-form h3,
.header-form h4 {
  font-size: 1rem;
}
.footer-form .label-lowercase,
.header-form .label-lowercase {
  text-transform: lowercase;
}
.footer-form .form-list li.item-period-single, .footer-form .form-list li.item-period-monthly,
.header-form .form-list li.item-period-single,
.header-form .form-list li.item-period-monthly {
  display: none;
}
.footer-form .form-list li.item-period-single.visible, .footer-form .form-list li.item-period-monthly.visible,
.header-form .form-list li.item-period-single.visible,
.header-form .form-list li.item-period-monthly.visible {
  display: inline-block;
}

/* Progress bar */
.meter {
  height: 40px;
  position: relative;
  background: #c3c3c3;
  border-radius: 0;
  margin-bottom: 16px;
  overflow: hidden;
}

.meter > span {
  display: block;
  height: 100%;
  border-radius: 0;
  background-color: #c31417;
  position: relative;
}

.meter > span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #d51317), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #d51317), color-stop(0.75, #d51317), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(-45deg, #d51317 25%, transparent 25%, transparent 50%, #d51317 50%, #d51317 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, #d51317 25%, transparent 25%, transparent 50%, #d51317 50%, #d51317 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(-45deg, #d51317 25%, transparent 25%, transparent 50%, #d51317 50%, #d51317 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(-45deg, #d51317 25%, transparent 25%, transparent 50%, #d51317 50%, #d51317 75%, transparent 75%, transparent);
  z-index: 1;
  -webkit-animation: move 3s linear infinite;
  -webkit-background-size: 40px 40px;
  -moz-background-size: 40px 40px;
  background-size: 40px 40px;
  border-radius: 0;
  overflow: hidden;
}

.meter > span h4 {
  position: relative;
  color: #ffffff;
  text-align: left;
  padding-left: 16px;
  z-index: 5;
  line-height: 40px;
  margin: 0;
}

/* PROGRESS BAR - ANIMATION */
@keyframes move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@-webkit-keyframes move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@-moz-keyframes move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
.newsletter-thank-you {
  display: none;
}

.form-list .form-list-item.form-checkboxes {
  margin: 8px 0 16px;
  line-height: 1.3;
}

.progressbar-container {
  background: #e6e6e6;
}

.progressbar-crowdfunding #progressbar li {
  width: calc(100% / 3);
}

#progressbar {
  background: transparent;
  overflow: hidden;
  max-width: 650px;
  margin: 24px auto 0;
  height: 100px;
  padding: 0;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
@media only screen and (max-width: 599px) {
  #progressbar {
    max-width: calc(100% - 64px);
    margin: 0;
    padding: 16px 0 0 16px;
  }
}
@media only screen and (min-width: 900px) {
  #progressbar {
    max-width: 700px;
  }
}
#progressbar li {
  list-style-type: none;
  font-size: 14px;
  width: calc(100% / 3);
  float: left;
  text-align: center;
  position: relative;
}
#progressbar li span {
  max-width: 100px;
  display: inline-block;
  color: #999999;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 50px;
  line-height: 50px;
  display: block;
  font-size: 22px;
  color: white;
  background: #999999;
  border-radius: 25px;
  margin: 0 auto 5px auto;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 599px) {
  #progressbar li:before {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
  }
}
#progressbar li:after {
  content: "";
  width: 100%;
  height: 5px;
  background: #999999;
  position: absolute;
  left: -50%;
  top: 22px;
  z-index: 0;
}
@media only screen and (max-width: 599px) {
  #progressbar li:after {
    top: 18px;
  }
}
#progressbar li:first-child:after {
  content: none;
}
#progressbar li.active span {
  color: #D51317;
}
#progressbar li.active:before, #progressbar li.active:after {
  background: #D51317;
  color: white;
}

.america-latina #progressbar li {
  width: calc(100% / 3);
}

.form-navigation .submit-order,
.form-navigation .next {
  float: right;
}
.form-navigation .previous {
  float: left;
}
.form-navigation .next {
  text-align: right;
}
.form-navigation .privacy-link {
  margin-top: 16px;
}
.form-navigation .privacy-link a {
  color: black;
}
.form-navigation .submit-order-button {
  border: 1px solid #D51317;
  padding: 16px 8px;
}

[data-step="1"] .form-navigation .previous {
  display: none;
}

.hivos-donations fieldset {
  background: transparent;
  border: 0 none;
  border-radius: 3px;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.sidebar-note {
  margin: 0;
  padding: 0;
}
.sidebar-note > :first-child {
  margin-top: 0;
}
.sidebar-note > :last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .sidebar-note {
    max-width: 50%;
  }
}
@media screen and (min-width: 600px) {
  .sidebar-note.right {
    float: right;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .sidebar-note.right {
    margin-right: -12rem;
  }
}
@media screen and (min-width: 600px) {
  .sidebar-note.right .number-item {
    margin: 0 0 1em 1em;
    display: inline;
    float: right;
    width: 100%;
  }
}
.sidebar-note.left {
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  .sidebar-note.left {
    margin-left: -12rem;
  }
}
@media screen and (min-width: 600px) {
  .sidebar-note.left .number-item {
    margin: 0 1em 1em 0;
    display: inline;
    float: left;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .sidebar-note {
    max-width: 30rem;
  }
}
.sidebar-note .number-item {
  color: #D51317;
  background: #eee;
  padding: 1.5rem;
  height: auto;
}
.sidebar-note .number-item span {
  font-size: 5rem;
  font-family: "MuseoSansRounded-700", sans-serif;
  line-height: 0.75;
}
@media only screen and (max-width: 599px) {
  .sidebar-note .number-item span {
    font-size: 3em;
  }
}
.sidebar-note .number-item p {
  max-width: 90%;
  font-family: "MuseoSansRounded-500", sans-serif;
  color: #D51317;
}
.sidebar-note .number-top {
  border-bottom: 8px solid #D51317;
  width: 100%;
  padding-bottom: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
}
.sidebar-note .number-top span,
.sidebar-note .number-top .number-image {
  flex: 1;
}
.sidebar-note .number-image {
  position: relative;
  bottom: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  margin: 0 16px 0 0;
}
@media only screen and (max-width: 599px) {
  .sidebar-note .number-image {
    width: 56px;
    height: 56px;
    margin: 0 16px 0 0;
  }
}
@media only screen and (min-width: 600px) {
  .sidebar-note .number-image {
    width: 53px;
    height: 53px;
  }
}
@media only screen and (min-width: 900px) {
  .sidebar-note .number-image {
    width: 113px;
    height: 113px;
  }
}

.header {
  background: #D51317;
  color: white;
  top: 0;
  transition: top 0.2s ease-in-out;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 5;
}
.header .wrapper-wide {
  padding: 0;
}

.layover-link {
  cursor: pointer;
}

.admin-bar .header {
  top: 32px;
}
.admin-bar .layover {
  top: 32px;
}
.admin-bar .header-up {
  top: -10px;
}

.header-up {
  top: -80px;
}

.header-down {
  left: 0;
}

.site-language-switch {
  display: none;
}

.america-latina .site-language-switch {
  display: inline-block;
  padding: 20px 0;
  margin-left: 8px;
}
.america-latina .site-language-switch a {
  font-size: 18px;
  font-family: "MuseoSansRounded-500", sans-serif;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}

.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  transition: top 0.2s ease-in-out;
  background: white;
}
.is-sticky .content-title {
  display: inline-block;
}

.admin-bar .is-sticky {
  top: 32px;
}
.admin-bar .on-top {
  top: 72px !important;
}

.on-top {
  top: 66px !important;
  transition: top 0.2s ease-in-out;
}

.has-subnav {
  height: 90px !important;
}

.has-not-subnav {
  height: 60px;
}

.hidden-item {
  display: none;
}

.menu-sticky-container {
  position: absolute;
  top: 0;
  right: 0;
  transition: top 0.2s ease-in-out;
}
@media only screen and (min-width: 320px) {
  .menu-sticky-container {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .menu-sticky-container {
    display: block;
  }
}
@media only screen and (min-width: 900px) {
  .menu-sticky-container .McButton {
    right: 70px;
  }
}
.menu-sticky-container .menu-sticky-content {
  width: 150px;
  position: relative;
  transition: background 0.4s ease;
  background: transparent;
  padding: 20px 16px;
}
.menu-sticky-container span {
  color: white;
  text-transform: uppercase;
  font-family: "MuseoSansRounded-500", sans-serif;
  font-size: 18px;
}
.menu-sticky-container.active .menu-sticky-content {
  background: #D51317;
}
.menu-sticky-container.active span {
  opacity: 1;
}

@media only screen and (min-width: 900px) {
  .admin-bar .entry-header {
    margin-top: 40px;
  }
}

.entry-header {
  overflow: hidden;
  top: 0;
  height: 350px;
  position: relative;
  line-height: 0;
}
@media only screen and (min-width: 900px) {
  .entry-header {
    height: 500px;
  }
}
@media only screen and (min-width: 1600px) {
  .entry-header {
    height: 680px;
  }
}
.entry-header .wrapper-wide {
  padding: 0;
}
@media only screen and (min-width: 900px) {
  .entry-header {
    margin-top: 68px;
  }
}
@media only screen and (max-width: 599px) {
  .entry-header.no-image {
    height: 150px;
  }
}
@media only screen and (min-width: 600px) {
  .entry-header.no-image {
    height: 250px;
  }
}
@media only screen and (max-width: 599px) {
  .entry-header.mobile-cropped {
    height: 50vh;
  }
}
.entry-header img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
@media only screen and (min-width: 900px) {
  .entry-header img {
    min-height: 500px;
  }
}
@media only screen and (min-width: 1600px) {
  .entry-header img {
    min-height: 680px;
  }
}
.entry-header.featured-image-hidden {
  height: 200px;
}
@media only screen and (min-width: 600px) {
  .entry-header.featured-image-hidden img {
    display: none;
  }
}

@media only screen and (max-width: 599px) {
  .single-vacancy .entry-header .type-title {
    position: absolute;
  }
  .single-vacancy .entry-header img {
    height: 40vh;
  }
}
.type-title {
  position: absolute;
  bottom: 16px;
  font-size: 2rem;
}
@media only screen and (min-width: 900px) {
  .type-title {
    display: block;
    bottom: 32px;
    left: 32px;
    width: 80%;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .type-title {
    left: 16px;
  }
}
.type-title.no-image {
  top: 144px;
  left: 0;
  padding: 0;
}

.page-vacancies .type-title.no-image {
  left: 16px;
}

.footer {
  position: relative;
  background: #5B5A5D;
}
@media only screen and (max-width: 599px) {
  .footer {
    height: auto;
    padding: 0;
  }
}
.footer .grid {
  margin: 0 auto;
  padding: 0 8px;
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}
.footer .grid::after {
  clear: both;
  content: "";
  display: block;
}
@media only screen and (min-width: 1024px) {
  .footer .grid {
    padding: 0;
  }
}
.footer .grid li {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
}
@media only screen and (min-width: 768px) {
  .footer .grid li {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .grid li {
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
  }
}
.footer .wrapper-wide {
  padding: 4px 0 16px 0;
}
@media only screen and (min-width: 1200px) {
  .footer .wrapper-wide {
    padding: 4px 0 16px 230px;
  }
}

.footer-top {
  display: none;
}
@media only screen and (min-width: 900px) {
  .footer-top {
    padding: 0;
    display: block;
  }
}
@media only screen and (min-width: 600px) {
  .footer-top .navigation,
.footer-top .widgets-box {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 900px) {
  .footer-top .navigation,
.footer-top .widgets-box {
    margin-top: 0;
  }
}
.footer-top .navigation {
  margin-left: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer-top .navigation {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer-top .navigation > ul > li {
    margin-left: 0;
    width: 24.4%;
  }
}
.footer-top .widgets-box {
  display: none;
}
@media only screen and (min-width: 900px) {
  .footer-top .widgets-box {
    display: inline-block;
  }
}

.footer-bottom::after,
.footer-top::after {
  clear: both;
  content: "";
  display: block;
}
@media only screen and (min-width: 900px) {
  .footer-bottom,
.footer-top {
    padding-bottom: 0;
  }
}

.footer-bottom-left {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
}
@media only screen and (min-width: 900px) {
  .footer-bottom-left {
    margin-top: 64px;
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
  }
}

.footer-bottom-right {
  display: none;
}
@media only screen and (min-width: 600px) {
  .footer-bottom-right {
    width: calc(66.6666666667% - 33.3333333333px);
    float: left;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 900px) {
  .footer-bottom-right {
    display: block;
  }
}

.widget-area {
  padding: 0;
}

.region-menu {
  display: none;
}
@media only screen and (min-width: 900px) {
  .region-menu {
    display: block;
  }
}

.region-list {
  color: white;
  padding: 0;
}
.region-list li {
  display: block;
  position: relative;
  margin-left: 0px;
  margin-right: 16px;
  padding-left: 16px;
  border-left: 1px solid white;
}
.region-list li a {
  font-size: 15px;
  color: white;
  text-decoration: none;
  font-family: "MuseoSansRounded-500", sans-serif;
}
.region-list li.active a {
  font-family: "MuseoSansRounded-700", sans-serif;
  color: white;
}

.footer-ontop {
  background: #f2f2f2;
  padding: 32px 16px;
}
@media only screen and (min-width: 900px) {
  .footer-ontop {
    padding: 32px 0;
  }
}
.footer-ontop .section-grey {
  background: #f2f2f2;
}
@media only screen and (min-width: 600px) {
  .footer-ontop .wrapper-wide {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer-ontop .footer-ontop-left {
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .footer-ontop .footer-ontop-left {
    flex: 2;
  }
}
.footer-ontop .footer-ontop-left .wrapper-small {
  padding-bottom: 0;
}
.footer-ontop .footer-ontop-left .widget {
  margin-top: 0;
}
.footer-ontop .footer-ontop-left .widgets-box {
  max-width: 100%;
}
.footer-ontop .footer-ontop-left .widgettitle {
  color: black;
  text-transform: none;
  font-family: "MuseoSansRounded-300", sans-serif;
}
.footer-ontop .footer-ontop-left .widgettitle,
.footer-ontop .footer-ontop-left .list-social {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 600px) {
  .footer-ontop .footer-ontop-right {
    flex: 1;
  }
}

.awesome-post-list-layout .multi-select,
.awesome-post-list-layout .multi-select-plugin {
  margin-bottom: 0;
  font-size: 16px;
  min-width: 300px;
  max-width: 400px;
}
@media only screen and (max-width: 599px) {
  .awesome-post-list-layout .multi-select,
.awesome-post-list-layout .multi-select-plugin {
    width: 100%;
  }
}
.awesome-post-list-layout .multi-select label,
.awesome-post-list-layout .multi-select-plugin label {
  text-indent: 0;
}
.awesome-post-list-layout .multi-select > ul > li,
.awesome-post-list-layout .multi-select-plugin > ul > li {
  width: 100%;
  margin-left: 0;
}
.awesome-post-list-layout .multi-select > ul > li > label,
.awesome-post-list-layout .multi-select-plugin > ul > li > label {
  padding: 0 24px 0 16px;
  display: block;
  position: relative;
}
.awesome-post-list-layout .multi-select ul,
.awesome-post-list-layout .multi-select-plugin ul {
  list-style-type: none;
  background: white;
  margin: 0 0 16px;
}
.awesome-post-list-layout .multi-select .toggle,
.awesome-post-list-layout .multi-select-plugin .toggle {
  position: relative;
  background-color: white;
  display: inline-block;
  padding: 8px 32px 8px 8px;
  max-height: 36px;
  overflow: hidden;
  vertical-align: top;
  font-family: "MuseoSansRounded-500", sans-serif;
  border: none;
  width: 100%;
}
@media only screen and (max-width: 599px) {
  .awesome-post-list-layout .multi-select .toggle,
.awesome-post-list-layout .multi-select-plugin .toggle {
    width: 100%;
  }
}
.awesome-post-list-layout .multi-select .toggle label,
.awesome-post-list-layout .multi-select-plugin .toggle label {
  text-transform: uppercase;
  padding: 0 16px 0 8px;
  cursor: pointer;
}
.awesome-post-list-layout .multi-select .toggle .chevron,
.awesome-post-list-layout .multi-select-plugin .toggle .chevron {
  position: absolute;
  top: 16px;
  right: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #666;
  box-sizing: border-box;
  transition: transform 0.4s ease;
  width: 7px;
  height: 7px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  margin: 0;
  transform: rotate(135deg);
  text-indent: -9999px;
}
.awesome-post-list-layout .multi-select .toggle .chevron:before, .awesome-post-list-layout .multi-select .toggle .chevron:after,
.awesome-post-list-layout .multi-select-plugin .toggle .chevron:before,
.awesome-post-list-layout .multi-select-plugin .toggle .chevron:after {
  content: "";
  box-sizing: border-box;
}
.awesome-post-list-layout .multi-select .toggle .chevron:before,
.awesome-post-list-layout .multi-select-plugin .toggle .chevron:before {
  right: 0;
  top: -1px;
  position: absolute;
  height: 1px;
  box-shadow: inset 0 0 0 32px;
  transform: rotate(-45deg);
  width: 10px;
  transform-origin: right top;
}
.awesome-post-list-layout .multi-select.in > ul,
.awesome-post-list-layout .multi-select-plugin.in > ul {
  padding: 8px 0;
}
@media only screen and (max-width: 599px) {
  .awesome-post-list-layout .multi-select.in > ul,
.awesome-post-list-layout .multi-select-plugin.in > ul {
    width: calc(100% - 64px);
  }
}
.awesome-post-list-layout .multi-select.in .chevron,
.awesome-post-list-layout .multi-select-plugin.in .chevron {
  transform: rotate(-45deg);
}
.awesome-post-list-layout .multi-select.in .toggle label,
.awesome-post-list-layout .multi-select.in .chevron,
.awesome-post-list-layout .multi-select-plugin.in .toggle label,
.awesome-post-list-layout .multi-select-plugin.in .chevron {
  color: #D51317;
}
.awesome-post-list-layout .filter-labels {
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 900px) {
  .awesome-post-list-layout .filter-labels li .filter-label {
    margin: 16px 8px 0 0;
  }
}
.awesome-post-list-layout .aws-filter-dropdown {
  padding: 16px 0;
  min-height: 32px;
  position: relative;
  background: #D8D7D8;
}
@media only screen and (max-width: 599px) {
  .awesome-post-list-layout .aws-filter-dropdown {
    padding: 16px;
    margin: -16px;
  }
}
.awesome-post-list-layout .aws-filter-dropdown:before, .awesome-post-list-layout .aws-filter-dropdown:after {
  content: "";
  display: block;
  position: absolute;
  background: #D8D7D8;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: 0;
}
@media only screen and (max-width: 599px) {
  .awesome-post-list-layout .aws-filter-dropdown:before, .awesome-post-list-layout .aws-filter-dropdown:after {
    content: none;
  }
}
.awesome-post-list-layout .aws-filter-dropdown:before {
  left: calc(0px - ((100vw - 1248px) / 2));
}
.awesome-post-list-layout .aws-filter-dropdown:after {
  right: calc(8px - ((100vw - 1248px) / 2));
}
.awesome-post-list-layout ul.post-list {
  list-style-type: none;
  margin: 16px 0 0 0;
  display: block;
  padding: 0;
}
.awesome-post-list-layout .grid li label span {
  font-family: "MuseoSansRounded-500", sans-serif;
  font-size: 16px;
}
@media only screen and (max-width: 599px) {
  .awesome-post-list-layout .apl-filter-block {
    width: 100%;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 599px) {
  .awesome-post-list-layout .apl-filter-block:last-of-type {
    margin-bottom: 0;
  }
}
.awesome-post-list-layout .apl-filter-block [name="filters[search]"] {
  height: 36px;
  width: 350px;
  background-position: 96% center;
}
@media only screen and (max-width: 599px) {
  .awesome-post-list-layout .apl-filter-block [name="filters[search]"] {
    width: 100%;
  }
}
.awesome-post-list-layout .apl-filter-block [name="filters[search]"]:focus {
  margin: 0;
}

.search .filter-results {
  margin-top: 32px;
}
@media only screen and (max-width: 599px) {
  .search .filter-results {
    margin-top: 16px;
  }
}
.search .awesome-post-list-layout .aws-filter-dropdown {
  padding: 16px 0;
}
@media only screen and (max-width: 599px) {
  .search .awesome-post-list-layout .aws-filter-dropdown {
    margin: 0;
  }
}
.search .total-results {
  max-width: 824px;
  margin: 0 auto 16px;
}

.gt-post-list .gutenberg {
  margin-top: 150px;
}
.gt-post-list .awesome-post-list-layout .aws-filter-dropdown:before {
  left: calc(0px - ((100vw - 920px) / 2));
}
.gt-post-list .awesome-post-list-layout .aws-filter-dropdown:after {
  right: calc(8px - ((100vw - 920px) / 2));
}

.layover {
  height: 320px;
  display: none;
  background: #D51317;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
@media only screen and (min-width: 900px) {
  .layover .navigation {
    margin-left: 180px;
  }
}
@media only screen and (min-width: 1200px) {
  .layover .navigation {
    margin-left: 232px;
  }
}
.layover .area-top {
  min-height: 250px;
}

button.McButton {
  transition: all 800ms ease;
  transform: rotateZ(0deg);
}
button.McButton b {
  transition: all 800ms ease;
}
button.McButton b:nth-child(1) {
  transition-delay: 400ms;
  top: 0px;
}
button.McButton b:nth-child(3) {
  transform: rotateZ(0deg);
  top: 100%;
}
button.McButton.active {
  transition: all 800ms ease;
  transform: rotateZ(135deg);
}
button.McButton.active b {
  transition: all 800ms ease;
}
button.McButton.active b:nth-child(1) {
  top: 50%;
}
button.McButton.active b:nth-child(3) {
  top: 50%;
  transform: rotateZ(90deg);
}

.full-width-form .full-width-form.active {
  display: block;
}
.full-width-form .form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.full-width-form .form-donatie {
  margin: 0 auto;
  text-align: center;
  position: relative;
  top: 16px;
  padding: 0;
  width: 100%;
}
.full-width-form .form-container {
  text-align: left;
}
.full-width-form .layover-title {
  color: #D51317;
  text-transform: uppercase;
  font-size: 2.5em;
  margin: 32px 0 16px !important;
}
@media only screen and (max-width: 599px) {
  .full-width-form .layover-title {
    padding: 0 16px;
  }
}
.full-width-form .overview-title {
  margin: 8px 0;
}
.full-width-form .privacy-link {
  display: inline-block;
  width: 100%;
  margin-top: 32px;
}
.full-width-form .privacy-link a {
  color: black;
}

span.label {
  display: block;
  font-family: "MuseoSansRounded-700", sans-serif;
  line-height: 1.3;
}

.address-black {
  color: black;
  margin-bottom: 16px;
  margin-top: 16px;
}

.form-list {
  padding: 0 !important;
  margin: 0;
}
.form-list.periods {
  display: none;
}
.form-list.single-payment-option.visible {
  display: none;
}
.form-list .form-list-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
  text-align: left;
}
.form-list .form-list-item.hidden {
  display: none !important;
}
.form-list .form-list-item.hidden.visible {
  display: none !important;
}
.form-list .form-list-item p {
  font-size: 16px;
  color: black;
}
.form-list .form-list-item.form-list-item-amount:first-of-type, .form-list .form-list-item.form-list-item-method:first-of-type, .form-list .form-list-item.form-list-item-period:first-of-type {
  margin-left: 0;
}
.form-list .form-list-item.form-list-item-period, .form-list .form-list-item.form-list-item-method {
  width: 50%;
  margin-left: -4px;
}
.form-list .form-list-item.form-list-item-amount {
  width: calc(100% / 3);
  margin-left: -4px;
}
.form-list li.item-period-single + li.item-period-monthly,
.form-list li[data-main-form]:first-of-type {
  margin-left: 0;
}

.donation-summary h3 {
  font-size: 1.25em;
  margin: 0 0 8px;
}
.donation-summary label {
  font-family: "MuseoSansRounded-700", sans-serif;
  line-height: 1.3;
}
.donation-summary span {
  color: black;
  line-height: 1.3;
}

[name=huis_nummber] {
  display: none;
  padding: 12px;
  width: 100%;
}

.form-layover {
  background: #e6e6e6;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
}
@media only screen and (max-width: 599px) {
  .form-layover {
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
  }
}
.form-layover .close-full-width {
  right: 0px;
  position: fixed;
  z-index: 1;
}

.page-id-39106,
.page-ik-steun-hivos {
  background: #e6e6e6;
}

.select-list {
  display: none;
}
@media only screen and (max-width: 599px) {
  .select-list {
    display: block;
  }
}
.select-list select {
  border-radius: 0;
  border: 0;
  -webkit-appearance: none;
  padding: 12px;
  height: 44px;
  font-size: 16px;
  margin-bottom: 16px;
  font-family: "MuseoSansRounded-700", sans-serif;
  width: 100%;
  color: #D51317;
  text-transform: uppercase;
}

@media only screen and (max-width: 599px) {
  .normal-list {
    display: none;
  }
}

fieldset[data-step] select {
  background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right #fff;
  -webkit-appearance: none;
  background-position-x: 95%;
  margin-top: 4px;
  padding: 12px;
  width: 50%;
}

body.error404 article {
  border-bottom: 0px;
  padding-top: 64px;
}

.header-form .donate-block {
  display: none;
}
@media only screen and (min-width: 900px) {
  .header-form .donate-block {
    display: block;
  }
}
.header-form.mobile-footer .donate-block {
  display: block;
}
@media only screen and (min-width: 900px) {
  .header-form.mobile-footer .donate-block {
    disply: none;
  }
}
@media only screen and (min-width: 900px) {
  .header-form p {
    margin: 0 0 3rem 0;
  }
}

.footer-form,
.header-form {
  color: #D51317;
  z-index: 1;
}
@media only screen and (min-width: 1025px) {
  .footer-form,
.header-form {
    position: absolute;
    right: 32px;
    top: 380px;
  }
}
@media only screen and (min-width: 1600px) {
  .footer-form,
.header-form {
    top: 564px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-form,
.header-form {
    right: calc((100% - 1280px) / 2);
  }
}
.footer-form .block-wrapper,
.header-form .block-wrapper {
  padding: 16px;
  background: #e6e6e6;
  border-bottom: 24px solid white;
}
@media only screen and (min-width: 1025px) {
  .footer-form .block-wrapper,
.header-form .block-wrapper {
    width: 400px;
    padding: 32px;
  }
}
.footer-form .single-payment-option,
.footer-form .amounts-list,
.header-form .single-payment-option,
.header-form .amounts-list {
  display: none;
}
.footer-form .single-payment-option.visible,
.footer-form .amounts-list.visible,
.header-form .single-payment-option.visible,
.header-form .amounts-list.visible {
  display: block;
}
.footer-form h2, .footer-form h3, .footer-form h4,
.header-form h2,
.header-form h3,
.header-form h4 {
  font-family: "MuseoSansRounded-700", sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
}
.footer-form h2, .footer-form h3,
.header-form h2,
.header-form h3 {
  margin: 0 0 1rem;
}
.footer-form h2,
.header-form h2 {
  font-size: 1.5em;
}
@media only screen and (min-width: 900px) {
  .footer-form h2,
.header-form h2 {
    font-size: 3rem;
  }
}
.footer-form h3, .footer-form h4,
.header-form h3,
.header-form h4 {
  font-size: 1rem;
}
.footer-form .label-lowercase,
.header-form .label-lowercase {
  text-transform: lowercase;
}
.footer-form .form-list li.item-period-single, .footer-form .form-list li.item-period-monthly,
.header-form .form-list li.item-period-single,
.header-form .form-list li.item-period-monthly {
  display: none;
}
.footer-form .form-list li.item-period-single.visible, .footer-form .form-list li.item-period-monthly.visible,
.header-form .form-list li.item-period-single.visible,
.header-form .form-list li.item-period-monthly.visible {
  display: inline-block;
}

/* Progress bar */
.meter {
  height: 40px;
  position: relative;
  background: #c3c3c3;
  border-radius: 0;
  margin-bottom: 16px;
  overflow: hidden;
}

.meter > span {
  display: block;
  height: 100%;
  border-radius: 0;
  background-color: #c31417;
  position: relative;
}

.meter > span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #d51317), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #d51317), color-stop(0.75, #d51317), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(-45deg, #d51317 25%, transparent 25%, transparent 50%, #d51317 50%, #d51317 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, #d51317 25%, transparent 25%, transparent 50%, #d51317 50%, #d51317 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(-45deg, #d51317 25%, transparent 25%, transparent 50%, #d51317 50%, #d51317 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(-45deg, #d51317 25%, transparent 25%, transparent 50%, #d51317 50%, #d51317 75%, transparent 75%, transparent);
  z-index: 1;
  -webkit-animation: move 3s linear infinite;
  -webkit-background-size: 40px 40px;
  -moz-background-size: 40px 40px;
  background-size: 40px 40px;
  border-radius: 0;
  overflow: hidden;
}

.meter > span h4 {
  position: relative;
  color: #ffffff;
  text-align: left;
  padding-left: 16px;
  z-index: 5;
  line-height: 40px;
  margin: 0;
}

/* PROGRESS BAR - ANIMATION */
@keyframes move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@-webkit-keyframes move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@-moz-keyframes move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
.newsletter-thank-you {
  display: none;
}

.form-list .form-list-item.form-checkboxes {
  margin: 8px 0 16px;
  line-height: 1.3;
}

body.search-results .search-form-container, body.search-results .search-container,
body.search-no-results .search-form-container,
body.search-no-results .search-container {
  padding: 128px 0 32px;
}
@media only screen and (max-width: 599px) {
  body.search-results .search-form-container, body.search-results .search-container,
body.search-no-results .search-form-container,
body.search-no-results .search-container {
    padding: 0;
  }
}
body.search-results .filter-container,
body.search-no-results .filter-container {
  padding: 32px 0 16px;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  body.search-results .filter-container,
body.search-no-results .filter-container {
    padding: 48px 16px;
  }
}
body.search-results .filter-wrapper,
body.search-results .js-filter-posts-found,
body.search-results .no-content,
body.search-no-results .filter-wrapper,
body.search-no-results .js-filter-posts-found,
body.search-no-results .no-content {
  max-width: 824px;
  padding: 0 16px;
}
@media only screen and (min-width: 600px) {
  body.search-results .filter-wrapper,
body.search-results .js-filter-posts-found,
body.search-results .no-content,
body.search-no-results .filter-wrapper,
body.search-no-results .js-filter-posts-found,
body.search-no-results .no-content {
    padding: 0;
  }
}
body.search-results .js-filter-posts-found,
body.search-results .no-content,
body.search-no-results .js-filter-posts-found,
body.search-no-results .no-content {
  margin: 0 auto;
}
body.search-results .no-content,
body.search-no-results .no-content {
  padding: 32px 0;
}
body.search-results .grid,
body.search-no-results .grid {
  width: 100%;
  max-width: 824px;
  margin: 0 auto !important;
}

body.search-no-results .js-filter-posts-found,
body.search-no-results .filter-container {
  display: none;
}

.single-stories-social .section-title {
  text-align: center;
}
.single-stories-social .list-social {
  text-align: center;
  padding: 0;
}
.single-stories-social .list-social li a {
  text-decoration: none;
}

.single-stories-list .programme-meta-title {
  margin-bottom: 16px;
}

.program-closed {
  background: #D51317;
  margin-bottom: 16px;
  padding: 16px;
}
.program-closed p {
  margin: 0;
  font-size: 2rem;
  color: white;
}
@media only screen and (max-width: 599px) {
  .program-closed p {
    font-size: 1rem;
  }
}

.progam-closed-label {
  background-color: #D51317;
  padding: 4px 8px;
  color: white;
  position: absolute;
  bottom: 86px;
  left: 16px;
  font-family: "MuseoSansRounded-500", sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.5;
}

.page-cinco-estrategias-para-el-cambio .entry-title,
.page-five-strategies-for-change .entry-title,
.parent-pageid-20666 .entry-title {
  display: none;
  padding: 0;
}
.page-cinco-estrategias-para-el-cambio .entry-content,
.page-five-strategies-for-change .entry-content,
.parent-pageid-20666 .entry-content {
  max-width: 920px;
  margin: 0 auto;
}
.page-cinco-estrategias-para-el-cambio .filter-container,
.page-five-strategies-for-change .filter-container,
.parent-pageid-20666 .filter-container {
  display: none;
}
.page-cinco-estrategias-para-el-cambio .awesome-post-list-layout,
.page-five-strategies-for-change .awesome-post-list-layout,
.parent-pageid-20666 .awesome-post-list-layout {
  opacity: 1;
  width: calc(100vw - 16px);
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  background: #D8D7D8;
  padding: 32px 0 16px;
  margin: 0;
  display: block;
}
.page-cinco-estrategias-para-el-cambio .awesome-post-list-layout ul.post-list,
.page-five-strategies-for-change .awesome-post-list-layout ul.post-list,
.parent-pageid-20666 .awesome-post-list-layout ul.post-list {
  max-width: 1280px;
  margin: 0 auto;
}
.page-cinco-estrategias-para-el-cambio .socials,
.page-five-strategies-for-change .socials,
.parent-pageid-20666 .socials {
  display: none;
}
@media only screen and (min-width: 900px) {
  .page-cinco-estrategias-para-el-cambio .wrapper-small,
.page-five-strategies-for-change .wrapper-small,
.parent-pageid-20666 .wrapper-small {
    padding: 32px;
    max-width: 1280px;
    position: relative;
    margin: 0 auto;
  }
  .page-cinco-estrategias-para-el-cambio .levels-menu-navigation .wrapper-small,
.page-five-strategies-for-change .levels-menu-navigation .wrapper-small,
.parent-pageid-20666 .levels-menu-navigation .wrapper-small {
    max-width: 920px;
    padding: 16px 0;
  }
}

.page-programas .entry-content-outer .entry-title,
.page-programs .entry-content-outer .entry-title {
  display: none;
}
.page-programas .entry-content-outer .card-default .card-content,
.page-programs .entry-content-outer .card-default .card-content {
  min-height: 100px;
}
@media only screen and (max-width: 599px) {
  .page-programas .entry-content-outer .wrapper-wide,
.page-programs .entry-content-outer .wrapper-wide {
    padding: 16px 0 0;
  }
  .page-programas .entry-content-outer .wrapper-wide .entry-title,
.page-programs .entry-content-outer .wrapper-wide .entry-title {
    padding: 0 16px;
  }
  .page-programas .entry-content-outer .wrapper-wide .entry-title-mobile,
.page-programs .entry-content-outer .wrapper-wide .entry-title-mobile {
    padding: 0;
  }
  .page-programas .entry-content-outer .wrapper-wide .filters-result-container,
.page-programs .entry-content-outer .wrapper-wide .filters-result-container {
    background-color: #D8D7D8;
    padding: 0 16px 16px;
  }
}
.page-programas .entry-content-outer .wrapper-wide,
.page-programs .entry-content-outer .wrapper-wide {
  padding: 16px;
}
@media only screen and (min-width: 900px) {
  .page-programas .entry-content-outer .filter-container,
.page-programs .entry-content-outer .filter-container {
    padding: 0;
  }
  .page-programas .entry-content-outer .wrapper-small,
.page-programs .entry-content-outer .wrapper-small {
    padding: 32px;
    max-width: 1280px;
    position: relative;
    margin: 0 auto;
  }
}

.page-navigation {
  padding: 1rem 0;
}

.page-historias-de-cambio .entry-content-outer .wrapper-wide,
.page-stories-of-change .entry-content-outer .wrapper-wide {
  padding: 0;
}
@media only screen and (min-width: 600px) {
  .page-historias-de-cambio .entry-content-outer .wrapper-wide,
.page-stories-of-change .entry-content-outer .wrapper-wide {
    background-color: white;
  }
}
.page-historias-de-cambio .entry-content-outer .list-social,
.page-stories-of-change .entry-content-outer .list-social {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .programme-meta-content ul {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    padding: 0;
    margin: 0;
  }
  .programme-meta-content ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .programme-meta-content ul li {
    padding: 0;
  }
}
.programme-meta-item {
  margin-bottom: 16px;
}

related-items {
  padding: 0;
  margin: 0;
}

.programme-meta-item ul {
  margin: 0;
}

.program-meta-row {
  margin-top: 16px;
}

/*

.focus-area-publications .post-list li{
  @include grid-column(12);
}

.focus-area-programs .post-list,
.grid {
  @include grid-container;
  margin: 0 auto;
  padding: 0 8px;
  @include grid-collapse;
  @include grid-container;
  @include grid-media($tablet-portrait-up) {
    padding:0;
    li {
      @include grid-column(6);
      &:first-of-type,
      &:nth-child(3n+1){
          margin-left: 0;
      }
    }
  }

  @include grid-media($hivos-neat-grid){

    @include grid-collapse;
    @include grid-container;

    li {
      @include grid-column(4);
    }


  }
}
*/
.grid-news-views {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-flow: dense;
  grid-gap: 32px;
}
@media only screen and (max-width: 599px) {
  .grid-news-views {
    grid-gap: 8px;
  }
}
.grid-news-views li {
  margin: 0;
  display: flex;
  grid-column: span 8;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .grid-news-views li {
    grid-column: span 4;
  }
}
@media only screen and (min-width: 1200px) {
  .grid-news-views li:nth-of-type(6n+1) {
    grid-column: span 5;
    grid-row: span 2;
    height: 650px;
  }
}
@media only screen and (min-width: 1200px) {
  .grid-news-views li:nth-of-type(6n+2) .card-title,
.grid-news-views li:nth-of-type(6n+3) .card-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .grid-news-views li:nth-of-type(6n+2),
.grid-news-views li:nth-of-type(6n+3) {
    grid-column: span 3;
    height: 308px;
  }
}
@media only screen and (min-width: 1200px) {
  .grid-news-views li:nth-of-type(6n+4) {
    grid-column: span 3;
    grid-row: span 2;
  }
}
@media only screen and (min-width: 1200px) {
  .grid-news-views li:nth-of-type(6n+5) {
    grid-column: span 5;
    grid-row: span 2;
  }
}
@media only screen and (min-width: 1200px) {
  .grid-news-views li:nth-of-type(6n+6) {
    grid-column: span 8;
  }
}

/*
.post-list li{
  @include grid-media($phone-only){
    margin: 0 -16px;
  }
}

.grid-meta {
  @include grid-media($tablet-landscape-up) {

  }

  .programme-meta-item {
    @include grid-media($hivos-neat-grid){
      @include grid-column(6);

    }
    //padding:0 16px;
  }

}
*/
/*
@include grid-media($hivos-neat-grid) {

  //.page-id-3440,
  .tabs-content ul [data-tab-content="stories-of-change"] {

    ul {
      @include grid-container;
      @include grid-collapse;
      width: 100%;

      li {
        margin-bottom: 32px;
        @include grid-media($desktop-up){
          @include grid-column(12);
          margin-left: 32px;
        }
      }
    }

  }

}
*/
.story-list {
  width: 100vw;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  background: #cccccc;
}
.story-list .wrapped {
  padding: 32px 0;
}
.story-list .grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
}

article {
  margin: 0px auto;
}

.grey-block {
  background: #eee;
  padding: 24px;
  margin: 32px 0;
  width: 100%;
}
.grey-block p:last-of-type {
  margin-bottom: 0;
}

.page-id-105 .page-container article .entry-content-outer,
.page-id-95 .page-container article .entry-content-outer,
.page-id-38 .page-container article .entry-content-outer,
.page-id-77 .page-container article .entry-content-outer,
.page-id-146 .page-container article .entry-content-outer,
.page-id-135 .page-container article .entry-content-outer,
.page-id-3425 .page-container article .entry-content-outer {
  width: 100%;
  /*position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;*/
  padding: 16px 0;
  background-color: #D8D7D8;
}

.page-id-38 .page-id-105 .page-container article .entry-content,
.page-id-95 .page-container article .entry-content,
.page-id-77 .page-container article .entry-content,
.page-id-146 .page-container article .entry-content,
.page-id-135 .page-container article .entry-content,
.page-id-3425 .page-container article .entry-content {
  max-width: 1280px;
}

.section-red {
  background-color: #D51317;
  color: white;
  font-family: "MuseoSansRounded-500", sans-serif;
  line-height: 1.5;
}

@media only screen and (min-width: 600px) {
  .page-historias-de-cambio .entry-content-outer,
.page-programas .entry-content-outer,
.page-programs .entry-content-outer,
.page-stories-of-change .entry-content-outer,
.page-vacancies .entry-content-outer,
[data-tab-content=projects],
[data-tab-content=latest],
[data-tab-content=stories-of-change],
[data-tab-content=historias-de-cambio],
[data-tab-content=vacantes],
[data-tab-content=vacancies],
[data-tab-content=auto-new-latest],
[data-tab-content=programs],
[data-tab-content=programas],
.section-grey {
    background-color: #D8D7D8;
  }
}
.page-historias-de-cambio .entry-content-outer .entry-title,
.page-programas .entry-content-outer .entry-title,
.page-programs .entry-content-outer .entry-title,
.page-stories-of-change .entry-content-outer .entry-title,
.page-vacancies .entry-content-outer .entry-title,
[data-tab-content=projects] .entry-title,
[data-tab-content=latest] .entry-title,
[data-tab-content=stories-of-change] .entry-title,
[data-tab-content=historias-de-cambio] .entry-title,
[data-tab-content=vacantes] .entry-title,
[data-tab-content=vacancies] .entry-title,
[data-tab-content=auto-new-latest] .entry-title,
[data-tab-content=programs] .entry-title,
[data-tab-content=programas] .entry-title,
.section-grey .entry-title {
  display: none;
  padding: 0;
}

[data-tab-content=publications] {
  background-color: white;
}
[data-tab-content=publications] .entry-title {
  display: none;
  padding: 0;
}

[data-tab-content=historias-de-cambio] {
  background-color: white;
}

.page-historias-de-cambio .entry-content-outer .entry-content .filters-result-container,
.page-historias-de-cambio .entry-content-outer .entry-content .filter-results,
.page-vacancies .entry-content-outer .entry-content .filters-result-container,
.page-vacancies .entry-content-outer .entry-content .filter-results,
.page-vacantes .entry-content-outer .entry-content .filters-result-container,
.page-vacantes .entry-content-outer .entry-content .filter-results,
[data-tab-content=historias-de-cambio] .entry-content .filters-result-container,
[data-tab-content=historias-de-cambio] .entry-content .filter-results {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
}
@media only screen and (min-width: 1200px) {
  .page-historias-de-cambio .entry-content-outer .entry-content .filters-result-container,
.page-historias-de-cambio .entry-content-outer .entry-content .filter-results,
.page-vacancies .entry-content-outer .entry-content .filters-result-container,
.page-vacancies .entry-content-outer .entry-content .filter-results,
.page-vacantes .entry-content-outer .entry-content .filters-result-container,
.page-vacantes .entry-content-outer .entry-content .filter-results,
[data-tab-content=historias-de-cambio] .entry-content .filters-result-container,
[data-tab-content=historias-de-cambio] .entry-content .filter-results {
    width: 100vw;
  }
}
.page-historias-de-cambio .entry-content-outer .entry-content .filters-result-container ul,
.page-historias-de-cambio .entry-content-outer .entry-content .filter-results ul,
.page-vacancies .entry-content-outer .entry-content .filters-result-container ul,
.page-vacancies .entry-content-outer .entry-content .filter-results ul,
.page-vacantes .entry-content-outer .entry-content .filters-result-container ul,
.page-vacantes .entry-content-outer .entry-content .filter-results ul,
[data-tab-content=historias-de-cambio] .entry-content .filters-result-container ul,
[data-tab-content=historias-de-cambio] .entry-content .filter-results ul {
  max-width: 1280px;
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  .page-historias-de-cambio .entry-content-outer .entry-content .filters-result-container ul,
.page-historias-de-cambio .entry-content-outer .entry-content .filter-results ul,
.page-vacancies .entry-content-outer .entry-content .filters-result-container ul,
.page-vacancies .entry-content-outer .entry-content .filter-results ul,
.page-vacantes .entry-content-outer .entry-content .filters-result-container ul,
.page-vacantes .entry-content-outer .entry-content .filter-results ul,
[data-tab-content=historias-de-cambio] .entry-content .filters-result-container ul,
[data-tab-content=historias-de-cambio] .entry-content .filter-results ul {
    margin: 0 auto;
  }
}
.page-historias-de-cambio .entry-content-outer ul,
.page-vacancies .entry-content-outer ul,
.page-vacantes .entry-content-outer ul,
[data-tab-content=historias-de-cambio] ul {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
  width: 100%;
}
.page-historias-de-cambio .entry-content-outer ul::after,
.page-vacancies .entry-content-outer ul::after,
.page-vacantes .entry-content-outer ul::after,
[data-tab-content=historias-de-cambio] ul::after {
  clear: both;
  content: "";
  display: block;
}
@media only screen and (min-width: 1200px) {
  .page-historias-de-cambio .entry-content-outer ul li,
.page-vacancies .entry-content-outer ul li,
.page-vacantes .entry-content-outer ul li,
[data-tab-content=historias-de-cambio] ul li {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
  }
}
.page-historias-de-cambio .entry-content-outer .entry-title,
.page-vacancies .entry-content-outer .entry-title,
.page-vacantes .entry-content-outer .entry-title,
[data-tab-content=historias-de-cambio] .entry-title {
  display: none;
}

.focus-area [data-tab-content=latest],
.focus-area [data-tab-content=programs],
.focus-area [data-tab-content=programas] {
  padding: 56px 0;
}

section.page-container {
  margin-top: 64px;
}
@media only screen and (max-width: 599px) {
  section.page-container {
    margin-top: 16px;
  }
}

.page-vacantes,
.page-vacancies,
[data-tab-content=vacantes],
[data-tab-content=vacancies] {
  background: transparent;
}
.page-vacantes .tab-wrapper,
.page-vacancies .tab-wrapper,
[data-tab-content=vacantes] .tab-wrapper,
[data-tab-content=vacancies] .tab-wrapper {
  max-width: 824px;
}
.page-vacantes .entry-content-outer .wrapper-small,
.page-vacancies .entry-content-outer .wrapper-small,
[data-tab-content=vacantes] .entry-content-outer .wrapper-small,
[data-tab-content=vacancies] .entry-content-outer .wrapper-small {
  padding-top: 0;
}
.page-vacantes .entry-content-outer .entry-content .filters-result-container ul,
.page-vacantes .entry-content-outer .entry-content .filter-results ul,
.page-vacancies .entry-content-outer .entry-content .filters-result-container ul,
.page-vacancies .entry-content-outer .entry-content .filter-results ul,
[data-tab-content=vacantes] .entry-content-outer .entry-content .filters-result-container ul,
[data-tab-content=vacantes] .entry-content-outer .entry-content .filter-results ul,
[data-tab-content=vacancies] .entry-content-outer .entry-content .filters-result-container ul,
[data-tab-content=vacancies] .entry-content-outer .entry-content .filter-results ul {
  max-width: 824px;
}
.page-vacantes .grid li,
.page-vacantes .post-list li,
.page-vacancies .grid li,
.page-vacancies .post-list li,
[data-tab-content=vacantes] .grid li,
[data-tab-content=vacantes] .post-list li,
[data-tab-content=vacancies] .grid li,
[data-tab-content=vacancies] .post-list li {
  float: none;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #D51317;
  margin-left: 0 !important;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.page-vacantes [class*=-meta],
.page-vacancies [class*=-meta],
[data-tab-content=vacantes] [class*=-meta],
[data-tab-content=vacancies] [class*=-meta] {
  color: black;
}
.page-vacantes [class*=-meta] span,
.page-vacancies [class*=-meta] span,
[data-tab-content=vacantes] [class*=-meta] span,
[data-tab-content=vacancies] [class*=-meta] span {
  display: block;
}

.vacancy-final-date {
  margin-bottom: 16px;
}

[data-tab-content=projects] .program-meta-section {
  display: none;
}
[data-tab-content=projects] .wrapper-small {
  padding: 16px;
}
@media only screen and (min-width: 1200px) {
  [data-tab-content=projects] .wrapper-small {
    padding: 32px;
    position: relative;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  [data-tab-content=projects] .wrapper-small {
    max-width: 1280px;
  }
}

.wp-block-cover-hero .wp-block {
  max-width: none;
}
.wp-block-cover-hero.alignfull {
  margin: 2rem 0;
}
.wp-block-cover-hero [contenteditable] {
  caret-color: white;
}
.wp-block-cover-hero.is-position-center-right .wp-block-group {
  float: right;
  text-align: right;
}
.wp-block-cover-hero.is-position-center-right .wp-block-group .wp-block-button {
  margin-right: -16px;
}
.wp-block-cover-hero.is-position-center-center .wp-block-cover__inner-container .hero-content {
  text-align: center;
}
.wp-block-cover-hero.is-position-center-left .wp-block-group {
  float: left;
}
.wp-block-cover-hero.is-position-center-left .wp-block-cover__inner-container .hero-content {
  margin-left: 32px;
}
.wp-block-cover-hero .wp-block-cover__inner-container {
  background-color: transparent;
  max-width: 1280px;
  margin: 0 auto !important;
  width: 100% !important;
  padding: 0 32px;
}
.wp-block-cover-hero .wp-block-cover__inner-container .wp-block-group {
  max-width: 500px;
}
.wp-block-cover-hero .wp-block-cover__inner-container .focus-only:focus {
  outline: 2px solid black;
}
.wp-block-cover-hero .wp-block-cover__inner-container p {
  max-width: 640px;
  font-size: 3rem;
  display: inline;
  padding: 8px 16px 8px 0;
  position: relative;
  line-height: 1.6;
}
.wp-block-cover-hero .wp-block-cover__inner-container p:focus-visible {
  outline: 1px dashed white;
  background-color: transparent !important;
  box-shadow: none !important;
}
.wp-block-cover-hero .wp-block-cover__inner-container p.has-hivos-white-background-color {
  box-shadow: 16px 0 0 white, -16px 0 0 white;
}
.wp-block-cover-hero .wp-block-cover__inner-container p.has-hivos-red-background-color {
  box-shadow: 16px 0 0 #D51317, -16px 0 0 #D51317;
}
.wp-block-cover-hero .wp-block-cover__inner-container .wp-block-button {
  margin-left: -16px;
  margin-top: 16px;
  display: block;
  float: none;
}
.wp-block-cover-hero .wp-block-cover__inner-container .wp-block-button .wp-block-button__link {
  display: inline-block;
  text-decoration: none;
  margin-top: 32px;
  font-family: "MuseoSansRounded-500", sans-serif;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 0;
}
.wp-block-cover-hero .wp-block-cover__inner-container .wp-block-button .wp-block-button__link:after {
  content: "";
  --right-arrow: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDQ3LjI0MyA0NDcuMjQzIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NDcuMjQzIDQ0Ny4yNDM7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiI+PGcgdHJhbnNmb3JtPSJtYXRyaXgoLTAuOTk5NSAtMS4yMjQwM2UtMTYgMS4yMjQwM2UtMTYgLTAuOTk5NSA0NDcuMTMxIDQ0Ny4xMzEpIj48Zz4KCTxnPgoJCTxwYXRoIGQ9Ik00MjAuMzYxLDE5Mi4yMjljLTEuODMtMC4yOTctMy42ODItMC40MzQtNS41MzUtMC40MUg5OS4zMDVsNi44OC0zLjJjNi43MjUtMy4xODMsMTIuODQzLTcuNTE1LDE4LjA4LTEyLjhsODguNDgtODguNDggICAgYzExLjY1My0xMS4xMjQsMTMuNjExLTI5LjAxOSw0LjY0LTQyLjRjLTEwLjQ0MS0xNC4yNTktMzAuNDY0LTE3LjM1NS00NC43MjQtNi45MTRjLTEuMTUyLDAuODQ0LTIuMjQ3LDEuNzY0LTMuMjc2LDIuNzU0ICAgIGwtMTYwLDE2MEMtMy4xMTksMjEzLjI2OS0zLjEzLDIzMy41Myw5LjM2LDI0Ni4wMzRjMC4wMDgsMC4wMDgsMC4wMTcsMC4wMTcsMC4wMjUsMC4wMjVsMTYwLDE2MCAgICBjMTIuNTE0LDEyLjQ3OSwzMi43NzUsMTIuNDUxLDQ1LjI1NS0wLjA2M2MwLjk4Mi0wLjk4NSwxLjg5OS0yLjAzMywyLjc0NS0zLjEzN2M4Ljk3MS0xMy4zODEsNy4wMTMtMzEuMjc2LTQuNjQtNDIuNCAgICBsLTg4LjMyLTg4LjY0Yy00LjY5NS00LjctMTAuMDkzLTguNjQxLTE2LTExLjY4bC05LjYtNC4zMmgzMTQuMjRjMTYuMzQ3LDAuNjA3LDMwLjY4OS0xMC44MTIsMzMuNzYtMjYuODggICAgQzQ0OS42NTQsMjExLjQ5NCw0MzcuODA2LDE5NS4wNTksNDIwLjM2MSwxOTIuMjI5eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojMDAwMDAwIj48L3BhdGg+Cgk8L2c+CjwvZz48L2c+IDwvc3ZnPg==);
  width: 16px;
  height: 16px;
  -webkit-mask-size: cover;
  mask-size: cover;
  mask-image: var(--right-arrow);
  -webkit-mask-image: var(--right-arrow);
  background-color: white;
  display: inline-block;
  margin-left: 8px;
  top: 2px;
  position: relative;
}
.wp-block-cover-hero .wp-block-cover__inner-container .wp-block-button .wp-block-button__link.has-hivos-white-background-color {
  background-color: white;
}
.wp-block-cover-hero .wp-block-cover__inner-container .wp-block-button .wp-block-button__link.has-hivos-white-background-color:after {
  background-color: #D51317;
}
.wp-block-cover-hero .wp-block-cover__inner-container .wp-block-button .wp-block-button__link:focus-visible {
  outline: 1px dashed white;
  background-color: transparent;
  box-shadow: none;
}

.wp-block-featured-posts {
  background: #D8D7D8;
}
.wp-block-featured-posts .section-title {
  font-size: 3em;
  margin: 2rem 0;
}
.wp-block-featured-posts .card-label {
  display: none;
}
.wp-block-featured-posts .card-title {
  color: white;
}

.aws-pattern-post-list-1 {
  background-color: #D8D7D8;
  padding: 16px 0;
}
.aws-pattern-post-list-1 .section-title {
  margin: 8px auto;
}
@media only screen and (min-width: 600px) {
  .aws-pattern-post-list-1 .section-title {
    margin: 16px auto;
  }
}
.aws-pattern-post-list-1 .filter-results {
  max-width: 1440px;
  margin: 0 auto;
}
.aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-flow: dense;
  grid-gap: 32px;
  margin: 16px 0;
}
@media only screen and (min-width: 900px) {
  .aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list {
    margin: 16px 0;
  }
}
.aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list li {
  margin: 0;
  display: flex;
  grid-column: span 8;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list li {
    grid-column: span 4;
  }
}
@media only screen and (min-width: 1200px) {
  .aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list li:nth-of-type(6n+1) {
    grid-column: span 5;
    grid-row: span 2;
    height: 650px;
  }
}
@media only screen and (min-width: 1200px) {
  .aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list li:nth-of-type(6n+2) .card-title,
.aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list li:nth-of-type(6n+3) .card-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list li:nth-of-type(6n+2),
.aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list li:nth-of-type(6n+3) {
    grid-column: span 3;
    height: 308px;
  }
}
@media only screen and (min-width: 1200px) {
  .aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list li:nth-of-type(6n+4) {
    grid-column: span 3;
    grid-row: span 2;
  }
}
@media only screen and (min-width: 1200px) {
  .aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list li:nth-of-type(6n+5) {
    grid-column: span 5;
    grid-row: span 2;
  }
}
@media only screen and (min-width: 1200px) {
  .aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list li:nth-of-type(6n+6) {
    grid-column: span 8;
  }
}
.aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list .card {
  width: 100%;
  height: 100%;
}
.aws-pattern-post-list-1 .awesome-post-list-layout ul.post-list .card .card-title {
  color: white;
}
.aws-pattern-post-list-1 .button-container {
  background: none;
  border: none;
  margin: 0;
  padding: 16px 0;
}

.aws-pattern-post-list-2 {
  background-color: #D8D7D8;
  padding: 16px 0;
}
.aws-pattern-post-list-2 .filter-results {
  max-width: 1440px;
  margin: 0 auto;
}
.aws-pattern-post-list-2 ul.post-list {
  margin: 0 auto;
  margin-left: 0;
  margin-right: 0;
  padding: 0 8px;
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}
.aws-pattern-post-list-2 ul.post-list::after {
  clear: both;
  content: "";
  display: block;
}
.aws-pattern-post-list-2 ul.post-list::after {
  clear: both;
  content: "";
  display: block;
}
@media only screen and (min-width: 600px) {
  .aws-pattern-post-list-2 ul.post-list {
    padding: 0;
  }
  .aws-pattern-post-list-2 ul.post-list li {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
  .aws-pattern-post-list-2 ul.post-list li:first-of-type, .aws-pattern-post-list-2 ul.post-list li:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .aws-pattern-post-list-2 ul.post-list {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    margin-left: 0;
    margin-right: 0;
  }
  .aws-pattern-post-list-2 ul.post-list::after {
    clear: both;
    content: "";
    display: block;
  }
  .aws-pattern-post-list-2 ul.post-list li {
    width: calc(33.3333333333% - 21.3333333333px);
    float: left;
    margin-left: 16px;
  }
}

.aws-pattern-post-list-3 {
  background-color: #D8D7D8;
  padding: 16px 0;
}
.aws-pattern-post-list-3 .section-title {
  margin: 8px auto;
}
@media only screen and (min-width: 600px) {
  .aws-pattern-post-list-3 .section-title {
    margin: 16px auto;
  }
}
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="6"] .post-list,
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="4"] .post-list {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(164px, 1fr));
  grid-auto-rows: minmax(288px, auto);
  grid-row-gap: 32px;
  grid-column-gap: 32px;
}
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="6"] .post-list .list-item,
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="4"] .post-list .list-item {
  margin: 0;
}
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="6"] .post-list .list-item:first-child,
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="4"] .post-list .list-item:first-child {
  grid-row-end: span 2;
  grid-column-end: span 2;
}
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="6"] .post-list .list-item:first-child .card-title,
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="4"] .post-list .list-item:first-child .card-title {
  font-size: 3rem;
}
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="6"] .post-list .card .card-label,
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="4"] .post-list .card .card-label {
  display: none;
}
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="6"] .post-list .card .card-title,
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="4"] .post-list .card .card-title {
  color: white;
  font-size: 1.5rem;
}
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="4"] .post-list {
  grid-template-columns: repeat(4, minmax(200px, 1fr));
}
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="4"] .post-list .list-item:first-child .card-title {
  font-size: 2.5rem;
}
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="4"] .post-list .list-item:nth-child(4) {
  grid-column-end: span 2;
}
.aws-pattern-post-list-3 .awesome-post-list-layout[data-perpage="4"] .post-list .list-item:nth-child(4) .card-title {
  font-size: 2rem;
}

.aws-pattern-post-list-4 {
  background-color: #D8D7D8;
  padding: 16px 0;
}
.aws-pattern-post-list-4 .section-title {
  margin: 8px auto;
}
@media only screen and (min-width: 600px) {
  .aws-pattern-post-list-4 .section-title {
    margin: 16px auto;
  }
}
.aws-pattern-post-list-4 .awesome-post-list-layout[data-perpage="6"] .post-list {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(164px, 1fr));
  grid-auto-rows: minmax(288px, auto);
  grid-row-gap: 32px;
  grid-column-gap: 32px;
}
.aws-pattern-post-list-4 .awesome-post-list-layout[data-perpage="6"] .post-list .list-item {
  margin: 0;
}
.aws-pattern-post-list-4 .awesome-post-list-layout[data-perpage="6"] .post-list .list-item:first-child {
  grid-row-end: span 2;
  grid-column-end: span 2;
}
.aws-pattern-post-list-4 .awesome-post-list-layout[data-perpage="6"] .post-list .list-item:first-child .card-title {
  font-size: 3rem;
}
.aws-pattern-post-list-4 .awesome-post-list-layout[data-perpage="6"] .post-list .card .card-label {
  display: none;
}
.aws-pattern-post-list-4 .awesome-post-list-layout[data-perpage="6"] .post-list .card .card-title {
  color: white;
  font-size: 1.5rem;
}

.aws-pattern-post-list-5 {
  background-color: #D8D7D8;
  padding: 16px 0;
}
.aws-pattern-post-list-5 .section-title {
  margin: 8px auto;
}
@media only screen and (min-width: 600px) {
  .aws-pattern-post-list-5 .section-title {
    margin: 16px auto;
  }
}
.aws-pattern-post-list-5 .awesome-post-list-layout[data-perpage="5"] .post-list {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(164px, 1fr));
  grid-auto-rows: minmax(288px, auto);
  grid-row-gap: 32px;
  grid-column-gap: 32px;
}
.aws-pattern-post-list-5 .awesome-post-list-layout[data-perpage="5"] .post-list .list-item {
  margin: 0;
}
.aws-pattern-post-list-5 .awesome-post-list-layout[data-perpage="5"] .post-list .list-item:first-child {
  grid-row-end: span 2;
  grid-column-end: span 2;
}
.aws-pattern-post-list-5 .awesome-post-list-layout[data-perpage="5"] .post-list .list-item:first-child .card-title {
  font-size: 3rem;
}
.aws-pattern-post-list-5 .awesome-post-list-layout[data-perpage="5"] .post-list .card .card-label {
  display: none;
}
.aws-pattern-post-list-5 .awesome-post-list-layout[data-perpage="5"] .post-list .card .card-title {
  color: white;
  font-size: 1.5rem;
}
.aws-pattern-post-list-5 .awesome-post-list-layout[data-perpage="5"] .post-list .list-item:nth-child(5) {
  grid-column-end: span 2;
}
.aws-pattern-post-list-5 .awesome-post-list-layout[data-perpage="5"] .post-list .list-item:nth-child(5) .card-title {
  font-size: 2rem;
}

.wp-block-hero-cover-text[class*=is-position-top-left] .wp-block-group, .wp-block-hero-cover-text[class*=is-position-center-left] .wp-block-group, .wp-block-hero-cover-text[class*=is-position-bottom-left] .wp-block-group {
  float: left;
}
.wp-block-hero-cover-text[class*=is-position-top-center] .wp-block-group, .wp-block-hero-cover-text[class*=is-position-center-center] .wp-block-group, .wp-block-hero-cover-text[class*=is-position-bottom-center] .wp-block-group {
  margin: 0 auto;
}
.wp-block-hero-cover-text[class*=is-position-top-right] .wp-block-group, .wp-block-hero-cover-text[class*=is-position-center-right] .wp-block-group, .wp-block-hero-cover-text[class*=is-position-bottom-right] .wp-block-group {
  float: right;
}
.wp-block-hero-cover-text .wp-block-cover__inner-container {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  padding: 64px 0;
}
.wp-block-hero-cover-text .wp-block-cover__inner-container .wp-block-group {
  max-width: 500px;
  background-color: white;
  padding: 32px;
}
.wp-block-hero-cover-text .wp-block-cover__inner-container .wp-block-columns {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.wp-block-hero-cover-text .wp-block-cover__inner-container h2 {
  font-size: 2rem;
  position: relative;
  line-height: 1.2;
  color: #D51317;
  margin: 0 0 16px;
}
.wp-block-hero-cover-text .wp-block-cover__inner-container p {
  color: black;
}
.wp-block-hero-cover-text .wp-block-cover__inner-container .wp-block-button {
  display: block;
  float: none;
}
.wp-block-hero-cover-text .wp-block-cover__inner-container .wp-block-button .wp-block-button__link {
  background: transparent;
  padding: 0;
  display: inline-block;
  text-decoration: none;
  margin-top: 32px;
  font-family: "MuseoSansRounded-300", sans-serif;
  color: #D51317;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 0;
}
.wp-block-hero-cover-text .wp-block-cover__inner-container .wp-block-button .wp-block-button__link:after {
  content: "";
  --right-arrow: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDQ3LjI0MyA0NDcuMjQzIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NDcuMjQzIDQ0Ny4yNDM7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiI+PGcgdHJhbnNmb3JtPSJtYXRyaXgoLTAuOTk5NSAtMS4yMjQwM2UtMTYgMS4yMjQwM2UtMTYgLTAuOTk5NSA0NDcuMTMxIDQ0Ny4xMzEpIj48Zz4KCTxnPgoJCTxwYXRoIGQ9Ik00MjAuMzYxLDE5Mi4yMjljLTEuODMtMC4yOTctMy42ODItMC40MzQtNS41MzUtMC40MUg5OS4zMDVsNi44OC0zLjJjNi43MjUtMy4xODMsMTIuODQzLTcuNTE1LDE4LjA4LTEyLjhsODguNDgtODguNDggICAgYzExLjY1My0xMS4xMjQsMTMuNjExLTI5LjAxOSw0LjY0LTQyLjRjLTEwLjQ0MS0xNC4yNTktMzAuNDY0LTE3LjM1NS00NC43MjQtNi45MTRjLTEuMTUyLDAuODQ0LTIuMjQ3LDEuNzY0LTMuMjc2LDIuNzU0ICAgIGwtMTYwLDE2MEMtMy4xMTksMjEzLjI2OS0zLjEzLDIzMy41Myw5LjM2LDI0Ni4wMzRjMC4wMDgsMC4wMDgsMC4wMTcsMC4wMTcsMC4wMjUsMC4wMjVsMTYwLDE2MCAgICBjMTIuNTE0LDEyLjQ3OSwzMi43NzUsMTIuNDUxLDQ1LjI1NS0wLjA2M2MwLjk4Mi0wLjk4NSwxLjg5OS0yLjAzMywyLjc0NS0zLjEzN2M4Ljk3MS0xMy4zODEsNy4wMTMtMzEuMjc2LTQuNjQtNDIuNCAgICBsLTg4LjMyLTg4LjY0Yy00LjY5NS00LjctMTAuMDkzLTguNjQxLTE2LTExLjY4bC05LjYtNC4zMmgzMTQuMjRjMTYuMzQ3LDAuNjA3LDMwLjY4OS0xMC44MTIsMzMuNzYtMjYuODggICAgQzQ0OS42NTQsMjExLjQ5NCw0MzcuODA2LDE5NS4wNTksNDIwLjM2MSwxOTIuMjI5eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojMDAwMDAwIj48L3BhdGg+Cgk8L2c+CjwvZz48L2c+IDwvc3ZnPg==);
  width: 16px;
  height: 16px;
  -webkit-mask-size: cover;
  mask-size: cover;
  mask-image: var(--right-arrow);
  -webkit-mask-image: var(--right-arrow);
  background-color: #D51317;
  display: inline-block;
  margin-left: 16px;
}

.wp-block-number {
  max-width: 100vw;
  margin: 2rem 0;
  padding: 0 16px;
}
@media only screen and (min-width: 1280px) {
  .wp-block-number {
    margin: 12rem 0;
    padding: 0;
  }
}
.wp-block-number .wp-block-group__inner-container {
  max-width: 992px;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .wp-block-number .wp-block-group__inner-container {
    max-width: 1232px;
  }
}
@media only screen and (min-width: 1440px) {
  .wp-block-number .wp-block-group__inner-container {
    max-width: 1248px;
  }
}
.wp-block-number .wp-block {
  max-width: none;
}
.wp-block-number .number-column {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1280px) {
  .wp-block-number .number-column {
    margin-bottom: 0;
  }
}
.wp-block-number .section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1280px) {
  .wp-block-number .section-title {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
}
.wp-block-number .wp-block-button {
  display: block;
  float: none;
}
.wp-block-number .wp-block-button .wp-block-button__link {
  display: inline-block;
  text-decoration: none;
  background: white;
  font-family: "MuseoSansRounded-500", sans-serif;
  color: #D51317;
  padding: 8px 16px 8px 0px;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 0;
}
.wp-block-number .wp-block-button .wp-block-button__link:after {
  content: "";
  --right-arrow: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDQ3LjI0MyA0NDcuMjQzIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NDcuMjQzIDQ0Ny4yNDM7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiI+PGcgdHJhbnNmb3JtPSJtYXRyaXgoLTAuOTk5NSAtMS4yMjQwM2UtMTYgMS4yMjQwM2UtMTYgLTAuOTk5NSA0NDcuMTMxIDQ0Ny4xMzEpIj48Zz4KCTxnPgoJCTxwYXRoIGQ9Ik00MjAuMzYxLDE5Mi4yMjljLTEuODMtMC4yOTctMy42ODItMC40MzQtNS41MzUtMC40MUg5OS4zMDVsNi44OC0zLjJjNi43MjUtMy4xODMsMTIuODQzLTcuNTE1LDE4LjA4LTEyLjhsODguNDgtODguNDggICAgYzExLjY1My0xMS4xMjQsMTMuNjExLTI5LjAxOSw0LjY0LTQyLjRjLTEwLjQ0MS0xNC4yNTktMzAuNDY0LTE3LjM1NS00NC43MjQtNi45MTRjLTEuMTUyLDAuODQ0LTIuMjQ3LDEuNzY0LTMuMjc2LDIuNzU0ICAgIGwtMTYwLDE2MEMtMy4xMTksMjEzLjI2OS0zLjEzLDIzMy41Myw5LjM2LDI0Ni4wMzRjMC4wMDgsMC4wMDgsMC4wMTcsMC4wMTcsMC4wMjUsMC4wMjVsMTYwLDE2MCAgICBjMTIuNTE0LDEyLjQ3OSwzMi43NzUsMTIuNDUxLDQ1LjI1NS0wLjA2M2MwLjk4Mi0wLjk4NSwxLjg5OS0yLjAzMywyLjc0NS0zLjEzN2M4Ljk3MS0xMy4zODEsNy4wMTMtMzEuMjc2LTQuNjQtNDIuNCAgICBsLTg4LjMyLTg4LjY0Yy00LjY5NS00LjctMTAuMDkzLTguNjQxLTE2LTExLjY4bC05LjYtNC4zMmgzMTQuMjRjMTYuMzQ3LDAuNjA3LDMwLjY4OS0xMC44MTIsMzMuNzYtMjYuODggICAgQzQ0OS42NTQsMjExLjQ5NCw0MzcuODA2LDE5NS4wNTksNDIwLjM2MSwxOTIuMjI5eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojMDAwMDAwIj48L3BhdGg+Cgk8L2c+CjwvZz48L2c+IDwvc3ZnPg==);
  width: 16px;
  height: 16px;
  -webkit-mask-size: cover;
  mask-size: cover;
  mask-image: var(--right-arrow);
  -webkit-mask-image: var(--right-arrow);
  background-color: #D51317;
  display: inline-block;
  margin-left: 8px;
  top: 4px;
  position: relative;
}
.wp-block-number .wp-block-columns > h2 {
  font-family: "MuseoSansRounded-700", sans-serif;
}
.wp-block-number .wp-block-columns .wp-block-columns {
  border-bottom: 8px solid #D51317;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}
.wp-block-number .wp-block-group__inner-container .big-number {
  line-height: 1;
  font-size: 4rem;
  color: #D51317;
}
@media only screen and (min-width: 600px) {
  .wp-block-number .wp-block-group__inner-container .big-number {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .wp-block-number .wp-block-group__inner-container .big-number {
    font-size: 6rem;
  }
}
.wp-block-number .wp-block-group__inner-container p {
  font-family: "MuseoSansRounded-500", sans-serif;
  max-width: 90%;
  margin: 0;
}
@media only screen and (min-width: 1280px) {
  .wp-block-number .wp-block-group__inner-container p {
    min-height: 56px;
  }
}
@media only screen and (min-width: 1280px) {
  .wp-block-number .wp-block-column:not(:first-child) {
    margin-left: 4em;
  }
}
.wp-block-number .wp-block-column p {
  font-family: "MuseoSansRounded-500", sans-serif;
  max-width: 90%;
}
.wp-block-number .wp-block-image {
  margin: 0;
  text-align: right;
}
.wp-block-number .wp-block-image img {
  height: 64px;
  object-fit: contain;
}
@media only screen and (min-width: 600px) {
  .wp-block-number .wp-block-image img {
    height: 112px;
  }
}
.wp-block-number .has-hivos-red-color {
  color: #D51317;
}
.wp-block-number .block-editor-block-list__layout .block-editor-block-list__block h2 {
  margin: 0;
}

.hivos-text-block {
  text-align: center;
  margin: 0;
  padding: 8rem 0;
}
.hivos-text-block .wp-block {
  max-width: none;
}
.hivos-text-block figure,
.hivos-text-block blockquote p {
  margin: 0;
}
.hivos-text-block blockquote p {
  border: 0;
}
.hivos-text-block .wp-block-button {
  display: block;
  float: none;
}
.hivos-text-block .wp-block-button .wp-block-button__link {
  display: inline-block;
  text-decoration: none;
  margin-top: 32px;
  font-family: "MuseoSansRounded-300", sans-serif;
  background-color: transparent;
  cursor: pointer;
  font-size: 24px;
  border-radius: 0;
}
.hivos-text-block .wp-block-button .wp-block-button__link:after {
  content: "";
  --right-arrow: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDQ3LjI0MyA0NDcuMjQzIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NDcuMjQzIDQ0Ny4yNDM7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiI+PGcgdHJhbnNmb3JtPSJtYXRyaXgoLTAuOTk5NSAtMS4yMjQwM2UtMTYgMS4yMjQwM2UtMTYgLTAuOTk5NSA0NDcuMTMxIDQ0Ny4xMzEpIj48Zz4KCTxnPgoJCTxwYXRoIGQ9Ik00MjAuMzYxLDE5Mi4yMjljLTEuODMtMC4yOTctMy42ODItMC40MzQtNS41MzUtMC40MUg5OS4zMDVsNi44OC0zLjJjNi43MjUtMy4xODMsMTIuODQzLTcuNTE1LDE4LjA4LTEyLjhsODguNDgtODguNDggICAgYzExLjY1My0xMS4xMjQsMTMuNjExLTI5LjAxOSw0LjY0LTQyLjRjLTEwLjQ0MS0xNC4yNTktMzAuNDY0LTE3LjM1NS00NC43MjQtNi45MTRjLTEuMTUyLDAuODQ0LTIuMjQ3LDEuNzY0LTMuMjc2LDIuNzU0ICAgIGwtMTYwLDE2MEMtMy4xMTksMjEzLjI2OS0zLjEzLDIzMy41Myw5LjM2LDI0Ni4wMzRjMC4wMDgsMC4wMDgsMC4wMTcsMC4wMTcsMC4wMjUsMC4wMjVsMTYwLDE2MCAgICBjMTIuNTE0LDEyLjQ3OSwzMi43NzUsMTIuNDUxLDQ1LjI1NS0wLjA2M2MwLjk4Mi0wLjk4NSwxLjg5OS0yLjAzMywyLjc0NS0zLjEzN2M4Ljk3MS0xMy4zODEsNy4wMTMtMzEuMjc2LTQuNjQtNDIuNCAgICBsLTg4LjMyLTg4LjY0Yy00LjY5NS00LjctMTAuMDkzLTguNjQxLTE2LTExLjY4bC05LjYtNC4zMmgzMTQuMjRjMTYuMzQ3LDAuNjA3LDMwLjY4OS0xMC44MTIsMzMuNzYtMjYuODggICAgQzQ0OS42NTQsMjExLjQ5NCw0MzcuODA2LDE5NS4wNTksNDIwLjM2MSwxOTIuMjI5eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojMDAwMDAwIj48L3BhdGg+Cgk8L2c+CjwvZz48L2c+IDwvc3ZnPg==);
  width: 16px;
  height: 16px;
  -webkit-mask-size: cover;
  mask-size: cover;
  mask-image: var(--right-arrow);
  -webkit-mask-image: var(--right-arrow);
  display: inline-block;
  margin-left: 16px;
}

.wp-block[data-title="Full Post List"] {
  max-width: 1440px;
}

.wp-block-cover,
.wp-block-cover-image {
  height: auto;
}

.aws-pattern .card {
  border: none;
  padding: 0;
}

.single-programme-tabs {
  padding: 48px 0;
}
.single-programme-tabs .filter [class*=wrap],
.single-programme-tabs .filter ul {
  max-width: 800px;
}
.single-programme-tabs .filter ul {
  margin: 20px auto 0;
}
.single-programme-tabs [class*=tabs].is-sticky + .filter {
  margin-top: calc(80px);
}
.single-programme-tabs [class*=tabs].is-sticky .content-title {
  opacity: 1;
}

.content-title {
  display: none;
  vertical-align: top;
}
.content-title .section-title {
  font-size: 1.5em;
  margin: 0;
  padding: 4px 0;
  line-height: 1.2;
  font-family: "MuseoSansRounded-700", sans-serif;
}

.related-items {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}
.related-items::after {
  clear: both;
  content: "";
  display: block;
}
.related-items .programme-meta-item {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
}
@media only screen and (min-width: 600px) {
  .related-items .programme-meta-item {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 900px) {
  .related-items .programme-meta-item {
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .related-items .programme-meta-item {
    width: calc(25% - 25px);
    float: left;
    margin-left: 20px;
  }
}

@media only screen and (min-width: 1280px) {
  .related-items,
.related-list,
.article-list {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    padding: 0;
    margin: 0;
  }
  .related-items::after,
.related-list::after,
.article-list::after {
    clear: both;
    content: "";
    display: block;
  }
  .related-items li,
.related-list li,
.article-list li {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
    width: 100%;
  }

  .related-contacts {
    padding: 0;
  }
  .related-contacts::after {
    clear: both;
    content: "";
    display: block;
  }
  .related-contacts .programme-meta-item {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
  }
  .related-contacts .contact-list {
    padding: 0;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
  .related-contacts .contact-list::after {
    clear: both;
    content: "";
    display: block;
  }
  .related-contacts .contact-list .card-contact {
    width: calc(100% - 32px);
    float: left;
    margin-left: 16px;
  }

  .related-items > li {
    width: calc(25% - 20px);
    float: left;
    margin-left: 16px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 599px) {
  .related-items > li {
    width: calc(100% - 32px);
    float: left;
    margin-left: 16px;
  }
}
@media only screen and (min-width: 1280px) {
  .related-items > li a {
    color: white;
  }
}
@media only screen and (min-width: 1280px) {
  .related-items > li:nth-child(3) {
    padding: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .related-items > li ul li {
    display: block;
    float: none;
    width: 100%;
  }
}
@media only screen and (min-width: 1280px) and (min-width: 900px) {
  .single-relations.single-focus-area li {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
  }
  .single-relations.single-focus-area li:nth-child(1),
.single-relations.single-focus-area li:nth-child(2) {
    width: calc(50% - 24px);
    float: left;
    margin-left: 16px;
  }
}
.programme-meta-title.related-programs {
  color: #D51317;
  font-family: "MuseoSansRounded-300", sans-serif;
}
.single-relations {
  padding: 0;
  margin-bottom: 0;
}

@media only screen and (min-width: 600px) {
  .single-relations {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  .single-relations::after {
    clear: both;
    content: "";
    display: block;
  }
  .single-relations .card {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 900px) {
  .single-relations .card {
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
  }
  .single-relations .card:nth-child(1),
.single-relations .card:nth-child(2) {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
  .single-relations .card:nth-child(6),
.single-relations .card:nth-child(7) {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
  .single-relations .card:nth-child(11),
.single-relations .card:nth-child(12) {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
  .single-relations .card:nth-child(16),
.single-relations .card:nth-child(17) {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
}

@media only screen and (min-width: 900px) {
  .related-list li {
    margin-left: 0;
  }
}

.modal {
  background-color: transparent;
}
.modal.modal-bottom .awscookie-logo,
.modal.modal-bottom .cookie-links {
  display: none;
}
.modal.modal-bottom .cookie-container {
  max-width: 1000px;
}
@media only screen and (max-width: 599px) {
  .modal.modal-bottom .cookie-container {
    display: inline-block;
  }
}
.modal.modal-bottom .cookie-container-right {
  padding-top: 60px;
}
.modal.modal-bottom button {
  min-width: auto;
  background-color: #D51317;
  font-weight: 300;
  padding: 8px 16px;
}

.footer-newsletter {
  display: block;
}
@media only screen and (max-width: 599px) {
  .footer-newsletter {
    display: none;
  }
}
.footer-newsletter .latina-text {
  display: none;
}
.footer-newsletter .section-title {
  margin: 16px 0;
  line-height: 1.1;
}
.footer-newsletter .section-introduction {
  text-align: center;
}
.footer-newsletter .section-introduction p {
  margin-bottom: 2em;
}
.footer-newsletter .form-list {
  text-align: center;
}
.footer-newsletter .form-list-item {
  width: 29%;
  display: inline-block;
}
.footer-newsletter .form-list-item:first-of-type {
  width: 50%;
}

.footer-newsletter .form-list-item,
.footer-newsletter-mobile .form-list-item {
  height: 40px;
}
.footer-newsletter .form-list-item input,
.footer-newsletter-mobile .form-list-item input {
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: none;
  font-size: 16px;
  padding: 10px;
  color: #D51317;
}
.footer-newsletter .form-list-item input::-webkit-input-placeholder, .footer-newsletter .form-list-item input::-ms-input-placeholder, .footer-newsletter .form-list-item input::-moz-placeholder, .footer-newsletter .form-list-item input::placeholder,
.footer-newsletter-mobile .form-list-item input::-webkit-input-placeholder,
.footer-newsletter-mobile .form-list-item input::-ms-input-placeholder,
.footer-newsletter-mobile .form-list-item input::-moz-placeholder,
.footer-newsletter-mobile .form-list-item input::placeholder {
  color: #D51317;
}
.footer-newsletter .button-extend,
.footer-newsletter-mobile .button-extend {
  background: #D51317;
  color: white;
}
.footer-newsletter .button-extend div,
.footer-newsletter-mobile .button-extend div {
  padding: 10px 0;
}

.footer-newsletter-mobile {
  display: none;
}
.footer-newsletter-mobile .form-list-item {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 599px) {
  .footer-newsletter-mobile {
    display: block;
    float: left;
  }
}

.newsletter-thank-you {
  display: none;
  font-size: 3rem;
  font-family: "MuseoSansRounded-500", sans-serif;
}

.mailchimp-form {
  display: flex;
  flex-wrap: wrap;
}
.mailchimp-form form {
  width: 100%;
  margin: 0 auto 32px;
}
@media only screen and (min-width: 900px) {
  .mailchimp-form form {
    width: 80%;
  }
}
.mailchimp-form input[type=text] {
  display: none;
}
.mailchimp-form input::placeholder, .mailchimp-form input::-webkit-input-placeholder, .mailchimp-form input::-moz-placeholder {
  color: #cccccc;
}
.mailchimp-form input[type=email],
.mailchimp-form input[type=submit] {
  display: inline-block;
  vertical-align: top;
  height: 40px;
  border: 0;
}
.mailchimp-form input[type=email] {
  padding: 8px;
  font-size: 16px;
}
.mailchimp-form input[type=submit] {
  color: white;
  cursor: pointer;
}

.America.Latina .footer-newsletter .english-text {
  display: none;
}
.America.Latina .footer-newsletter .latina-text {
  display: block;
}

.admin-bar section.page-container {
  margin-top: 64px;
}
@media only screen and (max-width: 599px) {
  .admin-bar section.page-container {
    margin-top: 16px;
  }
}

.homepage-black [class*=slide-hero][class*=-red] {
  background-color: black;
}
.homepage-black .header {
  background-color: #000;
}
.homepage-black .story-footer {
  display: none;
}
.homepage-black .slide.slide-hero-center-big .slide-title.invert-red p {
  box-shadow: 32px 0 0 #000, -32px 0 0 #000;
}
.homepage-black .slide.slide-hero-center-big .slide-title.invert-red p {
  background-color: #000;
}
.homepage-black .slide .slide-title.invert-red span,
.homepage-black .slide .slide-title.invert-red p {
  background-color: black;
  box-shadow: 16px 0 0 black, -16px 0 0 black;
}
.homepage-black .link-button.ghost-button a, .homepage-black .link-button.ghost-button i, .homepage-black .link-button.white-button a, .homepage-black .link-button.white-button i {
  color: black;
}
.homepage-black .link-button a:after {
  background-image: url(../img/right-arrow-black.png);
}
.homepage-black .go-top,
.homepage-black .widget_mailchimp_block .button {
  background-color: black;
}
.homepage-black .slides-indicators {
  display: none;
}
.homepage-black .link-button.ghost-button a {
  color: white;
}
.homepage-black .site-region {
  color: black;
}

.homepage-campagne .story-footer {
  display: none;
}

.single-donatie img {
  position: relative;
}
.single-donatie .entry-header img {
  position: absolute;
}
@media only screen and (min-width: 900px) {
  .single-donatie .type-title {
    width: 50%;
    bottom: 64px;
  }
}
.single-donatie .entry-content {
  max-width: 824px;
}
@media only screen and (min-width: 600px) {
  .single-donatie .entry-content {
    padding: 0 32px 0 0;
  }
}
.single-donatie .entry-content h1 {
  margin: 0px 0px 16px;
}
.single-donatie .entry-content figure.alignnone {
  margin-top: 8px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 600px) {
  .single-donatie .entry-content figure.alignnone {
    margin-top: 64px;
    margin-bottom: 64px;
    width: 100vw !important;
  }
}
@media only screen and (min-width: 1200px) {
  .single-donatie .entry-content figure.alignnone {
    width: 100% !important;
  }
}
.single-donatie .entry-content figure.alignnone img {
  position: relative;
}
@media only screen and (min-width: 600px) {
  .single-donatie .entry-content figure.alignnone img {
    width: 100%;
    left: -16px;
  }
}
@media only screen and (min-width: 1200px) {
  .single-donatie .entry-content figure.alignnone img {
    margin-left: -50vw;
    margin-right: calc(-50vw - ((1280px - 824px) - 16px));
    max-width: 100vw;
    width: 100vw;
    left: 0;
  }
}

.donation-active .main-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}
.donation-active .main-content .wrapper-small {
  margin-left: 0;
  max-width: 650px;
}
.donation-active .single-container.gutenberg .entry-content {
  max-width: 920px;
  margin: 0 auto;
}
.donation-active .single-container.gutenberg .entry-content .entry-title,
.donation-active .single-container.gutenberg .entry-content p {
  max-width: 650px !important;
  margin-left: 0 !important;
}

@media only screen and (min-width: 600px) {
  .page-actueel,
.news-and-views {
    background-color: #D8D7D8;
  }
}
.page-actueel .entry-title,
.news-and-views .entry-title {
  display: none;
  padding: 0;
}
.page-actueel .wrapper-wide,
.news-and-views .wrapper-wide {
  padding: 0 16px;
}
.page-actueel .header .wrapper-wide,
.news-and-views .header .wrapper-wide {
  padding: 0;
}
.page-actueel .button-container,
.news-and-views .button-container {
  padding: 0 0 32px 0;
}
.page-actueel .card-default .card-image,
.news-and-views .card-default .card-image {
  background: red;
}
.page-actueel .footer .wrapper-wide,
.news-and-views .footer .wrapper-wide {
  padding: 4px 0 16px 0;
}
@media only screen and (min-width: 1200px) {
  .page-actueel .footer .wrapper-wide,
.news-and-views .footer .wrapper-wide {
    padding: 4px 0 16px 230px;
  }
}

.single-donatie img {
  position: relative;
}
.single-donatie .entry-header img {
  position: absolute;
}
@media only screen and (min-width: 900px) {
  .single-donatie .type-title {
    width: 50%;
    bottom: 64px;
  }
}
.single-donatie .entry-content {
  max-width: 824px;
}
@media only screen and (min-width: 600px) {
  .single-donatie .entry-content {
    padding: 0 32px 0 0;
  }
}
.single-donatie .entry-content h1 {
  margin: 0px 0px 16px;
}
.single-donatie .entry-content figure.alignnone {
  margin-top: 8px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 600px) {
  .single-donatie .entry-content figure.alignnone {
    margin-top: 64px;
    margin-bottom: 64px;
    width: 100vw !important;
  }
}
@media only screen and (min-width: 1200px) {
  .single-donatie .entry-content figure.alignnone {
    width: 100% !important;
  }
}
.single-donatie .entry-content figure.alignnone img {
  position: relative;
}
@media only screen and (min-width: 600px) {
  .single-donatie .entry-content figure.alignnone img {
    width: 100%;
    left: -16px;
  }
}
@media only screen and (min-width: 1200px) {
  .single-donatie .entry-content figure.alignnone img {
    margin-left: -50vw;
    margin-right: calc(-50vw - ((1280px - 824px) - 16px));
    max-width: 100vw;
    width: 100vw;
    left: 0;
  }
}

.donation-thank-you .single-container {
  min-height: 400px;
}
.donation-thank-you .single-container article {
  padding-top: 200px;
}

.page-nuestras-areas-de-impacto .wrapper-small,
.page-nuestras-areas-de-trabajo .wrapper-small,
.page-our-focus-areas .wrapper-small,
.page-our-impact-areas .wrapper-small,
.stories-of-change .wrapper-small,
.historias-de-cambio .wrapper-small {
  max-width: 1280px;
}
.page-nuestras-areas-de-impacto .levels-menu-navigation .wrapper-small,
.page-nuestras-areas-de-trabajo .levels-menu-navigation .wrapper-small,
.page-our-focus-areas .levels-menu-navigation .wrapper-small,
.page-our-impact-areas .levels-menu-navigation .wrapper-small,
.stories-of-change .levels-menu-navigation .wrapper-small,
.historias-de-cambio .levels-menu-navigation .wrapper-small {
  max-width: 980px;
}
@media only screen and (max-width: 599px) {
  .page-nuestras-areas-de-impacto .entry-content,
.page-nuestras-areas-de-trabajo .entry-content,
.page-our-focus-areas .entry-content,
.page-our-impact-areas .entry-content,
.stories-of-change .entry-content,
.historias-de-cambio .entry-content {
    padding: 16px;
  }
}
.page-nuestras-areas-de-impacto .filter-wrapper,
.page-nuestras-areas-de-trabajo .filter-wrapper,
.page-our-focus-areas .filter-wrapper,
.page-our-impact-areas .filter-wrapper,
.stories-of-change .filter-wrapper,
.historias-de-cambio .filter-wrapper {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.page-nuestras-areas-de-impacto .filter-results,
.page-nuestras-areas-de-trabajo .filter-results,
.page-our-focus-areas .filter-results,
.page-our-impact-areas .filter-results,
.stories-of-change .filter-results,
.historias-de-cambio .filter-results {
  background-color: white;
}
@media only screen and (max-width: 599px) {
  .page-nuestras-areas-de-impacto .filter-results,
.page-nuestras-areas-de-trabajo .filter-results,
.page-our-focus-areas .filter-results,
.page-our-impact-areas .filter-results,
.stories-of-change .filter-results,
.historias-de-cambio .filter-results {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.page-nuestras-areas-de-impacto .awesome-post-list-layout ul.post-list,
.page-nuestras-areas-de-trabajo .awesome-post-list-layout ul.post-list,
.page-our-focus-areas .awesome-post-list-layout ul.post-list,
.page-our-impact-areas .awesome-post-list-layout ul.post-list,
.stories-of-change .awesome-post-list-layout ul.post-list,
.historias-de-cambio .awesome-post-list-layout ul.post-list {
  max-width: 1280px;
  margin: 0 auto;
}
.page-nuestras-areas-de-impacto .awesome-post-list-layout ul.post-list .list-item,
.page-nuestras-areas-de-trabajo .awesome-post-list-layout ul.post-list .list-item,
.page-our-focus-areas .awesome-post-list-layout ul.post-list .list-item,
.page-our-impact-areas .awesome-post-list-layout ul.post-list .list-item,
.stories-of-change .awesome-post-list-layout ul.post-list .list-item,
.historias-de-cambio .awesome-post-list-layout ul.post-list .list-item {
  width: 100%;
  min-height: 250px;
  padding: 1em 0;
  float: left;
  margin-left: 0;
}
@media only screen and (max-width: 599px) {
  .page-nuestras-areas-de-impacto .awesome-post-list-layout ul.post-list .list-item,
.page-nuestras-areas-de-trabajo .awesome-post-list-layout ul.post-list .list-item,
.page-our-focus-areas .awesome-post-list-layout ul.post-list .list-item,
.page-our-impact-areas .awesome-post-list-layout ul.post-list .list-item,
.stories-of-change .awesome-post-list-layout ul.post-list .list-item,
.historias-de-cambio .awesome-post-list-layout ul.post-list .list-item {
    float: none;
    margin: 0 0 16px;
  }
}

.archive .section-grey,
.category .section-grey {
  background-color: white;
}
.archive .grid,
.category .grid {
  width: 100%;
  max-width: 824px;
  padding: 32px 0;
  margin: 0 auto;
}
.archive .article-list li,
.category .article-list li {
  padding: 16px 0;
  border-bottom: 1px solid #D51317;
}

.focus-area-publications .wrapper-small,
.page-publications .entry-content-outer .wrapper-small {
  max-width: 1248px;
  padding-top: 0;
}

html {
  box-sizing: border-box;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

#wp-media-grid .expander + .dropdown {
  display: none;
}

.main-container {
  width: 100%;
}

.background-container {
  height: 100%;
}

.wrapper-wide {
  padding: 16px;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .wrapper-wide {
    padding: 32px 16px;
    position: relative;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  .wrapper-wide {
    max-width: 1280px;
  }
}

.entry-header .wrapper-wide {
  height: 100%;
}

.layover .wrapper-wide {
  padding: 0;
}

.wrapper-small {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 16px;
}
@media only screen and (min-width: 600px) {
  .wrapper-small {
    padding: 16px 32px;
  }
}
@media only screen and (min-width: 900px) {
  .wrapper-small {
    padding: 32px 0;
  }
}
.wrapper-small.wrapper-no-pad {
  padding: 0;
}

@media only screen and (min-width: 900px) {
  .main-content .wrapper-small {
    padding: 0 0 32px;
  }
}

.page-where-we-work .wrapper-small {
  padding-bottom: 0;
}

@media only screen and (max-width: 599px) {
  .sub-tabs-content .wrapper-small {
    padding: 16px 0;
  }
}

@media only screen and (max-width: 599px) {
  .section-red,
.section-grey {
    padding: 0px;
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  .section-red,
.section-grey {
    display: inline-block;
    width: 100%;
  }
  .section-red::after,
.section-grey::after {
    clear: both;
    content: "";
    display: block;
  }
}

.section-grey {
  background-color: #D8D7D8;
}
@media only screen and (max-width: 599px) {
  .section-grey .wrapper-wide {
    width: 100vw;
  }
}

@media only screen and (max-width: 599px) {
  .single-post .section-grey .wrapper-wide,
.single-blog .section-grey .wrapper-wide,
.single-opinion .section-grey .wrapper-wide {
    padding: 16px;
  }
}

.related-list {
  padding: 0;
}
@media only screen and (min-width: 1280px) {
  .related-list {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
  .related-list::after {
    clear: both;
    content: "";
    display: block;
  }
}

.site-container {
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .site-container {
    margin: 0 auto;
    position: relative;
  }
  .site-container::after {
    clear: both;
    content: "";
    display: block;
  }
}

.single-footer {
  width: calc(100% - 40px);
  float: left;
  margin-left: 20px;
}

.single-program .entry-content {
  padding-top: 0px;
}
@media only screen and (min-width: 900px) {
  .single-program .entry-content {
    padding-top: 32px;
  }
}
.single-program .js-content-tab-ul .entry-content {
  padding-top: 0px;
}
.single-program .entry-content-program {
  padding-top: 32px;
}

body.search {
  position: relative;
  right: 0;
}

.error404 .page-container {
  min-height: 100vh;
}

.page-where-we-work .entry-content .globe-map-container {
  min-height: 732px;
  padding-top: 16px;
}
.page-where-we-work .entry-content > p:last-child {
  display: none;
}

.home .story-footer {
  display: none;
}

.postid-11057 .wrapper-small {
  max-width: 1280px;
  padding: 32px 16px;
}
.postid-11057 .wrapper-small .entry-title,
.postid-11057 .wrapper-small .entry-content {
  max-width: 834px;
}

.wp-post-content-block .entry-header {
  display: none;
  padding: 0;
}

.single-focus-area .nav-tabs-mobile,
.single-program .nav-tabs-mobile {
  display: none;
}
@media only screen and (max-width: 599px) {
  .single-focus-area li[data-tab-content=latest] .grid li,
.single-program li[data-tab-content=latest] .grid li {
    margin-right: 4px;
  }
}
@media only screen and (max-width: 599px) {
  .single-focus-area li[data-tab-content=latest] .grid li:last-child,
.single-program li[data-tab-content=latest] .grid li:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 599px) {
  .single-focus-area li[data-tab-content=programs],
.single-focus-area li[data-tab-content=latest],
.single-program li[data-tab-content=programs],
.single-program li[data-tab-content=latest] {
    display: block;
    padding: 8px 0;
    background-color: #D8D7D8;
  }
}
@media only screen and (max-width: 599px) {
  .single-focus-area li[data-tab-content=programs] .wrapper-wide,
.single-focus-area li[data-tab-content=latest] .wrapper-wide,
.single-program li[data-tab-content=programs] .wrapper-wide,
.single-program li[data-tab-content=latest] .wrapper-wide {
    width: 100vw;
    padding: 16px 0 16px 16px;
  }
}
@media only screen and (max-width: 599px) {
  .single-focus-area li[data-tab-content=programs] .card-title,
.single-focus-area li[data-tab-content=latest] .card-title,
.single-program li[data-tab-content=programs] .card-title,
.single-program li[data-tab-content=latest] .card-title {
    white-space: normal;
  }
}
@media only screen and (max-width: 599px) {
  .single-focus-area .section-grey,
.single-program .section-grey {
    width: 100vw;
    background-color: #D8D7D8;
  }
}
@media only screen and (max-width: 599px) {
  .single-focus-area .grid,
.single-focus-area .single-focus-area,
.single-focus-area .single-relations,
.single-program .grid,
.single-program .single-focus-area,
.single-program .single-relations {
    display: inline-block;
    white-space: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 599px) {
  .single-focus-area .grid li,
.single-focus-area .single-focus-area li,
.single-focus-area .single-relations li,
.single-program .grid li,
.single-program .single-focus-area li,
.single-program .single-relations li {
    display: block;
    width: 100%;
    margin: 0;
  }
  .single-focus-area .grid li:last-child,
.single-focus-area .single-focus-area li:last-child,
.single-focus-area .single-relations li:last-child,
.single-program .grid li:last-child,
.single-program .single-focus-area li:last-child,
.single-program .single-relations li:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 599px) {
  .single-focus-area h3.theme-title span,
.single-program h3.theme-title span {
    white-space: normal;
  }
}
@media only screen and (max-width: 599px) {
  .single-focus-area h2.entry-title,
.single-program h2.entry-title {
    display: block;
  }
}

@media only screen and (max-width: 599px) {
  .single-program li[data-tab-content=auto-new-latest] {
    display: none;
  }
}

.reasons-why,
.section-red {
  display: block;
}
@media only screen and (max-width: 599px) {
  .reasons-why,
.section-red {
    display: none;
  }
}

.reasons-why.show-mobile,
.section-red.show-mobile {
  display: none;
}
@media only screen and (max-width: 599px) {
  .reasons-why.show-mobile,
.section-red.show-mobile {
    display: block;
  }
}

.single-impact-area .reasons-why {
  display: none;
}
.single-impact-area .main-content .entry-title {
  display: none;
}

/*# sourceMappingURL=pagebuilder.css.map */
