@charset "UTF-8";
/** basic styles */
.bounce {
  animation: bounce ease 1s;
  -webkit-animation: bounce ease 1s;
  -moz-animation: bounce ease 1s;
  -o-animation: bounce ease 1s;
  -ms-animation: bounce ease 1s;
}

.fade-in {
  animation: fadeIn ease 4s;
  -webkit-animation: fadeIn ease 4s;
  -moz-animation: fadeIn ease 4s;
  -o-animation: fadeIn ease 4s;
  -ms-animation: fadeIn ease 4s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(0deg);
  }
  85% {
    transform: rotate(5deg);
  }
  95% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fadeInRight {
  from {
    transform: translate(-10%, 0);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeInTop {
  from {
    transform: translate(0, -10%);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes bigBounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes smallBounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  2.5%, 5% {
    transform: scale3d(0.95, 0.95, 0.95) rotate3d(0, 0, 1, -7deg);
  }
  7.5%, 12.5%, 18.75%, 22.5% {
    transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, 7deg);
  }
  10%, 15%, 20% {
    transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, -7deg);
  }
  25%, 100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #00ad9c;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 20px auto;
}

@keyframes kenburnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  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 shakeX {
  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);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

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

@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-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);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-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);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

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

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

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

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

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

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

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

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

/* Flippers */
@-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;
  }
}
.animate__animated.animate__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);
  }
}
.animate__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);
  }
}
.animate__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;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  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 lightSpeedInRight {
  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);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  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 lightSpeedInLeft {
  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);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

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

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

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

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

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

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

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-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-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-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-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;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-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;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-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;
  }
}
.animate__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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-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);
  }
}
@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);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-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);
  }
}
@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);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/** mixins */
#content .frame-type-menu_sitemap_pages ul, #content .frame-type-menu_section_pages ul {
  padding: 0 0 20px 40px !important;
}
#content .frame-type-menu_sitemap_pages ul li, #content .frame-type-menu_section_pages ul li {
  margin: 0;
  padding: 0;
}
#content .frame-type-menu_sitemap_pages ul li a, #content .frame-type-menu_section_pages ul li a {
  text-decoration: none;
  color: #164194;
  display: block;
  padding: 10px 0;
}

/**  Accessibility */
.access-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px groove #000 !important;
  outline-offset: 3px;
  border-radius: 1px;
  transition: all 0.6s ease;
}

a:focus-visible {
  color: #164194;
}
a:focus-visible i.fa {
  color: #164194;
}
a:focus-visible img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  filter: brightness(1.2);
}
a:focus-visible #logo img {
  box-shadow: none;
}

.owl-carousel a.get-page:focus-visible {
  background-color: #b80e80;
  color: #fff;
  text-decoration: none;
  border-radius: 0 !important;
  outline: none;
}

nav ul li a:focus-visible {
  text-decoration: underline;
}

#header nav.service ul li a:focus-visible {
  background-color: #b80e80;
  color: #fff;
  text-decoration: none;
  border-radius: 0 !important;
}

nav.jump {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999999;
}
nav.jump ol {
  padding: 0;
}
nav.jump ol li {
  display: inline;
}
nav.jump ol li a:link,
nav.jump ol li a:visited,
nav.jump ol li a:hover {
  position: absolute;
  left: -400em;
  top: -50px;
  padding: 20px;
  outline: 3px groove #000 !important;
}
nav.jump ol li a:active,
nav.jump ol li a:focus-visible {
  background-color: #fff !important;
  color: #000 !important;
  font-weight: bold;
  left: 20px;
  top: 20px;
  box-shadow: 0 0 3px 5px rgba(0, 0, 0, 0.2);
}

#page.contrast-increase {
  --bg: $white;
  --text: $black;
  --bgBtn: rgb(179,71,0);
  background-color: var(--bg);
  color: var(--text);
}
#page.contrast-increase * h1, #page.contrast-increase * h2, #page.contrast-increase * h3, #page.contrast-increase * h4, #page.contrast-increase * h5, #page.contrast-increase * h6, #page.contrast-increase * p {
  color: var(--text) !important;
}
#page.contrast-increase * h1, #page.contrast-increase * h2, #page.contrast-increase * h3, #page.contrast-increase * h4, #page.contrast-increase * h5, #page.contrast-increase * h6 {
  font-weight: 600;
}
#page.contrast-increase .ce-teaser.t3tpl-color-3,
#page.contrast-increase .container.ce-carousel-content,
#page.contrast-increase #footer-top,
#page.contrast-increase #footer-service {
  background-color: var(--bg) !important;
  transition: all 0.6s ease;
}
#page.contrast-increase .slick-prev::before,
#page.contrast-increase .slick-next::before {
  color: var(--text) !important;
}
#page.contrast-increase .search-form .input-group .btn,
#page.contrast-increase .btn,
#page.contrast-increase .btn-basic,
#page.contrast-increase .btn.list {
  color: #fff;
  background-color: var(--bgBtn) !important;
  font-weight: 600;
}
#page.contrast-increase .nav.top ul.nav > li > a.fst:hover,
#page.contrast-increase .nav.top ul.nav > li.active > a.fst,
#page.contrast-increase .nav.top ul.nav ul.lvl-2.dropdown-menu {
  background-color: #b80e80 !important;
}
#page.contrast-increase img,
#page.contrast-increase svg {
  filter: contrast(1.5) brightness(1.2);
}
#page.contrast-increase section .carousel.header .carousel-inner .slidercontent * {
  font-weight: 600;
}
#page.contrast-increase section .carousel.header .carousel-inner .slidercontent .text {
  color: #fff !important;
}
#page.contrast-increase .carousel-control-prev {
  background-color: var(--bgBtn) !important;
  opacity: initial;
}
#page.contrast-increase .carousel-control-next {
  background-color: var(--bgBtn) !important;
  opacity: initial;
  color: #fff;
}

/** navigation */
nav.lang {
  position: absolute;
  top: 0;
  right: 0;
}
nav.lang ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
nav.lang li {
  padding: 0;
  margin: 0;
  text-indent: 0;
}
nav.lang li::before {
  content: "" !important;
  padding-right: 0 !important;
  display: initial !important;
  width: auto !important;
  text-align: center;
}
nav.lang ul {
  display: flex;
  justify-content: end;
  flex-direction: row;
}
nav.lang ul li {
  display: inline-block;
}
nav.lang ul li a {
  font-size: 21px;
  text-decoration: none;
  border-left: 1px solid #164194;
  margin-left: 10px !important;
  padding-left: 10px !important;
}
nav.lang ul li:first-child a {
  border: 0;
  margin-left: 0;
  padding-left: 0;
}

/* DROPDOWN MENU */
/* DROPDOWN MENU */
#page .slicknav_menu {
  display: none;
  transition: all 0.6s ease;
}
#page .slicknav_menu nav.service {
  transition: all 0.6s ease;
  display: none;
}

#page.nav-active .slicknav_menu {
  display: block;
}
#page.nav-active .slicknav_menu nav.service {
  display: block;
}

.slicknav_menu {
  *zoom: 1;
  z-index: 99;
  position: fixed;
  width: 100%;
  max-width: 440px;
  top: 80px;
  right: 0;
  box-sizing: border-box;
  padding: 0;
  -webkit-box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.2);
  background-color: #569782;
}
.slicknav_menu .slicknav_menutxt {
  display: none;
}
.slicknav_menu:before {
  content: " ";
  display: table;
}
.slicknav_menu:after {
  content: " ";
  display: table;
  clear: both;
}
.slicknav_menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.slicknav_menu li {
  padding: 0;
  margin: 0;
  text-indent: 0;
}
.slicknav_menu li::before {
  content: "" !important;
  padding-right: 0 !important;
  display: initial !important;
  width: auto !important;
  text-align: center;
}
.slicknav_menu nav.lang {
  right: initial;
  z-index: 11;
  top: 20px;
  left: 0;
}
.slicknav_menu nav.lang ul li a {
  color: #fff;
  border-color: #fff;
}
.slicknav_menu nav.quicklinks ul {
  padding: 30px 20px 20px 20px;
}
.slicknav_menu nav.quicklinks ul li a {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}
.slicknav_menu ul.slicknav_nav {
  color: #fff;
  padding: 0 20px 20px 20px;
  /* SOLUTION */
  /* The pseudo element has the same content and hover style, so it pre-sets the width of the element and visibility: hidden hides the pseudo element from actual view. */
}
.slicknav_menu ul.slicknav_nav li {
  display: block;
  position: relative;
  border-top: 1px solid #fff;
  padding: 0;
}
.slicknav_menu ul.slicknav_nav li:first-child {
  margin-top: 20px;
}
.slicknav_menu ul.slicknav_nav li:last-child {
  border-bottom: 0;
}
.slicknav_menu ul.slicknav_nav li.home {
  display: none;
}
.slicknav_menu ul.slicknav_nav li:last-child {
  border-bottom: 1px solid #fff;
}
.slicknav_menu ul.slicknav_nav li.current-menu-item > a,
.slicknav_menu ul.slicknav_nav li.current-menu-item > a > a,
.slicknav_menu ul.slicknav_nav li a:hover {
  color: #fff !important;
  transition: all 0.6s ease;
}
.slicknav_menu ul.slicknav_nav .slicknav_arrow {
  display: none;
}
.slicknav_menu ul.slicknav_nav .slicknav_item {
  cursor: pointer;
}
.slicknav_menu ul.slicknav_nav .slicknav_item a {
  display: inline-block;
  width: 80%;
  padding: 0;
  margin: 0;
}
.slicknav_menu ul.slicknav_nav a {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 26px;
}
.slicknav_menu ul.slicknav_nav a span.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 2px;
  transition: all 0.6s ease;
}
.slicknav_menu ul.slicknav_nav li.slicknav_collapsed span.icon.plus {
  color: #fff;
  opacity: 1;
  transform: rotate(0deg);
}
.slicknav_menu ul.slicknav_nav li.slicknav_collapsed span.icon.minus {
  opacity: 0;
}
.slicknav_menu ul.slicknav_nav li.slicknav_open span.icon.plus {
  opacity: 0;
  color: #fff;
  transform: rotate(45deg);
}
.slicknav_menu ul.slicknav_nav li.slicknav_open span.icon.minus {
  opacity: 1;
  color: #fff;
}
.slicknav_menu ul.slicknav_nav a:hover {
  color: #fff;
  font-weight: 500;
  transition: all 0.6s ease;
}
.slicknav_menu ul.slicknav_nav li > a::before {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.slicknav_menu ul.slicknav_nav .slicknav_parent-link a {
  display: inline;
  padding: 0;
  margin: 0;
}
.slicknav_menu ul.slicknav_nav .slicknav_txtnode {
  margin-left: 15px;
}
.slicknav_menu ul li ul.sub-menu {
  padding-left: 20px;
}
.slicknav_menu ul li ul.sub-menu li {
  border: 0;
  margin: 0;
  padding-left: 0;
}
.slicknav_menu ul li ul.sub-menu li a {
  font-weight: 300 !important;
  font-size: 18px;
  line-height: 40px;
}
.slicknav_menu ul li ul.sub-menu li:first-child {
  margin-top: 0 !important;
}
.slicknav_menu ul li ul.sub-menu li:last-child {
  border-bottom: 0;
}
.slicknav_menu ul li ul.sub-menu .slicknav_open > a {
  background-color: #fff;
}
.slicknav_menu ul li ul.sub-menu .slicknav_arrow {
  background-color: #fff;
}
.slicknav_menu ul li ul li ul {
  border: 0;
}
.slicknav_menu ul li ul li ul li {
  border-top: 0;
  border-bottom: 1px solid #fff;
}
.slicknav_menu ul li ul li ul li a {
  line-height: 150%;
  padding: 10px 10px 10px 24px;
}
.slicknav_menu ul li ul li ul li:first-child {
  border-top: 1px solid #fff;
}
.slicknav_menu .slicknav_brand {
  display: none;
}

@media (max-width: 576px) {
  .slicknav_menu {
    right: initial;
    width: 100%;
    max-width: initial;
  }
}
/** fonts & typo */
/* inter-100 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: url("../Fonts/inter-v13-latin/inter-v13-latin-100.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-200 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url("../Fonts/inter-v13-latin/inter-v13-latin-200.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("../Fonts/inter-v13-latin/inter-v13-latin-300.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../Fonts/inter-v13-latin/inter-v13-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../Fonts/inter-v13-latin/inter-v13-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../Fonts/inter-v13-latin/inter-v13-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../Fonts/inter-v13-latin/inter-v13-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("../Fonts/inter-v13-latin/inter-v13-latin-800.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("../Fonts/inter-v13-latin/inter-v13-latin-900.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../Fonts/fontawesome-6-free/fa-regular-400.woff2") format("woff2"), url("../Fonts/fontawesome-6-free/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../Fonts/fontawesome-6-free/fa-solid-900.woff2") format("woff2"), url("../Fonts/fontawesome-6-free/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid,
.fa-brands {
  font-weight: 900;
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-display: block;
  font-weight: 400;
  src: url("../Fonts/fontawesome-6-free/fa-brands-400.woff2") format("woff2"), url("../Fonts/fontawesome-6-free/fa-brands-400.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-display: block;
  font-weight: 900;
  src: url("../Fonts/fontawesome-6-free/fa-solid-900.woff2") format("woff2"), url("../Fonts/fontawesome-6-free/fa-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-display: block;
  font-weight: 400;
  src: url("../Fonts/fontawesome-6-free/fa-regular-400.woff2") format("woff2"), url("../Fonts/fontawesome-6-free/fa-regular-400.ttf") format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url("../Fonts/fontawesome-6-free/fa-solid-900.woff2") format("woff2"), url("../Fonts/fontawesome-6-free/fa-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url("../Fonts/fontawesome-6-free/fa-brands-400.woff2") format("woff2"), url("../Fonts/fontawesome-6-free/fa-brands-400.ttf") format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url("../Fonts/fontawesome-6-free/fa-regular-400.woff2") format("woff2"), url("../Fonts/fontawesome-6-free/fa-regular-400.ttf") format("truetype");
  unicode-range: U+F003, U+F006, U+F014, U+F016-F017, U+F01A-F01B, U+F01D, U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088, U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5, U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A, U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E, U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7, U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D, U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA, U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC;
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url("../Fonts/fontawesome-6-free/fa-v4compatibility.woff2") format("woff2"), url("../Fonts/fontawesome-6-free/fa-v4compatibility.ttf") format("truetype");
  unicode-range: U+F041, U+F047, U+F065-F066, U+F07D-F07E, U+F080, U+F08B, U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4, U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E, U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F27A;
}
/* ==========================================================================
   typo t3tpl_swolgb
   ========================================================================== */
body {
  font-family: "Inter", sans-serif;
  color: #144259;
  font-weight: 300;
  line-height: 140%;
  font-size: 21px;
}
body #content .bodytext,
body #content p,
body ul li,
body ol li,
body #footer {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 140%;
  font-size: 21px;
}

h1 {
  font-family: "Inter", sans-serif;
  line-height: 140%;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0;
  margin: 0 0 25px 0;
  padding: 0;
  color: #164194;
  padding: 0;
}

h2 {
  font-family: "Inter", sans-serif;
  line-height: 140%;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 60px 0 18px 0;
  padding: 0;
  color: #164194;
}

h2 > strong {
  font-weight: 600 !important;
}

h3 {
  font-family: "Inter", sans-serif;
  line-height: 140%;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 20px 0 18px 0;
  padding: 0;
  color: #164194;
}

h4 {
  font-family: "Inter", sans-serif;
  line-height: 120%;
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 20px 0 1rem 0;
  padding: 0;
  color: #164194;
}

h5, h6 {
  font-family: "Inter", sans-serif;
  line-height: 120%;
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 1rem 0;
  padding: 0;
  color: #144259;
}

.grid h2:first-child,
.frame:first-child h1,
.frame:first-child h2,
.frame:first-child h3,
.frame:first-child h4,
.ce-textmedia-wrapper h1:first-child,
.ce-textmedia-wrapper h2:first-child,
.ce-textmedia-wrapper h3:first-child,
.ce-textmedia-wrapper h4:first-child,
.ce-textpic h1:first-child,
.ce-textpic h2:first-child,
.ce-textpic h3:first-child,
.ce-textpic h4:first-child {
  margin-top: 0;
}

p {
  margin-bottom: 0.5rem;
}

p > strong, p > b {
  font-weight: 600;
}

.hidden {
  display: none;
}

a,
.external-link,
.internal-link,
.mail {
  font-family: "Inter", sans-serif;
  color: #164194;
  text-decoration: underline;
  transition: all 0.6s ease;
}

a:hover {
  color: #164194;
}

a[href^="tel:"] {
  color: #144259;
}

figcaption p, figcaption * {
  font-family: "Inter", sans-serif;
  font-size: 14px !important;
  font-weight: initial;
}

