@charset "UTF-8";/*!
 * 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: calc(1 * 2);
  animation-iteration-count: calc(1 * 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: calc(1 * 3);
  animation-iteration-count: calc(1 * 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: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -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;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.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: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -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: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -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;
}

@charset "UTF-8";
/* Variables */
/* Colors */
/* Theme colors */
@property --color-primary {
  syntax: "<color>";
  inherits: false;
  initial-value: #457C1F;
}
@property --color-secondary {
  syntax: "<color>";
  inherits: false;
  initial-value: #d49303;
}
@property --color-tertiary {
  syntax: "<color>";
  inherits: false;
  initial-value: #DEDD26;
}
/* Gray */
@property --color-gray-400 {
  syntax: "<color>";
  inherits: false;
  initial-value: #ededed;
}
@property --color-gray-500 {
  syntax: "<color>";
  inherits: false;
  initial-value: #d3d3d3;
}
@property --color-gray-600 {
  syntax: "<color>";
  inherits: false;
  initial-value: #A0A0A0;
}
@property --color-gray-800 {
  syntax: "<color>";
  inherits: false;
  initial-value: #3b3e43;
}
@property --color-gray-900 {
  syntax: "<color>";
  inherits: false;
  initial-value: #4a4a4a;
}
/* Primes */
@property --color-white {
  syntax: "<color>";
  inherits: false;
  initial-value: #ffffff;
}
@property --color-black {
  syntax: "<color>";
  inherits: false;
  initial-value: #000000;
}
/* Components */
.testimonial_item {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  padding: 0;
  background-color: var(--color-white);
  height: 100%;
}
.testimonial_item .testimonial_author .testimonial_author_img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.testimonial_item .testimonial_author .testimonial_author_img img {
  display: block;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.testimonial_item .testimonial_contents {
  display: flex;
  flex-direction: column;
  padding: 20px;
  font-weight: 200;
  flex-grow: 1;
}
.testimonial_item .testimonial_contents p {
  margin-bottom: 30px;
}
.testimonial_item .testimonial_contents p:last-of-type {
  margin-bottom: 0;
}
.testimonial_item .testimonial_contents .testimonial_title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 200;
  color: var(--color-primary);
}
.testimonial_item .testimonial_contents .testimonial_quote {
  font-size: 20px;
  line-height: 22px;
}
.testimonial_item .testimonial_contents .testimonial_quote:before, .testimonial_item .testimonial_contents .testimonial_quote:after {
  display: inline;
}
.testimonial_item .testimonial_contents .testimonial_quote:before {
  content: '"';
}
.testimonial_item .testimonial_contents .testimonial_quote:after {
  content: '"';
}
.testimonial_item .testimonial_contents .testimonial_button {
  margin-top: auto;
}
.testimonial_item .testimonial_contents .testimonial_button a {
  display: inline-flex;
  padding: 10px 20px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  text-decoration: none !important;
}

.testimonial_all {
  display: flex;
  padding: 30px 0;
  justify-content: center;
}
.testimonial_all a {
  padding: 10px 40px;
  background: var(--color-secondary);
  color: var(--color-white) !important;
  text-decoration: none !important;
}

/* World map */
.world-map svg [id] {
  cursor: pointer;
  transition: all 0.2s linear;
}

.world-map svg [id]:hover {
  fill: #2e2e2e;
}

.world-map svg [id].active {
  fill: var(--color-primary);
}

/* Gallery Swiper */
.gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  width: 100%;
  margin: 60px auto;
}

@media only screen and (min-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery .gallery-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}

.gallery .gallery-slider {
  width: auto;
}

@media only screen and (min-width: 992px) {
  .gallery .gallery-slider {
    height: 430px;
  }
}
.gallery .gallery-slider .slide-img {
  margin-bottom: 20px;
  padding: 10px;
}

@media only screen and (min-width: 992px) {
  .gallery .gallery-slider .slide-img {
    display: none;
  }
}
.gallery .gallery-thumbs {
  display: none;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

@media only screen and (min-width: 992px) {
  .gallery .gallery-thumbs {
    display: flex;
    height: 430px;
  }
}
.gallery .gallery-thumbs .swiper-slide {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px;
  padding-left: 10px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.gallery .gallery-thumbs .swiper-slide > div {
  padding: 10px;
}

.gallery .slide-img {
  display: flex;
  border: 1px solid var(--color-gray-400);
  width: 178px;
  height: 98px;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
}

.gallery .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Active slide */
.gallery .swiper-slide.swiper-slide-thumb-active .slide-img {
  border-color: var(--color-gray-400);
}

@media only screen and (min-width: 992px) {
  .gallery .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
    background-color: var(--color-gray-400);
  }
}
/* Arrow */
.gallery .gallery-thumbs .swiper-slide.swiper-slide-thumb-active:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 10px;
  height: 100%;
  background: var(--color-white);
  border-right: 2px solid var(--color-primary);
}

.gallery .gallery-thumbs .swiper-slide.swiper-slide-thumb-active:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--color-primary);
}

/* Slide buttons */
.gallery > .swiper-button-prev,
.gallery > .swiper-button-next {
  display: none;
}

@media only screen and (min-width: 992px) {
  .gallery > .swiper-button-prev {
    display: flex;
    transform: rotate(90deg);
    top: auto !important;
    bottom: 100%;
    left: 75% !important;
    margin: 0;
  }
  .gallery > .swiper-button-next {
    display: flex;
    transform: rotate(90deg);
    top: 100% !important;
    right: auto !important;
    left: 75%;
    margin: 0;
  }
}
@media only screen and (min-width: 992px) {
  .gallery-slider .swiper-button-prev,
  .gallery-slider .swiper-button-next {
    display: none;
  }
}
.sticky-btn-container-holder {
  position: relative;
  display: unset;
}

.sticky-btn-container {
  position: sticky;
  top: 105px;
  z-index: 20;
  padding: 30px;
  border-bottom: 1px solid #dedede;
  background-color: var(--color-white);
  overflow-y: hidden;
  overflow-x: auto;
  display: flex;
  width: 100%;
  gap: 10px;
}
@media only screen and (min-width: 800px) {
  .sticky-btn-container {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.sticky-btn-container a {
  display: inline-flex;
  padding: 10px 40px;
  background: var(--color-primary);
  font-weight: 700;
  color: var(--color-white) !important;
  text-decoration: none !important;
  white-space: nowrap;
}

body:has(.secondary_nav) .sticky-btn-container {
  top: 138px;
}

@media only screen and (max-width: 995px) {
  body:has(.secondary_nav) .sticky-btn-container {
    top: 98px;
  }
}
/*----------------------> Links And buttons <------------------*/
a {
  color: var(--color-gray-900);
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

a:hover,
.login_form a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

#content a:not(.btn1):not(.btn2):not(.btn3) {
  color: var(--color-primary);
  text-decoration: underline;
}

#content a:not(.btn1):not(.btn2):not(.btn3) {
  text-decoration: underline;
}

.multifile a {
  color: var(--color-primary) !important;
}

.pad_box ol,
.pad_box ul {
  list-style-type: disc;
  padding: 0 0 0 20px;
}

.pad_box ol {
  list-style-type: decimal;
}

.button-primary {
  border: none;
  cursor: pointer;
}

.btn1,
.login_form .buttons,
.login_form .button-primary,
.button-primary {
  display: inline-block;
  padding: 5px 20px;
  margin: 0 0 0;
  font-size: 14px;
  line-height: 1.23;
  min-width: 140px;
  text-align: center;
}

.btn2 {
  position: relative;
  display: block;
  text-align: center;
  color: var(--color-white);
  padding: 4px 47px 3px 20px;
  min-width: 160px;
  background-color: rgba(117, 115, 115, 0.8);
}

.btn2:after {
  display: block;
  width: 27px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--color-primary) url(../images/marker2.png?9a9f5c7c3db432463a05efd3ad734e7e) 50% 50% no-repeat;
  content: "";
}

.btn2:hover {
  color: var(--color-white);
  background-color: rgb(69, 124, 31);
}

.btn3 {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  position: relative;
  padding: 4px 20px 5px 30px;
}

.btn3:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30px;
  background: var(--color-primary) url(../images/download_icon_sm.png?08eed4b725bcceb49bfca630755c4200) 50% 50% no-repeat;
  content: "";
}

.btn3:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

[data-skin=green],
.login_form .buttons,
.login_form .button-primary,
.button-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

[data-skin=green]:hover,
.login_form .buttons:hover {
  color: var(--color-white);
}

input[type=submit][data-skin=green] {
  border: none;
  cursor: pointer;
}

.news_prev_btn {
  background: url(../images/prev_circle_icon.png?ccbd4816d54f4aa4f64f4666c78ca4f5) 0 50% no-repeat;
  padding: 7px 0 7px 40px;
}

.news_next_btn {
  background: url(../images/next_circle_icon.png?b997c90494f477326aa98e2753b704e0) right 50% no-repeat;
  padding: 7px 40px 7px 0;
}

.news_back_btn {
  background: url(../images/prev_circle_icon.png?ccbd4816d54f4aa4f64f4666c78ca4f5) 0 50% no-repeat;
  padding: 7px 0 7px 40px;
}

.news_prev_btn,
.news_next_btn {
  margin: 0 25px;
  display: block;
}

.news_back_btn {
  display: block;
}

.link,
.list3 a {
  text-decoration: underline;
}

.link1 {
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 18px 0 0;
  background: url(../images/link_arrow.png?7d37e5b9a204dd63d8700aafb831bc28) right 50% no-repeat;
}

.my_profile_link {
  margin-left: 20px;
}

.my_profile_link:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.over_btn {
  display: inline-block;
  border: 1px solid #dbdee4;
  background-color: var(--color-gray-400);
  padding: 2px 35px;
  color: #212121;
}

.over_btn:hover {
  background-color: #dedede;
}

.back_to_btn {
  background: url(../images/btn_green_icon.png?eac28487fcbd1ae0ef0bc4667cc9366f) 0 50% no-repeat;
  padding: 10px 0 10px 40px;
  display: inline-block;
  cursor: pointer;
}

#mfcf7_zl_add_file {
  color: #141414;
  border: 1px solid #767676;
  background: #efefef;
  border-radius: 3px;
  min-width: auto;
  padding: 5px 11px;
}

#mfcf7_zl_add_file:hover {
  background: #e5e5e5;
}

