@charset "UTF-8";
.cs-block1 .animate__animated {
  display: none;
}

.slick-active .cs-block1 .animate__animated {
  display: block !important;
}

#case_study_slider .custom-post-content .animate__animated.animate__pulse.animate__infinite {
  animation-duration: 2s;
}

/* Afterwards the content from https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */
/* 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 {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -1.875rem, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -0.9375rem, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -0.25rem, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-0.625rem, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0.625rem, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -0.625rem, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 0.625rem, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-0.375rem) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(0.3125rem) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-0.1875rem) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(0.125rem) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    transform: translateY(-75rem) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-125rem) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(125rem) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(75rem) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(43.75rem) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(-125rem) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(125rem) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-43.75rem) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -187.5rem, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 1.5625rem, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -0.625rem, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 0.3125rem, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-187.5rem, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(1.5625rem, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-0.625rem, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(0.3125rem, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(187.5rem, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-1.5625rem, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(0.625rem, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-0.3125rem, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 187.5rem, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -1.25rem, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 0.625rem, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -0.3125rem, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 0.625rem, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -1.25rem, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 125rem, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(1.25rem, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-125rem, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-1.25rem, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(125rem, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -0.625rem, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 1.25rem, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -125rem, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -125rem, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-125rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(125rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 125rem, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 125rem, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-125rem, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(125rem, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -125rem, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  0% {
    transform: perspective(25rem) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(25rem) scaleX(1) translateZ(9.375rem) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(25rem) scaleX(1) translateZ(9.375rem) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(25rem) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(25rem) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(25rem) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(25rem) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(25rem) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(25rem) rotateX(-5deg);
  }
  to {
    transform: perspective(25rem);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(25rem) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(25rem) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(25rem) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(25rem) rotateY(-5deg);
  }
  to {
    transform: perspective(25rem);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(25rem);
  }
  30% {
    transform: perspective(25rem) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(25rem) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(25rem);
  }
  30% {
    transform: perspective(25rem) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(25rem) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 43.75rem, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -62.5rem, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 3.75rem, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-62.5rem, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0.625rem, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(62.5rem, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-0.625rem, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 62.5rem, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -3.75rem, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -3.75rem, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 125rem, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(2.625rem, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-125rem, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-2.625rem, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(125rem, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 3.75rem, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -125rem, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

/* ------------- Case Studies ---------- */
/* eb-advanced-tabs-uo2bx Starts */
.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper > * {
  position: relative;
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper {
  display: flex;
  flex-direction: column;
  transition: all 0.5s, background 0.5s, border 0.5s, border-radius 0.5s, box-shadow 0.5s;
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper:before {
  transition: all 0.5s, background 0.5s, opacity 0.5s, filter 0.5s;
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] {
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  flex-direction: row;
  transition: border 0.5s, border-radius 0.5s, box-shadow 0.5s, background 0.5s;
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] li {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  position: relative;
  flex: 1;
  flex-direction: row;
  padding: 1.25rem;
  gap: 0.625rem;
  background-color: var(--eb-global-background-color);
  transition: all 0.5s, background 0.5s, border 0.5s, border-radius 0.5s, box-shadow 0.5s;
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] li .tabIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.0625rem;
  height: 1.0625rem;
  font-size: 1.0625rem;
  color: var(--eb-global-heading-color);
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] li img {
  height: auto;
  width: 1.0625rem;
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] li .tab-title-text {
  font-size: inherit;
  margin: 0;
  padding: 0;
  color: var(--eb-global-heading-color);
  font-family: "Noto Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.8em;
  font-weight: 700;
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] li.active {
  background-color: var(--eb-global-primary-color);
  transition: border 0.5s, border-radius 0.5s, box-shadow 0.5s, background 0.5s;
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] li.active span,
.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] li.active i {
  color: var(--eb-global-background-color);
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] li.active .tab-title-text {
  color: var(--eb-global-background-color);
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-contents {
  flex: 1;
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-contents .eb-tab-wrapper[data-tab-parent-id=eb-advanced-tabs-uo2bx] {
  padding-top: 0.625rem;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  padding-bottom: 0.625rem;
  border-width: 1px;
  border-color: #eeedf0;
  border-style: solid;
  transition: all 0.5s, background 0.5s, border 0.5s, border-radius 0.5s, box-shadow 0.5s;
}

.eb-parent-eb-advanced-tabs-uo2bx {
  display: block;
  width: 99%;
}

/* Css for Animation */
body:not(.wp-admin) .eb-parent-eb-advanced-tabs-uo2bx.eb_animation {
  visibility: hidden;
  opacity: 0;
  transition: ease-in 1500ms;
}

body:not(.wp-admin) .eb-parent-eb-advanced-tabs-uo2bx.eb_animation.eb__animated {
  visibility: visible;
  opacity: 1;
}

.eb-parent-eb-advanced-tabs-uo2bx.eb_animation.eb__animated {
  animation-duration: 1500ms;
  animation-delay: 0ms;
}

.root-eb-advanced-tabs-uo2bx {
  position: relative;
}

@media (max-width: 1024px) {
  .eb-parent-eb-advanced-tabs-uo2bx {
    display: block;
  }
}
@media (max-width: 767px) {
  .eb-parent-eb-advanced-tabs-uo2bx {
    display: block;
  }
}
.eb-advanced-tabs-uo2bx {
  /*position: relative;*/
}

.caseTitle2 {
  display: none;
}

@media (max-width: 767px) {
  .eb-advanced-tabs-uo2bx {
    /*display: block;*/
  }
  .caseTitle2 {
    display: block;
  }
  .caseTitle {
    display: none;
  }
  .btnCaseCol {
    order: -1;
  }
  .btnCaseCol .custom-post-content-arrows.cs-main {
    justify-content: left;
  }
  .firstCaseCol {
    padding-bottom: 3rem;
  }
}
.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] li {
  justify-content: left !important;
}

.advTabs .eb-tab-wrapper.inactive {
  display: none;
}

.caseTitle,
.caseTitle2 {
  font-weight: bold;
}

.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
  align-content: center;
}

.tabTitles li[data-title-tab-id="1"] {
  background: white;
  border: 1px solid #009fe3;
  color: #009fe3;
}

.tabTitles li[data-title-tab-id="1"] > h6 {
  color: #009fe3 !important;
}

.eb-advanced-tabs-uo2bx.eb-advanced-tabs-wrapper .eb-tabs-nav ul.tabTitles[data-tabs-ul-id=eb-advanced-tabs-uo2bx] {
  gap: 0.625rem;
}

.tabTitles li[data-title-tab-id="1"].active {
  background: #009fe3 !important;
  border: 1px solid #009fe3;
}