a.icon:before {
  font-family: "Font Awesome 6 Free";
  content: "\f8d3";
  display: inline-block;
  padding-right: 5px;
}

a.icon.tel:before {
  content: "\f879";
  font-weight: 900;
}

a.icon.mail:before {
  content: "\f0e0";
}

a.icon.pdf:before {
  content: "\f1c1";
}

a.icon.zip:before {
  content: "\f1c6";
}

a.icon.doc:before {
  content: "\f1c2";
}

a.icon.xls:before {
  content: "\f1c3";
}

a.icon.ppt:before {
  content: "\f1c4";
}

a.icon.alt:before {
  content: "\f15c";
}

a, a:hover, *:focus {
  transition: all 0.6s ease;
}

#content ul {
  list-style: square;
  padding-left: 24px;
  margin: 0;
  margin-bottom: 0.5rem;
}
#content ul li {
  margin-bottom: 0;
}
#content ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 28px;
}

ul.typo3-messages {
  list-style: none !important;
  padding-left: 0 !important;
}

/* --------------- RTE Styles start ---------------- */
.highlightBig {
  color: #26778c;
  font-size: 45px;
  line-height: 60px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .highlightBig {
    font-size: 30px;
    line-height: 40px;
  }
}

blockquote {
  font-family: "Inter", sans-serif;
  color: #569782;
  position: relative;
  width: auto;
  border-left: 5px solid #569782;
  padding: 10px 30px;
  margin: 20px 0;
}
blockquote p {
  font-size: 30px !important;
  font-weight: 600 !important;
}
blockquote cite {
  font-size: 16px !important;
  font-style: normal !important;
}
blockquote cite a {
  text-decoration: none;
  color: #569782;
}

.rte-icon {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

.rte-icon:before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
}

.rte-icon.white.accessibilty:before {
  background-image: url("/packages/t3tpl_swolgb/Resources/Public/Icons/rte_handicap.svg");
}

.rte-icon.white.email:before {
  background-image: url("/packages/t3tpl_swolgb/Resources/Public/Icons/rte_email.svg");
}

.rte-icon.white.fax:before {
  background-image: url("/packages/t3tpl_swolgb/Resources/Public/Icons/rte_fax.svg");
}

.rte-icon.white.freshers:before {
  background-image: url("/packages/t3tpl_swolgb/Resources/Public/Icons/rte_freshers.svg");
}

.rte-icon.white.international:before {
  background-image: url("/packages/t3tpl_swolgb/Resources/Public/Icons/rte_international.svg");
}

.rte-icon.white.phone:before {
  background-image: url("/packages/t3tpl_swolgb/Resources/Public/Icons/rte_phone.svg");
}

/* --------------- System ---------------- */
.msg .msg {
  color: #164194;
  padding: 20px;
  border: 2px solid #164194;
  margin: 0 0 20px 0;
  background: #eee;
  font-weight: 500;
}
.msg .msg.warning {
  color: orange;
  border: 2px solid orange;
}
.msg .msg.notice {
  color: #164194;
  border: 2px #164194;
}
.msg .msg.error {
  color: red;
  border: 2px solid red;
}
.msg .msg.success {
  color: green;
  border: 2px solid green;
}

/* Frame */
#content .text-align-left .frame-default.frame-type-text {
  text-align: left;
}
#content .text-right {
  text-align: right;
}
.frame-ruler-before:before {
  content: "";
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  margin-bottom: 2em;
}

.frame-ruler-after:after {
  content: "";
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  margin-top: 2em;
}

.frame-indent {
  margin-left: 15%;
  margin-right: 15%;
}

.frame-indent-left {
  margin-left: 33%;
}

.frame-indent-right {
  margin-right: 33%;
}

/** content elements */
.frame .ce-gallery[data-ce-columns="1"] .ce-outer {
  float: initial;
  right: initial;
}
.frame .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner {
  float: initial;
  right: initial;
}
.frame .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row {
  position: relative;
  float: none;
}
.frame .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column {
  position: relative;
  float: none;
}
.frame .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column figure.video {
  position: relative;
  float: none;
  width: 100% !important;
  height: auto !important;
  display: block;
}
.frame .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column figure.video .video-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.frame .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column figure.video .video-embed > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.frame .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column figure.video .video-embed > div:not(.cookie-consent-replacement) {
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.frame figcaption p, .frame figcaption * {
  font-family: "Inter", sans-serif;
  font-size: 14px !important;
  font-weight: initial;
}

#content .frame.frame-default.frame-layout-0 {
  /* standard */
}
#content .frame.frame-default.frame-layout-1 {
  /* schmaler */
  max-width: 780px;
  margin: 0 auto;
}
.frame.frame-type-div hr.ce-div {
  background-color: #144259;
}

.ce-center .ce-gallery {
  float: initial;
  margin: 0 auto;
  text-align: center;
}
.ce-center .ce-gallery .image {
  margin: 0 auto;
}

.ce-gallery .ce-row {
  overflow: initial !important;
}
.ce-gallery figure figcaption p, .ce-gallery figure figcaption * {
  font-family: "Inter", sans-serif;
  font-size: 14px !important;
  font-weight: initial;
}
@media (max-width: 786px) {
  .frame .ce-textpic .ce-gallery {
    margin: 20px 0;
    float: none !important;
  }
  .frame .ce-textpic .ce-gallery .ce-column {
    margin: auto;
    float: none;
  }
  .frame .ce-textpic .ce-gallery .ce-column figure {
    margin: 0 auto;
  }
  .frame .ce-textpic .ce-gallery .ce-column figure img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1920px) {
  .frame .ce-textpic .ce-gallery[data-ce-columns="1"] .ce-outer, .frame .ce-image .ce-gallery[data-ce-columns="1"] .ce-outer {
    float: initial !important;
    left: initial !important;
    right: initial !important;
    width: 100% !important;
    position: relative;
  }
  .frame .ce-textpic .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner, .frame .ce-image .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner {
    float: initial !important;
    left: initial !important;
    right: initial !important;
    width: 100% !important;
    position: relative;
  }
  .frame .ce-textpic .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column, .frame .ce-image .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column {
    float: initial !important;
    left: initial !important;
    right: initial !important;
    width: 100% !important;
    position: relative;
  }
  .frame .ce-textpic .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column figure.image, .frame .ce-image .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column figure.image {
    float: initial !important;
    left: initial !important;
    right: initial !important;
    width: 100% !important;
    position: relative;
  }
  .frame .ce-textpic .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column figure.image a, .frame .ce-image .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column figure.image a {
    display: block;
    float: initial !important;
    left: initial !important;
    right: initial !important;
    width: 100% !important;
    position: relative;
  }
  .frame .ce-textpic .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column figure.image a img, .frame .ce-image .ce-gallery[data-ce-columns="1"] .ce-outer .ce-inner .ce-row .ce-column figure.image a img {
    width: 100% !important;
  }
}
/* Table -------------------------------------------------------------------------------------------------------- */
table.content-table, table.ce-table {
  width: 100% !important;
  min-width: 560px !important;
  height: auto !important;
  table-layout: fixed;
}
table.content-table tr, table.ce-table tr {
  border: 0;
}
table.content-table tr th, table.ce-table tr th {
  border: 0;
  text-align: right;
}
table.content-table tr td:first-child, table.ce-table tr td:first-child {
  text-align: left;
}
table.content-table tr td, table.ce-table tr td {
  border: 0;
  font-size: 21px !important;
  vertical-align: top;
  text-align: right;
  background-color: initial;
}
table.content-table tr td p, table.ce-table tr td p {
  padding: 0;
  margin: 0;
}
table.content-table.ce-table-striped tbody tr:nth-child(odd), table.ce-table.ce-table-striped tbody tr:nth-child(odd) {
  background-color: #fff !important;
}
table.content-table.ce-table-striped tbody tr:nth-child(even), table.ce-table.ce-table-striped tbody tr:nth-child(even) {
  background-color: rgba(189, 187, 187, 0.3) !important;
}
table.content-table.ce-table-bordered, table.ce-table.ce-table-bordered {
  border: 2px solid #164194;
}

@media (max-width: 575px) {
  table.content-table tr td, table.ce-table tr td {
    padding: 3px;
    font-size: 14px !important;
  }
  table.content-table tr td *, table.ce-table tr td * {
    font-size: 14px !important;
  }
}
/* CE-UPLODS s. lvdownloads  -------------------------------------------------------------------------------------------------------- */
.ce-uploads table.content-table, .ce-uploads table.ce-table {
  width: 100% !important;
  min-width: 560px !important;
  height: auto !important;
  table-layout: fixed;
}
.ce-uploads table.content-table tr, .ce-uploads table.ce-table tr {
  border: 0;
}
.ce-uploads table.content-table tr th, .ce-uploads table.ce-table tr th {
  border: 0;
  text-align: right;
}
.ce-uploads table.content-table tr td:first-child, .ce-uploads table.ce-table tr td:first-child {
  text-align: left;
}
.ce-uploads table.content-table tr td, .ce-uploads table.ce-table tr td {
  border: 0;
  font-size: 21px !important;
  vertical-align: top;
  text-align: right;
  background-color: initial;
}
.ce-uploads table.content-table tr td p, .ce-uploads table.ce-table tr td p {
  padding: 0;
  margin: 0;
}
.ce-uploads table.content-table.ce-table-striped tbody tr:nth-child(odd), .ce-uploads table.ce-table.ce-table-striped tbody tr:nth-child(odd) {
  background-color: #fff !important;
}
.ce-uploads table.content-table.ce-table-striped tbody tr:nth-child(even), .ce-uploads table.ce-table.ce-table-striped tbody tr:nth-child(even) {
  background-color: rgba(189, 187, 187, 0.3) !important;
}
.ce-uploads table.content-table.ce-table-bordered, .ce-uploads table.ce-table.ce-table-bordered {
  border: 2px solid #164194;
}
@media (max-width: 575px) {
  .ce-uploads table.content-table tr td, .ce-uploads table.ce-table tr td {
    padding: 3px;
    font-size: 14px !important;
  }
  .ce-uploads table.content-table tr td *, .ce-uploads table.ce-table tr td * {
    font-size: 14px !important;
  }
}
.ce-uploads table tr:first-child {
  border-top: 1px solid #164194;
}
.ce-uploads table tr td {
  padding: 10px !important;
  padding-left: 0;
  border-color: #164194;
}
.ce-uploads table tr td a {
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
  color: #164194;
}
.ce-uploads table tr td.title {
  text-align: left;
}
.ce-uploads table tr td.download {
  text-align: right;
}

/* Image copryright */
.image-wrapper {
  position: relative;
  display: inline-block;
}

.copyright-img {
  position: absolute;
  z-index: 11;
  bottom: 0;
  right: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: block;
  text-align: center;
  line-height: 24px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  opacity: 0.5;
  text-shadow: 0.05em 0.05em 0.08em rgba(0, 0, 0, 0.6);
  text-decoration: none;
}
.copyright-img:hover {
  background-color: #164194;
  color: #fff;
  text-decoration: none;
}