.search_item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dedede;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media only screen and (min-width: 992px) {
  .search_item {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.search_item > .search_preview_item {
  position: relative;
}

.search_item > .search_preview_item > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.search_item > .search_preview_item > .search_preview_item_img {
  height: 200px;
  border: 1px solid #ccc;
}

.search_item > .search_preview_item > .search_preview_item_img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.search_item > .search_preview_item > .meta {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.search_item h2 {
  padding: 0 0 0 0;
  margin-bottom: 7px;
}

.whatsapp-chat {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  padding: 10px;
  border-radius: 100%;
  z-index: 999999;
}

/* Variables */
/*----------------------> Basic Classes <------------------*/
.tt_i {
  text-transform: inherit;
}

.reg1,
[data-nav-item=machine] .sub_menu_item_title {
  text-transform: uppercase;
}

.f_left {
  float: left;
}

.f_right {
  float: right;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.sub_menu_item_title {
  font-weight: bold;
}

[data-nav-item=machine] .sub_menu_item_title {
  font-weight: normal;
}

/*.it{font-style:italic}*/
.let {
  letter-spacing: -1px;
}

.full_w {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.content_sep {
  height: 1px;
  border: none;
  background-color: #dedede;
  margin: 20px 0;
}

.val_mid,
.val_mid_ch > * {
  vertical-align: middle;
}

.hidden_el {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(-15px);
  z-index: 100;
}

.lh_09 {
  line-height: 0.9 !important;
}

.hidden_el2 {
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  transform: translateY(100%);
}

.show_ghost ~ .hidden_el,
*:hover > .hidden_el2 {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.font_13 {
  font-size: 13px;
}

.font_14 {
  font-size: 14px;
}

.font_11 {
  font-size: 11px;
}

.font_20 {
  font-size: 20px;
  line-height: 1.3;
}

.font_22 {
  font-size: 20px;
  line-height: 1.3;
}

.font_31 {
  font-size: 31px;
  line-height: 1;
}

.bdx {
  box-sizing: border-box;
  padding: 15px;
}

.bot_bord1 {
  border-bottom: 1px solid #dedede;
}

.green_bot_bord3 {
  border-bottom: 3px solid var(--color-primary);
}

/*----------------------> Indents Zero <------------------*/
.m_b_zero {
  margin-bottom: 0 !important;
}

.m_l_zero {
  margin-left: 0 !important;
}

.p_b_zero {
  padding-bottom: 0 !important;
}

.p_l_zero {
  padding-left: 0 !important;
}

/*----------------------> Positions <------------------*/
.p_abs {
  position: absolute;
}

.p_rel {
  position: relative;
}

.p_fix {
  position: fixed;
}

.clear {
  clear: both;
  width: 100%;
  line-height: 0;
  font-size: 0;
}

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

.wrapper {
  overflow: hidden;
}

.f_elem > *:first-child {
  margin-top: 0 !important;
}

.f_elem1 > *:first-child {
  margin-top: 0 !important;
  border: none !important;
}

.bg_none {
  background: none !important;
}

/*----------------------> Displays <------------------*/
.d_block {
  display: block;
}

.d_ib,
.val_mid_ch > * {
  display: inline-block;
}

.home .breadcrumb .bcn-list {
  display: none !important;
}

.d_none,
.page-template-page-agent .page_social {
  display: none;
}

.d_tc {
  display: table-cell;
}

.d_t {
  display: table;
}

/*----------------------> Basic Colors <------------------*/
.accent_bg_hov:hover,
.accent_bg_hov_ch > *:hover {
  background-color: var(--color-primary);
}

.white_f {
  color: var(--color-white);
}

/* Templates */
/* Components */
.career_block {
  padding: 100px 0;
}
.career_block .container {
  display: grid;
  align-items: start;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 600px) {
  .career_block .container {
    grid-template-columns: 1fr 2fr;
  }
}
.career_block .career_image {
  position: relative;
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--color-gray-400);
}
.career_block .career_image:before, .career_block .career_image:after {
  position: absolute;
  display: block;
  z-index: 20;
}
.career_block .career_image:before {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAA6CAYAAADhu0ooAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFVSURBVHgB7drNTcMwGMbxx27gnBFSUFFv7QYwQsUCRUzABi0bZANGQMyToHQEzij2ix2gEuKjEcrBffL+FClRkstfzpelGPxDU82vkMkC3i9FsIQxOdIlxsl11vfsppkXzrk7a8xa4HP4uNd0S+KkNZIfDG2aInfutBTv1yESx+rP0Lo+X4mfPFiDlC/NXuxvB5rni401k8ewefSR0Y+hMVKALYh8C2WMjL6E1vXshjEy2ofG10d4qm5Aah/qnN+GVQFSXej7aGINYl3ox2hS60LDaF6CnK3iBzrxvfnJWuNWGIFw1WKBEbBhLllgBOLspcBAxOPeZq/ldLp7QWJ6T7wPMZDybFZtkSiLgbRenpCwwUJTp6FsNJSNhrLRUDYaykZD2WgoGw1lo6FsNJSNhrLRUDYaykZD2WgoGw1lo6FsRhMa/0oRjEDmndxiANlJu0PC3gAoflZST77nugAAAABJRU5ErkJggg==");
  left: 20px;
  top: 20px;
}
.career_block .career_image:after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAA6CAYAAADhu0ooAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAE2SURBVHgB7ZvticJAFEXfLPm/bAPLlrBagViBHWgHYgl2oB0YK7AErUA7MB2oFcT7NIEgASMGGa/3wCWTD0JO3iRkYBIsUvI898UYGdjzLBKLl4B0kJ49z+bLPgSJsiFRNiTKhkTZkCgZv6ooGxJlQ6JsSJQNibIhUTYkyoZE2ZAoGxJlQ6JsSJQNiUbCt7VEUkxzeQkhhEbHFdf0Z+1MvXFOSXGyH3sBefO7+o8MrT0uoj5pqWe8+M09fsrLaCdRItZ4CdJ3XX8+U2+wi2bIxhvsokt028wbzKJ7ZFGusIr6szktq+mwis4hmVY3MIpuITm53cgmukX6dTuYRGeoZNc/Dup2MogekEldd60S818S9/DKze1ayeO9g99RdI2skLSJYEnAWHhk19F8zGTIzpePyFU5A94eNixabquRAAAAAElFTkSuQmCC");
  right: 20px;
  bottom: 20px;
}
.career_block .career_image img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 10;
}
.career_block .career_content {
  position: relative;
  padding: 40px 160px 40px 40px;
  border-radius: 20px;
  color: var(--color-white);
  background-color: var(--color-primary);
  overflow: hidden;
}
@media only screen and (min-width: 600px) {
  .career_block .career_content {
    padding-right: 80px;
  }
}
@media only screen and (min-width: 1024px) {
  .career_block .career_content {
    padding-right: 160px;
  }
}
.career_block .career_content .career_intro {
  font-size: 28px;
  line-height: 30px;
  font-weight: 200;
  color: var(--color-tertiary);
  margin-bottom: 0;
}
.career_block .career_content .career_function {
  font-size: 42px;
  line-height: 44px;
  font-weight: 200;
  margin-bottom: 30px;
}
.career_block .career_content .career_name {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 0;
}
.career_block .career_content .career_description {
  font-size: 19px;
  line-height: 25px;
  font-weight: 200;
  margin-bottom: 40px;
}
.career_block .career_content .career_button {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 0;
}
.career_block .career_content .career_button a {
  color: var(--color-white) !important;
}
.career_block .career_content .career_more {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  background-color: var(--color-tertiary);
  width: 156px;
  height: 156px;
  right: 0;
  bottom: 0;
  padding: 20px;
  font-size: 22px;
  line-height: 24px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.career_block .career_content .career_more a {
  text-align: right;
  color: var(--color-primary) !important;
  text-decoration: none !important;
}

.vacancies_grid {
  padding: 100px 0;
}

.vacancies_grid .container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.vacancies_grid .vacancy_item {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  padding: 30px;
}

.vacancies_grid .vacancy_item[data-intern] {
  background: transparent;
  border: 1px solid #A0A0A0;
}

.vacancies_grid .vacancy_item .vacancy_department {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 22px;
  color: var(--color-gray-600);
}

.vacancies_grid .vacancy_item .vacancy_department span {
  color: var(--color-gray-900);
}

.vacancies_grid .vacancy_item .vacancy_title {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 26px;
  font-weight: 200;
  color: var(--color-primary);
}

.vacancies_grid .vacancy_item .vacancy_description {
  font-size: 17px;
  line-height: 23px;
  margin-top: auto;
  margin-bottom: 30px;
}

.vacancies_grid .vacancy_item .vacancy_button {
  margin-bottom: 0;
}

.vacancies_grid .vacancy_item .vacancy_button a {
  display: inline-flex;
  padding: 10px 20px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  text-decoration: none !important;
}

blockquote.quote {
  position: relative;
  padding: 70px;
  border-radius: 20px;
  color: var(--color-white);
  background-color: var(--color-primary);
  overflow: hidden;
  margin: 40px 0;
  font-size: 19px;
  line-height: 25px;
  font-weight: 200;
}
blockquote.quote .title,
blockquote.quote h1, blockquote.quote h2, blockquote.quote h3, blockquote.quote h4, blockquote.quote h5, blockquote.quote h6 {
  display: inline-block;
  width: 100%;
  font-size: 28px;
  line-height: 30px;
  font-weight: 200;
  color: var(--color-tertiary);
  margin-bottom: 20px;
}
blockquote.quote cite {
  font-style: normal;
}
blockquote.quote:before, blockquote.quote:after {
  position: absolute;
  display: block;
  z-index: 20;
}
blockquote.quote:before {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAA6CAYAAADhu0ooAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFVSURBVHgB7drNTcMwGMbxx27gnBFSUFFv7QYwQsUCRUzABi0bZANGQMyToHQEzij2ix2gEuKjEcrBffL+FClRkstfzpelGPxDU82vkMkC3i9FsIQxOdIlxsl11vfsppkXzrk7a8xa4HP4uNd0S+KkNZIfDG2aInfutBTv1yESx+rP0Lo+X4mfPFiDlC/NXuxvB5rni401k8ewefSR0Y+hMVKALYh8C2WMjL6E1vXshjEy2ofG10d4qm5Aah/qnN+GVQFSXej7aGINYl3ox2hS60LDaF6CnK3iBzrxvfnJWuNWGIFw1WKBEbBhLllgBOLspcBAxOPeZq/ldLp7QWJ6T7wPMZDybFZtkSiLgbRenpCwwUJTp6FsNJSNhrLRUDYaykZD2WgoGw1lo6FsNJSNhrLRUDYaykZD2WgoGw1lo6FsRhMa/0oRjEDmndxiANlJu0PC3gAoflZST77nugAAAABJRU5ErkJggg==");
  left: 20px;
  top: 20px;
}
blockquote.quote:after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAA6CAYAAADhu0ooAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAE2SURBVHgB7ZvticJAFEXfLPm/bAPLlrBagViBHWgHYgl2oB0YK7AErUA7MB2oFcT7NIEgASMGGa/3wCWTD0JO3iRkYBIsUvI898UYGdjzLBKLl4B0kJ49z+bLPgSJsiFRNiTKhkTZkCgZv6ooGxJlQ6JsSJQNibIhUTYkyoZE2ZAoGxJlQ6JsSJQNiUbCt7VEUkxzeQkhhEbHFdf0Z+1MvXFOSXGyH3sBefO7+o8MrT0uoj5pqWe8+M09fsrLaCdRItZ4CdJ3XX8+U2+wi2bIxhvsokt028wbzKJ7ZFGusIr6szktq+mwis4hmVY3MIpuITm53cgmukX6dTuYRGeoZNc/Dup2MogekEldd60S818S9/DKze1ayeO9g99RdI2skLSJYEnAWHhk19F8zGTIzpePyFU5A94eNixabquRAAAAAElFTkSuQmCC");
  right: 20px;
  bottom: 20px;
}

/* Sections */
body[class*=page-template-page-career],
body[page-id-1320] {
  /* main-image-video-with-green-section */
  /* two-columns-image-and-text */
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section],
body[page-id-1320] [data-section=main-image-video-with-green-section] {
  position: relative;
  width: 100%;
  aspect-ratio: 16/6;
  display: flex;
  justify-content: center;
  align-items: center;
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .about_machine_box.image,
body[page-id-1320] [data-section=main-image-video-with-green-section] .about_machine_box.image {
  position: absolute;
  inset: 0;
  min-height: unset;
  background-size: cover;
  background-position: center right;
}
@media only screen and (min-width: 1024px) {
  body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .about_machine_box.image,
  body[page-id-1320] [data-section=main-image-video-with-green-section] .about_machine_box.image {
    background-position: center center;
  }
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box,
body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box {
  display: flex;
  flex-direction: column;
  background-color: transparent !important;
  padding: 80px 60px;
}
@media only screen and (min-width: 800px) {
  body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box,
  body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box {
    padding: 80px 120px;
  }
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box:before,
body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box:before {
  content: none;
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name,
body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name {
  font-size: 40px;
  line-height: 40px;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name,
  body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name {
    font-size: 108px;
    line-height: 98px;
  }
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name h1,
body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name h1 {
  position: relative;
  font-weight: 700;
  display: inline-block !important;
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name h1:before, body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name h1:after,
body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name h1:before,
body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name h1:after {
  position: absolute;
  display: inline-block;
  z-index: 20;
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name h1:before,
body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name h1:before {
  left: 0;
  top: 0;
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAA6CAYAAADhu0ooAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFVSURBVHgB7drNTcMwGMbxx27gnBFSUFFv7QYwQsUCRUzABi0bZANGQMyToHQEzij2ix2gEuKjEcrBffL+FClRkstfzpelGPxDU82vkMkC3i9FsIQxOdIlxsl11vfsppkXzrk7a8xa4HP4uNd0S+KkNZIfDG2aInfutBTv1yESx+rP0Lo+X4mfPFiDlC/NXuxvB5rni401k8ewefSR0Y+hMVKALYh8C2WMjL6E1vXshjEy2ofG10d4qm5Aah/qnN+GVQFSXej7aGINYl3ox2hS60LDaF6CnK3iBzrxvfnJWuNWGIFw1WKBEbBhLllgBOLspcBAxOPeZq/ldLp7QWJ6T7wPMZDybFZtkSiLgbRenpCwwUJTp6FsNJSNhrLRUDYaykZD2WgoGw1lo6FsNJSNhrLRUDYaykZD2WgoGw1lo6FsRhMa/0oRjEDmndxiANlJu0PC3gAoflZST77nugAAAABJRU5ErkJggg==");
  transform: translate(-75%, -60%);
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name h1:after,
body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box .green_box_m_name h1:after {
  right: 0;
  bottom: 0;
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADoAAAA6CAYAAADhu0ooAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAE2SURBVHgB7ZvticJAFEXfLPm/bAPLlrBagViBHWgHYgl2oB0YK7AErUA7MB2oFcT7NIEgASMGGa/3wCWTD0JO3iRkYBIsUvI898UYGdjzLBKLl4B0kJ49z+bLPgSJsiFRNiTKhkTZkCgZv6ooGxJlQ6JsSJQNibIhUTYkyoZE2ZAoGxJlQ6JsSJQNiUbCt7VEUkxzeQkhhEbHFdf0Z+1MvXFOSXGyH3sBefO7+o8MrT0uoj5pqWe8+M09fsrLaCdRItZ4CdJ3XX8+U2+wi2bIxhvsokt028wbzKJ7ZFGusIr6szktq+mwis4hmVY3MIpuITm53cgmukX6dTuYRGeoZNc/Dup2MogekEldd60S818S9/DKze1ayeO9g99RdI2skLSJYEnAWHhk19F8zGTIzpePyFU5A94eNixabquRAAAAAElFTkSuQmCC");
  transform: translate(75%, 60%);
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box .green_box_m_slogan,
body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box .green_box_m_slogan {
  font-size: 30px;
  line-height: 34px;
  color: var(--color-tertiary);
  text-align: left;
  padding: 0;
  margin-top: 20px;
}
@media only screen and (min-width: 1024px) {
  body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box .green_box_m_slogan,
  body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box .green_box_m_slogan {
    font-size: 20px;
    line-height: 26px;
  }
}
body[class*=page-template-page-career] [data-section=main-image-video-with-green-section] .green_box .green_box_m_slogan h2,
body[page-id-1320] [data-section=main-image-video-with-green-section] .green_box .green_box_m_slogan h2 {
  font-weight: 300;
}
body[class*=page-template-page-career] [data-section=two-columns-image-and-text] .wrapper,
body[page-id-1320] [data-section=two-columns-image-and-text] .wrapper {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 500px) {
  body[class*=page-template-page-career] [data-section=two-columns-image-and-text] .wrapper,
  body[page-id-1320] [data-section=two-columns-image-and-text] .wrapper {
    grid-template-columns: 1fr 3fr;
  }
}
@media only screen and (min-width: 768px) {
  body[class*=page-template-page-career] [data-section=two-columns-image-and-text] .wrapper,
  body[page-id-1320] [data-section=two-columns-image-and-text] .wrapper {
    grid-template-columns: 1fr 2fr;
  }
}
body[class*=page-template-page-career] [data-section=two-columns-image-and-text] .content_img_wrap,
body[page-id-1320] [data-section=two-columns-image-and-text] .content_img_wrap {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--color-gray-500);
}
body[class*=page-template-page-career] [data-section=two-columns-image-and-text] .content_img_wrap img,
body[page-id-1320] [data-section=two-columns-image-and-text] .content_img_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
body[class*=page-template-page-career] [data-section=two-columns-image-and-text] .application_item_descr,
body[page-id-1320] [data-section=two-columns-image-and-text] .application_item_descr {
  display: block;
  border-radius: 20px;
  padding: 40px;
  color: var(--color-gray-900);
  overflow: hidden;
  background-color: var(--color-gray-400);
  font-size: 19px;
  line-height: 28px;
}
body[class*=page-template-page-career] [data-section=two-columns-image-and-text] .application_item_descr h3,
body[page-id-1320] [data-section=two-columns-image-and-text] .application_item_descr h3 {
  font-size: 34px;
  line-height: 34px;
  font-weight: 300;
}

/* Layout */
header {
  z-index: 9999;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #dedede;
}

.header_top {
  background: #474a50;
  height: 34px;
  font-size: 12px;
  line-height: 1.23;
}

.header_inner {
  padding: 5px 0 5px 241px;
  position: relative;
}

.logo_box {
  width: 241px;
  height: 105px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.logo_box svg {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  height: 105px;
  aspect-ratio: 2.29/1;
  display: block;
  background: var(--color-white);
}

@media only screen and (max-width: 600px) {
  .logo_box,
  .logo_box svg {
    height: 70px;
  }
}
.tools_box {
  line-height: 16px;
}

.lang_choose_box {
  background: var(--color-white) url(../images/greeen_down_arrow_sm.png?1afb0b525f51ee8fd5c44e80ff4d871c) no-repeat;
  background-position: top 50% right 6px;
}

.pll-switcher-select {
  height: auto;
  padding: 3px 18px 3px 6px;
  border: none;
  outline: none;
  background: none;
  line-height: 1;
  font-size: 12px;
}

.pll-switcher-select::-ms-expand {
  display: none;
}

.header_search {
  width: 300px;
  padding-right: 30px;
}

.search_field {
  height: 30px;
  background-color: #dadde3;
  margin: 0;
  font-size: 11px;
  border: none;
  color: #969696;
  padding: 5px 10px;
  outline: none;
  position: relative;
  font-family: "universmedium", sans-serif;
  width: 100%;
}

.search_field_filler {
  height: 30px;
}

.search_btn {
  background: var(--color-primary) url(../images/search_icon_white.png?a7d4a6c57938d890066d251e33faf305) 50% 50% no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
}

.login_btn {
  color: var(--color-white);
  display: inline-block;
  padding: 1px 0 4px 23px;
  margin-left: 22px;
  opacity: 0.5;
  background: url(../images/login_icon.png?e352ff65f7d5ddcccd9bd606795b2600) 0 0 no-repeat;
}

.login_btn:hover,
.login_btn.show_ghost {
  opacity: 1;
  color: var(--color-white);
}

.login_btn:hover {
  color: var(--color-white);
}

.login_form {
  position: absolute;
  right: 0;
  top: 100%;
  width: 241px;
  margin: 3px 0 0;
  background-color: #3f3f3f;
  color: var(--color-white);
  z-index: 9999;
}

.login_form .reg_link,
a.white_f.font_11 {
  display: none;
}

.login_form a {
  color: var(--color-white);
  text-decoration: underline;
}

.login_form_inner {
  line-height: 1.5;
  padding: 25px 10px 10px;
}

.login_form_inner a:hover {
  color: var(--color-white);
}

.login_form_row,
.div_texbox {
  margin-bottom: 15px;
}

.login_form label {
  font-size: 13px;
}

.login_form p {
  margin-bottom: 10px;
}

.login_form input[type=text],
.login_form input[type=password] {
  color: var(--color-black) !important;
}

.login_btns {
  padding: 10px 0 0;
}

.login_send_btn,
.login_form .buttons,
.login_form .button-primary {
  width: 122px;
  min-width: 0;
  text-align: center;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.reg_link {
  margin-left: 16px;
}

/*=====================> Primary NAV ========================*/
#primary_nav,
.primary_nav {
  background-color: var(--color-white);
}

@media only screen and (max-height: 768px) {
  .sub_menu_box {
    max-height: 510px;
    overflow: auto;
  }
  .sub_menu_content_item {
    overflow: hidden;
    max-height: inherit;
  }
}
@media only screen and (min-width: 1025px) {
  .navigation_list_wrapper {
    position: relative;
  }
  .navigation_list {
    float: right;
    padding: 0 0 0 241px;
  }
  .navigation_list_item {
    float: left;
  }
  .navigation_list_link {
    font-size: 15px;
    line-height: 1.23;
    display: block;
    padding: 26px 11px;
    color: #212121;
    position: relative;
    transition: none;
  }
  .has_sub_menu > .navigation_list_link {
    padding-right: 23px;
  }
  [data-lang=_de] .has_sub_menu > .navigation_list_link {
    padding-right: 14px;
  }
  [data-lang=_de] .navigation_list_link {
    font-size: 14px;
    padding-left: 9px;
    padding-right: 9px;
    padding-bottom: 27px;
  }
  [data-lang=_de] .navigation_list_item.has_sub_menu > a:after {
    right: 2px;
  }
  .navigation_list_link:hover,
  .navigation_list_item:hover > .navigation_list_link {
    color: var(--color-primary);
    text-decoration: none;
  }
  .sub_menu_box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    overflow-y: auto;
    z-index: -99;
    max-height: 0;
    border-top: 1px solid #d0d3d9;
    background-color: var(--color-gray-400) !important;
    background-size: contain !important;
    transition: max-height 0s !important;
    transition-delay: 0.3s !important;
  }
  .sub_menu_content_item {
    display: none;
    overflow: hidden;
  }
  .sub_menu_content .sub_menu_content_item:first-child {
    display: block;
    visibility: visible;
  }
  .sub_menu_item_type_icons {
    text-align: center;
    padding-bottom: 20px;
    padding-top: 10px;
  }
  [class^=type_icon] {
    display: inline-block;
    width: 45px;
    height: 45px;
    margin: 0 3px;
    background-size: cover !important;
  }
  [class^=type_icon].not_active {
    opacity: 0.5;
  }
  .sub_menu_content [class^=type_icon] {
    width: 32px;
    height: 32px;
    margin: 0 3px;
  }
  .type_icon_100,
  .type_icon1,
  .type_icon_1967,
  .type_icon_2370,
  .type_icon_3128 {
    background: url(../images/type_icon1.png?ff8ec0c165c9ffd6d8c0e6e3df89316c) 0 0 no-repeat;
  }
  .type_icon_102,
  .type_icon2,
  .type_icon_1991,
  .type_icon_2372,
  .type_icon_3139 {
    background: url(../images/type_icon2.png?c3ed3c52dcf01727ebbb6192b96de539) 0 0 no-repeat;
  }
  .type_icon_104,
  .type_icon3,
  .type_icon_2021,
  .type_icon_2374,
  .type_icon_3154 {
    background: url(../images/type_icon3.png?2d7924c040d58bdecce6589253aec9a0) 0 0 no-repeat;
  }
  .type_icon_106,
  .type_icon4,
  .type_icon_1980,
  .type_icon_2376,
  .type_icon_3134 {
    background: url(../images/type_icon4.png?44fc02fecf5353ca461bd1be1cabc21d) 0 0 no-repeat;
  }
  .type_icon_108,
  .type_icon_110,
  .type_icon5,
  .type_icon6,
  .type_icon_2045,
  .type_icon_2035,
  .type_icon_2378,
  .type_icon_2380,
  .type_icon_3168,
  .type_icon_3163 {
    background: url(../images/type_icon5.png?00ff7ba51dc714f0b2cf96c860decf07) 0 0 no-repeat;
  }
  [data-sub-item=about] .sub_menu_box_content + .wrapper {
    padding: 30px;
  }
  .navigation_list_item.has_sub_menu:hover .sub_menu_box {
    max-height: calc(100vh - 136px);
    z-index: 9999;
  }
  .navigation_list_item.has_sub_menu > a {
    position: relative;
  }
  .navigation_list_item.has_sub_menu > a:after {
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    margin-top: -4px;
    right: 10px;
    background: url(../images/greeen_down_arrow_sm.png?1afb0b525f51ee8fd5c44e80ff4d871c) right 35% no-repeat;
    content: "";
  }
  .navigation_list_item.has_sub_menu > a.show_dd:after {
    transform: rotate(180deg);
  }
  .sub_menu_box_content {
    position: relative;
    min-height: 280px;
    padding: 18px 30px 25px 30px;
    width: 330px;
  }
  .sub_menu_box_content2 {
    padding: 18px 30px 25px 30px;
  }
  .sub_menu_content {
    width: 740px;
  }
  .nav_latest_news_img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .placeholder_box {
    background-color: rgba(0, 0, 0, 0.2);
    min-height: 200px;
    margin: 30px 30px 20px 0;
  }
  .sub_menu_title {
    font-size: 40px;
    line-height: 1.23;
    margin-bottom: 2px;
  }
  .sub_menu {
    overflow: hidden;
    display: table;
  }
  .sub_menu_nav {
    display: table-cell;
    position: relative;
    width: 241px;
    padding-bottom: 80px;
    background-color: var(--color-white);
  }
  .view_all_btn {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    height: 76px;
    line-height: 76px;
    color: var(--color-white);
    background-color: #757373;
  }
  .view_all_btn span {
    display: inline-block;
    padding-right: 23px;
    background: url(../images/marker2.png?9a9f5c7c3db432463a05efd3ad734e7e) right 50% no-repeat;
  }
  .view_all_btn:hover {
    color: var(--color-white);
    background-color: rgb(69, 124, 31);
  }
  .sub_menu_nav_list_item {
    border-bottom: 1px solid var(--color-white);
  }
  .sub_menu_nav_list_item a {
    display: flex;
    align-items: center;
  }
  [lang=de] .sub_menu_nav_list_item {
    text-transform: none !important;
  }
  .sub_menu_nav_link {
    display: block;
    padding: 18px 25px 17px;
    font-size: 15px;
    line-height: 1.23;
    color: #212121;
    position: relative;
    vertical-align: middle;
  }
  [data-lang=_de] [data-item-index="1"] .sub_menu_nav_link {
    padding-left: 74px;
    min-height: 79px;
  }
  .sub_menu_nav_link span {
    vertical-align: middle;
    margin-right: 10px;
  }
  [data-lang=_de] .sub_menu_nav_link span {
    position: absolute;
    left: 20px;
    top: 18px;
  }
  [data-item-index="2"] .sub_menu_nav_link span {
    display: none;
  }
  .sub_menu_nav_link:hover,
  .active > .sub_menu_nav_link {
    background-color: var(--color-gray-400);
    color: inherit;
  }
  .sub_menu_content {
    overflow: hidden;
    display: table-cell;
    padding: 17px 7px 17px 12px;
  }
  .sub_menu_item {
    position: relative;
    width: 31%;
    float: left;
    overflow: hidden;
    margin: 0 1% 31px;
  }
  .sub_menu_item.sub_menu_item_application {
    background: var(--color-white);
  }
  .sub_menu_item.sub_menu_item_application > strong {
    display: inline-block;
    font-size: 16px;
    padding: 10px;
    min-height: 80px;
  }
  .sub_menu_item.sub_menu_item_application .btn2 {
    text-align: right;
    background: transparent;
    color: #8d8d8d;
    padding-right: 37px;
  }
  .sub_menu_item_title {
    margin-bottom: 9px;
    min-height: 40px;
  }
  .sub_menu_item_title1 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  .sub_menu_item_img {
    text-align: center;
  }
  .sub_menu_item_img1 {
    text-align: center;
    line-height: 102px;
    height: 120px;
  }
  .sub_menu_item_img a {
    display: block;
    width: 100%;
  }
  .sub_menu_item_img img {
    vertical-align: middle;
    width: 100%;
    height: auto;
  }
  .discover_fake_link {
    display: inline-block;
    padding: 0 20px 0 0;
    background: url(../images/marker1.png?9895d4032f078b3945ce1a2bdff3d072) right 50% no-repeat;
  }
  .sub_menu_item_caption {
    position: absolute;
    background-color: var(--color-gray-800);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 22px 24px;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
  }
  .sub_item_caption_title {
    font-size: 26px;
    line-height: 0.9;
    min-height: 43px;
    margin-bottom: 24px;
  }
  .sub_menu_item_caption .btn1 {
    display: block;
  }
  .sub_menu_item_machine_desc_list {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  .sub_menu_item_machine_desc_list_item {
    overflow: hidden;
  }
  .sub_menu_item_machine_desc_list_item span {
    float: right;
    display: block;
  }
  .sub_menu_item_machine_desc_list_item span:first-child {
    float: left;
    overflow: hidden;
    display: inline-block;
    width: 7px;
    margin-right: 5px;
    white-space: nowrap;
  }
}
.secondary_nav {
  z-index: 999;
  position: sticky;
  top: 105px;
  background-color: var(--color-gray-800);
  min-height: 35px;
}

.secondary_nav_list_item {
  display: table-cell;
  vertical-align: middle;
  border-bottom: 3px solid transparent;
}

[data-lang=_en] .secondary_nav_list_item.extra2,
[data-lang=_en] .extra2 .secondary_nav_list_item,
[data-lang=_de] .secondary_nav_list_item.extra2,
[data-lang=_de] .extra2 .secondary_nav_list_item,
[data-lang=_zh] .secondary_nav_list_item.extra2,
[data-lang=_zh] .secondary_nav_list_item {
  float: none;
  display: inline-block;
}

[data-lang=_zh] .secondary_nav {
  text-align: center;
}

.secondary_nav_list_item.extra2 .secondary_nav_link,
.extra2 .secondary_nav_list_item .secondary_nav_link {
  padding-left: 25px;
  padding-right: 25px;
}

.secondary_nav_list_item.extra3 .secondary_nav_link {
  padding-left: 10px;
  padding-right: 10px;
}

.secondary_nav_link {
  display: block;
  color: var(--color-white);
  text-align: center;
  padding: 8px 12px 3px;
  font-size: 14px;
}

.secondary_nav_link.extra {
  background-color: var(--color-primary);
}

.secondary_nav_list_item:hover,
.secondary_nav_list_item.active {
  border-color: var(--color-primary);
  color: var(--color-white);
}

.secondary_nav_list_item:hover a,
.secondary_nav_list_item.active a {
  color: var(--color-white);
}

.breadcrumb {
  position: relative;
  background-color: #f5f5f5;
  padding: 10px 0;
  font-size: 12px;
  border-bottom: 1px solid #d7dadf;
}

.breadcrumb .container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
}

.breadcrumb .container .bcn-list {
  display: flex;
  align-items: center;
}

.breadcrumb .container .bcn-list > span {
  padding: 0 3px;
}

/* Blocks */
section.quote-block {
  padding: 70px;
}
section.quote-block blockquote.customer-quote {
  padding: 40px 50px;
  margin: 40px 0;
  font-size: 19px;
  line-height: 25px;
  font-weight: 200;
  border-left: 3px solid var(--color-gray-900);
  background-color: rgba(0, 0, 0, 0.025);
}
section.quote-block blockquote.customer-quote .title {
  display: inline-block;
  width: 100%;
  font-size: 28px;
  line-height: 35px;
  margin-bottom: 20px;
  quotes: "“" "”" "‘" "’";
}
section.quote-block blockquote.customer-quote .title:before, section.quote-block blockquote.customer-quote .title:after {
  display: inline;
}
section.quote-block blockquote.customer-quote .title:before {
  content: open-quote;
}
section.quote-block blockquote.customer-quote .title:after {
  content: close-quote;
}
section.quote-block[data-bg=green_bg] *, section.quote-block[data-bg=dark_bg] * {
  color: var(--color-white);
}
section.quote-block[data-bg=green_bg] blockquote.customer-quote, section.quote-block[data-bg=dark_bg] blockquote.customer-quote {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}
section.quote-block .owl-nav > button {
  display: flex;
  width: 20px;
  height: auto;
  aspect-ratio: 1/2.2;
  background-color: unset;
  border-color: transparent;
  background-size: cover;
  transform: translateY(-50%);
}
section.quote-block .owl-prev {
  left: -40px;
}
section.quote-block .owl-next {
  right: -40px;
}

/* Vendor */
/* owl carousel */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 500ms ease-in-out;
}

.owl-carousel {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
}

.owl-carousel .owl-controls .owl-dot,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-nav .owl-prev {
  cursor: hand;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.owl-carousel .owl-grab {
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: var(--color-black);
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/**
 * Swiper 8.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 17, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: var(--color-primary);
  --swiper-navigation-color: silver;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: var(--color-black);
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, var(--color-black));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: var(--color-white);
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: var(--color-black);
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: var(--color-black);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/* Formstyler */
.jq-checkbox.disabled,
.jq-radio.disabled {
  opacity: 0.55;
}

.jq-checkbox,
.jq-number,
.jq-radio,
.jq-selectbox {
  vertical-align: middle;
}

.jq-file__name,
.jq-selectbox__select-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jq-checkbox {
  width: 24px;
  height: 24px;
  margin: 0 4px 0 0;
  border: 1px solid #e2e2e2;
  background: var(--color-white);
  cursor: pointer;
}

.jq-checkbox.checked .jq-checkbox__div {
  width: 16px;
  height: 15px;
  margin: 3px 0 0 4px;
  background: url(../images/checkbox_arrow.png?1a229d1961cee9162afa2e92386d67de) no-repeat;
}

.jq-checkbox.focused {
  border: 1px solid #08c;
}

.jq-checkbox,
.jq-radio {
  top: -1px;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 0;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: var(--color-white);
  cursor: pointer;
}

.jq-checkbox.checked .jq-checkbox__div,
.jq-radio.checked .jq-radio__div {
  width: 8px;
  height: 8px;
  margin: 3px 0 0 3px;
  border-radius: 2px;
  background: var(--color-primary);
}

.jq-radio.focused {
  border: 1px solid #08c;
}

.jq-file {
  width: 270px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.jq-file input {
  height: auto;
  line-height: 1em;
  cursor: pointer;
}

.jq-file__browse,
.jq-file__name {
  font: 14px/32px Arial, sans-serif;
  color: #333;
}

.jq-file__name {
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 0 80px 0 10px;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  background: var(--color-white);
  box-shadow: inset 1px 1px #f1f1f1;
}

.jq-file__browse {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  border-left: 1px solid #ccc;
  border-radius: 0 4px 4px 0;
  background: #f5f5f5;
  background: linear-gradient(var(--color-white), #e6e6e6);
  box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, 0.1);
  text-shadow: 1px 1px var(--color-white);
}

.jq-file:hover .jq-file__browse {
  background: #e6e6e6;
  background: linear-gradient(#f6f6f6, #e6e6e6);
}

.jq-file:active .jq-file__browse {
  background: #f5f5f5;
  box-shadow: inset 1px 1px 3px #ddd;
}

.jq-file.focused .jq-file__name {
  border: 1px solid #5794bf;
}

.jq-file.disabled,
.jq-file.disabled .jq-file__browse,
.jq-file.disabled .jq-file__name {
  border-color: #ccc;
  background: #f5f5f5;
  box-shadow: none;
  color: #888;
}

.jq-number {
  position: relative;
  display: inline-block;
  padding: 0 36px 0 0;
}

.jq-number__field {
  width: 100px;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, 0.1);
}

.jq-number__field:hover {
  border-color: #b3b3b3;
}

.jq-number__field input {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 9px;
  border: none;
  outline: 0;
  background: 0 0;
  font: 14px Arial, sans-serif;
  color: #333;
  text-align: left;
}

.jq-number__spin {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 14px;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  background: #f5f5f5;
  background: linear-gradient(var(--color-white), #e6e6e6);
  box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-shadow: 1px 1px var(--color-white);
  cursor: pointer;
}

.jq-number__spin.minus:after,
.jq-number__spin:after {
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.jq-number__spin.minus {
  top: auto;
  bottom: 0;
}

.jq-number__spin:hover {
  background: #e6e6e6;
  background: linear-gradient(#f6f6f6, #e6e6e6);
}

.jq-number__spin:active {
  background: #f5f5f5;
  box-shadow: inset 1px 1px 3px #ddd;
}

.jq-number__spin:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 11px;
  width: 0;
  height: 0;
  border-bottom: 5px solid #999;
}

.jq-number__spin.minus:after {
  top: 5px;
  border-top: 5px solid #999;
  border-bottom: none;
}

.jq-number__spin.minus:hover:after {
  border-top-color: var(--color-black);
}

.jq-number__spin.plus:hover:after {
  border-bottom-color: var(--color-black);
}

.jq-number.focused .jq-number__field {
  border: 1px solid #5794bf;
}

.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
  border-color: #ccc;
  background: #f5f5f5;
  box-shadow: none;
  color: #888;
}

.jq-number.disabled .jq-number__spin:after {
  border-bottom-color: #aaa;
}

.jq-number.disabled .jq-number__spin.minus:after {
  border-top-color: #aaa;
}

.jq-selectbox {
  cursor: pointer;
  width: 100%;
}

.jq-selectbox__select {
  height: 34px;
  padding: 0 15px 0 10px;
  border: 1px solid #dedede;
  background: var(--color-white);
  font: 14px/34px "Ek Mukta", "Open Sans", sans-serif;
  color: #333;
}

.jq-selectbox.disabled .jq-selectbox__select {
  border-color: #ccc;
  background: #f5f5f5;
  box-shadow: none;
  color: #888;
}

.jq-selectbox__select-text {
  display: block;
  width: 100%;
}

.jq-selectbox .placeholder {
  color: #888;
}

.jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
}

.jq-selectbox__trigger-arrow {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 0;
  height: 0;
  border-top: 5px solid var(--color-gray-900);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: var(--color-black);
}

.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  border-top-color: #aaa;
}

.jq-selectbox__dropdown {
  box-sizing: border-box;
  width: 100% !important;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid #dedede;
  background: var(--color-white);
  font: 14px/18px "Ek Mukta", "Open Sans", sans-serif;
}

.jq-selectbox__search {
  margin: 5px;
}

.jq-selectbox__search input {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 5px 27px 6px 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: 0;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) 100% 50% no-repeat;
  box-shadow: inset 1px 1px #f1f1f1;
  color: #333;
}

.jq-selectbox__not-found {
  margin: 5px;
  padding: 5px 8px 6px;
  background: #f0f0f0;
  font-size: 13px;
}

.jq-selectbox ul {
  margin: 0;
  padding: 0;
  max-height: 250px;
}

.jq-selectbox li {
  min-height: 18px;
  padding: 5px 10px 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  color: #231f20;
}

.jq-selectbox li.selected,
.jq-selectbox li:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.jq-selectbox li.disabled {
  color: #aaa;
}

.jq-selectbox li.disabled:hover {
  background: 0 0;
}

.jq-selectbox li.optgroup {
  font-weight: 700;
}

.jq-selectbox li.optgroup:hover {
  background: 0 0;
  color: #231f20;
  cursor: default;
}

.jq-selectbox li.option {
  padding-left: 25px;
}

.jq-select-multiple {
  box-sizing: border-box;
  padding: 1px;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  background: var(--color-white);
  box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/18px "Ek Mukta", "Open Sans", sans-serif;
  color: #333;
  cursor: default;
}

.jq-select-multiple.focused {
  border: 1px solid #5794bf;
}

.jq-select-multiple.disabled {
  border-color: #ccc;
  background: #f5f5f5;
  box-shadow: none;
  color: #888;
}

.jq-select-multiple ul {
  margin: 0;
  padding: 0;
}

.jq-select-multiple li {
  padding: 3px 9px 4px;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}

.jq-select-multiple li:first-child {
  border-radius: 3px 3px 0 0;
}

.jq-select-multiple li:last-child {
  border-radius: 0 0 3px 3px;
}

.jq-select-multiple li.selected {
  background: #08c;
  color: var(--color-white);
}

.jq-select-multiple li.disabled {
  color: #aaa;
}

.jq-select-multiple li.selected.disabled,
.jq-select-multiple.disabled li.selected {
  background: #ccc;
  color: var(--color-white);
}

.jq-select-multiple li.optgroup {
  font-weight: 700;
}

.jq-select-multiple li.option {
  padding-left: 25px;
}

input[type=email].styler,
input[type=password].styler,
input[type=search].styler,
input[type=tel].styler,
input[type=text].styler,
input[type=url].styler,
textarea.styler {
  padding: 8px 9px;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px "Ek Mukta", "Open Sans", sans-serif;
  color: #333;
}

textarea.styler {
  overflow: auto;
}

input[type=email].styler:hover,
input[type=password].styler:hover,
input[type=search].styler:hover,
input[type=tel].styler:hover,
input[type=text].styler:hover,
input[type=url].styler:hover,
textarea.styler:hover {
  border-color: #b3b3b3;
}

input[type=email].styler:focus,
input[type=password].styler:focus,
input[type=search].styler:focus,
input[type=tel].styler:focus,
input[type=text].styler:focus,
input[type=url].styler:focus,
textarea.styler:focus {
  border-color: #b3b3b3 #ccc #ccc;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

button.styler,
input[type=reset].styler,
input[type=button].styler,
input[type=submit].styler {
  overflow: visible;
  padding: 8px 11px;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  outline: 0;
  background: #f5f5f5;
  background: linear-gradient(var(--color-white), #e6e6e6);
  box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px var(--color-white);
  cursor: pointer;
}

button.styler::-moz-focus-inner,
input[type=reset].styler::-moz-focus-inner,
input[type=button].styler::-moz-focus-inner,
input[type=submit].styler::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button.styler:not([disabled]):hover,
input[type=reset].styler:hover,
input[type=button].styler:not([disabled]):hover,
input[type=submit].styler:not([disabled]):hover {
  background: #e6e6e6;
  background: linear-gradient(#f6f6f6, #e6e6e6);
}

button.styler:not([disabled]):active,
input[type=reset].styler:active,
input[type=button].styler:not([disabled]):active,
input[type=submit].styler:not([disabled]):active {
  background: #f5f5f5;
  box-shadow: inset 1px 1px 3px #ddd;
}

button.styler[disabled],
input[type=button].styler[disabled],
input[type=submit].styler[disabled] {
  border-color: #ccc;
  background: #f5f5f5;
  box-shadow: none;
  color: #888;
}

/* mediaelement */
.mejs-offscreen {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0px 0, 0 0, 0 0, 0 0);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.mejs-container {
  position: relative;
  background: var(--color-black);
  font-family: Helvetica, Arial, serif;
  text-align: left;
  vertical-align: top;
  text-indent: 0;
}

.mejs-container:focus {
  outline: 0;
}

.me-plugin {
  position: absolute;
}

.mejs-embed,
.mejs-embed body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-black);
  overflow: hidden;
}

.mejs-fullscreen {
  overflow: hidden !important;
}

.mejs-container-fullscreen {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1000;
}

.mejs-container-fullscreen .mejs-mediaelement,
.mejs-container-fullscreen video {
  width: 100%;
  height: 100%;
}

.mejs-clear {
  clear: both;
}

.mejs-background {
  position: absolute;
  top: 0;
  left: 0;
}

.mejs-mediaelement {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mejs-poster {
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

:root .mejs-poster img {
  display: none;
}

.mejs-poster img {
  border: 0;
  padding: 0;
}

.mejs-overlay {
  position: absolute;
  top: 0;
  left: 0;
}

.mejs-overlay-play {
  cursor: pointer;
}

.mejs-overlay-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  background: url(../images/bigplay.svg?9d696f201d385518f6e67642020de616) no-repeat;
}

.no-svg .mejs-overlay-button {
  background-image: url(../images/bigplay.png?0693a8b829b302a6637d94b753a709f4);
}

.mejs-overlay:hover .mejs-overlay-button {
  background-position: 0 -100px;
}

.mejs-overlay-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  background: #333;
  background: url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831);
  background: rgba(0, 0, 0, 0.9);
  background: linear-gradient(rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
}

.mejs-overlay-loading span {
  display: block;
  width: 80px;
  height: 80px;
  background: transparent url(../images/loading.gif?9ec5d4824ad15020d03778ba414f708e) 50% 50% no-repeat;
}

.mejs-container .mejs-controls {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
  bottom: 0;
  left: 0;
  background: url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831);
  background: rgba(0, 0, 0, 0.7);
  background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  height: 30px;
  width: 100%;
}

.mejs-container .mejs-controls div {
  list-style-type: none;
  background-image: none;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 26px;
  height: 26px;
  font-size: 11px;
  line-height: 11px;
  font-family: Helvetica, Arial, serif;
  border: 0;
}

.mejs-controls .mejs-button button {
  cursor: pointer;
  display: block;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  margin: 7px 5px;
  padding: 0;
  position: absolute;
  height: 16px;
  width: 16px;
  border: 0;
  background: transparent url(../images/controls.svg?b8a3a5ceeada5a5ac5c612331f38fb16) no-repeat;
}

.no-svg .mejs-controls .mejs-button button {
  background-image: url(../images/controls.png?db0caa0aded5fe2ed8d7ba408cbf0283);
}

.mejs-controls .mejs-button button:focus {
  outline: dotted 1px #999;
}

.mejs-container .mejs-controls .mejs-time {
  color: var(--color-white);
  display: block;
  height: 17px;
  width: auto;
  padding: 10px 3px 0;
  overflow: hidden;
  text-align: center;
  box-sizing: content-box;
}

.mejs-container .mejs-controls .mejs-time a {
  color: var(--color-white);
  font-size: 11px;
  line-height: 12px;
  display: block;
  float: left;
  margin: 1px 2px 0 0;
  width: auto;
}

.mejs-controls .mejs-play button {
  background-position: 0 0;
}

.mejs-controls .mejs-pause button {
  background-position: 0 -16px;
}

.mejs-controls .mejs-stop button {
  background-position: -112px 0;
}

.mejs-controls div.mejs-time-rail {
  direction: ltr;
  width: 200px;
  padding-top: 5px;
}

.mejs-controls .mejs-time-rail span,
.mejs-controls .mejs-time-rail a {
  display: block;
  position: absolute;
  width: 180px;
  height: 10px;
  border-radius: 2px;
  cursor: pointer;
}

.mejs-controls .mejs-time-rail .mejs-time-total {
  margin: 5px;
  background: #333;
  background: rgba(50, 50, 50, 0.8);
  background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
}

.mejs-controls .mejs-time-rail .mejs-time-buffering {
  width: 100%;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 15px 15px;
  animation: buffering-stripes 2s linear infinite;
}

@keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
.mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: #3caac8;
  background: rgba(60, 170, 200, 0.8);
  background: linear-gradient(rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  width: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
  background: var(--color-white);
  background: rgba(255, 255, 255, 0.8);
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  width: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-handle {
  display: none;
  position: absolute;
  margin: 0;
  width: 10px;
  background: var(--color-white);
  border-radius: 5px;
  cursor: pointer;
  border: solid 2px #333;
  top: -2px;
  text-align: center;
}

.mejs-controls .mejs-time-rail .mejs-time-float {
  position: absolute;
  display: none;
  background: #eee;
  width: 36px;
  height: 17px;
  border: solid 1px #333;
  top: -26px;
  margin-left: -18px;
  text-align: center;
  color: #111;
}

.mejs-controls .mejs-time-rail .mejs-time-float-current {
  margin: 2px;
  width: 30px;
  display: block;
  text-align: center;
  left: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-float-corner {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  line-height: 0;
  border: solid 5px;
  border-color: #eee transparent transparent;
  border-radius: 0;
  top: 15px;
  left: 13px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float {
  width: 48px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current {
  width: 44px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner {
  left: 18px;
}

.mejs-controls .mejs-fullscreen-button button {
  background-position: -32px 0;
}

.mejs-controls .mejs-unfullscreen button {
  background-position: -32px -16px;
}

.mejs-controls .mejs-mute button {
  background-position: -16px -16px;
}

.mejs-controls .mejs-unmute button {
  background-position: -16px 0;
}

.mejs-controls .mejs-volume-button {
  position: relative;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider {
  display: none;
  height: 115px;
  width: 25px;
  background: url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831);
  background: rgba(50, 50, 50, 0.7);
  border-radius: 0;
  top: -115px;
  left: 0;
  z-index: 1;
  position: absolute;
  margin: 0;
}

.mejs-controls .mejs-volume-button:hover {
  border-radius: 0 0 4px 4px;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total {
  position: absolute;
  left: 11px;
  top: 8px;
  width: 2px;
  height: 100px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
  position: absolute;
  left: 11px;
  top: 8px;
  width: 2px;
  height: 100px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
  position: absolute;
  left: 4px;
  top: -3px;
  width: 16px;
  height: 6px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.9);
  cursor: N-resize;
  border-radius: 1px;
  margin: 0;
}

.mejs-controls a.mejs-horizontal-volume-slider {
  height: 26px;
  width: 56px;
  position: relative;
  display: block;
  float: left;
  vertical-align: middle;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  position: absolute;
  left: 0;
  top: 11px;
  width: 50px;
  height: 8px;
  margin: 0;
  padding: 0;
  font-size: 1px;
  border-radius: 2px;
  background: #333;
  background: rgba(50, 50, 50, 0.8);
  background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  position: absolute;
  left: 0;
  top: 11px;
  width: 50px;
  height: 8px;
  margin: 0;
  padding: 0;
  font-size: 1px;
  border-radius: 2px;
  background: var(--color-white);
  background: rgba(255, 255, 255, 0.8);
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
  display: none;
}

.mejs-controls .mejs-captions-button {
  position: relative;
}

.mejs-controls .mejs-captions-button button {
  background-position: -48px 0;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector {
  visibility: hidden;
  position: absolute;
  bottom: 26px;
  right: -51px;
  width: 85px;
  height: 100px;
  background: url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831);
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 10px 10px 0;
  overflow: hidden;
  border-radius: 0;
}

.mejs-controls .mejs-captions-button:hover .mejs-captions-selector {
  visibility: visible;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none !important;
  overflow: hidden;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li {
  margin: 0 0 6px;
  padding: 0;
  list-style-type: none !important;
  display: block;
  color: var(--color-white);
  overflow: hidden;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input {
  clear: both;
  float: left;
  margin: 3px 3px 0 5px;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label {
  width: 55px;
  float: left;
  padding: 4px 0 0;
  line-height: 15px;
  font-family: helvetica, arial, serif;
  font-size: 10px;
}

.mejs-controls .mejs-captions-button .mejs-captions-translations {
  font-size: 10px;
  margin: 0 0 5px;
}

.mejs-chapters {
  position: absolute;
  top: 0;
  left: 0;
  width: 10000px;
  z-index: 1;
}

.mejs-chapters .mejs-chapter {
  position: absolute;
  float: left;
  background: #222;
  background: rgba(0, 0, 0, 0.7);
  background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  overflow: hidden;
  border: 0;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block {
  font-size: 11px;
  color: var(--color-white);
  padding: 5px;
  display: block;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  cursor: pointer;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block-last {
  border-right: 0;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block:hover {
  background: #666;
  background: rgba(102, 102, 102, 0.7);
  background: linear-gradient(rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
}

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title {
  font-size: 12px;
  font-weight: 700;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 3px;
  line-height: 12px;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan {
  font-size: 12px;
  line-height: 12px;
  margin: 3px 0 4px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mejs-captions-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
  color: var(--color-white);
}

.mejs-captions-layer a {
  color: var(--color-white);
  text-decoration: underline;
}

.mejs-captions-layer[lang=ar] {
  font-size: 20px;
  font-weight: 400;
}

.mejs-captions-position {
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 0;
}

.mejs-captions-position-hover {
  bottom: 35px;
}

.mejs-captions-text {
  padding: 3px 5px;
  background: url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831);
  background: rgba(20, 20, 20, 0.5);
  white-space: pre-wrap;
}

.me-cannotplay a {
  color: var(--color-white);
  font-weight: 700;
}

.me-cannotplay span {
  padding: 15px;
  display: block;
}

.mejs-controls .mejs-loop-off button {
  background-position: -64px -16px;
}

.mejs-controls .mejs-loop-on button {
  background-position: -64px 0;
}

.mejs-controls .mejs-backlight-off button {
  background-position: -80px -16px;
}

.mejs-controls .mejs-backlight-on button {
  background-position: -80px 0;
}

.mejs-controls .mejs-picturecontrols-button {
  background-position: -96px 0;
}

.mejs-contextmenu {
  position: absolute;
  width: 150px;
  padding: 10px;
  border-radius: 4px;
  top: 0;
  left: 0;
  background: var(--color-white);
  border: solid 1px #999;
  z-index: 1001;
}

.mejs-contextmenu .mejs-contextmenu-separator {
  height: 1px;
  font-size: 0;
  margin: 5px 6px;
  background: #333;
}

.mejs-contextmenu .mejs-contextmenu-item {
  font-family: Helvetica, Arial, serif;
  font-size: 12px;
  padding: 4px 6px;
  cursor: pointer;
  color: #333;
}

.mejs-contextmenu .mejs-contextmenu-item:hover {
  background: #2c7c91;
  color: var(--color-white);
}

.mejs-controls .mejs-sourcechooser-button {
  position: relative;
}

.mejs-controls .mejs-sourcechooser-button button {
  background-position: -128px 0;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector {
  visibility: hidden;
  position: absolute;
  bottom: 26px;
  right: -10px;
  width: 130px;
  height: 100px;
  background: url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831);
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 10px;
  overflow: hidden;
  border-radius: 0;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none !important;
  overflow: hidden;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li {
  margin: 0 0 6px;
  padding: 0;
  list-style-type: none !important;
  display: block;
  color: var(--color-white);
  overflow: hidden;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input {
  clear: both;
  float: left;
  margin: 3px 3px 0 5px;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label {
  width: 100px;
  float: left;
  padding: 4px 0 0;
  line-height: 15px;
  font-family: helvetica, arial, serif;
  font-size: 10px;
}

.mejs-postroll-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831);
  background-color: rgba(50, 50, 50, 0.7);
  z-index: 1000;
  overflow: hidden;
}

.mejs-postroll-layer-content {
  width: 100%;
  height: 100%;
}

.mejs-postroll-close {
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831);
  background: rgba(50, 50, 50, 0.7);
  color: var(--color-white);
  padding: 4px;
  z-index: 100;
  cursor: pointer;
}

div.mejs-speed-button {
  width: 46px !important;
  position: relative;
}

.mejs-controls .mejs-button.mejs-speed-button button {
  background: transparent;
  width: 36px;
  font-size: 11px;
  line-height: normal;
  color: var(--color-white);
}

.mejs-controls .mejs-speed-button .mejs-speed-selector {
  display: none;
  position: absolute;
  top: -100px;
  left: -10px;
  width: 60px;
  height: 100px;
  background: url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831);
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
}

.mejs-controls .mejs-speed-button:hover > .mejs-speed-selector {
  display: block;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label.mejs-speed-selected {
  color: rgb(33, 248, 248);
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none !important;
  overflow: hidden;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li {
  margin: 0 0 6px;
  padding: 0 10px;
  list-style-type: none !important;
  display: block;
  color: var(--color-white);
  overflow: hidden;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li input {
  clear: both;
  float: left;
  margin: 3px 3px 0 5px;
  display: none;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label {
  width: 60px;
  float: left;
  padding: 4px 0 0;
  line-height: 15px;
  font-family: helvetica, arial, serif;
  font-size: 11.5px;
  color: var(--color-white);
  margin-left: 5px;
  cursor: pointer;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li:hover {
  background-color: #c8c8c8 !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.mejs-controls .mejs-button.mejs-jump-forward-button {
  background: transparent url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831) no-repeat;
  background-position: 3px 3px;
}

.mejs-controls .mejs-button.mejs-jump-forward-button button {
  background: transparent;
  font-size: 9px;
  line-height: normal;
  color: var(--color-white);
}

.mejs-controls .mejs-button.mejs-skip-back-button {
  background: transparent url(../images/background.png?bdf7cea784bc3735d9375ed9349d1831) no-repeat;
  background-position: 3px 3px;
}

.mejs-controls .mejs-button.mejs-skip-back-button button {
  background: transparent;
  font-size: 9px;
  line-height: normal;
  color: var(--color-white);
}

.klaro {
  --dark2: rgba(117, 115, 115, 0.8);
  --blue1: var(--color-secondary);
  --green1: var(--color-primary);
  --border-radius: 0;
}

.klaro .cookie-modal {
  z-index: 9999 !important;
}

.klaro .cookie-modal .cm-powered-by,
.klaro .cookie-modal .cm-toggle-all,
.klaro .cookie-modal .cm-services {
  display: none;
}

.klaro .cookie-modal .cm-btn, .klaro .context-notice .cm-btn, .klaro .cookie-notice .cm-btn {
  padding: 0.4rem 0.8rem !important;
}

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer,
.fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-iframe {
  width: 100%;
  height: 480px;
  max-height: 100%;
  max-width: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url(../images/fancybox_sprite.png?7b8e2ce6af56d812aac39e65834c9dd9);
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url(../images/fancybox_loading.gif?78a563f0ad9e9a354f51b1dfcbd81991) center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  cursor: pointer;
  text-decoration: none;
  background: transparent url(../images/blank.gif?e5634ce393b9b3dfb4ee4f2973de3692); /* helps IE */
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: visible;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url(../images/fancybox_overlay.png?f0eb344850a4f2f3deadac5c2629201e);
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: var(--color-white);
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: var(--color-white);
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--color-white);
  padding: 10px;
  background: var(--color-black);
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading,
  .fancybox-close,
  .fancybox-prev span,
  .fancybox-next span {
    background-image: url(../images/fancybox_sprite@2x.png?89fa20c7590c9538072a2b6bde598920);
    background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: url(../images/fancybox_loading@2x.gif?d8f0a9727c7b19e2f0dbb378910ef028);
    background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
  }
}
.has-white-color {
  color: var(--color-white);
}
.has-white-color a {
  color: var(--color-white);
  text-decoration: underline;
}

.has-background.has-white-color {
  padding: 20px;
  border-radius: 10px;
}

/* Global properties ======================================================== */
html {
  width: 100%;
  scroll-padding-top: 145px;
  scroll-behavior: smooth;
}

html:has(.sticky-btn-container) {
  scroll-padding-top: 215px;
}

html:has(.secondary_nav) {
  scroll-padding-top: 145px;
}

html:has(.secondary_nav):has(.sticky-btn-container) {
  scroll-padding-top: 255px;
}

body {
  font-family: "Ek Mukta", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-gray-900);
  min-width: 1000px;
  background: #474a50;
}

button {
  font-family: "Ek Mukta", "Open Sans", sans-serif;
}

.big_container {
  width: 1500px;
  margin: 0 auto;
  max-width: 98%;
  position: relative;
  background: var(--color-white);
}

.container {
  width: 980px;
  margin: 0 auto;
}

.container-xl {
  width: 1080px;
  margin: 0 auto;
}

.border {
  border: 2px solid #d7d7d7;
}

.border-bottom {
  border-bottom: 2px solid #d7d7d7;
}

.position-relative {
  position: relative !important;
}

.animated-video-wrapper {
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: absolute;
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
}

.image-caption {
  display: block;
  margin: 10px 0;
  text-align: center;
}

.operator_box .image-wrapper {
  right: 0;
}

.operator_box1 .image-wrapper {
  left: 0;
}

.animated-video-wrapper video, .image-wrapper img {
  width: 625px;
  height: 425px;
}

.image-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
}

.container > .grid-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0;
  margin: 30px 0;
}

#toTopBtn {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  z-index: 999;
  background: var(--color-primary) url(../images/arrow_to_top.png?5c033be62d8010a2fc4e9cb4497e4d9f) 50% 50% no-repeat;
}

.green_f,
.sub_menu_item_title,
.sub_menu_nav_list_item.active a,
.sub_menu_item_title1 a {
  color: var(--color-primary);
}

.jq-selectbox__dropdown {
  bottom: unset !important;
}

.btn-devider {
  border-color: #e5e5e5 !important;
  margin: 50px 0;
}

.orange-btn {
  background-color: var(--color-secondary);
  padding: 5px 15px;
  color: var(--color-white) !important;
  font-weight: 900;
  text-decoration: none !important;
}

.green-btn {
  background-color: rgb(69, 124, 31);
  padding: 5px 15px;
  color: var(--color-white) !important;
  font-weight: 900;
  text-decoration: none !important;
}

/*=====================> Content ========================*/
#content {
  padding: 0;
  min-height: 800px;
  position: relative;
}

#contentLoader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none !important;
  background: var(--color-white) url(../images/content_preloader.gif?8676e3ea0dbfc09fc972db3af090ed23) 50% 50% no-repeat fixed;
  z-index: 9999;
}

.home #content > .home_img_box {
  background: rgb(69, 124, 31);
  padding: 20px;
}

.home #content > .home_img_box:first-child {
  margin-top: 0;
}

.home .breadcrumb + #content {
  padding-top: 0 !important;
}

[data-vide-bg] > div {
  z-index: 1 !important;
}

#content sup {
  vertical-align: super;
}

#content sub {
  vertical-align: sub;
}

.pad_box {
  padding: 62px 0;
}

.pad_box1 {
  padding: 100px 0;
}

.pad_box2 {
  padding: 32px 0 62px;
}

.pad_box3 {
  padding: 40px 0;
}

.video_box {
  position: relative;
  background-size: cover !important;
  min-height: 615px;
  padding: 48px 0;
}

.video_box .videoPlayer {
  height: 100% !important;
  width: 100% !important;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.video_box.playing .videoPlayer {
  opacity: 1;
  visibility: visible;
}

#fancyVideo {
  position: relative;
}

#fancyVideo .videoPlayer {
  width: 780px !important;
  height: 400px !important;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
}

.video_content_wrap {
  margin-bottom: 40px;
  position: relative;
  min-height: 400px;
}

.video_content_wrap .video img {
  display: block;
}

[data-bg=video_bg1] {
  background: url(../images/video_bg1.jpg?d0b3a4a96bfdc039ba1d7d95901e9391) 50% 0 no-repeat;
}

[data-bg=video_bg2] {
  background: url(../images/video_bg2.jpg?91745e81c2778bd2d65bdd5834258cc2) 50% 0 no-repeat;
}

/*-------------------*/
.video1 {
  width: 620px;
  height: 389px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background-size: cover !important;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero_box.no-autoplay:before,
.video_box:before,
.video1:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--color-black);
  opacity: 0.5;
  z-index: 1;
  content: "";
}

.video img {
  display: none;
  height: auto;
  max-width: 100%;
}

.hero_box {
  position: relative;
}

.hero_box .heroPlayer {
  width: 100% !important;
}

.hero_box .overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  background: var(--color-black);
}

@media only screen and (min-width: 769px) {
  .hero_box .overlay {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 80px;
    z-index: 2;
    background: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  }
}
@media only screen and (min-width: 992px) {
  .hero_box .overlay {
    max-width: 680px;
  }
}
.video_box h3 {
  position: relative;
}

.video_box h3,
.video_box .video {
  z-index: 2;
}

.service_icon_img img {
  max-width: 100%;
  height: auto;
}

.play_hero_btn,
.play_video_btn,
.play_video_btn1 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -45px 0 0 -45px;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.61) url(../images/play_icon.png?7dfd0bbffbb4ebe86fee6fb4c05a6b32) 60% 50% no-repeat;
}

.video1 .play_video_btn,
.hero_box.no-autoplay .play_hero_btn,
.video_box > .play_video_btn {
  z-index: 10;
}

.playing.video1 .play_video_btn,
.playing.hero_box.no-autoplay .play_hero_btn,
.playing.video_box .play_video_btn {
  opacity: 0;
  visibility: hidden;
}

.playing.video1 iframe,
.playing.video_box iframe {
  position: absolute;
  left: 0;
  top: 0;
}

.playing.video1 .title2,
.playing.video_box .title2 {
  display: none;
}

.playing.video1:before,
.playing.hero_box.no-autoplay:before,
.playing.video_box:before {
  display: none;
}

.play_hero_btn:after,
.play_video_btn:after {
  position: absolute;
  bottom: -30px;
  color: var(--color-white);
  font-size: 16px;
  left: 0;
  right: 0;
  text-align: center;
  white-space: nowrap;
  content: attr(data-label);
}

.play_hero_btn.extra:after,
.play_video_btn.extra:after {
  content: attr(data-text);
}

/*-------------*/
.service_icon_description {
  padding: 0 0 0 20px;
}

/*------------*/
.fingertips_item {
  display: inline-block;
  text-align: left;
  border-left: 1px solid #d6d6d6;
  padding: 0 45px;
}

.fingertips .fingertips_item:first-child {
  border: none;
}

/*------------*/
.new_events {
  width: 100%;
  margin: 40px 0;
}

.new_events td {
  padding-top: 15px;
  padding-bottom: 15px;
}

.new_events_col1 {
  width: 68%;
  padding-right: 40px;
}

.new_events_col2 {
  width: 32%;
  padding: 0 10px;
  text-align: center;
  background-color: var(--color-gray-400);
}

.last_news {
  margin-bottom: 40px;
  position: relative;
}

.last_news img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.single .wp-caption {
  position: relative;
  width: auto !important;
  margin-bottom: 30px;
}

.single .wp-caption img {
  width: 100%;
  height: auto;
}

.last_news_caption,
.single .wp-caption .wp-caption-text {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  color: var(--color-white);
  right: 0;
  margin: 0;
  padding: 15px 25px 20px;
  background-color: rgba(69, 124, 31, 0.9);
}

.last_news_caption a:hover {
  color: inherit;
}

.last_news_caption p:last-child {
  margin-bottom: 0;
}

.events_list_item {
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.events_list_item_time_wrap,
.events_list_item_img_wrap {
  padding-right: 40px;
}

.events_list_item_img_wrap {
  max-width: 350px;
}

/*------------------*/
.event_time {
  background-color: var(--color-primary);
  padding: 15px 25px 13px;
  display: inline-block;
  color: var(--color-white);
  text-align: center;
}

.event_time b:first-child {
  font-size: 55px;
  font-weight: normal;
  line-height: 1;
  margin-bottom: -8px;
}

.event_time b {
  display: block;
  font-weight: normal;
}

.event_time b:last-child {
  font-size: 14px;
}

/*=====================> Single Machine Page ========================*/
#tubularVideo {
  overflow: hidden;
  position: relative;
}

#tubular-container {
  display: none;
}

.videoloading {
  display: block;
  height: 48px;
  left: 50%;
  position: absolute !important;
  top: 50%;
  margin-top: -25px;
  width: 48px;
}

.videoloading {
  animation: 1s linear 0s normal none infinite rot;
  border-color: rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.4) rgba(0, 0, 0, 0.4);
  z-index: 20;
  border-radius: 100%;
  border-style: solid;
  border-width: 8px;
}

@keyframes rot {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.loaded .videoloading {
  visibility: hidden;
  opacity: 0;
}

#tubular-player {
  top: 50% !important;
  left: 50% !important;
  width: 100% !important;
  height: 100% !important;
  transform: translate(-50%, -50%);
}

.no-cssanimations .videoloading {
  border: 0;
  background: url(../images/loading.gif?9ec5d4824ad15020d03778ba414f708e) 0 0 no-repeat;
  border-radius: 0;
}

.about_machine_box {
  position: relative;
  min-height: 562px;
}

.page-template-page-single-machine .about_machine_box {
  min-height: 570px;
  margin-bottom: -100px;
}

.page-template-page-single-machine .green_box {
  background-color: rgba(69, 124, 31, 0.8);
  z-index: 10;
}

.about_machine_box_caption {
  padding: 90px 0 0;
}

.green_box {
  color: var(--color-white);
  width: 100%;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1;
  position: relative;
  background-color: rgb(69, 124, 31);
}

.green_box:before {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  top: -40px;
  background-color: rgba(69, 124, 31, 0.8);
  content: "";
  z-index: 10;
}

.page-template-page-single-machine .green_box:before {
  display: none;
}

.green_box > * {
  width: 50%;
  vertical-align: middle;
}

.green_box_m_name {
  font-size: 40px;
  padding: 30px 0 20px 30px;
}

.green_box_m_name h1 {
  font-weight: 200;
  text-transform: none;
}

.green_box_m_slogan {
  text-align: right;
  padding: 30px 30px 20px 0;
}

.green_box_m_slogan h2 {
  font-weight: 400;
}

[data-uni-box-bg=uni7000] {
  background: url(../images/single_product_bg1.png?2916c8db51e25bf7c8e51fc21b457c0d) right 0 no-repeat var(--color-gray-400);
}

[data-bg=application] {
  background: url(../images/car_bg_new2.jpg?f7b10798153c988916e82a13326066a6) 105% bottom no-repeat;
}

[data-bg=services1] {
  background: url(../images/home_services_bg.jpg?caad2b6129b2bdccd505e3efbf73e66c) left 0 no-repeat;
  min-height: 615px;
  background-size: contain;
}

[data-bg=gray_bg] {
  background-color: var(--color-gray-400) !important;
}

[data-bg=gray_bg] + [data-bg=gray_bg] {
  background-color: var(--color-white) !important;
}

[data-bg=gray_bg1] {
  background-color: #f5f5f5;
}

[data-bg=white_bg] {
  background-color: var(--color-white);
}

[data-bg=dark_bg] {
  background-color: var(--color-gray-800);
}

[data-bg=dark_bg1] {
  background-color: #474a50;
}

[data-bg=green_bg] {
  background-color: var(--color-primary);
}

[data-bg=dark_green_bg] {
  background-color: rgb(21, 53, 41);
}

[data-bg=experience_bg] {
  min-height: 500px;
  background: url(../images/experience_bg.png?51ce57ec00a977a88f576d58bbd657b6) right 0 no-repeat;
}

[data-bg=discover_bg] {
  min-height: 500px;
  background: url(../images/discover_bg.png?3eb3f3089abef5f68a1edf619158e117) 0 0 no-repeat;
  background-size: contain;
}

[data-bg=students_bg] {
  min-height: 500px;
  background: url(../images/students_bg.png?3051e1ffd8dbe1be77e45f53981bce86) right 0 no-repeat;
  background-size: contain;
}

[data-bg=general-machining] {
  background: url(../images/general_machining.jpg?12e63d8734493387b95508b930e6a4f9) 120% 50% no-repeat;
  background-size: contain;
}

[data-bg=energy] {
  background: url(../images/renewable_energy.jpg?b105fe0a27e64faf3b9835d9bd3eb649) 120% 100% no-repeat;
  background-size: contain;
}

[data-bg=logistics] {
  background: url(../images/train.jpg?24568d20e5878c6a3fd9919d5577a0f6) 120% 100% no-repeat;
  background-size: contain;
}

[data-bg=gray_gradient_bg] {
  background: #c9c9c9;
  background: linear-gradient(to right, #c9c9c9 0%, var(--color-white) 100%);
}

.content_box {
  padding: 60px 0 60px;
  position: relative;
}

.content_box .background-image {
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  overflow: hidden;
  margin-bottom: 40px;
}

@media only screen and (min-width: 769px) {
  .content_box .background-image {
    position: absolute;
  }
}
.content_box_col {
  width: 380px;
}

.machine-usps {
  list-style-type: "✓";
  padding: 0 0 30px 20px;
}

.machine-usps li {
  color: var(--color-primary);
  font-size: 23px;
  line-height: 1;
  padding-top: 10px;
}

.machine-usps li:before {
  display: none !important;
}

.machine_data {
  overflow: hidden;
  margin-bottom: 26px;
}

.machine_data_item {
  float: left;
  width: 100%;
}

.machine_data_item span {
  display: inline-block;
  vertical-align: middle;
}

.machine_data_item_value,
.custom_tabs h2 {
  color: var(--color-primary);
  font-size: 30px;
  line-height: 1;
  padding-top: 2px;
}

.machine_data_item_length {
  font-size: 13px;
  line-height: 1;
  padding-left: 3px;
}

.tabs .content_col_1_2 h2 {
  text-transform: none;
}

/*--------------------*/
.owner_box {
  padding: 63px 0 69px;
}

.owner_box.sticky-btn {
  padding-top: 0;
}

[class^=content_col] {
  float: left;
}

.extra[class^=content_col] {
  float: right;
}

[class*=content_right_col] {
  float: left;
}

.cols_r_indent [class^=content_col]:not(:first-child) {
  padding-left: 25px;
}

.content_col_1_2 {
  width: 50%;
}

.extra_cols_wrap .content_col_1_2:first-child + .content_col_1_2 {
  padding-left: 20px;
}

.content_col_1_3 {
  width: 33%;
  float: left;
}

.content_col_1_4 {
  width: 25%;
}

.content_col_3_4,
.simple_col_3_4 {
  width: 75%;
}

.content_col_3_4_sm {
  width: 66%;
}

.content_col_sm {
  width: 215px;
  padding-right: 20px;
}

.owner_solutions {
  margin: 0 -36px;
}

.owner_solution_item {
  float: left;
  width: 168px;
  padding-bottom: 14px;
  position: relative;
  text-align: right;
  margin: 0 36px 60px;
  border-bottom: 1px solid #e5e5e5;
}

.owner_solution_item_caption {
  text-align: left;
  position: absolute;
  font-size: 20px;
  line-height: 1.23;
  top: 0;
  left: 0;
  padding: 4px 0 0;
  text-transform: uppercase;
}

.content_separator {
  border: none;
  height: 1px;
  background-color: #e5e5e5;
  margin: 20px 0 30px;
}

/* ----------------------------*/
.operator_box,
.operator_box1 {
  padding: 63px 0;
  position: relative;
  border-bottom: 2px solid #d7d7d7;
}

.operator_box .content_col_1_2,
.operator_box1 .content_col_1_2 {
  min-height: 425px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/*----------------------------*/
.content_box1 {
  padding: 48px 0;
}

.bot_bd1,
#content > section {
  border-bottom: 1px solid #dedede;
}

.simple_tabs .resp-tabs-list {
  text-align: center;
  display: table;
  table-layout: fixed;
  width: 100%;
  border-bottom: 1px solid #67af47;
}

.content_nav_list {
  position: relative;
  z-index: 99;
  padding-bottom: 30px;
}

.simple_tabs .resp-tabs-list-item,
.content_nav_list > li {
  background-color: var(--color-gray-400);
  display: inline-block;
  font-size: 15px;
  padding: 0 10px;
  margin: 0 -2px;
  height: 53px;
  vertical-align: middle;
  cursor: pointer;
  line-height: 53px;
}

.simple_tabs .resp-tabs-list-item {
  display: table-cell;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.1;
  height: auto;
}

.simple_tabs .resp-tabs-list-item:hover,
.simple_tabs .resp-tabs-list-item.resp-tab-active,
.content_nav_list > li:hover,
.content_nav_list > li.current {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.resp-tabs-list-item:hover a,
.resp-tabs-list-item.resp-tab-active a {
  color: var(--color-white);
}

.simple_tabs .resp-tabs-list-item span {
  line-height: 18px;
  vertical-align: middle;
  display: inline-block;
}

.tabs.simple_tabs.extra1 .resp-tabs-list-item span {
  line-height: inherit;
}

.simple_tabs .resp-tabs-container .container {
  padding: 76px 0;
  box-sizing: border-box;
}

.simple_tabs .extra.resp-tabs-container {
  padding: 76px 0 0 0;
}

.simple_tabs .extra2.resp-tabs-container {
  padding-top: 30px;
}

.simple_tabs.extra1 .resp-tabs-container {
  padding: 76px 0 0 0;
}

.tabs.var1 .resp-tabs-list {
  padding: 0 0 0 80px;
  float: left;
  width: 240px;
}

.tabs.var1 .resp-tabs-list-item {
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid #dedede;
}

.area_list_item_label {
  font-weight: bold;
}

.tabs.var1 .resp-tabs-list-item:hover,
.tabs.var1 .resp-tabs-list-item.resp-tab-active {
  color: var(--color-primary);
}

.tabs.var1 .resp-tabs-list-item:after {
  display: none;
  position: absolute;
  width: 10px;
  height: 12px;
  right: 0;
  top: 50%;
  margin-top: -5px;
  background: url(../images/marker1.png?9895d4032f078b3945ce1a2bdff3d072) 0 0 no-repeat;
  content: "";
}

.tabs.var1 .resp-tabs-list-item.resp-tab-active:after {
  display: block;
}

.tabs.var1 .resp-tabs-container {
  padding: 0 83px 0 80px;
}

.area_list {
  display: table;
  width: 100%;
}

.area_list_item {
  overflow: hidden;
  display: table-row;
}

.area_list_item > div {
  display: table-cell;
  width: 50%;
  padding-top: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid #dedede;
}

.area_list_item_value {
  background-color: var(--color-gray-400);
  text-align: right;
  padding-right: 10px;
}

/*------------------------*/
.owl-nav.disabled {
  display: none;
}

.owl-nav > button {
  width: 49px;
  height: 49px;
  display: block;
  position: absolute;
  border: 1px solid var(--color-primary);
  top: 50%;
  z-index: 10;
  margin-top: -25px;
  background-color: var(--color-primary);
}

.owl-nav > button > span {
  display: none;
}

.owl-prev {
  left: 0;
  background: url(../images/arrow_slider_prev.png?f6ae3e29ab2d0c93feefa926fed9eba2) 50% 50% no-repeat;
}

.owl-next {
  right: 0;
  background: url(../images/arrow_slider_next.png?3268026d37cd254c89fd32f2b7c0a7f4) 50% 50% no-repeat;
}

.owl-prev.disabled,
.owl-next.disabled {
  opacity: 0.25;
  cursor: none;
}

.carousel_item {
  position: relative;
  width: 780px;
  margin: 0 auto;
}

.carousel_item_title {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 16px;
  padding: 15px 25px 12px;
  background-color: #757373;
}

.carousel_item_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 17px 25px;
  background-color: rgba(69, 124, 31, 0.9);
}

.gallery_frame_wrap {
  padding-bottom: 54px;
}

.carousel img {
  height: auto;
}

/*-----------------------*/
.product_item {
  margin: 0 25px;
}

.product_item_img {
  height: 172px;
  text-align: center;
  margin-bottom: 32px;
}

.product_item_info {
  padding: 14px 0 0;
}

.product_item_info_item {
  overflow: hidden;
  margin-top: 0;
}

.downlods_inner {
  padding: 0 0 0 100px;
}

#case-studies {
  padding: 156px 0;
}

.vert_slide_caption1 {
  width: 468px;
  margin-right: 30px;
}

.vert_slide_title1 {
  padding-bottom: 15px;
}

.testimonials_carousel {
  display: flex;
}

.carousel_item_item1 {
  margin: 0 10px;
}

.carousel_item_caption1 {
  text-align: center;
  padding: 20px;
}

.carousel_item_caption1,
.carousel_item_img1 {
  display: block;
  width: 100%;
  vertical-align: middle;
  overflow: hidden;
}

.testimonials_carousel .carousel_item_img1 {
  position: relative;
  border: 1px solid #e5e5e5;
  height: 0;
  padding-bottom: 75%;
}

.carousel_item_img1 img {
  position: absolute;
  max-width: 85%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel.var2 .owl-nav > button {
  border: 1px solid #474a50;
}

.carousel.var2 .owl-prev {
  background: url(../images/arrow_slider_prev2.png?f2e14aee9399d1cf7aae4fccd6881c85) -20px 50% no-repeat;
}

.carousel.var2 .owl-prev:hover {
  background-position: 16px 50%;
}

.carousel.var2 .owl-next {
  background: url(../images/arrow_slider_next2.png?0f8220850d269c5f8057e8361fb602a3) 18px 50% no-repeat;
}

.carousel.var2 .owl-next:hover {
  background-position: -15px 50%;
}

.carousel.var2 .owl-nav > button:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.controls_none .owl-nav {
  display: none;
}

.with_bullets {
  padding-bottom: 50px;
}

.owl-dots {
  display: none !important;
}

.with_bullets .owl-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block !important;
  text-align: center;
}

.owl-dot {
  width: 10px;
  height: 10px;
  background-color: #c8c8c8;
  border-radius: 100%;
  display: inline-block;
  margin: 0 2px;
}

.owl-dot.active {
  background-color: var(--color-secondary);
}

/*=====================> Single Industry ========================*/
.page_social {
  min-height: 32px;
  padding: 5px 0 0;
}

.industry_items_box,
.all_machines_page {
  padding: 59px 0 50px;
}

.global_industry_item {
  padding-bottom: 140px;
  border-bottom: 1px solid #dedede;
}

.global_industry_item {
  padding-top: 42px;
}

#content .title_box + .global_industry_item {
  padding-top: 0;
}

.industry_items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.industry_item {
  width: 100%;
  position: relative;
  border: 1px solid #dedede;
  box-sizing: border-box;
  overflow: hidden;
}

.application_links ul {
  overflow: hidden;
}

.application_links ul li {
  float: left;
  width: 47%;
  padding-right: 3%;
}

.application_links ul li:nth-child(odd) {
  clear: left;
}

.industry_item_inner {
  padding: 38px 18px;
}

.industry_item_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 17px 11px;
  z-index: 9;
  color: var(--color-white);
  background-color: rgba(69, 124, 31, 0.8);
}

.industry_item_img {
  position: relative;
  z-index: 1;
  max-width: unset !important;
  width: 100%;
  height: auto;
}

.industry_item_caption a:hover {
  color: inherit;
}

.industry_item .industry_item_title span {
  border-color: transparent;
}

.industry_item:hover .industry_item_title span {
  border-color: var(--color-primary);
}

.industry_item_title span,
.industry_item_caption {
  transition: all 250ms ease;
}

.industry_item_link {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
}

.simple_box {
  padding: 34px 0;
}

.single_industry_carousel_wrap {
  margin: 0 -30px;
}

.single_industry_carousel_item {
  max-width: 300px;
  float: left;
  margin: 0 20px;
}

.single_industry_carousel_caption {
  border: 1px solid #515459;
}

.single_industry_carousel_caption_inner {
  padding: 10px 23px;
}

.single_industry_carousel_caption .single_industry_carousel_caption_inner:first-child + .single_industry_carousel_caption_inner {
  border-top: 1px solid var(--color-gray-800);
}

.single_industry_carousel_caption_inner[data-bg] {
  color: var(--color-white);
}

.news_industry_box {
  min-height: 400px;
  padding-bottom: 15px;
}

.news_description {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--color-white);
  background-color: rgba(69, 124, 31, 0.5);
}

.news_industry_box_top {
  padding: 44px 0;
}

.preview_main_post_inner {
  width: 500px;
}

.preview_main_post_time {
  width: 100px;
  text-align: center;
  color: var(--color-white);
  padding: 11px 0 12px;
}

.preview_main_post_day,
.industrial_post_day {
  font-size: 55px;
  line-height: 1.2;
  margin-bottom: -14px;
}

.preview_main_post_description {
  padding: 18px 21px 18px 0;
}

.preview_main_post_description a {
  color: var(--color-white);
}

.industrial_post_item {
  width: 50%;
  float: left;
  margin-bottom: 38px;
}

.industrial_post_item_time {
  width: 86px;
  height: 86px;
  padding-top: 5px;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-primary);
}

.industrial_post_item_description {
  padding: 4px 20px 0 23px;
}

/*=====================> Machines Box ========================*/
.machines_box_header .over_btn {
  margin-left: 40px;
}

.comparison_item {
  border-left: 1px solid #e0e0e0;
  padding: 2px 0 2px 12px;
  margin-left: 35px;
}

.comp_btn_big {
  padding: 32px 0 0;
  min-width: 64px;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  position: relative;
  background: url(../images/comp_icon_big.png?40e1bf28ed497183390853fb44102bb2) 50% 0 no-repeat;
}

.comp_btn_big:after {
  display: block;
  position: absolute;
  top: -2px;
  right: 2px;
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  line-height: 22px;
  text-align: center;
  font-size: 15px;
  content: attr(data-qty);
}

.preview_machine_item1 {
  padding: 0 30px;
  max-width: 400px;
}

.preview_machine_item .title4 {
  font-size: 27px;
}

.all_machines_page .preview_machine_item .title4 {
  min-height: 66px;
}

.page-template-page-single-machine .preview_machine_item1 .title4 {
  font-size: 24px;
}

.page-template-page-single-machine .preview_machine_title {
  padding-right: 0;
}

.preview_machine_item1 .preview_machine_img_wrap {
  height: 160px;
}

.preview_machine_item1 .btn2 {
  width: 100%;
  text-align: left;
}

.preview_machine_item {
  width: 275px;
  float: left;
  position: relative;
  padding-top: 5px;
}

.preview_machine_img_wrap {
  height: 189px;
  text-align: center;
  line-height: 189px;
  padding: 1px 0 0;
}

.preview_machine_img_wrap img {
  vertical-align: middle;
}

.preview_machine_title {
  padding-right: 50px;
}

.all_machines_page .preview_machine_spec_list {
  min-height: 260px;
}

.preview_machine_spec_list li {
  overflow: hidden;
}

.preview_machine_spec_label {
  float: left;
  font-weight: bold;
}

.preview_machine_spec_val {
  float: right;
}

.simple_img_wrap {
  text-align: right;
  padding: 0 0 0 20px;
}

.simple_img {
  max-width: 100%;
  height: auto;
}

/*=====================> Application page ========================*/
.application_carousel_wrap .owl-stage {
  display: flex;
}

.application_carousel_wrap .industry_item {
  max-width: 90%;
  float: none;
  margin: 0 0 0 1px;
}

.application_carousel {
  width: 453px;
}

.application_caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 95px 0 0;
}

.application_item_descr {
  padding: 0 0 0 70px;
}

.application_carousel_item1 {
  width: 240px;
}

.application_carousel_item1_caption {
  padding: 16px 0 0;
}

.application_carousel_wrap .owl-nav > button {
  display: flex;
  width: 20px;
  height: auto;
  aspect-ratio: 1/2.2;
  background-color: unset;
  border-color: transparent;
  background-size: cover;
}

.application_carousel_wrap .owl-prev {
  left: -20px;
}

.application_carousel_wrap .owl-next {
  right: -20px;
}

@media only screen and (min-width: 600px) {
  .application_carousel_wrap .owl-nav > button {
    width: 51px;
  }
  .application_carousel_wrap .owl-prev {
    left: -70px;
  }
  .application_carousel_wrap .owl-next {
    right: -70px;
  }
}
/*=====================> About page ========================*/
.about_caption {
  top: 0;
  right: 0;
  left: 0;
  padding: 48px 0 0;
}

.big_about_img {
  max-width: 100%;
  height: auto;
}

/* Timeline */
.timeline_box_content {
  background: var(--color-primary);
}

.timeline_box_content h2,
.timeline_box_content h3 {
  margin-bottom: 3px !important;
}

.timeline_box_content .timeline_box_inner {
  position: relative;
  margin: 40px 0;
  padding: 20px 0;
}

@media only screen and (min-width: 996px) {
  .timeline_box_content .timeline_box_inner {
    padding: 40px 0;
  }
}
/* Line */
.timeline_box_content .timeline_box_inner:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color-white);
}

@media only screen and (min-width: 996px) {
  .timeline_box_content .timeline_box_inner:after {
    left: 50%;
  }
}
/* Item */
.timeline_box_content .timeline_box_item {
  position: relative;
  display: grid;
  gap: 60px;
  grid-template-areas: "text" "image";
  grid-template-columns: 1fr;
  padding: 50px 20px;
}

.timeline_box_content .timeline_box_item a:not(.btn1):not(.btn2):not(.btn3) {
  color: var(--color-white) !important;
}

@media only screen and (min-width: 996px) {
  .timeline_box_content .timeline_box_item {
    grid-template-areas: "image text";
    grid-template-columns: repeat(2, 1fr);
    padding: 70px 20px;
  }
}
@media only screen and (min-width: 996px) {
  .timeline_box_content .timeline_box_item:nth-child(even) {
    grid-template-areas: "text image";
  }
}
/* Item contents */
.timeline_box_content .timeline_box_item > div:nth-child(odd) {
  grid-area: image;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.timeline_box_content .timeline_box_item > div:nth-child(even) {
  grid-area: text;
}

.timeline_box_content .timeline_box_item img {
  display: none;
  width: 65%;
  height: auto;
  border: 4px solid var(--color-white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transform-origin: center center;
  transform: rotate(0) translate(0, 0);
  opacity: 0;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-delay: 8s;
  animation-play-state: paused;
}

/* Image positions and rotations */
.timeline_box_content .timeline_box_item img:nth-child(4n-3) {
  animation-name: slidein1;
}

.timeline_box_content .timeline_box_item img:nth-child(4n-2) {
  animation-name: slidein2;
}

.timeline_box_content .timeline_box_item img:nth-child(4n-1) {
  animation-name: slidein3;
}

.timeline_box_content .timeline_box_item img:nth-child(4n) {
  animation-name: slidein4;
}

@keyframes slidein1 {
  from {
    opacity: 0;
    transform: rotate(0deg) translate(-20%, 0);
  }
  to {
    opacity: 1;
    transform: rotate(-5deg) translate(-20%, 0);
  }
}
@keyframes slidein2 {
  from {
    opacity: 0;
    transform: rotate(0deg) translate(15%, -10%);
  }
  to {
    opacity: 1;
    transform: rotate(5deg) translate(15%, -10%);
  }
}
@keyframes slidein3 {
  from {
    opacity: 0;
    transform: rotate(0deg) translate(-10%, -20%);
  }
  to {
    opacity: 1;
    transform: rotate(-2deg) translate(-10%, -20%);
  }
}
@keyframes slidein4 {
  from {
    opacity: 0;
    transform: rotate(0deg) translate(20%, -30%);
  }
  to {
    opacity: 1;
    transform: rotate(3deg) translate(20%, -30%);
  }
}
/* Dot */
.timeline_box_content .timeline_box_item:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 95px;
  background-color: var(--color-white);
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

@media only screen and (min-width: 996px) {
  .timeline_box_content .timeline_box_item:after {
    left: 50%;
  }
}
/*=====================> Contacts page ========================*/
.sp_tabs {
  min-height: 400px;
}

.sp_tabs .resp-tabs-list-item,
.countries_list li {
  float: left;
  background-color: var(--color-gray-400);
  font-size: 14px;
  color: #212121;
  text-align: center;
  padding: 3px 20px 4px;
  cursor: pointer;
  text-transform: uppercase;
}

.countries_list {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.countries_list li {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

.countries_list ul li {
  float: none;
  border-top: 1px solid var(--color-white);
  margin-bottom: 1px !important;
}

.sp_tabs .resp-tabs-list-item.resp-tab-active,
.sp_tabs .resp-tabs-list-item:hover,
.countries_list li:hover,
.countries_list li.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

iframe {
  max-width: 100%;
}

.contact_tabs .countries_list,
.contact_tabs .resp-tabs-list {
  list-style-type: none;
  padding-left: 0;
}

.contact_tabs .resp-tabs-list li {
  width: 50%;
}

.contact_tabs .link {
  text-decoration: none;
}

.sp_tabs .resp-tabs-container {
  padding: 45px 0 0;
}

.contact_info_col {
  width: 33.3%;
  padding-right: 20px;
}

[data-lang=_de] .contact_info_col {
  width: 43.3%;
}

.contact_list dd ~ dd {
  margin-top: 15px;
}

.agencies [data-region] {
  padding-left: 40px;
  width: 245px;
  float: left;
  min-height: 380px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.contact_list1 .title4 {
  white-space: nowrap;
  font-size: 29px;
}

.region_box.extra [data-region]:first-child {
  padding-left: 0;
}

.countries_box.agencies > div:first-child ~ div .region_box .hide_items {
  margin-left: -40px;
}

.region_logo img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ebebeb;
}

.contact_list1 dt {
  font-weight: bold;
}

.map_wrap {
  border: 1px solid var(--color-gray-800);
}

[data-wpcf7-group-id=articles] .wpcf7-field-group:not(:last-child) .wpcf7-field-group-add {
  display: none;
}

[data-wpcf7-group-id=articles] .wpcf7-field-group {
  position: relative;
}

[data-wpcf7-group-id=articles] .wpcf7-field-group > p {
  width: 100%;
  margin: 0;
}

[data-wpcf7-group-id=articles] .form_row {
  display: flex;
  flex-wrap: wrap;
}

[data-wpcf7-group-id=articles] .form_row > .number {
  width: 70%;
}

[data-wpcf7-group-id=articles] .form_row > .quantity {
  width: 25%;
  margin-left: 5%;
}

[data-wpcf7-group-id=articles] .wpcf7-field-group:last-child {
  margin-bottom: 50px;
}

[data-wpcf7-group-id=articles] .wpcf7-field-group .wpcf7-field-group-remove,
[data-wpcf7-group-id=articles] .wpcf7-field-group .wpcf7-field-group-add {
  position: absolute;
  top: 100%;
  margin-top: 5px;
  margin-right: 5px;
}

[data-wpcf7-group-id=articles] .wpcf7-field-group .wpcf7-field-group-remove {
  position: absolute;
  top: auto;
  left: 100%;
  bottom: 0;
  height: 3em;
  background: none;
  color: red;
  font-weight: bold;
}

.contact_form_box {
  padding: 25px 18px;
  border: 1px solid #dedede;
}

.screen-reader-response {
  display: none;
}

span.wpcf7-not-valid-tip {
  color: red;
  font-size: 12px;
}

.wpcf7-response-output.wpcf7-validation-errors {
  background-color: var(--color-white);
  border: 2px solid red;
  padding: 20px 40px;
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: red;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  text-align: center;
  padding: 20px 40px;
  margin-top: 25px;
  color: var(--color-primary);
  font-size: 14px;
}

.request_form .wpcf7-response-output {
  margin-left: 50px;
  margin-right: 50px;
}

.request_form sup,
#wpcf7-f1204-o1 sup,
#pdf_form sup {
  color: red;
  vertical-align: baseline !important;
}

.contact_form_box .wpcf7-list-item {
  display: block;
}

.checkboxes_wrap {
  border: 1px solid #dfdfdf;
}

.checkboxes p {
  margin-bottom: 0;
}

.checkbox_row,
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
  padding: 4px 5px 2px 10px;
  clear: both;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #dfdfdf;
}

.checkbox_row .jq-checkbox {
  float: right;
}

#wpcf7-f6900-o2 .checkbox_row {
  padding: 0;
  border: none;
}

#wpcf7-f6900-o2 .checkbox_row .wpcf7-list-item label,
.checkbox_row .form_label {
  padding: 3px 0 0;
}

#wpcf7-f6900-o2 .checkbox_row .wpcf7-list-item label {
  color: var(--color-gray-900);
}

#wpcf7-f6900-o2 .checkboxes_wrap {
  margin-bottom: 12px;
}