.tabTitles li[data-title-tab-id="1"].active > h6 {
  color: white !important;
}

.tabTitles li.active:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  z-index: 1;
  border: 0.5rem solid transparent;
  border-top-style: solid;
  border-top-color: transparent;
  border-bottom-width: 0.5rem;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  bottom: -0.5rem;
  border-bottom: 0px !important;
  left: 50%;
  border-top-style: solid;
  transform: translateX(-50%);
  border-top-color: var(--eb-global-primary-color);
}

.tabTitles li.active[data-title-tab-id="1"].active:after {
  border-top-color: #009fe3 !important;
}

.wp-block-columns.firstCaseCol.is-layout-flex.wp-container-core-columns-is-layout-1.wp-block-columns-is-layout-flex {
  max-width: 100%;
}

.custom-post-content-arrows.cs-main {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: right;
  height: 100%;
}

.tabTitles li[data-title-tab-id="2"].inactive {
  background: white !important;
  border: 1px solid black !important;
}

.advTabs {
  max-width: 84.375rem !important;
  margin-left: 0 !important;
}

.advTabs .eb-tab-wrapper {
  border: 0 !important;
  padding: 0 !important;
}

.circle {
  width: 12.5rem;
  height: 12.5rem;
  background-color: #009fe3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  margin-top: -3rem !important;
}

.circle-text {
  color: white;
  font-size: 1.375rem;
}

@media (max-width: 420px) {
  .advTabs td {
    font-size: 0.75rem !important;
  }
  .advTabs li {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
  .advTabs h6 {
    font-size: 0.875rem !important;
    padding: 0px !important;
  }
  .caseVorteile p {
    font-size: 0.75rem;
  }
}
@media (max-width: 300px) {
  .advTabs li {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}
@media (max-width: 767px) {
  .firstCaseCol {
    padding-bottom: 0rem !important;
  }
  .advTabs .eb-tab-wrapper figure,
  .advTabs .eb-tab-wrapper img {
    height: 100%;
    object-fit: contain !important;
  }
  .active .caseVorteile {
    padding-left: 0px !important;
    padding-top: 3.75rem !important;
  }
  .advTabs .wp-block-table {
    line-height: 1 !important;
  }
  .advTabs td {
    padding-right: 1px !important;
    padding-left: 1px !important;
  }
}
@media (max-width: 1200px) {
  .circle {
    width: 8.125rem !important;
    height: 8.125rem !important;
    z-index: 1;
  }
  .circle-text {
    font-size: 1rem !important;
  }
}
@media (min-width: 1200px) {
  .circle {
    margin-top: -8rem !important;
  }
}
.wp-container-core-columns-is-layout-3 {
  gap: 0 !important;
}

/* =eb-advanced-tabs-uo2bx= Ends */
.certificates-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  grid-gap: 7rem;
  color: #FFF;
}

.certificate-image {
  padding: 2rem 10.6875rem 4.5625rem 2.4375rem;
  background-color: #f0f0f0;
}

.certificate-caption {
  background-color: #009fe3;
}

.certificate-title {
  margin-top: 0;
  padding: 1.5625rem 2.4375rem;
}

.certificate-download {
  padding-bottom: 1.3125rem;
}

.certificate-download a {
  color: #fff;
  margin: 8.6875rem 2.4375rem;
}

.certificate-download a:after {
  background-image: none;
  display: none;
}

.certificate-chevron {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
  height: 0.75rem;
  width: 1.4375rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: auto;
  filter: invert(1);
}

.cta_header::after {
  background-image: unset !important;
  height: 0px;
}

.cta_container {
  position: relative;
}

.cta_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25rem;
  display: table !important;
}

.cta_button .eb-button-anchor {
  color: white !important;
}

@media only screen and (max-width: 1023px) {
  .cta_arrow,
  .cta-spalte1 {
    display: none !important;
  }
  .cta-spalte2 {
    flex-basis: 2.4% !important;
  }
  .cta_button .eb-button-inner-wrapper::before {
    background-image: url("/wp-content/uploads/2024/11/Pfeil-links-oben.svg");
    content: "";
    display: block;
    height: 1.875rem;
    width: 6.9375rem;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    position: absolute;
    top: 0px;
    transition: 0.3s;
  }
  .cta_button a::after {
    background-image: url("/wp-content/uploads/2024/11/Pfeil-rechts-unten.svg");
    content: "";
    height: 1.875rem;
    width: 6.9375rem;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    transition: 0.3s;
  }
  .cta_header {
    padding-top: 3vh;
  }
}
html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 6.25rem;
}

body .wp-site-blocks {
  overflow-x: hidden;
}

body {
  -webkit-text-size-adjust: none;
  font-synthesis: none;
}

body,
header,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div,
section {
  font-family: "Noto Sans", Arial, sans-serif !important;
}

/* Nur <select>-Elemente in einem <form> */
form select {
  appearance: none;
  /* Entfernt den Standard-Dropdown-Pfeil */
  -webkit-appearance: none;
  /* Für WebKit-Browser */
  -moz-appearance: none;
  /* Für Firefox */
  background-color: #fff;
  /* Hintergrundfarbe */
  border: 1px solid #ccc;
  /* Rahmen */
  padding: 0.625rem;
  /* Innenabstand */
  font-size: 1rem;
  /* Schriftgröße */
  border-radius: 0.25rem;
  /* Abgerundete Ecken */
  background-image: url("/wp-content/uploads/2024/10/Path-1119.svg");
  /* Eigene Pfeil-Grafik */
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  /* Position des Pfeils */
  background-size: 1.375rem;
  /* Größe des Pfeils */
}

/* Entfernen des Pfeils in IE */
form select::-ms-expand {
  display: none;
}

#file21_dropzone,
#field_zo9fz_label {
  display: none;
}

.eb-slider-wrapper .eb-slider-type-content .eb-slider-item.content-1 .eb-slider-content {
  padding: 1.25rem 9vw;
}

.mobile-arrow {
  display: none;
}

.arrow-devider {
  width: 80%;
  height: auto;
}

@media (max-width: 1178px) {
  .mobile-arrow {
    display: block;
  }
  .desktop-arrow {
    display: none;
  }
}
#modal-1 li.wp-block-navigation-link,
#modal-2-content li.wp-block-navigation-link {
  padding-bottom: 0.375rem;
}

#modal-1 li.current-menu-item,
#modal-2-content li.current-menu-item,
.wp-block-navigation-item.wp-block-navigation-link.has-child {
  color: #009FE3;
}

#modal-1 li:not(.current-menu-item).wp-block-navigation-link:hover,
#modal-2-content li:not(.current-menu-item).wp-block-navigation-link:hover {
  /*border-bottom: 1px solid #c1c6c6; ii*/
}