/* Imagegallery Produkte -------------------------------------------------------------------------------------------------------- */
.ce-imagegallery .polaroid-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
  margin: 40px 0;
  top: 50px;
}
.ce-imagegallery .polaroid-wrapper .polaroid-item {
  position: relative;
  opacity: 0;
  transform: translateX(0) rotate(0deg);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.ce-imagegallery .polaroid-wrapper .polaroid-item picture {
  position: relative;
}
.ce-imagegallery .polaroid-wrapper .polaroid-item picture img {
  width: 40%;
  height: auto;
  border: 4px solid #fff;
  box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.5);
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-3.item-1 {
  position: absolute;
  width: 100%;
  top: 7%;
  left: 10%;
  z-index: 3;
  transform: translateX(-100px) rotate(0deg);
  transition-delay: 0.1s;
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-3.item-2 {
  top: 0;
  left: 45%;
  z-index: 1;
  transform: translateX(100px) rotate(0deg);
  transition-delay: 0.4s;
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-3.item-3 {
  top: -100px;
  left: 50%;
  z-index: 2;
  transform: translateX(100px) rotate(0deg);
  transition-delay: 0.7s;
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-3.in-view {
  opacity: 1;
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-3.in-view.item-1 {
  transform: translateX(0) rotate(-5deg);
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-3.in-view.item-2 {
  transform: translateX(0) rotate(10deg);
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-3.in-view.item-3 {
  transform: translateX(0) rotate(3deg);
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-2.item-1 {
  top: 0;
  left: 0;
  z-index: 3;
  transform: translateX(-100px) rotate(0deg);
  transition-delay: 0.1s;
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-2.item-2 {
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateX(100px) rotate(0deg);
  transition-delay: 0.4s;
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-2.in-view {
  opacity: 1;
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-2.in-view.item-1 {
  transform: translateX(0) rotate(-2deg);
}
.ce-imagegallery .polaroid-wrapper .polaroid-item.mode-2.in-view.item-2 {
  transform: translateX(0) rotate(7deg);
}
@media (max-width: 576px) {
  .ce-imagegallery {
    height: auto;
  }
  .ce-imagegallery .polaroid-wrapper {
    height: auto;
    top: initial !important;
  }
  .ce-imagegallery .polaroid-wrapper .polaroid-item {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 auto;
    padding: 0;
    top: initial !important;
    right: initial !important;
    left: 10% !important;
  }
  .ce-imagegallery .polaroid-wrapper .polaroid-item picture {
    position: relative;
    margin: 0 auto;
  }
  .ce-imagegallery .polaroid-wrapper .polaroid-item picture img {
    width: 80% !important;
    margin: 0 auto;
    height: auto;
    border: 4px solid #fff;
    box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.5);
  }
}

.col-md-6 .polaroid-wrapper {
  margin: 0 auto;
  top: 0;
}
.col-md-6 .polaroid-wrapper .polaroid-item picture img {
  width: 90% !important;
}
/* CE HISTORY -------------------------------------------------------------------------------------------------------- */
.ce-history {
  max-width: 990px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
}
.ce-history .row .col1 {
  border-right: 5px solid #164194;
}
.ce-history .row .col1 h3 {
  text-align: right;
}
.ce-history .row .col1 span.history-line {
  right: -20px;
}
.ce-history .row .col2 {
  border-left: 5px solid #164194;
}
.ce-history .row .col2 h3 {
  text-align: left;
}
.ce-history .row .col2 span.history-line {
  left: -22px;
}
.ce-history .row .img {
  padding: 20px;
  padding-bottom: 80px;
}
.ce-history .row .text {
  padding: 20px;
  padding-bottom: 60px;
  position: relative;
}
.ce-history .row .text h3 {
  font-family: "Inter", sans-serif;
  line-height: 140%;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 60px 0 18px 0;
  padding: 0;
  color: #164194;
  position: relative;
}
.ce-history .row .text span.history-line {
  display: block;
  position: absolute;
  top: 95px;
  z-index: 1;
  width: 32px;
  height: 10px;
  background-color: #164194;
}

@media (max-width: 575px) {
  .ce-history .row .col1 {
    border-right: 3px solid #164194;
    padding: 0;
  }
  .ce-history .row .col1 span.history-line {
    right: -5px;
  }
  .ce-history .row .col2 {
    border-left: 3px solid #164194;
    padding: 0;
  }
  .ce-history .row .col2 span.history-line {
    left: -5px;
  }
  .ce-history .row .img {
    padding: 10px;
    padding-bottom: 20px;
  }
  .ce-history .row .text {
    padding: 10px;
    padding-bottom: 20px;
    position: relative;
  }
  .ce-history .row .text p {
    font-size: 14px !important;
  }
  .ce-history .row .text h3 {
    font-size: 22px;
  }
  .ce-history .row .text span.history-line {
    height: 6px;
    width: 10px;
    top: 82px;
  }
}
/* BOOTSTRAP Accordion -------------------------------------------------------------------------------------------------------- */
.ce-accordion * {
  transition: all 0.6s ease;
}
.ce-accordion .plus,
.ce-accordion .minus {
  color: #b80e80;
  padding: 0;
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 0;
  text-align: center;
  box-sizing: border-box;
  transition: 0.5s all ease-out;
}
.ce-accordion .plus i,
.ce-accordion .minus i {
  position: relative;
  font-size: 20px;
  line-height: 20px;
}
.ce-accordion .plus {
  opacity: 1;
}
.ce-accordion *[aria-expanded=true] .plus {
  opacity: 0;
  transform: rotate(45deg) !important;
}
.ce-accordion .minus {
  opacity: 0;
}
.ce-accordion *[aria-expanded=true] .minus {
  opacity: 1;
}
.ce-accordion .card {
  border: 0;
  background: none;
  word-wrap: initial;
}
.ce-accordion .card .card-header {
  background: none;
  padding: 0;
  background-color: transparent !important;
  border-radius: 0;
  position: relative;
  cursor: pointer !important;
  border: 0 !important;
}
.ce-accordion .card .card-header h1, .ce-accordion .card .card-header h2, .ce-accordion .card .card-header h3, .ce-accordion .card .card-header h4, .ce-accordion .card .card-header .card-title {
  margin: 0;
  padding: 0;
  border: 0;
  text-transform: initial;
  font-family: "Inter", sans-serif !important;
  border-top: 1px solid #b80e80 !important;
  border-bottom: 1px solid transparent !important;
  font-size: 23px !important;
  font-weight: 700 !important;
  position: relative;
  display: block;
  background: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  text-align: left !important;
  text-decoration: none;
  padding: 20px 20px 20px 0 !important;
  cursor: pointer;
  margin-top: 0 !important;
  -webkit-appearance: initial;
  color: #164194;
}
.ce-accordion .card .card-header h1[aria-expanded=true], .ce-accordion .card .card-header h2[aria-expanded=true], .ce-accordion .card .card-header h3[aria-expanded=true], .ce-accordion .card .card-header h4[aria-expanded=true] {
  border-color: #b80e80 !important;
  color: #b80e80;
}
.ce-accordion .card .card-header .minus, .ce-accordion .card .card-header .plus {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}
.ce-accordion .card .card-body {
  background-color: transparent;
  padding: 20px 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ce-accordion .card .card-body .image {
  position: relative;
}
.ce-accordion .card .card-body .row {
  margin: 0;
}
.ce-accordion .card .card-body .text {
  padding-left: 0;
}
@media (min-width: 1px) and (max-width: 990px) {
  .ce-accordion .card .card-header {
    background: none !important;
  }
  .ce-accordion .card .card-header h3 {
    font-size: 22px !important;
  }
  .ce-accordion .card .card-body .img {
    padding: 0;
  }
  .ce-accordion .card .card-body .img figure {
    padding: 0;
  }
}
/* CE Blockuote -------------------------------------------------------------------------------------------------------- */
#content .ce-blockquote {
  position: relative;
}
#content .ce-blockquote .mark {
  display: none;
}

/* CE Button -------------------------------------------------------------------------------------------------------- */
.ce-button a {
  text-decoration: none !important;
}

.ce-button {
  position: relative;
  display: block;
}
.ce-button a.btn-basic {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 14px 20px;
  line-height: 120%;
  -webkit-border-radius: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  background-color: #b80e80;
  text-transform: uppercase;
}
.ce-button a.btn-basic i {
  margin-right: 10px;
}
.ce-button a.btn-basic:hover {
  background-color: #b80e80;
  color: #fff;
}
.ce-button a.btn-basic:disabled {
  color: #b80e80;
  cursor: not-allowed;
}
.ce-button.center {
  text-align: center;
}
.ce-button.right {
  text-align: right;
}

.ce-button.btn-webshop .btn-webshop-wrapper * {
  color: #164194;
}
.ce-button.btn-webshop .btn-webshop-wrapper i {
  display: block;
  font-size: 60px !important;
  line-height: 130% !important;
}
.ce-button.btn-webshop .btn-webshop-wrapper a.btn-link {
  font-family: "Inter", sans-serif;
  font-size: 65px !important;
  text-decoration: underline !important;
  line-height: 120% !important;
}
.ce-button.btn-webshop .btn-webshop-wrapper .text, .ce-button.btn-webshop .btn-webshop-wrapper .text > p {
  font-family: "Inter", sans-serif !important;
  font-size: 35px !important;
  line-height: 120% !important;
}

.section.green .ce-button a.btn-basic {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 14px 20px;
  line-height: 120%;
  -webkit-border-radius: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  background-color: #b80e80;
  text-transform: uppercase;
  width: auto;
  text-align: right;
}
.section.green .ce-button a.btn-basic i {
  margin-right: 10px;
}
.section.green .ce-button a.btn-basic:hover {
  background-color: #b80e80;
  color: #fff;
}
.section.green .ce-button a.btn-basic:disabled {
  color: #b80e80;
  cursor: not-allowed;
}
@media (max-width: 991px) {
  .ce-button {
    width: 100%;
  }
  .ce-button a.btn-basic {
    width: 100%;
  }
  .ce-button.right a.btn-basic {
    float: none;
  }
}
/* CE Contact -------------------------------------------------------------------------------------------------------- */
.ce-contact {
  background-color: #bdbbbb;
  padding: 20px;
  color: #26778c;
  font-size: 21px;
}
.ce-contact .ce-contact-wrapper {
  position: relative;
}
.ce-contact .ce-contact-wrapper .ce-contact-image {
  position: absolute;
  top: -60px;
  right: -30px;
}
.ce-contact .ce-contact-wrapper .ce-contact-image img {
  border-radius: 200px;
  -webkit-border-radius: 200px;
}
.ce-contact .ce-contact-wrapper .ce-contact-header {
  padding-right: 200px;
}
.ce-contact .ce-contact-wrapper .ce-contact-header .name {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ce-contact .ce-contact-wrapper .ce-contact-header .position {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
}
.ce-contact .ce-contact-wrapper .ce-contact-header .description {
  margin-bottom: 20px;
}
.ce-contact .ce-contact-wrapper .ce-contact-header .description {
  margin-bottom: 20px;
}
.ce-contact .ce-contact-wrapper .ce-contact-header .termin {
  margin-bottom: 20px;
}
.ce-contact .ce-contact-wrapper .wrapper-contacts {
  margin-bottom: 20px;
}
.ce-contact .ce-contact-wrapper .wrapper-contacts .phone a {
  text-decoration: none;
  color: #26778c;
}
.ce-contact .ce-contact-wrapper .wrapper-contacts span.label {
  display: inline-block;
  width: 140px;
}
.ce-contact .wrapper-hinweise {
  padding: 20px;
  margin: 20px 0;
  background-color: #fff;
  color: #569782;
  font-size: 19px !important;
}
.ce-contact .btn {
  color: #fff;
  background-color: #f39200;
  font-size: 18px;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  padding-left: 60px;
}
.ce-contact .btn i {
  position: absolute;
  top: 10px;
  left: 20px;
  display: inline-block;
  font-size: 28px;
}

@media (max-width: 576px) {
  .ce-contact {
    font-size: 18px;
  }
  .ce-contact .ce-contact-wrapper .ce-contact-image {
    position: relative !important;
    top: initial !important;
    right: initial !important;
    margin: 0 auto 20px auto;
    text-align: center;
  }
  .ce-contact .ce-contact-wrapper .ce-contact-image img {
    border-radius: 150px;
    -webkit-border-radius: 150px;
    width: 150px !important;
    height: 150px !important;
    margin: 0 auto;
  }
  .ce-contact .ce-contact-wrapper .ce-contact-header {
    padding-right: 0;
  }
  .ce-contact .ce-contact-wrapper .ce-contact-header .name {
    font-size: 24px;
  }
  .ce-contact .ce-contact-wrapper .wrapper-contacts span.label {
    width: auto;
    display: block;
    margin-top: 10px;
  }
  .ce-contact .ce-contact-wrapper .wrapper-buttons .btn {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
/* CE Facts -------------------------------------------------------------------------------------------------------- */
.ce-fact {
  padding: 20px;
}
.ce-fact .ce-fact-inner .ce-fact-number {
  font-family: "Inter", sans-serif !important;
  font-weight: 300;
  text-align: center;
  color: #164194;
  font-size: 54px;
  line-height: 1.2em;
  transition: all 0.6s ease;
  margin-bottom: 20px;
}
.ce-fact .ce-fact-inner .ce-fact-number .text {
  transition: opacity 1s ease-in;
}
.ce-fact .ce-fact-inner .ce-fact-label {
  margin-top: 15px;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  color: #144259;
  line-height: 1.2em;
}
.ce-fact .ce-fact-inner .ce-fact-image {
  text-align: center;
  margin-bottom: 20px;
}
.ce-fact .ce-fact-inner .ce-fact-image img {
  margin: 0 auto;
}
.ce-fact .ce-fact-inner .ce-fact-image:hover img {
  transition: all 0.6s ease;
  filter: saturate(2.2);
  opacity: 0.8;
  transform: scale(1.02);
}
.ce-fact .ce-fact-inner header {
  text-align: center;
}

/* CE Kachel -------------------------------------------------------------------------------------------------------- */
.ce-kachel {
  position: relative;
  margin-bottom: 40px;
}
.ce-kachel.mode-0 .inner {
  background-color: #164194;
}
.ce-kachel a {
  text-decoration: none !important;
}
.ce-kachel .inner {
  position: relative;
  height: 100%;
  color: #144259;
  text-decoration: none !important;
}
.ce-kachel .inner figure {
  margin: 0;
}
.ce-kachel .inner header {
  padding: 20px 20px 0 20px;
}
.ce-kachel .inner header h3 {
  color: #000;
  margin: 0;
  padding: 0;
}
.ce-kachel .inner .body {
  padding: 20px 20px;
}
.ce-kachel .inner .body p {
  font-size: 16px !important;
  line-height: 160% !important;
}

/* CE Slider Content -------------------------------------------------------------------------------------------------------- */
.ce-slider-content {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.ce-slider-content h3, .ce-slider-content h4 {
  padding: 0;
  margin: 0;
}
.ce-slider-content h4 {
  color: #b80e80;
  margin-bottom: 20px;
}
.ce-slider-content .row {
  margin: 0;
  padding: 0;
}
.ce-slider-content .row .col-sm-12:first-child {
  padding-left: 0;
}

/* CE Teaser -------------------------------------------------------------------------------------------------------- */
.ce-teaser, .ce-teaser-container {
  height: 100%;
}
.ce-teaser *, .ce-teaser-container * {
  transition: all 0.6s ease;
}
.ce-teaser:hover, .ce-teaser-container:hover {
  cursor: pointer;
}
.ce-teaser .teaser-wrapper, .ce-teaser-container .teaser-wrapper {
  position: relative;
  text-align: left;
  height: 100%;
  padding: 0;
}
.ce-teaser .teaser-wrapper .teaser-image, .ce-teaser-container .teaser-wrapper .teaser-image {
  position: relative;
}
.ce-teaser .teaser-wrapper .teaser-image:hover img, .ce-teaser-container .teaser-wrapper .teaser-image:hover img {
  transition: all 0.6s ease;
  filter: saturate(2.2);
  opacity: 0.8;
  transform: scale(1.02);
}
.ce-teaser .teaser-wrapper .ce-fact-inner, .ce-teaser-container .teaser-wrapper .ce-fact-inner {
  padding: 60px 40px 40px 40px;
}
.ce-teaser .teaser-wrapper .ce-fact-inner .ce-fact-number, .ce-teaser-container .teaser-wrapper .ce-fact-inner .ce-fact-number {
  font-family: "Inter", sans-serif !important;
  font-weight: 300;
  text-align: center;
  color: #164194;
  font-size: 54px;
  line-height: 1.2em;
  transition: all 0.6s ease;
  margin-bottom: 20px;
}
.ce-teaser .teaser-wrapper .ce-fact-inner .ce-fact-number .text, .ce-teaser-container .teaser-wrapper .ce-fact-inner .ce-fact-number .text {
  transition: opacity 1s ease-in;
}
.ce-teaser .teaser-wrapper .ce-fact-inner .ce-fact-label, .ce-teaser-container .teaser-wrapper .ce-fact-inner .ce-fact-label {
  margin-top: 15px;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  color: #144259;
  line-height: 1.2em;
}
.ce-teaser .teaser-wrapper .ce-fact-inner .text, .ce-teaser-container .teaser-wrapper .ce-fact-inner .text {
  font-size: 80px;
}
.ce-teaser .teaser-wrapper .teaser-header, .ce-teaser-container .teaser-wrapper .teaser-header {
  padding: 0 40px;
}
.ce-teaser .teaser-wrapper .teaser-header .pre-header, .ce-teaser-container .teaser-wrapper .teaser-header .pre-header {
  color: #b80e80;
  font-size: 21px;
  font-weight: 600;
  padding-top: 20px;
}
.ce-teaser .teaser-wrapper .teaser-header h1, .ce-teaser .teaser-wrapper .teaser-header h2, .ce-teaser .teaser-wrapper .teaser-header h3, .ce-teaser .teaser-wrapper .teaser-header h4, .ce-teaser .teaser-wrapper .teaser-header h5, .ce-teaser .teaser-wrapper .teaser-header h6, .ce-teaser-container .teaser-wrapper .teaser-header h1, .ce-teaser-container .teaser-wrapper .teaser-header h2, .ce-teaser-container .teaser-wrapper .teaser-header h3, .ce-teaser-container .teaser-wrapper .teaser-header h4, .ce-teaser-container .teaser-wrapper .teaser-header h5, .ce-teaser-container .teaser-wrapper .teaser-header h6 {
  font-family: "Inter", sans-serif;
  line-height: 140%;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0;
  margin: 0 0 25px 0;
  padding: 0;
  color: #164194;
  padding: 0;
  padding-top: 20px;
  color: #164194;
  font-size: 30px;
  font-weight: 300;
  hyphens: auto;
}
.ce-teaser .teaser-wrapper .teaser-body, .ce-teaser-container .teaser-wrapper .teaser-body {
  padding: 0 40px;
}
.ce-teaser .teaser-wrapper .teaser-body .teaser-text, .ce-teaser-container .teaser-wrapper .teaser-body .teaser-text {
  font-size: 18px !important;
}
.ce-teaser .teaser-wrapper .teaser-body .teaser-text *, .ce-teaser-container .teaser-wrapper .teaser-body .teaser-text * {
  color: #144259;
}
.ce-teaser .teaser-wrapper .teaser-body .teaser-text p, .ce-teaser-container .teaser-wrapper .teaser-body .teaser-text p {
  font-size: 18px !important;
}
.ce-teaser .teaser-wrapper .teaser-body .teaser-text a, .ce-teaser-container .teaser-wrapper .teaser-body .teaser-text a {
  text-decoration: underline;
  font-size: 18px;
}
.ce-teaser .teaser-wrapper .teaser-body .teaser-text a:hover, .ce-teaser .teaser-wrapper .teaser-body .teaser-text a:hover h3, .ce-teaser .teaser-wrapper .teaser-body .teaser-text a:hover p, .ce-teaser-container .teaser-wrapper .teaser-body .teaser-text a:hover, .ce-teaser-container .teaser-wrapper .teaser-body .teaser-text a:hover h3, .ce-teaser-container .teaser-wrapper .teaser-body .teaser-text a:hover p {
  color: #164194;
}
.ce-teaser .teaser-wrapper .teaser-footer, .ce-teaser-container .teaser-wrapper .teaser-footer {
  padding: 40px;
}
.ce-teaser .btn-basic, .ce-teaser-container .btn-basic {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 14px 20px;
  line-height: 120%;
  -webkit-border-radius: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  background-color: #b80e80;
  text-transform: uppercase;
}
.ce-teaser .btn-basic i, .ce-teaser-container .btn-basic i {
  margin-right: 10px;
}
.ce-teaser .btn-basic:hover, .ce-teaser-container .btn-basic:hover {
  background-color: #b80e80;
  color: #fff;
}
.ce-teaser .btn-basic:disabled, .ce-teaser-container .btn-basic:disabled {
  color: #b80e80;
  cursor: not-allowed;
}
section.cols-4 .ce-teaser, section.cols-3 .ce-teaser {
  height: initial;
}
section.cols-4 .ce-teaser .teaser-wrapper.t3tpl-color, section.cols-3 .ce-teaser .teaser-wrapper.t3tpl-color {
  padding: 0 20px;
}
section.cols-4 .ce-teaser .teaser-wrapper.t3tpl-color .btn-basic, section.cols-3 .ce-teaser .teaser-wrapper.t3tpl-color .btn-basic {
  position: relative;
  left: -20px;
}
section.cols-4 .ce-teaser .teaser-header, section.cols-3 .ce-teaser .teaser-header {
  padding: 0;
}
section.cols-4 .ce-teaser .teaser-body, section.cols-3 .ce-teaser .teaser-body {
  padding: 0;
}
section.cols-4 .ce-teaser .teaser-footer, section.cols-3 .ce-teaser .teaser-footer {
  padding: 0;
}

@media (max-width: 991px) {
  .ce-teaser {
    padding-bottom: 40px;
  }
}
.ce-teaser .teaser-wrapper.t3tpl-color-1, .grid.teaser .teaser-wrapper.t3tpl-color-1 {
  background-color: #eef0f0;
}
.ce-teaser .teaser-wrapper.t3tpl-color-1 header, .grid.teaser .teaser-wrapper.t3tpl-color-1 header {
  background-color: initial;
}
.ce-teaser .teaser-wrapper.t3tpl-color-2, .grid.teaser .teaser-wrapper.t3tpl-color-2 {
  background-color: #bdbbbb !important;
}
.ce-teaser .teaser-wrapper.t3tpl-color-2 header, .grid.teaser .teaser-wrapper.t3tpl-color-2 header {
  background-color: initial;
}
.ce-teaser .teaser-wrapper.t3tpl-color-3, .grid.teaser .teaser-wrapper.t3tpl-color-3 {
  border: 1px solid #26778c !important;
  background-color: #fff;
}
.ce-teaser .teaser-wrapper.t3tpl-color-3 header, .grid.teaser .teaser-wrapper.t3tpl-color-3 header {
  background-color: initial;
}
.ce-teaser .teaser-wrapper.t3tpl-gradient-1, .grid.teaser .teaser-wrapper.t3tpl-gradient-1 {
  background: linear-gradient(140deg, rgba(94, 191, 72, 0.8) 0%, rgba(93, 190, 73, 0.8) 1%, rgba(5, 70, 165, 0.8) 100%);
}
.ce-teaser .teaser-wrapper.t3tpl-gradient-1 *, .grid.teaser .teaser-wrapper.t3tpl-gradient-1 * {
  color: #fff;
}
.ce-teaser .teaser-wrapper.t3tpl-gradient-1 .btn-basic, .ce-teaser .teaser-wrapper.t3tpl-gradient-1 .btn, .grid.teaser .teaser-wrapper.t3tpl-gradient-1 .btn-basic, .grid.teaser .teaser-wrapper.t3tpl-gradient-1 .btn {
  background-color: #fff;
  color: #f39200;
}
.ce-teaser .teaser-wrapper.t3tpl-gradient-1 .highlightBig, .grid.teaser .teaser-wrapper.t3tpl-gradient-1 .highlightBig {
  color: #fff;
}

/* CE Teaser-Info Störer -------------------------------------------------------------------------------------------------------- */
.grid-sign.teaser {
  position: absolute;
  top: 57px;
  left: 50%;
  z-index: 13;
  width: 30px;
  height: 40px;
  transition: all 100ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transform: translate(-50%, 0);
  background-position: top center;
  background-repeat: no-repeat;
  display: block !important;
  top: 5px;
}

#content .ce-teaser-info {
  padding: 0;
  margin-top: 20px;
  background-color: #b80e80;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  position: relative;
}
#content .ce-teaser-info * {
  transition: all 0.6s ease;
  text-align: left !important;
}
#content .ce-teaser-info .col1, #content .ce-teaser-info .col2 {
  padding: 0;
}
#content .ce-teaser-info .container {
  max-width: 1140px !important;
  margin: 0 auto;
}
#content .ce-teaser-info .teaser-wrapper {
  position: relative;
  height: 100%;
  padding: 40px 0 40px 0;
}
#content .ce-teaser-info .teaser-wrapper .teaser-wrapper-text {
  text-align: left !important;
}
#content .ce-teaser-info .teaser-wrapper .teaser-wrapper-text p {
  font-size: 18px;
}
#content .ce-teaser-info header {
  display: block;
  width: 100%;
}
#content .ce-teaser-info header h2, #content .ce-teaser-info header h3 {
  position: relative;
  margin-top: 0;
  color: #164194;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 21px !important;
}
#content .ce-teaser-info .btn-more {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 14px 20px;
  line-height: 120%;
  -webkit-border-radius: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  background-color: #b80e80;
  text-transform: uppercase;
  width: auto;
  text-align: right;
}
#content .ce-teaser-info .btn-more i {
  margin-right: 10px;
}
#content .ce-teaser-info .btn-more:hover {
  background-color: #b80e80;
  color: #fff;
}
#content .ce-teaser-info .btn-more:disabled {
  color: #b80e80;
  cursor: not-allowed;
}
@media (max-width: 575px) {
  #content .ce-teaser-info {
    padding-bottom: 120px;
  }
  #content .ce-teaser-info .teaser-wrapper {
    padding: 10px;
  }
  #content .ce-teaser-info .teaser-wrapper .teaser-wrapper-image {
    padding: 10px;
  }
  #content .ce-teaser-info .teaser-wrapper .teaser-wrapper-text {
    padding: 10px;
  }
}
@media (min-width: 576px) {
  #content .ce-teaser-info .teaser-wrapper {
    padding: 40px;
  }
  #content .ce-teaser-info .teaser-wrapper .teaser-wrapper-image {
    padding: 40px;
  }
  #content .ce-teaser-info .teaser-wrapper .teaser-wrapper-text {
    padding: 40px;
  }
}
@media (min-width: 990px) {
  #content .ce-teaser-info .teaser-wrapper .teaser-wrapper-image {
    padding: 40px 20px 40px 40px;
  }
  #content .ce-teaser-info .teaser-wrapper .teaser-wrapper-text {
    padding: 40px 40px 40px 20px;
  }
}
@media (min-width: 1200px) {
  #content .ce-teaser-info .teaser-wrapper .teaser-wrapper-image {
    padding: 60px 80px 60px 60px;
  }
  #content .ce-teaser-info .teaser-wrapper .teaser-wrapper-text {
    padding: 60px 60px 60px 80px;
  }
}
/* CE Video -------------------------------------------------------------------------------------------------------- */
/* CE Video -------------------------------------------------------------------------------------------------------- */
.ce-video.landscape .ce-video-wrapper .image {
  position: relative;
}
.ce-video.landscape .ce-video-wrapper .image .button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: block;
}
.ce-video.landscape .ce-video-wrapper .image .button-overlay i {
  font-size: 7em !important;
  color: #fff;
}
.ce-video.landscape .ce-video-wrapper .image img {
  width: 100%;
  height: auto;
}