#wpcf7-f6900-o2 .wpcf7-list-item.last {
  border: none;
}

.countries_list > li {
  width: 25%;
  position: relative;
}

.countries_list ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: -1px;
  visibility: hidden;
  opacity: 0;
}

.countries_list li:hover ul,
.countries_list ul:hover {
  visibility: visible;
  opacity: 1;
}

.countries_list .sm_arrow,
.resp-tabs-list .sm_arrow {
  display: inline-block;
  position: relative;
  padding-right: 20px;
}

.countries_list li:hover .sm_arrow:after,
.resp-tabs-list li:hover .sm_arrow:after,
.resp-tabs-list li.resp-tab-active .sm_arrow:after {
  border-top-color: var(--color-white);
}

.countries_list .sm_arrow:after,
.resp-tabs-list li .sm_arrow:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-top: 4px solid var(--color-gray-900);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  display: block;
}

/*=====================> Career page ========================*/
.career_tabs .resp-tabs-list {
  text-align: center;
}

.career_tabs .resp-tabs-list-item {
  float: none;
  display: inline-block;
}

.content_nav {
  margin-bottom: 70px;
  text-align: center;
}

.content_nav_item {
  display: inline-block;
  min-width: 190px;
}

.content_nav_link {
  background-color: var(--color-gray-400);
  font-size: 14px;
  color: #212121;
  display: block;
  text-align: center;
  padding: 3px 20px 4px;
  margin: 0 1px 4px 0;
  cursor: pointer;
}

