@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -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);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  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);
    -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 {
  from, 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -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);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  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);
    -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 {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  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 {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  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 heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 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);
  }
  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 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);
  }
  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 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);
  }
  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 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);
  }
  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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-duration: 0.75s;
  animation-duration: 0.75s;
  -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 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    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 {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -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 {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

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

@-webkit-keyframes lightSpeedIn {
  from {
    -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);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -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);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 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% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 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-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  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 {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

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

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.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.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

img {
  max-width: 100%;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 3px 3px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 30px;
  height: 21.8px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.3px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2.6px;
  background-color: #000;
  border-radius: 1px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -9.6px;
}
.hamburger-inner::after {
  bottom: -9.6px;
}

/*@import "types/3dx";
@import "types/3dx-r";
@import "types/3dy";
@import "types/3dy-r";
@import "types/3dxy";
@import "types/3dxy-r";
@import "types/arrow";
@import "types/arrow-r";
@import "types/arrowalt";
@import "types/arrowalt-r";
@import "types/arrowturn";
@import "types/arrowturn-r";
@import "types/boring";
@import "types/collapse";
@import "types/collapse-r";
@import "types/elastic";
@import "types/elastic-r";
@import "types/emphatic";
@import "types/emphatic-r";
@import "types/minus";
@import "types/slider";
@import "types/slider-r";
@import "types/spin";
@import "types/spin-r";
@import "types/spring";
@import "types/spring-r";
@import "types/stand";
@import "types/stand-r";
@import "types/squeeze";
@import "types/vortex";
@import "types/vortex-r";*/
/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html,
body {
  min-height: 100vh;
}

html {
  background: #ffffff;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 1023px) {
  html[class] {
    margin-top: 0 !important;
  }
}

body {
  margin: 0px;
  width: 100%;
  padding: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  body.nav_open {
    overflow: hidden;
  }
}

*:focus {
  outline: -webkit-focus-ring-color auto 5px;
}

[data-whatintent=mouse] *:not(input):focus,
[data-whatintent=touch] *:not(input):focus {
  outline: none;
  background-color: inherit;
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  /* added line */
}

@media (max-width: 1023px) {
  #wpadminbar {
    display: none !important;
  }
}

@media (max-width: 1279px) {
  .hide-in-mobile {
    display: none !important;
  }
}

@media (max-width: 1279px) {
  .show-in-mobile {
    display: block !important;
  }
}

@media (min-width: 1280px) {
  .hide-in-desktop {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .show-in-desktop {
    display: block !important;
  }
}

ul.post-tags {
  list-style-type: none;
  display: inline-block;
  width: 100%;
  max-width: 648px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 680px) {
  ul.post-tags {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  ul.post-tags {
    margin-top: 8px;
    padding: 0;
  }
}
ul.post-tags li {
  float: left;
  margin: 16px 16px 16px 0;
}
@media (min-width: 1024px) {
  ul.post-tags li {
    margin: 24px 24px 24px 0;
  }
}
ul.post-tags li a {
  display: block;
  background-color: #F6F6F6;
  border-radius: 32px;
  padding: 8px 32px;
  color: #cc2131;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  ul.post-tags li a {
    padding: 12px 40px;
  }
}
ul.post-tags li a:focus, ul.post-tags li a:hover {
  background-color: #E5E5E5;
}

/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
  font-family: "Futura PT Book";
  src: url("fonts/FuturaPT-Book.woff2") format("woff2"), url("fonts/FuturaPT-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT Book";
  src: url("fonts/FuturaPT-Book.woff2") format("woff2"), url("fonts/FuturaPT-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("fonts/FuturaPT-Heavy.woff2") format("woff2"), url("fonts/FuturaPT-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("fonts/FuturaPT-Medium.woff2") format("woff2"), url("fonts/FuturaPT-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("fonts/FuturaPT-Heavy.woff2") format("woff2"), url("fonts/FuturaPT-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("fonts/FuturaPT-Medium.woff2") format("woff2"), url("fonts/FuturaPT-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  font-size: 16px;
  line-height: 20px;
  font-family: "Futura PT", sans-serif;
  color: #363636;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Futura PT", sans-serif;
  color: #cc2131;
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

@media (min-width: 1024px) {
  #lianaform {
    max-width: 620px;
    margin: auto;
  }
}
@media (max-width: 1024px) {
  #lianaform {
    width: 80%;
    margin: auto;
  }
}
#lianaform .lianamailer-formfield-properties label {
  color: #363636;
  font-size: 13px;
  line-height: 24px;
  font-weight: 700;
}
#lianaform .lianamailer-formfield {
  margin: 25px auto;
}
#lianaform .lianamailer-formfield-inner input {
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  padding: 12px 24px !important;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
}
#lianaform .lianamailer-formfield-inner input:focus {
  outline: none;
  border: 2px solid black;
}
#lianaform #lianaformselectparent #lianaformselect {
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  padding: 12px 24px !important;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  margin-top: 5px;
}
#lianaform #lianaformselectparent #lianaformselect:focus {
  outline: none;
  border: 2px solid black;
}
#lianaform #lianaformcheckparent {
  margin-top: 25px;
}
#lianaform #lianaformcheckparent .field-list {
  margin: 15px 0;
}
#lianaform #lianaformcheckparent .field-list input {
  width: 15px;
  height: 15px;
}
#lianaform #lianaformcheckparent .field-list label {
  margin-left: 10px;
  font-size: 18px;
  font-weight: normal;
}
#lianaform .lianamailer-formfield-submit {
  text-align: center;
}
#lianaform .lianamailer-formfield-submit button {
  background-color: #BDC823;
  color: #fff;
  height: 56px;
  border: 0 none;
  line-height: 1.2;
  border-radius: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 40px;
  padding-right: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 25px auto;
  transition: background-color 0.15s ease;
}
#lianaform .lianamailer-formfield-submit button:hover {
  background-color: #D8E156;
}

.btn {
  color: #fff;
  border: 0 none;
  line-height: 1.5;
  border-radius: 32px;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.15s ease;
  border-radius: 20px !important;
  border-top-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  text-transform: uppercase;
}
@media (min-width: 960px) {
  .btn {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .btn {
    font-size: 18px;
  }
}
.btn:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: rgba(222, 184, 135, 0.3);
}
.btn:hover {
  text-decoration: none;
}
.btn--small {
  line-height: 1;
  padding-left: 32px;
  padding-right: 32px;
}
.btn--brown {
  background-color: #6C4D23;
  color: #ffffff;
}
.btn--brown:hover {
  background-color: rgb(156, 113, 53);
}
.btn--brown:focus {
  background-color: rgb(156, 113, 53);
}
.btn--brown.selected {
  box-shadow: 0 0 0 2px rgb(146, 125, 96) inset;
}
[data-whatintent=mouse] .btn--brown:focus {
  background-color: rgb(156, 113, 53);
}

.btn--white {
  color: black;
  background-color: #fff;
}
.btn--white:hover {
  box-shadow: 0 0 0 1px black inset;
  color: black;
}
.btn--white:focus {
  background-color: black;
}
.btn--white.selected {
  box-shadow: 0 0 0 2px black inset;
}
[data-whatintent=mouse] .btn--white:focus {
  background-color: black !important;
  color: #fff;
}

.btn--grey {
  color: #363636;
  background-color: #F6F6F6;
}
.btn--grey:hover {
  box-shadow: 0 0 0 1px black inset;
  color: black;
}
.btn--grey:focus {
  background-color: black;
}
.btn--grey.selected {
  box-shadow: 0 0 0 2px black inset;
  color: black;
}
[data-whatintent=mouse] .btn--grey:focus {
  box-shadow: 0 0 0 2px black inset;
}

.btn--green {
  background-color: black;
}
.btn--green:hover {
  background-color: black;
}
.btn--green:focus {
  background-color: black;
}
[data-whatintent=mouse] .btn--green:focus {
  background-color: black !important;
}

.btn--red {
  background-color: #cc2131;
}
.btn--red:hover {
  background-color: rgb(227.6392405063, 85.8607594937, 99.1265822785);
}
.btn--red:focus {
  background-color: rgb(227.6392405063, 85.8607594937, 99.1265822785);
}
[data-whatintent=mouse] .btn--red:focus {
  background-color: rgb(227.6392405063, 85.8607594937, 99.1265822785) !important;
}

.btn--toggle {
  position: relative;
  margin: 6px 12px;
  padding: 16px 24px;
  background-color: #F6F6F6;
  border: 1px solid #F6F6F6;
  color: black;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  transition: padding 0.1s ease;
}
.btn--toggle:hover {
  border: 1px solid black;
}
[data-whatintent=mouse] .btn--toggle:focus {
  background-color: #F6F6F6;
}

@media (min-width: 960px) {
  .btn--toggle {
    min-width: 200px;
  }
}
.btn--toggle.selected {
  border: 2px solid black;
  text-align: left;
  padding-right: 48px;
}
.btn--toggle.selected:after {
  content: "";
  position: absolute;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 6px;
  height: 12px;
  margin: auto 0;
  transform: rotate(45deg) translate(-2px, -1px);
}
.btn[disabled] {
  cursor: default;
}

.clear-multi .gfield_date_day, .clear-multi .gfield_date_month {
  margin-right: 10px !important;
}
.clear-multi .gfield_date_day, .clear-multi .gfield_date_month, .clear-multi .gfield_date_year {
  width: 60px !important;
  max-width: none !important;
}
.clear-multi .gfield_date_day #input_3_15_2, .clear-multi .gfield_date_day #input_3_15_1, .clear-multi .gfield_date_month #input_3_15_2, .clear-multi .gfield_date_month #input_3_15_1, .clear-multi .gfield_date_year #input_3_15_2, .clear-multi .gfield_date_year #input_3_15_1 {
  width: 60px !important;
  max-width: none !important;
  padding: 5px !important;
}
.clear-multi .gfield_date_day #input_3_15_3, .clear-multi .gfield_date_month #input_3_15_3, .clear-multi .gfield_date_year #input_3_15_3 {
  width: 80px !important;
  max-width: none !important;
  padding: 5px !important;
}
.clear-multi .gfield_time_hour, .clear-multi .gfield_time_minute {
  margin-right: 10px !important;
  width: 60px !important;
  max-width: none !important;
}
.clear-multi .gfield_time_hour #input_3_24_1, .clear-multi .gfield_time_hour #input_3_24_2, .clear-multi .gfield_time_minute #input_3_24_1, .clear-multi .gfield_time_minute #input_3_24_2 {
  width: 60px !important;
  max-width: none !important;
  padding: 5px !important;
}

a.skip-to-content {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
a.skip-to-content:focus {
  width: auto;
  z-index: 99999;
  top: 8px;
  left: 16px;
  display: inline-block;
  color: #4A3C31;
  overflow: visible;
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: #fff;
  height: 32px;
  line-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 640px) {
  a.skip-to-content:focus {
    height: 40px;
    top: 16px;
    left: 24px;
    line-height: 40px;
  }
}
[data-whatintent=mouse] a.skip-to-content:focus {
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

.tmpl-404 .error__wrapper {
  text-align: center;
  margin: 0 auto;
  padding: 64px 16px;
  width: 100%;
  max-width: 640px;
}
@media (min-width: 640px) {
  .tmpl-404 .error__wrapper {
    padding: 80px 32px;
  }
}
@media (min-width: 1024px) {
  .tmpl-404 .error__wrapper {
    padding: 120px 64px 160px;
  }
}
.tmpl-404 .error__title {
  margin: 0 auto 16px;
  font-size: 44px;
  line-height: 48px;
}
@media (min-width: 1024px) {
  .tmpl-404 .error__title {
    font-size: 88px;
    line-height: 88px;
  }
}
.tmpl-404 .error__text {
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  .tmpl-404 .error__text {
    font-size: 24px;
    line-height: 32px;
  }
}
.tmpl-404 .error .search-form {
  width: 100%;
}
@media (min-width: 1024px) {
  .tmpl-404 .error .search-form {
    width: auto;
  }
}
.tmpl-404 .error .btn {
  margin: 64px auto 0;
}
@media (min-width: 1024px) {
  .tmpl-404 .error .btn {
    margin-top: 88px;
  }
}

.breadcrumb {
  text-align: left;
}
.breadcrumb__wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 32px;
  padding-right: 32px;
  max-width: 1192px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 1440px) {
  .breadcrumb__wrapper {
    max-width: 1384px;
  }
}
.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item:before {
  content: " ›";
  color: #cc2131;
  display: inline-block;
  margin-right: 12px;
}
.breadcrumb__link {
  color: #000;
  margin-right: 8px;
  font-size: 14px;
  line-height: 24px;
}

.card-link {
  display: block;
  position: relative;
  min-width: 264px;
  max-width: 312px;
  width: 82.5%;
  border-radius: 24px;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.16);
}
.card-link .card-link__link-icon {
  transition: background-color 0.15s ease;
}
[data-whatinput=initial] .card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatinput=initial] .card-link:hover .card-link__link-icon {
  background-color: #cc2131;
}

[data-whatinput=keyboard][data-whatintent=mouse] .card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatinput=keyboard][data-whatintent=mouse] .card-link:hover .card-link__link-icon {
  background-color: #cc2131;
}

[data-whatinput=mouse] .card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatinput=mouse] .card-link:hover .card-link__link-icon {
  background-color: #cc2131;
}

[data-whatinput=initial] .card-link:focus-within {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatinput=initial] .card-link:focus-within .card-link__link-icon {
  background-color: #cc2131;
}

[data-whatintent=keyboard] .card-link:focus-within {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatintent=keyboard] .card-link:focus-within .card-link__link-icon {
  background-color: #cc2131;
}

.card-link--no-hover {
  transform: translateY(0) !important;
}
.card-link--no-hover:hover {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.16) !important;
}
@media (min-width: 768px) {
  .card-link {
    border-radius: 16px;
  }
}
.card-link.hidden {
  display: none;
}
.card-link__link {
  height: 100%;
  width: 100%;
  display: block;
  padding-top: 24px;
  padding-bottom: 72px;
  text-decoration: none;
  overflow: hidden;
}
.card-link.image-cover .card-link__link {
  padding-top: 0;
}

.card-link__link:focus {
  outline: 0 none;
}
.card-link__image {
  height: 176px;
  max-width: calc(100% - 48px);
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
  object-fit: cover;
}
.card-link.image-cover .card-link__image {
  height: 200px;
  max-width: 100%;
  border-radius: 24px 24px 64px 0;
  object-fit: cover;
}
@media (min-width: 768px) {
  .card-link.image-cover .card-link__image {
    border-radius: 16px 16px 64px 0;
  }
}

.card-link.image-contain .card-link__image {
  object-fit: contain;
}

.card-link__image--big {
  display: none;
}
.card-link__text-wrapper {
  padding-left: 24px;
  padding-right: 24px;
}
.card-link__heading {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  display: block;
  color: #4A3C31;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.card-link__text {
  font-size: 12px;
  line-height: 20px;
  display: block;
  color: #363636;
  text-align: justify;
}
@media (min-width: 1440px) {
  .card-link__text {
    font-size: 15px;
    line-height: 24px;
  }
}
.card-link__link-icon {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 20px 0;
  width: 60px;
  height: 45px;
  justify-content: center;
  align-items: center;
  background-color: #cc2131;
}
.card-link__link-icon svg {
  width: 20px;
  height: 20px;
}
.card-link--background-image {
  margin-bottom: 16px;
  border-radius: 16px;
  display: block;
  overflow: hidden;
  width: 136px;
  height: 160px;
  min-width: 136px;
}
@media (min-width: 960px) {
  .card-link--background-image {
    height: 296px;
    max-width: 264px;
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .card-link--background-image {
    height: 336px;
    max-width: 312px;
  }
}
.card-link--background-image .card-link__link {
  padding-top: 0;
  padding-bottom: 0;
  height: 160px;
  width: 136px;
}
@media (min-width: 960px) {
  .card-link--background-image .card-link__link {
    height: 296px;
    width: auto;
  }
}
@media (min-width: 1440px) {
  .card-link--background-image .card-link__link {
    height: 336px;
  }
}
.card-link--background-image .card-link__heading {
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 960px) {
  .card-link--background-image .card-link__heading {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1440px) {
  .card-link--background-image .card-link__heading {
    font-size: 20px;
    line-height: 24px;
  }
}
.card-link--background-image .card-link__image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
}
.card-link--background-image .card-link__text-wrapper {
  padding-top: 104px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}
@media (min-width: 960px) {
  .card-link--background-image .card-link__text-wrapper {
    padding-top: 200px;
    height: 100%;
  }
}
@media (min-width: 1440px) {
  .card-link--background-image .card-link__text-wrapper {
    padding-top: 232px;
  }
}
@media (max-width: 959px) {
  .card-link--background-image .card-link__link-icon {
    display: none;
  }
}
.card-link--big {
  max-width: 648px;
  text-align: left;
  padding-top: 0;
}
.card-link--big .card-link__link {
  padding-top: 0;
}
.card-link--big .card-link__image {
  width: 100%;
  max-width: 100%;
  border-radius: 16px 16px 64px 0px;
}
.card-link--medium {
  max-width: 264px;
}
@media (min-width: 960px) {
  .card-link--medium {
    max-width: 360px;
  }
}
@media (min-width: 1200px) {
  .card-link--medium {
    max-width: 424px;
  }
}
.card-link--small {
  width: 264px;
  height: 400px;
}
@media (min-width: 640px) {
  .card-link--small {
    width: 312px;
    height: 472px;
    margin-right: 24px;
  }
}
.card-link--horeca {
  min-width: 100%;
  max-width: none;
  height: 80px;
  background: url(../images/tausta-horeca.jpg) 100%;
}
@media (min-width: 960px) {
  .card-link--horeca {
    height: 120px;
    min-width: auto;
    width: calc(100% - 64px);
    margin-left: 32px;
    margin-right: 32px;
  }
}
.card-link--horeca .card-link__link {
  height: 100%;
  width: 100%;
}
.card-link--horeca .card-link__text-wrapper {
  padding: 30px 0 0 30px;
}
@media (min-width: 960px) {
  .card-link--horeca .card-link__text-wrapper {
    padding: 48px 0 0 80px;
  }
}
.card-link--horeca .card-link__heading {
  text-align: left;
}

.card-link-list {
  padding-bottom: 40px;
  padding-top: 0;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto;
}
.card-link-list__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  width: auto;
  padding-bottom: 24px;
  max-width: 1320px;
}
@media (min-width: 1440px) {
  .card-link-list__wrapper {
    max-width: 1600px;
    width: 1345px;
  }
}
.card-link-list .filter-wrapper {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 12px;
  margin-left: -12px;
}
.card-link-list .card-link {
  margin: 0 12px 24px 12px;
}
.card-link-list .btn.load-more.disabled {
  display: none;
}

.card-link-list-with-swiper {
  overflow: hidden;
}
.card-link-list-with-swiper__wrapper {
  display: flex;
  width: auto;
  padding: 24px 16px;
}
@media (min-width: 960px) {
  .card-link-list-with-swiper__wrapper {
    padding: 32px 32px 40px;
    box-sizing: content-box;
  }
}
.card-link-list-with-swiper__pagination {
  display: flex;
  justify-content: center;
}
.card-link-list-with-swiper__pagination-clickable {
  margin-top: 24px;
  margin-bottom: 8px;
}
@media (min-width: 1322px) {
  .card-link-list-with-swiper__pagination-clickable {
    display: none;
  }
}
.card-link-list-with-swiper__pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #D7D3C7;
  display: block;
  margin-left: 4px;
  margin-right: 4px;
}
.card-link-list-with-swiper__pagination-bullet:focus {
  background-color: #D7D3C7 !important;
}
[data-whatintent=keyboard] .card-link-list-with-swiper__pagination-bullet:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
}

.card-link-list-with-swiper__pagination-bullet-active {
  background-color: #8A7A50;
}
.card-link-list-with-swiper__pagination-bullet-active:focus {
  background-color: #8A7A50 !important;
}
.card-link-list-with-swiper__pagination-lock {
  display: none;
}

.footer {
  padding-bottom: 48px;
  padding-top: 40px;
  border-bottom: solid 8px #cc2131;
  overflow: hidden;
  position: relative;
  background: #F6F6F6;
}
@media (min-width: 1024px) {
  .footer {
    padding-top: 136px;
    padding-bottom: 32px;
  }
}
.footer a {
  text-decoration: none;
}
.footer ul {
  list-style-type: none;
  padding: 0;
}
.footer__wrapper {
  padding-left: 32px;
  padding-right: 32px;
  max-width: 1192px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  z-index: 1;
  position: relative;
}
@media (min-width: 1200px) {
  .footer__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 1440px) {
  .footer__wrapper {
    max-width: 1384px;
  }
}
.footer__homelink {
  display: block;
  width: 116px;
  height: 49px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.footer__homelink:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: rgba(222, 184, 135, 0.3);
}
@media (min-width: 1200px) {
  .footer__homelink {
    margin-left: 0;
    margin-right: 0;
  }
}
.footer__menus-wrapper {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .footer__menus-wrapper {
    max-width: 640px;
    display: flex;
    justify-content: space-between;
    flex-shrink: 0;
  }
}
@media (min-width: 1200px) {
  .footer__menus-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.footer__menus-spacer {
  display: none;
}
@media (min-width: 640px) {
  .footer__menus-spacer {
    display: block;
    width: 1px;
    background: #E5E5E5;
    content: "";
  }
}
@media (min-width: 640px) {
  .footer__menus-single-menu {
    padding-top: 24px;
  }
}
.footer__menu-heading {
  color: #4A3C31;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 24px;
  margin-top: 32px;
  letter-spacing: 0.5px;
}
@media (min-width: 640px) {
  .footer__menu-heading {
    margin-top: 0;
  }
}
.footer__menu-nav-item {
  margin-top: 24px;
  margin-bottom: 24px;
}
.footer__menu-nav-item-link {
  color: #cc2131;
  line-height: 24px;
  font-size: 18px;
}
[data-whatinput=initial] .footer__menu-nav-item-link:hover {
  text-decoration: underline;
}

[data-whatinput=keyboard][data-whatintent=mouse] .footer__menu-nav-item-link:hover {
  text-decoration: underline;
}

[data-whatinput=mouse] .footer__menu-nav-item-link:hover {
  text-decoration: underline;
}

.footer__menu-nav-item-link:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: rgba(222, 184, 135, 0.3);
}
.footer__subscript {
  margin-top: 72px;
}
@media (min-width: 1200px) {
  .footer__subscript {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 112px;
  }
}
.footer__sublink {
  display: block;
  margin-bottom: 24px;
}
[data-whatinput=initial] .footer__sublink:hover {
  text-decoration: underline;
}

[data-whatinput=keyboard][data-whatintent=mouse] .footer__sublink:hover {
  text-decoration: underline;
}

[data-whatinput=mouse] .footer__sublink:hover {
  text-decoration: underline;
}