.video-modal .modal-dialog {
  width: 80%;
  max-width: 960px;
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 40px;
  margin: 0 auto;
}
.video-modal .modal-dialog .modal-content {
  background-color: #fff !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
}
.video-modal .modal-dialog .modal-content .modal-header {
  padding: 0;
  border: 0;
  width: 100%;
  height: 40px;
  position: relative;
}
.video-modal .modal-dialog .modal-content .modal-header .modal-close {
  cursor: pointer;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: -40px;
  top: 0;
  text-decoration: none;
  text-align: center;
  font-style: normal;
  font-size: 40px;
  background-color: transparent;
}
.video-modal .modal-dialog .modal-content .modal-header .modal-close i {
  font-size: 30px;
}
.video-modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.video-modal .modal-dialog .modal-content .modal-body #ajaxContainer #content {
  padding: 0 40px;
  min-height: initial;
}
.video-modal .modal-dialog .modal-content .modal-body #ajaxContainer #content * {
  text-align: left;
}
.video-modal .modal-dialog .modal-content .modal-body #ajaxContainer #content > section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
.video-modal .modal-dialog .modal-content .modal-body #ajaxContainer #content .ce-teaser-info .wrapper {
  padding: 0;
}
.video-modal .modal-dialog .modal-content .modal-body #ajaxContainer #content .ce-teaser-info .wrapper .wrapper-image {
  padding: 60px;
}
.video-modal .modal-dialog .modal-content .modal-body #ajaxContainer #content .ce-teaser-info .wrapper .wrapper-text {
  padding: 60px;
}
.video-modal .modal-dialog .modal-content .modal-body #ajaxContainer #content .ce-teaser-info .wrapper .wrapper-text table.contenttable {
  width: 100% !important;
  height: auto;
}
.video-modal .modal-dialog .modal-content .modal-body #ajaxContainer #content .ce-teaser-info .wrapper .wrapper-text table.contenttable td {
  padding-right: 5px;
}
.video-modal .modal-dialog .modal-content .modal-footer {
  padding: 40px;
}
.video-modal .modal-dialog .modal-content {
  background-color: #000 !important;
  border: 0;
  padding: 0 40px 40px 40px;
  text-align: center;
}
.video-modal .modal-dialog .modal-content .modal-header .modal-close i {
  color: #fff !important;
}
.video-modal .modal-dialog .modal-content .modal-header .modal-close i::before {
  color: #fff;
}
.video-modal .modal-dialog .modal-content .video-embed-item {
  margin: 0 auto;
  width: 100%;
}
.video-modal .modal-dialog .modal-content figure.video {
  margin: 0 auto !important;
  padding: 0 !important;
}

.ce-video.portrait .frame-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  /* oder 90vw */
  aspect-ratio: 9/16;
  margin: 0 auto;
}
.ce-video.portrait .frame-background {
  position: absolute;
  inset: 0;
  background-size: auto 100%;
  background-position: center;
  z-index: 1;
  background-repeat: no-repeat;
}
.ce-video.portrait .video-embed {
  position: absolute;
  inset: 0;
  padding: 10%;
  /* Erzeugt den "Rahmen" */
  z-index: 2;
  box-sizing: border-box;
}
.ce-video.portrait .video-embed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  /* optional, je nach Design */
}

#content.ajax-content {
  margin: 0;
  padding: 0;
}

#content > section {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

#content {
  position: relative;
  z-index: 2;
  min-height: 500px;
}
#content > .container {
  width: 100%;
  max-width: 1140px;
}
#content .container.basic-width {
  max-width: 1140px;
}
#content .container.basic-width .frame {
  margin-left: auto;
  margin-right: auto;
}
#content .container.full-width {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}
#content .container.full-width .grid-header {
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 1120px) {
  #content .container.full-width header.grid-header {
    padding: 0 10px;
  }
}

header.grid-header {
  max-width: 1120px;
  margin: 0 auto;
}
header.grid-header.left {
  text-align: left;
}
header.grid-header.center {
  text-align: center;
}
header.grid-header.right {
  text-align: right;
  text-align: right;
}

section section .container {
  margin: 0 auto;
}

.grid .grid-item > .wrapper {
  position: relative;
  height: 100%;
}
.grid .grid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  #content .grid-item {
    margin-bottom: 60px !important;
  }
}
.grid-accordion {
  padding: 0 !important;
}
.grid-accordion * {
  transition: all 0.6s ease;
}
.grid-accordion .plus,
.grid-accordion .minus {
  color: #b80e80;
  padding: 0;
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 0;
  text-align: center;
  box-sizing: border-box;
  transition: 0.5s all ease-out;
}
.grid-accordion .plus i,
.grid-accordion .minus i {
  position: relative;
  font-size: 20px;
  line-height: 20px;
}
.grid-accordion .plus {
  opacity: 1;
}
.grid-accordion *[aria-expanded=true] .plus {
  opacity: 0;
  transform: rotate(45deg) !important;
}
.grid-accordion .minus {
  opacity: 0;
}
.grid-accordion *[aria-expanded=true] .minus {
  opacity: 1;
}
.grid-accordion .card {
  border: 0;
  background: none;
  word-wrap: initial;
}
.grid-accordion .card .card-header {
  background: none;
  padding: 0;
  background-color: transparent !important;
  border-radius: 0;
  position: relative;
  cursor: pointer !important;
  border: 0 !important;
}
.grid-accordion .card .card-header h1, .grid-accordion .card .card-header h2, .grid-accordion .card .card-header h3, .grid-accordion .card .card-header h4, .grid-accordion .card .card-header .card-title {
  margin: 0;
  padding: 0;
  border: 0;
  text-transform: initial;
  font-family: "Inter", sans-serif !important;
  border-top: 1px solid #b80e80 !important;
  border-bottom: 1px solid transparent !important;
  font-size: 23px !important;
  font-weight: 700 !important;
  position: relative;
  display: block;
  background: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  text-align: left !important;
  text-decoration: none;
  padding: 20px 20px 20px 0 !important;
  cursor: pointer;
  margin-top: 0 !important;
  -webkit-appearance: initial;
  color: #164194;
}
.grid-accordion .card .card-header h1[aria-expanded=true], .grid-accordion .card .card-header h2[aria-expanded=true], .grid-accordion .card .card-header h3[aria-expanded=true], .grid-accordion .card .card-header h4[aria-expanded=true] {
  border-color: #b80e80 !important;
  color: #b80e80;
}
.grid-accordion .card .card-header .minus, .grid-accordion .card .card-header .plus {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}
.grid-accordion .card .card-body {
  background-color: transparent;
  padding: 20px 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.grid-accordion .card .card-body .image {
  position: relative;
}
.grid-accordion .card .card-body .row {
  margin: 0;
}
.grid-accordion .card .card-body .text {
  padding-left: 0;
}
.grid-accordion .card .card-header header {
  padding: 0 10px;
}
.grid-accordion .card .card-header h1, .grid-accordion .card .card-header h2, .grid-accordion .card .card-header h3, .grid-accordion .card .card-header h4, .grid-accordion .card .card-header h5, .grid-accordion .card .card-header h6 {
  padding: 20px 60px 20px 20px;
  margin: 0 !important;
  border: 0;
}

@media (max-width: 768px) {
  .grid-accordion .card .card-body {
    background-color: initial;
    padding: 20px 0;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .grid-accordion .card .card-body {
    background-color: initial;
    padding: 20px 0;
  }
}
@media (min-width: 992px) {
  .grid-accordion .card .card-body {
    background-color: initial;
    padding: 20px 0;
  }
}
#content .ce-accordion:last-child {
  border-bottom: 1px solid #164194 !important;
}

#content .ce-accordion.grid-accordion-simple .card {
  border-radius: 0 !important;
}
#content .ce-accordion.grid-accordion-simple .card .card-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#content .ce-accordion.grid-accordion-simple .card .card-body header {
  display: none;
}
#content .ce-accordion.grid-accordion-simple .card:last-child {
  border-bottom: 1px solid #b80e80 !important;
}

#content .ce-accordion.grid-accordion-simple:last-child {
  border-bottom: 0 !important;
}