.content_nav_link:hover,
.current .content_nav_link {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.format_icon {
  display: inline-block;
  padding: 4px 30px 4px 0;
  margin: 0 0 0 5px;
  vertical-align: middle;
  background: url(../images/download_ag_icon.png?3779b820c1a58c8d7b193f69fc29e50e) right 50% no-repeat;
  background-size: 20px 18px;
}

.circle_btn {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: inline-block;
  background: #457625 url(../images/c_btn_arrow.png?91193014b1a96fc733e619ccf2c6893c) 50% 50% no-repeat;
}

.content_form {
  border: 1px solid #dedede;
  padding: 18px 16px;
}

.form_date .date_item {
  width: 30%;
}

/*=====================> News page ========================*/
.news_previews_wrap .additional-news,
.news_previews_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.news_preview_item {
  float: left;
  width: 300px;
}

.news_preview_item.wide {
  width: 470px;
}

.news_preview_item_img {
  margin: 0 0 25px;
  min-height: 194px;
}

.news_preview_item_caption .btn1 {
  margin-top: 7px;
}

.news_preview_item_caption h3 {
  font-size: 18px;
}

.news_preview_item_caption h4 {
  font-size: 16px;
}

.read-more {
  display: inline-block;
  width: calc(100% - 40px);
  margin: 20px;
  padding: 20px 0;
  border-top: 1px solid #dedede;
}

.read-more a {
  width: 100%;
}

.news_nav {
  padding: 10px 0 0 10px;
  position: relative;
}

.news_nav:empty:after {
  background-color: #8a8a8a;
  width: 1px;
  height: 29px;
  position: absolute;
  display: block;
  left: 50%;
  top: 12px;
  content: "";
}

.news_single_slide_caption {
  padding: 10px 20px;
  background-color: #8e8f8f;
}

.shadow_box {
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 5px #eaeaea;
  padding: 35px 18px 15px;
  margin-bottom: 30px;
}

.shadow_box .title4 {
  line-height: 0.9;
}

.simple_teather_box {
  padding: 20px 20px 15px;
}

.event_title {
  padding-bottom: 15px;
}

.event_title_time {
  width: 160px;
  display: block;
  padding: 15px 0;
  margin-right: 25px;
  font-size: 55px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  background-color: var(--color-primary);
}

.event_title_time span {
  display: block;
  font-size: 14px;
  margin-top: -4px;
  font-weight: 300;
}

.event_map_box {
  padding: 10px 10px 22px;
  margin-bottom: 20px;
}

.event_map_box_caption {
  padding: 8px 0 2px 50px;
  margin-bottom: 15px;
  background: url(../images/event_map_icon.png?5c0a0a44aae06c196c6e941381f57c02) 0 50% no-repeat;
}

.event_map {
  height: 261px;
  width: 100%;
}

.main_event_descr {
  width: 50%;
  padding-right: 50px;
}

/*=====================> Paragraphs ========================*/
.paragraph p {
  margin-bottom: 10px;
}

p {
  margin-bottom: 17px;
}

.mb2 {
  margin-bottom: 2px;
}

.mb3 {
  margin-bottom: 3px;
}

.mb4 {
  margin-bottom: 4px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb-5 {
  margin-bottom: -5px;
}

.mb6 {
  margin-bottom: 6px;
}

.mb7 {
  margin-bottom: 7px;
}

.mb8 {
  margin-bottom: 8px;
}

.mb9 {
  margin-bottom: 9px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb11 {
  margin-bottom: 11px;
}

.mb12 {
  margin-bottom: 12px;
}

.mb13 {
  margin-bottom: 13px;
}

.mb14 {
  margin-bottom: 14px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb16 {
  margin-bottom: 16px;
}

.mb17 {
  margin-bottom: 17px;
}

.mb18 {
  margin-bottom: 18px;
}

.mb19 {
  margin-bottom: 19px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb21 {
  margin-bottom: 21px;
}

.mb22 {
  margin-bottom: 22px;
}

.mb23 {
  margin-bottom: 23px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb26 {
  margin-bottom: 26px;
}

.mb27 {
  margin-bottom: 27px;
}

.mb28 {
  margin-bottom: 28px;
}

.mb29 {
  margin-bottom: 29px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb31 {
  margin-bottom: 31px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb33 {
  margin-bottom: 33px;
}

.mb34 {
  margin-bottom: 34px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb36 {
  margin-bottom: 36px;
}

.mb37 {
  margin-bottom: 37px;
}

.mb38 {
  margin-bottom: 38px;
}

.mb39 {
  margin-bottom: 39px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb41 {
  margin-bottom: 41px;
}

.mb42 {
  margin-bottom: 42px;
}

.mb43 {
  margin-bottom: 43px;
}

.mb44 {
  margin-bottom: 44px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb46 {
  margin-bottom: 46px;
}

.mb47 {
  margin-bottom: 47px;
}

.mb48 {
  margin-bottom: 48px;
}

.mb49 {
  margin-bottom: 49px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb51 {
  margin-bottom: 51px;
}

.mb52 {
  margin-bottom: 52px;
}

.mb53 {
  margin-bottom: 53px;
}

.mb54 {
  margin-bottom: 54px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb58 {
  margin-bottom: 58px;
}

.mb62 {
  margin-bottom: 62px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb-14 {
  margin-bottom: 0;
}

.py-20 {
  padding: 20px 0;
}

.p-40 {
  padding: 40px;
}

.mt-auto {
  margin-top: auto;
}

.border-b {
  border-bottom: 1px solid #dedede;
}

.p-relative {
  position: relative;
}

.d-unset {
  display: unset;
}

/*=====================> Lists ========================*/
.list1_item {
  margin-bottom: 14px;
}

.list1_item ul {
  background-color: rgba(0, 0, 0, 0.025);
  padding: 10px;
  margin-top: 5px;
}

.list1_item .list1_item {
  margin-bottom: 0;
}

.list1_link {
  display: inline-block;
  color: var(--color-gray-900);
  text-transform: uppercase;
  padding: 0 18px 0 0;
  background: url(../images/marker1.png?9895d4032f078b3945ce1a2bdff3d072) right 50% no-repeat;
}

.list2_item {
  padding-left: 20px;
}

.list2_link {
  background: url(../images/marker1.png?9895d4032f078b3945ce1a2bdff3d072) 0 7px no-repeat;
}

.editor_content ul {
  margin-bottom: 20px;
}

.pad_box .editor_content ul {
  list-style-type: none;
  padding: 0;
}

.pad_box .editor_content ul li,
.application_item_descr ul li,
.editor_content ul li {
  position: relative;
  padding-left: 10px;
}

.pad_box .editor_content ul li:before,
.application_item_descr ul li::before,
.editor_content ul li::before {
  display: block;
  position: absolute;
  background-color: var(--color-gray-900);
  left: 0;
  top: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
}

.list3 > li {
  margin-bottom: 4px;
}

.padding {
  padding: 63px 0;
  border-bottom: 2px solid #d7d7d7;
}

.pdf_list_item {
  margin-bottom: 30px;
}

.pdf_list .pdf_list_item:last-child {
  margin-bottom: 0;
}

.download_form_wrap {
  max-width: 25em;
}

.list5 {
  padding: 0 0 0 5px;
}

.list5:not(.footer_machines) > li,
.list5.footer_machines > li li {
  position: relative;
  padding: 0 0 0 10px;
}

.list5:not(.footer_machines) > li::before,
.list5.footer_machines > li li::before {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #dadde3;
  border-radius: 4px;
  content: "";
}

.footer_machines a b {
  font-weight: normal;
}

.list6 > li {
  position: relative;
  padding: 0 0 0 10px;
}

.list6 > li:before {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: var(--color-gray-900);
  border-radius: 4px;
  content: "";
}

.listcheck > li:before {
  display: inline;
  content: "✓";
  color: var(--color-primary);
  margin-right: 5px;
}

.service_list {
  padding: 13px 0 0 0;
}

.service_list_item {
  padding: 0 20px 21px 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #dfe1e7;
}

.service_list .service_list_item:last-child {
  border: none;
}

/*=====================> Titles ========================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

.title_box {
  padding-bottom: 17px;
}

.title1 {
  font-size: 80px;
  line-height: 0.9;
}

.title1_1 {
  font-size: 67px;
  line-height: 0.9;
}

.title1_2 {
  font-size: 70px;
  line-height: 0.9;
}

.title2 {
  font-size: 55px;
  line-height: 0.9;
  color: var(--color-primary);
  letter-spacing: -1px;
}

.title2.white_f {
  color: var(--color-white);
}

.title2 span {
  text-transform: none;
}

.page-template-events .title2,
.page-template-news .page-template-news,
.single-post .title2 {
  text-transform: none;
}

.title2_1 {
  font-size: 40px;
  line-height: 0.8;
}

.title3 {
  font-size: 38px;
  line-height: 1.23;
}

.title2.with_border {
  padding-bottom: 18px;
  border-bottom: 1px solid #dedede;
}

.title4 {
  font-size: 31px;
  line-height: 1.23;
}

.title4.with_border {
  padding-bottom: 4px;
  border-bottom: 1px solid #808080;
}

.title5 {
  font-size: 28px;
  line-height: 1;
}

.title5 span {
  text-transform: uppercase;
}

.title5_1 {
  font-size: 28px;
  line-height: 1;
}

.title6 {
  font-size: 20px;
  line-height: 1;
}

.title7,
.simple_tabs h4.uni_bold.mb10,
.global_industry_item h3 {
  font-size: 24px;
  line-height: 1;
}

.simple_tabs h4.uni_bold.mb10,
.global_industry_item h3 {
  color: var(--color-primary);
}

/*================================>> FONTS  <<========================================*/
.fw_bold,
strong {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.fw_exl {
  font-weight: 200;
}

.fw_norm {
  font-weight: 400;
}

.fw_semibold {
  font-weight: 600;
}

.fw_light {
  font-weight: 300;
}

.let0 {
  letter-spacing: 0;
}

/*================================>> hovers <<========================================*/
a,
.lang_choose_list li,
.hidden_el2,
.transition,
.loaded .videoloading {
  transition: all 0.6s ease;
}

a:hover,
.lang_choose_list li:hover,
.transition:hover {
  transition: all 0.15s ease;
}

.hidden_el,
.page_social {
  transition: all 0.3s ease;
}

.sub_menu_box,
*:hover > .hidden_el2 {
  transition: all 0.2s ease;
}

/*================================>> Contact Form <<========================================*/
.staff_item {
  padding: 0 0 0 30px;
  margin-bottom: 30px;
  width: 50%;
  float: left;
  min-height: 120px;
  font-size: 13px;
}

.staff_item_caption {
  padding: 0 0 0 20px;
}

#contact-form {
  padding: 0 0 0 0;
  position: relative;
}

#contact-form .success {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: var(--color-white);
  border: 1px solid var(--color-black);
  text-align: center;
  padding: 20px 0;
}

.txt_field,
.reg_page input[type=text],
.reg_page input[type=password],
.wpum-password-form fieldset input.input-text,
.login-form .input {
  margin: 0;
  font-size: 14px;
  border: 1px solid #dedede;
  color: var(--color-black);
  padding: 5px 10px 6px;
  outline: none;
  position: relative;
  font-family: "Ek Mukta", sans-serif;
  background: var(--color-white);
  width: 100%;
}

.txt_field.invalid {
  border-color: red;
}

.form_label,
.wpum-password-form label,
.login-form label {
  display: block;
  margin-bottom: 3px;
}

.form_row {
  margin-bottom: 15px;
}

.form_row > .comment > .Comment > textarea {
  height: 55px;
}

.form_row > span > .wpcf7-checkbox,
.form_row > span > .wpcf7-radio {
  display: flex;
  flex-direction: column;
}

.bdx .file {
  display: flex;
  align-items: center;
}

.bdx .file > p {
  margin-bottom: 0;
  margin-right: 0.5rem;
}

.form_row > .terms {
  display: flex;
  margin-top: 15px;
}

.form_row > .terms .terms-checkbox {
  margin-right: 5px;
}

.form_row > .terms > .terms-content {
  display: flex;
  flex-direction: column;
}

.form_row > .terms > .terms-content a {
  color: rgb(63, 63, 63) !important;
  font-size: smaller;
}

.request_form .content_col_1_2 {
  padding: 0 50px;
}

.txt_field1,
.login_form input[type=text],
.login_form input[type=password] {
  margin: 0;
  font-size: 13px;
  border: 1px solid #e4e4e5;
  color: var(--color-white);
  padding: 5px 10px;
  outline: none;
  position: relative;
  font-family: "Ek Mukta", sans-serif;
  background: #dadde3;
  width: 100%;
}

.contact_msg_field {
  height: 155px;
}

.map_wrapper {
  overflow: hidden;
  display: inline-block;
  margin-bottom: 26px;
}

.mfcf7_zl_delete_file::after {
  content: "🗑️";
  width: 20px;
  height: 20px;
}

.mfcf7_zl_delete_file > span {
  display: none;
}

/*================================>> Contacts Info <<========================================*/
.map_canvas {
  width: 100%;
  height: 324px;
}

.adress span {
  display: inline-block;
}

.adress dt {
  margin-bottom: 14px;
}

/*================================>> Footer <<========================================*/
footer {
  color: var(--color-white);
  background-color: #474a50;
  padding: 30px 0 0;
  font-size: 13px;
}

.footer_top {
  padding: 13px 0;
  background-color: #404348;
}

.footer_top form > br {
  display: none;
}

.footer_top .wpcf7,
.wpcf7-form-control-wrap {
  position: relative;
}

.footer_top .wpcf7-form-control-wrap {
  display: block;
  float: left;
}

.footer_top .wpcf7-form.invalid .wpcf7-form-control-wrap,
.footer_top .wpcf7-form.sent .wpcf7-form-control-wrap {
  padding-bottom: 25px;
}

.footer_top .screen-reader-response,
.footer_top .wpcf7-response-output {
  display: none;
}

.footer_top .wpcf7-response-output.wpcf7-mail-sent-ok {
  display: block;
  right: 0;
  position: absolute;
  bottom: 0;
}

.footer_top .wpcf7 span[role=alert] {
  position: absolute;
  bottom: 0;
  left: 16px;
  color: red;
}

.footer_label {
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  display: inline-block;
}

.social {
  display: inline-block;
  overflow: hidden;
  margin: 0 0 0 10px;
  padding-left: 20px;
  border-left: 1px solid var(--color-white);
}

.social a {
  display: block;
  float: left;
  width: 29px;
  height: 29px;
  overflow: hidden;
  margin-left: 9px;
  opacity: 0.7;
}

.social a:hover {
  opacity: 1;
}

.social a:first-child {
  margin: 0 0 0 0;
}

.footer_search_field {
  margin: 0 0 0 15px;
  border: 1px solid #e5e5e5;
  font-size: 13px;
  color: var(--color-white);
  padding: 6px 10px;
  outline: none;
  position: relative;
  font-family: "universmedium", sans-serif;
  background: none;
  width: 209px;
}

.footer_search_btn {
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  margin: -1px 0 0;
  background: var(--color-white) url(../images/marker2.png?9a9f5c7c3db432463a05efd3ad734e7e) 50% 50% no-repeat;
  border: none;
  cursor: pointer;
  background-color: var(--color-primary);
}

.footer_inner {
  color: #dadde3;
}

.footer_search > br {
  display: none;
}

.footer_col_1 {
  float: left;
  width: 14%;
}

.footer_col_2 {
  float: right;
  width: 75%;
}

.footer_title > a,
#footer_machine > li > a {
  color: var(--color-white);
  display: block;
  border-bottom: 1px solid var(--color-white);
  margin-bottom: 10px;
  text-transform: uppercase;
}

#footer_machine > ul.sub-menu {
  overflow: hidden;
}

#footer_machine ul.sub-menu .sub-menu {
  margin-left: -10px;
}

.footer_inner {
  padding: 34px 0;
}

.footer_inner a {
  color: inherit;
}

.footer_inner a:hover {
  color: var(--color-white);
}

.footer_col_sm,
#footer_machine > li > ul.sub-menu > li {
  float: left;
  margin-right: 20px;
  padding-right: 20px;
}

.footer_nav > li {
  float: left;
  text-transform: uppercase;
}

.footer_nav {
  padding: 29px 0 0;
}

.footer_nav > li {
  margin-right: 30px;
}

a.footer_nav_link {
  color: var(--color-white);
}

.footer_bottom {
  color: #989898;
  font-size: 12px;
  background-color: #404348;
  padding: 8px 0;
}

.menu-footer-policy-navigation-container .footer_nav {
  padding: 15px 0;
}

#contact_btn,
#contact_btn2 {
  position: fixed;
  right: 0;
  top: 50%;
  margin-top: 20px;
  z-index: 10;
  width: 100px;
  padding: 50px 15px 23px;
  color: var(--color-white);
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.2;
  background: var(--color-primary) url(../images/contact_icon.png?139474e2681058c0094375d8faeccf5c) 50% 19px no-repeat;
}

#contact_btn2 {
  display: none;
}

h2.resp-accordion {
  display: none;
}

.resp-tab-content {
  display: none;
}

.resp-content-active,
.resp-accordion-active {
  display: block;
}

.resp-easy-accordion h2.resp-accordion {
  display: block;
}

.resp-tab-content-active {
  display: block;
}

@media only screen and (max-width: 768px) {
  ul.resp-tabs-list {
    display: none !important;
  }
  h2.resp-accordion {
    display: block;
  }
  .resp-accordion-closed {
    display: none !important;
  }
}
.page_social {
  position: fixed;
  width: 200px;
  height: 100px;
  line-height: 100px;
  right: -200px;
  top: 50%;
  margin-top: -100px;
  z-index: 999;
  padding: 0 4px;
  text-align: center;
  background-color: var(--color-white);
}

.show_social .page_social {
  right: 0;
}

.page_social_btn {
  width: 100px;
  height: 100px;
  padding-top: 50px;
  line-height: 1;
  color: var(--color-white);
  display: block;
  position: absolute;
  left: -100px;
  cursor: pointer;
  top: 0;
  z-index: 1;
  background: var(--color-primary) url(../images/share_btn_icon.png?8f060db0717bc9da142c7e0eb41114f1) 50% 20px no-repeat;
}

.share_label {
  padding-right: 10px;
  line-height: 1;
  text-align: left;
}

.num_404 {
  font-size: 250px;
  line-height: 1;
}

.section-machines .preview_machine_title {
  padding-right: 0;
  white-space: nowrap;
}

.page-template-application .preview_machine_spec_list br {
  display: none;
}

.specs-wrapper {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.page-template-about #machines-application {
  background-color: var(--color-gray-400);
}

.wpcf7-form .ajax-loader {
  display: none !important;
}

.s_text_block.text-center .content_col_3_4,
.s_text_block.text-right .content_col_3_4 {
  width: auto;
  float: none;
}

.checkbox_row .wpcf7-list-item-label {
  width: calc(100% - 32px);
  float: left;
}

span .wpcf7-list-item {
  margin: 0;
}

.jq-checkbox + span {
  float: right;
  width: calc(100% - 28px);
  font-size: 12px;
}

.do_not_match,
.pwd_error {
  color: red;
  font-size: 12px;
}

.not_match .do_not_match {
  display: block;
  color: red;
  margin-bottom: 10px;
}

.required .pwd_error {
  display: block;
}

#set_pass {
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
}

.doc_remove_btn {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  color: red;
  display: inline-block;
  width: 30px;
  background: none !important;
  text-align: center;
  vertical-align: middle;
}

a.doc_remove_btn:hover {
  text-decoration: none;
  color: red;
}

.news-item-image {
  padding-right: 20px;
  max-width: 300px;
}

.news-item-image .simple_img {
  width: 140px !important;
  max-width: unset !important;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.subscription-form {
  background: #38792e;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  height: 0;
  transition: 300ms;
  max-width: 100%;
  position: absolute;
  bottom: 15px;
  z-index: 999999;
}

.subscription-form iframe {
  max-width: 100%;
}

.subscription-form.active {
  opacity: 1;
  height: auto;
  bottom: calc(100% + 15px);
}

.subscribe {
  background: #38792e;
  border-radius: 4px;
  font-size: 16px;
  padding: 10px;
  margin-bottom: 15px;
  position: relative;
  max-width: 100%;
  text-align: right;
  color: var(--color-white);
  width: auto;
  float: right;
}

.subscribe:hover {
  cursor: pointer;
}

.flex-space-around {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer_label {
  font-size: 13px;
  line-height: 2.2;
  text-transform: uppercase;
  display: inline-block;
  padding-right: 12px;
}

.m-tb {
  margin-top: 15px;
  margin-bottom: 15px;
}

.relative {
  position: relative;
}

.footer-col-right {
  width: 500px;
  max-width: 100%;
}

.download_items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 30px;
  flex-wrap: wrap;
}

.download_items img {
  width: 100%;
  height: auto;
}

.homepage_hero {
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 20px;
  border-radius: 20px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .homepage_hero {
    flex-direction: row-reverse;
    border-radius: 40px;
    justify-content: end;
    overflow: hidden;
    height: 30vw;
    max-height: 30rem;
  }
}
.homepage_hero .homepage_hero_slider {
  opacity: 0;
  display: flex;
  z-index: 11;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .homepage_hero .homepage_hero_slider {
    position: absolute;
    inset: 20px;
  }
}
.homepage_hero .homepage_hero_slider .owl-stage {
  display: flex;
}

.homepage_hero .homepage_hero_slider .owl-item {
  display: flex;
  align-items: end;
  flex: 1 0 auto;
  height: 100%;
}

.homepage_hero .homepage_hero_slider .owl-item img {
  height: 30vw;
  max-height: 30rem;
  width: auto;
}

.homepage_hero .homepage_hero_slider.owl-loaded {
  animation: fadeInSlider forwards 2s;
}

@keyframes fadeInSlider {
  0%, 50% {
    opacity: 0;
    overflow: hidden;
  }
  to {
    opacity: 1;
    overflow: visible;
  }
}
.homepage_hero h1 {
  width: 75%;
  color: var(--color-white);
  padding: 20px;
}

@media only screen and (min-width: 768px) {
  .homepage_hero h1 {
    width: 60%;
    max-width: 35rem;
  }
}
.home .breadcrumb,
.page-id-13365 .breadcrumb {
  border: none;
}

.page-id-13365 .green_box {
  background: #ddd;
}

.page-id-13365 .green_box h1,
.page-id-13365 .green_box h2 {
  color: #444;
}

.webinar-rearaxle-machining-btns {
  margin-top: 30px;
}

.webinar-rearaxle-machining-btns > a {
  display: block;
  margin-bottom: 10px;
}

.webinar-rearaxle-machining-btns > a > img {
  width: 320px;
}

/* Home news bar */
.home-news-bar {
  display: flex;
  background-color: var(--color-secondary);
  color: var(--color-white);
  width: 100%;
  padding: 15px 0;
}

.home-news-bar > div {
  width: 50%;
}

.home-news-bar > div > span {
  margin-left: 10%;
  padding-top: 5px;
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
}

.home-news-bar > div > a {
  float: right;
  margin-right: 10%;
  font-weight: bold;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 5px;
  background-color: var(--color-white);
  color: var(--color-secondary);
  text-transform: uppercase;
}

.home-news-bar > div > a > img {
  position: relative;
  margin-left: 4px;
  top: 4px;
}

@media only screen and (max-width: 768px) {
  .home-news-bar {
    display: block;
    text-align: center;
  }
  .home-news-bar > div {
    width: 100%;
  }
  .home-news-bar > div > span {
    margin: 0;
  }
  .home-news-bar > div > a {
    float: none;
    margin: 5px 0 0 0;
  }
}
/* Services page */
.agents-card {
  margin: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.agents-card h2 {
  position: relative;
  text-transform: none;
  padding: 15px;
  background-color: #f5f5f5;
  cursor: pointer;
}

.agents-card h2:after {
  display: block;
  width: 27px;
  height: 100%;
  position: absolute;
  right: 10px;
  top: 0;
  background: url(../images/greeen_down_arrow.png?743b2720848e146af0c266abbbf5152f) 50% 50% no-repeat;
  content: "";
}

.agents-card h2[aria-expanded=true]:after {
  transform: rotate(180deg);
}

.agents-grid {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
  margin: 40px;
}

.agents-grid h3 {
  text-transform: none;
}

.faq_item {
  margin-bottom: 2px;
}

.faq_item .faq_question {
  display: flex;
  background-color: rgba(117, 115, 115, 0.8);
  color: var(--color-white);
  text-decoration: none !important;
}

.faq_item .faq_question h3 {
  padding: 5px 10px;
  color: var(--color-white);
  flex-grow: 1;
}

.faq_item .faq_question:after {
  display: block;
  width: 30px;
  height: 30px;
  background: var(--color-primary) url(../images/marker2.png?9a9f5c7c3db432463a05efd3ad734e7e) 50% 50% no-repeat;
  content: "";
  transform: rotate(90deg);
}

.faq_item.active .faq_question:after {
  transform: rotate(-90deg);
}

.faq_item .faq_answer {
  display: none;
  padding: 30px;
  background-color: #f5f5f5;
  transition: all 0.5s;
}

.faq_item .faq_answer > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media only screen and (min-width: 768px) {
  .faq_item .faq_answer > div {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .faq_item .faq_answer > div .wide {
    grid-column: 1/span 2;
  }
}
[class^=content_col_] ul,
[class^=content_col_] ol,
.faq_item .faq_answer ul,
.faq_item .faq_answer ol {
  margin-bottom: 17px;
}

.is-layout-flex {
  display: flex;
}

video {
  max-width: 100%;
}

/* Others */
/*==================================RESPONSIVE LAYOUTS===============================================*/
@media only screen and (max-width: 1400px) {
  .vert_slide {
    height: 375px;
    width: 586px;
  }
  .vert_slider .viewport {
    height: 375px;
  }
  .vert_slide_img {
    max-height: 100%;
  }
  .product_item_img {
    height: 130px;
  }
  #machines-application {
    background-size: auto 350px;
  }
  .about_machine_box {
    min-height: 457px;
    background-position: 50% 80%;
    background-size: cover;
  }
  article > img {
    max-width: 100%;
    height: auto;
  }
  #contact_btn {
    top: 55%;
  }
  .page_social {
    margin-top: -70px;
  }
  .animated-video-wrapper {
    position: relative;
  }
  .animated-video-wrapper video, .image-wrapper img {
    width: 50vw;
    height: auto;
  }
  .video-container .grid-two-columns {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 1300px) and (min-width: 768px) {
  .operator_box {
    height: auto;
    background-position: 100% 50% !important;
    background-size: 50% auto;
  }
  .operator_box1.reverse {
    height: auto;
    background-size: 50% auto;
    background-position: 0 50% !important;
  }
}
@media only screen and (max-width: 1100px) {
  article[data-bg]:not(.video_box),
  article[data-bg]:not(.video_box) .container {
    position: relative;
    min-height: 0;
  }
  article[data-bg] .container,
  .page-template-single_machine .operator_box .container {
    z-index: 2;
  }
  .page-template-single_machine .operator_box,
  .page-template-single_machine .operator_box .container {
    position: relative;
  }
  article[data-bg=gray_bg]:before,
  article[data-bg=video_bg1]:before,
  article[data-bg=video_bg2]:before,
  article[data-bg=dark_bg]:before {
    display: none;
  }
  .content_col_3_4,
  .simple_col_3_4,
  .events_list_item_img_wrap {
    width: auto;
    float: none;
  }
  #uniport[data-uni-box-bg] {
    background-size: 45% auto;
    background-position: right 50%;
  }
  .application_sm_items .single_industry_carousel_wrap {
    margin: 0 -1.5%;
  }
  .application_sm_items .single_industry_carousel_item {
    max-width: 30%;
    margin: 0 1.5%;
  }
  .news_preview_item.wide {
    width: 100%;
  }
  .news_preview_item,
  .events_list_item_img_wrap {
    margin-bottom: 25px;
  }
  .single_industry_carousel_wrap .single_industry_carousel_item img,
  .news_preview_item img,
  .preview_machine_img_wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .title1_2,
  .title2 {
    line-height: 1;
  }
  .fingertips_item_title {
    margin-bottom: 0;
  }
  .application_item_descr {
    padding-left: 30px;
  }
  .preview_machine_item {
    width: 30%;
    margin: 0 1.5% 20px;
  }
  ul .events_list_item:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .compare_popup {
    max-width: 80%;
    width: auto;
  }
  .pdf_popup {
    max-width: 95%;
    width: auto;
  }
  .compare_popup_inner .preview_machine_item {
    width: 50%;
  }
  [data-uni-box-bg=uni7000] {
    background-size: 50% 100% !important;
  }
}
@media only screen and (max-width: 1024px) {
  .navigation_list_link {
    font-size: 14px;
  }
  .container {
    width: 940px;
  }
  header .container {
    width: auto;
    margin: 0 20px;
  }
  .logo_box {
    width: 179px;
    height: auto;
  }
  .logo_box img {
    height: auto;
    max-width: 100%;
  }
  .navigation_list_link {
    padding: 12px 9px;
  }
  .sub_menu_content {
    padding-left: 7px;
  }
  .fingertips_item {
    padding: 0 11px;
  }
  .title1 {
    font-size: 70px;
  }
  [data-bg=services1] {
    background-size: cover !important;
  }
  .simple_tabs .resp-tabs-list-item {
    padding: 7px 25px;
  }
  /* /////////////////////// navigation \\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
  #resp_btn,
  #menu_close_btn {
    cursor: pointer;
    height: 41px;
    width: 43px;
    color: #5fac3c;
    margin: 0 0 0 0;
    background: url(../images/resp_btn.png?1c07f28506a6f3e576e8216890af0cf6) right 0 no-repeat #5fac3c;
  }
  #menu_close_btn {
    background: #5fac3c url(../images/close_icon_nav.png?25c68bcc6f6297b604a98012dd9e32c3) 50% 50% no-repeat;
    display: block;
    position: absolute;
    top: 12px;
    left: 20px;
    z-index: 9;
  }
  .resp_nav_btns {
    overflow: hidden;
    display: block;
    text-align: right;
    padding: 8px 0;
  }
  .resp_nav_btns > * {
    display: inline-block;
    position: static !important;
    margin: 0 0 0 5px !important;
  }
  .logo_box {
    width: 225px;
  }
  header {
    background-color: var(--color-white);
    height: 98px;
    left: 0;
    right: 0;
    width: auto !important;
  }
  /*---------Navigation---------*/
  .header_top {
    position: relative;
    z-index: 99999;
  }
  .is-sticky header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99999;
  }
  .navigation_list_wrapper {
    position: fixed;
    right: -350px;
    top: 34px;
    bottom: 0;
    width: 350px;
    max-width: 100%;
    padding: 0 0 0 0;
    overflow-y: auto;
  }
  .navigation_list_wrapper > * {
    position: relative;
    z-index: 2;
  }
  .navigation_list {
    min-height: 100%;
    background-color: #dadde3;
  }
  .navigation_list_item {
    position: relative;
  }
  .navigation_list .navigation_list_item:last-child {
    border: none;
  }
  .sub_menu_box {
    max-height: inherit;
  }
  .navigation_list_link {
    display: block;
    font-size: 16px;
    padding: 14px 20px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  .hidden_search_form {
    padding: 12px 20px 11px 75px;
    display: block;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  .txt_field {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .hidden_search_form .search_btn {
    background: url(../images/search_icon.png?a6b291d233b1cb0905fefc3f07c4ef9c) 50% 50% no-repeat;
    width: 36px;
    height: 41px;
    position: absolute;
    right: 20px;
    top: 12px;
  }
  .has_sub_menu .navigation_list_link span {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 20px;
    width: 25px;
    height: 25px;
    background: url(../images/plus.png?df120912ac12da1972d074831e782cca) 0 50% no-repeat;
    content: "";
  }
  .sub_menu_nav_link:after {
    display: block;
    position: absolute;
    top: 2px;
    right: 20px;
    width: 25px;
    height: 25px;
    content: "+";
    font-size: 29px;
    color: var(--color-primary);
    text-align: center;
    line-height: 1;
  }
  .sub_menu_nav_link.active:after {
    background: none;
    content: "-";
  }
  .active > .navigation_list_link span {
    transform: rotate(-45deg);
  }
  .navigation_list_link:hover,
  .navigation_list_item:hover > .navigation_list_link,
  .navigation_list_item:hover .sub_menu_box,
  .navigation_list_item.active .sub_menu_box,
  .navigation_list_item.active > .navigation_list_link {
    background-color: var(--color-white);
  }
  .sub_menu_box,
  .sub_menu_content,
  .sub_menu_title {
    display: none;
    transition: none;
  }
  .sub_menu_box_content {
    float: none;
  }
  .sub_menu_box img {
    max-width: 100%;
    height: auto;
  }
  .nav_latest_news_img {
    margin-bottom: 15px;
  }
  .sub_menu_box[data-sub-item=career],
  .sub_menu_box[data-sub-item=contact],
  .sub_menu_box[data-sub-item=news],
  .sub_menu_box[data-sub-item=about] {
    padding: 20px;
  }
  .sub_menu_nav_link,
  .view_all_btn {
    display: block;
    position: relative;
    padding: 6px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  .resp_sub_menu {
    padding: 10px 25px;
    display: none;
  }
  .resp_sub_menu .sub_menu_item {
    margin-bottom: 20px;
  }
  .resp_sub_menu .sub_menu_item .btn2 {
    color: var(--color-white) !important;
    min-width: 0;
    padding-left: 7px;
    padding-right: 40px;
    margin-top: 15px;
    display: inline-block;
  }
  [data-sub-item=application] .sub_menu_item .btn2 {
    width: auto;
    display: block;
  }
  .sub_menu_item_img1 {
    float: left;
    max-width: 140px;
  }
  .sub_menu_item_machine_desc {
    overflow: hidden;
    padding: 0 0 0 20px;
  }
  .resp_sub_menu .sub_menu_item_title1,
  .resp_sub_menu .sub_menu_item {
    clear: both;
  }
  .sub_menu_box_content {
    padding: 6px 25px;
  }
  .show_menu .navigation_list_wrapper {
    right: 0;
    z-index: 99999;
  }
  body.show_menu {
    overflow-x: hidden;
  }
  .navigation_list_wrapper,
  #resp_btn,
  .show_menu #contact_btn {
    transition: all 0.35s ease;
  }
  .show_menu #resp_btn {
    display: none;
  }
  .service_list_item {
    padding-right: 0;
  }
  .new_events td {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .industry_item_img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 995px) {
  body {
    min-width: 748px;
  }
  .container {
    width: 710px;
  }
  .big_container {
    max-width: 100%;
  }
  .sp_tabs .resp-tabs-container {
    padding-top: 0;
  }
  .breadcrumb,
  .service_box,
  .secondary_nav {
    display: none;
    height: 0;
  }
  .sticky-wrapper {
    height: auto !important;
  }
  .about_machine_box_caption p br {
    display: none;
  }
  .simple_tabs .resp-tabs-container {
    padding: 0;
  }
  .title2 {
    font-size: 45px;
  }
  .video_box {
    min-height: 400px;
  }
  .page-template-single_machine .application_carousel_wrap {
    padding-top: 50px;
  }
  h2.resp-accordion {
    margin-top: 2px;
    border-top: 1px solid #dedede;
    background-color: #dadde4;
    padding: 7px 30px;
    position: relative;
    cursor: pointer;
  }
  .resp-accordion.resp-tab-active,
  .resp-accordion:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  .resp-arrow {
    display: block;
    width: 20px;
    height: 15px;
    position: absolute;
    right: 12px;
    top: 12px;
    background: url(../images/accord_arrow.png?137c0fe48aa98307c28bcbe39b85562a) 0 -28px no-repeat;
  }
  .resp-accordion.resp-tab-active .resp-arrow,
  .resp-accordion:hover .resp-arrow {
    background-position: 0 0;
  }
  h2.resp-accordion br {
    display: none;
  }
  .simple_tabs:not(.services_tabs) .resp-tab-content {
    padding: 15px 10px;
    border: 1px solid #d6d9de;
    border-top: none;
  }
  .resp-tabs-container h2.resp-accordion:first-child {
    border: none;
  }
  .carousel .owl-item {
    overflow: hidden;
  }
  .show_menu #contact_btn {
    visibility: hidden;
    opacity: 0;
  }
  .countries_box.agencies > div:first-child ~ div .region_box .hide_items {
    margin-left: 0;
  }
  .global_industry_item {
    padding: 70px 0;
  }
  .global_industry_item:first-child {
    padding-top: 0;
  }
  [data-bg=discover_bg] {
    background: none;
  }
  .fingertips_item .title2 {
    font-size: 38px;
  }
  .footer_col_sm {
    margin-right: 10px;
  }
  [data-uni-box-bg=uni7000] {
    background-position: 100% 0;
  }
  .operator_box {
    background-position: 50% 0;
  }
  .operator_box1 {
    background-position: 20% 0;
  }
  [data-bg=services] {
    background-position: -30% 0;
  }
  .about_machine_box {
    background-position: 50% 0;
  }
  .owner_solutions {
    margin: 0 -10px;
  }
  .owner_solution_item {
    margin: 0 10px 20px;
    width: 140px;
  }
  .tabs.var1 .resp-tabs-container {
    padding: 0 10px;
  }
  .tabs.var1 .resp-tab-content {
    padding-top: 0;
  }
  #downloads .content_col_1_4 {
    width: 48%;
  }
  .product_item_img img,
  .timeline_item img {
    max-width: 100%;
    height: auto;
  }
  .product_item {
    margin: 0 10px;
  }
  .product_item_info_item > * {
    float: none;
  }
  .product_item_info_item > *:last-child {
    margin-bottom: 10px;
  }
  .vert_slide_caption1 {
    padding: 0 20px 0 0;
  }
  .vert_slider2 .buttons {
    left: 50%;
    margin-left: -25px;
  }
  .vert_slider2 .viewport,
  .vert_slider2 .viewport .overview > li {
    height: 335px;
  }
  #contact_btn2 {
    padding: 0;
    width: 43px;
    height: 41px;
    background-position: 50% 50%;
  }
  #contact_btn,
  #contact_btn2 {
    display: none;
  }
  .page-template-application #contact_btn2,
  .page-template-single_machine #contact_btn2 {
    display: inline-block !important;
  }
  .resp-tab-content {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  #machines-application {
    min-height: 0;
  }
  .content_img_wrap {
    margin-bottom: 25px;
  }
  .simple_tabs .content_col_1_2.extra,
  [data-bg=discover_bg] .content_col_1_2.extra,
  .content_img_wrap,
  .region_box .content_col_1_4 {
    float: none;
    width: auto;
  }
  .region_box .staff_item,
  .agencies [data-region] {
    padding-left: 0;
    padding-right: 20px;
    min-height: 120px;
  }
  .region_box .content_col_1_4 {
    margin-bottom: 30px;
  }
  .carousel_item,
  .carousel_item_item1 {
    width: auto;
    display: block;
    margin: 0 60px;
  }
  .carousel_item_caption1,
  .carousel_item_img1 {
    display: block;
    width: auto;
  }
  .carousel_item_img1 {
    margin-top: 25px;
  }
  #case-studies {
    padding: 60px 0;
  }
  .simple_tabs.extra1 .resp-tabs-container,
  .application_item_descr {
    padding: 0;
  }
  #downloads .pdf_list {
    width: auto;
    text-align: center;
  }
  #downloads .pdf_list_item {
    display: inline-block;
    margin: 0 5px 10px;
  }
  #downloads .content_col_1_4 {
    float: none;
    width: auto;
  }
  .downloads_inner {
    padding: 40px 0 0;
  }
  .contact_form_box {
    padding: 15px 10px;
  }
  .contact_form_box .form_label {
    font-size: 13px;
  }
  .contact_form_box .cols_r_indent [class^=content_col]:not(:first-child) {
    padding-left: 10px;
  }
  .about_caption {
    position: static;
    color: var(--color-primary);
    padding-bottom: 30px;
  }
  .content_nav_list {
    overflow: hidden;
  }
  .content_nav_list > li {
    width: 16.6%;
    line-height: 19px;
    height: auto;
    padding: 13px 20px;
    display: block;
    float: left;
  }
  .timeline_box_inner {
    padding: 0;
  }
  .preview_machine_item {
    width: 47%;
  }
  .machines_box_header .over_btn {
    margin-left: 10px;
  }
  .application_carousel {
    width: 50%;
    margin-right: 40px;
  }
  .countries_list > li {
    width: 50%;
    border-right: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
  }
  .page_social {
    height: 60px;
    width: 180px;
    line-height: 60px;
    right: -180px;
    margin-top: -60px;
  }
  .page_social_btn {
    width: 60px;
    height: 60px;
    left: -60px;
  }
  .page_social_btn span {
    display: none;
  }
  .news_nav {
    border-top: 1px solid #dedede;
    padding: 10px 0 0;
    margin: 15px 0 0;
    display: block;
    float: none;
  }
  .event_title > .f_left {
    float: none;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  [data-uni-box-bg=uni7000],
  .operator_box .content_col_1_2 {
    padding-right: 40px;
  }
  [data-uni-box-bg=uni7000],
  .operator_box1 .content_col_1_2 {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    min-width: 420px;
  }
  .container {
    width: auto;
    margin: 0 30px;
  }
  .image-wrapper {
    margin: 0 30px;
  }
  .operator_box .container,
  .operator_box1 .container {
    margin: 0 30px;
  }
  .breadcrumb .container {
    flex-direction: row;
    margin-top: 40px;
  }
  .breadcrumb .container .bcn-list {
    display: none;
  }
  .header_search {
    width: 100%;
  }
  .title1,
  .title1_1,
  .title1_2 {
    font-size: 50px;
  }
  .simple_tabs .extra2.resp-tabs-container {
    padding-top: 0;
  }
  .sub_menu_box {
    max-height: inherit;
  }
  [class^=content_col],
  .extra[class^=content_col],
  .content_col_1_3,
  .news_title_nav div.f_left,
  .news_title_nav div.f_right,
  .machines_box_header > *,
  .region_box .staff_item {
    float: none;
    width: auto !important;
  }
  .simple_tabs .resp-tabs-container {
    padding: 0 20px;
  }
  .simple_tabs .resp-tabs-container .container {
    min-height: 0;
    padding: 0;
    margin: 0;
  }
  .page-template-contact .sp_tabs .resp-tabs-container {
    padding-top: 0;
  }
  .page_social_btn {
    display: none;
  }
  .simple_img_wrap {
    text-align: left;
    padding: 20px 0 0;
  }
  .machines_box_header > *,
  [class^=content_col] {
    margin-bottom: 20px;
  }
  .new_events_col1 {
    padding-right: 0;
  }
  .contact_form_box .cols_r_indent [class^=content_col]:not(:first-child),
  .cols_r_indent [class^=content_col]:not(:first-child) {
    padding-left: 0;
  }
  .green_box_m_slogan,
  .green_box_m_name,
  .green_box {
    display: block;
    text-align: left;
    padding: 0;
    width: auto;
  }
  .green_box.d_none.sm_show {
    display: none;
  }
  .green_box {
    padding: 20px 30px;
  }
  #contact_btn {
    margin: 0;
    right: 90px;
    left: auto;
  }
  .contact_form_box {
    padding: 18px 20px;
  }
  .form_label,
  .custom_tabs h2.resp-accordion {
    font-size: 14px;
  }
  .custom_tabs h2.resp-accordion {
    font-weight: normal;
  }
  .service_icon_description {
    padding-top: 10px;
  }
  .service_icon_img img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
  #downloads .content_col_1_4,
  .new_events_col1 {
    float: none !important;
    width: auto !important;
    margin-bottom: 20px;
  }
  #downloads .content_col_1_3 {
    width: 33%;
    float: left;
  }
  .service_list {
    padding-top: 30px;
  }
  .title4 {
    font-size: 24px;
    line-height: 1;
  }
  .product_item_img {
    height: auto;
  }
  .product_item_info_item > *:first-child {
    float: left;
  }
  .product_item_info_item > *:first-child + div {
    float: right;
  }
  .product_item {
    width: 300px;
    margin: 0 auto 20px;
  }
  .require_comment {
    display: none;
  }
  .news_title_nav {
    margin-bottom: 10px;
  }
  .news_nav:after {
    top: 50%;
    margin-top: -14px;
  }
  .pad_box,
  .pad_box1 {
    padding: 30px 0;
  }
  [data-bg=general-machining] {
    background-position: 50% 100%;
  }
  .fingertips_item {
    display: block;
    border: none;
    text-align: center;
    margin-bottom: 25px;
  }
  .fingertips_item .title2 {
    margin-bottom: 5px;
  }
  .last_news_caption {
    position: static;
  }
  .service_list_item {
    padding-left: 20px;
  }
  .service_box .title3 {
    margin-bottom: 30px;
  }
  .new_events,
  .new_events tr,
  .new_events tbody,
  .new_events td {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .new_events td {
    width: auto;
  }
  .footer_nav {
    display: block;
  }
  .footer_top div.f_left {
    margin-bottom: 15px;
  }
  .footer_top .f_left,
  .footer_top .f_right,
  .time_line_sm_descr {
    float: none;
  }
  .footer_col_sm {
    width: 50%;
    margin: 0;
    padding: 0 20px 20px 0;
    min-height: 140px;
  }
  .owner_solution_item {
    width: 22%;
    margin: 0 1.5% 20px;
  }
  [data-uni-box-bg=uni7000],
  .operator_box {
    background: none;
  }
  [data-uni-box-bg=uni7000],
  .operator_box,
  .operator_box1 {
    height: auto;
    padding: 40px 0;
    min-height: 0;
    background-size: 360px auto;
    background-position: 50% 40px !important;
  }
  .content_box_col {
    width: auto;
  }
  .operator_box1 {
    background-position: 80% 0;
  }
  [data-bg=services] {
    background: none;
  }
  [data-bg=services] {
    min-height: 0;
  }
  .simple_tabs .extra.resp-tabs-container {
    padding: 0;
  }
  .vert_slide {
    width: auto;
    margin: 0 60px;
  }
  .vert_slide_img {
    max-width: 100%;
  }
  .vert_slider2 .viewport,
  .vert_slider2 .viewport .overview > li {
    height: 390px;
  }
  .hidden_img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    max-height: 300px;
    width: auto;
  }
  .operator_box .content_col_1_2,
  .operator_box1 .content_col_1_2 {
    min-height: 0;
    margin-top: 20px;
  }
  .about_machine_box_caption {
    color: inherit;
  }
  .simple_tabs .extra.resp-tabs-container {
    width: 100%;
    float: none;
  }
  .request_form .clearfix.mb75 {
    margin-bottom: 20px;
  }
  .preview_main_post_inner {
    width: 100%;
    max-width: 100%;
  }
  .news_description {
    position: static;
    background-color: rgb(69, 124, 31);
  }
  .application_carousel,
  .time_line_sm_descr,
  .time_line_sm_descr + .time_line_sm_descr[data-bg=white_bg] {
    float: none !important;
    width: auto;
  }
  .timeline_item .time_line_sm_descr:after,
  .timeline_stripe {
    display: none !important;
  }
  .time_line_sm_descr:first-child + .time_line_sm_descr {
    margin-top: 0;
  }
  .application_item_descr {
    padding: 20px 0 0;
  }
  .content_nav_list > li {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
  .timeline_item .title2_1 {
    font-size: 30px;
  }
  .timeline_item img {
    width: 100%;
  }
  .preview_machine_item {
    width: 45%;
    margin-left: 2.5%;
    margin-right: 2.5%;
  }
  .all_matches,
  .main_event_descr {
    text-align: center;
  }
  .main_event_descr {
    float: none;
    margin-bottom: 30px;
    width: auto;
    padding-right: 0;
  }
  .sp_tabs {
    min-height: inherit;
  }
  .over_btn {
    padding-top: 19px;
    padding-bottom: 20px;
    margin-top: -5px;
  }
  .comparison_item {
    top: 0;
  }
  .carousel.var2 .owl-nav > div.owl-next {
    right: 0;
    background: url(../images/arrow_slider_next.png?3268026d37cd254c89fd32f2b7c0a7f4) 50% 50% no-repeat;
  }
  .carousel.var2 .owl-nav > div.owl-prev {
    left: 0;
    background: url(../images/arrow_slider_prev.png?f6ae3e29ab2d0c93feefa926fed9eba2) 50% 50% no-repeat;
  }
  .carousel.var2 .owl-nav > div {
    width: 23px;
    height: 51px;
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary);
    background-size: 9px 12px !important;
  }
  .video1 {
    max-width: 80%;
    height: auto;
    padding-bottom: 50%;
  }
  .video1 iframe {
    min-height: 220px;
  }
  .video1.playing {
    padding-bottom: 0;
  }
  .play_video_btn {
    width: 60px;
    height: 60px;
    background-size: 21px auto;
    margin: -30px 0 0 -30px;
  }
  .play_video_btn:after {
    left: -30px;
  }
  .new_events {
    margin-top: 0;
    margin-bottom: 0;
  }
  .page-template-single_machine .hidden_img {
    max-width: 70%;
    height: auto;
  }
  .logo_box {
    transform: translateX(0px);
  }
  body.show_menu .logo_box {
    transform: translateX(-350px);
  }
  #uniport[data-uni-box-bg] {
    background: none !important;
  }
  .page-template-page-single-machine .about_machine_box {
    min-height: 430px;
  }
  .animated-video-wrapper video, .image-wrapper img {
    width: 100%;
    max-width: none;
  }
  .animated-video-wrapper {
    margin: 30px;
    position: relative;
  }
  .video-container {
    margin: 0 30px;
  }
  .image-wrapper {
    position: relative;
    right: 0;
    top: 0;
    height: 100%;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 600px) {
  .footer_col_1,
  .footer_col_2,
  .contact_info_col,
  [data-lang=_de] .contact_info_col,
  .events_list_item_time_wrap,
  .events_list_item_img_wrap,
  .agencies [data-region] {
    float: none;
    width: auto;
    margin-bottom: 20px;
  }
  .request_form .wpcf7-response-output {
    margin-left: 0;
    margin-right: 0;
  }
  [data-bg=energy] {
    background-position: 100% 100%;
  }
  .sm_hide,
  [data-sub-item=about] > .sub_menu_box_content .sub_menu_title,
  [data-sub-item=about] > .sub_menu_box_content p,
  .content_nav_list {
    display: none;
  }
  .sm_show,
  .green_box.d_none.sm_show {
    display: block;
  }
  .owner_solution_item {
    width: 46%;
  }
  .owner_solutions {
    margin: 0 -1.5%;
  }
  .time_line_descr_caption,
  .events_list_item_time_wrap,
  .events_list_item_img_wrap {
    padding: 0;
  }
  .vert_slide_caption1,
  .vert_slide_img1 {
    display: block;
    width: auto;
    margin: 0 0 20px;
  }
  .vert_slider2 .viewport,
  .vert_slider2 .viewport .overview > li {
    height: 630px;
  }
  .request_form .content_col_1_2 {
    padding: 0;
  }
  .carousel_item_caption {
    position: static;
  }
  .single_industry_carousel_item {
    float: none;
    margin: 0 auto;
  }
  .industrial_post_item,
  .time_line_descr_caption,
  .compare_popup_inner .preview_machine_item {
    width: auto;
    float: none;
    margin-bottom: 20px;
  }
  .application_carousel_wrap {
    padding: 0 0;
  }
  .application_carousel_wrap .owl-nav > div {
    margin-top: -55px;
  }
  .application_caption {
    position: static;
    color: var(--color-primary);
    padding: 40px 0 20px;
  }
  .application_sm_items .single_industry_carousel_item {
    width: auto;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }
  .application_carousel_item1 {
    margin: 0 auto;
    width: auto;
    max-width: 65%;
  }
  .content_nav_list > li {
    font-size: 12px;
  }
  .preview_machine_item {
    width: 95%;
  }
  .green_box:before {
    display: none;
  }
  .home_img_box .green_box:before {
    display: block;
  }
  .home_img_box .green_box h1 {
    margin-bottom: 10px;
  }
  .machines_box_header .over_btn {
    width: 50%;
    text-align: center;
    padding: 4px 20px;
    margin: 0 5px;
  }
  .carousel .industry_item_caption {
    position: static;
  }
  .about_machine_box {
    display: block;
  }
  .custom_tabs h2 {
    font-size: 20px;
  }
  .page-template-single_machine .hidden_img {
    max-width: 85%;
  }
  .big_about_img {
    width: auto;
    height: 250px;
    max-width: inherit;
  }
  .logo_box {
    width: 146px;
    position: absolute;
    top: 34px;
  }
  .header_inner {
    padding-left: 0;
    padding-top: 8px;
  }
  .tools_box {
    float: none;
    text-align: center;
  }
  .lang_choose_box {
    float: left;
  }
  .login_box {
    float: right;
  }
  .countries_list > li {
    width: auto;
    display: block;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 400;
  }
}
@media only screen and (max-width: 479px) {
  body {
    min-width: 300px;
    font-size: 14px;
    line-height: 20px;
  }
  .all_machines_page .preview_machine_spec_list {
    min-height: 0;
  }
  #fancyVideo .videoPlayer {
    width: 320px !important;
    height: 200px !important;
  }
  .image-wrapper {
    padding: 0;
  }
  .page-template-about .big_about_img {
    transform: translateX(-150px);
  }
  .container {
    margin: 0 30px;
  }
  .navigation_list_wrapper {
    width: 100%;
    right: -100%;
  }
  .show_menu .navigation_list_wrapper {
    padding-left: 0;
  }
  .show_menu .hidden_search_form {
    padding-left: 80px;
  }
  .show_menu #resp_btn {
    z-index: 10;
    left: 20px;
  }
  .txt_field {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .carousel.var2 .owl-nav > div {
    border: none;
  }
  .page-template-page-single-machine .about_machine_box {
    min-height: 320px;
  }
  #downloads .pdf_list {
    width: auto;
  }
  .new_events_col1 .application_carousel_wrap .owl-nav > div {
    margin-top: -10px;
  }
  .product_item_img {
    margin-bottom: 0;
    max-height: 200px;
  }
  .pdf_sm_box,
  .content_nav_list,
  .time_line_sm_descr:after,
  .time_line_sm_descr:before,
  .vacancies_table th {
    display: none !important;
  }
  .vacancies_table {
    border: none;
  }
  .vacancies_table tr,
  .vacancies_table td,
  .vacancies_table td:before {
    display: block;
  }
  .vacancies_table {
    box-shadow: none;
  }
  .vacancies_table tr {
    padding: 20px 0;
    border-top: 1px solid #ebebeb;
  }
  .vacancies_table tr:first-child {
    display: none;
  }
  .vacancies_table td {
    border: none;
    padding: 15px 0 0;
  }
  .vacancies_table tr td:last-child {
    text-align: left;
    padding-top: 10px;
  }
  .vacancies_table td:before {
    content: attr(data-title);
    display: block;
    font-weight: bold;
  }
  .big_container {
    width: auto;
    max-width: 100%;
  }
  .min_275 .dropdown-menu {
    min-height: 275px;
  }
  .xss_hide {
    display: none;
  }
  .title2 span {
    border: none;
  }
  .title2:not(.fingertips_item_title),
  .title3 {
    margin-bottom: 30px;
  }
  .title5 {
    padding-left: 0;
  }
  .about_machine_box_caption {
    padding: 30px 0;
  }
  .video_box .title3 {
    font-size: 23px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  [data-bg=video_bg1] {
    padding: 20px 0;
  }
  .font_31 {
    font-size: 21px;
  }
  .fingertips_item .title2 {
    font-size: 40px;
    margin-bottom: -13px;
  }
  .mb-14 {
    margin-bottom: 0;
  }
  .fingertips_item {
    padding-bottom: 20px;
    border-bottom: 1px solid #d6d9de !important;
    text-align: left;
    margin-bottom: 12px;
  }
  .news_preview_item {
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .page_social {
    display: none;
  }
  .page_social,
  .preview_machine_img_wrap {
    text-align: center;
  }
  .content_box1 {
    padding: 20px 0 !important;
  }
  .service_icon_description {
    font-size: 16px;
  }
  .service_list_item {
    padding: 0 20px 20px !important;
  }
  .service_list .service_list_item:last-child {
    padding-left: 65px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .bot_bd1 {
    border: none;
  }
  .last_news_caption {
    color: var(--color-gray-900);
  }
  .single-post .new_events_col1 .last_news_caption {
    color: var(--color-white);
  }
  .last_news,
  .footer_col_sm {
    margin-bottom: 10px;
  }
  .event_time b:first-child {
    font-size: 40px;
  }
  footer {
    padding-top: 10px;
  }
  .footer_search_field {
    width: 160px;
  }
  .footer_nav_item {
    font-size: 10px;
    margin: 0 5px 10px;
  }
  .footer_nav_item a {
    color: var(--color-white);
  }
  .footer_inner {
    padding-bottom: 0;
  }
  .event_img img {
    max-width: 100%;
    height: auto;
  }
  .navigation_list,
  .product_item {
    width: 100%;
  }
  .downlods_inner,
  .download_form_wrap {
    padding: 0;
  }
  #downloads .content_col_1_3,
  .countries_list > li {
    width: auto;
    float: none;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .vert_slider2 .viewport,
  .vert_slider2 .viewport .overview > li {
    height: 540px;
  }
  .pdf_list_item,
  .pdf_sm_box figcaption {
    position: relative;
    border: 2px solid var(--color-primary);
    padding: 15px 20px 15px 50px;
  }
  .pdf_list_item .btn3,
  .pdf_sm_box figcaption .btn3 {
    display: block;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    position: absolute;
  }
  .pdf_list_item p,
  .pdf_sm_box figcaption p {
    margin-bottom: 0;
  }
  .pdf_list_item .btn3 span,
  .pdf_sm_box figcaption span,
  .pdf_sm_box p:first-child,
  .xss_hide {
    display: none;
  }
  .xss_show {
    display: block;
  }
  .title_wrap {
    padding: 15px 15px;
  }
  .about_machine_box {
    min-height: 250px;
    background-size: cover;
    background-position: 50% 100%;
  }
  [data-uni-box-bg=uni7000],
  .operator_box,
  .operator_box1,
  .owner_box,
  #case-studies,
  .vert_slide_caption1,
  .carousel_item_caption1 {
    padding: 30px 0;
  }
  .carousel_item,
  .carousel_item_item1 {
    margin-left: 0;
    margin-right: 0;
  }
  .owl-nav > div {
    margin-top: -75px;
  }
  .preview_main_post_description {
    padding: 10px;
  }
  .industry_item {
    width: auto;
    float: none;
    margin: 0 0 20px;
  }
  .single_industry_carousel_wrap {
    margin: 0 0;
  }
  .content_nav_item {
    display: block;
  }
  .machines_box_header .over_btn {
    width: 80%;
  }
  .cont_pad {
    padding-top: 20px !important;
  }
  .carousel_item_item1 {
    max-width: 80%;
  }
  .carousel_item_item1 {
    margin: 0 auto;
  }
  .industry_items .industry_item_caption {
    position: static;
  }
  .news_prev_btn {
    margin-left: 0;
  }
  .news_next_btn {
    margin-right: 0;
  }
  .num_404 {
    font-size: 100px;
  }
}
@media only screen and (max-width: 576px) {
  .container > .grid-two-columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 30px;
    margin: 0;
  }
  .news_previews_wrap .additional-news,
  .news_previews_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  .animated-video-wrapper {
    position: relative;
    right: 0;
    top: 0;
    height: 100%;
    margin: 30px 30px 0;
  }
  .animated-video-wrapper video {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 320px) {
  .service_list_item {
    padding: 0 40px 20px;
  }
  .footer_label {
    font-size: 10px;
  }
  .footer_search_field {
    width: 130px;
  }
  .area_list_item > div,
  .area_list {
    display: block;
    width: auto;
    text-align: left;
  }
  .area_list_item > div {
    padding: 4px 10px;
  }
  .area_list_item_value br:first-child {
    display: none;
  }
  #case-studies {
    min-height: 0;
  }
  .footer_label {
    font-size: 12px;
  }
  .footer_search {
    white-space: nowrap;
  }
  .sub_menu_item_img1 {
    width: 95px;
  }
}