@media (min-width: 1200px) {
  .footer__sublink {
    margin-bottom: 0;
    margin-right: 24px;
  }
}
.footer__sublink-item {
  color: #4A3C31;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  padding-left: 23px;
}
.footer__sublink-item:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: rgba(222, 184, 135, 0.3);
}
@media (min-width: 1200px) {
  .footer__sublink-item {
    line-height: 32px;
  }
}
.footer__sublink-item .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer__subscript-right {
  text-align: center;
}
@media (min-width: 640px) {
  .footer__subscript-right {
    max-width: 640px;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .footer__subscript-right {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}
.footer__legal-link {
  color: #4A3C31;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  display: inline-block;
  margin-bottom: 48px;
  margin-right: 30px;
}
[data-whatinput=initial] .footer__legal-link:hover {
  text-decoration: underline;
}

[data-whatinput=keyboard][data-whatintent=mouse] .footer__legal-link:hover {
  text-decoration: underline;
}

[data-whatinput=mouse] .footer__legal-link:hover {
  text-decoration: underline;
}

.footer__legal-link:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: rgba(222, 184, 135, 0.3);
}
@media (min-width: 640px) {
  .footer__legal-link {
    line-height: 32px;
    margin-bottom: 0;
  }
}
.footer__subscript-left {
  margin-bottom: 64px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .footer__subscript-left {
    max-width: 640px;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .footer__subscript-left {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    max-width: none;
  }
}
.footer__some-wrapper {
  display: flex;
  justify-content: center;
}
.footer__icon-link {
  width: 32px;
  height: 32px;
  margin-left: 24px;
  margin-right: 24px;
  transition: opacity 0.15s ease;
}
[data-whatinput=initial] .footer__icon-link:hover {
  opacity: 0.7;
}

[data-whatinput=keyboard][data-whatintent=mouse] .footer__icon-link:hover {
  opacity: 0.7;
}

[data-whatinput=mouse] .footer__icon-link:hover {
  opacity: 0.7;
}

.footer__icon-link:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: rgba(222, 184, 135, 0.3);
}
@media (min-width: 640px) {
  .footer__icon-link {
    margin-right: 0;
    margin-left: 56px;
  }
}
.footer .background-pattern {
  overflow: hidden;
  position: absolute;
  width: auto;
  height: auto;
  bottom: 0;
}
.footer .background-pattern svg {
  display: block;
  width: 100%;
  height: auto;
}
.footer .background-pattern.center {
  left: 32px;
  right: 32px;
}
@media (min-width: 640px) {
  .footer .background-pattern.center {
    display: none;
  }
}
.footer .background-pattern.left {
  display: none;
  left: -10px;
  bottom: -5px;
  max-width: 285px;
}
.footer .background-pattern.left svg {
  transform: rotateY(180deg);
}
@media (min-width: 640px) {
  .footer .background-pattern.left {
    display: block;
  }
}
.footer .background-pattern.right {
  display: none;
  right: -10px;
  bottom: -5px;
  max-width: 285px;
}
@media (min-width: 640px) {
  .footer .background-pattern.right {
    display: block;
  }
}

.hero-with-search {
  background-color: #F6F6F6;
  background-position: center;
  border-radius: 0 0 64px 0;
  padding: 16px 16px 40px;
  text-align: center;
  margin: 0 auto 0 auto !important;
}
@media (min-width: 640px) {
  .hero-with-search {
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
  }
  .hero-with-search.site-search {
    background-image: url(../images/haku-default-tausta.jpg);
  }
  .hero-with-search.recipe-search {
    background-image: url(../images/reseptihaku-tausta.jpg);
  }
  .hero-with-search.horeca-product-search {
    background-image: url(../images/tuotehaku-mausteet-tausta.jpg);
  }
  .hero-with-search.product-search {
    background-image: url(../images/haku-default-tausta.jpg);
  }
  .hero-with-search.product-search.term-kahvit {
    background-image: url(../images/tuotehaku-kahvit-tausta.jpg);
  }
  .hero-with-search.product-search.term-mausteet {
    background-image: url(../images/tuotehaku-mausteet-tausta.jpg);
  }
  .hero-with-search.product-search.term-leivonta {
    background-image: url(../images/tuotehaku-leivonta-tausta.jpg);
  }
  .hero-with-search.product-search.term-pahkinat-ja-mantelit {
    background-image: url(../images/tuotehaku-pahkinat-tausta.jpg);
  }
}
@media (min-width: 1440px) {
  .hero-with-search {
    border-radius: 0 0 120px 0;
    padding-bottom: 94px;
  }
}
.hero-with-search.site-search .form-title {
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .hero-with-search.site-search .form-title {
    margin-top: 88px;
  }
}
@media (min-width: 1024px) {
  .hero-with-search.site-search form.search-form {
    margin-bottom: 64px;
  }
}
.hero-with-search .form-title {
  margin-top: 80px;
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 40px;
}
@media (min-width: 1024px) {
  .hero-with-search .form-title {
    margin-top: 176px;
    font-size: 68px;
    line-height: 72px;
  }
}
.hero-with-search form.search-form {
  margin-top: 16px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 472px;
}
@media (min-width: 1024px) {
  .hero-with-search form.search-form {
    margin-top: 32px;
    margin-bottom: 80px;
  }
}
.hero-with-search .search-categories {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-with-search .search-categories .hidden-desktop {
    display: none !important;
  }
}
.hero-with-search .search-categories a.close {
  display: none;
  position: absolute;
  overflow: hidden;
  top: 24px;
  right: 24px;
  width: 20px;
  height: 20px;
  font-size: 0;
  visibility: hidden;
  cursor: pointer;
}
.hero-with-search .search-categories a.close:before {
  content: "";
  background-color: #363636;
  position: absolute;
  width: 20px;
  height: 2px;
  top: 10px;
  left: 0;
  transform: rotateZ(45deg);
  cursor: pointer;
  z-index: 1;
}
.hero-with-search .search-categories a.close:after {
  content: "";
  background-color: #363636;
  position: absolute;
  width: 20px;
  height: 2px;
  top: 10px;
  left: 0;
  transform: rotateZ(-45deg);
  cursor: pointer;
  z-index: 1;
}
.hero-with-search .search-categories.modal-open {
  background-color: #F6F6F6;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  z-index: 10011;
  overflow: hidden;
  transition: height 1s ease, padding 1s ease;
  padding-left: 10%;
  padding-right: 5%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-with-search .search-categories.modal-open a.close {
  display: block;
  visibility: visible;
}
.hero-with-search .search-categories.modal-open .btn {
  position: relative;
  display: block;
  padding: 16px;
  color: #363636;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  border: 0 none;
  background: none;
  box-shadow: none;
}
.hero-with-search .search-categories.modal-open .btn.modal-open-button {
  display: none;
}
.hero-with-search .search-categories.modal-open .btn.show-in-modal-only {
  display: block;
}
.hero-with-search .search-categories.modal-open .btn:after {
  content: none;
  border-right: 0 none;
}
.hero-with-search .search-categories.modal-open .btn.selected {
  color: #cc2131;
  text-decoration: underline;
}
.hero-with-search .search-categories.modal-open .btn.selected:after {
  content: "";
  width: 15px;
  height: 5px;
  border-left: 2px solid #cc2131;
  border-bottom: 2px solid #cc2131;
  margin-left: 24px;
  transform: rotateZ(-45deg);
  display: inline-block;
  vertical-align: middle;
}
.hero-with-search .search-categories .btn {
  position: relative;
  display: none;
  margin: 8px 12px;
  height: auto;
  text-align: left;
}
.hero-with-search .search-categories .btn.modal-open-button {
  display: inline-block;
}
.hero-with-search .search-categories .btn.show-in-modal-only {
  display: none;
}
.hero-with-search .search-categories .btn:after {
  content: "";
  position: absolute;
  right: 20px;
  top: -5px;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-right: 2px solid #cc2131;
  border-bottom: 2px solid #cc2131;
  transform: rotateZ(45deg);
}
.hero-with-search .search-categories .btn.btn--white:not(.selected):hover, .hero-with-search .search-categories .btn.btn--white:not(.selected):focus {
  box-shadow: none;
}
@media (min-width: 1024px) {
  .hero-with-search .search-categories .btn.btn--white:not(.selected):hover, .hero-with-search .search-categories .btn.btn--white:not(.selected):focus {
    color: white;
    background-color: #cc2131;
  }
}
@media (min-width: 1024px) {
  .hero-with-search .search-categories .btn {
    text-align: center;
    display: inline-block;
  }
  .hero-with-search .search-categories .btn:after {
    content: none;
  }
  .hero-with-search .search-categories .btn.icon-liha, .hero-with-search .search-categories .btn.icon-kana, .hero-with-search .search-categories .btn.icon-kala, .hero-with-search .search-categories .btn.icon-kasvis, .hero-with-search .search-categories .btn.icon-makea-leivonta, .hero-with-search .search-categories .btn.icon-suolainen-leivonta, .hero-with-search .search-categories .btn.icon-juomat {
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 24px 12px;
    text-align: right;
    padding-left: 72px !important;
  }
  .hero-with-search .search-categories .btn.icon-liha {
    background-image: url("../templates/svg/icon-reseptikategoria-liha.svg");
  }
  .hero-with-search .search-categories .btn.icon-liha.selected {
    background-image: url("../templates/svg/icon-reseptikategoria-liha-vihr.svg");
  }
  .hero-with-search .search-categories .btn.icon-kana {
    background-image: url("../templates/svg/icon-reseptikategoria-kana.svg");
  }
  .hero-with-search .search-categories .btn.icon-kana.selected {
    background-image: url("../templates/svg/icon-reseptikategoria-kana-vihr.svg");
  }
  .hero-with-search .search-categories .btn.icon-kala {
    background-image: url("../templates/svg/icon-reseptikategoria-kala.svg");
  }
  .hero-with-search .search-categories .btn.icon-kala.selected {
    background-image: url("../templates/svg/icon-reseptikategoria-kala-vihr.svg");
  }
  .hero-with-search .search-categories .btn.icon-kasvis {
    background-image: url("../templates/svg/icon-reseptikategoria-kasvis.svg");
  }
  .hero-with-search .search-categories .btn.icon-kasvis.selected {
    background-image: url("../templates/svg/icon-reseptikategoria-kasvis-vihr.svg");
  }
  .hero-with-search .search-categories .btn.icon-makea-leivonta {
    background-image: url("../templates/svg/icon-reseptikategoria-makea-leivonta.svg");
  }
  .hero-with-search .search-categories .btn.icon-makea-leivonta.selected {
    background-image: url("../templates/svg/icon-reseptikategoria-makea-leivonta-vihr.svg");
  }
  .hero-with-search .search-categories .btn.icon-suolainen-leivonta {
    background-image: url("../templates/svg/icon-reseptikategoria-suolainen-leivonta.svg");
  }
  .hero-with-search .search-categories .btn.icon-suolainen-leivonta.selected {
    background-image: url("../templates/svg/icon-reseptikategoria-suolainen-leivonta-vihr.svg");
  }
  .hero-with-search .search-categories .btn.icon-juomat {
    background-image: url("../templates/svg/icon-reseptikategoria-juomat.svg");
  }
  .hero-with-search .search-categories .btn.icon-juomat.selected {
    background-image: url("../templates/svg/icon-reseptikategoria-juomat-vihr.svg");
  }
}
.hero-with-search .search-categories.top-row .btn {
  padding: 12px 32px 12px 24px;
  font-size: 14px;
  line-height: 24px;
  min-width: 200px;
}
@media (min-width: 1024px) {
  .hero-with-search .search-categories.top-row .btn {
    padding: 12px 24px;
  }
}
.hero-with-search .search-categories.bottom-row {
  margin-top: 12px;
}
.hero-with-search .search-categories.bottom-row .btn {
  padding: 12px 40px 12px 32px;
  font-size: 14px;
  line-height: 16px;
}
@media (min-width: 1024px) {
  .hero-with-search .search-categories.bottom-row .btn {
    padding: 12px 32px;
  }
}
.hero-with-search + section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#content > *:first-child {
  padding-top: 80px;
}
@media (min-width: 1024px) {
  #content > *:first-child {
    padding-top: 124px;
  }
}
@media (min-width: 1440px) {
  #content > *:first-child {
    padding-top: 172px;
  }
}
#content section {
  margin-top: 64px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  #content section {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1440px) {
  #content section {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
#content section:first-child {
  margin-top: 0;
}
#content section.wrapper {
  width: 100%;
  max-width: 648px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  position: relative;
}
@media (min-width: 1024px) {
  #content section.wrapper {
    max-width: 1192px;
    padding: 0 32px;
  }
}
@media (min-width: 1440px) {
  #content section.wrapper {
    max-width: 1384px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 0 20px 0;
  transition: background-color 0.15s ease, box-shadow 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
@media (min-width: 1024px) {
  .header {
    padding: 0 0 32px 0;
  }
}
.header.has-offset {
  background-color: #fff;
  box-shadow: 0px 20px 10px -10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  padding: 0 0 10px 0 !important;
}
@media (min-width: 1024px) {
  .header.has-offset .logos {
    max-width: 80% !important;
    transition: all 0.3s ease;
  }
}
.header.has-offset .header {
  padding: 0 !important;
}
.header.has-offset .header__wrapper {
  padding-top: 15px;
  align-items: center;
  flex-direction: row !important;
  justify-content: space-between !important;
}
.header.has-offset .header__homelink {
  width: auto !important;
}
.header.has-offset .header__navigation {
  margin: 0 0 0 auto !important;
}
.header.has-offset .header__navigation_wrapper {
  margin-top: 0 !important;
}
@media (min-width: 1024px) {
  .admin-bar .header {
    top: 32px;
  }
}

.header__wrapper {
  padding: 16px 16px 0px 16px;
  position: relative;
  max-width: 1192px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  /*@include breakpoint(1280px) {
  	padding-left: 80px;
  	padding-right: 80px;
  	max-width: 1320px + 160px;
  }*/
}
@media (min-width: 1024px) {
  .header__wrapper {
    padding: 64px 32px 0;
    height: 105px;
    flex-direction: column !important;
  }
}
@media (min-width: 1440px) {
  .header__wrapper {
    padding-top: 64px;
    height: 105px;
  }
}
.header.search-open .header__wrapper {
  flex-direction: row-reverse;
}

@media (min-width: 1024px) {
  .header__wrapper {
    max-width: 1384px;
  }
  .header.search-open .header__wrapper {
    flex-direction: row;
  }
}
.header__search-wrapper {
  z-index: 10001;
  display: flex;
  margin-left: auto;
  margin-right: 0;
  position: absolute;
  left: 16px;
  right: 16px;
}
@media (min-width: 1024px) {
  .header__search-wrapper {
    position: static;
    margin-right: 0;
    margin-left: 64px;
  }
}
.header__search-button {
  position: relative;
  display: none;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 20px;
  border: 0 none;
  transition: opacity 0.15s ease;
}
.header__search-button:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
}
[data-whatinput=initial] .header__search-button:hover {
  opacity: 0.7;
}

[data-whatinput=keyboard][data-whatintent=mouse] .header__search-button:hover {
  opacity: 0.7;
}

[data-whatinput=mouse] .header__search-button:hover {
  opacity: 0.7;
}

.nav_open .header__search-button {
  display: block;
}

@media (min-width: 1024px) {
  .header__search-button:before {
    opacity: 0;
    content: "";
    position: absolute;
    background-color: #fff;
    border-radius: 1px;
    height: 2px;
    width: 16px;
    transform: rotate(0);
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: transform 0.3s ease, opacity 0s ease 0.4s;
  }
  .header__search-button:after {
    opacity: 0;
    content: "";
    position: absolute;
    background-color: #fff;
    border-radius: 1px;
    height: 2px;
    width: 16px;
    transform: rotate(0);
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: transform 0.3s ease, opacity 0s ease 0.4s;
  }
}
.header.search-open .header__search-button {
  background-color: transparent;
}
@media (max-width: 1023px) {
  .header.search-open .header__search-button {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header.search-open .header__search-button {
    background-color: #cc2131 !important;
  }
  .header.search-open .header__search-button svg {
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }
  .header.search-open .header__search-button:before {
    opacity: 1;
    transform: rotate(45deg);
    transition: transform 0.3s ease 0.3s, opacity 0.1s ease 0.1s;
  }
  .header.search-open .header__search-button:after {
    opacity: 1;
    transform: rotate(-45deg);
    transition: transform 0.3s ease 0.3s, opacity 0.1s ease 0.1s;
  }
}

.header__search-button svg {
  display: block;
  margin: auto;
  transform: scaleY(1);
  transition: transform 0.3s ease;
  transition-delay: 0.3s;
}
.header__search-button:focus {
  background-color: #cc2131 !important;
}
@media (min-width: 1024px) {
  .header__search-button {
    display: block;
    background-color: #cc2131;
  }
}
.header__form {
  position: absolute;
  visibility: hidden;
  transition: max-width 0.5s ease, visibility 1ms ease 0s, opacity 0.3s ease;
  max-width: 70px;
  opacity: 0;
}
@media (min-width: 1024px) {
  .header__form {
    transition: width 0.5s ease, top 0.5s ease, opacity 0.3s ease 0.1s, visibility 0s ease 0.5s;
    max-width: none;
    width: 100px;
    position: absolute;
    top: 60px;
    left: auto;
    right: 30px;
    opacity: 0;
  }
}
.header.search-open .header__form {
  visibility: visible;
  width: 100%;
  max-width: 1024px;
  opacity: 1;
}
@media (min-width: 1024px) {
  .header.search-open .header__form {
    width: 472px;
    max-width: none;
    top: 90px;
    transition: width 0.5s ease, top 0.5s ease, opacity 0.3s ease;
  }
}
@media (min-width: 1440px) {
  .header.search-open .header__form {
    top: 120px;
  }
}

.header__form .icon-search {
  display: none;
  position: absolute;
  left: 24px;
  top: 16px;
}
.header__form .icon-search path {
  fill: #cc2131;
}
@media (min-width: 1024px) {
  .header__form .icon-search {
    display: block;
  }
}
.header__form .desktop-enter {
  display: none;
  position: absolute;
  top: 12px;
  right: 14px;
  text-transform: uppercase;
  background: none;
  border: 0 none;
  color: #cc2131;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .header__form .desktop-enter {
    display: block;
  }
}
.header__search-input {
  display: block;
  z-index: 10010;
  width: 100%;
  height: 48px;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 0 none;
  background: #ffffff;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.16);
  border-radius: 16px;
  padding: 0 50px 0 50px;
}
.header.search-open .header__search-input {
  display: block;
}

.header__search-input:focus {
  outline: 2px solid rgb(222, 184, 135);
  outline-offset: 1px;
}
.header__search-close-button {
  width: 40px;
  height: 40px;
  z-index: 10020;
  display: none;
  background-color: transparent;
  border: 0 none;
  border-radius: 40px;
  margin: 6px 0 0 4px;
}
.header.search-open .header__search-close-button {
  display: block;
}

@media (min-width: 1024px) {
  .header__search-close-button {
    display: none;
  }
  .header.search-open .header__search-close-button {
    display: none;
  }
}
.header__search-close-button:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
}
.header__togglebutton {
  width: 40px;
  height: 40px;
  border: 0 none;
  background-color: transparent;
  border-radius: 20px;
  z-index: 10001;
  margin-bottom: auto;
  margin-top: auto;
}
@media (min-width: 1024px) {
  .header__togglebutton {
    display: none;
  }
}
.header.search-open .header__togglebutton {
  display: none;
}

.header__togglebutton:focus {
  background-color: transparent !important;
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
}
[data-whatinput=touch] .header__togglebutton:hover {
  opacity: 1;
}

[data-whatintent=touch] .header__togglebutton:hover {
  opacity: 1;
}

.header__togglebutton .hamburger-inner {
  width: 15px;
  right: 0;
}
.header__togglebutton .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), width 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  width: 23.0769230769px;
  right: 0;
}
.header__togglebutton .hamburger-inner::before {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), width 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  width: 30px;
  right: 0;
}
.header__togglebutton:hover .hamburger-inner {
  width: 30px;
  right: 0;
}
.header__togglebutton:hover .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), width 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  width: 30px;
  right: 0;
}
.header__togglebutton:hover .hamburger-inner::before {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), width 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  width: 30px;
  right: 0;
}
.header__togglebutton.is-active .hamburger-inner {
  width: 30px;
}
.header__togglebutton.is-active .hamburger-inner::after, .header__togglebutton.is-active .hamburger-inner::before {
  width: 30px;
}
.header__mobile-enter {
  display: none;
  border: 0 none;
  background: none;
  z-index: 10001;
  margin: 2px 16px 0 0;
}
.header.search-open .header__mobile-enter {
  display: block;
}
@media (min-width: 1024px) {
  .header.search-open .header__mobile-enter {
    display: none;
  }
}