.horizontal.grid-owl-carousel {
  transition: all 0.6s ease;
}
.horizontal.grid-owl-carousel .owl-carousel {
  position: relative;
  padding: 0;
  margin: 0 auto;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer {
  position: relative;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage {
  position: relative;
  display: flex;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage * {
  transition: all 0.6s ease;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-carousel-item {
  position: relative;
  height: 100%;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  cursor: pointer;
  position: relative;
  transition: all 0.6s ease;
  min-height: 200;
  text-align: center;
  display: flex;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item * {
  transition: all 0.6s ease;
  hyphens: auto;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item a {
  text-decoration: none !important;
  color: #144259;
  position: relative;
  display: flex;
  height: 100%;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item h3 {
  color: #164194;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .image img {
  margin: 0 auto;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .item {
  position: relative;
  height: 100%;
  padding-bottom: 90px;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .item.item-no-link {
  padding-bottom: 0;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .btn-basic {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 14px 20px;
  line-height: 120%;
  -webkit-border-radius: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  background-color: #b80e80;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .btn-basic i {
  margin-right: 10px;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .btn-basic:hover {
  background-color: #b80e80;
  color: #fff;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item .btn-basic:disabled {
  color: #b80e80;
  cursor: not-allowed;
}
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .carousel-indicators .owl-item.active *,
.horizontal.grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-carousel.content .owl-item.active.center * {
  transition: all 0.6s ease;
}
.owl-nav {
  position: absolute;
  z-index: 1;
  top: 40%;
  right: 0px;
  width: 100%;
}
@media (max-width: 480px) {
  .owl-nav {
    top: 33%;
  }
}
.owl-nav button {
  width: 40px;
  height: 80px;
  position: absolute;
  border: 0;
  display: block;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}
.owl-nav button i {
  font-size: 30px;
  color: #164194;
}
.owl-nav button span {
  position: absolute;
}
@media (max-width: 1199px) {
  .owl-nav button.owl-next {
    right: -15px;
  }
  .owl-nav button.owl-prev {
    left: -15px;
  }
}
@media (min-width: 1200px) {
  .owl-nav button.owl-next {
    right: -40px;
  }
  .owl-nav button.owl-prev {
    left: -40px;
  }
}

.owl-dots {
  position: relative;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-dots .owl-dot {
  margin: 0 5px;
  width: 20px;
  height: 20px;
  border: 1px solid #26778c !important;
  background-color: #26778c !important;
}
.owl-dots .owl-dot.active {
  background-color: #fff !important;
  border: 1px solid #26778c !important;
}
.owl-dots .owl-dot span {
  font-size: 0;
  display: block;
  position: absolute;
  left: -100000;
}
section.parallax {
  width: 100%;
  background-color: #164194;
}
section.parallax .container {
  max-width: 100%;
}
section.parallax .container .row.parallax {
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 576px) {
  section.parallax .container .row.parallax {
    height: 200px !important;
    background-size: contain !important;
  }
}
@media (max-width: 990px) {
  section.parallax .container .row.parallax {
    background-size: contain !important;
  }
}
section .carousel.header .carousel-inner {
  position: relative;
}
section .carousel.header .carousel-inner .image-wrapper {
  overflow: hidden;
  position: relative;
}
section .carousel.header .carousel-inner .image-wrapper picture,
section .carousel.header .carousel-inner .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
  animation: kenburnsZoom 20s ease-in-out forwards;
}
section .carousel.header .carousel-inner .slidercontent {
  background: linear-gradient(140deg, rgba(94, 191, 72, 0.8) 0%, rgba(93, 190, 73, 0.8) 1%, rgba(5, 70, 165, 0.8) 100%);
  position: absolute;
  padding: 40px;
  width: auto;
  max-width: 50%;
}
section .carousel.header .carousel-inner .slidercontent.top-left {
  top: 50px;
  left: 100px;
}
section .carousel.header .carousel-inner .slidercontent.top-right {
  top: 50px;
  right: 100px;
}
section .carousel.header .carousel-inner .slidercontent.bottom-left {
  bottom: 50px;
  left: 100px;
}
section .carousel.header .carousel-inner .slidercontent.bottom-right {
  bottom: 50px;
  right: 100px;
}
section .carousel.header .carousel-inner .slidercontent .text-wrapper h1, section .carousel.header .carousel-inner .slidercontent .text-wrapper h2, section .carousel.header .carousel-inner .slidercontent .text-wrapper h3, section .carousel.header .carousel-inner .slidercontent .text-wrapper h4, section .carousel.header .carousel-inner .slidercontent .text-wrapper h6, section .carousel.header .carousel-inner .slidercontent .text-wrapper h6 {
  margin: 0;
  padding: 0;
  border: 0;
  text-transform: initial;
  color: #fff;
  font-size: 60px;
  margin-bottom: 20px;
  line-height: 120%;
  font-weight: 300;
}
section .carousel.header .carousel-inner .slidercontent .text-wrapper .text p {
  color: #fff;
  padding: 0;
  line-height: 130%;
  font-size: 21px;
  display: inline;
}
section .carousel.header .carousel-inner .slidercontent a.btn {
  margin-top: 20px;
  background: #fff !important;
  color: #f39200;
}
section .carousel.header .carousel-control-prev,
section .carousel.header .carousel-control-next {
  text-decoration: none !important;
  display: block;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: transparent;
  border: 0;
  padding: 10px;
  border-radius: 0;
  -webkit-border-radius: 0;
  opacity: 0.8;
}
section .carousel.header .carousel-control-prev .fa-solid,
section .carousel.header .carousel-control-next .fa-solid {
  top: 50%;
  font-size: 50px;
  display: block;
  position: relative;
}
section .carousel.header .carousel-control-prev {
  left: 20px;
}
section .carousel.header .carousel-control-next {
  right: 20px;
}
section .carousel.header .carousel-control-prev:hover,
section .carousel.header .carousel-control-prev:focus {
  background-color: transparent;
  border-color: transparent;
}
section .carousel.header .carousel-control-prev:hover .fa-solid,
section .carousel.header .carousel-control-prev:focus .fa-solid {
  color: #569782;
}
section .carousel.header .carousel-indicators li {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #000;
  background-color: #569782;
}
section .carousel.header .carousel-indicators li.active {
  background-color: #fff !important;
  border: 1px solid #569782 !important;
}
section .carousel.header .carousel-indicators li::marker {
  font-size: 0;
}

@media (max-width: 990px) {
  section .carousel.header .carousel-inner .slidercontent {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    bottom: initial;
    right: initial;
    width: 100%;
    max-width: initial;
    padding-bottom: 60px;
  }
  section .carousel.header .carousel-inner .slidercontent .text-wrapper .text h1, section .carousel.header .carousel-inner .slidercontent .text-wrapper .text h2, section .carousel.header .carousel-inner .slidercontent .text-wrapper .text h3, section .carousel.header .carousel-inner .slidercontent .text-wrapper .text h4 {
    font-size: 24px;
  }
  section .carousel.header .carousel-inner .slidercontent .text-wrapper .text p {
    font-size: 16px;
    line-height: 120%;
  }

  section .carousel.header .carousel-control-prev,
section .carousel.header .carousel-control-next {
    display: none;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  section .carousel.header .carousel-inner .slidercontent .text-wrapper .text h1, section .carousel.header .carousel-inner .slidercontent .text-wrapper .text h2, section .carousel.header .carousel-inner .slidercontent .text-wrapper .text h3, section .carousel.header .carousel-inner .slidercontent .text-wrapper .text h4 {
    font-size: 36px;
  }
  section .carousel.header .carousel-inner .slidercontent .text-wrapper .text p {
    font-size: 18px;
    line-height: 120%;
  }
}
section .carousel.content .carousel-item {
  padding-top: 140px;
  padding-bottom: 80px;
}
section .carousel.content .carousel-inner {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
section .carousel.content .carousel-inner header h1, section .carousel.content .carousel-inner header h2, section .carousel.content .carousel-inner header h3, section .carousel.content .carousel-inner header h4, section .carousel.content .carousel-inner header h5, section .carousel.content .carousel-inner header h6 {
  margin: 0;
  padding: 0;
  border: 0;
  text-transform: initial;
}
section .carousel.content .carousel-inner .image-wrapper {
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  background-size: cover;
  height: 250px;
}
section .carousel.content .carousel-inner .title {
  font-weight: 300;
  font-size: 30px;
  color: #569782;
  line-height: 100%;
  margin-bottom: 20px;
}
section .carousel.content .carousel-inner .call-for-help {
  margin-top: 20px;
}
section .carousel.content .carousel-inner .call-for-help .text {
  position: relative;
  padding-left: 70px;
}
section .carousel.content .carousel-inner .call-for-help .text .icon {
  position: absolute;
  left: 0;
  top: 0;
}
section .carousel.content .carousel-inner .call-for-help .text .icon i {
  font-size: 60px;
  color: #164194;
}
section .carousel.content .carousel-inner .call-for-help .text h4, section .carousel.content .carousel-inner .call-for-help .text h4 a {
  color: #164194;
  margin-bottom: 10px;
  font-weight: 100;
  line-height: 100%;
  font-size: 25px;
  text-decoration: none;
}
section .carousel.content .carousel-inner .text p {
  color: #144259;
  padding: 0;
  line-height: 110%;
  font-size: 22px;
  display: inline;
}
section .carousel.content .carousel-inner .text .btn {
  display: block;
  margin: 20px 0 40px 0;
  padding: 10px 20px;
  background-color: #569782;
  color: #fff;
  border: 1px solid #fff;
}
section .carousel.content .carousel-inner .accordions {
  margin-top: 20px;
}
section .carousel.content .carousel-inner .accordions .ce-accordion {
  margin-bottom: 20px;
}
section .carousel.content .carousel-inner .btn {
  margin-top: 20px;
}
section .carousel.content .carousel-control-prev,
section .carousel.content .carousel-control-next {
  text-decoration: none !important;
  display: block;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #569782;
  border: 1px solid #fff !important;
  padding: 10px;
  border-radius: 0;
  -webkit-border-radius: 0;
  opacity: 0.8;
}
section .carousel.content .carousel-control-prev .fa,
section .carousel.content .carousel-control-next .fa {
  transform: translate(0, -50%);
  top: 50%;
  font-size: 30px;
  display: block;
  position: relative;
  transition: all 0.6s ease;
}
section .carousel.content .carousel-control-prev {
  left: 20px;
}
section .carousel.content .carousel-control-next {
  right: 20px;
}
section .carousel.content .carousel-control-prev:hover,
section .carousel.content .carousel-control-prev:focus {
  background-color: #fff;
  border-color: #fff;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
}
section .carousel.content .carousel-control-prev:hover .fa,
section .carousel.content .carousel-control-prev:focus .fa {
  color: #569782;
  transform: translate(-10px, -50%);
}
section .carousel.content .carousel-control-next:hover,
section .carousel.content .carousel-control-next:focus {
  background-color: #fff;
  border-color: #fff;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
}
section .carousel.content .carousel-control-next:hover .fa,
section .carousel.content .carousel-control-next:focus .fa {
  color: #569782;
  transform: translate(10px, -50%);
}
section .carousel.content .carousel-indicators {
  top: 80px;
  height: 120px;
}
section .carousel.content .carousel-indicators li {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  border: 0;
  background-color: #164194;
  color: #000;
  position: relative;
  margin-right: 10px !important;
  margin-left: 10px !important;
  text-indent: 0 !important;
}
section .carousel.content .carousel-indicators li .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  text-align: center;
}
section .carousel.content .carousel-indicators li .icon i {
  transition: all 0.6s ease;
  display: block;
  left: 0;
  top: 0;
  color: black;
  font-size: 24px;
  text-align: center;
}
section .carousel.content .carousel-indicators li .tooltip-txt {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  color: #fff;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  background-color: #164194;
  white-space: nowrap;
}
section .carousel.content .carousel-indicators li .tooltip-txt::after {
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #164194;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
  position: absolute;
  content: "";
  z-index: 2;
}
section .carousel.content .carousel-indicators li.active {
  background-color: #164194 !important;
  color: #fff;
}
section .carousel.content .carousel-indicators li.active .icon i {
  color: #fff;
}
section .carousel.content .carousel-indicators li.active .tooltip-txt {
  display: block;
}

.swiper {
  height: 900px;
  position: relative;
  max-width: 1560px;
  padding: 0 20px;
}
.swiper .swiper-nav {
  width: 100%;
  height: 300px;
  z-index: 9;
  position: absolute;
  left: 0;
}
.swiper .swiper-nav.top {
  top: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+3,ffffff+99&1+0,1+39,0+100 */
  background: -moz-linear-gradient(top, white 0%, white 3%, white 25%, rgba(255, 255, 255, 0.02) 99%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, white 0%, white 3%, white 25%, rgba(255, 255, 255, 0.02) 99%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, white 0%, white 3%, white 25%, rgba(255, 255, 255, 0.02) 99%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.swiper .swiper-nav.bottom {
  bottom: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,0.8+26,0.8+75,1+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 26%, rgba(255, 255, 255, 0.8) 75%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 26%, rgba(255, 255, 255, 0.8) 75%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 26%, rgba(255, 255, 255, 0.8) 75%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
  /* IE6-9 */
}
.swiper .swiper-nav .swiper-button-prev {
  position: absolute;
  top: 22px;
  transform: translate(-48.5%, 0);
  transform: rotate(90deg);
  color: #164194;
  left: 49.1%;
  background-color: #fff;
}
.swiper .swiper-nav .swiper-button-next {
  top: initial;
  bottom: 22px;
  transform: translate(-48.5%, 0);
  transform: rotate(90deg);
  color: #164194;
  left: 49.1%;
  background-color: #fff;
  transition: all 0.6s ease;
}
.swiper .swiper-nav .swiper-button-next i {
  display: block;
  width: 22px;
  height: 22px;
  font-size: 22px;
}

.swiper-slide {
  height: 300px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/* history */
.swiper-slide.history h3 {
  border-bottom: 5px solid #164194;
  line-height: 120%;
  font-family: "Inter", sans-serif;
  font-size: 40px;
}
.swiper-slide.history h3.year {
  width: 40%;
  position: relative;
  bottom: 38px;
  padding: 0;
}
.swiper-slide.history h3.year span.text {
  position: absolute;
  z-index: 1;
  top: -42px;
  background-color: #164194;
  color: #fff;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  border: 4px solid #fff;
}
.swiper-slide.history h3.year span.dot {
  position: absolute;
  z-index: 1;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  top: 3px;
  background-color: #569782;
}
.swiper-slide.history .tl.col1, .swiper-slide.history .tr.col1 {
  height: 300px;
  margin: 0;
  padding: 0;
  border-right: 2px solid #164194;
}
.swiper-slide.history .tl.col1 h3, .swiper-slide.history .tr.col1 h3 {
  padding: 5px 20px 5px 0px;
}
.swiper-slide.history .tl.col1 h3.year, .swiper-slide.history .tr.col1 h3.year {
  float: right;
}
.swiper-slide.history .tl.col1 h3.year span.text, .swiper-slide.history .tr.col1 h3.year span.text {
  left: 0;
}
.swiper-slide.history .tl.col1 h3.year span.dot, .swiper-slide.history .tr.col1 h3.year span.dot {
  right: -12px;
}
.swiper-slide.history .tl.col1 div.bodytext, .swiper-slide.history .tr.col1 div.bodytext {
  padding: 0 20px 0 0;
}
.swiper-slide.history .tl.col1 .col-sm, .swiper-slide.history .tr.col1 .col-sm {
  display: none;
}
.swiper-slide.history .tl.col2, .swiper-slide.history .tr.col2 {
  height: 300px;
  margin: 0;
  padding: 0;
  border-left: 2px solid #164194;
}
.swiper-slide.history .tl.col2 h3, .swiper-slide.history .tr.col2 h3 {
  padding: 5px 0px 5px 20px;
}
.swiper-slide.history .tl.col2 h3.year span.text, .swiper-slide.history .tr.col2 h3.year span.text {
  right: 0;
}
.swiper-slide.history .tl.col2 h3.year span.dot, .swiper-slide.history .tr.col2 h3.year span.dot {
  left: -12px;
}
.swiper-slide.history .tl.col2 div.bodytext, .swiper-slide.history .tr.col2 div.bodytext {
  padding: 0 0 0 20px;
}
.swiper-slide.history .tl.col2 h3.col-sm, .swiper-slide.history .tr.col2 h3.col-sm {
  display: none;
}

@media (max-width: 768px) {
  .swiper {
    height: 600px;
  }
  .swiper .swiper-nav {
    height: 150px;
  }

  .swiper-slide.history h3.headline {
    font-size: 22px;
    margin-bottom: 40px;
    padding-right: 100px !important;
  }
  .swiper-slide.history h3.year {
    display: none;
  }
  .swiper-slide.history .wrap-year {
    display: none;
  }
  .swiper-slide.history h3.col-sm {
    position: absolute;
    display: block !important;
    right: 0;
    top: -11px;
    background-color: #164194;
    color: #fff;
    text-align: center;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
    -webkit-border-radius: 70px;
    border-radius: 70px;
  }
  .swiper-slide.history .wrap-text {
    position: relative;
  }
  .swiper-slide.history .tl.col1, .swiper-slide.history .tr.col1 {
    height: 300px;
    border-right: 0;
  }
  .swiper-slide.history .tl.col1 h3, .swiper-slide.history .tr.col1 h3 {
    padding: 0;
  }
  .swiper-slide.history .tl.col1 div.bodytext, .swiper-slide.history .tr.col1 div.bodytext {
    padding: 0;
  }
  .swiper-slide.history .tl.col1 h3.col-sm, .swiper-slide.history .tr.col1 h3.col-sm {
    display: block;
  }
  .swiper-slide.history .tl.col2, .swiper-slide.history .tr.col2 {
    height: 300px;
    border-left: 0;
  }
  .swiper-slide.history .tl.col2 h3, .swiper-slide.history .tr.col2 h3 {
    padding: 0;
  }
  .swiper-slide.history .tl.col2 div.bodytext, .swiper-slide.history .tr.col2 div.bodytext {
    padding: 0;
  }
  .swiper-slide.history .tl.col2 h3.col-sm, .swiper-slide.history .tr.col2 h3.col-sm {
    display: block;
  }
}
@media (min-width: 767px) and (max-width: 990px) {
  .swiper-slide.history h3.year {
    top: 38px;
  }
  .swiper-slide.history .bodytext p {
    font-size: 14px !important;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .swiper-slide.history h3.year {
    top: 38px;
  }
  .swiper-slide.history .bodytext p {
    font-size: 15px !important;
  }
}
@media (min-width: 1201px) {
  .swiper-slide.history h3.year {
    top: 38px;
  }
  .swiper-slide.history .bodytext p {
    font-size: 15px !important;
  }
}
.grid.teaser .row .ce-teaser {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .grid.teaser .row {
    display: block !important;
    flex-wrap: initial !important;
    column-count: 2 !important;
    column-gap: 1em !important;
  }
  .grid.teaser .row .ce-teaser {
    break-inside: avoid !important;
    margin-bottom: 40px !important;
  }
}

.testimonial .ce-testimonial {
  padding: 20px 20px 20px 20px;
}
.testimonial .ce-testimonial .wrapper h3 {
  margin: 0;
  padding: 0;
  border: 0;
  text-transform: initial;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1em;
  letter-spacing: 0px;
  margin: 40px 0 16px 0;
}
.testimonial .ce-testimonial .wrapper p {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px !important;
  font-weight: 400;
}
.testimonial .ce-testimonial .wrapper .image {
  text-align: center;
}
.testimonial .ce-testimonial .wrapper .image img {
  border-radius: 200px;
}
.testimonial .ce-testimonial .wrapper .link {
  text-align: center;
  display: block;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

/** extensions */
.cookie-consent-container {
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  font-family: Helvetica Light, sans-serif;
  font-weight: 300;
  color: #164194;
  font-size: 16px;
  line-height: 110%;
}

.cookie-consent-container .detail {
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.cookie-consent-container .detail.open {
  height: auto;
  width: 100%;
  visibility: visible;
  opacity: 1;
  overflow: auto;
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}

.cookie-consent-container .text-center {
  text-align: center;
}

.cookie-consent-container p {
  margin: 0 0 15px 0;
}

.cookie-consent-container a, .cookie-consent-container a:visited, .cookie-consent-container a:active, .cookie-consent-container a:focus, .cookie-consent-container a:focus:active {
  color: #144259;
  text-decoration: none;
}

.cookie-consent-container a:hover, .cookie-consent-container a:visited:hover, .cookie-consent-container a:active:hover, .cookie-consent-container a:focus:hover, .cookie-consent-container a:focus:active:hover {
  transition: all 0.5s ease-in-out;
}

.cookie-consent-container a.show-details, .cookie-consent-container a:visited.show-details, .cookie-consent-container a:active.show-details, .cookie-consent-container a:focus.show-details, .cookie-consent-container a:focus:active.show-details {
  display: block;
  position: relative;
  padding-right: 20px;
  font-size: 16px;
  margin-bottom: 40px;
}

@media all and (min-width: 660px) {
  .cookie-consent-container a.show-details, .cookie-consent-container a:visited.show-details, .cookie-consent-container a:active.show-details, .cookie-consent-container a:focus.show-details, .cookie-consent-container a:focus:active.show-details {
    margin-bottom: 15px;
  }
}
.cookie-consent-container a.show-details:after, .cookie-consent-container a:visited.show-details:after, .cookie-consent-container a:active.show-details:after, .cookie-consent-container a:focus.show-details:after, .cookie-consent-container a:focus:active.show-details:after {
  content: "";
  width: 0;
  height: 0;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #144259 transparent transparent transparent;
  margin: 7px 0 0 5px;
  position: absolute;
  top: 0;
}

.cookie-consent-container a.show-details:hover:after, .cookie-consent-container a:visited.show-details:hover:after, .cookie-consent-container a:active.show-details:hover:after, .cookie-consent-container a:focus.show-details:hover:after, .cookie-consent-container a:focus:active.show-details:hover:after {
  transition: all 0.5s ease-in-out;
  border-color: #144259 transparent transparent transparent;
}

.cookie-consent-container a.show-details .less, .cookie-consent-container a:visited.show-details .less, .cookie-consent-container a:active.show-details .less, .cookie-consent-container a:focus.show-details .less, .cookie-consent-container a:focus:active.show-details .less {
  display: none;
}

.cookie-consent-container a.show-details.open .more, .cookie-consent-container a:visited.show-details.open .more, .cookie-consent-container a:active.show-details.open .more, .cookie-consent-container a:focus.show-details.open .more, .cookie-consent-container a:focus:active.show-details.open .more {
  display: none;
}

.cookie-consent-container a.show-details.open .less, .cookie-consent-container a:visited.show-details.open .less, .cookie-consent-container a:active.show-details.open .less, .cookie-consent-container a:focus.show-details.open .less, .cookie-consent-container a:focus:active.show-details.open .less {
  display: inline-block;
}

.cookie-consent-container a.show-details.open:after, .cookie-consent-container a:visited.show-details.open:after, .cookie-consent-container a:active.show-details.open:after, .cookie-consent-container a:focus.show-details.open:after, .cookie-consent-container a:focus:active.show-details.open:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(1800deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cookie-consent-container .label {
  color: #164194;
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  margin: 0 0 12px 0;
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cookie-consent-container .label.partially-checked .checkmark {
  background-color: #164194;
}

.cookie-consent-container .label.partially-checked .checkmark:after {
  display: none;
}

.cookie-consent-container .label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.cookie-consent-container .label input:checked ~ .checkmark {
  background-color: #164194;
}

.cookie-consent-container .label input:checked ~ .checkmark:after {
  display: block;
}

.cookie-consent-container .label input:disabled:checked ~ .checkmark {
  opacity: 0.6;
}

.cookie-consent-container .label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background: #164194 !important;
  border: 1px solid #144259;
}

.cookie-consent-container .label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 0;
  width: 7px;
  height: 15px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cookie-consent-container .consent-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: 90%;
  height: 590px;
  max-height: calc(100vh - 50px);
  min-height: 295px;
  margin: auto;
  padding: 1em;
  background-color: #fff;
  overflow-y: auto;
  -webkit-box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  transition: all 0.5s ease-in-out;
}
.cookie-consent-container .consent-modal a:hover {
  color: #569782;
}

@media all and (min-width: 500px) {
  .cookie-consent-container .consent-modal {
    height: 460px;
  }
}
@media all and (min-width: 900px) {
  .cookie-consent-container .consent-modal {
    height: 448px;
    max-height: calc(100vh - 100px);
  }
}
.cookie-consent-container .consent-modal .option-wrapper {
  background: #eee;
  padding: 15px;
  margin-bottom: 15px;
}

.cookie-consent-container .consent-modal .option-wrapper:last-child {
  margin-bottom: 0;
}

.cookie-consent-container .consent-modal .option-wrapper p:last-child {
  margin-bottom: 0;
}

.cookie-consent-container .consent-modal .option-wrapper .option-headline {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper {
  margin-bottom: 10px;
  border-bottom: 2px solid #afafaf;
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper:last-child {
  margin-bottom: 0;
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail {
  border-bottom: 1px solid #ddd;
  padding: 10px 5px;
  font-size: 16px;
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail:last-child {
  border-bottom: none;
  padding-bottom: 6px;
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail.cookie-option {
  background: #dedede;
  font-size: 16px;
  font-weight: 400;
  transition: all ease-in-out 0.5s;
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail.cookie-option:hover {
  background: #d4d0d0;
  transition: all ease-in-out 0.5s;
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail.cookie-option:hover ~ .option-detail {
  background: #f3f3f3;
  transition: all ease-in-out 0.5s;
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail.cookie-option .label {
  color: #164194;
  text-align: left;
  font-weight: 400;
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail .option-title {
  font-weight: 400;
  width: 100%;
  text-align: left;
  display: inline-block;
  vertical-align: top;
}

@media all and (min-width: 500px) {
  .cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail .option-title {
    width: 30%;
  }
}
.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail .option-value {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

@media all and (min-width: 500px) {
  .cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail .option-value {
    width: 69%;
  }
}
.cookie-consent-container .consent-modal .option-wrapper .label {
  margin-bottom: 0;
  padding: 0 20px 0 0;
  width: 100%;
}

.cookie-consent-container .consent-modal .option-wrapper .label .checkmark {
  right: 0;
  left: inherit;
  background: #eee;
  border: 1px solid #bfbfbf;
}

.cookie-consent-container .consent-modal .option-wrapper .label input:checked ~ .checkmark {
  background-color: #164194;
}

.cookie-consent-container .consent-modal .cookie-headline {
  margin: 0 0 15px 0;
  color: #164194;
  display: block;
  font-size: 21px;
  font-weight: 400;
}

.cookie-consent-container .consent-modal.open {
  max-width: 750px;
  height: calc(100vh - 50px);
}

.cookie-consent-container .consent-modal .options {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}

.cookie-consent-container .consent-modal .options li {
  margin-bottom: 5px;
}

@media all and (min-width: 500px) {
  .cookie-consent-container .consent-modal .options li {
    width: 49%;
    display: inline-block;
  }
}
.cookie-consent-container .consent-modal .footer-links {
  display: block;
  width: 100%;
  font-size: 16px !important;
}
.cookie-consent-container .consent-modal .footer-links a {
  font-size: 16px !important;
  color: #164194;
  font-weight: 300;
}
.cookie-consent-container .consent-modal .footer-links a:hover {
  color: #164194;
}

.cookie-consent-container .buttons {
  margin-bottom: 20px;
  font-size: 16px !important;
}

@media all and (min-width: 660px) {
  .cookie-consent-container .buttons {
    margin-bottom: 20px;
  }
}
.cookie-consent-container .buttons .btn {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 14px 20px;
  line-height: 120%;
  -webkit-border-radius: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  background-color: #b80e80;
  text-transform: uppercase;
  cursor: pointer;
  clear: both;
  line-height: 100%;
  width: 100%;
  border: 0;
  text-align: center;
  font-size: 16px !important;
  background-color: #164194 !important;
  border: 0 !important;
}
.cookie-consent-container .buttons .btn i {
  margin-right: 10px;
}
.cookie-consent-container .buttons .btn:hover {
  background-color: #b80e80;
  color: #fff;
}
.cookie-consent-container .buttons .btn:disabled {
  color: #b80e80;
  cursor: not-allowed;
}
.cookie-consent-container .buttons .btn:hover {
  transition: all 0.5s ease-in-out;
}

.cookie-consent-container .buttons .btn--primary {
  background: #164194;
  color: #fff;
  border: 1px solid #164194;
  margin-bottom: 10px;
}

.cookie-consent-container .buttons .btn--primary:hover {
  background-color: #164194;
  border: 1px solid #569782;
}

.cookie-consent-container .buttons .btn--secondary {
  background: transparent;
  color: #164194;
  background-color: #164194;
  border: 1px solid #164194;
}

.cookie-consent-container .buttons .btn--secondary:hover {
  background-color: #164194 !important;
  border: 1px solid #164194;
  opacity: 1;
}

.cookie-consent-settings {
  margin-bottom: 10px;
}

.cookie-consent-settings .detail {
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.cookie-consent-settings .detail.open {
  height: auto;
  width: 100%;
  visibility: visible;
  opacity: 1;
  overflow: auto;
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}

.cookie-consent-replacement {
  background-color: rgba(22, 65, 148, 0.9);
  text-align: center;
  height: initial !important;
  position: relative;
}
.cookie-consent-replacement .btn-primary {
  position: absolute;
  bottom: 10px;
  width: 90%;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 5px 0 !important;
}
.cookie-consent-replacement a {
  color: #fff;
}
.cookie-consent-replacement * {
  height: initial !important;
  padding: initial !important;
}
.cookie-consent-replacement .preview-image img {
  width: 100%;
  height: auto;
}

.indexedsearch-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.tx-indexedsearch-searchbox form {
  margin-bottom: 40px;
}
.tx-indexedsearch-searchbox form fieldset legend {
  display: none;
}
.tx-indexedsearch-searchbox form fieldset .input-group input.tx-indexedsearch-searchbox-sword {
  border-right: 0;
  height: 53px;
  line-height: 53px;
}
.tx-indexedsearch-searchbox form .tx-indexedsearch-searchbox-button {
  width: 100%;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
.tx-indexedsearch-searchbox a.btn-basic {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 14px 20px;
  line-height: 120%;
  -webkit-border-radius: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  background-color: #b80e80;
  text-transform: uppercase;
  border-color: #144259;
}
.tx-indexedsearch-searchbox a.btn-basic i {
  margin-right: 10px;
}
.tx-indexedsearch-searchbox a.btn-basic:hover {
  background-color: #b80e80;
  color: #fff;
}
.tx-indexedsearch-searchbox a.btn-basic:disabled {
  color: #b80e80;
  cursor: not-allowed;
}
.tx-indexedsearch-info-sword {
  margin: 20px 0;
  border-top: 1px solid #164194;
  border-bottom: 1px solid #164194;
  text-align: center;
  font-size: 1.2rem;
}
.tx-indexedsearch-searched {
  clear: both;
  margin: 40px 0;
  text-align: center;
}

.tx-indexedsearch-result-number {
  display: none;
}

.tx-indexedsearch-browsebox {
  margin: 20px 0 !important;
  padding: 20px !important;
  position: relative !important;
  clear: both !important;
  width: 100% !important;
  text-align: center;
  margin: 0 0 40px 0 !important;
  padding-top: 0 !important;
  border-bottom: 1px solid #164194;
}
.tx-indexedsearch-browsebox > ul {
  display: inline-block !important;
  width: auto !important;
  clear: both !important;
  margin: 20px 0 0 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
  list-style-image: none;
  overflow: hidden;
  border: 0;
}
.tx-indexedsearch-browsebox > ul li {
  margin: 5px !important;
  padding: 0;
  list-style-type: none;
  background: none;
  display: inline-block !important;
  font-size: 21px;
  font-weight: normal;
  height: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle !important;
}
.tx-indexedsearch-browsebox > ul li a {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 14px 20px;
  line-height: 120%;
  -webkit-border-radius: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  background-color: #b80e80;
  text-transform: uppercase;
}
.tx-indexedsearch-browsebox > ul li a i {
  margin-right: 10px;
}
.tx-indexedsearch-browsebox > ul li a:hover {
  background-color: #b80e80;
  color: #fff;
}
.tx-indexedsearch-browsebox > ul li a:disabled {
  color: #b80e80;
  cursor: not-allowed;
}
.tx-indexedsearch-browsebox > ul li a:hover {
  background: none;
  color: #164194;
}
.tx-indexedsearch-browsebox > ul li.previous a {
  font-size: 0;
}
.tx-indexedsearch-browsebox > ul li.previous a::before {
  content: "\f104";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  font-size: 21px;
}
.tx-indexedsearch-browsebox > ul li.next a {
  font-size: 0;
}
.tx-indexedsearch-browsebox > ul li.next a::after {
  content: "\f105";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  font-size: 21px;
}
.tx-indexedsearch-browsebox > ul li.current, .tx-indexedsearch-browsebox > ul li.tx-indexedsearch-browselist-currentPage {
  display: block;
  padding: 0 10px;
  width: auto;
  border: 0;
  cursor: pointer;
  background: none;
  color: #164194;
}
.tx-indexedsearch-browsebox > ul li.current a, .tx-indexedsearch-browsebox > ul li.tx-indexedsearch-browselist-currentPage a {
  color: #164194;
}
@media (max-width: 480px) {
  .tx-indexedsearch-browsebox {
    padding: 0 !important;
  }
  .tx-indexedsearch-browsebox .f3-widget-paginator li.previous a {
    margin-right: 0;
  }
  .tx-indexedsearch-browsebox .f3-widget-paginator li.next a {
    margin-left: 0;
  }
}

.tx-indexedsearch-res {
  margin-bottom: 20px;
  border-bottom: 1px solid #164194;
  padding-bottom: 20px;
}
.tx-indexedsearch-res h3 {
  position: relative;
  border: 0;
  padding-left: 0;
}
.tx-indexedsearch-res h3 .tx-indexedsearch-title a {
  font-family: "Inter", sans-serif;
  line-height: 140%;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 20px 0 18px 0;
  padding: 0;
  color: #164194;
  border: 0;
  padding-left: 0;
  text-decoration: none;
  font-size: 23px !important;
}
.tx-indexedsearch-res .tx-indexedsearch-percent {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  background: #164194;
  color: #144259;
  padding: 5px;
  font-size: 12px;
  font-family: "Inter", sans-serif;
}

.tx-indexedsearch-advanced.form-control {
  margin: 30px 0 0 0;
}
.tx-indexedsearch-advanced.form-control label {
  width: 100%;
}

.news.container {
  margin: 0 auto;
  padding: 0;
}
.news.container.template-layout-1 .no-news-found {
  font-family: "Inter", sans-serif;
  line-height: 140%;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 20px 0 18px 0;
  padding: 0;
  color: #164194;
  color: #fff;
  padding: 10px 0;
}

.news-list-view {
  padding: 0;
  margin-bottom: 40px;
}
.news-list-view .article {
  padding: 0;
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.news-list-view .article .inner {
  margin: 0;
  padding-bottom: 60px;
  text-align: left;
  border-radius: 0;
  -webkit-border-radius: 0;
  border: 1px solid #164194;
  background-color: #fff;
  position: relative;
  height: 100%;
}
.news-list-view .article .inner .news-img-wrap {
  position: relative;
}
.news-list-view .article .inner:hover .news-img-wrap img {
  transition: all 0.6s ease;
  filter: saturate(2.2);
  opacity: 0.8;
  transform: scale(1.02);
}
.news-list-view .article .inner .news-list-date {
  min-height: 30px;
  display: block;
  color: #164194;
  padding: 0 30px 0 10px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  hyphens: auto;
}
.news-list-view .article .inner .news-list-date i {
  display: none;
}
.news-list-view .article .inner .header {
  padding: 10px;
  min-height: 74px;
}
.news-list-view .article .inner .header h3 a {
  text-decoration: none;
  color: #26778c;
  hyphens: auto;
}
.news-list-view .article .inner .news-img-wrap {
  border-top: 1px solid #164194;
  border-bottom: 1px solid #164194;
  padding: 0;
}
.news-list-view .article .inner .news-img-wrap img {
  width: 100%;
  height: auto;
}
.news-list-view .article .inner .teaser-text {
  padding: 10px;
  color: #26778c;
}
.news-list-view .article .inner .btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.news-list-view .article .inner .news-list-category {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/* Teaser Container */
.container.full-width .news.container.template-layout-1 {
  width: 100%;
  max-width: 100%;
  background-color: #164194;
}
.container.full-width .news.container.template-layout-1 .news-list-view {
  max-width: 1140px;
  margin: 0 auto !important;
  padding: 10px 0;
}

.news-list-view.teaser .inner {
  border: initial;
  border-radius: initial;
  -webkit-border-radius: initial;
  background-color: initial;
  padding-bottom: 70px;
}
.news-list-view.teaser .inner * {
  color: #fff;
}
.news-list-view.teaser .inner .header {
  padding: 0;
  margin: 0;
}
.news-list-view.teaser .inner .btn {
  bottom: 0;
  left: 0;
}

@media (max-width: 575px) {
  .news-list-view.teaser .article {
    margin-bottom: 40px;
  }
  .news-list-view.teaser .article .inner .header {
    min-height: initial;
  }
}
#content ul.news-category {
  list-style: none !important;
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: right;
}
#content ul.news-category li {
  display: inline-block;
}
#content ul.news-category li a {
  display: block;
  border: 1px solid #164194;
  border-radius: 0;
  -webkit-border-radius: 0;
  text-decoration: none;
  padding: 0 10px;
  line-height: 30px;
  margin-left: 10px;
}
#content ul.news-category li a.active, #content ul.news-category li a:hover {
  border-color: #f39200;
  color: #f39200;
}

@media (max-width: 480px) {
  #content ul.news-category {
    display: block;
  }
  #content ul.news-category li {
    display: block;
    width: 100%;
  }
  #content ul.news-category li a {
    margin: 0 0 10px 0;
  }
}
.news.news-single .news-single-single {
  margin-top: 30px;
}
.news.news-single .news-sidebar {
  position: relative;
}
.news.news-single .news-sidebar .news-date {
  color: #164194;
  height: 30px;
  line-height: 30px;
  position: relative;
  font-weight: 500;
}
.news.news-single .news-sidebar .news-date i {
  display: none;
}
.news.news-single .news-sidebar .news-list-category {
  position: absolute;
  top: 0;
  right: 10px;
}
.news.news-single .mediaelement {
  position: relative;
}
.news.news-single .footer {
  margin-top: 40px;
}
.news.news-single .footer .pager {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none;
  display: flex;
}
.news.news-single .footer .pager li {
  width: 50%;
  list-style: none;
  position: relative;
}
.news.news-single .footer .pager li a {
  text-decoration: none;
}
.news.news-single .footer .pager li a .label {
  text-transform: uppercase !important;
  font-size: 14px;
  color: #144259 !important;
}
.news.news-single .footer .pager li a .title {
  font-size: 12px;
}
.news.news-single .footer .pager li i.fa {
  position: absolute;
  top: 8px;
  color: #164194;
  font-size: 30px;
}
.news.news-single .footer .pager li.previous {
  padding-left: 30px;
}
.news.news-single .footer .pager li.previous i.fa {
  left: 0;
}
.news.news-single .footer .pager li.next {
  text-align: right;
  padding-right: 30px;
  float: right;
}
.news.news-single .footer .pager li.next i.fa {
  right: 0;
}
.news.news-single .footer .news-backlink-wrap {
  display: flex;
  justify-content: end;
}

/** forms */
/* ==========================================================================
   Form
   ========================================================================== */
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=url],
textarea,
select,
.select-selected {
  position: relative;
  display: block;
  border: 1px solid #144259 !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  min-width: initial;
  max-width: initial;
  padding: 0 15px !important;
  color: #144259;
  font-size: 21px !important;
  font-weight: 300 !important;
  line-height: 50px !important;
  height: 50px;
  margin-bottom: 0;
  background-color: #fff !important;
}

.btn, .btn-primary, input[type=submit] {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 14px 20px;
  line-height: 120%;
  -webkit-border-radius: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  background-color: #b80e80;
  text-transform: uppercase;
}
.btn i, .btn-primary i, input[type=submit] i {
  margin-right: 10px;
}
.btn:hover, .btn-primary:hover, input[type=submit]:hover {
  background-color: #b80e80;
  color: #fff;
}
.btn:disabled, .btn-primary:disabled, input[type=submit]:disabled {
  color: #b80e80;
  cursor: not-allowed;
}
textarea {
  min-height: 140px !important;
}

.button-container input[type=file]::file-selector-button {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 21px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 14px 20px;
  line-height: 120%;
  -webkit-border-radius: 0;
  border: 0;
  border-radius: 0;
  width: auto;
  background-color: #b80e80;
  text-transform: uppercase;
  display: block;
  width: 100%;
}
.button-container input[type=file]::file-selector-button i {
  margin-right: 10px;
}
.button-container input[type=file]::file-selector-button:hover {
  background-color: #b80e80;
  color: #fff;
}
.button-container input[type=file]::file-selector-button:disabled {
  color: #b80e80;
  cursor: not-allowed;
}
/* Formular Grundlayout */
form .form-group {
  position: relative;
}
form .form-group .form-label {
  font-weight: 500;
}
form .form-group .input.checkbox .form-check {
  padding-left: 0;
}
form .form-group .input.checkbox .form-check .form-check-label {
  font-weight: 300;
}

/* TYPO3 Formular Manager */
.frame-type-form_formframework {
  text-align: left;
  position: relative;
  clear: both;
  border-bottom: 0;
}
.frame-type-form_formframework form .row {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.frame-type-form_formframework form .form-group {
  margin-top: 20px;
  padding-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.frame-type-form_formframework * {
  text-align: left;
}
.frame-type-form_formframework legend, .frame-type-form_formframework form > h2 {
  display: none;
}
.frame-type-form_formframework h2 {
  margin: 0;
  padding: 0;
  border: 0;
  text-transform: initial;
  font-size: 21px;
  color: #144259;
  margin: 0;
  padding: 0;
  font-weight: 500;
}
.frame-type-form_formframework .actions {
  margin: 40px 0;
}
.frame-type-form_formframework .actions .form-navigation .btn-toolbar .btn-group .btn-group {
  margin-right: 20px;
}
.frame-type-form_formframework span.help-block {
  display: inline-block;
  padding: 0;
  font-size: 13px;
}

/** libs */
/* ==========================================================================
   datatables
   ========================================================================== */
/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
   * Header and footer styles
   */
  /*
   * Body styles
   */
}
table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}
table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 0;
}
table.dataTable thead th:active,
table.dataTable thead td:active {
  outline: none;
}
table.dataTable tfoot th,
table.dataTable tfoot td {
  padding: 10px 18px 6px 18px;
  border-top: 0;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  *cursor: hand;
  background-repeat: no-repeat;
  background-position: center right;
}
table.dataTable thead .sorting {
  background-image: url("../Img/Datatables/sort_both.png");
}
table.dataTable thead .sorting_asc {
  background-image: url("../Img/Datatables/sort_asc.png") !important;
}
table.dataTable thead .sorting_desc {
  background-image: url("../Img/Datatables/sort_desc.png") !important;
}
table.dataTable thead .sorting_asc_disabled {
  background-image: url("../Img/Datatables/sort_asc_disabled.png");
}
table.dataTable thead .sorting_desc_disabled {
  background-image: url("../Img/Datatables/sort_desc_disabled.png");
}
table.dataTable tbody tr {
  background-color: #fff;
}
table.dataTable tbody tr.selected {
  background-color: #fff;
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px;
}
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  border-top: 0;
}
table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
  border-top: none;
}
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  border-top: 0;
  border-right: 0;
}
table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
  border-left: 0;
}
table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
  border-top: none;
}
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  background-color: #153f91;
}
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
  background-color: #153f91;
}
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
  background-color: #f6f6f6;
}
table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
  background-color: #f6f6f6;
}
table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
table.dataTable.display tbody tr > .sorting_2,
table.dataTable.display tbody tr > .sorting_3 {
  background-color: #fafafa;
}
table.dataTable.order-column tbody tr.selected > .sorting_1,
table.dataTable.order-column tbody tr.selected > .sorting_2,
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
table.dataTable.display tbody tr.selected > .sorting_2,
table.dataTable.display tbody tr.selected > .sorting_3 {
  background-color: #fafafa;
}
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background-color: #153d8c;
}
table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
  background-color: #153e8d;
}
table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
  background-color: #153e8e;
}
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
  background-color: #153d8c;
}
table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
  background-color: #153e8d;
}
table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
  background-color: #153e8e;
}
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  background-color: #fafafa;
}
table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
  background-color: #fcfcfc;
}
table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
  background-color: #fefefe;
}
table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
  background-color: #fafafa;
}
table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
  background-color: #fcfcfc;
}
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
  background-color: #fefefe;
}
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  background-color: #eaeaea;
}
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  background-color: #ececec;
}
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  background-color: #efefef;
}
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  background-color: #eaeaea;
}
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  background-color: #ececec;
}
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  background-color: #efefef;
}
table.dataTable.no-footer {
  border-bottom: 0;
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable.compact thead th,
table.dataTable.compact thead td {
  padding: 4px 17px;
}
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
  padding: 4px;
}
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