#modal-1 li.wp-block-navigation-link:hover a,
#modal-2-content li.wp-block-navigation-link:hover a {
  text-decoration: none;
}

.wp-block-navigation-item {
  padding-bottom: 0.375rem;
}

.only-desktop {
  display: inherit !important;
}

.only-mobile {
  display: none !important;
}

@media screen and (max-width: 780px), screen and (max-height: 800px) {
  .only-desktop {
    display: none !important;
  }
  .only-mobile {
    display: inherit !important;
  }
}
body :where(.wp-site-blocks) > * {
  margin-top: 0;
}

:root body :where(.is-layout-flow) > * {
  margin-top: 0;
}

@media screen and (min-width: 780px) {
  .overflow-h-desktop {
    overflow: hidden;
  }
}
/*Button sytling*/
.frm_submit,
.eb-button-inner-wrapper {
  position: relative;
  width: fit-content;
}

.frm_button_submit,
.eb-button-anchor {
  background-color: unset !important;
  color: black !important;
  border: unset !important;
  padding: 1.875rem 0.9375rem 1.875rem 0.9375rem;
}

.frm_button_submit::after,
.eb-button-anchor::after {
  background-image: url("/wp-content/uploads/2024/10/Pfad-27.svg");
  content: "";
  height: 1.875rem;
  width: 6.9375rem;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  transition: 0.3s;
}

.frm_button_submit:hover::after,
.eb-button-anchor:hover::after {
  bottom: 0.4375rem;
  right: 0.4375rem;
  transition: 0.3s;
}

.frm_button_submit::before,
.eb-button-anchor::before {
  background-image: url(/wp-content/uploads/2024/10/Pfad-26.svg);
  content: "";
  height: 1.875rem;
  width: 6.9375rem;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: 0.3s;
  opacity: 0;
}

.frm_button_submit:hover::before,
.eb-button-anchor:hover::before {
  top: 0.4375rem;
  left: 0.4375rem;
  transition: 0.3s;
  opacity: 1;
}

/*Kontaktformular*/
.with_frm_style .frm_checkbox input[type=checkbox] {
  height: 2.5rem !important;
  width: 2.5rem !important;
  border-color: white !important;
  margin-right: 0.625rem !important;
}

.frm_checkbox label {
  display: flex !important;
  align-items: center;
}

.frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):checked {
  background-color: white !important;
  border-color: #009fe3 !important;
}

label[id=field_eh96s_label],
label[id=field_eh96s2_label] {
  border: 1px solid black !important;
  padding-left: 1.25rem !important;
  position: relative !important;
}

label[id=field_eh96s_label]::after,
label[id=field_eh96s2_label]::after {
  content: url(/wp-content/uploads/2024/10/Path-1119-1.svg);
  position: absolute;
  height: unset;
  width: unset;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
}

.frm_forms.with_frm_style .frm_checkbox input[type=checkbox]:before {
  background-image: url(/wp-content/uploads/2024/11/Pfeil_Kontaktformular-1-1.svg) !important;
  width: 1.5625rem !important;
  height: 2.375rem !important;
  background-size: 1.5625rem !important;
  margin: auto !important;
}

.with_frm_style .frm_dropzone {
  background-color: transparent !important;
}

.dz-message {
  display: none !important;
}

.dz-preview {
  background-color: white !important;
}

/*  Hover Slider */
.eb-gallery-img-content {
  transition: width 0.5s ease;
}

.eb-gallery-img-wrapper.eb-image-gallery-zgbxp.grid {
  flex-wrap: nowrap !important;
}

@media only screen and (max-width: 800px) {
  .arrow-devider.show-on-mobile img {
    max-width: 80% !important;
    margin-left: -0.1875rem;
  }
}
/* Slider */
.slider-karriere {
  position: relative;
  width: auto;
}

.slider-karriere .eb-slider-item {
  position: relative;
  /* margin-bottom: 20px; */
}

.slider-karriere .eb-slider-content {
  position: absolute;
  left: 6.25rem;
  z-index: 5;
}

.slider-karriere .eb-slider-title {
  max-width: 33vw;
  display: inline-block;
  margin-bottom: 1.875rem;
}

.slider-karriere .eb-slider-subtitle {
  font-size: 1vw;
  max-width: 33vw;
  display: inline-block;
}

@media only screen and (min-width: 1024px) and (max-width: 1480px) {
  .slider-karriere .eb-slider-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.625rem;
  }
}
/*  Stellen aufklappen */
.stelle-beschreibung {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.4s ease-in;
}

.stelle-beschreibung.show {
  max-height: 125rem;
}

.fade {
  opacity: 1;
  visibility: visible;
}

.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.arrow-svg-up {
  stroke: #009FE3;
}

.arrow-svg-down {
  stroke: #009FE3;
  transition: stroke-width 0.1s;
}

.arrow-svg-down.thicker-arrow {
  stroke-width: 0.1875rem;
}

.box-svg-down {
  stroke: #000;
  stroke-width: 1px;
  transition: stroke-width 0.1s;
}

.box-svg-down.thicker-border {
  stroke-width: 0.1875rem;
}

/* Seite Kontakt Standorte auswählen */
.dropdown-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.dropdown {
  width: 22%;
  min-width: 11.25rem;
}