.header__mobile-enter svg path {
  stroke: #cc2131;
}
.header__navigation {
  display: none;
  text-align: center;
}
@media (max-width: 1023px) {
  .header__navigation {
    transition: width 0.5s ease;
    display: flex;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 64px;
  }
  .header__navigation li:first-child {
    margin-top: 24px;
  }
  .header__navigation li:last-child {
    margin-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  .header__navigation {
    display: inline-block;
    margin-left: auto;
  }
}
.header__navigation_wrapper {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
@media (max-width: 1023px) {
  .header__navigation_wrapper {
    margin: 0 auto 0px 30px;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.9s ease;
  }
  .nav_open .header__navigation_wrapper {
    opacity: 1;
    transition: opacity 0.9s ease;
  }
}
.nav_open .header__navigation {
  transition: width 0.5s ease;
}
@media (max-width: 1023px) {
  .nav_open .header__navigation {
    width: 100%;
    overflow-y: scroll;
  }
}

.header__navigation-item {
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .header__navigation-item {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.header__navigation-item-link {
  white-space: nowrap;
  color: #363636;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 10px 25px !important;
  padding: 0 5px !important;
}
@media (max-width: 1023px) {
  .header__navigation-item-link.selected {
    color: #fff;
  }
}
@media (min-width: 1024px) {
  .header__navigation-item-link.selected::before {
    height: 2px;
    width: 100%;
    transform: none;
  }
}
.header__navigation-item-link:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: rgba(222, 184, 135, 0.3);
}
@media (min-width: 1024px) {
  .header__navigation-item-link {
    line-height: 40px;
    display: block;
    position: relative;
  }
  .header__navigation-item-link::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #cc2131;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: color 0.1s, transform 0.2s ease-out;
  }
  .header__navigation-item-link:active::before {
    background-color: #cc2131;
  }
  .header__navigation-item-link:hover::before, .header__navigation-item-link:focus::before, .header__navigation-item-link.-active::before {
    transform-origin: center top;
    transform: scale(0.8, 1);
  }
}
.header__homelink {
  line-height: 40px;
  height: 40px;
  display: inline-block;
  width: auto;
  padding-top: 7px;
  padding-bottom: 7px;
}
@media (max-width: 1023px) {
  .header.search-open .header__homelink {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header__homelink {
    padding: 0;
    margin-top: -9px;
    width: 116px;
    height: 49px;
  }
}
.header__homelink .icon-logo {
  width: auto;
}
@media (min-width: 1024px) {
  .header__homelink .icon-logo {
    width: 116px;
    height: 49px;
  }
}
.header__homelink:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: rgba(222, 184, 135, 0.3);
}
.header__navigation-language {
  position: fixed;
  background: #4a3c31;
  color: #fff;
  padding: 8px 16px 16px;
  font-weight: bold;
  width: 117px;
  height: 40px;
  text-align: center;
  border-radius: 16px;
  bottom: 64px;
  left: 0;
  transform: translateX(-100%);
  transition: left 0.3s ease, transform 0.3s ease, opacity 0s ease 0.4s;
  opacity: 0;
}
.header__navigation-language .header__navigation-item {
  margin-top: 0;
  margin-bottom: 0;
}
.nav_open .header__navigation-language {
  transition-delay: 0.2s;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

.header__navigation-language ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
}
.header__navigation-language li a {
  font-weight: bold;
  color: #fff;
  margin-left: 0;
  font-size: 13px;
  line-height: 20px;
}
.header__navigation-language li a:hover::before {
  display: none;
}
@media (min-width: 1024px) {
  .header__navigation-language {
    height: 48px;
    position: absolute;
    border-radius: 0 0 16px 16px;
    top: -8px;
    left: auto;
    right: 30px;
    bottom: auto;
    transform: unset;
    opacity: 1;
    transition: left 0.3s ease, transform 0.3s ease, opacity 0s ease 0.4s, top 0.3s ease;
  }
  .header__navigation-language:hover {
    top: 0;
  }
  .header__navigation-language ul {
    padding-top: 8px;
  }
  .header__navigation-language li {
    font-size: 13px;
  }
}

.header {
  background: white;
}
.header .logos {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  z-index: 999999;
  position: sticky;
  width: 100%;
  max-width: 250px;
}
@media (min-width: 1024px) {
  .header .logos {
    gap: 30px;
    max-width: 100%;
    justify-content: center;
    position: initial;
  }
}
.header__wrapper {
  display: flex !important;
  height: auto !important;
}
.header__homelink {
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  height: initial !important;
  text-align: center;
}
.header__navigation {
  margin: 0 auto !important;
}
@media (min-width: 1023px) {
  .header__navigation {
    width: 100%;
  }
}
@media (min-width: 1023px) {
  .header__navigation_wrapper {
    justify-content: space-around;
    margin-top: 20px !important;
  }
}
.header__navigation-item-link:hover {
  background-color: #cc2131 !important;
  color: white !important;
}
.header__navigation-item-link:hover::before {
  content: none !important;
}
.header__navigation-item-link.selected {
  background-color: #cc2131 !important;
  color: white !important;
}
.header__navigation-item-link.selected::before {
  content: none !important;
}
.header__navigation-lang {
  position: fixed;
  right: 20px;
  /* height: 100%; */
  bottom: 0;
  top: 100px;
  left: auto;
}
.header__navigation-lang ul {
  flex-direction: row;
}
@media (min-width: 1024px) {
  .header__navigation-lang {
    position: absolute;
    right: 20px;
    top: 0;
  }
}
.header__search-wrapper {
  display: none !important;
}

.header + main {
  padding-top: 120px;
}

.header.has-offset + main {
  padding-top: 120px;
}

@media (min-width: 1023px) {
  .header + main {
    padding-top: 230px;
  }
  .header.has-offset + main {
    padding-top: 230px;
  }
}
@media (min-width: 1024px) {
  .header.has-offset .header__navigation-item-link {
    font-size: 14px;
  }
  .header.has-offset .header__navigation-lang {
    display: none;
  }
  .header__navigation-lang {
    height: 80px;
  }
}
main article {
  width: 100%;
  max-width: 648px;
  margin: 0 auto 88px;
  padding: 0;
  position: relative;
  text-align: center;
}
@media (min-width: 1024px) {
  main article {
    max-width: 1192px;
    padding-left: 32px;
    padding-right: 32px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1440px) {
  main article {
    max-width: 1384px;
  }
}
main article div.hero {
  margin-bottom: 40px;
  text-align: left;
}
@media (min-width: 1024px) {
  main article div.hero {
    margin-bottom: 0;
  }
}
main article div.hero img.post-hero {
  display: block;
  margin: 0 auto 24px;
  width: 100%;
  height: auto;
  max-height: 60vh;
  border-radius: 24px 0 64px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  main article div.hero img.post-hero {
    display: inline-block;
    max-width: 648px;
    width: 50%;
    height: 456px;
    max-height: 100%;
    margin-bottom: 0;
    border-radius: 24px 24px 24px 120px;
    float: left;
  }
}
@media (min-width: 1440px) {
  main article div.hero img.post-hero {
    float: none;
    vertical-align: middle;
  }
}
main article div.hero div.txt-container {
  display: inline-block;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  main article div.hero div.txt-container {
    max-width: 648px;
    width: 50%;
    padding: 0 0 0 64px;
  }
}
@media (min-width: 1440px) {
  main article div.hero div.txt-container {
    width: auto;
    padding-left: 112px;
    vertical-align: middle;
  }
}
main article div.hero .post-info {
  display: block;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  main article div.hero .post-info {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
main article div.hero .post-info span.date {
  color: #cc2131;
}
main article div.hero .post-info span.author {
  margin-left: 24px;
}
@media (min-width: 1024px) {
  main article div.hero .post-info span.author {
    margin-left: 16px;
  }
}
main article div.hero h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  main article div.hero h1 {
    font-size: 44px;
    line-height: 48px;
  }
}
main article div.hero p.lead {
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  main article div.hero p.lead {
    font-size: 20px;
    line-height: 32px;
  }
}
main article ul.shares {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  main article ul.shares {
    position: absolute;
    margin-top: 120px;
    left: 32px;
  }
}
main article div.post-content {
  display: block;
  margin: 40px auto 0;
  padding: 0 16px;
  width: 100%;
  text-align: left;
  clear: both;
}
@media (min-width: 1024px) {
  main article div.post-content {
    margin-top: 120px;
    padding: 0;
  }
}
main article div.post-content h1, main article div.post-content h2, main article div.post-content h3, main article div.post-content h4, main article div.post-content h5, main article div.post-content h6, main article div.post-content p, main article div.post-content ul, main article div.post-content ol, main article div.post-content blockquote {
  display: block;
  width: 100%;
  max-width: 648px;
  margin: auto;
}
main article div.post-content h1, main article div.post-content h2 {
  font-size: 24px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  main article div.post-content h1, main article div.post-content h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
main article div.post-content h3 {
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  main article div.post-content h3 {
    margin-top: 48px;
    font-size: 22px;
    line-height: 32px;
  }
}
main article div.post-content h4, main article div.post-content h5, main article div.post-content h6 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  main article div.post-content h4, main article div.post-content h5, main article div.post-content h6 {
    margin-top: 48px;
    font-size: 18px;
    line-height: 32px;
  }
}
main article div.post-content p {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  main article div.post-content p {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 32px;
  }
}
main article div.post-content a {
  color: #cc2131;
  text-decoration: underline;
}
main article div.post-content a:focus, main article div.post-content a:hover {
  color: rgb(227.6392405063, 85.8607594937, 99.1265822785);
  text-decoration: none;
}
main article div.post-content blockquote {
  position: relative;
  margin: 30px auto 40px;
  padding-top: 64px;
  color: #cc2131;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 1024px) {
  main article div.post-content blockquote {
    text-align: left;
    margin-top: 80px;
    margin-bottom: 88px;
    padding-top: 0;
    padding-left: 104px;
    padding-right: 16px;
  }
}
main article div.post-content blockquote p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
main article div.post-content blockquote:before {
  content: "";
  background-image: url("../templates/svg/quote.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 48px;
  height: 48px;
}
@media (min-width: 1024px) {
  main article div.post-content blockquote:before {
    margin: auto 0 auto 16px;
  }
}
main article div.post-content ul, main article div.post-content ol {
  list-style-type: none;
  counter-reset: custom-counter;
  margin-top: 16px;
  margin-bottom: 40px;
  padding: 0;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  main article div.post-content ul, main article div.post-content ol {
    font-size: 18px;
    line-height: 32px;
  }
}
main article div.post-content ul li, main article div.post-content ol li {
  position: relative;
  padding-left: 40px;
}
@media (min-width: 1024px) {
  main article div.post-content ul li, main article div.post-content ol li {
    padding-left: 88px;
  }
}
main article div.post-content ul li:before, main article div.post-content ol li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  text-align: center;
}
@media (min-width: 1024px) {
  main article div.post-content ul li:before, main article div.post-content ol li:before {
    width: 88px;
  }
}
main article div.post-content ul:not(ol) li:before, main article div.post-content ol:not(ol) li:before {
  content: "•";
}
main article div.post-content ul:not(ul) li, main article div.post-content ol:not(ul) li {
  counter-increment: custom-counter;
}
main article div.post-content ul:not(ul) li:before, main article div.post-content ol:not(ul) li:before {
  content: counter(custom-counter) ".";
}
main article div.post-content ul + li, main article div.post-content ol + li {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  main article div.post-content ul + li, main article div.post-content ol + li {
    margin-top: 8px;
  }
}
main article div.post-content img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  border-radius: 16px 16px 64px 16px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  main article div.post-content img {
    border-radius: 24px 24px 120px 24px;
  }
}
main article div.post-content p > img {
  margin: 16px auto 32px;
}
@media (min-width: 1024px) {
  main article div.post-content p > img {
    margin: 56px auto 48px;
  }
}
main article div.post-content figure {
  margin: 40px auto 56px;
  width: 100% !important;
  max-width: 672px;
}
@media (min-width: 1024px) {
  main article div.post-content figure {
    margin: 80px auto;
  }
}
main article div.post-content figure figcaption {
  padding: 16px 16px 0;
  font-size: 13px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  main article div.post-content figure figcaption {
    font-size: 15px;
    line-height: 24px;
    padding: 32px 24px 0;
  }
}
main article div.post-content div.gallery {
  margin: 40px auto 56px;
  width: 100%;
}
@media (min-width: 1024px) {
  main article div.post-content div.gallery {
    display: flex;
    align-content: center;
    margin: 80px auto;
  }
}
main article div.post-content div.gallery figure.gallery-item {
  margin: 0 auto;
  width: 100% !important;
  max-width: 448px;
}
@media (min-width: 1024px) {
  main article div.post-content div.gallery figure.gallery-item {
    margin: 0 0 0 auto;
  }
  main article div.post-content div.gallery figure.gallery-item:after {
    clear: both;
  }
}
main article div.post-content div.gallery figure.gallery-item + figure.gallery-item {
  margin: 48px auto 0;
}
@media (min-width: 1024px) {
  main article div.post-content div.gallery figure.gallery-item + figure.gallery-item {
    margin: 0 auto 0 24px;
  }
}
@media (min-width: 1024px) {
  main article div.post-content div.gallery figure.gallery-item img {
    height: 304px;
  }
}
main article div.post-content .wp-video, main article div.post-content iframe {
  width: 100% !important;
  max-width: 672px;
  margin: 40px auto 64px;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  main article div.post-content .wp-video, main article div.post-content iframe {
    margin: 72px auto 80px;
    height: 376px;
  }
}
main article div.post-content p > iframe {
  margin: 8px auto 32px;
}
@media (min-width: 1024px) {
  main article div.post-content p > iframe {
    margin: 40px auto 48px;
  }
}
main article div.article-highlight {
  background-color: #F6F6F6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 24px 24px 64px 24px;
  padding: 32px 16px;
  margin: 80px -16px 64px -16px;
  max-width: 920px;
}
@media (min-width: 640px) {
  main article div.article-highlight {
    padding: 32px;
  }
}
@media (min-width: 1024px) {
  main article div.article-highlight {
    border-radius: 24px 24px 120px 24px;
    padding: 56px 16px 64px;
    margin: 80px auto;
  }
}
main article div.article-highlight h1, main article div.article-highlight h2, main article div.article-highlight h3, main article div.article-highlight h4, main article div.article-highlight h5, main article div.article-highlight h6 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  main article div.article-highlight h1, main article div.article-highlight h2, main article div.article-highlight h3, main article div.article-highlight h4, main article div.article-highlight h5, main article div.article-highlight h6 {
    font-size: 22px;
    line-height: 32px;
  }
}
main article div.article-highlight p {
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  main article div.article-highlight p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 28px;
  }
}
main article div.article-highlight p:empty {
  display: none;
}
main article div.article-highlight a {
  display: inline-block;
  background-color: #cc2131;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 32px;
  text-decoration: none;
}
@media (min-width: 1024px) {
  main article div.article-highlight a {
    font-size: 16px;
    line-height: 24px;
  }
}
main article div.article-highlight a:focus, main article div.article-highlight a:hover {
  color: #fff;
  background-color: rgb(227.6392405063, 85.8607594937, 99.1265822785);
}

section.related {
  width: 100%;
  max-width: 1192px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}
@media (min-width: 1024px) {
  section.related {
    padding: 0 16px;
  }
}
@media (min-width: 1440px) {
  section.related {
    max-width: 1320px;
  }
}
@media (min-width: 1336px) {
  section.related {
    padding: 0;
  }
}

.tmpl-products-search section.wrapper .txt-container {
  display: inline-block;
  width: 100%;
  margin: 40px 0 32px;
}
@media (min-width: 648px) {
  .tmpl-products-search section.wrapper .txt-container {
    margin: 64px 0 56px;
  }
}
@media (min-width: 1024px) {
  .tmpl-products-search section.wrapper .txt-container {
    margin: 120px 0 56px;
  }
}
.tmpl-products-search section.wrapper .txt-container .results-title {
  width: 100%;
}
@media (min-width: 1024px) {
  .tmpl-products-search section.wrapper .txt-container .results-title {
    margin: 0;
    padding-right: 32px;
    width: 50%;
    float: left;
  }
}
@media (min-width: 1024px) {
  .tmpl-products-search section.wrapper .txt-container .results-title {
    font-size: 32px;
    line-height: 40px;
  }
}
.tmpl-products-search section.wrapper .txt-container p {
  width: 100%;
  font-size: 18px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  .tmpl-products-search section.wrapper .txt-container p {
    margin: 0;
    width: 50%;
    float: right;
  }
}
.tmpl-products-search section.wrapper .txt-container + div {
  clear: both;
}
.tmpl-products-search section.wrapper .card-link__image {
  object-fit: contain;
}

form.search-form {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media (min-width: 580px) {
  form.search-form {
    width: auto;
  }
}
form.search-form svg.icon-search {
  position: absolute;
  top: 0;
  left: 16px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  z-index: 1;
}
form.search-form svg.icon-search > path {
  fill: #cc2131;
}
@media (min-width: 1024px) {
  form.search-form svg.icon-search {
    left: 24px;
  }
}
form.search-form input[type=text] {
  position: relative;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  padding: 16px 48px;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
}
@media (min-width: 1024px) {
  form.search-form input[type=text] {
    padding: 16px 64px;
    width: 472px;
  }
}
form.search-form input[type=text]::placeholder {
  color: #979797;
  font-size: inherit;
  line-height: inherit;
}
@media (min-width: 1024px) {
  form.search-form input[type=text]::placeholder {
    visibility: hidden;
  }
}
@media (min-width: 1024px) {
  form.search-form input[type=text]:placeholder-shown + span.placeholder {
    display: inline-block;
  }
}
form.search-form span.placeholder {
  display: none;
  color: #979797;
  font-size: 14px;
  line-height: 24px;
  position: absolute;
  top: 0;
  left: 64px;
  bottom: 0;
  height: 24px;
  margin: auto;
  z-index: 1;
  pointer-events: none;
}
form.search-form button[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  border: none;
  padding: 16px;
  color: #cc2131;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.1s ease;
}
@media (min-width: 1024px) {
  form.search-form button[type=submit] {
    right: 8px;
  }
}
form.search-form button[type=submit]:hover, form.search-form button[type=submit]:focus {
  color: rgb(227.6392405063, 85.8607594937, 99.1265822785);
  transform: scale(1.2);
}

ul.shares {
  list-style-type: none;
  background-color: #F6F6F6;
  border-radius: 16px;
  padding: 0 10px;
  display: inline-block;
  transition: all 0.15s ease;
}
@media (min-width: 1024px) {
  ul.shares {
    width: auto;
    height: 256px;
  }
}
ul.shares li {
  float: left;
}
@media (min-width: 1024px) {
  ul.shares li {
    float: none;
  }
}
ul.shares li a {
  display: block;
  height: 24px;
  padding: 20px 10px;
  text-align: center;
  box-sizing: content-box;
}
ul.shares li a svg {
  width: 24px;
  height: 24px;
}
ul.shares li a.copy-to-clipboard svg > path {
  stroke: #cc2131;
}
ul.shares li a.copy-to-clipboard:hover svg > path {
  stroke: rgb(227.6392405063, 85.8607594937, 99.1265822785);
}
ul.shares li a:not(.copy-to-clipboard) svg > path {
  fill: #cc2131;
}
ul.shares li a:not(.copy-to-clipboard):hover svg > path {
  fill: rgb(227.6392405063, 85.8607594937, 99.1265822785);
}

.tmpl-single-product section {
  width: 100%;
  max-width: 648px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .tmpl-single-product section {
    max-width: 1192px;
    padding: 0 32px;
  }
}
@media (min-width: 1440px) {
  .tmpl-single-product section {
    max-width: 1384px;
  }
}
.tmpl-single-product div.product-summary {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.tmpl-single-product div.product-summary .breadcrumb {
  margin-bottom: 56px;
}
.tmpl-single-product div.product-summary .breadcrumb .breadcrumb__wrapper {
  padding-left: 16px;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-summary .breadcrumb .breadcrumb__wrapper {
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-summary {
    text-align: left;
  }
}
.tmpl-single-product div.product-summary h1 {
  font-size: 28px;
  line-height: 32px;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0 16px;
  text-align: left;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-summary h1 {
    font-size: 44px;
    line-height: 48px;
    padding: 0;
  }
}
.tmpl-single-product div.product-summary p.description {
  font-size: 14px;
  line-height: 24px;
  padding: 0 16px;
  text-align: left;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-summary p.description {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
    padding: 0;
  }
}
.tmpl-single-product div.product-summary .txt-container a {
  color: #cc2131;
  text-decoration: underline;
}
.tmpl-single-product div.product-summary .txt-container a:hover {
  text-decoration: none;
}
.tmpl-single-product div.product-summary div.img-container {
  display: block;
  margin: 0 auto 24px;
  width: 100%;
  height: auto;
  border-radius: 24px 0 64px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-summary div.img-container {
    display: inline-block;
    max-width: 648px;
    width: calc(50% - 96px);
    height: 320px;
    max-height: 100%;
    padding-left: 96px;
    margin-bottom: 0;
    border-radius: 24px 24px 24px 120px;
    float: left;
  }
}
@media (min-width: 1440px) {
  .tmpl-single-product div.product-summary div.img-container {
    float: none;
    height: 448px;
    padding-left: 112px;
    vertical-align: middle;
  }
}
.tmpl-single-product div.product-summary div.img-container img {
  display: block;
  margin: auto;
  object-fit: contain;
  width: 100%;
  aspect-ratio: 680/952;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-summary div.img-container img {
    height: 100%;
  }
}
.tmpl-single-product div.product-summary div.txt-container {
  display: inline-block;
  width: 100%;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-summary div.txt-container {
    width: calc(50% + 32px);
    padding: 0 0 0 64px;
  }
}
@media (min-width: 1440px) {
  .tmpl-single-product div.product-summary div.txt-container {
    padding-left: 112px;
    vertical-align: middle;
  }
}
.tmpl-single-product div.product-summary ul.product-logos {
  list-style-type: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.tmpl-single-product div.product-summary ul.product-logos li {
  display: inline-block;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-summary ul.product-logos li {
    padding: 0 24px 0 0;
  }
}
.tmpl-single-product div.product-summary ul.product-logos li img {
  display: block;
  width: 80px;
  height: 64px;
  object-fit: contain;
  aspect-ratio: 180/180;
}
@media (min-width: 1440px) {
  .tmpl-single-product div.product-summary ul.product-logos li img {
    width: 104px;
    height: 88px;
  }
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-summary ul.shares {
    position: absolute;
    top: 70px;
    bottom: 0;
    left: 0;
    margin: auto;
    width: auto;
    height: 256px;
  }
}
.tmpl-single-product div.product-info {
  background-color: #F6F6F6;
  border-radius: 16px;
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 48px 16px 20px 16px;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info {
    border-radius: 24px 24px 120px 24px;
    margin-top: 64px;
    padding: 88px;
  }
}
.tmpl-single-product div.product-info ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0;
}
.tmpl-single-product div.product-info ul li {
  position: relative;
  width: 100%;
  padding: 0 0 40px 40px;
}
@media (min-width: 580px) {
  .tmpl-single-product div.product-info ul li:not(.expandable) {
    flex-basis: 50%;
  }
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info ul li {
    flex-basis: 33.3333333333%;
    padding: 10px 10px 64px 54px;
  }
  .tmpl-single-product div.product-info ul li:not(.expandable) {
    flex-basis: 33.3333333333%;
  }
  .tmpl-single-product div.product-info ul li.product-packages {
    order: -3;
  }
  .tmpl-single-product div.product-info ul li.product-storage {
    order: -2;
  }
  .tmpl-single-product div.product-info ul li.product-nutrition {
    order: -1;
  }
}
.tmpl-single-product div.product-info ul li > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info ul li > svg {
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
  }
}
.tmpl-single-product div.product-info ul li h3,
.tmpl-single-product div.product-info ul li caption {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info ul li h3,
  .tmpl-single-product div.product-info ul li caption {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
.tmpl-single-product div.product-info ul li h4 {
  font-size: 15px;
  line-height: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.tmpl-single-product div.product-info ul li p,
.tmpl-single-product div.product-info ul li table td {
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}
.tmpl-single-product div.product-info ul li table {
  width: 100%;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info ul li table tr td {
    width: 50%;
  }
}
.tmpl-single-product div.product-info ul li table tr.indent td {
  padding-left: 10px;
}
.tmpl-single-product div.product-info ul li.product-nutrition {
  border-top: 1px solid #E5E5E5;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 0;
  overflow: hidden;
}
.tmpl-single-product div.product-info ul li.product-nutrition > svg {
  display: none;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info ul li.product-nutrition.expandable {
    max-height: none !important;
  }
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info ul li.product-nutrition {
    border-top: none;
    height: auto;
    padding: 10px 10px 64px 54px;
  }
  .tmpl-single-product div.product-info ul li.product-nutrition h3 {
    cursor: auto;
  }
  .tmpl-single-product div.product-info ul li.product-nutrition svg {
    display: inline-block;
  }
  .tmpl-single-product div.product-info ul li.product-nutrition svg.icon-arrow-tab {
    display: none;
  }
}
.tmpl-single-product div.product-info ul.horeca {
  border-top: solid #E5E5E5 1px;
  padding-top: 32px;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info ul.horeca {
    padding-top: 48px;
  }
}
.tmpl-single-product div.product-info ul.horeca li {
  padding: 0;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info ul.horeca li {
    flex-basis: 100%;
    padding: 0;
  }
}
.tmpl-single-product div.product-info ul.horeca li ul.horeca-packages > li {
  padding: 16px 0 0;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info ul.horeca li ul.horeca-packages > li {
    flex-basis: 33.3333333333%;
  }
  .tmpl-single-product div.product-info ul.horeca li ul.horeca-packages > li + li, .tmpl-single-product div.product-info ul.horeca li ul.horeca-packages > li + li + li + li + li, .tmpl-single-product div.product-info ul.horeca li ul.horeca-packages > li + li + li + li + li + li + li + li {
    padding-left: 54px;
  }
  .tmpl-single-product div.product-info ul.horeca li ul.horeca-packages > li + li + li + li, .tmpl-single-product div.product-info ul.horeca li ul.horeca-packages > li + li + li + li + li + li + li, .tmpl-single-product div.product-info ul.horeca li ul.horeca-packages > li + li + li + li + li + li + li + li + li + li {
    padding-left: 0;
  }
}
.tmpl-single-product div.product-info ul.horeca li ul.horeca-packages > li table td {
  width: 50%;
}
.tmpl-single-product div.product-info ul .expandable {
  overflow: hidden;
  max-height: 32px;
  transition: max-height 0.5s ease;
}
.tmpl-single-product div.product-info ul .expandable h3 {
  cursor: pointer;
}
.tmpl-single-product div.product-info ul .expandable svg.icon-arrow-tab {
  position: absolute;
  right: 0;
  width: 24px;
  height: 24px;
  transform: scaleY(-1);
  transition: transform 0.5s ease;
}
@media (min-width: 1024px) {
  .tmpl-single-product div.product-info ul .expandable svg.icon-arrow-tab {
    position: relative;
    vertical-align: middle;
    margin-left: 38px;
  }
}
.tmpl-single-product div.product-info ul .expandable.open svg.icon-arrow-tab {
  transform: scaleY(1);
  transition: transform 0.5s ease;
}

section.related {
  max-width: 1384px !important;
  padding: 0 !important;
}
section.related div.related-products {
  padding: 0;
}
section.related h2 {
  font-size: 20px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 16px;
  padding: 0 16px;
}
@media (min-width: 960px) {
  section.related h2 {
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  section.related h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}

.tmpl-single-recipe section {
  width: 100%;
  max-width: 648px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section {
    max-width: 1192px;
    padding: 0 32px;
  }
}
@media (min-width: 1440px) {
  .tmpl-single-recipe section {
    max-width: 1384px;
  }
}
.tmpl-single-recipe section.recipe:first-child {
  padding-top: 0px !important;
}
.tmpl-single-recipe section.recipe div.recipe-info {
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.tmpl-single-recipe section.recipe div.recipe-info h1 {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 24px;
  text-align: left;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-info h1 {
    font-size: 32px;
    line-height: 38px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-info p.description {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-info p.description {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-info .txt-container a {
  color: #cc2131;
  text-decoration: underline;
}
.tmpl-single-recipe section.recipe div.recipe-info .txt-container a:hover {
  text-decoration: none;
}
.tmpl-single-recipe section.recipe div.recipe-info div.img-container {
  background-color: #F6F6F6;
  display: block;
  margin: 0 auto 24px;
  width: 100%;
  height: auto;
  max-height: 60vh;
  border-radius: 24px 0 64px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-info div.img-container {
    display: inline-block;
    max-width: 648px;
    width: 50%;
    height: 456px;
    max-height: 100%;
    margin-bottom: 0;
    border-radius: 60px 0 60px 0;
  }
}
@media (min-width: 1440px) {
  .tmpl-single-recipe section.recipe div.recipe-info div.img-container {
    float: none;
    vertical-align: middle;
  }
}
.tmpl-single-recipe section.recipe div.recipe-info div.img-container img {
  display: block;
  margin: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.tmpl-single-recipe section.recipe div.recipe-info div.txt-container {
  display: inline-block;
  width: 100%;
  padding: 0 16px 24px;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-info div.txt-container {
    max-width: 648px;
    width: calc(50% - 96px);
    padding: 0 64px 0 0;
  }
}
@media (min-width: 1440px) {
  .tmpl-single-recipe section.recipe div.recipe-info div.txt-container {
    padding: 0 112px 0 0;
    vertical-align: middle;
  }
}
.tmpl-single-recipe section.recipe div.recipe-info div.txt-container h1 {
  text-align: center;
  position: relative;
}
.tmpl-single-recipe section.recipe div.recipe-info div.txt-container h1:before, .tmpl-single-recipe section.recipe div.recipe-info div.txt-container h1:after {
  content: "";
  height: 4px;
  width: 80%;
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  background-color: #cc2131;
}
.tmpl-single-recipe section.recipe div.recipe-info div.txt-container h1:before {
  top: -10px;
}
.tmpl-single-recipe section.recipe div.recipe-info div.txt-container h1:after {
  bottom: -10px;
}
.tmpl-single-recipe section.recipe div.recipe-info ul.summary {
  list-style-type: none;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-info ul.summary {
    display: inline-block;
    width: auto;
    padding: 0;
  }
}
.tmpl-single-recipe section.recipe div.recipe-info ul.summary li {
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-info ul.summary li {
    width: auto;
    float: left;
    font-size: 18px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-info ul.summary li + li {
  margin-left: 32px;
}
@media (min-width: 1320px) {
  .tmpl-single-recipe section.recipe div.recipe-info ul.summary li + li {
    margin-left: 64px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-info ul.summary li .stars {
  margin-left: 10px;
}
.tmpl-single-recipe section.recipe div.recipe-info ul.summary li svg {
  width: 24px;
  height: 24px;
  padding: 0;
  box-sizing: content-box;
}
.tmpl-single-recipe section.recipe div.recipe-info ul.summary li span {
  display: block;
}
.tmpl-single-recipe section.recipe div.recipe-info ul.shares {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-info ul.shares {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: 256px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction {
  background-color: #F8F4F1;
  border-radius: 24px 24px 64px 24px;
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 48px 16px;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction {
    border-radius: 24px 24px 120px 24px;
    display: flex;
    margin-top: 64px;
    padding: 64px;
  }
}
@media (min-width: 1440px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction {
    padding: 88px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction h2 {
  color: #979797;
  font-size: 20px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients {
  width: 100%;
  box-sizing: content-box;
  padding-bottom: 48px;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients {
    width: 50%;
    padding-bottom: 0;
    padding-right: 64px;
  }
}
@media (min-width: 1440px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients {
    padding-right: 88px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients table {
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients table td:first-child {
  width: 25%;
}
@media (min-width: 1440px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients table td:first-child {
    width: 200px;
  }
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients table {
    font-size: 18px;
    line-height: 32px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients table caption {
  text-align: left;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients table caption {
    font-size: 20px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients table td a {
  color: #cc2131;
  text-decoration: underline;
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients table td a:hover {
  text-decoration: none;
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients table + table {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.ingredients table + table {
    margin-top: 32px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.instructions {
  width: 100%;
  box-sizing: content-box;
  border-top: none;
  padding-top: 0;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.instructions {
    width: 50%;
    border-top: none;
    padding-top: 0;
    padding-left: 64px;
  }
}
@media (min-width: 1440px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.instructions {
    padding-left: 88px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.instructions h4 {
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.instructions h4 {
    font-size: 20px;
    line-height: 32px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.instructions ol {
  list-style-type: none;
  counter-reset: custom-counter;
  padding-left: 0;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.instructions ol {
    font-size: 18px;
    line-height: 32px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.instructions ol li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 30px;
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.instructions ol li a {
  color: #cc2131;
  text-decoration: underline;
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.instructions ol li a:hover {
  text-decoration: none;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.instructions ol li {
    padding-left: 64px;
  }
}
.tmpl-single-recipe section.recipe div.recipe-instruction div.instructions ol li:before {
  content: counter(custom-counter) ".";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.recipe div.recipe-instruction div.instructions ol li:before {
    width: 48px;
  }
}
.tmpl-single-recipe section.search {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.search {
    margin-top: 64px;
  }
}
.tmpl-single-recipe section.search .recipe-search {
  background-color: #F6F6F6;
  background-image: url("../images/resepti-reseptihaku-tausta-mobile.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 24px 24px 24px 64px;
  display: block;
  width: 100%;
  max-width: 1096px;
  margin: auto;
  padding: 56px 16px 64px;
}
@media (min-width: 580px) {
  .tmpl-single-recipe section.search .recipe-search {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.search .recipe-search {
    background-image: url("../images/resepti-reseptihaku-tausta-desktop.jpg");
    text-align: center;
    padding-bottom: 96px;
  }
}
.tmpl-single-recipe section.search .recipe-search .search-form {
  width: 100%;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.search .recipe-search .search-form {
    width: auto;
  }
}
.tmpl-single-recipe section.search .recipe-search h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 24px;
  max-width: 80%;
}
@media (min-width: 1024px) {
  .tmpl-single-recipe section.search .recipe-search h2 {
    margin-bottom: 32px;
    font-size: 24px;
    line-height: 32px;
    max-width: 100%;
  }
}

.recipe:not(.recipe-information) {
  z-index: 1;
}

.recipe-information {
  background-color: #F8F4F1;
  width: 100% !important;
  max-width: 100% !important;
}
@media (min-width: 1024px) {
  .recipe-information {
    margin-top: -100px !important;
    padding-top: 100px !important;
  }
}
.recipe-information .recipe-instruction {
  max-width: 1200px !important;
  margin: 0 auto !important;
}
@media (min-width: 1024px) {
  .recipe-information .recipe-instruction {
    padding: 0 !important;
  }
}

section.related {
  max-width: 1384px !important;
  padding: 0 !important;
}
section.related div.related-recipes {
  padding: 0;
}
section.related h2 {
  font-size: 20px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 16px;
  padding: 0 16px;
}
@media (min-width: 960px) {
  section.related h2 {
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  section.related h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}

.tmpl-recipe-search section.wrapper .txt-container {
  display: inline-block;
  width: 100%;
  margin: 40px auto 32px auto;
}
@media (min-width: 648px) {
  .tmpl-recipe-search section.wrapper .txt-container {
    margin: 64px auto 56px auto;
  }
}
@media (min-width: 1024px) {
  .tmpl-recipe-search section.wrapper .txt-container {
    margin: 80px 0 56px;
  }
}
.tmpl-recipe-search section.wrapper .txt-container .results-title {
  width: 100%;
  text-align: center;
  max-width: 1320px;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
@media (min-width: 1440px) {
  .tmpl-recipe-search section.wrapper .txt-container .results-title {
    text-align: left;
  }
}
.tmpl-recipe-search section.wrapper .txt-container + div {
  clear: both;
}

.tmpl-site-search section.wrapper .txt-container {
  display: inline-block;
  width: 100%;
  margin: 40px auto 32px auto;
}
@media (min-width: 648px) {
  .tmpl-site-search section.wrapper .txt-container {
    margin: 64px auto 56px auto;
  }
}
@media (min-width: 1024px) {
  .tmpl-site-search section.wrapper .txt-container {
    margin: 80px 0 56px;
  }
}
.tmpl-site-search section.wrapper .txt-container .results-title {
  width: 100%;
  text-align: center;
  max-width: 1320px;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
@media (min-width: 1440px) {
  .tmpl-site-search section.wrapper .txt-container .results-title {
    text-align: left;
  }
}
.tmpl-site-search section.wrapper .txt-container + div {
  clear: both;
}

.icon-arrow-up path {
  fill: #fff;
}

.icon-facebook path {
  fill: #4A3C31;
}

.icon-instagram path {
  fill: #4A3C31;
}

.icon-location path {
  fill: #4A3C31;
}

.icon-logo path {
  fill: #4A3C31;
}

.icon-mail path {
  fill: #4A3C31;
}

.icon-phone path {
  fill: #4A3C31;
}

.icon-search path {
  fill: #fff;
}

.contact_forms .gform-grid-col--size-auto {
  padding-right: 0 !important;
}
.contact_forms form.no-submit .gform_footer {
  display: none;
  pointer-events: none;
}
.contact_forms .hidden {
  display: none;
}
.contact_forms__wrapper {
  margin: auto;
  padding: 0 16px;
  background-color: #F8F4F1;
  border-radius: 0;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media (min-width: 768px) {
  .contact_forms__wrapper {
    max-width: 1200px;
  }
}
@media (min-width: 960px) {
  .contact_forms__wrapper {
    padding: 0;
  }
}
.contact_forms__content {
  display: flex;
  width: 80%;
  margin: 0 auto;
  vertical-align: center;
  align-items: center;
  padding: 50px 0;
  gap: 50px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .contact_forms__content {
    flex-direction: row;
  }
}
.contact_forms__content--left {
  flex: 0 0 40%;
}
.contact_forms__content--right {
  flex: 0 0 60%;
}
.contact_forms__content svg.icon {
  margin-top: 0;
}
.contact_forms__content h2,
.contact_forms__content h3,
.contact_forms__content p {
  max-width: 560px;
  margin: 0 auto;
}
.contact_forms__content h2 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.contact_forms__content h3 {
  margin-top: 40px;
  margin-bottom: 24px;
}
@media (min-width: 960px) {
  .contact_forms__content h3 {
    margin-top: 56px;
    margin-bottom: 32px;
  }
}
.contact_forms__content p {
  margin-top: 0;
  margin-bottom: 0;
}
.contact_forms__content p a {
  color: #cc2131;
  text-decoration: underline;
}
.contact_forms__content p a:hover {
  text-decoration: none;
}
.contact_forms__content p.footnote {
  margin-bottom: 0;
  margin-top: 64px;
}
@media (min-width: 960px) {
  .contact_forms__content p.footnote {
    margin-top: 80px;
  }
}
.form_complete .contact_forms__content .btn--toggle {
  display: none;
}

@media (min-width: 960px) {
  .contact_forms__content .btn--toggle {
    min-width: 200px;
  }
}
.contact_forms__content .gform_wrapper.gravity-theme .gfield textarea.medium {
  height: 100px;
}
.contact_forms__content .gform_wrapper .gform-field-label--type-sub {
  display: none !important;
}
.contact_forms__content .gform_wrapper form .gform_fields {
  display: flex !important;
  flex-direction: column;
  position: relative;
}
.contact_forms__content .gform_wrapper form .gform_fields > * {
  width: 100%;
}
.contact_forms__content .gform_wrapper form .gform_heading {
  text-align: center;
  max-width: 560px;
  margin: auto;
}
.contact_forms__content .gform_wrapper form .gform_heading .gform_title {
  margin-top: 32px;
  margin-bottom: 40px;
}
.contact_forms__content .gform_wrapper form .gform_heading .gform_description {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .contact_forms__content .gform_wrapper form .gform_fields {
    width: 100%;
    gap: 5px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-auto-flow: column;
    align-items: center;
    max-width: calc(100% - 24px);
  }
}
@media (min-width: 960px) {
  .contact_forms__content .gform_wrapper form .gform_fields {
    gap: 5px;
    max-width: calc(100% - 72px);
  }
}
.contact_forms__content .gform_wrapper form .gform_fields li {
  display: inline-block;
  width: 100%;
  grid-column: 1;
}
@media (min-width: 768px) {
  .contact_forms__content .gform_wrapper form .gform_fields li.gf_addedClass_span2 {
    grid-row: auto/span 2;
  }
}
.contact_forms__content .gform_wrapper form .gform_fields li.gf_addedClass_secondColumnStart {
  grid-column-start: 1;
}
.contact_forms__content .gform_wrapper form .gform_fields li.gf_addedClass_secondColumnStart, .contact_forms__content .gform_wrapper form .gform_fields li.gf_addedClass_secondColumnStart ~ li {
  grid-column: 2;
}
@media (min-width: 768px) {
  .contact_forms__content .gform_wrapper form .gform_fields li.gf_addedClass_secondColumnStart.gf_addedClass_htmlBlock, .contact_forms__content .gform_wrapper form .gform_fields li.gf_addedClass_secondColumnStart ~ li.gf_addedClass_htmlBlock {
    grid-column: 1/span 2;
    right: 5px;
  }
}
.contact_forms__content .gform_wrapper form .gform_body li.gfield.field_description_below + li.gsection {
  margin-top: 64px !important;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield.gsection {
  border-bottom: none;
  margin-top: 64px;
  margin-bottom: 24px;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield.gsection_title {
  font-size: 18px;
  line-height: 24px;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield {
  margin-top: 10px;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield.gf_addedClass_bestBeforeDate .ginput_container {
  margin-top: 4px !important;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield.gf_addedClass_bestBeforeDate .ginput_container input[type=text] {
  padding: 5px 4px !important;
  width: 53px;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield.gf_addedClass_addFile input {
  margin-bottom: 4px;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield--type-submit {
  position: absolute;
  right: 0;
  justify-content: flex-end;
  bottom: 4px;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield--type-submit input {
  text-transform: uppercase;
  background-color: #cc2131;
  color: white !important;
}
.contact_forms__content .gform_wrapper form .gform_body .charleft {
  display: none !important;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield_label {
  color: #363636;
  font-size: 16px;
  line-height: 24px;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield_label .gfield_required {
  color: inherit;
}
.contact_forms__content .gform_wrapper form .gform_body input,
.contact_forms__content .gform_wrapper form .gform_body textarea {
  border: 2px solid #cc2131;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 12px 24px !important;
  font-size: 16px;
  line-height: 24px;
  background-color: transparent;
}
.contact_forms__content .gform_wrapper form .gform_body input:not(textarea),
.contact_forms__content .gform_wrapper form .gform_body textarea:not(textarea) {
  height: 48px;
}
.contact_forms__content .gform_wrapper form .gform_body input:focus,
.contact_forms__content .gform_wrapper form .gform_body textarea:focus {
  outline: 0;
  border-color: #363636;
}
.contact_forms__content .gform_wrapper form .gform_body input.large, .contact_forms__content .gform_wrapper form .gform_body input.medium, .contact_forms__content .gform_wrapper form .gform_body input.small,
.contact_forms__content .gform_wrapper form .gform_body textarea.large,
.contact_forms__content .gform_wrapper form .gform_body textarea.medium,
.contact_forms__content .gform_wrapper form .gform_body textarea.small {
  width: 100%;
}
.contact_forms__content .gform_wrapper form .gform_body input::placeholder,
.contact_forms__content .gform_wrapper form .gform_body textarea::placeholder {
  color: #cc2131;
}
.contact_forms__content .gform_wrapper form .gform_body input::-moz-placeholder,
.contact_forms__content .gform_wrapper form .gform_body textarea::-moz-placeholder {
  color: #cc2131;
}
.contact_forms__content .gform_wrapper form .gform_body select {
  background-color: #F6F6F6;
  border: none;
  border-radius: 55px;
  padding: 8px 16px;
}
.contact_forms__content .gform_wrapper form .gform_body select.large, .contact_forms__content .gform_wrapper form .gform_body select.medium, .contact_forms__content .gform_wrapper form .gform_body select.small {
  width: 100%;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container {
  position: relative;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container input[type=file] {
  position: relative;
  height: 48px;
  cursor: pointer;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container input[type=file]:hover ~ button {
  background-color: rgb(227.6392405063, 85.8607594937, 99.1265822785);
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container button {
  background-color: #cc2131;
  position: absolute;
  top: 0;
  left: 0;
  height: 48px;
  width: 136px;
  padding: 0;
  border-radius: 8px 0 8px 8px;
  color: #fff;
  font-size: 11px;
  line-height: 48px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container button:hover {
  background-color: rgb(227.6392405063, 85.8607594937, 99.1265822785);
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container [id^=gform_preview_]:not(:empty) ~ button,
.contact_forms__content .gform_wrapper form .gform_body .ginput_container [id^=gform_preview_]:not(:empty) ~ .filename-display {
  display: none;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container span.gform_fileupload_rules {
  font-size: 14px;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container .filename-display {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  padding: 12px 24px 12px 148px;
  background: #fff;
  overflow: hidden;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container .filename-display:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 24px;
  background-image: linear-gradient(90deg, transparent, white 50%);
}
@media (min-width: 480px) {
  .contact_forms__content .gform_wrapper form .gform_body .ginput_container .filename-display {
    padding-left: 164px;
  }
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_date .gfield_date_day,
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_date .gfield_date_month {
  width: 25%;
  max-width: 100%;
  margin-right: 8px;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_date .gfield_date_day input,
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_date .gfield_date_month input {
  width: 100%;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_date .gfield_date_year {
  width: calc(50% - 16px);
  max-width: 100%;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_date .gfield_date_year input {
  width: 100%;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_checkbox {
  margin-top: 8px;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_checkbox ul.gfield_checkbox {
  margin-bottom: 0;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_checkbox ul.gfield_checkbox li:last-child {
  margin-bottom: 0;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_checkbox ul.gfield_checkbox input[type=checkbox] {
  margin-top: 0;
  display: none;
  position: relative;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_checkbox ul.gfield_checkbox input[type=checkbox] + label {
  position: relative;
  padding-left: 32px;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_checkbox ul.gfield_checkbox input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  border: 2px solid #cc2131;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  visibility: visible;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_checkbox ul.gfield_checkbox input[type=checkbox]:checked + label {
  font-weight: normal;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_checkbox ul.gfield_checkbox input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  border-right: 2px solid #363636;
  border-bottom: 2px solid #363636;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 6px;
  height: 8px;
  margin: auto 0;
  transform: rotate(45deg) translate(-1px, -1px);
  visibility: visible;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_radio {
  margin-top: 8px;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_radio ul.gfield_radio {
  margin-bottom: 0;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_radio ul.gfield_radio li:last-child {
  margin-bottom: 0;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_radio ul.gfield_radio input[type=radio] {
  margin-top: 0;
  display: none;
  position: relative;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_radio ul.gfield_radio input[type=radio] + label {
  position: relative;
  padding-left: 32px;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_radio ul.gfield_radio input[type=radio] + label:before {
  content: "";
  position: absolute;
  border: 2px solid #cc2131;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  visibility: visible;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_radio ul.gfield_radio input[type=radio]:checked + label {
  font-weight: normal;
}
.contact_forms__content .gform_wrapper form .gform_body .ginput_container_radio ul.gfield_radio input[type=radio]:checked + label:after {
  content: "";
  position: absolute;
  background-color: #363636;
  border-radius: 100%;
  top: 0;
  bottom: 0;
  left: 4px;
  margin: auto 0;
  width: 8px;
  height: 8px;
  visibility: visible;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield_html {
  position: relative;
  column-span: all;
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 48px auto 0 !important;
  padding: 0 16px;
  text-align: center;
}
@media (min-width: 960px) {
  .contact_forms__content .gform_wrapper form .gform_body .gfield_html {
    margin-top: 72px;
  }
}
.contact_forms__content .gform_wrapper form .gform_body .gfield_html a {
  color: #cc2131;
  text-decoration: underline;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield_html a:hover {
  text-decoration: none;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield_html li {
  display: list-item;
}
.contact_forms__content .gform_wrapper form .gform_body .gfield_html.align-left {
  text-align: left;
}
.contact_forms__content .gform_wrapper form .gform_footer {
  text-align: center;
  margin: 32px 0 0;
  padding: 0;
}
.contact_forms__content .gform_wrapper form .gform_footer .gform_button {
  background-color: #cc2131;
  color: #fff;
  width: auto;
  height: 56px;
  border: 0 none;
  line-height: 1.2 !important;
  border-radius: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 40px;
  padding-right: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: background-color 0.15s ease;
}
.contact_forms__content .gform_wrapper form .gform_footer .gform_button:hover {
  background-color: rgb(227.6392405063, 85.8607594937, 99.1265822785);
}
@media (min-width: 960px) {
  .contact_forms__content .gform_wrapper form .gform_footer .gform_button {
    min-width: 240px;
  }
}
.contact_forms__content .gform_wrapper .validation_error,
.contact_forms__content .gform_wrapper .validation_message {
  display: none;
}
.contact_forms__content .gform_wrapper.gform_validation_error input[aria-required=true][aria-invalid=false],
.contact_forms__content .gform_wrapper.gform_validation_error textarea[aria-required=true][aria-invalid=false] {
  color: #cc2131;
  border-color: #cc2131;
}
.contact_forms__content .gform_wrapper.gform_validation_error .gfield_error {
  background-color: transparent;
  border-top: none;
  border-bottom: none;
  padding: 0;
  margin-top: 16px;
  margin-bottom: 0 !important;
}
@media (max-width: 1023px) {
  .contact_forms__content .gform_wrapper.gform_validation_error .gfield_error + li.gfield.gfield_error {
    margin-top: 16px !important;
  }
}
.contact_forms__content .gform_wrapper.gform_validation_error .gfield_error.gfield_contains_required label.gfield_label {
  margin-top: 0;
}
.contact_forms__content .gform_wrapper.gform_validation_error .gfield_error.gfield_contains_required div.ginput_container {
  margin-top: 8px;
}
.contact_forms__content .gform_wrapper.gform_validation_error .gfield_error.field_sublabel_below .ginput_container label,
.contact_forms__content .gform_wrapper.gform_validation_error .gfield_error input[type=checkbox] + label,
.contact_forms__content .gform_wrapper.gform_validation_error .gfield_error input[type=radio] + label {
  color: #CF0072;
}
.contact_forms__content .gform_wrapper.gform_validation_error .gfield_error input:not([type=file]),
.contact_forms__content .gform_wrapper.gform_validation_error .gfield_error textarea,
.contact_forms__content .gform_wrapper.gform_validation_error .gfield_error input[type=checkbox] + label:before,
.contact_forms__content .gform_wrapper.gform_validation_error .gfield_error input[type=radio] + label:before {
  color: #CF0072;
  border: 2px solid #CF0072 !important;
}
.contact_forms__content .gform_confirmation_wrapper {
  background-color: #F6F6F6;
  border-radius: 24px 24px 64px 24px;
  padding: 32px 64px;
  max-width: 560px;
  margin: 48px auto;
}
.contact_forms.border-top {
  position: relative;
  padding-top: 64px;
}
@media (min-width: 1024px) {
  .contact_forms.border-top {
    padding-top: 88px;
  }
}
@media (min-width: 1440px) {
  .contact_forms.border-top {
    padding-top: 112px;
  }
}
.contact_forms.border-top:before {
  content: "";
  position: absolute;
  background-color: #E5E5E5;
  top: 0;
  height: 2px;
  width: 80%;
  left: 0;
  right: 0;
  margin: auto;
}
@media (min-width: 1440px) {
  .contact_forms.border-top:before {
    width: 1145px;
  }
}
.contact_forms.border-bottom {
  position: relative;
  padding-bottom: 64px;
}
@media (min-width: 1024px) {
  .contact_forms.border-bottom {
    padding-bottom: 88px;
  }
}
@media (min-width: 1440px) {
  .contact_forms.border-bottom {
    padding-bottom: 112px;
  }
}
.contact_forms.border-bottom:after {
  content: "";
  position: absolute;
  background-color: #E5E5E5;
  bottom: 0;
  height: 2px;
  width: 80%;
  left: 0;
  right: 0;
  margin: auto;
}
@media (min-width: 1440px) {
  .contact_forms.border-bottom:after {
    width: 1145px;
  }
}

.double-blocks {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.double-blocks__wrapper {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}
.has__bg-image .double-blocks__wrapper {
  padding-top: 64px;
}

@media (min-width: 640px) {
  .double-blocks__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 960px) {
  .double-blocks__wrapper {
    padding-bottom: 0;
  }
  .has__bg-image .double-blocks__wrapper {
    padding-top: 112px;
  }
}
@media (min-width: 1440px) {
  .double-blocks__wrapper {
    padding-left: 156px;
    padding-right: 156px;
  }
  .has__bg-image .double-blocks__wrapper {
    padding-top: 144px;
  }
}
.double-blocks__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  border-radius: 24px 24px 80px 24px;
}
.double-blocks__background--desktop {
  display: none;
  border-radius: 0 0 120px 0;
}
@media (min-width: 768px) {
  .double-blocks__background--desktop {
    display: block;
    bottom: 112px;
  }
}
.double-blocks__background--mobile {
  display: block;
}
@media (min-width: 768px) {
  .double-blocks__background--mobile {
    display: none;
  }
}
.double-blocks__text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
}
@media (min-width: 640px) {
  .double-blocks__text-wrapper {
    padding-left: 32px;
    padding-right: 32px;
    max-width: 816px;
  }
}
@media (min-width: 960px) {
  .double-blocks__text-wrapper {
    max-width: 1128px;
    padding-left: 72px;
    padding-right: 72px;
  }
}
@media (min-width: 1440px) {
  .double-blocks__text-wrapper {
    max-width: 1320px;
    padding-left: 88px;
    padding-right: 88px;
  }
}
.double-blocks__title {
  font-size: 28px;
  line-height: 32px;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 520px;
}
@media (min-width: 960px) {
  .double-blocks__title {
    font-size: 38px;
    line-height: 40px;
    max-width: 408px;
  }
}
@media (min-width: 1440px) {
  .double-blocks__title {
    max-width: 472px;
  }
}
.double-blocks__text {
  font-size: 14px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 520px;
}
@media (min-width: 960px) {
  .double-blocks__text {
    font-size: 16px;
    line-height: 28px;
    max-width: 408px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1440px) {
  .double-blocks__text {
    max-width: 472px;
    margin-bottom: 104px;
    font-size: 18px;
    line-height: 32px;
  }
}
@media (min-width: 640px) {
  .double-blocks__lifts {
    display: flex;
    justify-content: space-between;
    max-width: 816px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 960px) {
  .double-blocks__lifts {
    max-width: 1128px;
  }
}
@media (min-width: 1440px) {
  .double-blocks__lifts {
    max-width: 1320px;
  }
}
.double-blocks__lift {
  display: block;
  background: #fff;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.16);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.16);
}
.double-blocks__lift .card-link__link-icon {
  transition: background-color 0.15s ease;
}
[data-whatinput=initial] .double-blocks__lift:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatinput=initial] .double-blocks__lift:hover .card-link__link-icon {
  background-color: #cc2131;
}

[data-whatinput=keyboard][data-whatintent=mouse] .double-blocks__lift:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatinput=keyboard][data-whatintent=mouse] .double-blocks__lift:hover .card-link__link-icon {
  background-color: #cc2131;
}

[data-whatinput=mouse] .double-blocks__lift:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatinput=mouse] .double-blocks__lift:hover .card-link__link-icon {
  background-color: #cc2131;
}

[data-whatinput=initial] .double-blocks__lift:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}

[data-whatintent=keyboard] .double-blocks__lift:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}

[data-whatintent=mouse] .double-blocks__lift:focus {
  background-color: #fff !important;
}

@media (min-width: 640px) {
  .double-blocks__lift {
    width: calc(50% - 8px);
    margin: 0;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .double-blocks__lift {
    max-width: 648px;
    width: calc(50% - 12px);
  }
}
.double-blocks__lift-image {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  border-bottom-right-radius: 64px;
  margin-bottom: 32px;
}
@media (min-width: 960px) {
  .double-blocks__lift-image {
    height: 336px;
    margin-bottom: 40px;
    border-bottom-right-radius: 120px;
  }
}
@media (min-width: 1440px) {
  .double-blocks__lift-image {
    height: 400px;
    margin-bottom: 56px;
  }
}
.double-blocks__lift-text-wrapper {
  padding-top: 0;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 40px;
}
@media (min-width: 640px) {
  .double-blocks__lift-text-wrapper {
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 112px;
  }
}
@media (min-width: 960px) {
  .double-blocks__lift-text-wrapper {
    padding-left: 72px;
    padding-right: 72px;
  }
}
@media (min-width: 1440px) {
  .double-blocks__lift-text-wrapper {
    padding-left: 88px;
    padding-right: 88px;
  }
}
.double-blocks__lift-heading {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .double-blocks__lift-heading {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (min-width: 960px) {
  .double-blocks__lift-heading {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .double-blocks__lift-heading {
    font-size: 32px;
    line-height: 40px;
  }
}
.double-blocks__lift-text {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 48px;
  color: #4A3C31;
}
@media (min-width: 640px) {
  .double-blocks__lift-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
  }
}
@media (min-width: 960px) {
  .double-blocks__lift-text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 1440px) {
  .double-blocks__lift-text {
    font-size: 18px;
    line-height: 32px;
  }
}
.double-blocks__lift-linktext {
  color: #cc2131;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 640px) {
  .double-blocks__lift-linktext {
    position: absolute;
    bottom: 40px;
    right: 32px;
    left: 32px;
    text-align: right;
  }
}
@media (min-width: 960px) {
  .double-blocks__lift-linktext {
    right: 40px;
    left: 40px;
  }
}
@media (min-width: 1440px) {
  .double-blocks__lift-linktext {
    font-size: 20px;
    bottom: 48px;
    right: 88px;
    left: 88px;
  }
}
.form__wrapper {
  max-width: 920px;
  margin: auto;
}
.form__content {
  text-align: center;
}
.form__content > *:first-child {
  margin-top: 0;
}
.form__content h2,
.form__content p {
  max-width: 560px;
  margin: 0 auto;
}
.form__content h2 {
  margin-top: 32px;
  margin-bottom: 40px;
}
.form__content p {
  margin-top: 24px;
  margin-bottom: 24px;
}
.form__content .gform_wrapper form .gform_heading {
  text-align: center;
  max-width: 560px;
  margin: auto;
}
.form__content .gform_wrapper form .gform_heading .gform_title {
  margin-top: 32px;
  margin-bottom: 40px;
}
.form__content .gform_wrapper form .gform_heading .gform_description {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}
.form__content .gform_wrapper form .gform_body .gsection {
  border-bottom: none;
  margin-top: 0;
  margin-bottom: 40px;
}
.form__content .gform_wrapper form .gform_body .gsection_title {
  font-size: 18px;
  line-height: 24px;
}
.form__content .gform_wrapper form .gform_body .gfield {
  margin-top: 24px;
}
.form__content .gform_wrapper form .gform_body .gfield_label {
  color: #363636;
  font-size: 13px;
  line-height: 24px;
}
.form__content .gform_wrapper form .gform_body .gfield_label .gfield_required {
  color: inherit;
}
.form__content .gform_wrapper form .gform_body input,
.form__content .gform_wrapper form .gform_body textarea {
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  padding: 12px 24px !important;
  font-size: 14px;
  line-height: 24px;
}
.form__content .gform_wrapper form .gform_body input:focus,
.form__content .gform_wrapper form .gform_body textarea:focus {
  outline: 0;
  border-color: #363636;
}
.form__content .gform_wrapper form .gform_body input:not(:empty),
.form__content .gform_wrapper form .gform_body textarea:not(:empty) {
  color: #cc2131;
  border-color: #cc2131;
}
.form__content .gform_wrapper form .gform_body select {
  background-color: #F6F6F6;
  border: none;
  border-radius: 55px;
  padding: 16px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}
.form__content .gform_wrapper form .gform_body ul.gfield_checkbox input[type=checkbox] {
  margin-top: 0;
  visibility: hidden;
  position: relative;
}
.form__content .gform_wrapper form .gform_body ul.gfield_checkbox input[type=checkbox]:before {
  content: "";
  position: absolute;
  border: 2px solid #E5E5E5;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  visibility: visible;
}
.form__content .gform_wrapper form .gform_body ul.gfield_checkbox input[type=checkbox]:checked:before {
  border-color: #363636;
}
.form__content .gform_wrapper form .gform_body ul.gfield_checkbox input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  border-right: 2px solid #363636;
  border-bottom: 2px solid #363636;
  top: 3px;
  left: 5px;
  width: 6px;
  height: 8px;
  transform: rotate(45deg);
  visibility: visible;
}
.form__content .gform_wrapper form .gform_body ul.gfield_checkbox input[type=checkbox] + label {
  margin-left: 8px;
}
.form__content .gform_wrapper form .gform_body ul.gfield_radio input[type=radio] {
  margin-top: 0;
  visibility: hidden;
  position: relative;
}
.form__content .gform_wrapper form .gform_body ul.gfield_radio input[type=radio]:before {
  content: "";
  position: absolute;
  border: 2px solid #E5E5E5;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  visibility: visible;
}
.form__content .gform_wrapper form .gform_body ul.gfield_radio input[type=radio]:checked:before {
  border-color: #363636;
}
.form__content .gform_wrapper form .gform_body ul.gfield_radio input[type=radio]:checked:after {
  content: "";
  position: absolute;
  background-color: #363636;
  border-radius: 100%;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  visibility: visible;
}
.form__content .gform_wrapper form .gform_body ul.gfield_radio input[type=radio] + label {
  margin-left: 8px;
}
.form__content .gform_wrapper form .gform_body .gfield_error {
  background-color: transparent;
  border-top: none;
  border-bottom: none;
}
.form__content .gform_wrapper form .gform_body .gfield_error .gfield_label {
  color: #CF0072;
}
.form__content .gform_wrapper form .gform_body .gfield_error input,
.form__content .gform_wrapper form .gform_body .gfield_error textarea {
  border: 2px solid #CF0072 !important;
}
.form__content .gform_wrapper form .gform_footer .gform_button {
  background-color: #cc2131;
  color: #fff;
  height: 56px;
  border: 0 none;
  line-height: 1.2;
  border-radius: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.form__content .gform_wrapper .validation_error,
.form__content .gform_wrapper .validation_message {
  display: none;
}
.form__content .gform_confirmation_wrapper {
  background-color: #F6F6F6;
  border-radius: 24px 24px 64px 24px;
  padding: 32px 64px;
  max-width: 560px;
  margin: 48px auto;
}

.hero-with-cardlink {
  position: relative;
  margin-bottom: 56px;
}
@media (min-width: 960px) {
  .hero-with-cardlink {
    margin-bottom: 72px;
  }
}
.hero-with-cardlink__wrapper {
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  padding-top: 400px;
}
@media (min-width: 790px) {
  .hero-with-cardlink__wrapper {
    padding-top: 190px;
  }
}
@media (min-width: 960px) {
  .hero-with-cardlink__wrapper {
    padding: 100px 0 88px;
    padding-top: 50px;
    text-align: left;
    max-width: 936px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .hero-with-cardlink__wrapper {
    padding-top: 88px;
    padding-bottom: 124px;
  }
}
@media (min-width: 1440px) {
  .hero-with-cardlink__wrapper {
    max-width: 1320px;
    padding-top: 88px;
    padding-bottom: 88px;
  }
}
.hero-with-cardlink__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  border-bottom-right-radius: 80px;
}
.hero-with-cardlink__background--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero-with-cardlink__background--desktop {
    display: block;
    height: 400px;
  }
}
@media (min-width: 960px) {
  .hero-with-cardlink__background--desktop {
    height: auto;
  }
}
.hero-with-cardlink__background--mobile {
  display: block;
  height: 400px;
  bottom: auto;
}
@media (min-width: 768px) {
  .hero-with-cardlink__background--mobile {
    display: none;
  }
}
.hero-with-cardlink__title {
  font-size: 34px;
  line-height: 40px;
  position: absolute;
  top: 100px;
  left: 16px;
  right: 16px;
  margin: 0;
  max-width: 464px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .hero-with-cardlink__title {
    max-width: 420px;
    top: 148px;
    left: 48px;
    right: auto;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .hero-with-cardlink__title {
    font-size: 60px;
    line-height: 64px;
    margin-bottom: 24px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .hero-with-cardlink__title {
    font-size: 68px;
    line-height: 72px;
  }
}
.hero-with-cardlink__text {
  font-size: 16px;
  line-height: 28px;
  padding-top: 0;
  margin: 0 auto 32px;
  position: relative;
  max-width: 464px;
}
@media (min-width: 960px) {
  .hero-with-cardlink__text {
    font-size: 18px;
    line-height: 28px;
    margin-left: 0;
    margin-right: 0;
    grid-column: 1/1;
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .hero-with-cardlink__text {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 48px;
  }
}
.hero-with-cardlink__link {
  margin-bottom: 56px;
  position: relative;
}
@media (min-width: 960px) {
  .hero-with-cardlink__link {
    margin-bottom: 0;
  }
}
.hero-with-cardlink__cardlink {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 960px) {
  .hero-with-cardlink__cardlink {
    max-width: 480px;
    width: calc(50% - 80px);
    position: absolute;
    bottom: 80px;
    left: calc(50% + 40px);
  }
}
@media (min-width: 1440px) {
  .hero-with-cardlink__cardlink {
    width: 536px;
    max-width: 100%;
    position: relative;
    bottom: 150px;
    left: 0;
  }
}
.hero-with-cardlink__cardlink__image {
  height: 200px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .hero-with-cardlink__cardlink__image {
    height: 240px;
  }
}
@media (min-width: 960px) {
  .hero-with-cardlink__cardlink__image {
    margin-bottom: 56px;
  }
}
@media (min-width: 1440px) {
  .hero-with-cardlink__cardlink__image {
    height: 280px;
    margin-bottom: 64px;
  }
}
@media (min-width: 640px) {
  .hero-with-cardlink__cardlink__text-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 960px) {
  .hero-with-cardlink__cardlink__text-wrapper {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 1440px) {
  .hero-with-cardlink__cardlink__text-wrapper {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.hero-with-cardlink__cardlink__title-wrapper {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 24px;
}
@media (min-width: 1440px) {
  .hero-with-cardlink__cardlink__title-wrapper {
    font-size: 32px;
    line-height: 40px;
  }
}
.hero-with-cardlink__cardlink__logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  position: absolute;
  right: 24px;
  top: 160px;
}
@media (min-width: 640px) {
  .hero-with-cardlink__cardlink__logo {
    width: 108px;
    height: 108px;
    top: 186px;
    right: 64px;
  }
}
@media (min-width: 1440px) {
  .hero-with-cardlink__cardlink__logo {
    width: 136px;
    height: 136px;
    top: 212px;
  }
}
.hero-with-cardlink__cardlink__link {
  padding-bottom: 48px;
}
@media (min-width: 640px) {
  .hero-with-cardlink__cardlink__link {
    padding-bottom: 56px;
  }
}
@media (min-width: 960px) {
  .hero-with-cardlink__cardlink__link {
    padding-bottom: 88px;
  }
}
.hero-with-cardlink__cardlink__miniheading {
  font-size: 14px;
  line-height: 24px;
  color: #cc2131;
  display: block;
  margin-bottom: 8px;
}
@media (min-width: 1440px) {
  .hero-with-cardlink__cardlink__miniheading {
    font-size: 16px;
  }
}
.hero-with-cardlink__cardlink__text {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
}
@media (min-width: 1440px) {
  .hero-with-cardlink__cardlink__text {
    font-size: 18px;
  }
}

.hero-with-image {
  background-color: #F6F6F6;
  border-radius: 0 0 64px 24px;
  padding-top: 80px;
}
@media (min-width: 960px) {
  .hero-with-image {
    border-radius: 0;
    padding-top: 152px;
  }
}
@media (min-width: 1440px) {
  .hero-with-image {
    padding-top: 172px;
  }
}
.hero-with-image__wrapper {
  max-width: 648px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (min-width: 960px) {
  .hero-with-image__wrapper {
    display: flex;
    max-width: 1760px;
    padding-left: 32px;
    padding-right: 32px;
    min-height: 424px;
  }
}
@media (min-width: 1440px) {
  .hero-with-image__wrapper {
    margin-bottom: 88px;
    min-height: 504px;
  }
}
.hero-with-image__text-wrapper {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 40px;
  max-width: 496px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 960px) {
  .hero-with-image__text-wrapper {
    width: 50%;
    order: 1;
    padding-top: 40px;
    max-width: 674px;
    align-self: center;
    padding-right: 72px;
    padding-left: 48px;
  }
}
@media (min-width: 1440px) {
  .hero-with-image__text-wrapper {
    padding-left: 96px;
  }
}
.hero-with-image__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 34px;
  line-height: 40px;
}
@media (min-width: 960px) {
  .hero-with-image__title {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 1440px) {
  .hero-with-image__title {
    font-size: 68px;
    line-height: 72px;
  }
}
.hero-with-image__text {
  font-size: 16px;
  line-height: 28px;
  margin-top: 24px;
}
@media (min-width: 960px) {
  .hero-with-image__text {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .hero-with-image__text {
    font-size: 20px;
    line-height: 32px;
    max-width: 672px;
  }
}
.hero-with-image__link-wrapper {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 960px) {
  .hero-with-image__link-wrapper {
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .hero-with-image__link-wrapper {
    margin-top: 48px;
  }
}
.hero-with-image__link {
  margin-top: 0;
}
.hero-with-image__image {
  position: relative;
  display: block;
  border-radius: 0 0 64px 24px;
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  .hero-with-image__image {
    width: 50%;
    order: 2;
    object-fit: cover;
    top: auto;
    margin: 0;
    border-radius: 24px 24px 120px 24px;
  }
}

.hero-with-map {
  background-color: #F6F6F6;
  position: relative;
  width: 100%;
  text-align: center;
}
@media (max-width: 959px) {
  .hero-with-map:after {
    content: "";
    position: absolute;
    background-color: #fff;
    bottom: 0;
    height: 24px;
    left: 0;
    right: 0;
  }
}
@media (min-width: 960px) {
  .hero-with-map {
    margin-bottom: 40px;
  }
}
.hero-with-map__wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 0 auto -64px;
  text-align: left;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-with-map__wrapper {
    padding: 0 16px;
    margin-bottom: -40px;
  }
}
@media (min-width: 960px) {
  .hero-with-map__wrapper {
    padding: 64px 16px 0;
  }
}
@media (min-width: 1024px) {
  .hero-with-map__wrapper {
    max-width: 1192px;
    padding: 64px 32px 0;
  }
}
@media (min-width: 1440px) {
  .hero-with-map__wrapper {
    max-width: 1320px;
  }
}
.hero-with-map__content {
  padding: 56px 16px 64px;
}
@media (min-width: 960px) {
  .hero-with-map__content {
    width: 42.5%;
    padding: 0 32px 32px 16px;
    float: left;
  }
}
@media (min-width: 1440px) {
  .hero-with-map__content {
    padding: 0 88px;
  }
}
.hero-with-map__content h1 {
  margin: 0;
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .hero-with-map__content h1 {
    font-size: 44px;
    line-height: 48px;
  }
}
.hero-with-map__content p {
  position: relative;
  margin: 40px 0 0;
  padding-left: 48px;
  font-size: 16px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .hero-with-map__content p {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (min-width: 1024px) {
  .hero-with-map__content p {
    padding-left: 56px;
  }
}
.hero-with-map__content span {
  display: block;
  margin-top: 32px;
  font-size: 14px;
  line-height: 24px;
}
.hero-with-map__content svg.icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  width: 24px;
  height: 24px;
}
.hero-with-map__google-maps {
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (min-width: 960px) {
  .hero-with-map__google-maps {
    border-radius: 24px;
    height: 576px;
    width: 57.5%;
    float: right;
  }
}
.hero-with-map__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.hero-with-map__background--desktop {
  display: none;
}
@media (min-width: 960px) {
  .hero-with-map__background--desktop {
    display: block;
  }
}

.hero {
  position: relative;
  padding-top: 0 !important;
}
.hero--light h1,
.hero--light p {
  color: #363636 !important;
}
.hero--dark h1,
.hero--dark p {
  color: #F6F6F6 !important;
  text-shadow: 0px 1px 23px rgba(0, 0, 0, 0.5019607843);
}
@media (min-width: 960px) {
  .hero.--wayfinder {
    display: inline-block;
    width: 100%;
  }
}
@media (min-width: 960px) {
  .hero.--wayfinder .hero__wrapper {
    margin-bottom: 72px;
  }
}
@media (min-width: 960px) {
  .hero.--wayfinder .hero__wrapper {
    margin-bottom: 144px;
  }
}
@media (min-width: 960px) {
  .hero.--horeca {
    margin-bottom: 300px !important;
  }
}
.hero__wrapper {
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  min-height: 33vh;
}
.hero__wrapper p {
  font-size: 16px;
  line-height: 20px;
  padding-top: 40px;
  margin-top: 0;
  position: relative;
  margin-bottom: 32px;
  max-width: 464px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 960px) {
  .hero__wrapper p {
    padding-top: 0;
    font-size: 18px;
    line-height: 23px;
    max-width: 500px;
    font-weight: 400;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .hero__wrapper p {
    font-size: 18px;
    line-height: 23px;
    max-width: 500px;
    font-weight: 400;
  }
}
@media (min-width: 960px) {
  .hero__wrapper {
    text-align: left;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding: 120px 0 120px 16px;
  }
  .--wayfinder .hero__wrapper {
    padding-top: 184px;
    padding-bottom: 104px;
    position: relative;
  }
}
@media (min-width: 1024px) {
  .hero__wrapper {
    padding: 120px 0 120px;
  }
  .--wayfinder .hero__wrapper {
    padding-top: 224px;
    padding-bottom: 124px;
  }
}
@media (min-width: 1440px) {
  .hero__wrapper {
    max-width: 1140px;
  }
  .--wayfinder .hero__wrapper {
    padding-bottom: 144px;
  }
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  border-bottom-right-radius: 80px;
}
.hero__background--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero__background--desktop {
    display: block;
    height: 400px;
  }
}
@media (min-width: 960px) {
  .hero__background--desktop {
    height: auto;
  }
}
.hero__background--mobile {
  display: block;
  height: 400px;
  bottom: auto;
}
@media (min-width: 768px) {
  .hero__background--mobile {
    display: none;
  }
}
.hero__title {
  font-size: 27px;
  line-height: 32px;
  top: 100px;
  left: 16px;
  right: 16px;
  margin: 0;
  max-width: 464px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (min-width: 768px) {
  .hero__title {
    max-width: 420px;
    left: 48px;
    right: auto;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .hero__title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 24px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    max-width: 464px;
  }
}
@media (min-width: 1440px) {
  .hero__title {
    max-width: 500px;
  }
}
.hero__text {
  font-size: 16px;
  line-height: 28px;
  padding-top: 40px;
  margin-top: 0;
  position: relative;
  margin-bottom: 32px;
  max-width: 464px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 960px) {
  .hero__text {
    padding-top: 0;
    font-size: 18px;
    line-height: 28px;
    max-width: 464px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 1440px) {
  .hero__text {
    font-size: 20px;
    line-height: 32px;
    max-width: 672px;
  }
}
.hero__link {
  position: relative;
  margin-bottom: 56px;
}
@media (min-width: 960px) {
  .hero__link {
    margin-bottom: 0;
  }
}
.hero__wayfinder {
  padding: 0 16px 0 16px;
  width: 100%;
  max-width: 1192px;
}
@media (min-width: 960px) {
  .hero__wayfinder {
    position: absolute;
    bottom: -144px;
    left: 50%;
    transform: translateX(-50%);
  }
  .--horeca .hero__wayfinder {
    bottom: -300px;
  }
}
@media (min-width: 1440px) {
  .hero__wayfinder {
    max-width: 1384px;
  }
}
.hero__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  max-width: 1384px;
}
@media (min-width: 960px) {
  .hero__cards {
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-bottom: 32px;
  }
}
.hero__cards .card-link {
  max-width: none;
  width: 100%;
}
@media (min-width: 960px) {
  .hero__cards .card-link {
    max-width: 360px;
    margin-bottom: 0;
  }
  .hero__cards .card-link + .card-link {
    margin-left: 16px;
  }
}

.icon-columns__wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0 16px;
  border-radius: 24px 24px 64px 24px;
  width: 100%;
  max-width: 1672px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .icon-columns__wrapper {
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .icon-columns__wrapper {
    max-width: 1128px;
    padding: 0 48px;
  }
}
@media (min-width: 1280px) {
  .icon-columns__wrapper {
    max-width: 1336px;
    padding: 0 100px;
    border-radius: 24px 24px 120px 24px;
  }
}
@media (min-width: 1440px) {
  .icon-columns__wrapper {
    max-width: 1672px;
    padding: 0 220px;
  }
}
.icon-columns__content {
  position: relative;
}
.icon-columns__title {
  margin: 0 auto 48px;
  max-width: 520px;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .icon-columns__title {
    margin-bottom: 56px;
    max-width: 720px;
    font-size: 32px;
    line-height: 40px;
  }
}
.icon-columns__columns {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1410px;
  margin: auto;
  padding: 0;
}
.icon-columns__columns-item {
  max-width: 480px;
  width: 100%;
  padding: 0 0 64px;
  text-align: center;
}
.icon-columns__columns-item:last-child {
  padding-bottom: 0;
}
@media (min-width: 640px) {
  .icon-columns__columns-item {
    width: calc(50% - 32px);
    margin: 0 16px;
    text-align: left;
  }
  .icon-columns__columns-item:nth-last-child(2) {
    padding-bottom: 0;
  }
}
@media (min-width: 960px) {
  .icon-columns__columns-item {
    width: calc(50% - 80px);
    margin: 0 40px;
  }
}
@media (min-width: 960px) {
  .icon-columns__columns[data-columns="3"] li {
    width: calc(33.3333333333% - 60px);
    margin: 0 30px;
  }
  .icon-columns__columns[data-columns="3"] li:nth-last-child(3) {
    padding-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .icon-columns__columns[data-columns="3"] li {
    width: calc(33.3333333333% - 90px);
    margin: 0 45px;
  }
}
.icon-columns__columns__icon {
  display: block;
  margin: 0 auto 24px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@media (min-width: 640px) {
  .icon-columns__columns__icon {
    margin: 0 0 32px;
  }
}
@media (min-width: 768px) {
  .icon-columns__columns__icon {
    width: 72px;
    height: 72px;
  }
}
.icon-columns__columns__title {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .icon-columns__columns__title.medium {
    font-size: 24px;
    line-height: 32px;
  }
}
.icon-columns__columns__text {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .icon-columns__columns__text.medium {
    font-size: 18px;
    line-height: 32px;
  }
}
.icon-columns__columns__link {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .icon-columns__columns__link {
    margin-top: 48px;
  }
}
.icon-columns.theme__grey-bg, .icon-columns.has__background-image {
  padding: 0;
}
@media (min-width: 640px) {
  .icon-columns.theme__grey-bg, .icon-columns.has__background-image {
    padding: 0 16px;
  }
}
@media (min-width: 1024px) {
  .icon-columns.theme__grey-bg, .icon-columns.has__background-image {
    padding: 0 32px;
  }
}
.icon-columns.theme__grey-bg .icon-columns__wrapper, .icon-columns.has__background-image .icon-columns__wrapper {
  background-color: #F6F6F6;
  padding: 60px 16px 80px;
}
@media (min-width: 1440px) {
  .icon-columns.theme__grey-bg .icon-columns__wrapper, .icon-columns.has__background-image .icon-columns__wrapper {
    padding-top: 104px;
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .icon-columns.theme__grey-bg-mobile .icon-columns__wrapper, .icon-columns.has__background-image-mobile .icon-columns__wrapper {
    padding-bottom: 200px;
  }
}
.icon-columns__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.icon-columns__background--desktop {
  display: none;
}
@media (min-width: 768px) {
  .icon-columns__background--desktop {
    display: block;
  }
}
.icon-columns__background--mobile {
  display: block;
}
@media (min-width: 768px) {
  .icon-columns__background--mobile {
    display: none;
  }
}

.image-and-text-wide {
  padding: 0;
}
@media (min-width: 640px) {
  .image-and-text-wide {
    padding: 0 16px;
  }
}
@media (min-width: 1024px) {
  .image-and-text-wide {
    padding: 0 32px;
  }
}
.image-and-text-wide__wrapper {
  position: relative;
  background-color: #F6F6F6;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-radius: 24px 24px 64px 24px;
  overflow: hidden;
}
@media (min-width: 960px) {
  .image-and-text-wide__wrapper {
    max-width: 1128px;
  }
}
@media (min-width: 1280px) {
  .image-and-text-wide__wrapper {
    max-width: 1336px;
    padding: 0;
    border-radius: 24px 24px 120px 24px;
  }
}
@media (min-width: 1440px) {
  .image-and-text-wide__wrapper {
    max-width: 1672px;
  }
}
.image-and-text-wide__wrapper.has__bg-image, .image-and-text-wide__wrapper.has__bg-image-mobile {
  background-size: cover;
  background-position: center;
  padding-bottom: 240px;
}
.image-and-text-wide__content {
  display: inline-block;
  position: relative;
}
@media (min-width: 768px) {
  .image-and-text-wide__content {
    display: flex;
  }
  .image-and-text-wide__content.align-text-left {
    flex-direction: row;
  }
  .image-and-text-wide__content.align-text-right {
    flex-direction: row-reverse;
  }
}
.image-and-text-wide div.txt-wrapper {
  width: 100%;
  padding: 64px 16px 48px;
}
@media (min-width: 480px) {
  .image-and-text-wide div.txt-wrapper {
    padding: 64px 64px 48px 32px;
  }
}
@media (min-width: 768px) {
  .image-and-text-wide div.txt-wrapper {
    width: 55%;
    padding: 64px 32px 48px 48px;
  }
  .image-and-text-wide div.txt-wrapper + .txt-wrapper {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .image-and-text-wide div.txt-wrapper {
    padding: 64px 48px 80px 64px;
  }
}
@media (min-width: 1280px) {
  .image-and-text-wide div.txt-wrapper {
    padding: 124px 84px 124px 176px;
  }
}
@media (min-width: 1440px) {
  .image-and-text-wide div.txt-wrapper {
    padding: 104px 100px 104px 260px;
  }
}
.image-and-text-wide div.txt-wrapper + .txt-wrapper {
  padding: 0 16px 240px;
}
@media (min-width: 480px) {
  .image-and-text-wide div.txt-wrapper + .txt-wrapper {
    padding: 0 64px 240px 32px;
  }
}
@media (min-width: 768px) {
  .image-and-text-wide div.txt-wrapper + .txt-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 88px 48px 32px;
  }
}
@media (min-width: 1024px) {
  .image-and-text-wide div.txt-wrapper + .txt-wrapper {
    padding-left: 48px;
    padding-right: 104px;
  }
}
@media (min-width: 1280px) {
  .image-and-text-wide div.txt-wrapper + .txt-wrapper {
    padding-left: 84px;
    padding-right: 224px;
  }
}
@media (min-width: 1440px) {
  .image-and-text-wide div.txt-wrapper + .txt-wrapper {
    padding-left: 100px;
    padding-right: 280px;
  }
}
.image-and-text-wide div.txt-wrapper h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  .image-and-text-wide div.txt-wrapper h2 {
    font-size: 38px;
    line-height: 40px;
  }
}
@media (min-width: 1440px) {
  .image-and-text-wide div.txt-wrapper h2 {
    font-size: 38px;
    line-height: 40px;
  }
}
.image-and-text-wide div.txt-wrapper p {
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .image-and-text-wide div.txt-wrapper p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 1440px) {
  .image-and-text-wide div.txt-wrapper p {
    font-size: 18px;
    line-height: 32px;
  }
}
.image-and-text-wide div.txt-wrapper a {
  margin-top: 16px;
  height: auto;
  line-height: 1.2;
  padding: 16px 32px;
}
@media (min-width: 1024px) {
  .image-and-text-wide div.txt-wrapper a {
    margin-top: 32px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.image-and-text-wide div.txt-wrapper svg.icon-quote {
  margin-bottom: 16px;
  width: 32px;
  height: 25px;
}
@media (min-width: 1024px) {
  .image-and-text-wide div.txt-wrapper svg.icon-quote {
    margin-bottom: 32px;
    width: 48px;
    height: 38px;
  }
}
.image-and-text-wide div.txt-wrapper svg.icon-quote > path {
  fill: #cc2131;
}
.image-and-text-wide div.txt-wrapper blockquote {
  margin: 0;
  padding: 0;
  color: #cc2131;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .image-and-text-wide div.txt-wrapper blockquote {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .image-and-text-wide div.txt-wrapper blockquote {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 768px) {
  .image-and-text-wide .align-text-right .txt-wrapper {
    padding-left: 32px;
    padding-right: 48px;
  }
}
@media (min-width: 1024px) {
  .image-and-text-wide .align-text-right .txt-wrapper {
    padding-right: 64px;
    padding-left: 48px;
  }
}
@media (min-width: 1280px) {
  .image-and-text-wide .align-text-right .txt-wrapper {
    padding-right: 176px;
    padding-left: 84px;
  }
}
@media (min-width: 1440px) {
  .image-and-text-wide .align-text-right .txt-wrapper {
    padding-right: 260px;
    padding-left: 100px;
  }
}
@media (min-width: 768px) {
  .image-and-text-wide .align-text-right .txt-wrapper + .txt-wrapper {
    padding-right: 32px;
    padding-left: 88px;
  }
}
@media (min-width: 1024px) {
  .image-and-text-wide .align-text-right .txt-wrapper + .txt-wrapper {
    padding-right: 48px;
    padding-left: 104px;
  }
}
@media (min-width: 1280px) {
  .image-and-text-wide .align-text-right .txt-wrapper + .txt-wrapper {
    padding-right: 84px;
    padding-left: 224px;
  }
}
@media (min-width: 1440px) {
  .image-and-text-wide .align-text-right .txt-wrapper + .txt-wrapper {
    padding-right: 100px;
    padding-left: 280px;
  }
}
.image-and-text-wide div.img-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .image-and-text-wide div.img-wrapper {
    width: 45%;
  }
}
.image-and-text-wide div.img-wrapper img {
  display: block;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .image-and-text-wide div.img-wrapper img {
    height: 100%;
  }
}
.image-and-text-wide__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.image-and-text-wide__background--desktop {
  display: none;
}
@media (min-width: 768px) {
  .image-and-text-wide__background--desktop {
    display: block;
  }
}
.image-and-text-wide__background--mobile {
  display: block;
}
@media (min-width: 768px) {
  .image-and-text-wide__background--mobile {
    display: none;
  }
}

.image-and-text__wrapper {
  max-width: 648px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.--grey-bg .image-and-text__wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #F6F6F6;
  border-radius: 24px;
}
@media (min-width: 960px) {
  .--grey-bg .image-and-text__wrapper:before {
    left: 32px;
    right: 32px;
    padding-top: 40px;
    border-bottom-left-radius: 120px;
  }
}

@media (min-width: 960px) {
  .--grey-bg.--content-left .image-and-text__wrapper:before {
    border-bottom-right-radius: 120px;
    border-bottom-left-radius: 24px;
  }
}

@media (min-width: 960px) {
  .image-and-text__wrapper {
    display: flex;
    max-width: 1192px;
    padding-left: 32px;
    padding-right: 32px;
    min-height: 424px;
  }
}
@media (min-width: 1440px) {
  .image-and-text__wrapper {
    max-width: 1384px;
    min-height: 504px;
  }
}
.image-and-text__image {
  border-radius: 0 24px 0 80px;
  height: 304px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 48px;
  position: relative;
}
@media (min-width: 640px) {
  .image-and-text__image {
    border-radius: 30px 0 30px 0;
  }
}
@media (min-width: 960px) {
  .image-and-text__image {
    margin-right: 24px;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 32px;
    width: calc(50% - 32px - 12px);
    height: 100%;
    border-radius: 30px 0 30px 0;
  }
}
.--content-left .image-and-text__image {
  border-radius: 24px 0 80px 0;
}
@media (min-width: 640px) {
  .--content-left .image-and-text__image {
    border-radius: 30px 0 30px 0;
  }
}
@media (min-width: 960px) {
  .--content-left .image-and-text__image {
    margin-right: 0;
    margin-left: 24px;
    left: auto;
    right: 32px;
    border-radius: 30px 0 30px 0;
  }
}

.image-and-text__image-contain {
  object-fit: contain;
}
.image-and-text__content {
  padding: 16px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}
.image-and-text__content img {
  width: 70%;
  margin: 0 auto 20px;
}
@media (min-width: 960px) {
  .image-and-text__content {
    width: 50%;
    margin-left: 50%;
    padding-left: 84px;
    padding-top: 8px;
    padding-bottom: 8px;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .image-and-text__content {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-right: 72px;
  }
}
@media (min-width: 1440px) {
  .image-and-text__content {
    padding-left: 100px;
    padding-right: 88px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media (max-width: 959px) {
  .--grey-bg .image-and-text__content {
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
  }
}
@media (min-width: 960px) and (max-width: 1279px) {
  .--grey-bg .image-and-text__content {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 1280px) {
  .--grey-bg .image-and-text__content {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-right: 56px;
  }
}
@media (min-width: 1440px) {
  .--grey-bg .image-and-text__content {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 80px;
  }
}

@media (min-width: 960px) {
  .--content-left .image-and-text__content {
    padding-left: 16px;
    padding-right: 84px;
    margin-left: 0;
    margin-right: 50%;
  }
}
@media (min-width: 1280px) {
  .--content-left .image-and-text__content {
    padding-left: 72px;
    padding-right: 84px;
  }
}
@media (min-width: 1440px) {
  .--content-left .image-and-text__content {
    padding-right: 100px;
    padding-left: 88px;
  }
}

@media (min-width: 960px) and (max-width: 1279px) {
  .--content-left.--grey-bg .image-and-text__content {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 64px;
  }
}
@media (min-width: 1280px) {
  .--content-left.--grey-bg .image-and-text__content {
    padding-left: 72px;
    padding-right: 84px;
  }
}
@media (min-width: 1440px) {
  .--content-left.--grey-bg .image-and-text__content {
    padding-right: 100px;
    padding-left: 88px;
  }
}

.image-and-text__title {
  margin-top: 0;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 24px;
}
@media (min-width: 960px) {
  .image-and-text__title {
    font-size: 38px;
    line-height: 40px;
  }
}
@media (min-width: 1440px) {
  .image-and-text__title {
    font-size: 44px;
    line-height: 48px;
  }
}
.image-and-text__text {
  margin-top: 0;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 48px;
}
@media (min-width: 960px) {
  .image-and-text__text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 1440px) {
  .image-and-text__text {
    font-size: 18px;
    line-height: 32px;
  }
}
.image-and-text__text a {
  color: #cc2131;
  text-decoration: underline;
}
.image-and-text__text a:hover {
  color: rgb(227.6392405063, 85.8607594937, 99.1265822785);
  text-decoration: none;
}
.image-and-text__link {
  display: inline-flex;
  align-self: center;
}
@media (min-width: 960px) {
  .image-and-text__link {
    align-self: flex-start;
  }
}
.jobs_listing * {
  border: 0 none !important;
}
.jobs_listing .wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1024px;
}
.jobs_listing h2 {
  text-align: center;
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 960px) {
  .jobs_listing h2 {
    font-size: 44px;
    line-height: 48px;
    padding-bottom: 48px;
    margin-bottom: 0;
  }
}
.jobs_listing .row {
  padding: 8px 30px 8px 30px;
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  border-radius: 8px;
}
@media (min-width: 960px) {
  .jobs_listing .row {
    display: flex;
    justify-content: space-evenly;
    font-size: 18px;
    line-height: 32px;
  }
}
.jobs_listing .row:nth-child(odd) {
  background: #f6f6f6;
}
@media (min-width: 960px) {
  .jobs_listing .row:nth-child(odd) {
    background: transparent;
  }
  .jobs_listing .row:nth-child(even) {
    background: #f6f6f6;
    border-radius: 8px;
  }
}
.jobs_listing .row.legend {
  display: none;
  font-weight: 600;
}
@media (min-width: 960px) {
  .jobs_listing .row.legend {
    display: flex;
  }
}
.jobs_listing .row li {
  list-style: none;
  flex-basis: 20%;
}
.jobs_listing .row li .inline-label {
  font-weight: 600;
}
@media (min-width: 960px) {
  .jobs_listing .row li .inline-label {
    display: none;
  }
}
.jobs_listing .row li a {
  color: #a8b400;
  text-decoration: underline;
}
.jobs_listing .row li a:hover {
  text-decoration: none;
  opacity: 0.9;
}

.latest {
  position: relative;
  text-align: center;
  max-width: 1384px;
  margin-left: auto;
  margin-right: auto;
}
.latest__title {
  font-size: 20px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 32px;
}
@media (min-width: 960px) {
  .latest__title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) {
  .latest__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.latest .card-link-list-with-swiper__wrapper {
  justify-content: space-between;
}
@media (min-width: 960px) {
  .latest .card-link-list-with-swiper__wrapper .card-link {
    max-width: calc(33.3333333333% - 16px);
  }
}

@media (min-width: 1024px) {
  #content section.wrapper.link-list {
    max-width: 1128px;
  }
}
@media (min-width: 1440px) {
  #content section.wrapper.link-list {
    max-width: 1320px;
  }
}

.link-list__wrapper {
  width: 100%;
  display: inline-block;
}
.link-list__title {
  font-size: 24px;
  line-height: 32px;
  width: 100%;
  display: block;
  text-align: center;
}
@media (min-width: 1024px) {
  .link-list__title {
    padding-right: 24px;
    max-width: 288px;
    float: left;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .link-list__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.link-list__links {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media (min-width: 1024px) {
  .link-list__links {
    justify-content: flex-start;
  }
}
.link-list__links .links-item {
  position: relative;
  display: inline-block;
  margin: 8px 16px 8px 0;
}
.link-list__links__icon {
  display: none;
}
.link-list__links__link {
  display: block;
  background-color: #F6F6F6;
  padding: 12px 40px;
  border-radius: 32px;
  color: #cc2131;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (min-width: 1440px) {
  .link-list__links__link {
    font-size: 16px;
    line-height: 24px;
  }
}
.link-list__links__link:after {
  content: " ›";
}
.link-list__links__link:hover, .link-list__links__link:focus {
  background-color: #cc2131 !important;
  color: #fff;
}
@media (min-width: 1024px) {
  .link-list-with-icons .link-list__wrapper {
    max-width: 1008px;
    margin: 0 auto;
    display: block;
  }
}
.link-list-with-icons .link-list__title {
  float: none;
  text-align: center;
  max-width: 100%;
  margin-top: 0;
}
.link-list-with-icons .link-list__links {
  width: 100%;
}
.link-list-with-icons .link-list__links .links-item {
  margin: 14px 8px;
  width: 100%;
  max-width: 320px;
  transition: transform 0.15s ease;
}
@media (min-width: 640px) {
  .link-list-with-icons .link-list__links .links-item {
    flex-basis: calc(50% - 16px);
  }
}
@media (min-width: 1024px) {
  .link-list-with-icons .link-list__links .links-item {
    margin: 14px 12px;
    flex-basis: calc(33.3333333333% - 24px);
  }
}
.link-list-with-icons .link-list__links .links-item:hover, .link-list-with-icons .link-list__links .links-item:focus {
  transform: translateY(-8px);
}
.link-list-with-icons .link-list__links__icon {
  display: block;
  position: absolute;
  top: 0;
  left: 32px;
  bottom: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}
.link-list-with-icons .link-list__links__link {
  background-color: #fff !important;
  padding: 28px 48px 28px 88px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  text-align: right;
  transition: box-shadow 0.15s ease;
}
.link-list-with-icons .link-list__links__link:after {
  content: "";
}
.link-list-with-icons .link-list__links__link:hover, .link-list-with-icons .link-list__links__link:focus {
  color: #394A58;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.16);
}

.linklist-with-cardlink {
  width: 100%;
}
.linklist-with-cardlink__wrapper {
  margin: auto;
  padding: 0 16px;
  box-sizing: content-box;
  max-width: 792px;
}
@media (min-width: 640px) {
  .linklist-with-cardlink__wrapper {
    padding: 0 32px;
  }
}
@media (min-width: 1440px) {
  .linklist-with-cardlink__wrapper {
    max-width: 1320px;
  }
}
.linklist-with-cardlink__title {
  margin: 0 auto 24px;
  width: 100%;
  max-width: 640px;
  font-size: 26px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .linklist-with-cardlink__title {
    font-size: 38px;
    line-height: 40px;
  }
}
@media (min-width: 1280px) {
  .linklist-with-cardlink__title {
    font-size: 44px;
    line-height: 48px;
  }
}
.linklist-with-cardlink__text {
  margin: 0 auto 24px;
  width: 100%;
  max-width: 640px;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .linklist-with-cardlink__text {
    font-size: 18px;
    line-height: 32px;
  }
}
.linklist-with-cardlink__text a {
  color: #cc2131;
  text-decoration: underline;
}
.linklist-with-cardlink__text a:hover {
  color: rgb(227.6392405063, 85.8607594937, 99.1265822785);
  text-decoration: none;
}
.linklist-with-cardlink__links {
  margin: 48px 0 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 960px) {
  .linklist-with-cardlink__links {
    margin-top: 68px;
  }
}
.linklist-with-cardlink__links .card-link {
  margin: 12px;
  min-width: 240px;
  max-width: 240px;
}
.linklist-with-cardlink__links .card-link__image {
  object-fit: contain;
}
.linklist-with-cardlink__links .card-link__heading {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 6px;
}

section.newsletter-cta .wrapper {
  position: relative;
  text-align: center;
  padding: 58px 24px 96px 24px;
  margin: 0 16px 0 16px;
  max-width: 1192px;
}
@media (min-width: 768px) {
  section.newsletter-cta .wrapper {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: auto;
    grid-column-gap: 32px;
    align-items: center;
    padding: 72px 0 88px 0;
    text-align: left;
  }
}
@media (min-width: 1344px) {
  section.newsletter-cta .wrapper {
    margin: 0 auto 0 auto;
  }
}
section.newsletter-cta .wrapper.dark {
  background-color: #363636;
  border-radius: 24px;
}
section.newsletter-cta .wrapper.dark .icon {
  stroke: #bdc823;
}
section.newsletter-cta .wrapper.dark .title,
section.newsletter-cta .wrapper.dark .text {
  color: #ffffff;
}
section.newsletter-cta .wrapper.light {
  background-color: #f6f6f6;
  border-top: 1px solid #363636;
  border-bottom: 1px solid #363636;
  color: #4a3c31;
}
section.newsletter-cta .wrapper.light .icon {
  stroke: #a8b400;
}
section.newsletter-cta .wrapper.light .title {
  color: #4a3c31;
}
section.newsletter-cta .wrapper.light .text {
  color: #363636;
}
section.newsletter-cta .wrapper .icon {
  margin: 0 0 42px 0;
}
@media (min-width: 768px) {
  section.newsletter-cta .wrapper .icon {
    grid-column: 2/span 1;
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  section.newsletter-cta .wrapper .texts {
    grid-column: 3/span 5;
    grid-row: 1/span 2;
  }
}
section.newsletter-cta .wrapper .texts .title {
  margin: 0 0 16px 0;
  font-size: 20px;
  line-height: 24px;
}
section.newsletter-cta .wrapper .texts .text {
  margin: 0 0 40px 0;
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 768px) {
  section.newsletter-cta .wrapper .btn {
    grid-column: 9/span 3;
    grid-row: 1/span 2;
  }
}
section.newsletter-cta .wrapper .hilight {
  position: absolute;
  bottom: 0;
  left: 24px;
  display: block;
  background-color: #bdc823;
  width: calc(100% - 48px);
  height: 8px;
  border-radius: 10px;
}

@media (min-width: 960px) {
  .paragraph--wide .paragraph__wrapper {
    display: flex;
    max-width: 1192px;
    padding-left: 32px;
    padding-right: 32px;
    min-height: 100px;
  }
}
@media (min-width: 1440px) {
  .paragraph--wide .paragraph__wrapper {
    max-width: 1384px;
    min-height: 100px;
  }
}
.paragraph--flexrow.paragraph--wide .paragraph__wrapper {
  max-width: 1192px;
  flex-direction: column;
}
.paragraph--flexrow.paragraph--wide .paragraph__wrapper .paragraph__title {
  margin-top: 30px;
}
@media (min-width: 960px) {
  .paragraph--flexrow.paragraph--wide .paragraph__wrapper {
    flex-direction: row;
  }
  .paragraph--flexrow.paragraph--wide .paragraph__wrapper .paragraph__title {
    margin-top: 0;
  }
}
.paragraph--flexrow .paragraph__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.paragraph--flexrow .paragraph__title {
  flex: 1 1 50%;
  padding: 0 30px;
}
.paragraph--flexrow .paragraph__text {
  flex: 1 1 50%;
  padding: 60px 30px;
}
.paragraph--fancy .paragraph__title {
  color: #cc2131;
  margin: 0 auto auto;
  text-align: center;
  position: relative;
  width: auto;
}
.paragraph--fancy .paragraph__title:after, .paragraph--fancy .paragraph__title:before {
  content: "";
  position: absolute;
  width: 10vw;
  min-width: 100px;
  max-width: 150px;
  height: 4px;
  top: 50%;
  background-color: #cc2131;
}
.paragraph--fancy .paragraph__title:before {
  left: 0;
  transform: translateX(-120%) translateY(-50%);
}
.paragraph--fancy .paragraph__title:after {
  right: 0;
  transform: translateX(120%) translateY(-50%);
}
.paragraph__wrapper {
  margin: 0 auto;
  max-width: 660px;
  display: flex;
  flex-direction: column;
}
.paragraph__title {
  font-size: 27px;
  line-height: 35px;
  margin-top: 0;
  margin-left: 16px;
  margin-right: 16px;
}
@media (min-width: 960px) {
  .paragraph__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.paragraph__title--green {
  color: #BDC823;
}
.paragraph__text {
  font-size: 18px;
  line-height: 32px;
  margin: 0 16px 0 16px;
}
.paragraph__text a {
  color: #cc2131;
  text-decoration: underline;
}
.paragraph__text a:hover {
  text-decoration: none;
}
.paragraph__link {
  margin-top: 32px;
  margin-left: 16px;
  margin-right: 16px;
}
@media (min-width: 960px) {
  .paragraph__link {
    margin-top: 48px;
  }
}

.persons_list {
  overflow: hidden;
  padding: 0 16px 0 16px;
}
@media (min-width: 1071px) {
  .persons_list {
    overflow: visible;
  }
}
.persons_list .wrapper {
  max-width: 976px;
  margin: 0 auto;
}
@media (min-width: 1071px) {
  .persons_list .wrapper {
    max-width: 1320px;
  }
}
.persons_list .title {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 24px;
}
@media (min-width: 800px) {
  .persons_list .title {
    margin-bottom: 64px;
    text-align: center;
    font-size: 44px;
    line-height: 48px;
  }
}
.persons_list .hidden {
  display: none !important;
}
@media (max-width: 800px) {
  .persons_list .hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 801px) {
  .persons_list .hidden-desktop {
    display: none !important;
  }
}
.persons_list .button-wrapper {
  display: block;
  margin: 0 auto 48px auto;
  text-align: center;
  position: relative;
}
@media (min-width: 800px) {
  .persons_list .button-wrapper {
    margin-bottom: 112px;
  }
}
.persons_list .button-wrapper .filter-button {
  margin-right: 48px;
}
.persons_list .button-wrapper .filter-button + .filter-button {
  margin-right: 0;
}
.persons_list .mobile-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  opacity: 0;
  border: 0 none;
  color: transparent;
}
.persons_list .mobile-dropdown.visible {
  opacity: 1;
}
.persons_list .filter-button {
  display: inline-block;
  position: relative;
  padding-right: 120px;
}
.persons_list .filter-button:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 4px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 5px;
  border-top: 2px solid #a8b400;
}
.persons_list .filter-button:before {
  content: "";
  position: absolute;
  right: 29px;
  top: 0px;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 20px;
  border-right: 2px solid #a8b400;
}
.persons_list .filter-button.selected:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 4px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 5px;
  border-top: 2px solid #a8b400;
}
.persons_list .filter-button.selected:before {
  content: none;
}
.persons_list .mobile-dropdown-current.selected {
  position: relative;
  width: 100%;
  margin: 0;
}
.persons_list .mobile-dropdown-current.selected:after {
  content: "";
  position: absolute;
  right: 20px;
  top: -5px;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-right: 2px solid #bdc823;
  border-bottom: 2px solid #bdc823;
  transform: rotateZ(45deg);
}
@media (min-width: 1071px) {
  .persons_list .region {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1071px) {
  .persons_list .swiper-container {
    position: relative;
    width: 580px;
    right: -16px;
    left: auto;
  }
}
@media (min-width: 1440px) {
  .persons_list .swiper-container {
    width: 865px;
  }
}
.persons_list .swiper-container .swiper-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@media (min-width: 1071px) {
  .persons_list .swiper-container .swiper-wrapper {
    flex-wrap: wrap;
    align-items: flex-start;
    min-width: 576px;
  }
}
.persons_list .swiper-slide {
  display: block;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 20px;
  width: 136px;
  height: 270px;
  position: relative;
}
@media (min-width: 1071px) {
  .persons_list .swiper-slide {
    width: 200px;
    height: 328px;
    margin-right: 88px;
  }
}
.persons_list .swiper-slide .image {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 136px;
  height: 128px;
  border-radius: 8px 8px 32px 8px;
  margin-bottom: 28px;
}
@media (min-width: 1071px) {
  .persons_list .swiper-slide .image {
    width: 200px;
    height: 184px;
  }
}
.persons_list .swiper-slide .icon {
  display: block;
  position: absolute;
  top: 112px;
  left: -16px;
  width: 32px;
  height: 32px;
  background-color: #cf0072;
  border-radius: 24px;
  font-size: 16px;
  line-height: 34px;
  text-align: center;
  color: #ffffff;
}
.persons_list .swiper-slide .icon.none {
  display: none;
}
@media (min-width: 1071px) {
  .persons_list .swiper-slide .icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
    line-height: 50px;
    top: 152px;
    left: -24px;
  }
}
.persons_list .swiper-slide p,
.persons_list .swiper-slide a {
  margin: 0;
  color: #363636;
}
.persons_list .swiper-slide p.name,
.persons_list .swiper-slide a.name {
  font-weight: 600;
}
.persons_list .pagination {
  display: flex;
  width: 100%;
  justify-content: center;
  height: 16px;
  margin-bottom: 56px;
}
@media (min-width: 1071px) {
  .persons_list .pagination {
    display: none;
  }
}
.persons_list .pagination-clickable {
  margin-top: 24px;
}
.persons_list .pagination .bullet {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #D7D3C7;
  display: block;
  margin-left: 4px;
  margin-right: 4px;
}
.persons_list .pagination .bullet:focus {
  background-color: #D7D3C7 !important;
}
[data-whatintent=keyboard] .persons_list .pagination .bullet:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
}

.persons_list .pagination .bullet.active {
  background-color: #8A7A50;
}
.persons_list .pagination .bullet.active:focus {
  background-color: #8A7A50 !important;
}
.persons_list .pagination.lock {
  display: none;
}
.persons_list .map {
  display: block;
  margin: 0 auto;
  object-fit: contain;
  width: 100%;
  max-width: 448px;
}
@media (min-width: 1071px) {
  .persons_list .map {
    width: 448px;
    height: 688px;
    object-fit: none;
    margin: 0;
  }
}

.post-list__title {
  text-align: center;
  margin: 0 auto 24px auto;
}
@media (min-width: 1322px) {
  .post-list__title {
    font-size: 32px;
    line-height: 40px;
    display: flex;
    width: 1322px;
    margin: 0 auto 16px auto;
  }
}
.post-list .link.wrapper {
  display: flex;
  justify-content: center;
  margin: 8px auto 0;
}
@media (min-width: 1322px) {
  .post-list .link.wrapper {
    justify-content: flex-end;
    width: 1322px;
    text-align: center;
  }
}
.post-list .link.wrapper .link {
  display: inline-block;
  background-color: #F6F6F6;
  padding: 12px 40px;
  border-radius: 32px;
  color: #cc2131;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (min-width: 1322px) {
  .post-list .link.wrapper .link {
    font-size: 16px;
    line-height: 24px;
  }
}
.post-list .link.wrapper .link:after {
  content: " ›";
}
.post-list .link.wrapper .link:hover, .post-list .link.wrapper .link:focus {
  background-color: #cc2131 !important;
  color: #fff;
}
@media (min-width: 1322px) {
  .post-list .card-link-list-with-swiper__wrapper {
    display: flex;
    width: 1322px;
    justify-content: flex-start;
    margin: 0 auto;
  }
}

.releases-listing {
  margin: 0 16px;
}
@media (min-width: 480px) {
  .releases-listing {
    margin: 0 65px;
  }
}
@media (min-width: 1024px) {
  .releases-listing {
    margin: 0 174px;
  }
}
.releases-listing__title {
  font-size: 26px;
  line-height: 32px;
  margin: 0 auto 24px;
}
@media (min-width: 960px) {
  .releases-listing__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.releases-listing__item {
  display: none;
}
@media (min-width: 1440px) {
  .releases-listing__item {
    max-width: 80%;
  }
}
.releases-listing__item.js-visible {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .releases-listing__item .item__text-container {
    max-width: 70%;
  }
}
.releases-listing__item .item__date {
  font-size: 15px;
  color: #4A3C31;
}
.releases-listing__item .item__title {
  font-size: 30px;
  color: #cc2131;
  font-size: 18px;
  line-height: 1.1;
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .releases-listing__item .item__title {
    font-size: 24px;
    line-height: 1.1;
  }
}
@media (min-width: 1024px) {
  .releases-listing__item .item__title {
    font-size: 28px;
    line-height: 1.1;
  }
}
.releases-listing__item .item__title:hover {
  text-decoration: underline;
}
.releases-listing__item .item__text {
  color: #000;
}
.releases-listing__item .item__link {
  display: block;
}
@media (min-width: 668px) {
  .releases-listing__item .item__link {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
}
.releases-listing__item .item__image {
  border-radius: 8px 8px 8px 8px;
}
@media (min-width: 668px) {
  .releases-listing__item .item__image {
    max-width: 250px;
    margin-left: 30px;
  }
}
@media (min-width: 769px) {
  .releases-listing__item .item__image {
    margin-left: 50px;
  }
}
.releases-listing__button {
  margin-top: 30px;
}
.releases-listing__button.js-visible {
  display: block;
}

.text_slides_wide {
  padding: 0;
}
@media (min-width: 640px) {
  .text_slides_wide {
    padding: 0 16px;
  }
}
@media (min-width: 1024px) {
  .text_slides_wide {
    padding: 0 32px;
  }
}
.text_slides_wide__wrapper {
  position: relative;
  background-color: #F6F6F6;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-radius: 24px 24px 64px 24px;
  overflow: hidden;
}
@media (min-width: 960px) {
  .text_slides_wide__wrapper {
    max-width: 1128px;
  }
}
@media (min-width: 1280px) {
  .text_slides_wide__wrapper {
    max-width: 1336px;
    padding: 0;
    border-radius: 24px 24px 120px 24px;
  }
}
@media (min-width: 1440px) {
  .text_slides_wide__wrapper {
    max-width: 1672px;
  }
}
.text_slides_wide__wrapper.has__bg-image, .text_slides_wide__wrapper.has__bg-image-mobile {
  background-size: cover;
  background-position: center;
  padding-bottom: 240px;
}
.text_slides_wide__content {
  display: inline-block;
  position: relative;
}
@media (min-width: 768px) {
  .text_slides_wide__content {
    display: flex;
  }
  .text_slides_wide__content.align-text-left {
    flex-direction: row;
  }
  .text_slides_wide__content.align-text-right {
    flex-direction: row-reverse;
  }
}
.text_slides_wide div.txt-wrapper {
  width: 100%;
  max-width: 100vw;
  padding: 64px 16px 48px;
}
@media (min-width: 480px) {
  .text_slides_wide div.txt-wrapper {
    padding: 64px 64px 48px 32px;
  }
}
@media (min-width: 768px) {
  .text_slides_wide div.txt-wrapper {
    width: 55%;
    padding: 64px 32px 48px 48px;
  }
}
@media (min-width: 1024px) {
  .text_slides_wide div.txt-wrapper {
    padding: 64px 48px 80px 64px;
  }
}
@media (min-width: 1280px) {
  .text_slides_wide div.txt-wrapper {
    padding: 124px 84px 124px 176px;
  }
}
@media (min-width: 1440px) {
  .text_slides_wide div.txt-wrapper {
    padding: 104px 100px 104px 260px;
  }
}
.text_slides_wide div.txt-wrapper h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  .text_slides_wide div.txt-wrapper h2 {
    font-size: 38px;
    line-height: 40px;
  }
}
@media (min-width: 1440px) {
  .text_slides_wide div.txt-wrapper h2 {
    font-size: 38px;
    line-height: 40px;
  }
}
.text_slides_wide div.txt-wrapper p {
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .text_slides_wide div.txt-wrapper p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 1440px) {
  .text_slides_wide div.txt-wrapper p {
    font-size: 18px;
    line-height: 32px;
  }
}
.text_slides_wide div.txt-wrapper a {
  margin-top: 16px;
  background-color: #cc2131;
  height: auto;
  line-height: 1.2;
  padding: 16px 32px;
}
@media (min-width: 1024px) {
  .text_slides_wide div.txt-wrapper a {
    margin-top: 32px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.text_slides_wide .swiper-container {
  display: block;
  width: 100%;
  padding: 0 16px 240px;
  overflow: hidden;
}
@media (min-width: 480px) {
  .text_slides_wide .swiper-container {
    padding: 0 64px 240px 32px;
  }
}
@media (min-width: 768px) {
  .text_slides_wide .swiper-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    padding: 64px 88px 48px 32px;
  }
}
@media (min-width: 1024px) {
  .text_slides_wide .swiper-container {
    padding-left: 48px;
    padding-right: 104px;
  }
}
@media (min-width: 1280px) {
  .text_slides_wide .swiper-container {
    padding: 124px 224px 124px 84px;
  }
}
@media (min-width: 1440px) {
  .text_slides_wide .swiper-container {
    padding: 104px 280px 104px 100px;
  }
}
.text_slides_wide .swiper-container .swiper-wrapper {
  display: flex;
  width: 100%;
}
.text_slides_wide .swiper-container .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
}
.text_slides_wide .swiper-container .swiper-wrapper .swiper-slide .title {
  margin-top: 0;
  margin-bottom: 24px;
  color: #cc2131;
  font-size: 20px;
  line-height: 24px;
  width: calc(100vw - 32px);
}
@media (min-width: 480px) {
  .text_slides_wide .swiper-container .swiper-wrapper .swiper-slide .title {
    width: calc(100vw - 64px);
  }
}
@media (min-width: 640px) {
  .text_slides_wide .swiper-container .swiper-wrapper .swiper-slide .title {
    width: calc(100vw - 96px);
  }
}
@media (min-width: 768px) {
  .text_slides_wide .swiper-container .swiper-wrapper .swiper-slide .title {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .text_slides_wide .swiper-container .swiper-wrapper .swiper-slide .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.text_slides_wide .swiper-container .swiper-wrapper .swiper-slide .text {
  font-size: 12px;
  line-height: 20px;
  width: calc(100vw - 32px);
}
@media (min-width: 480px) {
  .text_slides_wide .swiper-container .swiper-wrapper .swiper-slide .text {
    width: calc(100vw - 64px);
  }
}
@media (min-width: 640px) {
  .text_slides_wide .swiper-container .swiper-wrapper .swiper-slide .text {
    width: calc(100vw - 96px);
  }
}
@media (min-width: 768px) {
  .text_slides_wide .swiper-container .swiper-wrapper .swiper-slide .text {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .text_slides_wide .swiper-container .swiper-wrapper .swiper-slide .text {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (min-width: 768px) {
  .text_slides_wide .align-text-right .txt-wrapper {
    padding-left: 32px;
    padding-right: 48px;
  }
}
@media (min-width: 1024px) {
  .text_slides_wide .align-text-right .txt-wrapper {
    padding-right: 64px;
    padding-left: 48px;
  }
}
@media (min-width: 1280px) {
  .text_slides_wide .align-text-right .txt-wrapper {
    padding-right: 176px;
    padding-left: 84px;
  }
}
@media (min-width: 1440px) {
  .text_slides_wide .align-text-right .txt-wrapper {
    padding-right: 260px;
    padding-left: 100px;
  }
}
@media (min-width: 768px) {
  .text_slides_wide .align-text-right .txt-wrapper + .swiper-container {
    padding-right: 32px;
    padding-left: 88px;
  }
}
@media (min-width: 1024px) {
  .text_slides_wide .align-text-right .txt-wrapper + .swiper-container {
    padding-right: 48px;
    padding-left: 104px;
  }
}
@media (min-width: 1280px) {
  .text_slides_wide .align-text-right .txt-wrapper + .swiper-container {
    padding-right: 84px;
    padding-left: 224px;
  }
}
@media (min-width: 1440px) {
  .text_slides_wide .align-text-right .txt-wrapper + .swiper-container {
    padding-right: 100px;
    padding-left: 280px;
  }
}
.text_slides_wide__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.text_slides_wide__background--desktop {
  display: none;
}
@media (min-width: 768px) {
  .text_slides_wide__background--desktop {
    display: block;
  }
}
.text_slides_wide__background--mobile {
  display: block;
}
@media (min-width: 768px) {
  .text_slides_wide__background--mobile {
    display: none;
  }
}
.text_slides_wide .pagination-wrapper {
  width: calc(100vw - 32px);
}
@media (min-width: 480px) {
  .text_slides_wide .pagination-wrapper {
    width: calc(100vw - 64px);
  }
}
@media (min-width: 640px) {
  .text_slides_wide .pagination-wrapper {
    width: calc(100vw - 96px);
  }
}
@media (min-width: 768px) {
  .text_slides_wide .pagination-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.text_slides_wide .pagination-wrapper .pagination {
  display: inline-block;
  width: calc(100% - 45px);
  vertical-align: middle;
}
@media (min-width: 768px) {
  .text_slides_wide .pagination-wrapper .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.text_slides_wide .pagination-wrapper .pagination .bullet,
.text_slides_wide .pagination-wrapper .pagination .text-slides-wide__slides__pagination-bullet {
  background: #d7d3c7;
  display: block;
  width: 8px;
  height: 8px;
  margin: 4px 8px 4px 0;
  border-radius: 8px;
  float: left;
}
@media (min-width: 768px) {
  .text_slides_wide .pagination-wrapper .pagination .bullet,
  .text_slides_wide .pagination-wrapper .pagination .text-slides-wide__slides__pagination-bullet {
    float: none;
  }
}
.text_slides_wide .pagination-wrapper .pagination .bullet-active, .text_slides_wide .pagination-wrapper .pagination .bullet.active,
.text_slides_wide .pagination-wrapper .pagination .text-slides-wide__slides__pagination-bullet-active,
.text_slides_wide .pagination-wrapper .pagination .text-slides-wide__slides__pagination-bullet.active {
  background: #8a7a50;
}
.text_slides_wide .pagination-wrapper .button-next {
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  background-color: #cc2131;
  border-radius: 50%;
}

.triple-blocks-aligned {
  position: relative;
  max-width: 1336px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 1440px) {
  .triple-blocks-aligned {
    max-width: 1672px;
  }
}
.triple-blocks-aligned .wrapper {
  position: relative;
  overflow: hidden;
}
.triple-blocks-aligned.right-aligned .triple-blocks-aligned__background {
  border-radius: 24px 24px 24px 64px;
}
@media (min-width: 768px) {
  .triple-blocks-aligned.right-aligned .triple-blocks-aligned__background {
    border-radius: 24px 24px 24px 120px;
  }
}
@media (min-width: 960px) {
  .triple-blocks-aligned.right-aligned .wayfinder .card-link-list-with-swiper__wrapper {
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .triple-blocks-aligned.right-aligned .txt-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 176px 176px 0 176px;
  }
}
@media (min-width: 1920px) {
  .triple-blocks-aligned.right-aligned .txt-wrapper {
    padding: 264px 264px 0 16px;
  }
}
.triple-blocks-aligned .txt-wrapper {
  margin: 0 auto 32px auto;
  padding: 275px 16px 0 16px;
}
@media (min-width: 768px) {
  .triple-blocks-aligned .txt-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 auto 88px auto;
    padding: 176px 16px 0 176px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks-aligned .txt-wrapper {
    margin-bottom: 56px;
  }
}
@media (min-width: 1920px) {
  .triple-blocks-aligned .txt-wrapper {
    padding: 264px 16px 0 264px;
  }
}
.triple-blocks-aligned .txt-wrapper .button-wrapper {
  display: block;
  max-width: 472px;
  width: 100%;
}
.triple-blocks-aligned .wayfinder {
  position: relative;
}
.triple-blocks-aligned .wayfinder .card-link-list-with-swiper {
  padding: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .triple-blocks-aligned .wayfinder .card-link-list-with-swiper {
    display: flex;
    flex-direction: column;
    padding: 0 56px;
    overflow: visible;
  }
}
@media (min-width: 1920px) {
  .triple-blocks-aligned .wayfinder .card-link-list-with-swiper {
    padding: 0 104px;
  }
}
@media (min-width: 1920px) {
  .triple-blocks-aligned .wayfinder .card-link-list-with-swiper {
    padding: 0 176px;
  }
}
.triple-blocks-aligned .wayfinder .card-link-list-with-swiper__wrapper {
  flex-direction: row;
  justify-content: flex-start;
}
.triple-blocks-aligned .wayfinder .card-link {
  width: 264px;
  height: 400px;
}
@media (min-width: 960px) {
  .triple-blocks-aligned .wayfinder .card-link {
    margin-bottom: 0;
  }
  .triple-blocks-aligned .wayfinder .card-link + .card-link {
    margin-left: 24px;
  }
}
@media (min-width: 1024px) {
  .triple-blocks-aligned .wayfinder .card-link {
    width: 312px;
    height: 472px;
  }
}
.triple-blocks-aligned__background {
  background-color: #F6F6F6;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 10px;
  background-size: cover;
  background-position: center;
  border-radius: 24px 24px 64px 24px;
}
@media (min-width: 768px) {
  .triple-blocks-aligned__background {
    border-radius: 24px 24px 120px 24px;
  }
}
.triple-blocks-aligned__background--desktop {
  display: none;
}
@media (min-width: 768px) {
  .triple-blocks-aligned__background--desktop {
    display: block;
  }
}
.triple-blocks-aligned__background--mobile {
  display: block;
}
@media (min-width: 768px) {
  .triple-blocks-aligned__background--mobile {
    display: none;
  }
}
.triple-blocks-aligned__title {
  font-size: 28px;
  line-height: 32px;
  position: relative;
  top: auto;
  margin: 0 0 24px;
  width: 100%;
  max-width: 472px;
}
@media (min-width: 1024px) {
  .triple-blocks-aligned__title {
    font-size: 34px;
    line-height: 40px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks-aligned__title {
    font-size: 44px;
    line-height: 48px;
  }
}
.triple-blocks-aligned__text {
  font-size: 14px;
  line-height: 24px;
  position: relative;
  margin: 0 0 32px;
  width: 100%;
  max-width: 472px;
}
@media (min-width: 1024px) {
  .triple-blocks-aligned__text {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks-aligned__text {
    margin-bottom: 48px;
    font-size: 18px;
    line-height: 32px;
  }
}
.triple-blocks-aligned__link {
  max-width: 472px;
  position: relative;
  top: auto;
  left: 0;
  right: 16px;
  margin: 0;
}

.triple-blocks {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.triple-blocks__wrapper {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}
.has__bg-image .triple-blocks__wrapper {
  padding-top: 0;
  padding-bottom: 112px;
}

@media (min-width: 960px) {
  .triple-blocks__wrapper {
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 0;
  }
  .has__bg-image .triple-blocks__wrapper {
    padding-top: 0;
  }
}
@media (min-width: 1440px) {
  .triple-blocks__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .has__bg-image .triple-blocks__wrapper {
    padding-top: 0;
  }
}
.triple-blocks__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.triple-blocks__background--desktop {
  display: none;
}
@media (min-width: 768px) {
  .triple-blocks__background--desktop {
    display: block;
    top: 112px;
  }
}
.triple-blocks__background--mobile {
  display: block;
}
@media (min-width: 768px) {
  .triple-blocks__background--mobile {
    display: none;
  }
}
.triple-blocks__text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  text-align: center;
}
@media (min-width: 640px) {
  .triple-blocks__text-wrapper {
    padding-left: 32px;
    padding-right: 32px;
    max-width: 816px;
  }
}
@media (min-width: 960px) {
  .triple-blocks__text-wrapper {
    max-width: 1128px;
    padding-left: 72px;
    padding-right: 72px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks__text-wrapper {
    max-width: 1320px;
    padding-left: 88px;
    padding-right: 88px;
  }
}
.triple-blocks__title {
  font-size: 26px;
  line-height: 32px;
  margin: 0 auto 24px;
  max-width: 520px;
}
@media (min-width: 960px) {
  .triple-blocks__title {
    font-size: 32px;
    line-height: 40px;
    max-width: 408px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks__title {
    max-width: 472px;
  }
}
.triple-blocks__text {
  font-size: 14px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 520px;
}
@media (min-width: 960px) {
  .triple-blocks__text {
    font-size: 16px;
    line-height: 28px;
    max-width: 408px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks__text {
    max-width: 472px;
    margin-bottom: 104px;
    font-size: 18px;
    line-height: 32px;
  }
}
.triple-blocks__lifts {
  margin-top: 56px;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
@media (min-width: 640px) {
  .triple-blocks__lifts {
    max-width: 816px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .triple-blocks__lifts {
    display: flex;
  }
}
@media (min-width: 960px) {
  .triple-blocks__lifts {
    max-width: 1128px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks__lifts {
    max-width: 1320px;
  }
}
.triple-blocks__lift {
  display: block;
  background: #fff;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.16);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  text-align: center;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  flex: 1 1 25%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.16);
  border-radius: 30px 0 30px 0;
}
.triple-blocks__lift .card-link__link-icon {
  transition: background-color 0.15s ease;
}
[data-whatinput=initial] .triple-blocks__lift:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatinput=initial] .triple-blocks__lift:hover .card-link__link-icon {
  background-color: #cc2131;
}

[data-whatinput=keyboard][data-whatintent=mouse] .triple-blocks__lift:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatinput=keyboard][data-whatintent=mouse] .triple-blocks__lift:hover .card-link__link-icon {
  background-color: #cc2131;
}

[data-whatinput=mouse] .triple-blocks__lift:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}
[data-whatinput=mouse] .triple-blocks__lift:hover .card-link__link-icon {
  background-color: #cc2131;
}

[data-whatinput=initial] .triple-blocks__lift:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}

[data-whatintent=keyboard] .triple-blocks__lift:focus {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  transform: translateY(-8px);
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.16);
}

[data-whatintent=mouse] .triple-blocks__lift:focus {
  background-color: #fff !important;
}

@media (min-width: 640px) {
  .triple-blocks__lift {
    width: calc(50% - 8px);
    text-align: left;
  }
}
@media (min-width: 768px) {
  .triple-blocks__lift {
    margin: 0;
  }
}
@media (min-width: 960px) {
  .triple-blocks__lift {
    max-width: 424px;
    width: calc(50% - 12px);
  }
}
.triple-blocks__lift-image {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  border-bottom-right-radius: 30px;
  margin-bottom: 32px;
}
@media (min-width: 960px) {
  .triple-blocks__lift-image {
    height: 224px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks__lift-image {
    height: 224px;
  }
}
.triple-blocks__lift-text-wrapper {
  padding-top: 0;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 40px;
  text-align: center;
}
@media (min-width: 640px) {
  .triple-blocks__lift-text-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks__lift-text-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 64px;
  }
}
.triple-blocks__lift-heading {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
  color: #363636;
}
@media (min-width: 960px) {
  .triple-blocks__lift-heading {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks__lift-heading {
    font-size: 20px;
    line-height: 24px;
  }
}
.triple-blocks__lift-text {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 48px;
  color: #4A3C31;
}
@media (min-width: 640px) {
  .triple-blocks__lift-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
  }
}
@media (min-width: 960px) {
  .triple-blocks__lift-text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 1440px) {
  .triple-blocks__lift-text {
    font-size: 18px;
    line-height: 32px;
  }
}
.triple-blocks__lift-icon {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 16px 0;
  width: 40px;
  height: 40px;
  background-color: #394A58;
}
.triple-blocks__lift:hover .triple-blocks__lift-icon, .triple-blocks__lift:focus .triple-blocks__lift-icon {
  background-color: #cc2131;
}
.triple-blocks-startwithtwo__lift:first-child {
  margin-left: 12vw !important;
}
@media (min-width: 1640px) {
  .triple-blocks-startwithtwo__lift:first-child {
    margin-left: 9vw !important;
  }
}
.triple-blocks-startwithtwo__lift:nth-child(2) {
  margin-right: 12vw !important;
}
@media (min-width: 1640px) {
  .triple-blocks-startwithtwo__lift:nth-child(2) {
    margin-right: 9vw !important;
  }
}
.wrapper--products .card-link {
  border-radius: 30px;
  border-bottom-left-radius: 0;
}
.wrapper--products .card-link__heading-nomargin {
  margin: 0;
}
.wrapper--products .card-link__extra_text {
  display: block;
  margin-bottom: 16px;
}
.wrapper--products .card-link__link {
  padding-top: 0;
}
.wrapper--products .card-link__link-icon {
  display: none;
}
.wrapper--products .card-link__image {
  height: 216px;
  padding: 20px 0;
  width: 100%;
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.banner {
  height: auto;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  justify-content: center;
  display: flex;
}
@media (min-width: 1024px) {
  .banner {
    height: 120px;
  }
}
.banner__wrapper {
  margin-top: 20vw;
  padding: 40px;
  display: flex;
  width: 100%;
  max-width: 1200px;
  border: 0;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media (min-width: 1024px) {
  .banner__wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.banner__content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .banner__content {
    flex-direction: row;
  }
}
.banner__content h2 {
  color: white;
  font-size: 45px;
}
@media (min-width: 1024px) {
  .banner__content h2 {
    padding-left: 25px;
  }
}
.banner__content .btn {
  font-size: 23px;
  font-weight: light;
  margin-right: 25px;
}
.banner__content--left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .banner__content--left {
    flex-direction: row;
  }
}
.banner__icon {
  height: 60%;
  display: flex;
}
.banner__icon img {
  width: auto;
  margin-left: 20px;
  padding: 20px;
  height: 30vw;
}
@media (min-width: 1024px) {
  .banner__icon img {
    height: 100px;
  }
}
.banner__image {
  margin-top: -20vw;
  order: -1;
  width: 80%;
  height: 100%;
}
@media (min-width: 1024px) {
  .banner__image {
    width: auto;
    order: 0;
    margin-top: 0;
  }
}

.fancyBullets ol {
  counter-reset: my-counter;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
.fancyBullets ol li {
  counter-increment: my-counter;
  background: #cc2131;
  width: 100%;
  padding: 40px 30px 40px 100px;
  font-size: 32px;
  color: white;
  margin: 0 auto 10px;
  font-weight: light;
  position: relative;
  border-radius: 0;
  text-align: center;
  border-top-left-radius: 20px;
  overflow: hidden;
  border-bottom-right-radius: 20px;
}
.fancyBullets ol li::before {
  width: 20%;
  position: absolute;
  content: counter(my-counter) "";
  color: white;
  font-weight: bold;
  margin-right: 10px;
  left: 0;
  font-size: 450%;
  top: 50%;
  transform: translateY(100%);
}
.fancyBullets ol::marker {
  background-color: red;
}

.footer__icon-link {
  margin-left: 34px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.footer__icon-link svg {
  width: 100%;
  height: 100%;
}
.footer__icon-link svg *,
.footer__icon-link svg path {
  fill: #cc2131 !important;
}

.images-in-row {
  display: flex;
}
.images-in-row__wrapper {
  display: flex;
  max-width: 980px;
  margin: 0 auto;
}
.images-in-row__images {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .images-in-row__images {
    flex-wrap: nowrap;
  }
}
.images-in-row__image {
  filter: grayscale(1);
}
.images-in-row__link {
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 10px;
  flex: 0 1 50%;
}
.images-in-row__link:hover .images-in-row__image {
  filter: grayscale(0);
}
@media (min-width: 1024px) {
  .images-in-row__link {
    flex: 1 1 100%;
  }
}

::-moz-selection {
  background: #cc2131;
  color: #ffffff;
}

::selection {
  background: #cc2131;
  color: #ffffff;
}

.grid-list .card-link {
  flex: 0 1 30% !important;
  max-width: 100% !important;
}
.grid-list .card-link-list__wrapper {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.grid-list .card-link__image-contain {
  object-fit: contain !important;
}

.people {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}
@media (min-width: 1024px) {
  .people {
    flex-direction: row;
  }
}
.people .person {
  flex: 0 1 30%;
}
.people .person a,
.people .person p {
  margin: 0;
  padding: 0;
  color: #000;
}
.people .person .job_title {
  color: #cc2131;
}
.people .person .name {
  margin: 10px 0 20px;
  font-size: 32px;
  font-weight: 900;
  color: #cc2131;
}
.people .person * {
  fill: #cc2131;
}

.difficulty-Easy .stars svg:first-child {
  fill: black;
}
.difficulty-Medium .stars svg:first-child, .difficulty-Medium .stars svg:nth-child(2) {
  fill: black;
}
.difficulty-Hard .stars svg:first-child, .difficulty-Hard .stars svg:nth-child(2), .difficulty-Hard .stars svg:nth-child(3) {
  fill: black;
}
.difficulty-VeryHard .stars svg:first-child, .difficulty-VeryHard .stars svg:nth-child(2), .difficulty-VeryHard .stars svg:nth-child(3), .difficulty-VeryHard .stars svg:nth-child(4) {
  fill: black;
}

ul.summary {
  display: flex !important;
  flex-direction: column;
}
ul.summary li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.advanced-product {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.advanced-product_image_wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
@media (min-width: 1024px) {
  .advanced-product_image_wrapper {
    flex-direction: row;
  }
}
.advanced-product_image_wrapper img {
  flex: 0 1 30%;
}
@media (min-width: 1024px) {
  .advanced-product_image_wrapper img {
    width: 30%;
  }
}
.advanced-product__content {
  flex: 1 1 70%;
}

.detailed-information {
  background-color: #F8F4F1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .detailed-information {
    flex-direction: row;
  }
}
.detailed-information div {
  padding: 20px;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}

.vertical_banners {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.vertical_banners__blocks {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .vertical_banners__blocks {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.vertical_banners__block {
  padding: 20px;
  border-top-left-radius: 20px;
  flex: 0 1 33.3333333333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.vertical_banners__block > img {
  margin: auto;
  width: 100%;
  padding: 20px;
}
@media (min-width: 1024px) {
  .vertical_banners__block > img {
    padding: 60px 20px 40px;
  }
}
.vertical_banners__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.vertical_banners__content > img {
  width: 80%;
}
.vertical_banners__title {
  color: white;
}

.btn--red {
  background-color: #cc2131 !important;
}
.btn--red:hover {
  background-color: rgb(160.1012658228, 25.8987341772, 38.4556962025) !important;
}
.btn--red:focus {
  background-color: rgb(138.1518987342, 22.3481012658, 33.1835443038) !important;
}
.btn--white {
  color: black !important;
  box-shadow: none !important;
}
.btn--white:hover {
  color: black !important;
  box-shadow: none !important;
  background-color: rgb(229.5, 229.5, 229.5) !important;
}
.btn--white:focus {
  color: black !important;
  box-shadow: none !important;
  background-color: rgb(216.75, 216.75, 216.75) !important;
}

.hero__background {
  border-top-left-radius: 80px;
}
.hero__title {
  text-transform: uppercase;
}
.hero__text {
  font-size: 18px !important;
  line-height: 25px !important;
  color: white !important;
}
/*
  h1,h2,h3,h4{
    font-family: "Futura PT", sans-serif;
  }

  */
.footer {
  background-color: #f8f8f8 !important;
  border-bottom: none !important;
  padding-top: 50px !important;
}
.footer__homelink {
  width: initial !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0 !important;
}
.footer__homelink .logos {
  display: flex;
  gap: 20px;
}
.footer__wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
}
.footer__wrapper > .logos {
  flex-direction: row;
}
.footer__top {
  width: 100%;
  display: flex;
  margin-bottom: 56px;
  align-items: flex-end;
}
.footer__sublink {
  flex-direction: column;
  display: flex;
  color: #cc2131;
}
.footer__sublink*, .footer__sublink a, .footer__sublink span {
  color: #cc2131;
}
.footer__sublink-item {
  color: #cc2131;
  line-height: 25px !important;
  white-space: nowrap;
  padding-left: 0 !important;
}
.footer .background-pattern.right {
  width: 100%;
  right: 0 !important;
  bottom: 90% !important;
  transform: translateY(100%) translateX(-30%) !important;
  max-width: 450px !important;
}
.footer .background-pattern.right path,
.footer .background-pattern.right g {
  fill: white;
}

.image-and-text-with-background .image-and-text__image {
  border-radius: 0 !important;
  height: 70% !important;
  object-fit: contain;
  margin: auto;
}
.image-and-text-with-background .image-and-text__content p {
  text-align: center;
}
.image-and-text-with-background .image-and-text__content .btn {
  margin: 0 auto;
}

.image-and-text__wrapper--pink-bg {
  background-color: #cc2131;
}
.image-and-text.--firstChild {
  margin-bottom: 0 !important;
}
.image-and-text.--firstChild .image-and-text__wrapper {
  border-top-left-radius: 30px;
}
.image-and-text.--lastChild {
  margin-top: 10px !important;
}
.image-and-text.--lastChild .image-and-text__wrapper {
  border-bottom-right-radius: 30px;
}

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