table.dataTable,
table.dataTable th,
table.dataTable td {
  box-sizing: content-box;
}

/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
  zoom: 1;
}
.dataTables_wrapper .dataTables_length {
  float: left;
}
.dataTables_wrapper .dataTables_length select {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  padding: 4px;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}
.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  margin-left: 3px;
}
.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}
.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 40px;
  padding: 0 10px;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  color: #red !important;
  border: 1px solid transparent;
  border-radius: 2px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #red !important;
  border: 1px solid #040c1c;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #164194;
  background-color: #5385e5;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5385e5), color-stop(100%, #164194));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #5385e5 0%, #164194 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #5385e5 0%, #164194 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #5385e5 0%, #164194 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #5385e5 0%, #164194 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #5385e5 0%, #164194 100%);
  /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #1d55c0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1d55c0), color-stop(100%, #153d8b));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #1d55c0 0%, #153d8b 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #1d55c0 0%, #153d8b 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #1d55c0 0%, #153d8b 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #1d55c0 0%, #153d8b 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #1d55c0 0%, #153d8b 100%);
  /* W3C */
  box-shadow: inset 0 0 3px #111;
}
.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}
.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1em;
  background-color: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #red;
}
.dataTables_wrapper .dataTables_scroll {
  clear: both;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  *margin-top: -1px;
  -webkit-overflow-scrolling: touch;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
  vertical-align: middle;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 0;
}
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
  border-bottom: none;
}
.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}
/** page */
html {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

body {
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
body .extbase-debugger {
  position: relative;
  z-index: 9999;
  display: none;
}
body .btn-top {
  border: 0;
  position: fixed;
  z-index: 99;
  bottom: 40px;
  right: 0px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background-color: #569782;
  padding: 0;
}
body .btn-top i {
  font-size: 30px;
  color: #fff;
  position: relative;
  top: 1px;
}
body .msg {
  color: #164194;
  padding: 20px;
  border: 2px solid #164194;
  margin: 0 0 20px 0;
  background: #eee;
  font-weight: 500;
}
body .msg.warning {
  color: orange;
  border: 2px solid orange;
}
body .msg.notice {
  color: #164194;
  border: 2px #164194;
}
body .msg.error {
  color: red;
  border: 2px solid red;
}
body .msg.success {
  color: green;
  border: 2px solid green;
}
body ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #569782 !important;
  font-weight: 300;
  opacity: 1;
  /* Firefox */
  font-size: 1em;
}
body :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #569782 !important;
  font-size: 14px;
  text-transform: uppercase;
}
body ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #569782 !important;
  font-size: 14px;
  text-transform: uppercase;
}
body .form-control:focus, body input:focus, body form .btn:focus {
  border-color: #f39200 !important;
  -webkit-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
  color: #164194 !important;
  background-color: #fff !important;
}
body .modal-dialog {
  width: 80%;
  max-width: 960px;
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 40px;
  margin: 0 auto;
}
body .modal-dialog .modal-content {
  background-color: #fff !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
}
body .modal-dialog .modal-content .modal-header {
  padding: 0;
  border: 0;
  width: 100%;
  height: 40px;
  position: relative;
}
body .modal-dialog .modal-content .modal-header .modal-close {
  cursor: pointer;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: -40px;
  top: 0;
  text-decoration: none;
  text-align: center;
  font-style: normal;
  font-size: 40px;
  background-color: transparent;
}
body .modal-dialog .modal-content .modal-header .modal-close i {
  font-size: 30px;
}
body .modal-dialog .modal-content .modal-body {
  padding: 0;
}
body .modal-dialog .modal-content .modal-body #ajaxContainer #content {
  padding: 0 40px;
  min-height: initial;
}
body .modal-dialog .modal-content .modal-body #ajaxContainer #content * {
  text-align: left;
}
body .modal-dialog .modal-content .modal-body #ajaxContainer #content > section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
body .modal-dialog .modal-content .modal-body #ajaxContainer #content .ce-teaser-info .wrapper {
  padding: 0;
}
body .modal-dialog .modal-content .modal-body #ajaxContainer #content .ce-teaser-info .wrapper .wrapper-image {
  padding: 60px;
}
body .modal-dialog .modal-content .modal-body #ajaxContainer #content .ce-teaser-info .wrapper .wrapper-text {
  padding: 60px;
}
body .modal-dialog .modal-content .modal-body #ajaxContainer #content .ce-teaser-info .wrapper .wrapper-text table.contenttable {
  width: 100% !important;
  height: auto;
}
body .modal-dialog .modal-content .modal-body #ajaxContainer #content .ce-teaser-info .wrapper .wrapper-text table.contenttable td {
  padding-right: 5px;
}
body .modal-dialog .modal-content .modal-footer {
  padding: 40px;
}
body :not(.do-not-animate) .fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.7s;
}
body :not(.do-not-animate) .fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
body .do-not-animate .fade-in-on-scroll {
  opacity: 1 !important;
}
body :not(.do-not-animate) .h1 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.7s;
}
body :not(.do-not-animate) .h1.visible {
  opacity: 1;
  transform: translateY(0);
}
body .do-not-animate .h1 {
  opacity: 1 !important;
}
body :not(.do-not-animate) .h2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.7s;
}
body :not(.do-not-animate) .h2.visible {
  opacity: 1;
  transform: translateY(0);
}
body .do-not-animate .h2 {
  opacity: 1 !important;
}
body :not(.do-not-animate) .p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.7s;
}
body :not(.do-not-animate) .p.visible {
  opacity: 1;
  transform: translateY(0);
}
body .do-not-animate .p {
  opacity: 1 !important;
}
body :not(.do-not-animate) .img-fluid {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.7s;
}
body :not(.do-not-animate) .img-fluid.visible {
  opacity: 1;
  transform: translateY(0);
}
body .do-not-animate .img-fluid {
  opacity: 1 !important;
}