@media (max-width: 1024px) {
  .eb-slider-wrapper.eb-slider-geoxq .slick-slide > * {
    padding: 0.3125rem;
  }
  .dropdown {
    width: 31%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .dropdown {
    width: 47%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .dropdown {
    width: 100%;
    justify-content: center;
  }
}
.dropdown select {
  width: 100%;
  padding: 0.625rem;
  font-size: 1rem;
}

.hidden {
  display: none;
}

@media (max-width: 800px) {
  footer .wp-image-145 {
    min-width: 11.25rem !important;
  }
  .mobile-hidden {
    display: none;
  }
}
.content-container {
  margin-top: 1.25rem;
}

#KONTAKTAUFNAHME,
#frm_form_3_container,
#geschichte h2 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

/* Seite Leistung Slider */
/* Stellt sicher, dass die Bilder im Slider die volle Breite des Containers nutzen */
.footer-desktop .wp-block-navigation-item__label,
.footer-desktop strong {
  text-transform: uppercase;
}

.wp-block-navigation .wp-block-navigation-item__content {
  display: block ruby;
}

.circleSlick:before {
  display: none;
}

.page-id-2628 .entry-content a,
.page-id-2628 .entry-content a:visited,
.page-id-53 .entry-content a,
.page-id-53 .entry-content a:visited {
  color: #009FE3;
}

.privacy-policy p {
  max-width: 97vw;
}

main .privacy-policy a {
  /* display: inline-block;*/
  overflow-wrap: break-word;
  word-break: break-all;
  color: #009FE3;
}

.page-id-55 main h1::after,
.page-id-55 main h2::after,
.page-id-2600 main h1::after,
.page-id-2600 main h2::after,
.page-id-2657 main h1::after,
.page-id-2657 main h2::after,
.page-id-6670 main h1::after,
.page-id-6670 main h2::after,
.page-id-6691 main h1::after,
.page-id-6691 main h2::after {
  background-image: url("https://bfc.unit08.dev/wp-content/uploads/2024/11/Path-26.svg");
}

.esg_saving_mobile {
  display: none;
}

.esg_saving_desktop {
  display: block;
}

.esg_saving_potential {
  position: absolute;
  right: 5%;
  top: -10%;
  max-width: 25vw;
}

.esg_pdf_download .eb-button-anchor {
  display: block !important;
  text-align: left !important;
  position: relative;
  border: 1px solid black !important;
  padding-left: 1.25rem !important;
  width: 14.375rem;
}

.esg_pdf_download .eb-button-anchor:after {
  background-image: unset;
  content: url("https://bfc.unit08.dev/wp-content/uploads/2024/10/Path-1119-1.svg");
  position: absolute;
  height: unset;
  width: unset;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
}

.esg_pdf_download:hover .eb-button-anchor:after {
  right: 4%;
}

.esg_pdf_download .eb-button-anchor:before {
  content: unset;
  height: 0px;
}

@media only screen and (max-width: 800px) {
  .esg_saving_potential {
    right: 0%;
    top: -10%;
    max-width: 100vw;
  }
  .esg_ressourcefriendly-title {
    margin-top: 6.25rem !important;
  }
  .esg_saving_mobile {
    display: block;
  }
  .esg_saving_desktop {
    display: none;
  }
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 300 900;
  font-display: block;
  src: url("https://bfc-profile.com/wp-content/themes/twentytwentyfour/assets/fonts/inter/Inter-VariableFont_slnt,wght.woff2") format("woff2");
  font-stretch: normal;
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("https://bfc-profile.com/wp-content/uploads/fonts/NotoSans-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("https://bfc-profile.com/wp-content/uploads/fonts/NotoSans-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("https://bfc-profile.com/wp-content/uploads/fonts/NotoSans-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("https://bfc-profile.com/wp-content/uploads/fonts/NotoSans-Regular.ttf") format("truetype");
}
.footer-arrow {
  position: absolute;
  left: 0;
}

.footer-mobile {
  display: none;
}

@media (max-width: 850px) {
  .footer-desktop {
    display: none;
  }
  .footer-mobile {
    display: block;
    padding: 1rem;
  }
}
.footer-arrows {
  width: 88vw;
}

.wp-image-149 {
  max-width: 2.3125rem !important;
}

@media (min-width: 2700px) {
  .counter-zahl1,
  .counter-zahl2,
  .counter-zahl3 {
    font-size: 8.3125rem !important;
  }
}
.frontpage-stage {
  position: relative;
}

.frontpage-stage-content-mobile {
  display: block !important;
}

#wp--skip-link--target .wp-block-group.frontpage-stage-content.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained {
  margin-left: -1rem !important;
}

.only-mobile.frontpage-stage .frontpage-stage-content-mobile {
  display: block;
}

.frontpage-stage-content .wp-block-group.only-mobile {
  max-width: 100vw !important;
}

.frontpage-stage-content .stage-text-slider-mobile.slick-slider {
  max-width: 100vw !important;
}

.rollschneideverfahren-slider-container .rollschneideverfahren-slider_desktop {
  max-height: 28.875rem;
}

.rollschneideverfahren-slider-container .rollschneideverfahren-slider_desktop .eb-slider-wrapper.eb-slider-m2naf .slick-slide > * {
  padding: 0 4vw !important;
}

@media only screen and (max-width: 1300px) {
  .wp-block-cover .stage-textcontent {
    padding-left: 2rem;
    margin-top: 6.875rem;
    font-size: 1.25rem;
  }
  .wp-block-cover .wp-image-7152,
  .wp-block-cover .wp-image-7153,
  .wp-block-cover .wp-image-7154,
  .wp-block-cover .wp-image-7155 {
    object-position: 100% 50%;
    margin-top: 6.875rem;
    height: 18.75rem;
  }
}
@media only screen and (min-width: 1301px) and (max-width: 1800px) {
  .stage-textcontent {
    padding-left: 8.75rem;
  }
}
@media only screen and (min-width: 1801px) {
  .stage-textcontent {
    padding-left: 12.5rem;
  }
}
.stage-textcontent p {
  padding: 2rem 2rem 2rem 0;
  margin-right: 33%;
}

.only-mobile .stage-textcontent {
  padding-left: var(--wp--style--root--padding-left);
  padding-right: var(--wp--style--root--padding-right);
}

.anfahrt-novisible {
  display: none;
}

@media screen and (max-width: 1800px) {
  .stage-content-arrow {
    width: 50vw;
  }
  .stage-textcontent-arrow {
    width: 90vw;
  }
}
@media (max-width: 1000px) {
  .stage-textcontent p {
    padding: 0 2rem;
    margin-right: 0;
  }
  .profil-hover-nomobile {
    display: none;
  }
  .klemmprofil-nomobile {
    display: none;
  }
}
@media (min-width: 785px) {
  .klemmprofil-nodesktop {
    display: none;
  }
}
.dienstleistung-plus-nodesktop {
  padding-left: 1.25rem !important;
  padding-right: 1.5625rem !important;
}

@media (max-width: 1000px) {
  .dienstleistung-plus-nomobile {
    display: none;
  }
}
@media (min-width: 1000px) {
  .dienstleistung-plus-nodesktop {
    display: none;
  }
}
.rollschneideverfahren-slider {
  display: block;
  border-bottom: 1px solid black;
  border-top: 1px solid black;
  overflow: hidden;
  margin-left: var(--wp--style--root--padding-left) !important;
  max-width: 100vw;
}

.rollschneideverfahren-slider .rollschneideverfahren-image {
  padding-left: 10rem;
}

.rollschneideverfahren-slider .slick-slider .slick-slide img.eb-slider-image {
  object-fit: fill;
}

.rollschneideverfahren-slider-container_mobil {
  width: 100%;
}

@media (min-width: 700px) {
  .rollschneideverfahren-slider-container_mobil {
    display: none;
  }
}
@media (max-width: 700px) {
  .rollschneideverfahren-slider_desktop {
    display: none;
  }
}
@media (min-width: 1000px) {
  .slider_schaetzen {
    display: none;
  }
}
@media (max-width: 1000px) {
  .slider_schaetzen_desktop {
    display: none !important;
  }
}
@media (min-width: 700px) {
  .wickeln_mobil {
    display: none;
  }
}
@media (max-width: 700px) {
  .wickeln_Desktop {
    display: none;
  }
  .wickeln_mobil {
    padding-left: 2.5rem !important;
    padding-right: 2.8125rem !important;
  }
}
.slider_schaetzen .eb-slider-type-content ul.slick-dots li button:before {
  content: "";
  font-size: 4rem;
  height: 0.5rem;
  background: #009FE3 !important;
  top: 30%;
  width: 100%;
}

.slider_schaetzen ul.slick-dots li {
  width: 100%;
  margin-right: 0 !important;
}

.slider_schaetzen .eb-slider-type-content ul.slick-dots {
  /* background: #F0F0F0; */
  width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .root-eb-slider-wc7dz {
    z-index: 1;
  }
}
#header-menu .wp-block-navigation__container a:hover {
  border-bottom: 1px solid #009fe3;
  width: 100%;
}

:root :where(.wp-block-navigation a:where(:not(.wp-element-button)):hover) {
  text-decoration: unset;
}

footer .wp-block-navigation-item__content:hover {
  padding-bottom: 0.25rem !important;
  border-bottom: 1px solid black;
  width: 100%;
}

.btnNav .nextArrow,
.btnNav .prevArrow {
  background-color: transparent;
}

#header-menu .wpml-langauge-selection .wp-block-navigation-item[data-wpml=language-item]:first-of-type {
  margin: 0 !important;
}

#header-menu .wp-block-site-logo .custom-logo-link img.custom-logo.animate-logo {
  animation: growShrink 3s ease forwards;
}

@media screen and (max-width: 1000px) {
  #header-menu .wp-block-site-logo .custom-logo-link img.custom-logo.animate-logo {
    animation: growShrinkMobile 3s ease forwards;
  }
}
#header-menu .wp-block-navigation__container a:hover {
  color: #009fe3;
}

@keyframes growShrink {
  0% {
    width: 6.2rem;
  }
  10% {
    width: 20rem;
  }
  60% {
    width: 20rem;
  }
  75% {
    width: 20.5rem;
  }
  100% {
    width: 6.2rem;
  }
}
@keyframes growShrinkMobile {
  0% {
    width: 6.2rem;
  }
  10% {
    width: min(12rem, 50vw);
  }
  60% {
    width: min(12rem, 50vw);
  }
  75% {
    width: min(12.5rem, 52vw);
  }
  100% {
    width: 6.2rem;
  }
}
#header-menu .header_searchbar {
  overflow: visible;
}

.logo-margin-right {
  margin-right: 3.125rem !important;
}

.mobile-header-language-selector {
  margin-top: 0.3125rem !important;
}

.header-mobile {
  display: none;
}

.wp-block-navigation__submenu-icon {
  display: none !important;
}

.wpml-language-switcher-block .wp-block-navigation-item {
  padding-bottom: 0;
}

@media (max-width: 1300px) {
  header .wp-container-content-4.wp-block-search__button-only:not(.wp-block-search__searchfield-hidden) .wp-block-search__inside-wrapper::before {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" aria-hidden="true" focusable="false"><path d="m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z"></path></svg>');
    background-size: contain;
  }
  #modal-6 .wp-block-navigation__container.has-text-color.has-x-large-font-size.is-responsive.items-justified-left.wp-block-navigation {
    margin-top: 0.625rem;
  }
  #modal-6 .has-x-large-font-size.wp-block-navigation-item.current-menu-item.wp-block-navigation-link {
    color: #009FE3 !important;
  }
  header .wp-container-content-4.wp-block-search__button-only:not(.wp-block-search__searchfield-hidden) .wp-block-search__inside-wrapper {
    margin-right: -2.1875rem;
  }
  input#wp-block-search__input-5 {
    margin-right: 0.625rem;
    padding-left: 2.1875rem;
  }
  .wp-container-core-group-is-layout-8 {
    gap: 0;
  }
  .header-desktop {
    display: none;
  }
  .leistungen-stage-text {
    padding-left: 3rem !important;
  }
  .header-mobile {
    display: block;
  }
  .cover-stage-text-slider {
    max-height: 50vh !important;
    min-height: 40vh !important;
  }
  .sliderCon2 {
    display: none !important;
  }
  .mobile-h80 {
    max-height: 80vh !important;
    min-height: 80vh !important;
  }
  .mobile-h75 {
    max-height: 75vh !important;
    min-height: 75vh !important;
  }
  .hideMobile {
    display: none;
  }
}
@media (min-width: 1301px) {
  .wp-block-navigation__submenu-container.has-text-color.has-background.has-custom-black-background-color.wp-block-navigation-submenu {
    width: max-content;
  }
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none !important;
  }
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block !important;
  }
}
@media (min-width: 600px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: flex;
  }
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }
}
.wp-block-search__button svg,
.wp-block-navigation__responsive-container-close {
  color: white;
}

.results_searchbar .wp-block-search__button svg {
  color: black;
}

div#modal-2 a {
  word-break: keep-all;
}

@media (max-width: 1024px) {
  .slider-karriere .eb-slider-item {
    position: relative;
    overflow: hidden;
  }
  .slider-karriere .eb-slider-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, rgb(0, 159, 227) 50%, rgba(0, 159, 227, 0.8) 52.5%, rgba(0, 159, 227, 0.2) 55%, transparent 100%);
    z-index: 0;
  }
  .slider-karriere .eb-slider-subtitle {
    position: relative;
    max-width: 100% !important;
    width: 100%;
    text-align: left;
    color: white;
    z-index: 3;
    margin-top: 10%;
  }
}
.wp-block-essential-blocks-slider .eb-slider-init .slick-list {
  width: 100% !important;
}

.karriere-mobile-slider-benefits img {
  width: 6.875rem !important;
  height: auto !important;
}

.karriere-mobile-slider-benefits .slick-prev,
.karriere-mobile-slider-benefits .slick-next {
  background: none;
  /* Entfernt den Standardhintergrund */
  border: none;
  /* Entfernt den Rahmen */
  padding: 0;
  /* Entfernt das Padding */
  z-index: 1;
  /* Sicherstellen, dass die Buttons sichtbar sind */
  width: 2.5rem;
  /* Breite des Bildes */
  height: 2.5rem;
  /* Höhe des Bildes */
  position: absolute;
}

.karriere-mobile-slider-benefits .slick-prev {
  top: calc(100% + 1.25rem);
  left: 0.9375rem !important;
  background-image: url("/wp-content/uploads/2024/10/Gruppe-328.svg");
  /* Bild für den Zurück-Button */
  background-size: contain;
  /* Größe anpassen */
  background-repeat: no-repeat;
  /* Keine Wiederholung */
}