body.modal-open .mm-slideout {
  z-index: inherit;
}

#page {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  padding-top: 80px;
  transition: all 0.6s ease;
}

#sidebar {
  transition: all 0.6s ease;
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 300px;
  height: 100%;
  background-color: #569782;
  padding: 45px;
}
#sidebar .ce-logo {
  position: relative;
  max-height: 152px;
  overflow: hidden;
  margin-bottom: 40px;
}
#sidebar .ce-logo img {
  max-height: 152px;
}
#sidebar nav.main {
  position: relative;
}
#sidebar nav.main ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#sidebar nav.main li {
  padding: 0;
  margin: 0;
  text-indent: 0;
}
#sidebar nav.main li::before {
  content: "" !important;
  padding-right: 0 !important;
  display: initial !important;
  width: auto !important;
  text-align: center;
}
#sidebar nav.main ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.25em;
  margin: 20px 0;
  hyphens: auto;
}
#sidebar nav.main ul li a:hover {
  text-decoration: underline;
}
#sidebar nav.main ul li.current-menu-item a {
  text-decoration: underline;
}
@media (min-width: 992px) and (max-width: 1199px) {
  #sidebar nav.main ul li {
    margin-left: 20px;
  }
}

#header {
  height: 80px;
  transition: all 0.6s ease;
  display: block;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 80px;
  background-color: #569782;
}
#header .ce-logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 25px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#header .ce-logo img {
  transition: all 0.6s ease;
  height: 48px;
  width: auto;
}
#header #nav-toggle {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 15px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#header nav.main {
  display: none;
}
#header #nav-toggle {
  width: 48px;
  height: 48px;
  padding: 10px;
  background-color: initial;
  border: 0;
}
#header #nav-toggle span, #header #nav-toggle span:before, #header #nav-toggle span:after {
  cursor: pointer;
  border-radius: 0;
  height: 3px;
  width: 48px;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
  transition: all 500ms ease-in-out;
}
#header #nav-toggle span:hover, #header #nav-toggle span:hover:before, #header #nav-toggle span:hover:after {
  background: #fff;
}
#header #nav-toggle span, #header #nav-toggle span:before, #header #nav-toggle span:after {
  height: 4px;
  width: 28px;
}
#header #nav-toggle span:before {
  top: -10px;
}
#header #nav-toggle span:after {
  bottom: -10px;
}
#header #nav-toggle.menu-open span {
  background-color: transparent;
}
#header #nav-toggle.menu-open span:before, #header #nav-toggle.menu-open span:after {
  top: 0;
}
#header #nav-toggle.menu-open span:before {
  transform: rotate(45deg);
}
#header #nav-toggle.menu-open span:after {
  transform: rotate(-45deg);
}