.karriere-mobile-slider-benefits .slick-next {
  top: calc(100% + 1.25rem);
  left: 4.6875rem;
  background-image: url("/wp-content/uploads/2024/10/Gruppe-327.svg");
  /* Bild für den Weiter-Button */
  background-size: contain;
  background-repeat: no-repeat;
}

/* Alte Pfeile ausblenden */
.karriere-mobile-slider-benefits .slick-prev::before,
.karriere-mobile-slider-benefits .slick-next::before {
  content: none;
  /* Entfernt den Standard-Inhalt der Pfeile */
}

.karriere-mobile-slider-benefits {
  display: none;
}

.karriere-mobile-slider-benefits .eb-slider-item {
  min-height: 21.25rem;
}

.karriere-mobile-slider-benefits .fas {
  display: none;
}

@media (max-width: 800px) {
  .karriere-mobile-slider-benefits {
    display: block;
  }
  .karriere-desktop-benefits {
    display: none;
  }
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding-top: calc(2rem + 3rem);
}

/* Header */
header {
  position: fixed;
  z-index: 9;
  top: 0;
  width: 100%;
}

/* Karte */
@media only screen and (min-width: 800px) {
  .btnNav {
    display: none;
  }
  .show-on-mobile {
    display: none !important;
  }
  .hide-on-mobile {
    display: block;
  }
}
@media only screen and (max-width: 800px) {
  .hide-on-mobile {
    display: none;
  }
  .arrow-devider.show-on-mobile {
    display: block;
    width: 115%;
  }
  .arrow-devider.show-on-mobile img {
    max-width: 115%;
  }
  .standort_informationen_div3 b {
    font-weight: bold;
  }
  .standort.active {
    background: #009fe3;
  }
  .btnNav {
    position: relative;
    width: 90%;
    display: block;
    margin-bottom: 1.875rem;
    margin-top: 0.625rem !important;
  }
  .btnNav .prevArrow,
  .btnNav .nextArrow {
    border: 0;
    padding: 1px 0.375rem 1px 0px;
    margin: 0 !important;
  }
  .entry-content.wp-block-post-content.has-global-padding.is-layout-constrained.wp-block-post-content-is-layout-constrained {
    margin-bottom: 0px;
  }
  .interactive-image-container {
    overflow: visible;
    background: #ededed;
  }
  .standort_informationen.active {
    z-index: 1;
    background: white;
  }
  .standort_informationen {
    opacity: 1;
    display: none;
    position: relative;
    width: 100%;
    overflow: visible;
    height: 100%;
    padding-bottom: 0.3125rem;
  }
  .standort_informationen_div1 strong {
    font-size: 3rem;
    font-weight: bold;
  }
  .standort_informationen_div1 {
    padding: 0 1.25rem 0.625rem 6.5%;
  }
  .standort_informationen_div2 {
    width: 87.3%;
    height: 0.125rem;
    margin: auto;
    background-color: black;
  }
  .standort_informationen_div3 {
    padding: 0.9375rem 0px 0px 6.5%;
  }
  .standort_informationen_div3 span {
    font-weight: bold;
    font-size: 1.25rem;
  }
  .standort_container {
    width: 90%;
    margin: auto;
    display: block;
    background: white;
    position: relative;
  }
}
/* Case Study  */
.cs-block2 {
  opacity: 0.6;
  padding-left: 1.875rem;
}

.cs-block1 {
  padding-right: 1.875rem;
}

.cs-block1 > p,
.cs-block2 > p {
  padding: 1.875rem 0;
  font-weight: bold;
}

.cs-block1 img,
.cs-block2 img {
  object-fit: cover;
  max-height: 12.5rem;
  padding: 1.25rem;
}

.cs-block1 hr,
.cs-block2 hr {
  border-width: 0 0 0.125rem 0;
}

.cs-arrow {
  width: 5rem;
  cursor: pointer;
  float: right;
}

.cs-arrowText {
  width: auto;
  float: right;
  height: 5.625rem;
  padding-top: 1.875rem;
}

.custom-post-content-arrows:not(.cs-main) {
  display: none;
}

@media only screen and (max-width: 500px) {
  .standort_informationen_div1 strong {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .standort_informationen_div3 {
    padding: 0.5rem 0px 0px 6.5%;
  }
  .standort_informationen_div3 {
    font-size: 0.875rem;
  }
  .standort_informationen_div1 {
    padding: 0 0.625rem 0.3125rem 6.5%;
  }
}
@media (max-width: 981px) {
  .cs-arrow {
    width: unset;
    margin-right: 0.3125rem;
    margin-left: 0.3125rem;
  }
  .cs-block1 > p,
  .cs-block2 > p {
    padding-bottom: 0.3125rem;
  }
  .box2 {
    padding-top: 0.3125rem;
  }
  .slick-active .cs-block1 .animate__animated {
    margin-top: 1.875rem !important;
  }
  .cs-block1 figure,
  .cs-block2 figure {
    height: 100%;
  }
  .cs-block1 img,
  .cs-block2 img {
    padding: 0px;
    width: 100%;
    height: 100%;
  }
  .custom-post-content.slick-initialized.slick-slider .cs-block1 .wp-block-column:first-child,
  .custom-post-content.slick-initialized.slick-slider .cs-block2 .wp-block-column:first-child {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .cs-block1,
  .cs-block2 {
    padding: 0;
  }
  .topTitle {
    padding-left: 0;
  }
}
.topTitle:after {
  right: 0px !important;
}

.activeNavi {
  display: block !important;
  min-height: 0%;
  /* -webkit-animation-name: naviFadeIn!important;
  -webkit-animation-duration: 5s!important;
  animation-name: naviFadeIn!important;
  animation-duration: 5s!important;
  	 transition: min-height 1s ease-in;*/
}

.wp-block-navigation .wp-block-navigation-item {
  margin-right: 1.5625rem;
}

.wp-block-navigation-item[data-wpml=current-language-item] span {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #009fe3;
  font-size: 1rem;
}

.wp-block-navigation__submenu-container.has-text-color.has-background.has-custom-black-background-color.wp-block-navigation-submenu {
  right: unset;
}

.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
  font-size: 1rem;
}

.wp-block-navigation-item.current-menu-item.wp-block-navigation-link {
  color: inherit !important;
}

.wpml-language-switcher-block ul.isHorizontal li {
  /* display: inline; */
  display: block;
  float: left;
  padding: 0 0.625rem;
}

.wp-block-navigation-item {
  padding-right: 0.625rem;
}

.wpml-language-switcher-block ul.hasSpacing.isHorizontal li:not(:last-child) {
  margin-right: 0 !important;
}

#header-menu .wpml-langauge-selection .horizontal-list li:not(:last-child) {
  display: block;
  float: left;
  border-right: 1px solid white;
}

.wpml-language-switcher-block ul.horizontal-list {
  display: block !important;
}

#wp-block-search__input-3 {
  padding-left: 2.1875rem;
}

.wp-block-search__button-only:not(.wp-block-search__searchfield-hidden) button {
  display: none;
}

.wp-block-search__searchfield-hidden .preSearch {
  display: none !important;
}

.wp-block-search__inside-wrapper {
  position: relative;
}

.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper::before {
  display: none !important;
}

header .wp-block-search__inside-wrapper::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 0.625rem;
  /* Adjust spacing to position the icon */
  top: 50%;
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" aria-hidden="true" focusable="false"><path d="m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z"></path></svg>');
  background-size: contain;
}

@media (min-width: 1300px) {
  footer .wp-block-navigation-item.wp-block-navigation-link a {
    font-size: 1rem !important;
    padding-bottom: 0.3125rem;
  }
}
@media (max-width: 1300px) {
  header .wp-block-navigation-item.wp-block-navigation-link a {
    font-size: 1.5rem !important;
  }
  .wp-block-navigation__responsive-container-close {
    top: 0px;
  }
  body .is-layout-flex.wpml-language-switcher-block {
    display: none;
  }
  .wp-block-site-logo {
    z-index: 10000000000000000;
  }
  html.has-modal-open .wp-block-search__button-only {
    z-index: 99999999999999;
    position: relative;
    display: block !important;
    /*  right: 32px;*/
    top: 0.1875rem;
  }
  .wp-block-navigation__responsive-container {
    top: 1.25rem;
  }
  .has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog {
    margin-top: 0 !important;
  }
  html.has-modal-open .wpml-language-switcher-block {
    position: fixed;
    display: block;
    bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
    z-index: 10000000000000000000;
    transform: translate(-50%, -50%);
    left: 52%;
    width: 15.625rem !important;
  }
}
#modal-6 {
  padding-left: var(--wp--preset--spacing--10);
  padding-right: var(--wp--preset--spacing--10);
}

.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open {
  cursor: pointer;
}

nav.has-text-color.has-x-large-font-size.is-responsive.items-justified-left.wp-block-navigation.is-horizontal.is-content-justification-left.is-layout-flex.wp-container-core-navigation-is-layout-3.wp-block-navigation-is-layout-flex {
  cursor: pointer;
}

form.wp-block-search__button-only.wp-block-search__searchfield-hidden.wp-block-search__icon-button.header_searchbar.wp-block-search.wp-container-content-4 {
  cursor: pointer;
}

.kontakt-cover .dropdown-container .dropdown {
  position: relative;
}

.kontakt-cover .dropdown-container .dropdown select {
  background-color: white;
  border: 1px solid #1d2939;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
}

.kontakt-cover .dropdown-container .dropdown select option {
  font-family: "Noto Sans";
}

.kontakt-cover .dropdown-container .dropdown:after {
  content: url(../img/chevron_down.svg);
  display: flex;
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.dropdown-container select:focus {
  /* box-shadow: 0 0 0px 2px rgba(0, 159, 227, 0.8); */
  /* Starker Cyan-Schimmer */
  border: 1px solid #009fe3 !important;
  color: #009fe3;
  outline: none;
}

.dropdown-container select {
  color: #1d2939;
}

@media screen and (max-width: 480px) {
  .kontakt-cover .dropdown-container .dropdown:after {
    transform: rotate(-90deg) translateX(25%);
    right: 0.4375rem;
    top: 35%;
  }
}
#KONTAKTAUFNAHME .frm_opt_container label {
  display: flex;
  align-items: center;
  justify-content: left;
}

.stadt-beschreibung-container .stadt-beschreibung {
  max-width: 75% !important;
}

.entry-content .kontakt-cover {
  padding: 0;
}

/* quickfix world map background */
@media screen and (min-width: 480px) {
  .wp-image-4939 {
    object-fit: contain !important;
    object-position: center top;
    top: 0% !important;
  }
}
@media screen and (max-width: 479px) {
  .wp-image-4939 {
    object-fit: contain !important;
    object-position: center 12.5rem;
    top: 0 !important;
  }
}
#kontakt-dropdowns-content {
  margin-bottom: 4rem;
}

.certificates-header {
  margin: 4rem 0 2rem;
}

.leistungen-stage-text p {
  padding: 2rem 2rem 2rem 0;
  margin-right: 33%;
}

.leistungen-stage-content .only-mobile {
  padding: 2rem;
  margin-right: 33%;
}

.leistungen-stage-mobile {
  position: relative;
}

.only-mobile .leistungen-stage-text {
  padding-left: var(--wp--style--root--padding-left);
  padding-right: var(--wp--style--root--padding-right);
}

@media only screen and (max-width: 1300px) {
  .leistungen-stage-text {
    padding-left: 2rem;
    margin-top: 6.875rem;
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1301px) and (max-width: 1800px) {
  .leistungen-stage-text {
    padding-left: 8.75rem;
  }
}
@media only screen and (min-width: 1801px) {
  .leistungen-stage-text {
    padding-left: 12.5rem;
  }
}
#wp--skip-link--target .wp-block-group.leistungen-stage-content.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained {
  margin-left: -1rem !important;
}

.slider_leistung .slick-arrow .fas.fa-chevron-left,
.slider_leistung .slick-arrow .fas.fa-chevron-right {
  display: flex;
  transform: translateY(-35%);
}

.slider_leistung .slick-arrow .fas.fa-chevron-left:before {
  content: url("/wp-content/uploads/2024/10/Gruppe-328.svg");
}

.slider_leistung .slick-arrow .fas.fa-chevron-right:before {
  content: url("/wp-content/uploads/2024/10/Gruppe-327.svg");
}

.slider_leistung .eb-slider-item img.eb-slider-image {
  width: 100% !important;
  object-fit: fill !important;
}

.slider_leistung .eb-slider-item .eb-slider-content ul {
  list-style-type: none;
  /* Remove default bullets */
  padding-left: 0;
}

.slider_leistung .eb-slider-item .eb-slider-content ul li {
  position: relative;
  padding-left: 1.25rem;
}