@media (max-width: 992px) {
  #header-image {
    top: 80px !important;
  }

  #content {
    margin-top: 50vw;
    /* Beispiel: 16:9 Seitenverhältnis */
  }
}
@media (min-width: 992px) {
  #sidebar {
    display: block;
  }

  #header {
    display: none;
  }

  #page {
    padding-left: 300px;
    padding-top: 0;
  }

  #content {
    padding: 0 40px;
    margin-top: 42.8571428571vw;
    /* Beispiel: 16:9 Seitenverhältnis */
  }
}
#header-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  overflow: hidden;
}
@media (min-width: 992px) {
  #header-image {
    padding-left: 300px;
  }
}
#header-image .container {
  padding: 0;
}
#header-image .image-wrapper img,
#header-image .image-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
#header-image .btn-bottom {
  border: 0;
  position: absolute;
  z-index: 90;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: transparent;
  padding: 0;
  text-align: center;
}
#header-image .btn-bottom i {
  color: #fff;
  font-size: 40px;
}
#header-push {
  height: 320px;
}

#content {
  position: relative;
  padding: 20px 0 0 0;
  background-color: #fff;
  display: flow-root;
}
#content div.rootline {
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#content div.rootline .label {
  display: none;
}
#content div.rootline ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#content div.rootline li {
  padding: 0;
  margin: 0;
  text-indent: 0;
}
#content div.rootline li::before {
  content: "" !important;
  padding-right: 0 !important;
  display: initial !important;
  width: auto !important;
  text-align: center;
}
#content div.rootline ul li {
  font-family: "Inter", sans-serif;
  line-height: 140%;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 20px 0 18px 0;
  padding: 0;
  color: #164194;
}
@media (min-width: 1px) and (max-width: 991px) {
  #content div.rootline {
    display: none;
  }
}
#content .container.basic {
  padding-left: 0;
  padding-right: 0;
}

#buttonback {
  text-align: center;
  padding: 20px;
}

#footer {
  padding-top: 100px;
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
#footer * {
  transition: all 0.6s ease;
  color: #fff;
}
#footer * p, #footer * a {
  font-weight: 300;
  text-decoration: none;
  font-size: 18px;
  color: #fff !important;
}
#footer * a[href^="tel:"], #footer * a[href^="mailto:"] {
  color: #fff !important;
  text-decoration: underline;
}
#footer .footer-wrapper {
  background-color: #144259;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
}
#footer .footer-wrapper .container {
  position: relative;
  max-width: 1140px;
}
#footer .footer-wrapper .container .row {
  padding: 20px 0;
}
#footer .footer-wrapper .container .row .copyright {
  text-align: left;
  font-size: 16px;
}
#footer .footer-wrapper .container .row .inner {
  padding-right: 20px;
}
#footer .footer-wrapper .container .row .inner .container.grid {
  padding: 0 !important;
}
#footer .footer-wrapper .container .row .inner .container.grid .row {
  padding: 0 !important;
}
@media (max-width: 990px) {
  #footer .footer-wrapper .container .row .col {
    margin-bottom: 40px;
  }
}
#footer .footer-logo {
  position: relative;
  width: 100%;
}
#footer .footer-logo .logo {
  display: flex;
  row-gap: 20px;
  column-gap: 20px;
  align-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
#footer .footer-logo .logo .ce-logo {
  position: relative;
  margin: 10px 10px 20px 0;
  padding: 0;
}
#footer .footer-logo .logo .ce-logo img {
  width: 100%;
  max-width: 220px;
  height: auto;
}
@media (min-width: 1px) and (max-width: 700px) {
  #footer .footer-logo .logo {
    align-content: center;
  }
  #footer .footer-logo .logo .ce-logo {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
  }
}
#footer nav.service ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: end;
}
#footer nav.service ul li {
  display: inline;
  margin-left: 10px !important;
}
#footer nav.service ul li.cookie-settings a {
  hyphens: auto !important;
}
@media (max-width: 767px) {
  #footer nav.service ul {
    justify-content: start;
    flex-direction: column;
  }
  #footer nav.service ul li {
    margin-left: initial;
    margin-right: 20px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  #footer nav.service ul {
    justify-content: start;
  }
  #footer nav.service ul li {
    margin-left: initial;
    margin-right: 20px;
  }
}
#footer nav.quicklinks ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#footer nav.quicklinks li {
  padding: 0;
  margin: 0;
  text-indent: 0;
}
#footer nav.quicklinks li::before {
  content: "" !important;
  padding-right: 0 !important;
  display: initial !important;
  width: auto !important;
  text-align: center;
}
#footer nav.quicklinks ul li {
  padding: 0 0 10px 0;
}
#footer nav.quicklinks ul li a {
  display: block;
  text-decoration: none;
}
#footer nav.quicklinks ul li a:hover {
  text-decoration: underline;
}
@media (min-width: 1px) and (max-width: 767px) {
  #footer nav.quicklinks ul li {
    display: block;
  }
  #footer nav.quicklinks ul li a {
    display: block;
    border: 0;
    padding: 5px 0;
    margin: 0;
  }
}
#footer .menu-social {
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
}
#footer .menu-social a {
  display: inline;
  margin-right: 20px;
}
#footer .menu-social a .title {
  display: none;
}
#footer .menu-social a i {
  font-size: 40px;
  color: #fff !important;
  text-align: center;
  padding: 0px;
  display: block;
}
#footer .menu-social a:hover {
  animation: bigBounce ease 1s infinite;
  -webkit-animation: bigBounce ease 1s infinite;
  -moz-animation: bigBounce ease 1s infinite;
  -o-animation: bigBounce ease 1s infinite;
  -ms-animation: bigBounce ease 1s infinite;
}
#footer .plus,
#footer .minus {
  color: #b80e80;
  padding: 0;
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 0;
  text-align: center;
  box-sizing: border-box;
  transition: 0.5s all ease-out;
}
#footer .plus i,
#footer .minus i {
  position: relative;
  font-size: 20px;
  line-height: 20px;
}
#footer .plus {
  opacity: 1;
}
#footer *[aria-expanded=true] .plus {
  opacity: 0;
  transform: rotate(45deg) !important;
}
#footer .minus {
  opacity: 0;
}
#footer *[aria-expanded=true] .minus {
  opacity: 1;
}
.frame-space-before-standard {
  margin-top: 40px !important;
}

.frame-space-before-extra-small {
  margin-top: 0 !important;
}

.frame-space-before-small {
  margin-top: 20px !important;
}

.frame-space-before-medium {
  margin-top: 40px !important;
}

.frame-space-before-large {
  margin-top: 60px !important;
}

.frame-space-before-extra-large {
  margin-top: 80px !important;
}

.frame-space-after-standard {
  margin-bottom: 40px !important;
}

.frame-space-after-extra-small {
  margin-bottom: 0;
}

.frame-space-after-small {
  margin-bottom: 20px !important;
}

.frame-space-after-medium {
  margin-bottom: 40px !important;
}

.frame-space-after-large {
  margin-bottom: 60px !important;
}

.frame-space-after-extra-large {
  margin-bottom: 80px !important;
}

.iframe {
  position: relative;
  z-index: 2;
  border: 0;
}
.iframe .loader {
  left: 45%;
  top: 45%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
}
.iframe iframe {
  position: relative;
  z-index: 99;
  border: 0;
}
@media (max-width: 990px) {
  .iframe iframe {
    height: 1050px !important;
  }
}

dl {
  position: relative;
}
dl dt {
  margin: 20px 0;
}
dl dd {
  margin: 20px 0;
}
dl h3 {
  margin-top: 40px;
}

.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

/* ==========================================================================
   MENU OVERLAY
   ========================================================================== */
#menu-overlay {
  position: fixed;
  z-index: 101;
  top: 0;
  bottom: 0;
  display: none;
  width: 100%;
  height: auto;
  padding: 160px 0 50px 0;
  color: #fff;
  transition: all 0.6s ease;
  background-color: rgba(22, 65, 148, 0.9);
}
#menu-overlay h3 {
  display: none;
}
#menu-overlay .overlay-content {
  max-width: 90%;
  margin: 0 auto;
  padding-top: 180px;
}
#menu-overlay .overlay-content .overlay-header button.close {
  position: fixed;
  z-index: auto;
  top: 250px;
  right: 40px;
  font-size: 30px;
  color: #fff;
  text-shadow: none;
  border: 0;
  background: none;
}
@media (max-width: 992px) {
  #menu-overlay {
    padding: 120px 40px;
  }
  #menu-overlay .overlay-content {
    padding: 0;
    max-width: 100%;
  }
  #menu-overlay .overlay-content .overlay-header button.close {
    top: 75px;
    right: 15px;
  }
  #menu-overlay #menu-main button.btn-search {
    display: none;
  }
}
/* ==========================================================================
   SEARCH FORM
   ========================================================================== */
#search-form {
  position: fixed;
  z-index: 101;
  top: 0;
  bottom: 0;
  display: none;
  width: 100%;
  height: auto;
  padding: 160px 0 50px 0;
  color: #fff;
  transition: all 0.6s ease;
  background-color: rgba(22, 65, 148, 0.9);
}
#search-form h3 {
  display: none;
}
#search-form .overlay-content {
  max-width: 90%;
  margin: 0 auto;
  padding-top: 180px;
}
#search-form .overlay-content .overlay-header button.close {
  position: fixed;
  z-index: auto;
  top: 250px;
  right: 40px;
  font-size: 30px;
  color: #fff;
  text-shadow: none;
  border: 0;
  background: none;
}
#search-form legend {
  display: none;
}
#search-form .tx-indexedsearch-form .form-group label {
  display: none;
}
#search-form .input-group {
  margin: 0 auto;
}
#search-form .input-group .tx-indexedsearch-searchbox-sword {
  height: 80px;
  line-height: 80px;
  max-width: 100%;
  background-color: #fff !important;
  min-width: auto;
  font-size: 24px !important;
  border: 0 !important;
  -webkit-border-radius: 0 0 0 0 !important;
  border-radius: 0 0 0 0 !important;
  box-shadow: none;
  -webkit-box-shadow: none;
}
#search-form .input-group .tx-indexedsearch-searchbox-button {
  display: block;
  position: relative;
  height: 80px !important;
  line-height: 80px !important;
  width: 80px !important;
  color: #144259 !important;
  background-color: #fff;
  background-size: 40px;
  background-position: center;
  border: 0 !important;
  -webkit-border-radius: 0 0 0 0 !important;
  border-radius: 0 0 0 0 !important;
}
#search-form .input-group .tx-indexedsearch-searchbox-button i {
  position: absolute;
  font-size: 40px;
  top: 70px;
  right: -25px;
  transform: translate(-50px, -50px);
  color: #164194;
}
#search-form .input-group .tx-indexedsearch-searchbox-button:hover {
  background-color: #fff !important;
}

@media (min-width: 1px) and (max-width: 768px) {
  .container {
    width: 100%;
    max-width: initial;
  }

  /* CE Elemente */
  /* Modals */
}
@media (min-width: 1px) and (max-width: 991px) {
  body #content .bodytext,
body #content p,
body #content p a,
body ul li,
body ol li,
body,
.mail {
    font-size: 19px;
  }

  body a,
body .external-link,
body .internal-link,
body .mail {
    font-size: 19px;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 22px;
    margin-bottom: 1rem;
  }

  h4 {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  h5, h6 {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  body #content .bodytext,
body #content p,
body #content p a,
body ul li,
body ol li,
body,
.mail {
    font-size: 21px;
  }

  #content a,
#content .external-link,
#content .internal-link,
#content .mail {
    font-size: 21px;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 23px;
  }

  h4 {
    font-size: 21px;
  }

  h5, h6 {
    font-size: 21px;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 1600px) {
  body #content .bodytext,
body #content p,
body #content p a,
body ul li,
body ol li,
body,
.mail {
    font-size: 21px;
  }

  #content a,
#content .external-link,
#content .internal-link,
#content .mail {
    font-size: 21px;
  }

  h1 {
    font-size: 60px;
    margin-bottom: 25px;
  }

  h2 {
    font-size: 40px;
    margin-bottom: 18px;
  }

  h3 {
    font-size: 23px;
    margin-bottom: 1rem;
  }

  h4 {
    font-size: 21px;
    margin-bottom: 1rem;
  }

  h5, h6 {
    font-size: 21px;
    margin-bottom: 1rem;
  }
}
@media print {
  /* 20210923 #lv */
  /* verstecken */
  #header,
#header-image,
#footer {
    display: none !important;
  }

  /* layout.css
  *********************************************/
  a, blockquote, body, caption, dd, div, dl, dt, hr, h2, h3, h4, h5, img, li, ol, p, table, tbody, td, tfoot, th, thead, tr, ul {
    line-height: normal;
    background: none !important;
  }

  html, body {
    height: auto;
  }

  * html .floatbox {
    width: 100%;
  }

  @page {
    size: auto;
    /* auto is the initial value */
    margin: 0;
    /* this affects the margin in the printer settings */
  }
  body {
    margin: 0 !important;
    padding: 0 !important;
    width: 800px;
    background: none;
    background-color: transparent;
    font-size: 9pt;
    overflow-y: visible !important;
  }
  body #page {
    padding: 0 30px;
  }
  body #content, body #section, body .container.basic-width, body .container {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    position: relative;
    overflow-x: hidden !important;
  }

  body * {
    -webkit-print-color-adjust: exact !important;
    /* Chrome, Safari */
    color-adjust: exact !important;
    /*Firefox*/
  }

  body.cMachine h1, body.cMachine .no-print {
    display: none;
  }
  body.cMachine #page {
    margin: 0;
    padding: 0;
  }
  body.cMachine .tx-lvfeuserext {
    background-image: url(../Img/logo-remarcq-schattendruck.jpg) !important;
    background-position: left 120px top 350px !important;
    background-size: 600px !important;
    background-repeat: no-repeat !important;
  }
  body.cMachine .tx-lvfeuserext #header-zert {
    display: block;
    text-align: center;
    max-width: 800px;
  }
  body.cMachine .tx-lvfeuserext #header-zert h1 {
    display: block;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
  }
  body.cMachine .tx-lvfeuserext #header-zert p {
    font-size: 18px;
  }
  body.cMachine .tx-lvfeuserext #footer-zert {
    display: block;
    padding: 50px;
    width: 800px !important;
  }
  body.cMachine .tx-lvfeuserext #footer-zert strong, body.cMachine .tx-lvfeuserext #footer-zert p, body.cMachine .tx-lvfeuserext #footer-zert ul li {
    color: #aaa;
    line-height: 120%;
    font-size: 12px;
  }
  body.cMachine .tx-lvfeuserext #footer-zert p, body.cMachine .tx-lvfeuserext #footer-zert ul, body.cMachine .tx-lvfeuserext #footer-zert ol, body.cMachine .tx-lvfeuserext #footer-zert table, body.cMachine .tx-lvfeuserext #footer-zert object {
    margin-bottom: 5px;
  }
  body.cMachine .tx-lvfeuserext form .form-group {
    padding: 0 !important;
    margin: 0 !important;
  }
  body.cMachine .tx-lvfeuserext table {
    width: auto;
    margin: 0 auto;
  }
  body.cMachine .tx-lvfeuserext table td:first-child {
    min-width: 200px;
  }
  body.cMachine .tx-lvfeuserext input[type=text] {
    border: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: none !important;
    font-size: 16px !important;
  }
}
/** farbschema */
.t3tpl-white {
  background-color: #fff;
}

.section.t3tpl-color {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section.t3tpl-color-1 {
  background-color: #eef0f0;
}
.section.t3tpl-color-2 {
  background-color: #bdbbbb;
}
.section.t3tpl-color-3 {
  background-color: #fff;
  border: 1px solid #26778c !important;
}
.section.t3tpl-gradient-1 {
  background: linear-gradient(140deg, rgba(94, 191, 72, 0.8) 0%, rgba(93, 190, 73, 0.8) 1%, rgba(5, 70, 165, 0.8) 100%);
}
.section.t3tpl-gradient-1 * {
  color: #fff;
}
.section.t3tpl-gradient-1 .grid-owl-carousel * {
  color: #fff;
}
.section.t3tpl-gradient-1 .grid-owl-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item h3 {
  color: #fff;
}
.section.t3tpl-gradient-1 a.btn-basic, .section.t3tpl-gradient-1 .btn, .section.t3tpl-gradient-1 .btn-basic > .btn-basic {
  background-color: #fff;
  color: #f39200;
}
.section.t3tpl-gradient-1 .highlightBig {
  color: #fff;
}

.card-header .t3tpl-color.t3tpl-color-1 {
  color: #164194;
}
.card-header .t3tpl-color.t3tpl-color-1 {
  color: #164194;
}
.card-header .t3tpl-color.t3tpl-color-2 {
  color: #569782;
}

.card-body.t3tpl-color.t3tpl-color-1.card-body a {
  color: #164194;
}
.card-body.t3tpl-color.t3tpl-color-1 a {
  color: #164194;
}
.card-body.t3tpl-color.t3tpl-color-2 a {
  color: #569782;
}

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