.slider_leistung .eb-slider-item .eb-slider-content ul li::before {
  content: "+  ";
  /* Add the plus sign and some space */
  color: #000;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

.wp-block-list.dynamic-profile-list {
  list-style-type: none !important;
  /* Remove default bullets */
  padding-left: 0;
}

.wp-block-list.dynamic-profile-list li {
  position: relative;
  padding-left: 1.25rem;
}

.wp-block-list.dynamic-profile-list li::before {
  content: "+  ";
  /* Add the plus sign and some space */
  color: #000;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

.slider_leistung .eb-slider-type-content ul.slick-dots li button:before {
  content: "__";
  font-size: 4rem;
}

.eb-slider-wrapper.eb-slider-geoxq .slick-dots li {
  margin-right: 4% !important;
}

.slider_leistung .eb-slider-wrapper .eb-slider-type-content .eb-slider-item.content-3 .eb-slider-content {
  padding: 0 1.875rem 0 0;
}

.slick-list {
  width: 100% !important;
  margin: auto !important;
}

@media screen and (max-width: 1024px) {
  .spacing-only-desktop {
    display: none;
  }
  .slider_leistung .eb-slider-item {
    flex-flow: column wrap;
  }
  .slider_leistung .slick-prev {
    position: absolute;
    top: calc(100% + 3.75rem);
    left: 1.25rem !important;
  }
  .slider_leistung .slick-next {
    position: absolute;
    top: calc(100% + 3.75rem);
    left: 5.9375rem;
  }
  .slider_leistung .slick-dots {
    display: none !important;
  }
  .slider_leistung .eb-slider-content ul {
    margin-left: 0 !important;
  }
  .slider_leistung .slick-arrow .fas.fa-chevron-left:before {
    margin-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .slider_leistung .eb-slider-wrapper .eb-slider-type-content .eb-slider-item.content-3 .eb-slider-content ul {
    padding: 0 1.875rem 0 1.875rem;
    margin-left: 1.875rem !important;
  }
}
.slider_leistung .eb-slider-wrapper .eb-slider-type-content .eb-slider-item.content-3 .eb-slider-content ul {
  margin-left: -1.875rem;
}

.eb-accordion-title-wrapper.active .eb-accordion-title,
.eb-accordion-wrapper:not(.eb-accordion-hidden) .eb-accordion-title {
  color: #009FE3 !important;
}

.eb-accordion-title-wrapper.active .eb-accordion-icon,
.eb-accordion-wrapper:not(.eb-accordion-hidden) .eb-accordion-icon {
  transform: rotate(180deg);
}

.eb-accordion-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url("/wp-content/uploads/2024/10/Group-654.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.fa-angle-right:before,
.fa-angle-down:before {
  content: "";
}

#staticthreesixtywrapper {
  display: none;
}

/*
.leichtbauweise{
	margin: 0 8vw;
}
*/
@media screen and (max-width: 1200px) {
  #ANWENDUNGSBEREICHE {
    padding-right: 0.625rem;
  }
  /*
   #LEICHTBAUWEISE, #PROZESSS-KNOW-HOW, .page-id-28 h1 {
     padding-left: 32px;
   }
  */
  #PRODUKTWELT h2,
  #LEICHTBAUWEISE h2 {
    padding-left: 0.625rem;
  }
}
.eb-slider-wrapper .slick-next,
.eb-slider-wrapper .slick-prev {
  z-index: inherit;
}

.threesixty.prev:hover,
.threesixty.next:hover {
  cursor: pointer;
}

.threesixty.prev::before,
.threesixty.next::before {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 1.25rem;
  position: relative;
  top: 1px;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 1.25rem;
}

.threesixty.next:before {
  left: -0.125rem;
  transform: rotate(45deg);
}

.threesixty.prev:before {
  left: 0.125rem;
  transform: rotate(-135deg);
}

.threesixty.controls {
  display: flex;
  margin: 0 auto;
  width: 100%;
  justify-content: end;
  position: relative;
  top: -5rem;
}

.threesixty-circle {
  /* background: #456BD9; */
  border: 1px solid #000;
  border-radius: 50%;
  height: 1.375rem;
  width: 1.375rem;
}

.accordion-threesixty .eb-accordion-title-wrapper {
  background-color: #FFF !important;
  border-bottom: 1px solid;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.accordion-threesixty .eb-accordion-content {
  border: none !important;
  padding-left: 0 !important;
  color: #FFF;
}

.accordion-threesixty .threesixty-wrapper {
  margin-left: auto;
  cursor: pointer;
}

.accordion-threesixty .eb-accordion-icon,
.global-accordion .eb-accordion-icon {
  text-align: center;
  color: var(--eb-global-primary-color);
  font-size: 2.5rem !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  display: inline-block;
  background-image: url("/wp-content/uploads/2024/10/Group-654.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.accordion-threesixty .eb-accordion-title-wrapper {
  display: flex;
  align-items: center;
  /* Gleiche Höhe */
  gap: 1.25rem;
  /* Abstand zwischen Pfeil und Text */
}

.accordion-threesixty .eb-accordion-icon-wrapper {
  display: flex;
  /* Damit der Icon-Wrapper das Flex-Verhalten behält */
  align-items: center;
  /* Vertikal ausrichten */
}

@media screen and (max-width: 500px) {
  .threesixty-wrapper {
    width: 21.875rem !important;
    height: 21.875rem !important;
    margin-left: auto;
    margin-right: auto;
  }
  .threesixty-wrapper .threesixty.controls {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .threesixty-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 701px) {
  .threesixty-wrapper {
    position: relative;
    top: -2.1875rem;
  }
}
@media screen and (min-width: 941px) {
  .threesixty-wrapper {
    position: relative;
    top: -5.3125rem;
  }
}
@media screen and (min-width: 782px) and (max-width: 940px) {
  .threesixty-wrapper {
    width: 21.875rem !important;
    height: 21.875rem !important;
  }
}
.results_searchbar .wp-block-search__inside-wrapper {
  border: none;
  border-bottom: 1px solid black;
}

.results_search_horizotal_rule {
  width: 100%;
  height: 1px;
}

.searchresults {
  margin: 0 !important;
}

.results-container {
  max-width: var(--wp--style--global--content-size);
}

.searchresult-post-template li.wp-block-post.hentry {
  padding-bottom: 2rem;
  border-bottom: 1px solid black;
}

main .searchresult-post-template h2::after {
  content: none !important;
  background-image: none !important;
}

#header-menu form .wp-block-search__inside-wrapper input:focus-visible {
  outline: none;
}

.custom-post-content-arrows.top {
  display: flex !important;
  gap: 1.5rem;
  flex-direction: row;
  position: absolute;
  width: 100%;
  z-index: 9999;
}

.custom-post-content-arrows.top .prev {
  margin-left: auto;
}

#case_study_slider > .custom-post-content-arrows.top .next {
  margin-right: 1.5rem;
}

@media screen and (max-width: 780px) {
  .custom-post-content-arrows.top {
    position: relative;
  }
}
/*# sourceMappingURL=style.css.map */
