@import url(https://p.typekit.net/p.css?s=1&k=vto2aek&ht=tk&f=41078.41097.41109.41110.41111&a=55545474&app=typekit&e=css);
@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;
}

.container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x, .75rem);padding-left:var(--bs-gutter-x, .75rem);margin-right:auto;margin-left:auto}@media (min-width: 576px){.container,.container-sm{max-width:540px}}@media (min-width: 768px){.container,.container-sm,.container-md{max-width:720px}}@media (min-width: 992px){.container,.container-sm,.container-md,.container-lg{max-width:960px}}@media (min-width: 1200px){.container,.container-sm,.container-md,.container-lg,.container-xl{max-width:1140px}}@media (min-width: 1400px){.container,.container-sm,.container-md,.container-lg,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-primary: #0d6efd;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-primary-rgb: 13,110,253;--bs-secondary-rgb: 108,117,125;--bs-success-rgb: 25,135,84;--bs-info-rgb: 13,202,240;--bs-warning-rgb: 255,193,7;--bs-danger-rgb: 220,53,69;--bs-light-rgb: 248,249,250;--bs-dark-rgb: 33,37,41;--bs-white-rgb: 255,255,255;--bs-black-rgb: 0,0,0;--bs-body-color-rgb: 33,37,41;--bs-body-bg-rgb: 255,255,255;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0));--bs-body-font-family: var(--bs-font-sans-serif);--bs-body-font-size: 1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #212529;--bs-body-bg: #fff}*,*::before,*::after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width: 1200px){h1,.h1{font-size:2.5rem}}h2,.h2{font-size:calc(1.325rem + .9vw)}@media (min-width: 1200px){h2,.h2{font-size:2rem}}h3,.h3{font-size:calc(1.3rem + .6vw)}@media (min-width: 1200px){h3,.h3{font-size:1.75rem}}h4,.h4{font-size:calc(1.275rem + .3vw)}@media (min-width: 1200px){h4,.h4{font-size:1.5rem}}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-bs-original-title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small,.small{font-size:.875em}mark,.mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr /* rtl:ignore */;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role="button"]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.row{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.33333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.66667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333%}.col-2{flex:0 0 auto;width:16.66667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333%}.col-5{flex:0 0 auto;width:41.66667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333%}.col-8{flex:0 0 auto;width:66.66667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333%}.col-11{flex:0 0 auto;width:91.66667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}.g-0,.gx-0{--bs-gutter-x: 0}.g-0,.gy-0{--bs-gutter-y: 0}.g-1,.gx-1{--bs-gutter-x: .25rem}.g-1,.gy-1{--bs-gutter-y: .25rem}.g-2,.gx-2{--bs-gutter-x: .5rem}.g-2,.gy-2{--bs-gutter-y: .5rem}.g-3,.gx-3{--bs-gutter-x: 1rem}.g-3,.gy-3{--bs-gutter-y: 1rem}.g-4,.gx-4{--bs-gutter-x: 1.5rem}.g-4,.gy-4{--bs-gutter-y: 1.5rem}.g-5,.gx-5{--bs-gutter-x: 3rem}.g-5,.gy-5{--bs-gutter-y: 3rem}@media (min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.33333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.66667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333%}.col-sm-2{flex:0 0 auto;width:16.66667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333%}.col-sm-5{flex:0 0 auto;width:41.66667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333%}.col-sm-8{flex:0 0 auto;width:66.66667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333%}.col-sm-11{flex:0 0 auto;width:91.66667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}.g-sm-0,.gx-sm-0{--bs-gutter-x: 0}.g-sm-0,.gy-sm-0{--bs-gutter-y: 0}.g-sm-1,.gx-sm-1{--bs-gutter-x: .25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y: .25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x: .5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y: .5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y: 3rem}}@media (min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.33333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.66667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333%}.col-md-2{flex:0 0 auto;width:16.66667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333%}.col-md-5{flex:0 0 auto;width:41.66667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333%}.col-md-8{flex:0 0 auto;width:66.66667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333%}.col-md-11{flex:0 0 auto;width:91.66667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}.g-md-0,.gx-md-0{--bs-gutter-x: 0}.g-md-0,.gy-md-0{--bs-gutter-y: 0}.g-md-1,.gx-md-1{--bs-gutter-x: .25rem}.g-md-1,.gy-md-1{--bs-gutter-y: .25rem}.g-md-2,.gx-md-2{--bs-gutter-x: .5rem}.g-md-2,.gy-md-2{--bs-gutter-y: .5rem}.g-md-3,.gx-md-3{--bs-gutter-x: 1rem}.g-md-3,.gy-md-3{--bs-gutter-y: 1rem}.g-md-4,.gx-md-4{--bs-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x: 3rem}.g-md-5,.gy-md-5{--bs-gutter-y: 3rem}}@media (min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.33333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.66667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333%}.col-lg-2{flex:0 0 auto;width:16.66667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333%}.col-lg-5{flex:0 0 auto;width:41.66667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333%}.col-lg-8{flex:0 0 auto;width:66.66667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333%}.col-lg-11{flex:0 0 auto;width:91.66667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}.g-lg-0,.gx-lg-0{--bs-gutter-x: 0}.g-lg-0,.gy-lg-0{--bs-gutter-y: 0}.g-lg-1,.gx-lg-1{--bs-gutter-x: .25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y: .25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x: .5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y: .5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y: 3rem}}@media (min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.33333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.66667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333%}.col-xl-2{flex:0 0 auto;width:16.66667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333%}.col-xl-5{flex:0 0 auto;width:41.66667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333%}.col-xl-8{flex:0 0 auto;width:66.66667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333%}.col-xl-11{flex:0 0 auto;width:91.66667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}.g-xl-0,.gx-xl-0{--bs-gutter-x: 0}.g-xl-0,.gy-xl-0{--bs-gutter-y: 0}.g-xl-1,.gx-xl-1{--bs-gutter-x: .25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y: .25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x: .5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y: .5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y: 3rem}}@media (min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.66667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333%}.col-xxl-2{flex:0 0 auto;width:16.66667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333%}.col-xxl-5{flex:0 0 auto;width:41.66667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333%}.col-xxl-8{flex:0 0 auto;width:66.66667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333%}.col-xxl-11{flex:0 0 auto;width:91.66667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333%}.offset-xxl-2{margin-left:16.66667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333%}.offset-xxl-5{margin-left:41.66667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333%}.offset-xxl-8{margin-left:66.66667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333%}.offset-xxl-11{margin-left:91.66667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x: .25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y: .25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x: .5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y: .5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y: 3rem}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control,form input[type="text"],form input[type="email"],form select{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;appearance:none;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control,form input[type="text"],form input[type="email"],form select{transition:none}}.form-control[type="file"],form input[type="file"][type="text"],form input[type="file"][type="email"],form select[type="file"]{overflow:hidden}.form-control[type="file"]:not(:disabled):not([readonly]),form input[type="file"]:not(:disabled):not([readonly])[type="text"],form input[type="file"]:not(:disabled):not([readonly])[type="email"],form select[type="file"]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus,form input:focus[type="text"],form input:focus[type="email"],form select:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,0.25)}.form-control::-webkit-date-and-time-value,form input[type="text"]::-webkit-date-and-time-value,form input[type="email"]::-webkit-date-and-time-value,form select::-webkit-date-and-time-value{height:1.5em}.form-control::placeholder,form input[type="text"]::placeholder,form input[type="email"]::placeholder,form select::placeholder{color:#6c757d;opacity:1}.form-control:disabled,form input:disabled[type="text"],form input:disabled[type="email"],form select:disabled,.form-control[readonly],form input[readonly][type="text"],form input[readonly][type="email"],form select[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button,form input[type="text"]::file-selector-button,form input[type="email"]::file-selector-button,form select::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control::file-selector-button,form input[type="text"]::file-selector-button,form input[type="email"]::file-selector-button,form select::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button,form input[type="text"]:hover:not(:disabled):not([readonly])::file-selector-button,form input[type="email"]:hover:not(:disabled):not([readonly])::file-selector-button,form select:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button,form input[type="text"]::-webkit-file-upload-button,form input[type="email"]::-webkit-file-upload-button,form select::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control::-webkit-file-upload-button,form input[type="text"]::-webkit-file-upload-button,form input[type="email"]::-webkit-file-upload-button,form select::-webkit-file-upload-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,form input[type="text"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,form input[type="email"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,form select:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,0.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.3rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,0.25);appearance:none;color-adjust:exact}.form-check-input[type="checkbox"]{border-radius:.25em}.form-check-input[type="radio"]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,0.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type="checkbox"]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type="radio"]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type="checkbox"]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled] ~ .form-check-label,.form-check-input:disabled ~ .form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280,0,0,0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,form .btn-check[disabled]+button#active-now-submit,.wc-block-cart__submit-container .btn-check[disabled]+a,body.woocommerce-page .wc-block-checkout__actions_row .btn-check[disabled]+button,body.woocommerce-page .wc-block-components-totals-coupon__content form .btn-check[disabled]+button,body.woocommerce-page .summary.entry-summary form.cart .btn-check[disabled]+.single_add_to_cart_button,.btn-check:disabled+.btn,form .btn-check:disabled+button#active-now-submit,.wc-block-cart__submit-container .btn-check:disabled+a,body.woocommerce-page .wc-block-checkout__actions_row .btn-check:disabled+button,body.woocommerce-page .wc-block-components-totals-coupon__content form .btn-check:disabled+button,body.woocommerce-page .summary.entry-summary form.cart .btn-check:disabled+.single_add_to_cart_button{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,0.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,0.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,form .form-floating>input[type="text"],form .form-floating>input[type="email"],form .form-floating>select,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity 0.1s ease-in-out,transform 0.1s ease-in-out}@media (prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control,form .form-floating>input[type="text"],form .form-floating>input[type="email"],form .form-floating>select{padding:1rem .75rem}.form-floating>.form-control::placeholder,form .form-floating>input[type="text"]::placeholder,form .form-floating>input[type="email"]::placeholder,form .form-floating>select::placeholder{color:transparent}.form-floating>.form-control:focus,form .form-floating>input:focus[type="text"],form .form-floating>input:focus[type="email"],form .form-floating>select:focus,.form-floating>.form-control:not(:placeholder-shown),form .form-floating>input:not(:placeholder-shown)[type="text"],form .form-floating>input:not(:placeholder-shown)[type="email"],form .form-floating>select:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill,form .form-floating>input:-webkit-autofill[type="text"],form .form-floating>input:-webkit-autofill[type="email"],form .form-floating>select:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus ~ label,form .form-floating>input:focus[type="text"] ~ label,form .form-floating>input:focus[type="email"] ~ label,form .form-floating>select:focus ~ label,.form-floating>.form-control:not(:placeholder-shown) ~ label,form .form-floating>input:not(:placeholder-shown)[type="text"] ~ label,form .form-floating>input:not(:placeholder-shown)[type="email"] ~ label,form .form-floating>select:not(:placeholder-shown) ~ label,.form-floating>.form-select ~ label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:-webkit-autofill ~ label,form .form-floating>input:-webkit-autofill[type="text"] ~ label,form .form-floating>input:-webkit-autofill[type="email"] ~ label,form .form-floating>select:-webkit-autofill ~ label{opacity:.65;transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,form .input-group>input[type="text"],form .input-group>input[type="email"],form .input-group>select,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,form .input-group>input:focus[type="text"],form .input-group>input:focus[type="email"],form .input-group>select:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn,.input-group form button#active-now-submit,form .input-group button#active-now-submit,.input-group .wc-block-cart__submit-container a,.wc-block-cart__submit-container .input-group a,.input-group body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .input-group button,.input-group body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .input-group button,.input-group body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .input-group .single_add_to_cart_button{position:relative;z-index:2}.input-group .btn:focus,.input-group form button#active-now-submit:focus,form .input-group button#active-now-submit:focus,.input-group .wc-block-cart__submit-container a:focus,.wc-block-cart__submit-container .input-group a:focus,.input-group body.woocommerce-page .wc-block-checkout__actions_row button:focus,body.woocommerce-page .wc-block-checkout__actions_row .input-group button:focus,.input-group body.woocommerce-page .wc-block-components-totals-coupon__content form button:focus,body.woocommerce-page .wc-block-components-totals-coupon__content form .input-group button:focus,.input-group body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button:focus,body.woocommerce-page .summary.entry-summary form.cart .input-group .single_add_to_cart_button:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.form-control,form .input-group-lg>input[type="text"],form .input-group-lg>input[type="email"],form .input-group-lg>select,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn,form .input-group-lg>button#active-now-submit,.wc-block-cart__submit-container .input-group-lg>a,body.woocommerce-page .wc-block-checkout__actions_row .input-group-lg>button,body.woocommerce-page .wc-block-components-totals-coupon__content form .input-group-lg>button,body.woocommerce-page .summary.entry-summary form.cart .input-group-lg>.single_add_to_cart_button{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.form-control,form .input-group-sm>input[type="text"],form .input-group-sm>input[type="email"],form .input-group-sm>select,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn,form .input-group-sm>button#active-now-submit,.wc-block-cart__submit-container .input-group-sm>a,body.woocommerce-page .wc-block-checkout__actions_row .input-group-sm>button,body.woocommerce-page .wc-block-components-totals-coupon__content form .input-group-sm>button,body.woocommerce-page .summary.entry-summary form.cart .input-group-sm>.single_add_to_cart_button{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,0.9);border-radius:.25rem}.was-validated :valid ~ .valid-feedback,.was-validated :valid ~ .valid-tooltip,.is-valid ~ .valid-feedback,.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control:valid,.was-validated form input:valid[type="text"],form .was-validated input:valid[type="text"],.was-validated form input:valid[type="email"],form .was-validated input:valid[type="email"],.was-validated form select:valid,form .was-validated select:valid,.form-control.is-valid,form input.is-valid[type="text"],form input.is-valid[type="email"],form select.is-valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.was-validated form input:valid:focus[type="text"],form .was-validated input:valid:focus[type="text"],.was-validated form input:valid:focus[type="email"],form .was-validated input:valid:focus[type="email"],.was-validated form select:valid:focus,form .was-validated select:valid:focus,.form-control.is-valid:focus,form input.is-valid:focus[type="text"],form input.is-valid:focus[type="email"],form select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,0.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#198754}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,0.25)}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#198754}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#198754}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,0.25)}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#198754}.form-check-inline .form-check-input ~ .valid-feedback{margin-left:.5em}.was-validated .input-group .form-control:valid,.was-validated .input-group form input:valid[type="text"],form .was-validated .input-group input:valid[type="text"],.was-validated .input-group form input:valid[type="email"],form .was-validated .input-group input:valid[type="email"],.was-validated .input-group form select:valid,form .was-validated .input-group select:valid,.input-group .form-control.is-valid,.input-group form input.is-valid[type="text"],form .input-group input.is-valid[type="text"],.input-group form input.is-valid[type="email"],form .input-group input.is-valid[type="email"],.input-group form select.is-valid,form .input-group select.is-valid,.was-validated .input-group .form-select:valid,.input-group .form-select.is-valid{z-index:1}.was-validated .input-group .form-control:valid:focus,.was-validated .input-group form input:valid:focus[type="text"],form .was-validated .input-group input:valid:focus[type="text"],.was-validated .input-group form input:valid:focus[type="email"],form .was-validated .input-group input:valid:focus[type="email"],.was-validated .input-group form select:valid:focus,form .was-validated .input-group select:valid:focus,.input-group .form-control.is-valid:focus,.input-group form input.is-valid:focus[type="text"],form .input-group input.is-valid:focus[type="text"],.input-group form input.is-valid:focus[type="email"],form .input-group input.is-valid:focus[type="email"],.input-group form select.is-valid:focus,form .input-group select.is-valid:focus,.was-validated .input-group .form-select:valid:focus,.input-group .form-select.is-valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:.25rem}.was-validated :invalid ~ .invalid-feedback,.was-validated :invalid ~ .invalid-tooltip,.is-invalid ~ .invalid-feedback,.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control:invalid,.was-validated form input:invalid[type="text"],form .was-validated input:invalid[type="text"],.was-validated form input:invalid[type="email"],form .was-validated input:invalid[type="email"],.was-validated form select:invalid,form .was-validated select:invalid,.form-control.is-invalid,form input.is-invalid[type="text"],form input.is-invalid[type="email"],form select.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:invalid:focus,.was-validated form input:invalid:focus[type="text"],form .was-validated input:invalid:focus[type="text"],.was-validated form input:invalid:focus[type="email"],form .was-validated input:invalid:focus[type="email"],.was-validated form select:invalid:focus,form .was-validated select:invalid:focus,.form-control.is-invalid:focus,form input.is-invalid:focus[type="text"],form input.is-invalid:focus[type="email"],form select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,0.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#dc3545}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,0.25)}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#dc3545}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,0.25)}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.form-check-inline .form-check-input ~ .invalid-feedback{margin-left:.5em}.was-validated .input-group .form-control:invalid,.was-validated .input-group form input:invalid[type="text"],form .was-validated .input-group input:invalid[type="text"],.was-validated .input-group form input:invalid[type="email"],form .was-validated .input-group input:invalid[type="email"],.was-validated .input-group form select:invalid,form .was-validated .input-group select:invalid,.input-group .form-control.is-invalid,.input-group form input.is-invalid[type="text"],form .input-group input.is-invalid[type="text"],.input-group form input.is-invalid[type="email"],form .input-group input.is-invalid[type="email"],.input-group form select.is-invalid,form .input-group select.is-invalid,.was-validated .input-group .form-select:invalid,.input-group .form-select.is-invalid{z-index:2}.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group form input:invalid:focus[type="text"],form .was-validated .input-group input:invalid:focus[type="text"],.was-validated .input-group form input:invalid:focus[type="email"],form .was-validated .input-group input:invalid:focus[type="email"],.was-validated .input-group form select:invalid:focus,form .was-validated .input-group select:invalid:focus,.input-group .form-control.is-invalid:focus,.input-group form input.is-invalid:focus[type="text"],form .input-group input.is-invalid:focus[type="text"],.input-group form input.is-invalid:focus[type="email"],form .input-group input.is-invalid:focus[type="email"],.input-group form select.is-invalid:focus,form .input-group select.is-invalid:focus,.was-validated .input-group .form-select:invalid:focus,.input-group .form-select.is-invalid:focus{z-index:3}.btn,form button#active-now-submit,.wc-block-cart__submit-container a,body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn,form button#active-now-submit,.wc-block-cart__submit-container a,body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button{transition:none}}.btn:hover,form button#active-now-submit:hover,.wc-block-cart__submit-container a:hover,body.woocommerce-page .wc-block-checkout__actions_row button:hover,body.woocommerce-page .wc-block-components-totals-coupon__content form button:hover,body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button:hover{color:#212529}.btn-check:focus+.btn,form .btn-check:focus+button#active-now-submit,.wc-block-cart__submit-container .btn-check:focus+a,body.woocommerce-page .wc-block-checkout__actions_row .btn-check:focus+button,body.woocommerce-page .wc-block-components-totals-coupon__content form .btn-check:focus+button,body.woocommerce-page .summary.entry-summary form.cart .btn-check:focus+.single_add_to_cart_button,.btn:focus,form button#active-now-submit:focus,.wc-block-cart__submit-container a:focus,body.woocommerce-page .wc-block-checkout__actions_row button:focus,body.woocommerce-page .wc-block-components-totals-coupon__content form button:focus,body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,0.25)}.btn:disabled,form button#active-now-submit:disabled,.wc-block-cart__submit-container a:disabled,body.woocommerce-page .wc-block-checkout__actions_row button:disabled,body.woocommerce-page .wc-block-components-totals-coupon__content form button:disabled,body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button:disabled,.btn.disabled,form button.disabled#active-now-submit,.wc-block-cart__submit-container a.disabled,body.woocommerce-page .wc-block-checkout__actions_row button.disabled,body.woocommerce-page .wc-block-components-totals-coupon__content form button.disabled,body.woocommerce-page .summary.entry-summary form.cart .disabled.single_add_to_cart_button,fieldset:disabled .btn,fieldset:disabled form button#active-now-submit,form fieldset:disabled button#active-now-submit,fieldset:disabled .wc-block-cart__submit-container a,.wc-block-cart__submit-container fieldset:disabled a,fieldset:disabled body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row fieldset:disabled button,fieldset:disabled body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form fieldset:disabled button,fieldset:disabled body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart fieldset:disabled .single_add_to_cart_button{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,0.5)}.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,0.5)}.btn-primary:disabled,.btn-primary.disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,0.5)}.btn-check:checked+.btn-secondary,.btn-check:active+.btn-secondary,.btn-secondary:active,.btn-secondary.active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:checked+.btn-secondary:focus,.btn-check:active+.btn-secondary:focus,.btn-secondary:active:focus,.btn-secondary.active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,0.5)}.btn-secondary:disabled,.btn-secondary.disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,0.5)}.btn-check:checked+.btn-success,.btn-check:active+.btn-success,.btn-success:active,.btn-success.active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:checked+.btn-success:focus,.btn-check:active+.btn-success:focus,.btn-success:active:focus,.btn-success.active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,0.5)}.btn-success:disabled,.btn-success.disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,0.5)}.btn-check:checked+.btn-info,.btn-check:active+.btn-info,.btn-info:active,.btn-info.active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:checked+.btn-info:focus,.btn-check:active+.btn-info:focus,.btn-info:active:focus,.btn-info.active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,0.5)}.btn-info:disabled,.btn-info.disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,0.5)}.btn-check:checked+.btn-warning,.btn-check:active+.btn-warning,.btn-warning:active,.btn-warning.active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:checked+.btn-warning:focus,.btn-check:active+.btn-warning:focus,.btn-warning:active:focus,.btn-warning.active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,0.5)}.btn-warning:disabled,.btn-warning.disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,0.5)}.btn-check:checked+.btn-danger,.btn-check:active+.btn-danger,.btn-danger:active,.btn-danger.active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:checked+.btn-danger:focus,.btn-check:active+.btn-danger:focus,.btn-danger:active:focus,.btn-danger.active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,0.5)}.btn-danger:disabled,.btn-danger.disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,0.5)}.btn-check:checked+.btn-light,.btn-check:active+.btn-light,.btn-light:active,.btn-light.active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:checked+.btn-light:focus,.btn-check:active+.btn-light:focus,.btn-light:active:focus,.btn-light.active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,0.5)}.btn-light:disabled,.btn-light.disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,0.5)}.btn-check:checked+.btn-dark,.btn-check:active+.btn-dark,.btn-dark:active,.btn-dark.active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:checked+.btn-dark:focus,.btn-check:active+.btn-dark:focus,.btn-dark:active:focus,.btn-dark.active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,0.5)}.btn-dark:disabled,.btn-dark.disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,0.5)}.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,0.5)}.btn-outline-primary:disabled,.btn-outline-primary.disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,0.5)}.btn-check:checked+.btn-outline-secondary,.btn-check:active+.btn-outline-secondary,.btn-outline-secondary:active,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:checked+.btn-outline-secondary:focus,.btn-check:active+.btn-outline-secondary:focus,.btn-outline-secondary:active:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,0.5)}.btn-outline-secondary:disabled,.btn-outline-secondary.disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,0.5)}.btn-check:checked+.btn-outline-success,.btn-check:active+.btn-outline-success,.btn-outline-success:active,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show{color:#fff;background-color:#198754;border-color:#198754}.btn-check:checked+.btn-outline-success:focus,.btn-check:active+.btn-outline-success:focus,.btn-outline-success:active:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,0.5)}.btn-outline-success:disabled,.btn-outline-success.disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,0.5)}.btn-check:checked+.btn-outline-info,.btn-check:active+.btn-outline-info,.btn-outline-info:active,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:checked+.btn-outline-info:focus,.btn-check:active+.btn-outline-info:focus,.btn-outline-info:active:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,0.5)}.btn-outline-info:disabled,.btn-outline-info.disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,0.5)}.btn-check:checked+.btn-outline-warning,.btn-check:active+.btn-outline-warning,.btn-outline-warning:active,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:checked+.btn-outline-warning:focus,.btn-check:active+.btn-outline-warning:focus,.btn-outline-warning:active:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,0.5)}.btn-outline-warning:disabled,.btn-outline-warning.disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,0.5)}.btn-check:checked+.btn-outline-danger,.btn-check:active+.btn-outline-danger,.btn-outline-danger:active,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:checked+.btn-outline-danger:focus,.btn-check:active+.btn-outline-danger:focus,.btn-outline-danger:active:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,0.5)}.btn-outline-danger:disabled,.btn-outline-danger.disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,0.5)}.btn-check:checked+.btn-outline-light,.btn-check:active+.btn-outline-light,.btn-outline-light:active,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:checked+.btn-outline-light:focus,.btn-check:active+.btn-outline-light:focus,.btn-outline-light:active:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,0.5)}.btn-outline-light:disabled,.btn-outline-light.disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,0.5)}.btn-check:checked+.btn-outline-dark,.btn-check:active+.btn-outline-dark,.btn-outline-dark:active,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show{color:#fff;background-color:#212529;border-color:#212529}.btn-check:checked+.btn-outline-dark:focus,.btn-check:active+.btn-outline-dark:focus,.btn-outline-dark:active:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,0.5)}.btn-outline-dark:disabled,.btn-outline-dark.disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link:disabled,.btn-link.disabled{color:#6c757d}.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,0.25);opacity:1}.btn-close:disabled,.btn-close.disabled{pointer-events:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[data-popper-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow{bottom:0}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-end,.bs-tooltip-auto[data-popper-placement^="right"]{padding:0 .4rem}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[data-popper-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow{top:0}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-start,.bs-tooltip-auto[data-popper-placement^="left"]{padding:0 .4rem}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}@font-face{font-family:"roc-grotesk";src:url("https://use.typekit.net/af/c4fccd/00000000000000007735b7c0/30/l?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n6&v=3") format("woff2"),url("https://use.typekit.net/af/c4fccd/00000000000000007735b7c0/30/d?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n6&v=3") format("woff"),url("https://use.typekit.net/af/c4fccd/00000000000000007735b7c0/30/a?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n6&v=3") format("opentype");font-display:auto;font-style:normal;font-weight:600;font-stretch:normal}@font-face{font-family:"roc-grotesk";src:url("https://use.typekit.net/af/975d46/00000000000000007735b7c3/30/l?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/975d46/00000000000000007735b7c3/30/d?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/975d46/00000000000000007735b7c3/30/a?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n7&v=3") format("opentype");font-display:auto;font-style:normal;font-weight:700;font-stretch:normal}@font-face{font-family:"roc-grotesk";src:url("https://use.typekit.net/af/9ef671/00000000000000007735b7cc/30/l?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n3&v=3") format("woff2"),url("https://use.typekit.net/af/9ef671/00000000000000007735b7cc/30/d?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n3&v=3") format("woff"),url("https://use.typekit.net/af/9ef671/00000000000000007735b7cc/30/a?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n3&v=3") format("opentype");font-display:auto;font-style:normal;font-weight:300;font-stretch:normal}@font-face{font-family:"roc-grotesk";src:url("https://use.typekit.net/af/5eb19c/00000000000000007735b7d0/30/l?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n5&v=3") format("woff2"),url("https://use.typekit.net/af/5eb19c/00000000000000007735b7d0/30/d?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n5&v=3") format("woff"),url("https://use.typekit.net/af/5eb19c/00000000000000007735b7d0/30/a?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n5&v=3") format("opentype");font-display:auto;font-style:normal;font-weight:500;font-stretch:normal}@font-face{font-family:"roc-grotesk";src:url("https://use.typekit.net/af/97dd77/00000000000000007735b7d4/30/l?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/97dd77/00000000000000007735b7d4/30/d?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/97dd77/00000000000000007735b7d4/30/a?primer=2a64b7354accbfccf091944358d6cba32f300a9a753ae564cfcf2ef3ec0bce66&fvd=n4&v=3") format("opentype");font-display:auto;font-style:normal;font-weight:400;font-stretch:normal}.tk-roc-grotesk{font-family:"roc-grotesk",sans-serif}@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:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px, 0, 0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.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);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{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))}.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-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.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-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset, 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-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none !important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset, 10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset, 10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev: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:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset, 10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s 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}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom, 8px);top:var(--swiper-pagination-top, auto);left:0;width:100%}.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:var(--swiper-pagination-bullet-border-radius, 50%);background:var(--swiper-pagination-bullet-inactive-color, #000);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;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-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right, 8px);left:var(--swiper-pagination-left, auto);top:50%;transform:translate3d(0px, -50%, 0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s 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:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color, inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color, 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-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size, 4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size, 4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius, 10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color, 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:var(--swiper-scrollbar-sides-offset, 1%);bottom:var(--swiper-scrollbar-bottom, 4px);top:var(--swiper-scrollbar-top, auto);z-index:50;height:var(--swiper-scrollbar-size, 4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left, auto);right:var(--swiper-scrollbar-right, 4px);top:var(--swiper-scrollbar-sides-offset, 1%);z-index:50;width:var(--swiper-scrollbar-size, 4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color, rgba(0,0,0,0.5));border-radius:var(--swiper-scrollbar-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>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.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{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;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{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;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-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}body{background:linear-gradient(90deg, rgba(194,213,238,0.1) 0%, rgba(194,213,238,0.3) 100%)}.header{text-align:center}.header h2,.header .h2{font-weight:500;text-align:center}.header h2 span,.header .h2 span{background-color:#7AC17E;margin:auto;rotate:-1deg;width:fit-content;padding:5px 10px;position:relative}@media (min-width: 768px){.header h2 span,.header .h2 span{top:-15px}}#page.site{overflow-x:hidden}.pageheader_v2 .video-wrap{position:relative;width:100%;height:100%;overflow:hidden}@media (min-width: 992px){.pageheader_v2 .video-wrap{height:600px;display:flex;align-items:stretch}}.pageheader_v2 .video-content-wrapper{position:relative;flex:1;background:linear-gradient(90deg, rgba(241,164,177,0.5) 0%, #f1a4b1 40%);display:flex;align-items:center;z-index:2}@media (min-width: 992px){.pageheader_v2 .video-content-wrapper{clip-path:polygon(0 0, 80% 0, 65% 100%, 0 100%)}}@media (min-width: 1200px){.pageheader_v2 .video-content-wrapper{clip-path:polygon(0 0, 60% 0, 45% 100%, 0 100%)}}.pageheader_v2 .video-image-side{height:100%;width:100%;background-image:var(--bg-image, none);background-size:cover;background-position:center;z-index:1;display:none}@media (min-width: 992px){.pageheader_v2 .video-image-side{width:60%;position:absolute;right:0;top:0;display:block}}.pageheader_v2 .video-content{display:flex;align-items:flex-start;position:relative;z-index:3;flex-direction:column;justify-content:center;color:#000;width:100%;padding:50px 0px;width:80%;text-align:center}@media (min-width: 768px){.pageheader_v2 .video-content{justify-content:flex-start;text-align:left}}.pageheader_v2 .video-content .subtitle{background:#2D63AE;color:#fff;margin-bottom:20px}@media (min-width: 768px){.pageheader_v2 .video-content .subtitle{margin-left:0px}}.pageheader_v2 .video-content h1,.pageheader_v2 .video-content .h1{color:#000;font-size:30px;margin:0 0 20px 0;text-align:center;width:100%}@media (min-width: 768px){.pageheader_v2 .video-content h1,.pageheader_v2 .video-content .h1{font-size:48px;text-align:left}}.pageheader_v2 .video-content p{color:#000;max-width:500px;font-weight:300}.pageheader_v2 .video-content ul{margin-top:0px;list-style:none;padding-left:0px;margin-bottom:0px;margin:auto}@media (min-width: 768px){.pageheader_v2 .video-content ul{display:flex;gap:20px;margin-left:0px}}.pageheader_v2 .video-content ul li:last-of-type a{margin-bottom:0px}.pageheader_v2 .video-content ul li a{font-weight:300;text-decoration:none;color:#000;display:flex;margin-bottom:20px;justify-content:center}@media (min-width: 768px){.pageheader_v2 .video-content ul li a{margin-bottom:0px}}.subtitle{padding:10px 20px;font-size:15px;line-height:1;display:inline-block;margin:auto;margin-bottom:10px}.why_v2{margin-top:50px;margin-bottom:50px}@media (min-width: 768px){.why_v2{margin-top:100px;margin-bottom:150px}}.why_v2 .boxes{list-style:none;padding-left:0px;margin:auto;margin-top:80px;width:80%}@media (min-width: 992px){.why_v2 .boxes{display:flex;gap:40px}}.why_v2 .boxes li{background-color:#fff;padding:40px;border-radius:8px;box-shadow:0 8px 20px rgba(0,0,0,0.05);margin-bottom:30px}@media (min-width: 992px){.why_v2 .boxes li{margin-bottom:0px}}.why_v2 .boxes li span{color:#000;justify-content:center;line-height:1;margin-right:20px;align-items:center;display:flex;margin-bottom:20px;padding:5px 10px;width:fit-content}.why_v2 .boxes li h3,.why_v2 .boxes li .h3{font-weight:bold}.why_v2 .boxes li p:last-of-type{margin-bottom:0px}.program_v2 .program-elements{width:80%;margin:auto;margin-top:80px;position:relative;margin-bottom:50px}@media (min-width: 992px){.program_v2 .program-elements{width:90%;margin-bottom:100px}}@media (min-width: 1200px){.program_v2 .program-elements{width:1000px;margin-bottom:100px}}.program_v2 .program-elements .connecting-lines{position:absolute;top:0px;width:200%;height:100%;left:-50%;display:none}@media (min-width: 992px){.program_v2 .program-elements .connecting-lines{display:block}}.program_v2 .program-elements .top,.program_v2 .program-elements .bottom{position:relative}@media (min-width: 992px){.program_v2 .program-elements .top,.program_v2 .program-elements .bottom{display:flex;gap:150px;align-items:flex-start;justify-content:center}}.program_v2 .program-elements .top .box,.program_v2 .program-elements .bottom .box{display:flex;list-style:none;padding-left:0px;background-color:#fff;padding:30px;border-radius:8px;box-shadow:0 8px 20px rgba(0,0,0,0.05);flex-direction:column;margin-bottom:30px;min-width:260px}@media (min-width: 992px){.program_v2 .program-elements .top .box,.program_v2 .program-elements .bottom .box{margin-bottom:0px}}.program_v2 .program-elements .top .box h4,.program_v2 .program-elements .top .box .h4,.program_v2 .program-elements .bottom .box h4,.program_v2 .program-elements .bottom .box .h4{margin-bottom:0px}.program_v2 .program-elements .top .box ul,.program_v2 .program-elements .bottom .box ul{margin-top:20px;list-style:none;padding-left:0px;margin-bottom:0px;display:flex;gap:20px;flex-wrap:wrap}.program_v2 .program-elements .top .box ul.columns2 li,.program_v2 .program-elements .bottom .box ul.columns2 li{width:calc(50% - 10px)}.program_v2 .program-elements .top .box ul li,.program_v2 .program-elements .bottom .box ul li{width:100%;background-color:#F1A4B1;border-radius:8px;font-size:14px;text-align:center;padding:15px 10px;line-height:1;display:flex;align-items:center;justify-content:center}.program_v2 .program-elements .top .box ul li:last-of-type,.program_v2 .program-elements .bottom .box ul li:last-of-type{margin-bottom:0px}.program_v2 .program-elements .top .box.scheme1,.program_v2 .program-elements .bottom .box.scheme1{box-shadow:0 8px 20px rgba(194,213,238,0.5)}.program_v2 .program-elements .top .box.scheme1 ul li,.program_v2 .program-elements .bottom .box.scheme1 ul li{background-color:#C2D5EE;color:#000}.program_v2 .program-elements .top .box.scheme2,.program_v2 .program-elements .bottom .box.scheme2{box-shadow:0 8px 20px rgba(241,164,177,0.5)}.program_v2 .program-elements .top .box.scheme2 ul li,.program_v2 .program-elements .bottom .box.scheme2 ul li{background-color:#F1A4B1;color:#000}.program_v2 .program-elements .top .box.scheme3,.program_v2 .program-elements .bottom .box.scheme3{box-shadow:0 8px 20px rgba(122,193,126,0.5)}.program_v2 .program-elements .top .box.scheme3 ul li,.program_v2 .program-elements .bottom .box.scheme3 ul li{background-color:#7AC17E;color:#000}.program_v2 .program-elements .top .box.scheme4,.program_v2 .program-elements .bottom .box.scheme4{box-shadow:0 8px 20px rgba(161,159,210,0.5)}.program_v2 .program-elements .top .box.scheme4 ul li,.program_v2 .program-elements .bottom .box.scheme4 ul li{background-color:#A19FD2;color:#000}.program_v2 .program-elements .top .box.scheme5,.program_v2 .program-elements .bottom .box.scheme5{box-shadow:0 8px 20px rgba(243,213,137,0.5)}.program_v2 .program-elements .top .box.scheme5 ul li,.program_v2 .program-elements .bottom .box.scheme5 ul li{background-color:#F3D589;color:#000}.program_v2 .program-elements .top .box.scheme6,.program_v2 .program-elements .bottom .box.scheme6{box-shadow:0 8px 20px rgba(45,99,174,0.5)}.program_v2 .program-elements .top .box.scheme6 ul li,.program_v2 .program-elements .bottom .box.scheme6 ul li{background-color:#2D63AE;color:#fff}.program_v2 .program-elements .center{padding:50px 0px;display:none}@media (min-width: 992px){.program_v2 .program-elements .center{display:block}}.program_v2 .program-elements .center .icon{text-align:center}.program_v2 .program-elements .center .icon svg{width:200px;border:1px dashed;border-radius:50%;padding:20px;background:#C2D5EE}.preview_v2{padding:50px 0px;background:#fff}@media (min-width: 768px){.preview_v2{padding:100px 0px}}.preview_v2 .row{align-items:center}.preview_v2 .subtitle{background:#C2D5EE;color:#000}.preview_v2 h2,.preview_v2 .h2{text-align:left;font-size:40px;font-weight:bold}.preview_v2 ul{margin-top:50px;list-style:none;padding-left:0px;margin-bottom:0px}.preview_v2 ul li{display:flex;align-items:flex-start;margin-bottom:30px;justify-content:space-between}.preview_v2 ul li:last-of-type{margin-bottom:0px}.preview_v2 ul li .index{background-color:#F1A4B1;color:#000;justify-content:center;line-height:1;margin-right:20px;align-items:center;width:50px;height:50px;display:flex}.preview_v2 ul li .text{width:calc(100% - 50px)}.preview_v2 ul li .text p{margin-bottom:0px}.preview_v2 .img{position:relative;margin-top:30px}@media (min-width: 992px){.preview_v2 .img{right:0px;margin-top:0px}}@media (min-width: 1200px){.preview_v2 .img{right:-80px}}@media (min-width: 1400px){.preview_v2 .img{right:-100px}}.preview_v2 .img img{max-width:100%;width:100%;box-shadow:0 8px 20px rgba(0,0,0,0.05);border-radius:8px}.preview_v2 .img .caption{background-color:#C2D5EE;font-size:40px;padding:30px;display:flex;width:fit-content;flex-direction:column;text-align:center;font-weight:bold;position:absolute;bottom:-40px;left:-10px;box-shadow:0 18px 30px rgba(0,0,0,0.1);rotate:-2deg}.preview_v2 .img .caption small,.preview_v2 .img .caption .small{display:block;font-size:14px;font-weight:normal}.harmonogram_v2{margin-top:50px;margin-bottom:50px}@media (min-width: 768px){.harmonogram_v2{margin-top:100px;margin-bottom:50px}}.harmonogram_v2 .schedule-boxes{padding:0px 50px}.harmonogram_v2 .schedule-boxes .semesters-list{list-style:none;padding-left:0px;display:flex;justify-content:center;margin-bottom:0px;margin-top:50px;flex-direction:column;background-color:#fff}@media (min-width: 768px){.harmonogram_v2 .schedule-boxes .semesters-list{flex-direction:row}}.harmonogram_v2 .schedule-boxes .semesters-list li{padding:25px 25px;cursor:pointer;display:flex;align-items:center;gap:20px;background-color:#fff}@media (min-width: 768px){.harmonogram_v2 .schedule-boxes .semesters-list li{padding:30px 45px}}.harmonogram_v2 .schedule-boxes .semesters-list li.active,.harmonogram_v2 .schedule-boxes .semesters-list li:hover{background:#F1A4B1}.harmonogram_v2 .schedule-boxes .semesters-list li.disabled{opacity:0.5;cursor:not-allowed;pointer-events:none}.harmonogram_v2 .schedule-boxes .semesters-list li.disabled:hover{background-color:#fff}.harmonogram_v2 .schedule-boxes .semesters-list li svg{width:30px;height:30px}.harmonogram_v2 .schedule-boxes .semesters-list li span{width:calc(100% - 50px)}.harmonogram_v2 .schedule-boxes .semesters-list li span small,.harmonogram_v2 .schedule-boxes .semesters-list li span .small{color:#737373;font-size:12px;text-transform:uppercase;padding-left:0;margin-left:0;display:block;padding-top:0;padding-bottom:0}.harmonogram_v2 .schedule-boxes .schedule-box-items .swiper-wrapper .swiper-slide{display:flex;justify-content:center;gap:40px;margin-top:50px;flex-wrap:wrap}.harmonogram_v2 .schedule-boxes .schedule-box{background-color:#fff;padding:30px;border-radius:8px;box-shadow:0 8px 20px rgba(0,0,0,0.05);width:80%}@media (min-width: 768px){.harmonogram_v2 .schedule-boxes .schedule-box{width:350px}}.harmonogram_v2 .schedule-boxes .schedule-box h4,.harmonogram_v2 .schedule-boxes .schedule-box .h4{text-align:left;margin-bottom:20px;display:flex;align-items:center;justify-content:space-between}.harmonogram_v2 .schedule-boxes .schedule-box h4 span,.harmonogram_v2 .schedule-boxes .schedule-box .h4 span{border-radius:50%;display:flex;align-items:center;justify-content:center;padding:10px}.harmonogram_v2 .schedule-boxes .schedule-box h4 span.scheme1,.harmonogram_v2 .schedule-boxes .schedule-box .h4 span.scheme1{background:#F1A4B1 !important;fill:#fff !important}.harmonogram_v2 .schedule-boxes .schedule-box h4 span.scheme2,.harmonogram_v2 .schedule-boxes .schedule-box .h4 span.scheme2{background:#2D63AE !important;fill:#fff !important}.harmonogram_v2 .schedule-boxes .schedule-box h4 span.scheme3,.harmonogram_v2 .schedule-boxes .schedule-box .h4 span.scheme3{background:#7AC17E !important;fill:#fff !important}.harmonogram_v2 .schedule-boxes .schedule-box h4 span.scheme4,.harmonogram_v2 .schedule-boxes .schedule-box .h4 span.scheme4{background:#A19FD2 !important;fill:#fff !important}.harmonogram_v2 .schedule-boxes .schedule-box h4 span.scheme5,.harmonogram_v2 .schedule-boxes .schedule-box .h4 span.scheme5{background:#F3D589 !important;fill:#fff !important}.harmonogram_v2 .schedule-boxes .schedule-box h4 span.scheme6,.harmonogram_v2 .schedule-boxes .schedule-box .h4 span.scheme6{background:#C2D5EE !important;fill:#fff !important}.harmonogram_v2 .schedule-boxes .schedule-box h4 span svg,.harmonogram_v2 .schedule-boxes .schedule-box .h4 span svg{width:15px;height:15px}.harmonogram_v2 .schedule-boxes .schedule-box ul{list-style:none;padding-left:0px;margin-bottom:0px;margin-top:10px}.harmonogram_v2 .schedule-boxes .schedule-box ul li{display:flex;align-items:center;justify-content:space-between;gap:50px;border-bottom:1px solid #f2f2f2;padding-bottom:10px;margin-bottom:10px;font-size:15px}.harmonogram_v2 .schedule-boxes .schedule-box ul li small,.harmonogram_v2 .schedule-boxes .schedule-box ul li .small{display:block}.harmonogram_v2 .schedule-boxes .schedule-box ul li .btn,.harmonogram_v2 .schedule-boxes .schedule-box ul li form button#active-now-submit,form .harmonogram_v2 .schedule-boxes .schedule-box ul li button#active-now-submit,.harmonogram_v2 .schedule-boxes .schedule-box ul li .wc-block-cart__submit-container a,.wc-block-cart__submit-container .harmonogram_v2 .schedule-boxes .schedule-box ul li a,.harmonogram_v2 .schedule-boxes .schedule-box ul li body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .harmonogram_v2 .schedule-boxes .schedule-box ul li button,.harmonogram_v2 .schedule-boxes .schedule-box ul li body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .harmonogram_v2 .schedule-boxes .schedule-box ul li button,.harmonogram_v2 .schedule-boxes .schedule-box ul li body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .harmonogram_v2 .schedule-boxes .schedule-box ul li .single_add_to_cart_button{padding:5px 10px;font-size:12px;background:#2D63AE;line-height:1;color:#fff;margin:0px}.harmonogram_v2 .schedule-boxes .schedule-box ul li .btn.contact,.harmonogram_v2 .schedule-boxes .schedule-box ul li form button.contact#active-now-submit,form .harmonogram_v2 .schedule-boxes .schedule-box ul li button.contact#active-now-submit,.harmonogram_v2 .schedule-boxes .schedule-box ul li .wc-block-cart__submit-container a.contact,.wc-block-cart__submit-container .harmonogram_v2 .schedule-boxes .schedule-box ul li a.contact,.harmonogram_v2 .schedule-boxes .schedule-box ul li body.woocommerce-page .wc-block-checkout__actions_row button.contact,body.woocommerce-page .wc-block-checkout__actions_row .harmonogram_v2 .schedule-boxes .schedule-box ul li button.contact,.harmonogram_v2 .schedule-boxes .schedule-box ul li body.woocommerce-page .wc-block-components-totals-coupon__content form button.contact,body.woocommerce-page .wc-block-components-totals-coupon__content form .harmonogram_v2 .schedule-boxes .schedule-box ul li button.contact,.harmonogram_v2 .schedule-boxes .schedule-box ul li body.woocommerce-page .summary.entry-summary form.cart .contact.single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .harmonogram_v2 .schedule-boxes .schedule-box ul li .contact.single_add_to_cart_button{background:#f3d589;color:#000}.trenerzy_v2{padding:50px 0px;background-color:#fff}@media (min-width: 768px){.trenerzy_v2{padding:100px 0px}}.trenerzy_v2 .coaches{margin:auto}@media (min-width: 1600px){.trenerzy_v2 .coaches{width:80%}}.trenerzy_v2 .coaches .coaches-carousel-new-training{justify-content:center}.trenerzy_v2 .coaches .coaches-carousel-new-training a:hover img.first{display:block !important}.cennik_v2{padding:50px 0px}@media (min-width: 768px){.cennik_v2{padding:100px 0px}}.cennik_v2 ul.base,.cennik_v2 ul.additional{margin-top:50px;list-style:none;padding-left:0px}@media (min-width: 992px){.cennik_v2 ul.base.base,.cennik_v2 ul.additional.base{display:flex;justify-content:center;gap:50px}}@media (min-width: 992px){.cennik_v2 ul.base.base>li,.cennik_v2 ul.additional.base>li{margin-bottom:0px;width:400px}}.cennik_v2 ul.base.additional,.cennik_v2 ul.additional.additional{max-width:850px;margin-left:auto;margin-right:auto}.cennik_v2 ul.base.additional.full,.cennik_v2 ul.additional.additional.full{max-width:100%}.cennik_v2 ul.base.additional li .price-box,.cennik_v2 ul.additional.additional li .price-box{display:flex;flex-direction:column;align-items:center;gap:50px}@media (min-width: 992px){.cennik_v2 ul.base.additional li .price-box,.cennik_v2 ul.additional.additional li .price-box{gap:100px;flex-direction:row}}@media (min-width: 992px){.cennik_v2 ul.base.additional li .price-box .texts .label,.cennik_v2 ul.base.additional li .price-box .texts .price,.cennik_v2 ul.base.additional li .price-box .texts .price-desc,.cennik_v2 ul.additional.additional li .price-box .texts .label,.cennik_v2 ul.additional.additional li .price-box .texts .price,.cennik_v2 ul.additional.additional li .price-box .texts .price-desc{text-align:left}}.cennik_v2 ul.base.additional li .price-box ul,.cennik_v2 ul.additional.additional li .price-box ul{margin-top:0px}.cennik_v2 ul.base li,.cennik_v2 ul.additional li{width:100%;position:relative;margin-bottom:30px}.cennik_v2 ul.base li .price-box,.cennik_v2 ul.additional li .price-box{flex-direction:column;align-items:center;background-color:#fff;padding:30px;border-radius:8px;box-shadow:0 8px 20px rgba(0,0,0,0.05);height:100%}.cennik_v2 ul.base li:nth-child(2) .price-box,.cennik_v2 ul.additional li:nth-child(2) .price-box{width:100%;background-color:#C2D5EE}.cennik_v2 ul.base li:nth-child(2) .price-box ul,.cennik_v2 ul.additional li:nth-child(2) .price-box ul{background:#fff;padding:20px;border-radius:8px}.cennik_v2 ul.base li ul,.cennik_v2 ul.additional li ul{margin-top:50px;padding-left:0px}.cennik_v2 ul.base li div,.cennik_v2 ul.additional li div{text-align:center}.cennik_v2 ul.base li div .label,.cennik_v2 ul.additional li div .label{font-size:25px;font-weight:bold;margin-bottom:10px}.cennik_v2 ul.base li div .price,.cennik_v2 ul.additional li div .price{font-size:40px;font-weight:bold}.cennik_v2 ul.base li div ul,.cennik_v2 ul.additional li div ul{display:block}.cennik_v2 ul.base li div ul li,.cennik_v2 ul.additional li div ul li{font-size:15px;text-align:left;width:100%;margin-bottom:20px;display:flex;align-items:flex-start;line-height:1.5}.cennik_v2 ul.base li div ul li:last-of-type,.cennik_v2 ul.additional li div ul li:last-of-type{margin-bottom:0px}.cennik_v2 ul.base li div ul li svg,.cennik_v2 ul.additional li div ul li svg{width:20px;margin-right:10px}.cennik_v2 ul.base li div ul li span,.cennik_v2 ul.additional li div ul li span{width:calc(100% - 30px)}.areyouready_v2{padding:50px 0px;background-color:#2D63AE;color:#fff}@media (min-width: 768px){.areyouready_v2{padding:100px 0px}}.areyouready_v2 h2,.areyouready_v2 .h2{color:#fff}.areyouready_v2 ul{margin-top:50px;list-style:none;padding-left:0px}@media (min-width: 768px){.areyouready_v2 ul{display:flex;justify-content:center;gap:50px}}.areyouready_v2 ul li{margin-bottom:30px}@media (min-width: 768px){.areyouready_v2 ul li{margin-bottom:0px}}.areyouready_v2 ul li svg{width:20px}.bottom-register{position:fixed;bottom:0px;left:0px;width:100%;display:flex;align-items:center;justify-content:center;z-index:100}@media (min-width: 768px){.bottom-register{display:none}}.bottom-register a{width:100%;box-shadow:0 -12px 24px rgba(0,0,0,0.18)}.hero_v2{position:relative;height:calc(100vh - 200px);overflow:hidden;display:flex;align-items:flex-end;justify-content:flex-start}@media (min-width: 768px){.hero_v2{height:70vh;align-items:center}}.hero_v2 .hero-video{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;z-index:-1}.hero_v2 .hero-video::after{content:"";display:block;background:rgba(0,0,0,0.5);width:100%;height:100%;z-index:0;position:absolute;top:0px}.hero_v2 .hero-video video{width:100vw;height:56.25vw;min-height:100vh;min-width:177.78vh;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.hero_v2 .hero-video .bg-image{width:100%;height:100%;background-position:center;background-size:cover}.hero_v2 .hero-content{position:relative;z-index:2;color:#fff}.hero_v2 .hero-content .text{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}@media (min-width: 1200px){.hero_v2 .hero-content .text{width:1000px;margin:auto}}.hero_v2 .hero-content .text h1,.hero_v2 .hero-content .text .h1{color:#fff;font-weight:600;text-align:center;line-height:1.2;font-size:30px;margin-bottom:30px}@media (min-width: 768px){.hero_v2 .hero-content .text h1,.hero_v2 .hero-content .text .h1{font-size:70px;margin-bottom:0px}}.hero_v2 .hero-content .text h1 span:nth-child(1),.hero_v2 .hero-content .text .h1 span:nth-child(1){color:#C2D5EE}.hero_v2 .hero-content .text h1 span:nth-child(2),.hero_v2 .hero-content .text .h1 span:nth-child(2){color:#F1A4B1}.hero_v2 .hero-content .text h1 span:nth-child(3),.hero_v2 .hero-content .text .h1 span:nth-child(3){color:#F3D589}.hero_v2 .hero-content .text h1 span:nth-child(4),.hero_v2 .hero-content .text .h1 span:nth-child(4){color:#2b76e2}.hero_v2 .hero-content .text h1 span:nth-child(5),.hero_v2 .hero-content .text .h1 span:nth-child(5){color:#7AC17E}.hero_v2 .hero-content .text h1 span:nth-child(6),.hero_v2 .hero-content .text .h1 span:nth-child(6){background:#A19FD2;padding:10px 20px;display:inline-block;rotate:-2deg}.hero_v2 .hero-content .text ul{display:none;list-style:none;padding-left:0px}@media (min-width: 768px){.hero_v2 .hero-content .text ul{display:flex}}.hero_v2 .hero-content .text ul li{margin:0px 10px;background-color:rgba(243,213,137,0.7);padding:10px 20px}.hero_v2 .hero-content .text p{display:none;text-align:center;font-size:25px}@media (min-width: 768px){.hero_v2 .hero-content .text p{display:block}}.hero_v2 .hero-content .text .btn,.hero_v2 .hero-content .text form button#active-now-submit,form .hero_v2 .hero-content .text button#active-now-submit,.hero_v2 .hero-content .text .wc-block-cart__submit-container a,.wc-block-cart__submit-container .hero_v2 .hero-content .text a,.hero_v2 .hero-content .text body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .hero_v2 .hero-content .text button,.hero_v2 .hero-content .text body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .hero_v2 .hero-content .text button,.hero_v2 .hero-content .text body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .hero_v2 .hero-content .text .single_add_to_cart_button{margin-left:0px;background:#2d63ae;color:#fff;display:none;margin:auto}@media (min-width: 768px){.hero_v2 .hero-content .text .btn,.hero_v2 .hero-content .text form button#active-now-submit,form .hero_v2 .hero-content .text button#active-now-submit,.hero_v2 .hero-content .text .wc-block-cart__submit-container a,.wc-block-cart__submit-container .hero_v2 .hero-content .text a,.hero_v2 .hero-content .text body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .hero_v2 .hero-content .text button,.hero_v2 .hero-content .text body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .hero_v2 .hero-content .text button,.hero_v2 .hero-content .text body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .hero_v2 .hero-content .text .single_add_to_cart_button{display:block}}.hero_v2 .hero-content .text .field{display:flex;align-items:center;justify-content:space-around;width:300px;margin-bottom:30px}@media (min-width: 768px){.hero_v2 .hero-content .text .field{display:none}}.hero_v2 .hero-content .text .mouse{width:35px;height:60px;border:3px solid #ffffff;border-radius:60px;position:relative}.hero_v2 .hero-content .text .mouse::before{content:'';width:12px;height:12px;position:absolute;top:10px;left:50%;transform:translateX(-50%);background-color:#ffffff;border-radius:50%;opacity:1;animation:wheel 2s infinite;-webkit-animation:wheel 2s infinite}@keyframes wheel{to{opacity:0;top:30px}}@-webkit-keyframes wheel{to{opacity:0;top:30px}}.donotmiss{width:90%;margin:auto}.donotmiss .hp-hero-offer{display:flex;flex-wrap:wrap;align-items:center;gap:40px;position:relative;width:100%;justify-content:center;margin:auto;padding-bottom:100px}.donotmiss .hp-hero-offer a{width:330px;background-color:#fff;text-decoration:none;color:#000;display:flex;gap:20px;border-left:5px solid;padding:20px}.donotmiss .hp-hero-offer a:nth-child(2n){rotate:-1deg}.donotmiss .hp-hero-offer a:nth-child(2n+1){rotate:1deg}.donotmiss .hp-hero-offer a.border-scheme-1{border-color:#F1A4B1 !important}.donotmiss .hp-hero-offer a.border-scheme-1 svg{background:#F1A4B1 !important}.donotmiss .hp-hero-offer a.border-scheme-2{border-color:#2D63AE !important}.donotmiss .hp-hero-offer a.border-scheme-2 svg{background:#2D63AE !important}.donotmiss .hp-hero-offer a.border-scheme-3{border-color:#7AC17E !important}.donotmiss .hp-hero-offer a.border-scheme-3 svg{background:#7AC17E !important}.donotmiss .hp-hero-offer a.border-scheme-4{border-color:#A19FD2 !important}.donotmiss .hp-hero-offer a.border-scheme-4 svg{background:#A19FD2 !important}.donotmiss .hp-hero-offer a.border-scheme-5{border-color:#F3D589 !important}.donotmiss .hp-hero-offer a.border-scheme-5 svg{background:#F3D589 !important}.donotmiss .hp-hero-offer a.border-scheme-6{border-color:#C2D5EE !important}.donotmiss .hp-hero-offer a.border-scheme-6 svg{background:#C2D5EE !important}.donotmiss .hp-hero-offer a svg{width:40px;height:40px;background:#000;padding:10px}.donotmiss .hp-hero-offer a .desc{display:flex;flex-direction:column;justify-content:flex-start;width:calc(100% - 60px)}.donotmiss .hp-hero-offer a .desc .subtitle{color:#737373;font-size:12px;text-transform:uppercase;padding-left:0px;margin-left:0px;display:block;padding-top:0px;padding-bottom:0px}.donotmiss .hp-hero-offer a .desc .title{font-size:18px}.donotmiss .hp-hero-offer a .desc .urltext{margin-top:10px;font-size:14px;color:#525252}.donotmiss .hp-hero-offer a .desc .urltext svg{background:transparent !important}.donotmiss .hp-hero-offer a .desc .urltext svg path{stroke:#444444}.usps{padding:100px 0px}.usps .container{display:flex;justify-content:space-between;flex-direction:column;gap:50px}@media (min-width: 768px){.usps .container{flex-direction:row}}.usps .container .box{display:flex;flex-direction:column;align-items:center;justify-content:center}.usps .container .box:nth-child(1) strong{background-color:#C2D5EE;rotate:2deg}.usps .container .box:nth-child(2) strong{background-color:#F3D589;rotate:-2deg}.usps .container .box:nth-child(3) strong{background-color:#F1A4B1;rotate:2deg}.usps .container .box strong{font-size:40px;padding:10px 20px 0px 20px;line-height:1;margin-bottom:20px;font-weight:600;text-align:center}@media (min-width: 992px){.usps .container .box strong{font-size:50px}}@media (min-width: 1200px){.usps .container .box strong{font-size:70px}}.usps .container .box span{text-align:center}.forwhom{background-color:#fff;padding:100px 0px}.forwhom .container-fluid,.forwhom .container-sm,.forwhom .container-md,.forwhom .container-lg,.forwhom .container-xl,.forwhom .container-xxl{width:100%;margin:auto}@media (min-width: 2000px){.forwhom .container-fluid,.forwhom .container-sm,.forwhom .container-md,.forwhom .container-lg,.forwhom .container-xl,.forwhom .container-xxl{width:calc(100% - 100px);margin:auto}}.forwhom .container-fluid .section-header,.forwhom .container-sm .section-header,.forwhom .container-md .section-header,.forwhom .container-lg .section-header,.forwhom .container-xl .section-header,.forwhom .container-xxl .section-header{margin-top:0px}.forwhom .container-fluid .forwhom-slider:after,.forwhom .container-sm .forwhom-slider:after,.forwhom .container-md .forwhom-slider:after,.forwhom .container-lg .forwhom-slider:after,.forwhom .container-xl .forwhom-slider:after,.forwhom .container-xxl .forwhom-slider:after{background:white;background:linear-gradient(-270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 70%, white 100%);content:"";display:block;position:absolute;top:0px;right:-1px;height:100%;width:50px;z-index:111}@media (min-width: 768px){.forwhom .container-fluid .forwhom-slider:after,.forwhom .container-sm .forwhom-slider:after,.forwhom .container-md .forwhom-slider:after,.forwhom .container-lg .forwhom-slider:after,.forwhom .container-xl .forwhom-slider:after,.forwhom .container-xxl .forwhom-slider:after{width:130px}}@media (min-width: 1200px){.forwhom .container-fluid .forwhom-slider:after,.forwhom .container-sm .forwhom-slider:after,.forwhom .container-md .forwhom-slider:after,.forwhom .container-lg .forwhom-slider:after,.forwhom .container-xl .forwhom-slider:after,.forwhom .container-xxl .forwhom-slider:after{display:none}}.forwhom .container-fluid .boxes,.forwhom .container-sm .boxes,.forwhom .container-md .boxes,.forwhom .container-lg .boxes,.forwhom .container-xl .boxes,.forwhom .container-xxl .boxes{list-style:none;padding-left:0px;display:flex;justify-content:space-between;margin:auto;padding:10px 0px}@media (min-width: 1200px){.forwhom .container-fluid .boxes,.forwhom .container-sm .boxes,.forwhom .container-md .boxes,.forwhom .container-lg .boxes,.forwhom .container-xl .boxes,.forwhom .container-xxl .boxes{flex-wrap:wrap;gap:30px}}@media (min-width: 1400px){.forwhom .container-fluid .boxes,.forwhom .container-sm .boxes,.forwhom .container-md .boxes,.forwhom .container-lg .boxes,.forwhom .container-xl .boxes,.forwhom .container-xxl .boxes{gap:30px}}@media (min-width: 2000px){.forwhom .container-fluid .boxes,.forwhom .container-sm .boxes,.forwhom .container-md .boxes,.forwhom .container-lg .boxes,.forwhom .container-xl .boxes,.forwhom .container-xxl .boxes{gap:40px;width:calc(100%)}}.forwhom .container-fluid .boxes>li,.forwhom .container-sm .boxes>li,.forwhom .container-md .boxes>li,.forwhom .container-lg .boxes>li,.forwhom .container-xl .boxes>li,.forwhom .container-xxl .boxes>li{width:75%;text-decoration:none;color:#3D3D3B;box-shadow:0px 0px 10px rgba(0,0,0,0.05);border:2px solid #f2f2f2;padding:30px;display:block;margin:0px 20px}@media (min-width: 992px){.forwhom .container-fluid .boxes>li,.forwhom .container-sm .boxes>li,.forwhom .container-md .boxes>li,.forwhom .container-lg .boxes>li,.forwhom .container-xl .boxes>li,.forwhom .container-xxl .boxes>li{padding:40px}}@media (min-width: 992px){.forwhom .container-fluid .boxes>li,.forwhom .container-sm .boxes>li,.forwhom .container-md .boxes>li,.forwhom .container-lg .boxes>li,.forwhom .container-xl .boxes>li,.forwhom .container-xxl .boxes>li{width:calc(100% / 2 - 100px)}}@media (min-width: 1200px){.forwhom .container-fluid .boxes>li,.forwhom .container-sm .boxes>li,.forwhom .container-md .boxes>li,.forwhom .container-lg .boxes>li,.forwhom .container-xl .boxes>li,.forwhom .container-xxl .boxes>li{width:calc(100% / 2 - 60px)}}@media (min-width: 1400px){.forwhom .container-fluid .boxes>li,.forwhom .container-sm .boxes>li,.forwhom .container-md .boxes>li,.forwhom .container-lg .boxes>li,.forwhom .container-xl .boxes>li,.forwhom .container-xxl .boxes>li{width:calc(100% / 4 - 70px)}}@media (min-width: 2000px){.forwhom .container-fluid .boxes>li,.forwhom .container-sm .boxes>li,.forwhom .container-md .boxes>li,.forwhom .container-lg .boxes>li,.forwhom .container-xl .boxes>li,.forwhom .container-xxl .boxes>li{width:calc(100% / 4 - 70px)}}.forwhom .container-fluid .boxes>li:nth-child(2n),.forwhom .container-sm .boxes>li:nth-child(2n),.forwhom .container-md .boxes>li:nth-child(2n),.forwhom .container-lg .boxes>li:nth-child(2n),.forwhom .container-xl .boxes>li:nth-child(2n),.forwhom .container-xxl .boxes>li:nth-child(2n){rotate:-1deg}.forwhom .container-fluid .boxes>li:nth-child(2n+1),.forwhom .container-sm .boxes>li:nth-child(2n+1),.forwhom .container-md .boxes>li:nth-child(2n+1),.forwhom .container-lg .boxes>li:nth-child(2n+1),.forwhom .container-xl .boxes>li:nth-child(2n+1),.forwhom .container-xxl .boxes>li:nth-child(2n+1){rotate:1deg}.forwhom .container-fluid .boxes>li.box-bg1,.forwhom .container-sm .boxes>li.box-bg1,.forwhom .container-md .boxes>li.box-bg1,.forwhom .container-lg .boxes>li.box-bg1,.forwhom .container-xl .boxes>li.box-bg1,.forwhom .container-xxl .boxes>li.box-bg1{border-color:#C2D5EE}.forwhom .container-fluid .boxes>li.box-bg1 img,.forwhom .container-sm .boxes>li.box-bg1 img,.forwhom .container-md .boxes>li.box-bg1 img,.forwhom .container-lg .boxes>li.box-bg1 img,.forwhom .container-xl .boxes>li.box-bg1 img,.forwhom .container-xxl .boxes>li.box-bg1 img{background-color:#C2D5EE}.forwhom .container-fluid .boxes>li.box-bg2,.forwhom .container-sm .boxes>li.box-bg2,.forwhom .container-md .boxes>li.box-bg2,.forwhom .container-lg .boxes>li.box-bg2,.forwhom .container-xl .boxes>li.box-bg2,.forwhom .container-xxl .boxes>li.box-bg2{border-color:#F1A4B1}.forwhom .container-fluid .boxes>li.box-bg2 img,.forwhom .container-sm .boxes>li.box-bg2 img,.forwhom .container-md .boxes>li.box-bg2 img,.forwhom .container-lg .boxes>li.box-bg2 img,.forwhom .container-xl .boxes>li.box-bg2 img,.forwhom .container-xxl .boxes>li.box-bg2 img{background-color:#F1A4B1}.forwhom .container-fluid .boxes>li.box-bg3,.forwhom .container-sm .boxes>li.box-bg3,.forwhom .container-md .boxes>li.box-bg3,.forwhom .container-lg .boxes>li.box-bg3,.forwhom .container-xl .boxes>li.box-bg3,.forwhom .container-xxl .boxes>li.box-bg3{border-color:#F3D589}.forwhom .container-fluid .boxes>li.box-bg3 img,.forwhom .container-sm .boxes>li.box-bg3 img,.forwhom .container-md .boxes>li.box-bg3 img,.forwhom .container-lg .boxes>li.box-bg3 img,.forwhom .container-xl .boxes>li.box-bg3 img,.forwhom .container-xxl .boxes>li.box-bg3 img{background-color:#F3D589}.forwhom .container-fluid .boxes>li.box-bg4,.forwhom .container-sm .boxes>li.box-bg4,.forwhom .container-md .boxes>li.box-bg4,.forwhom .container-lg .boxes>li.box-bg4,.forwhom .container-xl .boxes>li.box-bg4,.forwhom .container-xxl .boxes>li.box-bg4{border-color:#7AC17E}.forwhom .container-fluid .boxes>li.box-bg4 img,.forwhom .container-sm .boxes>li.box-bg4 img,.forwhom .container-md .boxes>li.box-bg4 img,.forwhom .container-lg .boxes>li.box-bg4 img,.forwhom .container-xl .boxes>li.box-bg4 img,.forwhom .container-xxl .boxes>li.box-bg4 img{background-color:#7AC17E}.forwhom .container-fluid .boxes>li img,.forwhom .container-sm .boxes>li img,.forwhom .container-md .boxes>li img,.forwhom .container-lg .boxes>li img,.forwhom .container-xl .boxes>li img,.forwhom .container-xxl .boxes>li img{padding:15px;width:60px;height:60px;background-color:#f2f2f2;margin-bottom:40px}.forwhom .container-fluid .boxes>li h4,.forwhom .container-sm .boxes>li h4,.forwhom .container-md .boxes>li h4,.forwhom .container-lg .boxes>li h4,.forwhom .container-xl .boxes>li h4,.forwhom .container-xxl .boxes>li h4,.forwhom .container-fluid .boxes>li .h4,.forwhom .container-sm .boxes>li .h4,.forwhom .container-md .boxes>li .h4,.forwhom .container-lg .boxes>li .h4,.forwhom .container-xl .boxes>li .h4,.forwhom .container-xxl .boxes>li .h4{text-align:left;font-size:24px}.forwhom .container-fluid .boxes>li p,.forwhom .container-sm .boxes>li p,.forwhom .container-md .boxes>li p,.forwhom .container-lg .boxes>li p,.forwhom .container-xl .boxes>li p,.forwhom .container-xxl .boxes>li p{line-height:1.5;font-size:18px}@media (min-width: 992px){.forwhom .container-fluid .boxes>li p,.forwhom .container-sm .boxes>li p,.forwhom .container-md .boxes>li p,.forwhom .container-lg .boxes>li p,.forwhom .container-xl .boxes>li p,.forwhom .container-xxl .boxes>li p{font-size:20px}}.forwhom .container-fluid .boxes>li ul,.forwhom .container-sm .boxes>li ul,.forwhom .container-md .boxes>li ul,.forwhom .container-lg .boxes>li ul,.forwhom .container-xl .boxes>li ul,.forwhom .container-xxl .boxes>li ul{list-style:none;padding-left:0px;margin-top:20px;font-size:18px}@media (min-width: 992px){.forwhom .container-fluid .boxes>li ul,.forwhom .container-sm .boxes>li ul,.forwhom .container-md .boxes>li ul,.forwhom .container-lg .boxes>li ul,.forwhom .container-xl .boxes>li ul,.forwhom .container-xxl .boxes>li ul{font-size:20px}}.forwhom .container-fluid .boxes>li ul li,.forwhom .container-sm .boxes>li ul li,.forwhom .container-md .boxes>li ul li,.forwhom .container-lg .boxes>li ul li,.forwhom .container-xl .boxes>li ul li,.forwhom .container-xxl .boxes>li ul li{margin-bottom:10px}.forwhom .container-fluid .boxes>li ul li svg,.forwhom .container-sm .boxes>li ul li svg,.forwhom .container-md .boxes>li ul li svg,.forwhom .container-lg .boxes>li ul li svg,.forwhom .container-xl .boxes>li ul li svg,.forwhom .container-xxl .boxes>li ul li svg{width:20px;height:20px}.reviews{background-color:#fff;padding:100px 0px}.reviews .container-fluid,.reviews .container-sm,.reviews .container-md,.reviews .container-lg,.reviews .container-xl,.reviews .container-xxl{width:100%;margin:auto}@media (min-width: 2000px){.reviews .container-fluid,.reviews .container-sm,.reviews .container-md,.reviews .container-lg,.reviews .container-xl,.reviews .container-xxl{width:calc(100% - 100px);margin:auto}}.reviews .container-fluid .section-header,.reviews .container-sm .section-header,.reviews .container-md .section-header,.reviews .container-lg .section-header,.reviews .container-xl .section-header,.reviews .container-xxl .section-header{margin-top:0px}.reviews .container-fluid .forwhom-slider:after,.reviews .container-sm .forwhom-slider:after,.reviews .container-md .forwhom-slider:after,.reviews .container-lg .forwhom-slider:after,.reviews .container-xl .forwhom-slider:after,.reviews .container-xxl .forwhom-slider:after{background:white;background:linear-gradient(-270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 70%, white 100%);content:"";display:block;position:absolute;top:0px;right:-1px;height:100%;width:50px;z-index:111}@media (min-width: 768px){.reviews .container-fluid .forwhom-slider:after,.reviews .container-sm .forwhom-slider:after,.reviews .container-md .forwhom-slider:after,.reviews .container-lg .forwhom-slider:after,.reviews .container-xl .forwhom-slider:after,.reviews .container-xxl .forwhom-slider:after{width:130px}}@media (min-width: 1200px){.reviews .container-fluid .forwhom-slider:after,.reviews .container-sm .forwhom-slider:after,.reviews .container-md .forwhom-slider:after,.reviews .container-lg .forwhom-slider:after,.reviews .container-xl .forwhom-slider:after,.reviews .container-xxl .forwhom-slider:after{display:none}}.reviews .container-fluid .boxes,.reviews .container-sm .boxes,.reviews .container-md .boxes,.reviews .container-lg .boxes,.reviews .container-xl .boxes,.reviews .container-xxl .boxes{list-style:none;padding-left:0px;display:flex;justify-content:space-between;margin:auto;padding:10px 0px}@media (min-width: 2000px){.reviews .container-fluid .boxes,.reviews .container-sm .boxes,.reviews .container-md .boxes,.reviews .container-lg .boxes,.reviews .container-xl .boxes,.reviews .container-xxl .boxes{width:calc(100%);flex-wrap:wrap;gap:40px}}.reviews .container-fluid .boxes>li,.reviews .container-sm .boxes>li,.reviews .container-md .boxes>li,.reviews .container-lg .boxes>li,.reviews .container-xl .boxes>li,.reviews .container-xxl .boxes>li{width:75%;text-decoration:none;color:#3D3D3B;box-shadow:0px 0px 10px rgba(0,0,0,0.05);border:2px solid #f2f2f2;padding:30px;display:block;margin:0px 20px}@media (min-width: 992px){.reviews .container-fluid .boxes>li,.reviews .container-sm .boxes>li,.reviews .container-md .boxes>li,.reviews .container-lg .boxes>li,.reviews .container-xl .boxes>li,.reviews .container-xxl .boxes>li{padding:40px}}@media (min-width: 992px){.reviews .container-fluid .boxes>li,.reviews .container-sm .boxes>li,.reviews .container-md .boxes>li,.reviews .container-lg .boxes>li,.reviews .container-xl .boxes>li,.reviews .container-xxl .boxes>li{width:calc(100% / 2 - 100px)}}@media (min-width: 1200px){.reviews .container-fluid .boxes>li,.reviews .container-sm .boxes>li,.reviews .container-md .boxes>li,.reviews .container-lg .boxes>li,.reviews .container-xl .boxes>li,.reviews .container-xxl .boxes>li{width:calc(100% / 2 - 60px)}}@media (min-width: 1400px){.reviews .container-fluid .boxes>li,.reviews .container-sm .boxes>li,.reviews .container-md .boxes>li,.reviews .container-lg .boxes>li,.reviews .container-xl .boxes>li,.reviews .container-xxl .boxes>li{width:calc(100% / 4 - 40px)}}@media (min-width: 2000px){.reviews .container-fluid .boxes>li,.reviews .container-sm .boxes>li,.reviews .container-md .boxes>li,.reviews .container-lg .boxes>li,.reviews .container-xl .boxes>li,.reviews .container-xxl .boxes>li{width:calc(100% / 4 - 70px)}}.reviews .container-fluid .boxes>li:nth-child(2n),.reviews .container-sm .boxes>li:nth-child(2n),.reviews .container-md .boxes>li:nth-child(2n),.reviews .container-lg .boxes>li:nth-child(2n),.reviews .container-xl .boxes>li:nth-child(2n),.reviews .container-xxl .boxes>li:nth-child(2n){rotate:-1deg}.reviews .container-fluid .boxes>li:nth-child(2n+1),.reviews .container-sm .boxes>li:nth-child(2n+1),.reviews .container-md .boxes>li:nth-child(2n+1),.reviews .container-lg .boxes>li:nth-child(2n+1),.reviews .container-xl .boxes>li:nth-child(2n+1),.reviews .container-xxl .boxes>li:nth-child(2n+1){rotate:1deg}.reviews .container-fluid .boxes>li .stars,.reviews .container-sm .boxes>li .stars,.reviews .container-md .boxes>li .stars,.reviews .container-lg .boxes>li .stars,.reviews .container-xl .boxes>li .stars,.reviews .container-xxl .boxes>li .stars{margin-bottom:10px}.reviews .container-fluid .boxes>li .stars svg,.reviews .container-sm .boxes>li .stars svg,.reviews .container-md .boxes>li .stars svg,.reviews .container-lg .boxes>li .stars svg,.reviews .container-xl .boxes>li .stars svg,.reviews .container-xxl .boxes>li .stars svg{fill:#F3D589;width:20px;height:20px}.reviews .container-fluid .boxes>li p,.reviews .container-sm .boxes>li p,.reviews .container-md .boxes>li p,.reviews .container-lg .boxes>li p,.reviews .container-xl .boxes>li p,.reviews .container-xxl .boxes>li p{font-size:16px;line-height:1.5}.reviews .container-fluid .boxes>li span,.reviews .container-sm .boxes>li span,.reviews .container-md .boxes>li span,.reviews .container-lg .boxes>li span,.reviews .container-xl .boxes>li span,.reviews .container-xxl .boxes>li span{width:100%;display:flex;justify-content:space-between}.reviews .container-fluid .boxes>li span small,.reviews .container-sm .boxes>li span small,.reviews .container-md .boxes>li span small,.reviews .container-lg .boxes>li span small,.reviews .container-xl .boxes>li span small,.reviews .container-xxl .boxes>li span small,.reviews .container-fluid .boxes>li span .small,.reviews .container-sm .boxes>li span .small,.reviews .container-md .boxes>li span .small,.reviews .container-lg .boxes>li span .small,.reviews .container-xl .boxes>li span .small,.reviews .container-xxl .boxes>li span .small{display:block;background-color:#2D63AE;color:#fff;padding:10px 20px;font-size:17px;font-weight:100}.contactv2 .section-header{margin-bottom:100px}.contactv2 #map{box-shadow:0px 0px 10px rgba(0,0,0,0.05);border:1px solid #C2D5EE}.contactv2 ul{list-style:none;padding-left:0px}.contactv2 ul li{display:flex;margin-bottom:20px}.contactv2 ul li:nth-child(1) svg{background-color:#2D63AE}.contactv2 ul li:nth-child(2) svg{background-color:#F1A4B1}.contactv2 ul li:nth-child(3) svg{background-color:#7AC17E}.contactv2 ul li svg{background-color:#000;width:50px;height:50px;padding:15px;margin-right:30px}.contactv2 ul li p a{width:fit-content;margin-left:0px !important}.contactv2 ul li p small,.contactv2 ul li p .small{display:block}.whyg{padding:100px 0px}.whyg .section-header{margin-top:0px}.whyg .container-fluid,.whyg .container-sm,.whyg .container-md,.whyg .container-lg,.whyg .container-xl,.whyg .container-xxl{width:100%;margin:auto;padding:0px 20px}@media (min-width: 1200px){.whyg .container-fluid,.whyg .container-sm,.whyg .container-md,.whyg .container-lg,.whyg .container-xl,.whyg .container-xxl{padding:0px 100px}}@media (min-width: 2000px){.whyg .container-fluid,.whyg .container-sm,.whyg .container-md,.whyg .container-lg,.whyg .container-xl,.whyg .container-xxl{width:1600px;margin:auto;padding:0px 0px}}.whyg .container-fluid ul,.whyg .container-sm ul,.whyg .container-md ul,.whyg .container-lg ul,.whyg .container-xl ul,.whyg .container-xxl ul{list-style:none;padding-left:0px;gap:50px;display:flex;margin-top:100px;flex-wrap:wrap;justify-content:center}@media (min-width: 1400px){.whyg .container-fluid ul,.whyg .container-sm ul,.whyg .container-md ul,.whyg .container-lg ul,.whyg .container-xl ul,.whyg .container-xxl ul{flex-wrap:nowrap}}.whyg .container-fluid ul li,.whyg .container-sm ul li,.whyg .container-md ul li,.whyg .container-lg ul li,.whyg .container-xl ul li,.whyg .container-xxl ul li{width:100%;display:flex;align-items:center;flex-direction:column;text-align:center;line-height:1.5}@media (min-width: 768px){.whyg .container-fluid ul li,.whyg .container-sm ul li,.whyg .container-md ul li,.whyg .container-lg ul li,.whyg .container-xl ul li,.whyg .container-xxl ul li{width:calc(100% / 2 - 25px)}}@media (min-width: 1200px){.whyg .container-fluid ul li,.whyg .container-sm ul li,.whyg .container-md ul li,.whyg .container-lg ul li,.whyg .container-xl ul li,.whyg .container-xxl ul li{width:calc(100% / 3 - 35px)}}@media (min-width: 1400px){.whyg .container-fluid ul li,.whyg .container-sm ul li,.whyg .container-md ul li,.whyg .container-lg ul li,.whyg .container-xl ul li,.whyg .container-xxl ul li{width:calc(100% / 5 - 20px)}}.whyg .container-fluid ul li svg,.whyg .container-sm ul li svg,.whyg .container-md ul li svg,.whyg .container-lg ul li svg,.whyg .container-xl ul li svg,.whyg .container-xxl ul li svg{padding:20px;width:80px;height:80px;margin-bottom:20px}.whyg .container-fluid ul li:nth-child(1) svg,.whyg .container-sm ul li:nth-child(1) svg,.whyg .container-md ul li:nth-child(1) svg,.whyg .container-lg ul li:nth-child(1) svg,.whyg .container-xl ul li:nth-child(1) svg,.whyg .container-xxl ul li:nth-child(1) svg{background-color:#C2D5EE}.whyg .container-fluid ul li:nth-child(2) svg,.whyg .container-sm ul li:nth-child(2) svg,.whyg .container-md ul li:nth-child(2) svg,.whyg .container-lg ul li:nth-child(2) svg,.whyg .container-xl ul li:nth-child(2) svg,.whyg .container-xxl ul li:nth-child(2) svg{background-color:#F1A4B1}.whyg .container-fluid ul li:nth-child(3) svg,.whyg .container-sm ul li:nth-child(3) svg,.whyg .container-md ul li:nth-child(3) svg,.whyg .container-lg ul li:nth-child(3) svg,.whyg .container-xl ul li:nth-child(3) svg,.whyg .container-xxl ul li:nth-child(3) svg{background-color:#F3D589}.whyg .container-fluid ul li:nth-child(4) svg,.whyg .container-sm ul li:nth-child(4) svg,.whyg .container-md ul li:nth-child(4) svg,.whyg .container-lg ul li:nth-child(4) svg,.whyg .container-xl ul li:nth-child(4) svg,.whyg .container-xxl ul li:nth-child(4) svg{background-color:#7AC17E}.whyg .container-fluid ul li:nth-child(5) svg,.whyg .container-sm ul li:nth-child(5) svg,.whyg .container-md ul li:nth-child(5) svg,.whyg .container-lg ul li:nth-child(5) svg,.whyg .container-xl ul li:nth-child(5) svg,.whyg .container-xxl ul li:nth-child(5) svg{background-color:#A19FD2}.ready{background-color:#2D63AE;color:#fff}.eventusps{background-color:#C2D5EE;padding:50px 0px}.eventusps ul{display:flex;list-style:none;padding-left:0px;justify-content:center;gap:50px;text-align:center;flex-direction:column}@media (min-width: 768px){.eventusps ul{flex-direction:row}}.eventusps ul li{width:100%;margin:auto}@media (min-width: 768px){.eventusps ul li{width:400px}}.eventusps ul li:nth-child(1) strong{background-color:#F1A4B1;rotate:1deg}.eventusps ul li:nth-child(2) strong{background-color:#7AC17E;rotate:-1deg}.eventusps ul li:nth-child(3) strong{background-color:#F3D589;rotate:1deg}.eventusps ul li strong{font-size:35px;line-height:1;padding:10px 20px 0px 20px;margin-bottom:20px;display:inline-block}@media (min-width: 1400px){.eventusps ul li strong{font-size:50px}}.eventusps ul li p{line-height:1;margin-bottom:0px}.v1box2columns{margin-bottom:50px}@media (min-width: 992px){.v1box2columns{margin-bottom:100px}}.v1box2columns.imageleft .box1{order:1}.v1box2columns.imageleft .box2{order:2}.v1box2columns.imageright .box1{order:1}@media (min-width: 1200px){.v1box2columns.imageright .box1{order:2}}.v1box2columns.imageright .box2{order:2}@media (min-width: 1200px){.v1box2columns.imageright .box2{order:1}}@media (min-width: 1200px){.v1box2columns.imageright .box2 .text{text-align:right}}@media (min-width: 1200px){.v1box2columns.imageright .box2 .text h2,.v1box2columns.imageright .box2 .text .h2{text-align:right;width:100%}}@media (min-width: 1200px){.v1box2columns.imageright .box2 .text ul.textrows>li{position:relative;padding-right:80px;padding-left:0px}.v1box2columns.imageright .box2 .text ul.textrows>li .dot{left:auto;right:0px}}.v1box2columns .box1{height:300px;margin-bottom:70px}@media (min-width: 992px){.v1box2columns .box1{height:500px}}@media (min-width: 1200px){.v1box2columns .box1{height:auto;margin-bottom:0px}}.v1box2columns .image,.v1box2columns .text{width:90%;margin:auto}.v1box2columns h2,.v1box2columns .h2{margin-bottom:40px}.v1box2columns .text .program-list{list-style:none;padding-left:0px;margin-bottom:0px}.v1box2columns .text .program-list li{border:1px solid #d2d2d2;padding:20px;background:#fff;border-radius:10px;margin-bottom:10px}.v1box2columns .text .program-list li:last-of-type{margin-bottom:0px}.v1box2columns .image{display:flex;height:100%;background-repeat:no-repeat;background-position:center;background-size:cover}.register-event-box{background-color:#2D63AE;color:#fff;padding:50px}.register-event-box .container-fluid,.register-event-box .container-sm,.register-event-box .container-md,.register-event-box .container-lg,.register-event-box .container-xl,.register-event-box .container-xxl{display:flex;align-items:center;gap:50px;flex-direction:column}@media (min-width: 768px){.register-event-box .container-fluid,.register-event-box .container-sm,.register-event-box .container-md,.register-event-box .container-lg,.register-event-box .container-xl,.register-event-box .container-xxl{flex-direction:row;gap:100px}}.register-event-box .container-fluid .section-header,.register-event-box .container-sm .section-header,.register-event-box .container-md .section-header,.register-event-box .container-lg .section-header,.register-event-box .container-xl .section-header,.register-event-box .container-xxl .section-header{margin:0px !important}.register-event-box .container-fluid .section-header h2,.register-event-box .container-sm .section-header h2,.register-event-box .container-md .section-header h2,.register-event-box .container-lg .section-header h2,.register-event-box .container-xl .section-header h2,.register-event-box .container-xxl .section-header h2,.register-event-box .container-fluid .section-header .h2,.register-event-box .container-sm .section-header .h2,.register-event-box .container-md .section-header .h2,.register-event-box .container-lg .section-header .h2,.register-event-box .container-xl .section-header .h2,.register-event-box .container-xxl .section-header .h2{text-align:left;font-size:40px;color:#fff;font-weight:500}.register-event-box .container-fluid .section-header p,.register-event-box .container-sm .section-header p,.register-event-box .container-md .section-header p,.register-event-box .container-lg .section-header p,.register-event-box .container-xl .section-header p,.register-event-box .container-xxl .section-header p{text-align:left;line-height:1.2}.register-event-box .container-fluid a,.register-event-box .container-sm a,.register-event-box .container-md a,.register-event-box .container-lg a,.register-event-box .container-xl a,.register-event-box .container-xxl a{white-space:nowrap;margin-left:0px}.register-event-box .container-fluid a.floating,.register-event-box .container-sm a.floating,.register-event-box .container-md a.floating,.register-event-box .container-lg a.floating,.register-event-box .container-xl a.floating,.register-event-box .container-xxl a.floating{position:fixed;bottom:0px;left:0px;width:100%;z-index:10}@media (min-width: 768px){.register-event-box .container-fluid a.floating,.register-event-box .container-sm a.floating,.register-event-box .container-md a.floating,.register-event-box .container-lg a.floating,.register-event-box .container-xl a.floating,.register-event-box .container-xxl a.floating{display:none}}.post-single{position:relative}.post-single .container{position:relative;z-index:10}.post-single__hero{position:relative;padding-top:30px;overflow:visible}@media (min-width: 768px){.post-single__hero{padding-top:60px}}.post-single__hero .deco-1,.post-single__hero .deco-2{position:absolute;display:none;z-index:1}@media (min-width: 992px){.post-single__hero .deco-1,.post-single__hero .deco-2{display:block}}.post-single__hero .deco-1{width:420px;top:20px;left:-160px;transform:rotate(-135deg)}.post-single__hero .deco-1 path{fill:#A19FD2}.post-single__hero .deco-2{width:460px;top:240px;right:-200px;transform:rotate(-245deg)}.post-single__hero .deco-2 path{fill:#7AC17E}.post-single__back{display:inline-flex;align-items:center;gap:10px;font-size:15px;text-transform:uppercase;letter-spacing:2px;text-decoration:none;color:#3D3D3B;transition:color 0.3s, transform 0.3s}.post-single__back svg{width:16px;height:16px;fill:currentColor;transition:transform 0.3s}.post-single__back:hover{color:#2D63AE}.post-single__back:hover svg{transform:translateX(-4px)}.post-single__terms{list-style:none;padding:0;margin:25px 0 0;display:flex;flex-wrap:wrap;gap:10px}.post-single__terms li{display:block}.post-single__terms a{display:inline-block;padding:7px 18px;font-size:15px;line-height:1.4;text-transform:uppercase;letter-spacing:1px;text-decoration:none;color:#3D3D3B;transform:rotate(-1.5deg);transition:transform 0.3s, filter 0.3s}.post-single__terms a:hover{transform:rotate(1.5deg);filter:brightness(0.95)}.post-single__title{margin:20px 0 0;color:#3D3D3B;text-align:left;font-size:34px;line-height:1.15;max-width:1000px}@media (min-width: 768px){.post-single__title{font-size:56px}}.post-single__meta{display:flex;flex-wrap:wrap;align-items:center;gap:8px 16px;margin:20px 0 0;padding:0;list-style:none;font-size:16px;line-height:1.4;color:rgba(61,61,59,0.7)}.post-single__meta li{display:flex;align-items:center;gap:8px}.post-single__meta svg{width:17px;height:17px;fill:#2D63AE;flex:0 0 auto}.post-single__cover{margin-top:40px}@media (min-width: 768px){.post-single__cover{margin-top:60px}}.post-single__cover figure{margin:0;position:relative;overflow:hidden;transform:rotate(-1deg);box-shadow:0 30px 60px rgba(45,99,174,0.18)}.post-single__cover figure::after{content:"";position:absolute;inset:0;background:linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.12) 100%);pointer-events:none}.post-single__cover img{display:block;width:100%;height:auto}.post-single__body{padding:50px 0 20px}@media (min-width: 768px){.post-single__body{padding:80px 0 30px}}.post-single__content p,.post-single__content ul,.post-single__content ol,.post-single__content h2,.post-single__content .h2,.post-single__content h3,.post-single__content .h3,.post-single__content h4,.post-single__content .h4,.post-single__content h5,.post-single__content .h5,.post-single__content h6,.post-single__content .h6,.post-single__content blockquote{text-align:left !important}.post-single__content p{font-size:19px;line-height:1.85;margin-bottom:26px}@media (min-width: 768px){.post-single__content p{font-size:20px}}.post-single__content>.panel-layout>.panel-grid:first-child .textwidget>p:first-child,.post-single__content>.textwidget>p:first-child{font-size:21px;line-height:1.7;color:#3D3D3B}@media (min-width: 768px){.post-single__content>.panel-layout>.panel-grid:first-child .textwidget>p:first-child,.post-single__content>.textwidget>p:first-child{font-size:24px}}.post-single__content h2,.post-single__content .h2,.post-single__content h3,.post-single__content .h3,.post-single__content h4,.post-single__content .h4{text-align:left;color:#3D3D3B;margin-top:50px;margin-bottom:18px;letter-spacing:0}.post-single__content h2,.post-single__content .h2{font-size:28px;line-height:1.25}@media (min-width: 768px){.post-single__content h2,.post-single__content .h2{font-size:38px}}.post-single__content h3,.post-single__content .h3{font-size:24px;line-height:1.3;text-transform:none}@media (min-width: 768px){.post-single__content h3,.post-single__content .h3{font-size:28px}}.post-single__content h4,.post-single__content .h4{font-size:20px;text-transform:none;letter-spacing:0;color:#2D63AE}.post-single__content a:not(.btn){color:#2D63AE;text-decoration:underline;text-underline-offset:4px;text-decoration-thickness:2px;text-decoration-color:#C2D5EE;transition:text-decoration-color 0.3s, color 0.3s}.post-single__content a:not(.btn):hover{color:#2b76e2;text-decoration-color:#2b76e2}.post-single__content ul,.post-single__content ol{font-size:19px;line-height:1.8;padding-left:0;margin-bottom:30px}.post-single__content ul li,.post-single__content ol li{margin-bottom:10px}.post-single__content ul{list-style:none}.post-single__content ul li{position:relative;padding-left:34px}.post-single__content ul li::before{content:"";position:absolute;left:6px;top:13px;width:10px;height:10px;border-radius:50%;background:#F1A4B1}.post-single__content ol{padding-left:24px}.post-single__content ol li::marker{color:#2D63AE;font-weight:600}.post-single__content blockquote{margin:45px auto;padding:30px 30px 30px 34px;border-left:6px solid #F1A4B1;background:rgba(194,213,238,0.25);font-size:22px;line-height:1.6}.post-single__content blockquote p:last-child{margin-bottom:0}.post-single__content .table-wrapper{margin:40px 0;overflow-x:auto;-webkit-overflow-scrolling:touch}.post-single__content table{width:100%;margin:40px 0;border-collapse:collapse;font-size:17px;line-height:1.6}@media (min-width: 768px){.post-single__content table{font-size:18px}}.post-single__content .table-wrapper>table{margin:0;min-width:520px}.post-single__content thead{background:#2D63AE;color:#fff}.post-single__content thead th{padding:18px 20px;text-align:left;font-weight:400;text-transform:uppercase;letter-spacing:1px;font-size:15px;vertical-align:middle}@media (min-width: 768px){.post-single__content thead th{font-size:16px}}.post-single__content tbody tr{border-bottom:1px solid rgba(61,61,59,0.12);transition:background-color 0.3s}.post-single__content tbody tr:nth-child(even){background-color:rgba(194,213,238,0.18)}.post-single__content tbody tr:hover{background-color:rgba(194,213,238,0.45)}.post-single__content tbody th,.post-single__content tbody td{padding:16px 20px;text-align:left;vertical-align:top}.post-single__content tbody td:first-child,.post-single__content tbody th:first-child{font-weight:500;color:#3D3D3B}.post-single__content caption{caption-side:bottom;padding-top:12px;font-size:15px;line-height:1.5;color:rgba(61,61,59,0.65);text-align:left}.post-single__content img{max-width:100%;height:auto}.post-single__content figure{margin:40px 0}.post-single__content figcaption{margin-top:12px;font-size:15px;line-height:1.5;text-align:center;color:rgba(61,61,59,0.65)}.post-single__content .wp-video,.post-single__content .wp-video-shortcode,.post-single__content video.wp-video-shortcode,.post-single__content .mejs-container{width:100% !important;max-width:100%}.post-single__content .wp-video{margin:40px auto}.post-single__content iframe{max-width:100%}.post-single__content .panel-grid+.panel-grid{margin-top:10px}.post-single__share{margin:60px 0 0;padding-top:35px;border-top:2px solid rgba(61,61,59,0.12);display:flex;flex-wrap:wrap;align-items:center;gap:18px}.post-single__share span{font-size:15px;text-transform:uppercase;letter-spacing:2px;color:rgba(61,61,59,0.7)}.post-single__share ul{list-style:none;display:flex;flex-wrap:wrap;gap:12px;margin:0;padding:0}.post-single__share a,.post-single__share button{width:46px;height:46px;padding:0;border:0;display:flex;align-items:center;justify-content:center;background:#C2D5EE;color:#3D3D3B;cursor:pointer;transition:transform 0.3s, background-color 0.3s}.post-single__share a svg,.post-single__share button svg{width:20px;height:20px;fill:currentColor}.post-single__share a:hover,.post-single__share button:hover{transform:rotate(-4deg) scale(1.06);background:#F3D589}.post-single__share .is-copied{background:#7AC17E}.post-single__nav{padding:60px 0 0}.post-single__nav ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:20px}@media (min-width: 768px){.post-single__nav ul{flex-direction:row;gap:30px}}.post-single__nav li{width:100%}@media (min-width: 768px){.post-single__nav li{width:calc(50% - 15px)}}@media (min-width: 768px){.post-single__nav li.is-next{margin-left:auto;text-align:right}}.post-single__nav a{display:block;height:100%;padding:25px 28px;text-decoration:none;color:#3D3D3B;background:rgba(194,213,238,0.35);transition:background-color 0.3s, transform 0.3s}.post-single__nav a:hover{background:#C2D5EE;transform:translateY(-3px)}.post-single__nav small,.post-single__nav .small{display:block;font-size:13px;text-transform:uppercase;letter-spacing:2px;color:#2D63AE;margin-bottom:10px}.post-single__nav strong{display:block;font-size:19px;font-weight:400;line-height:1.35}.post-related{position:relative;overflow:hidden;padding:70px 0 90px}@media (min-width: 768px){.post-related{padding:100px 0 120px}}.post-related .container{position:relative;z-index:10}.post-related .section-header{margin-top:0;margin-bottom:50px}.post-related .gallery{display:flex;flex-wrap:wrap;gap:40px 30px;justify-content:center}.post-related .gallery>a{position:relative;display:block;width:100%;text-decoration:none}@media (min-width: 768px){.post-related .gallery>a{width:calc(100% / 2 - 15px)}}@media (min-width: 992px){.post-related .gallery>a{width:calc(100% / 3 - 20px)}}.post-related .gallery>a:hover .img-hover-zoom img{transform:scale(1.1) rotate(-2deg)}.post-related .img-hover-zoom{overflow:hidden}.post-related .img-hover-zoom img{display:block;width:100%;height:auto;transition:transform 0.5s ease}.post-related h4.btn,.post-related .btn.h4,.post-related form button.h4#active-now-submit,form .post-related button.h4#active-now-submit,.post-related .wc-block-cart__submit-container a.h4,.wc-block-cart__submit-container .post-related a.h4,.post-related body.woocommerce-page .wc-block-checkout__actions_row button.h4,body.woocommerce-page .wc-block-checkout__actions_row .post-related button.h4,.post-related body.woocommerce-page .wc-block-components-totals-coupon__content form button.h4,body.woocommerce-page .wc-block-components-totals-coupon__content form .post-related button.h4,.post-related body.woocommerce-page .summary.entry-summary form.cart .h4.single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .post-related .h4.single_add_to_cart_button,.post-related body.woocommerce-page .summary.entry-summary form.cart h4.single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .post-related h4.single_add_to_cart_button{display:block;width:90%;max-width:90%;margin-top:10px;padding:15px 20px;font-size:15px;line-height:1.5;text-align:left;text-decoration:none}.oferta-przedszkola .op-eyebrow{display:block;text-transform:uppercase;font-size:15px;line-height:1.4;color:#3D3D3B;margin-bottom:10px}@media (min-width: 768px){.oferta-przedszkola .op-eyebrow{font-size:20px}}.oferta-przedszkola h2,.oferta-przedszkola .h2{text-align:left}.oferta-przedszkola .section-header h2,.oferta-przedszkola .section-header .h2{text-align:center}.oferta-przedszkola a.btn,.oferta-przedszkola .wc-block-cart__submit-container a,.wc-block-cart__submit-container .oferta-przedszkola a,.oferta-przedszkola body.woocommerce-page .summary.entry-summary form.cart a.single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .oferta-przedszkola a.single_add_to_cart_button,.oferta-przedszkola .op-btn-outline,.oferta-przedszkola .op-btn-white{text-decoration:none}.oferta-przedszkola .op-btn-outline,.oferta-przedszkola .op-btn-white{display:inline-flex;align-items:center;gap:10px;padding:13px 28px;font-size:20px;line-height:30px;text-decoration:none;color:#3D3D3B;transition:background-color 0.3s, color 0.3s}.oferta-przedszkola .op-btn-outline svg,.oferta-przedszkola .op-btn-white svg{width:20px;height:20px;fill:currentColor;flex:0 0 auto}.oferta-przedszkola .op-btn-outline{border:2px solid #3D3D3B}.oferta-przedszkola .op-btn-outline:hover{background:#3D3D3B;color:#fff}.oferta-przedszkola .op-btn-white{background:#fff}.oferta-przedszkola .op-btn-white:hover{background:#F3D589}.op-hero{background:#C2D5EE;padding:50px 0 60px;position:relative;overflow:hidden}@media (min-width: 768px){.op-hero{padding:90px 0 100px}}.op-hero .container{position:relative;z-index:10;display:flex;flex-direction:column;gap:40px}@media (min-width: 992px){.op-hero .container{flex-direction:row;align-items:center;gap:70px}}.op-hero .deco-1{position:absolute;width:460px;top:-110px;left:-150px;transform:rotate(-135deg);z-index:1;display:none}@media (min-width: 992px){.op-hero .deco-1{display:block}}.op-hero .deco-1 path{fill:#A19FD2;opacity:.55}.op-hero h1,.op-hero .h1{text-align:left;color:#3D3D3B;font-size:36px;line-height:1.1;margin-bottom:0}@media (min-width: 768px){.op-hero h1,.op-hero .h1{font-size:62px}}.op-hero p{margin-top:24px;margin-bottom:0;max-width:620px}.op-hero .op-hero__text{text-align:left}@media (min-width: 992px){.op-hero .op-hero__text{flex:1 1 0;min-width:0}}.op-hero .op-hero__actions{display:flex;flex-wrap:wrap;gap:16px;margin-top:36px;justify-content:flex-start}.op-hero .op-hero__actions .btn,.op-hero .op-hero__actions form button#active-now-submit,form .op-hero .op-hero__actions button#active-now-submit,.op-hero .op-hero__actions .wc-block-cart__submit-container a,.wc-block-cart__submit-container .op-hero .op-hero__actions a,.op-hero .op-hero__actions body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .op-hero .op-hero__actions button,.op-hero .op-hero__actions body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .op-hero .op-hero__actions button,.op-hero .op-hero__actions body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .op-hero .op-hero__actions .single_add_to_cart_button{margin-left:0;margin-right:0}@media (min-width: 992px){.op-hero .op-hero__img{flex:0 0 47%}}.op-hero .op-hero__img img{display:block;width:100%;height:auto;transform:rotate(1.5deg);box-shadow:0 24px 50px rgba(45,99,174,0.22)}.op-usps .container .box:nth-child(4) strong{background-color:#7AC17E;rotate:-2deg}.op-about{padding:0 0 60px}@media (min-width: 768px){.op-about{padding:0 0 100px}}.op-about .container{display:flex;flex-direction:column;gap:40px}@media (min-width: 992px){.op-about .container{flex-direction:row;align-items:center;gap:60px}}.op-about .op-about__imgs{display:flex;gap:20px;align-items:flex-start}@media (min-width: 992px){.op-about .op-about__imgs{flex:0 0 46%}}.op-about .op-about__imgs img{display:block;width:calc(50% - 10px);height:auto}.op-about .op-about__imgs img:first-child{margin-top:40px;transform:rotate(-1.5deg)}.op-about .op-about__imgs img:last-child{transform:rotate(1.5deg)}@media (min-width: 992px){.op-about .op-about__text{flex:1 1 0;min-width:0}}.op-about .op-about__text p{margin-top:22px;margin-bottom:0}.op-cel{background:rgba(194,213,238,0.28)}.op-cel .section-header{margin-bottom:0}.op-cel.whyg .container-fluid ul,.op-cel.whyg .container-sm ul,.op-cel.whyg .container-md ul,.op-cel.whyg .container-lg ul,.op-cel.whyg .container-xl ul,.op-cel.whyg .container-xxl ul{margin-top:60px}@media (min-width: 768px){.op-cel.whyg .container-fluid ul,.op-cel.whyg .container-sm ul,.op-cel.whyg .container-md ul,.op-cel.whyg .container-lg ul,.op-cel.whyg .container-xl ul,.op-cel.whyg .container-xxl ul{margin-top:90px}}@media (min-width: 1200px){.op-cel.whyg .container-fluid ul li,.op-cel.whyg .container-sm ul li,.op-cel.whyg .container-md ul li,.op-cel.whyg .container-lg ul li,.op-cel.whyg .container-xl ul li,.op-cel.whyg .container-xxl ul li{width:calc(100% / 4 - 38px)}}@media (min-width: 1400px){.op-cel.whyg .container-fluid ul li,.op-cel.whyg .container-sm ul li,.op-cel.whyg .container-md ul li,.op-cel.whyg .container-lg ul li,.op-cel.whyg .container-xl ul li,.op-cel.whyg .container-xxl ul li{width:calc(100% / 4 - 38px)}}.op-cel h4,.op-cel .h4{margin-bottom:8px}.op-cel p{font-size:17px;line-height:1.6}.op-why{padding:60px 0;position:relative;overflow:hidden}@media (min-width: 768px){.op-why{padding:100px 0}}.op-why .container{position:relative;z-index:10;display:flex;flex-direction:column;gap:40px}@media (min-width: 992px){.op-why .container{flex-direction:row;align-items:center;gap:70px}}.op-why .deco-2{position:absolute;width:500px;top:120px;right:-200px;transform:rotate(-245deg);z-index:0;display:none}@media (min-width: 992px){.op-why .deco-2{display:block}}.op-why .deco-2 path{fill:#7AC17E;opacity:.4}@media (min-width: 992px){.op-why .op-why__text{flex:1 1 0;min-width:0}}.op-why .op-why__text ul{list-style:none;padding-left:0;margin:36px 0 0;display:flex;flex-direction:column;gap:26px}.op-why .op-why__text li{display:flex;gap:24px;align-items:flex-start}.op-why .op-why__text svg{width:50px;height:50px;padding:13px;flex:0 0 50px}.op-why .op-why__text li:nth-child(1) svg{background-color:#2D63AE}.op-why .op-why__text li:nth-child(2) svg{background-color:#F1A4B1}.op-why .op-why__text li:nth-child(3) svg{background-color:#7AC17E}.op-why .op-why__text li:nth-child(4) svg{background-color:#A19FD2}.op-why .op-why__text h4,.op-why .op-why__text .h4{text-align:left;color:#3D3D3B;font-weight:600;font-size:21px;margin-bottom:5px}.op-why .op-why__text p{font-size:18px;line-height:1.6;margin-bottom:0}@media (min-width: 992px){.op-why .op-why__img{flex:0 0 42%}}.op-why .op-why__img img{display:block;width:100%;height:auto;transform:rotate(-1.5deg);box-shadow:0 24px 50px rgba(45,99,174,0.18)}.op-gallery{padding:0 0 60px}@media (min-width: 768px){.op-gallery{padding:0 0 100px}}.op-gallery .section-header{margin-bottom:50px}.op-gallery .op-gallery__grid{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:20px}@media (min-width: 992px){.op-gallery .op-gallery__grid{grid-template-columns:repeat(4, minmax(0, 1fr))}}.op-gallery .img-hover-zoom{overflow:hidden}.op-gallery .img-hover-zoom img{display:block;width:100%;height:auto;transition:transform .5s ease}.op-gallery .img-hover-zoom:hover img{transform:scale(1.1) rotate(-2deg)}.op-practice{background:#C2D5EE;padding:60px 0}@media (min-width: 768px){.op-practice{padding:100px 0}}.op-practice .container{display:flex;flex-direction:column;gap:40px}@media (min-width: 992px){.op-practice .container{flex-direction:row;align-items:flex-start;gap:70px}}@media (min-width: 992px){.op-practice .op-practice__text{flex:1 1 0;min-width:0}}.op-practice .op-practice__text h2,.op-practice .op-practice__text .h2{margin-bottom:36px}.op-practice .op-practice__text dl{display:grid;grid-template-columns:1fr;gap:26px 40px;margin:0}@media (min-width: 768px){.op-practice .op-practice__text dl{grid-template-columns:repeat(2, minmax(0, 1fr))}}.op-practice .op-practice__text dt{text-transform:uppercase;letter-spacing:.08em;font-size:16px;font-weight:600;color:#2D63AE;margin-bottom:8px}.op-practice .op-practice__text dd{margin:0;font-size:19px;line-height:1.5}@media (min-width: 992px){.op-practice .op-practice__img{flex:0 0 38%}}.op-practice .op-practice__img img{display:block;width:100%;height:auto;transform:rotate(1.5deg);box-shadow:0 24px 50px rgba(45,99,174,0.2)}.op-pricing{padding:60px 0}@media (min-width: 768px){.op-pricing{padding:100px 0}}.op-pricing .op-pricing__grid{display:grid;grid-template-columns:1fr;gap:20px}@media (min-width: 576px){.op-pricing .op-pricing__grid{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media (min-width: 992px){.op-pricing .op-pricing__grid{grid-template-columns:repeat(4, minmax(0, 1fr));gap:24px}}.op-pricing .op-tier{background:rgba(194,213,238,0.28);padding:32px 26px;text-align:center;border-top:6px solid #F1A4B1}.op-pricing .op-tier:nth-child(2){border-top-color:#A19FD2}.op-pricing .op-tier:nth-child(3){border-top-color:#7AC17E}.op-pricing .op-tier.is-best{background:#2D63AE;border-top-color:#F3D589}.op-pricing .op-tier.is-best .op-tier__label,.op-pricing .op-tier.is-best .op-tier__unit{color:#C2D5EE}.op-pricing .op-tier.is-best .op-tier__price{color:#fff}.op-pricing .op-tier__label{display:block;font-size:18px;line-height:1.4;color:#6b7076;margin-bottom:14px}.op-pricing .op-tier__price{display:block;font-size:48px;font-weight:600;line-height:1;color:#3D3D3B}.op-pricing .op-tier__unit{display:block;font-size:17px;color:#6b7076;margin-top:8px}.op-cta{padding:60px 0}@media (min-width: 768px){.op-cta{padding:90px 0}}.op-cta .container{display:flex;flex-direction:column;gap:32px}@media (min-width: 992px){.op-cta .container{flex-direction:row;align-items:center;gap:60px}}.op-cta .op-eyebrow{color:#C2D5EE}.op-cta h2,.op-cta .h2{color:#fff;font-size:30px}@media (min-width: 768px){.op-cta h2,.op-cta .h2{font-size:48px}}.op-cta p{margin-top:20px;margin-bottom:0;color:#E6EEF9;line-height:1.8;max-width:640px}@media (min-width: 992px){.op-cta .op-cta__text{flex:1 1 0;min-width:0}}.op-cta .op-cta__actions{display:flex;flex-direction:column;gap:14px;flex:0 0 auto}.op-cta .op-cta__actions .btn,.op-cta .op-cta__actions form button#active-now-submit,form .op-cta .op-cta__actions button#active-now-submit,.op-cta .op-cta__actions .wc-block-cart__submit-container a,.wc-block-cart__submit-container .op-cta .op-cta__actions a,.op-cta .op-cta__actions body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .op-cta .op-cta__actions button,.op-cta .op-cta__actions body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .op-cta .op-cta__actions button,.op-cta .op-cta__actions body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .op-cta .op-cta__actions .single_add_to_cart_button,.op-cta .op-cta__actions .op-btn-white{text-align:center;justify-content:center;text-decoration:none}.op-contact{padding:60px 0}@media (min-width: 768px){.op-contact{padding:100px 0}}.op-contact .container{display:flex;flex-direction:column;gap:50px}@media (min-width: 992px){.op-contact .container{flex-direction:row;align-items:flex-start;gap:70px}}@media (min-width: 992px){.op-contact .op-contact__info{flex:1 1 0;min-width:0}}.op-contact .op-contact__info h2,.op-contact .op-contact__info .h2{margin-bottom:36px}.op-contact .op-contact__info ul{list-style:none;padding-left:0;margin:0}.op-contact .op-contact__info li{display:flex;align-items:center;margin-bottom:20px}.op-contact .op-contact__info svg{width:50px;height:50px;padding:15px;margin-right:30px;flex:0 0 50px}.op-contact .op-contact__info li:nth-child(1) svg{background-color:#2D63AE}.op-contact .op-contact__info li:nth-child(2) svg{background-color:#F1A4B1}.op-contact .op-contact__info li:nth-child(3) svg{background-color:#7AC17E}.op-contact .op-contact__info strong{display:block;font-size:21px;color:#3D3D3B;font-weight:600}.op-contact .op-contact__info span{font-size:18px;color:#6b7076}.op-contact .op-contact__info a{font-size:21px;color:#3D3D3B;text-decoration:none}.op-contact .op-contact__info a:hover{color:#2D63AE}.op-contact .op-contact__pdf{margin-top:36px;padding-top:30px;border-top:1px solid rgba(61,61,59,0.12);display:flex;align-items:center;gap:22px}.op-contact .op-contact__pdf img{width:190px;height:110px;object-fit:cover;display:block;flex:0 0 190px}.op-contact .op-contact__pdf strong{font-size:19px;margin-bottom:10px}.op-contact .op-contact__pdf .btn,.op-contact .op-contact__pdf form button#active-now-submit,form .op-contact .op-contact__pdf button#active-now-submit,.op-contact .op-contact__pdf .wc-block-cart__submit-container a,.wc-block-cart__submit-container .op-contact .op-contact__pdf a,.op-contact .op-contact__pdf body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .op-contact .op-contact__pdf button,.op-contact .op-contact__pdf body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .op-contact .op-contact__pdf button,.op-contact .op-contact__pdf body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .op-contact .op-contact__pdf .single_add_to_cart_button{text-decoration:none;font-size:17px}.op-contact .op-contact__form{background:rgba(194,213,238,0.28);padding:30px 24px;width:100%}@media (min-width: 768px){.op-contact .op-contact__form{padding:40px 38px}}@media (min-width: 992px){.op-contact .op-contact__form{flex:0 0 46%}}.op-contact .op-contact__form h3,.op-contact .op-contact__form .h3{font-size:26px;color:#3D3D3B;margin-bottom:6px}.op-contact .op-contact__form label{display:block;font-size:16px;color:#3D3D3B;margin:18px 0 6px}.op-contact .op-contact__form label em{font-style:normal;color:#F1A4B1}.op-contact .op-contact__form input[type="text"],.op-contact .op-contact__form input[type="email"],.op-contact .op-contact__form input[type="tel"],.op-contact .op-contact__form textarea{width:100%;padding:12px 14px;font-size:18px;line-height:1.4;color:#3D3D3B;background:#fff;border:2px solid transparent;border-radius:0;transition:border-color .3s}.op-contact .op-contact__form input[type="text"]:focus,.op-contact .op-contact__form input[type="email"]:focus,.op-contact .op-contact__form input[type="tel"]:focus,.op-contact .op-contact__form textarea:focus{outline:none;border-color:#2D63AE}.op-contact .op-contact__form textarea{resize:vertical}.op-contact .op-contact__form .btn,.op-contact .op-contact__form form button#active-now-submit,form .op-contact .op-contact__form button#active-now-submit,.op-contact .op-contact__form .wc-block-cart__submit-container a,.wc-block-cart__submit-container .op-contact .op-contact__form a,.op-contact .op-contact__form body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .op-contact .op-contact__form button,.op-contact .op-contact__form body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .op-contact .op-contact__form button,.op-contact .op-contact__form body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .op-contact .op-contact__form .single_add_to_cart_button{margin-top:24px;cursor:pointer;width:100%}.op-contact .op-form__intro{font-size:17px;color:#6b7076;margin-bottom:0}.op-contact .op-form__row{display:grid;grid-template-columns:1fr;gap:0 20px}@media (min-width: 576px){.op-contact .op-form__row{grid-template-columns:repeat(2, minmax(0, 1fr))}}.op-contact .op-form__check{display:flex;align-items:flex-start;gap:12px;margin-top:22px;font-size:16px;line-height:1.5;cursor:pointer}.op-contact .op-form__check input{margin-top:4px;flex:0 0 auto;width:18px;height:18px}.op-contact .op-form__hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}.op-contact .op-form__msg{margin:16px 0 0;font-size:17px;line-height:1.5}.op-contact .op-form__msg:empty{display:none}.op-contact .op-form__msg.is-ok{color:#2f7a34}.op-contact .op-form__msg.is-error{color:#b3261e}.op-pricing{display:none}.op-cta{display:none}.op-usps .container .box.op-usps__proba{display:none}.op-hero__actions .op-btn-outline{display:none}.gh-top__in,.site-header--v2>.container,.site-header--v2 .mega>.container{max-width:1600px}.gh-top{background:#f2f2f2;color:#3D3D3B;font-size:14px;line-height:1.4}.gh-top__in{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:6px 22px;padding-top:7px;padding-bottom:7px}@media (max-width: 991.98px){.gh-top__in{grid-template-columns:1fr auto}}.gh-top__left{justify-self:start}.gh-top__center{justify-self:center}.gh-top__end{justify-self:end}@media (max-width: 991.98px){.gh-top__center{display:none}}.gh-top ul:empty{display:none}@media (max-width: 767.98px){.gh-top li.mail,.gh-top li.pin{display:none}}.gh-top ul{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;align-items:center;gap:6px 22px}.gh-top a{display:inline-flex;align-items:center;gap:7px;color:#3D3D3B;text-decoration:none}.gh-top a:hover{color:#2D63AE}.gh-top svg{width:15px;height:15px;flex:0 0 auto;opacity:.7}.site-header.site-header--v2{position:relative;z-index:30;padding:0;background:#fff;border-bottom:1px solid #f2f2f2}.site-header.site-header--v2 .gh-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-start;gap:0 20px;padding-top:14px;padding-bottom:14px}@media (min-width: 1200px){.site-header.site-header--v2 .gh-inner{flex-wrap:wrap;gap:0;padding-top:10px;padding-bottom:0}}@media (min-width: 1340px){.site-header.site-header--v2 .gh-inner{padding-bottom:10px}}.site-header.site-header--v2 .logo{order:1;width:auto;display:flex;align-items:center}.site-header.site-header--v2 .logo img{width:150px;height:auto;display:block}@media (min-width: 768px){.site-header.site-header--v2 .logo img{width:190px}}.site-header.site-header--v2 .gh-actions{order:6;width:100%;display:none;align-items:center;gap:14px;padding-top:16px;border-top:1px solid #f2f2f2}@media (min-width: 1200px){.site-header.site-header--v2 .gh-actions{order:2;width:auto;display:flex;flex:0 0 auto;margin-left:auto;padding-top:0;border-top:0}}@media (min-width: 1340px){.site-header.site-header--v2 .gh-actions{order:4}}.gh-btn{display:inline-block;padding:11px 22px;background:#F3D589;color:#3D3D3B;font-size:16px;line-height:1.3;text-decoration:none;white-space:nowrap;transition:background-color 0.3s}.gh-btn:hover{background:#F1A4B1;color:#3D3D3B}.gh-lang{position:relative;flex:0 0 auto}.gh-lang>button{display:inline-flex;align-items:center;gap:7px;padding:7px 10px;background:#F7F8FA;border:1px solid #E3E6EB;color:#3D3D3B;font-size:14px;line-height:1;cursor:pointer;transition:background-color 0.2s, border-color 0.2s}.gh-lang>button:hover{background:#fff;border-color:#cfd5de}.gh-lang>button:focus-visible{outline:2px solid #2D63AE;outline-offset:2px}.gh-lang__flag{width:20px;height:14px;display:block;flex:0 0 auto}.gh-lang__chev{width:12px;height:12px;opacity:0.55;transition:transform 0.2s}.gh-lang ul{position:absolute;top:calc(100% + 4px);right:0;z-index:50;min-width:100%;margin:0;padding:4px;list-style:none;background:#fff;border:1px solid #E3E6EB;box-shadow:0 10px 24px rgba(45,99,174,0.14);display:none}.gh-lang a{display:flex;align-items:center;gap:7px;padding:7px 8px;color:#3D3D3B;font-size:14px;line-height:1;text-decoration:none;white-space:nowrap}.gh-lang a:hover{background:rgba(194,213,238,0.4)}.gh-lang:hover ul,.gh-lang:focus-within ul{display:block}.gh-lang:hover .gh-lang__chev,.gh-lang:focus-within .gh-lang__chev{transform:rotate(180deg)}.screen-reader-text{position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.gh-burger{order:2;margin-left:auto;display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;padding:0;border:0;background:transparent;color:#3D3D3B;cursor:pointer}@media (min-width: 1200px){.gh-burger{display:none}}.gh-burger svg{width:26px;height:26px}.gh-burger .gh-burger__close{display:none}body.gh-open .gh-burger .gh-burger__open{display:none}body.gh-open .gh-burger .gh-burger__close{display:block}.gh-nav{order:5;width:100%}@media (max-width: 1199.98px){.gh-nav{display:none}}@media (min-width: 1200px){.gh-nav{order:3;width:100%;margin-top:10px;padding-top:4px;border-top:1px solid #f2f2f2}}@media (min-width: 1340px){.gh-nav{width:auto;flex:1 1 auto;margin-left:22px;margin-top:0;padding-top:0;border-top:0}}body.gh-open .gh-nav{display:block}body.gh-open .site-header--v2 .gh-actions{display:flex}.gh-nav__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column}@media (min-width: 1200px){.gh-nav__list{flex-direction:row;flex-wrap:wrap;align-items:center;justify-content:center;gap:25px}}@media (min-width: 1340px){.gh-nav__list{gap:5px}}@media (min-width: 1600px){.gh-nav__list{gap:25px}}.gh-item{position:static}@media (max-width: 1199.98px){.gh-item{border-bottom:1px solid #f2f2f2}}.gh-item>a,.gh-item>button{display:flex;align-items:center;justify-content:space-between;gap:8px;width:100%;padding:15px 0;border:0;background:transparent;color:#3D3D3B;font-size:17px;line-height:1.3;text-align:left;text-decoration:none;cursor:pointer}@media (min-width: 1200px){.gh-item>a,.gh-item>button{width:auto;justify-content:flex-start;gap:6px;padding:10px 14px;font-size:16px;white-space:nowrap;border-bottom:2px solid transparent;transition:padding .2s ease, font-size .2s ease}}.gh-item>a:hover,.gh-item>button:hover{color:#2D63AE}@media (min-width: 1200px){.gh-item>a:hover,.gh-item>button:hover{color:#3D3D3B;border-bottom-color:#F1A4B1}}.gh-item>a:focus-visible,.gh-item>button:focus-visible{outline:2px solid #2D63AE;outline-offset:2px}@media (min-width: 1340px){.gh-item>a,.gh-item>button{padding-left:8px;padding-right:8px}}@media (min-width: 1200px){.gh-item.is-current>a,.gh-item.is-current>button{border-bottom-color:#F1A4B1}}.gh-item .chev{width:15px;height:15px;flex:0 0 auto;transition:transform 0.25s}@media (min-width: 1200px){.gh-item .chev{width:13px;height:13px}}.gh-item.is-open>button .chev{transform:rotate(180deg)}@media (min-width: 1200px){.gh-item.is-open>button{border-bottom-color:#F1A4B1}}.mega[hidden]{display:none !important}@media (max-width: 1199.98px){.mega{background:rgba(194,213,238,0.22);margin:0 -20px;padding:6px 20px 18px}.mega .container{width:100%;max-width:none;padding:0}}@media (min-width: 1200px){.mega{position:absolute;left:0;right:0;top:100%;background:#fff;border-bottom:3px solid #C2D5EE;box-shadow:0 22px 44px rgba(45,99,174,0.16);padding:30px 0 34px;z-index:40}}.site-header--v2 .mega>.container{display:block;justify-content:normal}.mega-grid{display:grid;gap:22px 30px;grid-template-columns:1fr}@media (min-width: 768px){.mega-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media (min-width: 1200px){.mega-grid.cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.mega-grid.cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.mega-grid.cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.mega-grid.cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.mega-grid.cols-6{grid-template-columns:repeat(6, minmax(0, 1fr))}}.mega-col h4,.mega-col .h4{margin:0 0 10px;text-align:left;font-size:13px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:#2D63AE;padding-bottom:10px;border-bottom:2px solid #C2D5EE}.mega-col h4 a,.mega-col .h4 a{color:inherit;text-decoration:none}.mega-col h4 a:hover,.mega-col .h4 a:hover{text-decoration:underline;text-underline-offset:3px}.mega-col ul{list-style:none;margin:0;padding:0}.mega-col li+li a{border-top:1px solid rgba(45,99,174,0.1)}.mega-col a{display:block;padding:10px 0;font-size:17px;line-height:1.35;color:#3D3D3B;text-decoration:none;transition:color .15s ease}.mega-col a:hover,.mega-col a:focus-visible{color:#2D63AE;text-decoration:none}.mega-col .sub{display:block;margin-top:2px;font-size:13px;line-height:1.4;color:rgba(61,61,59,0.62)}.mega-photo__side .mega-promo{height:100%;justify-content:flex-start}.mega-promo{position:relative;overflow:hidden;background-color:#fff;background-image:linear-gradient(115deg, #c2d5ee 0%, rgba(194,213,238,0.3) 42%, rgba(161,159,210,0.3) 74%, rgba(161,159,210,0.85) 118%);padding:18px 20px 24px;display:flex;flex-direction:column;justify-content:center;gap:10px}.mega-promo::after{content:"";position:absolute;left:0;right:0;bottom:0;height:6px;background:linear-gradient(90deg, #C2D5EE 0 20%, #7AC17E 20% 40%, #F3D589 40% 60%, #F1A4B1 60% 80%, #A19FD2 80% 100%)}.mega-promo strong{display:block;font-size:17px;font-weight:600;color:#3D3D3B;line-height:1.25}.mega-promo p{margin:4px 0 0;font-size:14.5px;line-height:1.5;color:#3D3D3B}.mega-promo a{align-self:flex-start;padding:9px 18px;background:#fff;color:#3D3D3B;font-size:14.5px;text-decoration:none;white-space:nowrap}.mega-promo a:hover{background:#F3D589}.mega-foot{display:flex;flex-wrap:wrap;align-items:stretch;gap:16px 26px;margin-top:22px;padding-top:20px;border-top:1px solid #f2f2f2}.mega-foot .mega-foot__links{display:flex;flex-wrap:wrap;align-items:center;gap:10px 26px;flex:1 1 300px}.mega-foot .mega-foot__links a{font-size:16px;color:#3D3D3B;text-decoration:none}.mega-foot .mega-foot__links a:hover{color:#2D63AE;text-decoration:underline;text-underline-offset:3px}.mega-foot .mega-promo{flex:0 1 420px}@media (min-width: 768px){.mega-foot .mega-promo{flex-direction:row;align-items:center;gap:18px}.mega-foot .mega-promo div{flex:1 1 auto}.mega-foot .mega-promo a{align-self:center}}@media (max-width: 1199.98px){body.gh-open{overflow:hidden}}.gh-nav__mobile-cta{display:block;margin-top:20px}@media (min-width: 1200px){.gh-nav__mobile-cta{display:none}}.mega-photo{display:grid;gap:20px;grid-template-columns:1fr}@media (min-width: 992px){.mega-photo{grid-template-columns:290px 1fr 560px;gap:26px}}@media (min-width: 1500px){.mega-photo{grid-template-columns:300px 1fr 620px}}.mega-photo__cats{list-style:none;margin:0;padding:0}@media (min-width: 992px){.mega-photo__cats{border-right:1px solid #f2f2f2;padding-right:16px}}.mega-photo__cats button{width:100%;display:flex;align-items:center;justify-content:space-between;gap:8px;padding:13px 12px;border:0;background:transparent;color:#3D3D3B;font-size:17px;line-height:1.3;text-align:left;cursor:pointer;transition:background-color 0.2s}.mega-photo__cats button:hover{background:rgba(194,213,238,0.35)}.mega-photo__cats button:focus-visible{outline:2px solid #2D63AE;outline-offset:-2px}.mega-photo__cats button svg{width:14px;height:14px;flex:0 0 auto;opacity:0.45}.mega-photo__cats li.is-on button{background:#C2D5EE;font-weight:600}.mega-photo__cats li.is-link a{display:block;padding:13px 12px;color:#3D3D3B;font-size:17px;line-height:1.3;text-decoration:none;transition:background-color .2s}.mega-photo__cats li.is-link a:hover,.mega-photo__cats li.is-link a:focus-visible{background:rgba(194,213,238,0.35);color:#3D3D3B}.mega-photo__pane[hidden],.mega-photo__shot[hidden]{display:none !important}.mega-photo__lead{margin:0 0 12px;font-size:15px;line-height:1.6;color:rgba(61,61,59,0.75)}.mega-photo__panes ul{list-style:none;margin:0;padding:0}.mega-photo__panes li+li a{border-top:1px solid rgba(45,99,174,0.1)}.mega-photo__panes a{display:block;padding:10px 0;font-size:17px;line-height:1.35;color:#3D3D3B;text-decoration:none;transition:color .15s ease}.mega-photo__panes a:hover,.mega-photo__panes a:focus-visible{color:#2D63AE;text-decoration:none}.mega-photo__side{display:grid;gap:18px;align-items:stretch}@media (min-width: 992px){.mega-photo__side{grid-template-columns:1fr 1fr}}.mega-photo__shots{min-width:0;display:flex;flex-direction:column}@media (max-width: 991.98px){.mega-photo__shots{display:none}}.mega-photo__shot{margin:0;display:flex;flex-direction:column;height:100%}.mega-photo__shot img{display:block;width:100%;height:100%;min-height:180px;object-fit:cover}.mega-photo__blank{display:flex;flex:1 1 auto;align-items:center;justify-content:center;text-align:center;min-height:180px;padding:16px;background:#C2D5EE;color:#3D3D3B;font-size:16px;line-height:1.3}body.gh-stuck .site-header--v2{position:fixed;top:0;left:0;right:0;box-shadow:0 6px 18px rgba(45,99,174,0.12)}body.gh-stuck .gh-top{display:none}@media (min-width: 1200px){.site-header--v2 .gh-inner,.site-header--v2 .logo img{transition:padding .2s ease, width .2s ease}body.gh-stuck .site-header--v2 .gh-inner{padding-top:6px;padding-bottom:6px}body.gh-stuck .site-header--v2 .logo img{width:150px}body.gh-stuck .gh-item>a,body.gh-stuck .gh-item>button{padding:9px;font-size:15px}body.gh-stuck .gh-btn{padding:9px 18px;font-size:14.5px}}.gh-drill{display:none;position:relative;overflow:hidden}@media (max-width: 1199.98px){.gh-nav__list{display:none}.gh-drill{display:block}}.gh-drill__ekran{position:absolute;top:0;left:0;width:100%;transform:translateX(100%);opacity:0;visibility:hidden;transition:transform .26s ease, opacity .2s ease, visibility .26s}.gh-drill__ekran.is-aktywny{transform:none;opacity:1;visibility:visible}.gh-drill__ekran.is-za{transform:translateX(-26%)}.gh-drill__ekran ul{list-style:none;margin:0;padding:0}.gh-drill__ekran li+li{border-top:1px solid #f2f2f2}.gh-drill__wstecz{display:flex;align-items:center;gap:8px;width:100%;padding:13px 0;border:0;border-bottom:1px solid #f2f2f2;background:transparent;color:#2D63AE;font-size:14px;letter-spacing:.04em;text-transform:uppercase;text-align:left;cursor:pointer}.gh-drill__wstecz svg{flex:0 0 auto;width:18px;height:18px}.gh-drill__wglab,.gh-drill__link,.gh-drill__naglowek{display:flex;align-items:center;justify-content:space-between;gap:10px;width:100%;padding:15px 0;border:0;background:transparent;color:#3D3D3B;font-size:17px;line-height:1.3;text-align:left;text-decoration:none}.gh-drill__wglab span,.gh-drill__link span,.gh-drill__naglowek span{display:block}.gh-drill__wglab em,.gh-drill__link em,.gh-drill__naglowek em{flex:1 0 100%;margin-top:2px;font-style:normal;font-size:14px;line-height:1.45;color:rgba(61,61,59,0.55)}.gh-drill__link{flex-wrap:wrap}.gh-drill__wglab{cursor:pointer}.gh-drill__wglab svg{flex:0 0 auto;width:20px;height:20px;color:#2D63AE}.gh-drill__link>span,.gh-drill__wglab>span{flex:1 1 auto}.gh-drill__naglowek{color:rgba(61,61,59,0.5);font-size:13px;letter-spacing:.12em;text-transform:uppercase;padding:18px 0 8px}.gh-drill__link--promo{background:rgba(194,213,238,0.35);padding-left:14px;padding-right:14px;margin:8px 0}@media (max-width: 1199.98px){body.gh-open .site-header.site-header--v2{position:fixed;inset:0;z-index:100;overflow:hidden;border-bottom:0}body.gh-open .site-header--v2 .gh-inner{display:grid;grid-template-columns:1fr auto;grid-template-rows:auto minmax(0, 1fr) auto;height:100%;align-items:center;gap:0 20px}body.gh-open .gh-nav{grid-column:1 / -1;display:flex;flex-direction:column;min-height:0;align-self:stretch;overflow:hidden;padding-top:18px}body.gh-open .site-header--v2 .gh-actions{grid-column:1 / -1;justify-content:flex-start;margin-left:0;padding:16px 0 6px;border-top:1px solid #f2f2f2}body.gh-open .site-header--v2 .gh-actions .gh-btn{flex:1 1 auto;margin-left:0;text-align:center}body.gh-open .gh-drill{flex:1 1 auto;min-height:0}body.gh-open .gh-drill__ekran{inset:0;overflow-y:auto;-webkit-overflow-scrolling:touch}}.gfx{position:absolute;inset:0;z-index:auto;pointer-events:none;display:none}@media (min-width: 992px){.gfx{display:block}}.gfx__i{position:absolute;display:block;transform:translate3d(0, var(--gfx-y, 0px), 0) rotate(calc(var(--gfx-r, 0deg) + var(--gfx-rd, 0deg)))}.gfx__i svg{display:block;width:100%;height:auto}.gfx__i path,.gfx__i circle{fill:currentColor}.gfx__i--far{z-index:1;filter:blur(38px);opacity:.4}.gfx__i--mid{z-index:2;filter:blur(16px);opacity:.46}.gfx__i--near{z-index:3;filter:none;opacity:1}@media (prefers-reduced-motion: reduce){.gfx__i{transform:rotate(var(--gfx-r, 0deg))}}.ok .container{position:relative;z-index:10}.ok h2,.ok .h2{text-align:left;line-height:1.1;font-size:30px}@media (min-width: 768px){.ok h2,.ok .h2{font-size:46px}}.ok-eyebrow{display:block;text-transform:uppercase;font-size:15px;letter-spacing:.02em;color:#2D63AE;margin-bottom:12px}@media (min-width: 768px){.ok-eyebrow{font-size:17px}}.ok-head{max-width:780px;margin-bottom:46px}.ok-head p{margin:18px 0 0;font-size:19px;line-height:1.75}.ok-ph{display:flex;align-items:center;justify-content:center;width:100%;height:100%;min-height:220px;padding:20px;text-align:center;font-size:15px;color:#2D63AE;background:repeating-linear-gradient(135deg, rgba(45,99,174,0.08) 0 10px, transparent 10px 20px),rgba(194,213,238,0.45);border:2px dashed rgba(45,99,174,0.35)}.ok-ph--light{background:repeating-linear-gradient(135deg, rgba(255,255,255,0.5) 0 10px, transparent 10px 20px),rgba(255,255,255,0.55);border-color:rgba(255,255,255,0.8);color:#3D3D3B}.ok .gfx__i{color:#C2D5EE}.ok .ok-g1{width:520px;left:calc(clamp(90px, (100vw - 1320px - 28px) / 2, 280px) - 520px);top:-230px;--gfx-r: -135deg;color:#A19FD2}.ok .ok-g2{width:620px;right:calc(clamp(110px, (100vw - 1320px - 28px) / 2, 380px) - 620px);top:-6%;color:#F3D589}.ok .ok-g3{width:680px;left:calc(clamp(80px, (100vw - 1320px - 28px) / 2, 380px) - 680px);top:52%;--gfx-r: 180deg;color:#7AC17E}.ok .ok-g7{width:420px;right:calc(clamp(85px, (100vw - 1320px - 28px) / 2, 250px) - 420px);top:-8%;--gfx-r: 96deg;color:#2b76e2;opacity:.2}.ok .ok-g8{width:600px;left:calc(clamp(80px, (100vw - 1320px - 28px) / 2, 340px) - 600px);top:36%;--gfx-r: 180deg;color:#F1A4B1}.ok .ok-g4{width:460px;right:calc(clamp(85px, (100vw - 1320px - 28px) / 2, 250px) - 460px);bottom:-320px;--gfx-r: -245deg;color:#7AC17E}.ok .ok-g5{width:600px;left:calc(clamp(110px, (100vw - 1320px - 28px) / 2, 370px) - 600px);top:12%;--gfx-r: 130deg;color:#C2D5EE}.ok .ok-g6{width:96px;right:-14px;top:66%;color:#A19FD2}@media (min-width: 1400px){.ok .ok-g6{width:150px;right:0}}.ok-intro{position:relative;padding:40px 0 0}@media (min-width: 768px){.ok-intro{padding:60px 0 0}}.ok-intro__top{display:flex;flex-direction:column;gap:22px}@media (min-width: 992px){.ok-intro__top{flex-direction:row;align-items:flex-end;gap:60px}}@media (min-width: 992px){.ok-intro__head{flex:1 1 56%;min-width:0}}.ok-intro__head h2,.ok-intro__head .h2{margin:0}.ok-intro__lead{margin:0;font-size:19px;line-height:1.7}@media (min-width: 992px){.ok-intro__lead{flex:1 1 44%;min-width:0;font-size:21px;padding-left:26px;border-left:3px solid rgba(45,99,174,0.2)}}.ok-intro__img{margin:40px 0 0}@media (min-width: 768px){.ok-intro__img{margin-top:60px}}.ok-intro__img img,.ok-intro__img .ok-ph{display:block;width:100%;aspect-ratio:4 / 3;object-fit:cover}@media (min-width: 768px){.ok-intro__img img,.ok-intro__img .ok-ph{aspect-ratio:21 / 8}}.ok-intro__img img{box-shadow:0 26px 54px rgba(45,99,174,0.2)}.ok-intro__body{margin-top:40px;display:grid;grid-template-columns:minmax(0, 1fr);gap:20px}@media (min-width: 768px){.ok-intro__body{margin-top:56px}}@media (min-width: 992px){.ok-intro__body{grid-template-columns:repeat(2, minmax(0, 1fr));gap:60px}}@media (min-width: 1200px){.ok-intro__body{gap:80px}}.ok-intro__body p{margin:0 0 20px;font-size:18px;line-height:1.8}@media (min-width: 768px){.ok-intro__body p{font-size:19px}}.ok-intro__body p:last-child{margin-bottom:0}.ok-intro__body .ok-pull,.ok-pull{text-wrap:balance;margin:34px 0 0;padding:4px 0 4px 20px;border-left:6px solid #F1A4B1;font-size:22px;line-height:1.4;color:#3D3D3B}@media (min-width: 768px){.ok-intro__body .ok-pull,.ok-pull{font-size:26px}}.ok-liczby{padding:60px 0}@media (min-width: 768px){.ok-liczby{padding:90px 0 100px}}.ok-liczby ul{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:34px 20px}@media (min-width: 992px){.ok-liczby ul{grid-template-columns:repeat(4, minmax(0, 1fr));gap:24px}}.ok-liczby li{display:grid;grid-template-rows:1fr auto;justify-items:center;text-align:center}.ok-liczby strong{align-self:end;display:block;padding:11px 14px 4px;margin-bottom:16px;font-size:32px;font-weight:600;line-height:1;color:#3D3D3B}@media (min-width: 576px){.ok-liczby strong{padding:12px 20px 4px;font-size:40px}}@media (min-width: 1200px){.ok-liczby strong{font-size:52px}}.ok-liczby span{font-size:17px;line-height:1.4}.ok-liczby li:nth-child(4n+1) strong{background:#C2D5EE;rotate:-2deg}.ok-liczby li:nth-child(4n+2) strong{background:#F3D589;rotate:2deg}.ok-liczby li:nth-child(4n+3) strong{background:#F1A4B1;rotate:-2deg}.ok-liczby li:nth-child(4n) strong{background:#7AC17E;rotate:2deg}@media (min-width: 992px){.ok-liczby li:nth-child(even){transform:translateY(30px)}}.ok-obiekt{position:relative;padding:0 0 60px}@media (min-width: 768px){.ok-obiekt{padding:0 0 100px}}.ok-obiekt .ok-head{margin-left:auto;margin-right:auto;text-align:center}.ok-obiekt .ok-head h2,.ok-obiekt .ok-head .h2{text-align:center}.ok-tour{margin:0 auto;max-width:1100px;position:relative}.ok-tour:not(.ok-tour--empty)::before{content:"";position:absolute;inset:18px -18px -18px 18px;background:#C2D5EE;z-index:0}@media (max-width: 767.98px){.ok-tour:not(.ok-tour--empty)::before{display:none}}.ok-tour__frame{position:relative;z-index:1;aspect-ratio:16 / 9;overflow:hidden;background:#fff}.ok-tour__frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block}.ok-tour__frame--empty{aspect-ratio:auto;min-height:300px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;padding:24px;text-align:center;color:#2D63AE;background:repeating-linear-gradient(135deg, rgba(45,99,174,0.07) 0 10px, transparent 10px 20px),rgba(194,213,238,0.4);border:2px dashed rgba(45,99,174,0.35)}.ok-tour__frame--empty svg{width:56px;height:56px}.ok-tour__frame--empty p{margin:0;font-size:17px;max-width:42ch}.ok-tour figcaption{position:relative;z-index:1;margin-top:26px;font-size:16px;line-height:1.5;text-align:center;color:rgba(61,61,59,0.62)}.ok-strefy{position:relative;padding:0 0 60px}@media (min-width: 768px){.ok-strefy{padding:0 0 100px}}.ok-strefy__list{list-style:none;margin:0;padding:0;counter-reset:strefa;display:flex;flex-direction:column;gap:44px}@media (min-width: 768px){.ok-strefy__list{gap:70px}}.ok-strefy li{display:flex;flex-direction:column;gap:24px}@media (min-width: 992px){.ok-strefy li{flex-direction:row;align-items:center;gap:60px}}@media (min-width: 992px){.ok-strefy li:nth-child(even){flex-direction:row-reverse}}@media (min-width: 992px){.ok-strefa__img{flex:0 0 46%}}.ok-strefa__img img,.ok-strefa__img .ok-ph{display:block;width:100%;height:auto;aspect-ratio:4 / 3;object-fit:cover}.ok-strefa__img img{box-shadow:0 22px 44px rgba(45,99,174,0.16)}.ok-strefa__text{position:relative}@media (min-width: 992px){.ok-strefa__text{flex:1 1 0;min-width:0}}.ok-strefa__text h3,.ok-strefa__text .h3{text-align:left;font-size:26px;line-height:1.2;margin:0 0 14px;color:#3D3D3B;text-transform:none;letter-spacing:0}@media (min-width: 768px){.ok-strefa__text h3,.ok-strefa__text .h3{font-size:34px}}.ok-strefa__text p{margin:0;font-size:18px;line-height:1.75}@media (min-width: 768px){.ok-strefa__text p{font-size:19px}}.ok-strefa__no{display:block;font-size:54px;font-weight:600;line-height:1;margin-bottom:10px;color:#C2D5EE}@media (min-width: 768px){.ok-strefa__no{font-size:72px}}.ok-strefy__list li:nth-child(3n+2) .ok-strefa__no{color:#F1A4B1}.ok-strefy__list li:nth-child(3n) .ok-strefa__no{color:#F3D589}.ok-rodzic{position:relative;z-index:5;background:#C2D5EE;padding:60px 0}@media (min-width: 768px){.ok-rodzic{padding:90px 0}}.ok-rodzic .container+.container{display:block;margin-top:50px}@media (min-width: 768px){.ok-rodzic .container+.container{margin-top:70px}}.ok-rodzic>.container:first-child{display:flex;flex-direction:column;gap:34px}@media (min-width: 992px){.ok-rodzic>.container:first-child{flex-direction:row;align-items:center;gap:70px}}@media (min-width: 992px){.ok-rodzic__img{flex:0 0 46%}}.ok-rodzic__img img,.ok-rodzic__img .ok-ph{display:block;width:100%;height:auto;aspect-ratio:4 / 3;object-fit:cover}.ok-rodzic__img img{transform:rotate(-1.5deg);box-shadow:0 26px 54px rgba(45,99,174,0.25)}@media (min-width: 992px){.ok-rodzic__text{flex:1 1 0;min-width:0}}.ok-rodzic__text p{margin:20px 0 0;font-size:19px;line-height:1.8}.ok-rodzic__udog{list-style:none;margin:30px 0 0;padding:0;display:grid;grid-template-columns:minmax(0, 1fr);gap:10px}@media (min-width: 576px){.ok-rodzic__udog{grid-template-columns:repeat(2, minmax(0, 1fr))}}.ok-rodzic__udog li{display:flex;align-items:center;gap:10px;padding:13px 18px;background:#fff;font-size:16px;line-height:1.3;color:#3D3D3B}.ok-rodzic__udog svg{width:21px;height:21px;flex:0 0 auto;color:#2D63AE}.ok-gym{display:flex;flex-direction:column;background:#fff;overflow:hidden}@media (min-width: 768px){.ok-gym{flex-direction:row;align-items:stretch}}@media (min-width: 768px){.ok-gym__img{flex:0 0 42%;order:2}}.ok-gym__img img,.ok-gym__img .ok-ph{display:block;width:100%;height:100%;min-height:220px;object-fit:cover}.ok-gym__img .ok-ph{min-height:240px}.ok-gym__text{padding:30px 24px 34px}@media (min-width: 768px){.ok-gym__text{flex:1 1 0;min-width:0;order:1;padding:44px 48px;align-self:center}}.ok-gym__text h3,.ok-gym__text .h3{text-align:left;margin:0 0 14px;font-size:26px;line-height:1.2;color:#3D3D3B;text-transform:none;letter-spacing:0}@media (min-width: 768px){.ok-gym__text h3,.ok-gym__text .h3{font-size:32px}}.ok-gym__text p{margin:0 0 14px;font-size:18px;line-height:1.7}.ok-gym__text .btn,.ok-gym__text form button#active-now-submit,form .ok-gym__text button#active-now-submit,.ok-gym__text .wc-block-cart__submit-container a,.wc-block-cart__submit-container .ok-gym__text a,.ok-gym__text body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .ok-gym__text button,.ok-gym__text body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .ok-gym__text button,.ok-gym__text body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .ok-gym__text .single_add_to_cart_button{margin:10px 0 0}.pageheader.pageheader--v4{position:relative;z-index:4;height:auto;overflow:hidden;background-color:#fff;background-image:linear-gradient(115deg, #c2d5ee 0%, rgba(194,213,238,0.38) 14%, rgba(194,213,238,0.06) 24%, rgba(194,213,238,0.04) 46%, rgba(161,159,210,0.22) 72%, rgba(161,159,210,0.85) 118%);border-top:1px solid rgba(45,99,174,0.1);padding:34px 0 36px}@media (min-width: 768px){.pageheader.pageheader--v4{padding:48px 0 52px}}.pageheader.pageheader--v4 h1,.pageheader.pageheader--v4 .h1{margin:0;text-align:left;color:#3D3D3B;font-size:32px;line-height:1.04;letter-spacing:-.025em;text-wrap:balance;max-width:17ch}@media (min-width: 768px){.pageheader.pageheader--v4 h1,.pageheader.pageheader--v4 .h1{font-size:44px}}@media (min-width: 992px){.pageheader.pageheader--v4 h1,.pageheader.pageheader--v4 .h1{font-size:52px}}@media (min-width: 1200px){.pageheader.pageheader--v4 h1,.pageheader.pageheader--v4 .h1{font-size:58px}}.ph-lead{margin:16px 0 0;font-size:16px;line-height:1.6;color:rgba(61,61,59,0.68);max-width:52ch}@media (min-width: 768px){.ph-lead{font-size:18px}}.ph-wstega{position:absolute;left:0;right:0;bottom:0;display:flex;height:6px}@media (min-width: 768px){.ph-wstega{height:8px}}.ph-wstega i{flex:1}.ph-wstega i:nth-child(1){background:#C2D5EE}.ph-wstega i:nth-child(2){background:#7AC17E}.ph-wstega i:nth-child(3){background:#F3D589}.ph-wstega i:nth-child(4){background:#F1A4B1}.ph-wstega i:nth-child(5){background:#A19FD2}.ph-crumbs{margin-bottom:14px;font-size:12px;line-height:1.5;text-transform:uppercase;letter-spacing:.12em}@media (min-width: 768px){.ph-crumbs{margin-bottom:18px;font-size:13px}}.ph-crumbs p{margin:0;font-size:inherit;line-height:inherit;letter-spacing:inherit}.ph-crumbs a{color:#2D63AE;text-decoration:none;border-bottom:1px solid rgba(45,99,174,0.3);transition:border-color .15s ease, color .15s ease}.ph-crumbs a:hover,.ph-crumbs a:focus{color:#2b76e2;border-bottom-color:#2b76e2}.ph-crumbs .separator{font-size:0}.ph-crumbs .separator::after{content:"›";font-size:15px;letter-spacing:0;padding:0 9px;color:#F1A4B1}.ph-crumbs .last{color:rgba(61,61,59,0.55)}.panel-grid:has(.pageheader--v4){margin-bottom:0 !important}.panel-grid:has(.pageheader--v4)+.panel-grid{padding-top:36px}@media (min-width: 768px){.panel-grid:has(.pageheader--v4)+.panel-grid{padding-top:56px}}.panel-grid:has(.pageheader--v4)+.panel-grid:has(.scz,.knt,.prd){background:#fff}.scz{position:relative;background:#fff;padding:16px 0 70px}@media (min-width: 768px){.scz{padding:22px 0 100px}}.scz h2,.scz .h2,.scz h3,.scz .h3{text-align:left}.scz:has(.scz-banner){padding-bottom:0}@media (min-width: 768px){.scz:has(.scz-banner){padding-bottom:0}}.scz-wstep{display:flex;flex-direction:column;gap:18px;margin-bottom:8px}@media (min-width: 992px){.scz-wstep{flex-direction:row;align-items:flex-end;gap:60px}}@media (min-width: 992px){.scz-wstep__glowa{flex:1 1 56%;min-width:0}}@media (min-width: 992px){.scz-wstep__lead{flex:1 1 44%;min-width:0;padding-left:26px;border-left:3px solid rgba(45,99,174,0.2)}}.scz-wstep h2,.scz-wstep .h2{margin:0;font-size:32px;line-height:1.06;letter-spacing:-.02em}@media (min-width: 768px){.scz-wstep h2,.scz-wstep .h2{font-size:46px}}.scz-wstep p{margin:0;font-size:18px;line-height:1.75;color:rgba(61,61,59,0.8)}@media (min-width: 992px){.scz-wstep p{font-size:19px}}.scz-nad{display:block;text-transform:uppercase;font-size:13px;letter-spacing:.12em;color:#2D63AE;margin-bottom:12px}.scz-krok{display:flex;align-items:center;gap:12px;margin:46px 0 20px;font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:rgba(61,61,59,0.55)}.scz-krok b{display:grid;place-items:center;width:26px;height:26px;border-radius:50%;background:#2D63AE;color:#fff;font-size:13px;font-weight:400;letter-spacing:0}.scz-wybor{margin-top:32px;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:16px}@media (min-width: 768px){.scz-wybor{margin-top:42px}}@media (min-width: 992px){.scz-wybor{grid-template-columns:repeat(4, minmax(0, 1fr))}}.scz-kafel{position:relative;overflow:hidden;display:flex;align-items:flex-end;min-height:260px;padding:0;border:0;background:#C2D5EE;cursor:pointer;text-align:left;font:inherit;color:inherit;transition:transform .18s ease, box-shadow .18s ease}@media (min-width: 992px){.scz-kafel{min-height:440px}}.scz-kafel:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(45,99,174,0.22)}.scz-kafel:focus-visible{outline:3px solid #2b76e2;outline-offset:3px}.scz-kafel img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 45%;transition:transform .4s ease}.scz-kafel:hover img{transform:scale(1.04)}.scz-kafel__tresc{position:relative;z-index:2;width:100%;padding:22px}.scz-kafel__tresc b{display:block;font-weight:400;font-size:21px;line-height:1.2;margin-bottom:6px;color:#fff}.scz-kafel__tresc span{display:block;font-size:14px;line-height:1.5;color:rgba(255,255,255,0.84)}.scz-kafel[aria-selected="true"]{box-shadow:inset 0 0 0 4px #F3D589}.scz-kafel[aria-selected="true"]::after{content:"wybrane";position:absolute;top:0;right:0;z-index:3;padding:7px 12px;background:#F3D589;color:#3D3D3B;font-size:11px;letter-spacing:.1em;text-transform:uppercase}.scz-zaslona{position:absolute;inset:0;background:linear-gradient(0deg, rgba(61,61,59,0.9) 0%, rgba(61,61,59,0.66) 20%, rgba(61,61,59,0.3) 38%, rgba(61,61,59,0) 54%)}.scz-rysunek{position:relative;padding-top:56px}.scz-svg{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none;overflow:visible;display:none}@media (min-width: 992px){.scz-svg{display:block}}.scz-svg .scz-baza{fill:none;stroke:rgba(45,99,174,0.28);stroke-width:3;stroke-dasharray:2 13;stroke-linecap:round}.scz-svg .scz-postep{fill:none;stroke-width:3;stroke-dasharray:2 13;stroke-linecap:round}.scz-svg .scz-grubo{stroke-width:5}.scz-svg .scz-stopka{fill:none;stroke:rgba(45,99,174,0.28);stroke-width:2;stroke-dasharray:2 9;stroke-linecap:round}.scz-karta{position:relative;z-index:1;background:#fff;padding:24px 28px;border:1px solid rgba(45,99,174,0.22);box-shadow:8px 8px 0 rgba(194,213,238,0.85)}@media (min-width: 768px){.scz-karta{box-shadow:14px 14px 0 rgba(194,213,238,0.85)}}.scz-karta h3,.scz-karta .h3{margin:0 0 9px;font-size:24px;line-height:1.15;letter-spacing:-.01em;text-transform:none}.scz-karta p{margin:0;font-size:16px;line-height:1.65;color:rgba(61,61,59,0.78)}.scz-wiek{display:inline-block;margin-bottom:11px;padding:5px 12px;font-size:13px;letter-spacing:.06em;color:#3D3D3B}.scz-tlo--lightBlue{background:#C2D5EE}.scz-tlo--green{background:#7AC17E}.scz-tlo--yellow{background:#F3D589}.scz-tlo--pink{background:#F1A4B1}.scz-tlo--purple{background:#A19FD2}.scz-tlo--darkBlue{background:#2D63AE;color:#fff}.scz-poziomy{margin-top:14px}.scz-poziomy b{display:block;margin-bottom:7px;font-weight:400;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:rgba(61,61,59,0.45)}.scz-poziomy span{display:inline-block;margin:0 5px 5px 0;padding:5px 11px;font-size:12px;letter-spacing:.04em;border:1px solid rgba(45,99,174,0.25);color:rgba(61,61,59,0.8)}.scz-karta--szczyt{background:#A19FD2;box-shadow:8px 8px 0 rgba(45,99,174,0.32);padding:28px 32px;border:0 !important}@media (min-width: 768px){.scz-karta--szczyt{box-shadow:14px 14px 0 rgba(45,99,174,0.32)}}.scz-karta--szczyt h3,.scz-karta--szczyt .h3{font-size:29px}.scz-karta--szczyt p{color:rgba(61,61,59,0.8)}.scz-karta--szczyt .scz-wiek{background:rgba(255,255,255,0.45) !important}.scz-karta--szczyt .scz-poziomy b{color:rgba(61,61,59,0.55)}.scz-karta--szczyt .scz-poziomy span{border-color:rgba(61,61,59,0.3)}.scz-ranga{display:flex;gap:5px;margin-bottom:13px}.scz-ranga i{width:7px;height:7px;border-radius:50%;background:rgba(61,61,59,0.55)}.scz-etap{position:relative;display:grid;grid-template-columns:1fr;align-items:center;margin-bottom:30px}@media (min-width: 992px){.scz-etap{grid-template-columns:1fr 172px 1fr;margin-bottom:52px}}.js .scz-etap,.js .scz-wezel,.js .scz-tor__etap,.js .scz-banner{opacity:0;transform:translateY(24px);transition:opacity .5s ease, transform .5s ease}.scz-etap.scz-wid,.scz-wezel.scz-wid,.scz-tor__etap.scz-wid,.scz-banner.scz-wid{opacity:1;transform:none}@media (min-width: 992px){.scz-etap--l .scz-karta{grid-column:1}.scz-etap--p .scz-karta{grid-column:3}}.scz-wezel{position:relative;z-index:1;max-width:620px;margin:0 auto;box-shadow:8px 8px 0 rgba(194,213,238,0.85)}@media (min-width: 768px){.scz-wezel{box-shadow:14px 14px 0 rgba(194,213,238,0.85)}}.scz-wezel .scz-karta{box-shadow:none;padding:28px 32px}@media (min-width: 768px){.scz-wezel .scz-karta{box-shadow:none}}.scz-pas{margin:0;padding:13px 18px;background:#2D63AE;color:#fff;font-size:13px;letter-spacing:.12em;text-transform:uppercase;text-align:center}.scz-tory{display:grid;grid-template-columns:1fr;gap:30px;padding-top:30px}@media (min-width: 992px){.scz-tory{grid-template-columns:1fr 1fr;gap:56px;padding-top:150px;align-items:start}}@media (min-width: 992px){.scz-tory:has(>.scz-tor:only-child){grid-template-columns:minmax(0, 620px);justify-content:center;padding-top:110px}}.scz-tor{position:relative;z-index:1}.scz-tor__glowa{margin:0 0 22px}.scz-tor__glowa b{display:block;margin-bottom:6px;font-weight:400;font-size:22px;line-height:1.2;color:var(--scz-kolor)}.scz-tor__glowa span{display:block;font-size:14px;line-height:1.55;color:rgba(61,61,59,0.62)}.scz-tor__etap{position:relative;margin-bottom:34px}@media (min-width: 992px){.scz-tor__etap{margin-bottom:46px}}.scz-tor__etap .scz-karta{border-top:4px solid var(--scz-kolor)}.scz-kolor--darkBlue{--scz-kolor: #2D63AE}.scz-kolor--purple{--scz-kolor: #A19FD2}.scz-kolor--green{--scz-kolor: #7AC17E}.scz-kolor--pink{--scz-kolor: #F1A4B1}.scz-banner{position:relative;overflow:hidden;margin-top:70px;background-color:#fff;background-image:linear-gradient(112deg, rgba(194,213,238,0.62) 0%, rgba(194,213,238,0.16) 13%, rgba(194,213,238,0.04) 27%, rgba(194,213,238,0.03) 52%, rgba(161,159,210,0.2) 76%, rgba(161,159,210,0.7) 112%);border-top:1px solid rgba(45,99,174,0.12)}@media (min-width: 768px){.scz-banner{margin-top:100px}}.scz-banner__tresc{position:relative;z-index:2;padding-block:38px 46px}@media (min-width: 768px){.scz-banner__tresc{padding-block:64px 70px;max-width:760px}}.scz-banner h2,.scz-banner .h2{margin:0 0 14px;font-size:27px;line-height:1.15;letter-spacing:-.02em;text-wrap:balance;color:#3D3D3B}@media (min-width: 768px){.scz-banner h2,.scz-banner .h2{font-size:38px}}.scz-banner p{margin:0 0 26px;font-size:17px;line-height:1.7;color:rgba(61,61,59,0.7);max-width:52ch}.scz-banner__akcje{display:flex;flex-direction:column;align-items:flex-start;gap:14px}@media (min-width: 768px){.scz-banner__akcje{flex-direction:row;flex-wrap:wrap}}.scz-banner h2 .scz-akcent,.scz-banner .h2 .scz-akcent{display:inline;font-size:inherit;line-height:inherit;letter-spacing:inherit;text-transform:none;color:inherit;text-decoration:underline;text-decoration-color:#F1A4B1;text-decoration-thickness:.14em;text-underline-offset:.16em;text-decoration-skip-ink:none}.scz-wstega{position:absolute;left:0;right:0;bottom:0;z-index:3;display:flex;height:6px}@media (min-width: 768px){.scz-wstega{height:8px}}.scz-wstega i{flex:1}.scz-wstega i:nth-child(1){background:#C2D5EE}.scz-wstega i:nth-child(2){background:#7AC17E}.scz-wstega i:nth-child(3){background:#F3D589}.scz-wstega i:nth-child(4){background:#F1A4B1}.scz-wstega i:nth-child(5){background:#A19FD2}.scz-banner .btn,.scz-banner form button#active-now-submit,form .scz-banner button#active-now-submit,.scz-banner .wc-block-cart__submit-container a,.wc-block-cart__submit-container .scz-banner a,.scz-banner body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .scz-banner button,.scz-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .scz-banner button,.scz-banner body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .scz-banner .single_add_to_cart_button{margin:0;text-align:center}.scz-banner .btn.scz-btn--obrys,.scz-banner form button.scz-btn--obrys#active-now-submit,form .scz-banner button.scz-btn--obrys#active-now-submit,.scz-banner .wc-block-cart__submit-container a.scz-btn--obrys,.wc-block-cart__submit-container .scz-banner a.scz-btn--obrys,.scz-banner body.woocommerce-page .wc-block-checkout__actions_row button.scz-btn--obrys,body.woocommerce-page .wc-block-checkout__actions_row .scz-banner button.scz-btn--obrys,.scz-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button.scz-btn--obrys,body.woocommerce-page .wc-block-components-totals-coupon__content form .scz-banner button.scz-btn--obrys,.scz-banner body.woocommerce-page .summary.entry-summary form.cart .scz-btn--obrys.single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .scz-banner .scz-btn--obrys.single_add_to_cart_button{background:none;border:1px solid rgba(45,99,174,0.45);color:#2D63AE}.scz-banner .btn.scz-btn--obrys:hover,.scz-banner form button.scz-btn--obrys#active-now-submit:hover,form .scz-banner button.scz-btn--obrys#active-now-submit:hover,.scz-banner .wc-block-cart__submit-container a.scz-btn--obrys:hover,.wc-block-cart__submit-container .scz-banner a.scz-btn--obrys:hover,.scz-banner body.woocommerce-page .wc-block-checkout__actions_row button.scz-btn--obrys:hover,body.woocommerce-page .wc-block-checkout__actions_row .scz-banner button.scz-btn--obrys:hover,.scz-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button.scz-btn--obrys:hover,body.woocommerce-page .wc-block-components-totals-coupon__content form .scz-banner button.scz-btn--obrys:hover,.scz-banner body.woocommerce-page .summary.entry-summary form.cart .scz-btn--obrys.single_add_to_cart_button:hover,body.woocommerce-page .summary.entry-summary form.cart .scz-banner .scz-btn--obrys.single_add_to_cart_button:hover,.scz-banner .btn.scz-btn--obrys:focus,.scz-banner form button.scz-btn--obrys#active-now-submit:focus,form .scz-banner button.scz-btn--obrys#active-now-submit:focus,.scz-banner .wc-block-cart__submit-container a.scz-btn--obrys:focus,.wc-block-cart__submit-container .scz-banner a.scz-btn--obrys:focus,.scz-banner body.woocommerce-page .wc-block-checkout__actions_row button.scz-btn--obrys:focus,body.woocommerce-page .wc-block-checkout__actions_row .scz-banner button.scz-btn--obrys:focus,.scz-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button.scz-btn--obrys:focus,body.woocommerce-page .wc-block-components-totals-coupon__content form .scz-banner button.scz-btn--obrys:focus,.scz-banner body.woocommerce-page .summary.entry-summary form.cart .scz-btn--obrys.single_add_to_cart_button:focus,body.woocommerce-page .summary.entry-summary form.cart .scz-banner .scz-btn--obrys.single_add_to_cart_button:focus{background:rgba(45,99,174,0.08);border-color:#2D63AE;color:#2D63AE}@media (max-width: 991.98px){.scz-etap+.scz-etap,.scz-tor__etap+.scz-tor__etap,.scz-wezel,.scz-tor__etapy{position:relative}.scz-etap+.scz-etap::before,.scz-tor__etap+.scz-tor__etap::before,.scz-wezel::before{content:"";position:absolute;left:50%;top:-34px;width:3px;height:26px;transform:translateX(-50%);background-image:linear-gradient(rgba(45,99,174,0.38) 60%, transparent 0);background-size:3px 13px}.scz-wezel::before{top:-24px}}@media (prefers-reduced-motion: reduce){.js .scz-etap,.js .scz-wezel,.js .scz-tor__etap,.js .scz-banner{opacity:1;transform:none;transition:none}}.prd{position:relative;background:#fff;padding:16px 0 70px}@media (min-width: 768px){.prd{padding:22px 0 100px}}.prd h2,.prd .h2,.prd h3,.prd .h3{text-align:left;text-transform:none}.prd-wstep{display:flex;flex-direction:column;gap:18px}@media (min-width: 992px){.prd-wstep{flex-direction:row;align-items:flex-end;gap:60px}}@media (min-width: 992px){.prd-wstep__glowa{flex:1 1 52%;min-width:0}}@media (min-width: 992px){.prd-wstep__tekst{flex:1 1 48%;min-width:0;padding-left:26px;border-left:3px solid rgba(45,99,174,0.2)}}.prd-wstep__tekst p{margin:0 0 14px;font-size:18px;line-height:1.7;color:rgba(61,61,59,0.8)}.prd-wstep__tekst p:last-child{margin-bottom:0}.prd-wstep h2,.prd-wstep .h2{margin:0;font-size:32px;line-height:1.06;letter-spacing:-.02em}@media (min-width: 768px){.prd-wstep h2,.prd-wstep .h2{font-size:46px}}.prd-nad{display:block;text-transform:uppercase;font-size:13px;letter-spacing:.12em;color:#2D63AE;margin-bottom:12px}.prd-start{margin-top:44px;background:#C2D5EE;padding:28px 24px;display:flex;flex-direction:column;gap:26px}@media (min-width: 768px){.prd-start{margin-top:60px;padding:40px 44px}}@media (min-width: 992px){.prd-start{flex-direction:row;gap:56px}}@media (min-width: 992px){.prd-start__tekst{flex:1 1 46%;min-width:0}}.prd-start__tekst h3,.prd-start__tekst .h3{margin:0 0 12px;font-size:26px;line-height:1.15;letter-spacing:-.01em}@media (min-width: 768px){.prd-start__tekst h3,.prd-start__tekst .h3{font-size:30px}}.prd-start__tekst p{margin:0;font-size:17px;line-height:1.7;color:rgba(61,61,59,0.82)}@media (min-width: 992px){.prd-start__lista{flex:1 1 54%;min-width:0}}.prd-start__lista b{display:block;margin-bottom:14px;font-weight:400;font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:rgba(61,61,59,0.55)}.prd-start__lista ul{margin:0;padding:0;list-style:none}.prd-siatka{margin-top:26px;display:grid;grid-template-columns:minmax(0, 1fr);gap:22px}@media (min-width: 768px){.prd-siatka{margin-top:34px;grid-template-columns:repeat(2, minmax(0, 1fr))}}@media (min-width: 1200px){.prd-siatka{gap:26px}}.prd-karta{position:relative;background:#fff;border-top:4px solid var(--prd-kolor);box-shadow:0 10px 26px rgba(45,99,174,0.1);padding:26px 26px 28px}@media (min-width: 768px){.prd-karta{padding:30px 32px 32px}}@media (min-width: 768px){.prd-karta--szeroka{grid-column:1 / -1}.prd-karta--szeroka ul{columns:2;column-gap:44px}.prd-karta--szeroka li{break-inside:avoid}}.prd-karta h3,.prd-karta .h3{margin:0 0 8px;font-size:22px;line-height:1.2;letter-spacing:-.01em}.prd-karta>p{margin:0 0 16px;font-size:16px;line-height:1.65;color:rgba(61,61,59,0.68)}.prd-karta ul{margin:0;padding:0;list-style:none}.prd-kolor--lightBlue{--prd-kolor: #C2D5EE}.prd-kolor--green{--prd-kolor: #7AC17E}.prd-kolor--yellow{--prd-kolor: #F3D589}.prd-kolor--pink{--prd-kolor: #F1A4B1}.prd-kolor--purple{--prd-kolor: #A19FD2}.prd-kolor--darkBlue{--prd-kolor: #2D63AE}.prd-start__lista li,.prd-karta li{display:flex;align-items:flex-start;gap:13px;margin-bottom:12px;font-size:16px;line-height:1.55;color:rgba(61,61,59,0.84)}.prd-start__lista li:last-child,.prd-karta li:last-child{margin-bottom:0}.prd-znak{flex:0 0 auto;width:9px;height:16px;margin-top:4px;border-radius:0 999px 999px 0;background:var(--prd-kolor, #2D63AE)}.prd-start__lista{--prd-kolor: #2D63AE}.prd-uwaga{color:#3D3D3B}.prd-etykieta{display:inline-block;margin-left:9px;padding:2px 8px;background:#F3D589;color:#3D3D3B;font-style:normal;font-size:11px;letter-spacing:.1em;text-transform:uppercase;vertical-align:2px;white-space:nowrap}.prd-banner{margin-top:44px;background:#2D63AE;padding:30px 24px 32px;display:flex;flex-direction:column;gap:24px}@media (min-width: 768px){.prd-banner{margin-top:70px;padding:44px 48px 46px}}@media (min-width: 992px){.prd-banner{flex-direction:row;align-items:center;justify-content:space-between;gap:48px}}.prd-banner h2,.prd-banner .h2{margin:0 0 10px;font-size:27px;line-height:1.12;letter-spacing:-.02em;color:#fff}@media (min-width: 768px){.prd-banner h2,.prd-banner .h2{font-size:34px}}.prd-banner p{margin:0;font-size:17px;line-height:1.7;color:rgba(255,255,255,0.84);max-width:54ch}.prd-banner__akcje{display:flex;flex-direction:column;align-items:stretch;gap:14px;flex:0 0 auto}@media (min-width: 768px){.prd-banner__akcje{flex-direction:row;align-items:center}}.prd-banner .btn,.prd-banner form button#active-now-submit,form .prd-banner button#active-now-submit,.prd-banner .wc-block-cart__submit-container a,.wc-block-cart__submit-container .prd-banner a,.prd-banner body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .prd-banner button,.prd-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .prd-banner button,.prd-banner body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .prd-banner .single_add_to_cart_button{margin:0;text-align:center;white-space:nowrap}.prd-banner .btn.prd-btn--obrys,.prd-banner form button.prd-btn--obrys#active-now-submit,form .prd-banner button.prd-btn--obrys#active-now-submit,.prd-banner .wc-block-cart__submit-container a.prd-btn--obrys,.wc-block-cart__submit-container .prd-banner a.prd-btn--obrys,.prd-banner body.woocommerce-page .wc-block-checkout__actions_row button.prd-btn--obrys,body.woocommerce-page .wc-block-checkout__actions_row .prd-banner button.prd-btn--obrys,.prd-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button.prd-btn--obrys,body.woocommerce-page .wc-block-components-totals-coupon__content form .prd-banner button.prd-btn--obrys,.prd-banner body.woocommerce-page .summary.entry-summary form.cart .prd-btn--obrys.single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .prd-banner .prd-btn--obrys.single_add_to_cart_button{background:none;border:1px solid rgba(255,255,255,0.55);color:#fff}.prd-banner .btn.prd-btn--obrys:hover,.prd-banner form button.prd-btn--obrys#active-now-submit:hover,form .prd-banner button.prd-btn--obrys#active-now-submit:hover,.prd-banner .wc-block-cart__submit-container a.prd-btn--obrys:hover,.wc-block-cart__submit-container .prd-banner a.prd-btn--obrys:hover,.prd-banner body.woocommerce-page .wc-block-checkout__actions_row button.prd-btn--obrys:hover,body.woocommerce-page .wc-block-checkout__actions_row .prd-banner button.prd-btn--obrys:hover,.prd-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button.prd-btn--obrys:hover,body.woocommerce-page .wc-block-components-totals-coupon__content form .prd-banner button.prd-btn--obrys:hover,.prd-banner body.woocommerce-page .summary.entry-summary form.cart .prd-btn--obrys.single_add_to_cart_button:hover,body.woocommerce-page .summary.entry-summary form.cart .prd-banner .prd-btn--obrys.single_add_to_cart_button:hover,.prd-banner .btn.prd-btn--obrys:focus,.prd-banner form button.prd-btn--obrys#active-now-submit:focus,form .prd-banner button.prd-btn--obrys#active-now-submit:focus,.prd-banner .wc-block-cart__submit-container a.prd-btn--obrys:focus,.wc-block-cart__submit-container .prd-banner a.prd-btn--obrys:focus,.prd-banner body.woocommerce-page .wc-block-checkout__actions_row button.prd-btn--obrys:focus,body.woocommerce-page .wc-block-checkout__actions_row .prd-banner button.prd-btn--obrys:focus,.prd-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button.prd-btn--obrys:focus,body.woocommerce-page .wc-block-components-totals-coupon__content form .prd-banner button.prd-btn--obrys:focus,.prd-banner body.woocommerce-page .summary.entry-summary form.cart .prd-btn--obrys.single_add_to_cart_button:focus,body.woocommerce-page .summary.entry-summary form.cart .prd-banner .prd-btn--obrys.single_add_to_cart_button:focus{background:rgba(255,255,255,0.14);color:#fff}.knt{position:relative;background:#fff;padding:16px 0 0}@media (min-width: 768px){.knt{padding:22px 0 0}}.knt h2,.knt .h2,.knt h3,.knt .h3{text-align:left}.knt-wstep{display:grid;grid-template-columns:1fr;gap:18px;margin-bottom:40px}@media (min-width: 992px){.knt-wstep{grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);gap:60px;align-items:end;margin-bottom:56px}}.knt-wstep h2,.knt-wstep .h2{margin:0;font-size:30px;line-height:1.1;letter-spacing:-.02em;text-wrap:balance}@media (min-width: 768px){.knt-wstep h2,.knt-wstep .h2{font-size:40px}}.knt-nad{margin:0 0 10px;font-size:12px;line-height:1.5;letter-spacing:.14em;text-transform:uppercase;color:#2D63AE}.knt-lead{margin:0;font-size:17px;line-height:1.7;color:rgba(61,61,59,0.7);max-width:52ch}.knt-kanaly{display:grid;grid-template-columns:1fr;gap:22px}@media (min-width: 768px){.knt-kanaly{grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));gap:26px}}.knt-kanal{display:flex;flex-direction:column;align-items:flex-start;padding:26px 28px 28px;background:#fff;border:1px solid rgba(45,99,174,0.22);box-shadow:8px 8px 0 rgba(194,213,238,0.85)}@media (min-width: 768px){.knt-kanal{box-shadow:14px 14px 0 rgba(194,213,238,0.85)}}.knt-kanal--lightBlue .knt-ikona{background:#C2D5EE}.knt-kanal--green .knt-ikona{background:#7AC17E}.knt-kanal--yellow .knt-ikona{background:#F3D589}.knt-kanal--pink .knt-ikona{background:#F1A4B1}.knt-kanal--purple .knt-ikona{background:#A19FD2}.knt-kanal__etykieta{margin:0 0 8px;font-size:12px;line-height:1.5;letter-spacing:.14em;text-transform:uppercase;color:rgba(61,61,59,0.5)}.knt-kanal__tresc{margin:0;font-size:20px;line-height:1.45;color:#3D3D3B}.knt-kanal__tresc span{display:block}.knt-kanal__link{margin-top:16px;font-size:15px;color:#2D63AE;text-decoration:none;border-bottom:1px solid rgba(45,99,174,0.35);transition:color .15s ease, border-color .15s ease}.knt-kanal__link:hover,.knt-kanal__link:focus{color:#2b76e2;border-bottom-color:#2b76e2}.knt-ikona{display:flex;align-items:center;justify-content:center;width:46px;height:46px;margin-bottom:18px;color:#3D3D3B}.knt-ikona svg{width:24px;height:24px}.knt-dojazd{display:grid;grid-template-columns:1fr;gap:34px;margin-top:56px}@media (min-width: 992px){.knt-dojazd{grid-template-columns:minmax(0, 420px) minmax(0, 1fr);gap:56px;align-items:start;margin-top:84px}}.knt-dojazd h2,.knt-dojazd .h2{margin:0 0 22px;font-size:26px;line-height:1.15;letter-spacing:-.015em}@media (min-width: 768px){.knt-dojazd h2,.knt-dojazd .h2{font-size:32px}}.knt-lista{list-style:none;margin:0;padding:0}.knt-lista li{margin-bottom:18px;font-size:16px;line-height:1.65;color:rgba(61,61,59,0.74)}.knt-lista li:last-child{margin-bottom:0}.knt-lista b{display:block;margin-bottom:3px;font-weight:400;color:#3D3D3B}.knt-godziny{margin-top:30px;padding:22px 24px;background:rgba(194,213,238,0.35)}.knt-godziny__tytul{display:block;margin-bottom:14px;font-weight:400;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:#2D63AE}.knt-godziny dl{display:grid;grid-template-columns:1fr auto;gap:9px 18px;margin:0;font-size:16px}.knt-godziny dt{font-weight:400;color:rgba(61,61,59,0.74)}.knt-godziny dd{margin:0;text-align:right;color:#3D3D3B;font-variant-numeric:tabular-nums}.knt-godziny__uwaga{margin:14px 0 0;font-size:14px;line-height:1.6;color:rgba(61,61,59,0.6)}.knt-mapa{position:relative;border:1px solid rgba(45,99,174,0.22);box-shadow:8px 8px 0 rgba(194,213,238,0.85);aspect-ratio:4 / 3;max-width:100%}@media (min-width: 768px){.knt-mapa{box-shadow:14px 14px 0 rgba(194,213,238,0.85);aspect-ratio:16 / 10}}.knt-mapa iframe{display:block;width:100%;height:100%;border:0;pointer-events:none}.knt-mapa__klik{position:absolute;inset:0;display:block;text-decoration:none}.knt-mapa__klik:focus-visible{outline:3px solid #2D63AE;outline-offset:3px}.knt-pinezka{position:absolute;left:50%;top:50%;transform:translate(-50%, calc(-100% + 5px));display:flex;flex-direction:column;align-items:center;pointer-events:none}.knt-pinezka__karta{position:relative;padding:9px 16px 13px;background:#fff;border:1px solid rgba(45,99,174,0.3);box-shadow:0 6px 18px rgba(61,61,59,0.28);font-size:15px;line-height:1.2;letter-spacing:-.01em;color:#3D3D3B;white-space:nowrap}.knt-pinezka__wstega{position:absolute;left:0;right:0;bottom:0;display:flex;height:4px}.knt-pinezka__wstega i{flex:1}.knt-pinezka__wstega i:nth-child(1){background:#C2D5EE}.knt-pinezka__wstega i:nth-child(2){background:#7AC17E}.knt-pinezka__wstega i:nth-child(3){background:#F3D589}.knt-pinezka__wstega i:nth-child(4){background:#F1A4B1}.knt-pinezka__wstega i:nth-child(5){background:#A19FD2}.knt-pinezka__pin{display:block;margin-top:5px;filter:drop-shadow(0 4px 8px rgba(61,61,59,0.35))}.knt-banner{margin-top:70px;background:#2D63AE}@media (min-width: 768px){.knt-banner{margin-top:100px}}.knt-banner__tresc{padding-block:38px 42px}@media (min-width: 768px){.knt-banner__tresc{padding-block:60px 64px;max-width:760px}}.knt-banner h2,.knt-banner .h2{margin:0 0 14px;font-size:27px;line-height:1.15;letter-spacing:-.02em;text-wrap:balance;color:#fff}@media (min-width: 768px){.knt-banner h2,.knt-banner .h2{font-size:36px}}.knt-banner p{margin:0 0 26px;font-size:17px;line-height:1.7;color:rgba(255,255,255,0.82);max-width:52ch}.knt-banner__akcje{display:flex;flex-direction:column;align-items:flex-start;gap:14px}@media (min-width: 768px){.knt-banner__akcje{flex-direction:row;flex-wrap:wrap}}.knt-banner .btn,.knt-banner form button#active-now-submit,form .knt-banner button#active-now-submit,.knt-banner .wc-block-cart__submit-container a,.wc-block-cart__submit-container .knt-banner a,.knt-banner body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .knt-banner button,.knt-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .knt-banner button,.knt-banner body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .knt-banner .single_add_to_cart_button{margin:0;text-align:center}.knt-banner .btn.knt-btn--obrys,.knt-banner form button.knt-btn--obrys#active-now-submit,form .knt-banner button.knt-btn--obrys#active-now-submit,.knt-banner .wc-block-cart__submit-container a.knt-btn--obrys,.wc-block-cart__submit-container .knt-banner a.knt-btn--obrys,.knt-banner body.woocommerce-page .wc-block-checkout__actions_row button.knt-btn--obrys,body.woocommerce-page .wc-block-checkout__actions_row .knt-banner button.knt-btn--obrys,.knt-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button.knt-btn--obrys,body.woocommerce-page .wc-block-components-totals-coupon__content form .knt-banner button.knt-btn--obrys,.knt-banner body.woocommerce-page .summary.entry-summary form.cart .knt-btn--obrys.single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .knt-banner .knt-btn--obrys.single_add_to_cart_button{background:none;border:1px solid rgba(255,255,255,0.5);color:#fff}.knt-banner .btn.knt-btn--obrys:hover,.knt-banner form button.knt-btn--obrys#active-now-submit:hover,form .knt-banner button.knt-btn--obrys#active-now-submit:hover,.knt-banner .wc-block-cart__submit-container a.knt-btn--obrys:hover,.wc-block-cart__submit-container .knt-banner a.knt-btn--obrys:hover,.knt-banner body.woocommerce-page .wc-block-checkout__actions_row button.knt-btn--obrys:hover,body.woocommerce-page .wc-block-checkout__actions_row .knt-banner button.knt-btn--obrys:hover,.knt-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button.knt-btn--obrys:hover,body.woocommerce-page .wc-block-components-totals-coupon__content form .knt-banner button.knt-btn--obrys:hover,.knt-banner body.woocommerce-page .summary.entry-summary form.cart .knt-btn--obrys.single_add_to_cart_button:hover,body.woocommerce-page .summary.entry-summary form.cart .knt-banner .knt-btn--obrys.single_add_to_cart_button:hover,.knt-banner .btn.knt-btn--obrys:focus,.knt-banner form button.knt-btn--obrys#active-now-submit:focus,form .knt-banner button.knt-btn--obrys#active-now-submit:focus,.knt-banner .wc-block-cart__submit-container a.knt-btn--obrys:focus,.wc-block-cart__submit-container .knt-banner a.knt-btn--obrys:focus,.knt-banner body.woocommerce-page .wc-block-checkout__actions_row button.knt-btn--obrys:focus,body.woocommerce-page .wc-block-checkout__actions_row .knt-banner button.knt-btn--obrys:focus,.knt-banner body.woocommerce-page .wc-block-components-totals-coupon__content form button.knt-btn--obrys:focus,body.woocommerce-page .wc-block-components-totals-coupon__content form .knt-banner button.knt-btn--obrys:focus,.knt-banner body.woocommerce-page .summary.entry-summary form.cart .knt-btn--obrys.single_add_to_cart_button:focus,body.woocommerce-page .summary.entry-summary form.cart .knt-banner .knt-btn--obrys.single_add_to_cart_button:focus{background:rgba(255,255,255,0.14);color:#fff}.offer-gymnastic .offer .element{position:relative;background:#fff !important;border:1px solid rgba(45,99,174,0.22);color:#3D3D3B;transform:none !important;box-shadow:8px 8px 0 var(--ofr-cien, rgba(194,213,238,0.85));transition:box-shadow .18s ease, translate .18s ease}@media (min-width: 768px){.offer-gymnastic .offer .element{box-shadow:12px 12px 0 var(--ofr-cien, rgba(194,213,238,0.85))}}.offer-gymnastic .offer .element span{color:#3D3D3B !important}.offer-gymnastic .offer .element:hover,.offer-gymnastic .offer .element:focus-within{translate:4px 4px;box-shadow:4px 4px 0 var(--ofr-cien, rgba(194,213,238,0.85))}@media (min-width: 768px){.offer-gymnastic .offer .element:hover,.offer-gymnastic .offer .element:focus-within{box-shadow:6px 6px 0 var(--ofr-cien, rgba(194,213,238,0.85))}}.offer-gymnastic .offer .element.color-scheme-1{--ofr-cien: rgba(241,164,177,0.62)}.offer-gymnastic .offer .element.color-scheme-2{--ofr-cien: rgba(45,99,174,0.32)}.offer-gymnastic .offer .element.color-scheme-3{--ofr-cien: rgba(122,193,126,0.55)}.offer-gymnastic .offer .element.color-scheme-4{--ofr-cien: rgba(161,159,210,0.58)}.offer-gymnastic .offer .element.color-scheme-5{--ofr-cien: rgba(243,213,137,0.85)}.offer-gymnastic .offer .element.color-scheme-6{--ofr-cien: rgba(194,213,238,0.95)}.wyd{position:relative;background:#fff;padding:16px 0 70px}@media (min-width: 768px){.wyd{padding:22px 0 100px}}.wyd h2,.wyd .h2,.wyd h3,.wyd .h3{text-align:left}.wyd-tlo--pink{background:#F1A4B1}.wyd-tlo--purple{background:#A19FD2}.wyd-tlo--yellow{background:#F3D589}.wyd-tlo--green{background:#7AC17E}.wyd-tlo--lightBlue{background:#C2D5EE}.wyd-tlo--darkBlue{background:#2D63AE}.wyd-cien--pink{--wyd-cien: rgba(241,164,177,0.55)}.wyd-cien--purple{--wyd-cien: rgba(161,159,210,0.55)}.wyd-cien--yellow{--wyd-cien: rgba(243,213,137,0.85)}.wyd-cien--green{--wyd-cien: rgba(122,193,126,0.5)}.wyd-cien--lightBlue{--wyd-cien: rgba(194,213,238,0.9)}.wyd-cien--darkBlue{--wyd-cien: rgba(45,99,174,0.3)}.wyd-wstep{display:grid;grid-template-columns:1fr;gap:18px;margin-bottom:32px}@media (min-width: 992px){.wyd-wstep{grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);gap:60px;align-items:end;margin-bottom:40px}}.wyd-wstep h2,.wyd-wstep .h2{margin:0;font-size:30px;line-height:1.1;letter-spacing:-.02em;text-wrap:balance}@media (min-width: 768px){.wyd-wstep h2,.wyd-wstep .h2{font-size:40px}}.wyd-nad{margin:0 0 10px;font-size:12px;line-height:1.5;letter-spacing:.14em;text-transform:uppercase;color:#2D63AE}.wyd-lead{margin:0;font-size:17px;line-height:1.7;color:rgba(61,61,59,0.7);max-width:52ch}.wyd-przel{display:inline-flex;flex-wrap:wrap;border:1px solid rgba(45,99,174,0.22);box-shadow:8px 8px 0 rgba(194,213,238,0.85);margin-bottom:10px}.wyd-przel button{padding:13px 22px;border:0;border-right:1px solid rgba(45,99,174,0.16);background:#fff;color:#3D3D3B;font-size:15px;line-height:1.3;cursor:pointer}.wyd-przel button:last-child{border-right:0}.wyd-przel button[aria-selected="true"]{background:#2D63AE;color:#fff}.wyd-zakres{margin:0 0 26px;font-size:14px;color:rgba(61,61,59,0.55)}.wyd-wstega{display:grid;grid-template-columns:1fr;gap:12px;margin-bottom:30px}@media (min-width: 768px){.wyd-wstega{grid-template-columns:repeat(2, 1fr)}}@media (min-width: 992px){.wyd-wstega{grid-template-columns:repeat(var(--wyd-kolumn, 5), minmax(0, 1fr))}}.wyd-msc{position:relative;padding:13px 13px 15px;background:#fff;border:1px solid rgba(45,99,174,0.22);box-shadow:10px 10px 0 rgba(194,213,238,0.85)}@media (min-width: 992px){.wyd-msc{min-height:186px}}.wyd-msc--pusty{box-shadow:none;border-style:dashed;border-color:rgba(45,99,174,0.16);background:rgba(194,213,238,0.1)}.wyd-msc--teraz{border-color:#2D63AE;box-shadow:10px 10px 0 rgba(45,99,174,0.26)}.wyd-msc>b{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:11px;padding-bottom:9px;border-bottom:1px solid rgba(45,99,174,0.14);font-weight:400;font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:rgba(61,61,59,0.55)}.wyd-msc>b em{font-style:normal;font-size:11px;letter-spacing:0}.wyd-msc--teraz>b{color:#2D63AE}.wyd-teraz{position:absolute;top:-10px;left:13px;padding:3px 8px;background:#2D63AE;color:#fff;font-size:10px;letter-spacing:.12em;text-transform:uppercase}.wyd-ev{display:flex;gap:9px;margin:0 -7px 4px;padding:5px 7px;font-size:13px;line-height:1.35;color:#3D3D3B;text-decoration:none;transition:background-color .15s ease, translate .15s ease}.wyd-ev:hover,.wyd-ev:focus-visible{background:rgba(194,213,238,0.5);translate:3px 0}.wyd-ev:hover span,.wyd-ev:focus-visible span{color:#2D63AE}.wyd-ev:hover i,.wyd-ev:focus-visible i{width:11px}.wyd-ev:focus-visible{outline:2px solid #2D63AE;outline-offset:1px}.wyd-ev i{flex:0 0 auto;display:block;width:8px;align-self:stretch;transition:width .15s ease}.wyd-ev u{display:block;text-decoration:none;font-size:11px;color:rgba(61,61,59,0.5)}.wyd-nic{margin:6px 0 0;font-size:13px;color:rgba(61,61,59,0.4)}.wyd-filtry{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:26px}.wyd-chip{display:inline-flex;align-items:center;gap:7px;padding:7px 13px;border:1px solid rgba(45,99,174,0.25);background:#fff;color:#3D3D3B;font-size:14px;cursor:pointer}.wyd-chip i{display:block;width:10px;height:10px}.wyd-chip.is-on{background:#2D63AE;border-color:#2D63AE;color:#fff}.wyd-grupa__tytul{margin:28px 0 12px;padding-bottom:7px;border-bottom:1px solid rgba(45,99,174,0.18);font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:#2D63AE}.wyd-wpis{display:grid;grid-template-columns:1fr;gap:14px;margin-bottom:14px;padding:16px 18px;background:#fff;border:1px solid rgba(45,99,174,0.22);box-shadow:8px 8px 0 var(--wyd-cien, rgba(194,213,238,0.85))}@media (min-width: 768px){.wyd-wpis{grid-template-columns:112px minmax(0, 1fr) auto;gap:22px;align-items:center;box-shadow:12px 12px 0 var(--wyd-cien, rgba(194,213,238,0.85))}}.wyd-wpis h3,.wyd-wpis .h3{margin:0 0 4px;font-size:20px;line-height:1.25}.wyd-wpis h3 a,.wyd-wpis .h3 a{color:#3D3D3B;text-decoration:none}.wyd-wpis h3 a:hover,.wyd-wpis .h3 a:hover,.wyd-wpis h3 a:focus,.wyd-wpis .h3 a:focus{color:#2D63AE}.wyd-data{text-align:left}@media (min-width: 768px){.wyd-data{text-align:center;padding-right:14px;border-right:1px solid rgba(45,99,174,0.14)}}.wyd-data strong{display:block;font-size:30px;line-height:1;letter-spacing:-.02em;font-weight:400;font-variant-numeric:tabular-nums}.wyd-data span{display:block;margin-top:4px;font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:rgba(61,61,59,0.55)}.wyd-data em{display:block;font-style:normal;font-size:16px;line-height:1.25;color:rgba(61,61,59,0.7)}.wyd-meta{display:flex;flex-wrap:wrap;gap:6px 14px;font-size:14px;color:rgba(61,61,59,0.62)}.wyd-typ{display:inline-flex;align-items:center;gap:6px;font-size:12px;letter-spacing:.08em;text-transform:uppercase}.wyd-typ i{display:block;width:9px;height:16px;border-radius:0 999px 999px 0}.wyd-wpis .btn.wyd-akcja,.wyd-wpis form button.wyd-akcja#active-now-submit,form .wyd-wpis button.wyd-akcja#active-now-submit,.wyd-wpis .wc-block-cart__submit-container a.wyd-akcja,.wc-block-cart__submit-container .wyd-wpis a.wyd-akcja,.wyd-wpis body.woocommerce-page .wc-block-checkout__actions_row button.wyd-akcja,body.woocommerce-page .wc-block-checkout__actions_row .wyd-wpis button.wyd-akcja,.wyd-wpis body.woocommerce-page .wc-block-components-totals-coupon__content form button.wyd-akcja,body.woocommerce-page .wc-block-components-totals-coupon__content form .wyd-wpis button.wyd-akcja,.wyd-wpis body.woocommerce-page .summary.entry-summary form.cart .wyd-akcja.single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .wyd-wpis .wyd-akcja.single_add_to_cart_button{margin:0;justify-self:start;text-align:center;white-space:nowrap}.wyd-brak{margin:26px 0 0;font-size:16px;color:rgba(61,61,59,0.6)}.color-scheme-1{background:#F1A4B1 !important}.color-scheme-1 span{background:#A19FD2}.color-scheme-1 span svg{background:#fff}.color-scheme-2{background:#2D63AE !important;color:#fff !important}.color-scheme-2.element span{color:#fff !important;font-weight:300}.color-scheme-2 span{background:#F3D589;color:#000}.color-scheme-2 span svg{background:#fff}.color-scheme-3{background:#7AC17E !important}.color-scheme-3 span{background:#C2D5EE;color:#000}.color-scheme-3 span svg{background:#fff}.color-scheme-4{background:#A19FD2 !important}.color-scheme-4 span{background:#F1A4B1;color:#000}.color-scheme-4 span svg{background:#fff}.color-scheme-5{background:#F3D589 !important}.color-scheme-5 span{background:#2D63AE;color:#fff}.color-scheme-5 span svg{background:#fff}.color-scheme-6{background:#C2D5EE !important;transition:0.5s}.color-scheme-6:hover{background:#8fa2bb !important;color:#fff !important}.color-scheme-6 span{background:#F1A4B1;color:#000}.color-scheme-6 span svg{background:#fff}.color-scheme-7{background:transparent !important;border:1px solid #fff;color:#fff !important;transition:0.5s}.color-scheme-7:hover{background:#fff !important;color:#F1A4B1 !important}body{font-family:"roc-grotesk", sans-serif;font-weight:400;font-style:normal;color:#3c3c3b;font-size:20px;font-weight:normal;line-height:1.2;overflow-x:hidden}h1,.h1,h3,.h3,h4,.h4{font-family:"roc-grotesk", sans-serif;font-weight:400;font-style:normal;line-height:1.2}h1,.h1,.h1{font-weight:400;color:#F1A4B1;margin-bottom:20px;text-align:center;font-size:50px}@media (min-width: 768px){h1,.h1,.h1{text-align:left;font-size:60px}}h1 .sub,.h1 .sub,.h1 .sub{color:#2b76e2;display:block}h2,.h2{text-align:center;margin-bottom:10px;color:#3D3D3B;font-size:30px;line-height:1.5;font-family:"roc-grotesk", sans-serif;font-weight:400;font-style:normal}@media (min-width: 768px){h2,.h2{font-size:55px}}h2 span,.h2 span{text-transform:uppercase;color:#3D3D3B;display:block;font-size:15px}@media (min-width: 768px){h2 span,.h2 span{font-size:20px}}h4,.h4{text-align:center;color:#2D63AE;font-weight:500}h4 small,.h4 small,h4 .small,.h4 .small{font-size:15px;display:block;color:#3D3D3B}p{font-size:20px;line-height:2}select{-webkit-appearance:none}.btn,form button#active-now-submit,.wc-block-cart__submit-container a,body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button{display:inline-block;margin:0px auto;padding:15px 30px;border:none;border-radius:0px;font-size:20px;font-weight:400;line-height:30px;color:#3D3D3B;background-color:#F3D589}.btn:hover,form button#active-now-submit:hover,.wc-block-cart__submit-container a:hover,body.woocommerce-page .wc-block-checkout__actions_row button:hover,body.woocommerce-page .wc-block-components-totals-coupon__content form button:hover,body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button:hover{background:#F1A4B1}.btn.small,form button.small#active-now-submit,.wc-block-cart__submit-container a.small,body.woocommerce-page .wc-block-checkout__actions_row button.small,body.woocommerce-page .wc-block-components-totals-coupon__content form button.small,body.woocommerce-page .summary.entry-summary form.cart .small.single_add_to_cart_button{padding:7px 20px;margin:auto;font-size:20px}form .form-control,form input[type="text"],form input[type="email"],form select{border:2px solid #8C2457;padding:15px 20px}form .form-control.error,form input.error[type="text"],form input.error[type="email"],form select.error{border-color:#f30000}form .form-check-input{border:2px solid #8C2457}.form-check-label a{color:#000;font-weight:500}body.mobile-menu{overflow:hidden}body.mobile-menu .site-header .nav nav .menu-button-container{position:relative;z-index:111}body.mobile-menu .site-header .nav nav .menu-button-container #primary-mobile-menu .dropdown-icon.open{display:none}body.mobile-menu .site-header .nav nav .menu-button-container #primary-mobile-menu .dropdown-icon.close{display:block}body.mobile-menu .site-header .nav nav ul{display:flex;opacity:1}.site-header{padding:25px 0px;width:100%;background:#fff;z-index:20;top:0px;border-bottom:1px solid #f2f2f2}.site-header .container{display:flex;justify-content:space-between}.site-header .container .logo{width:fit-content;display:flex;align-items:center}.site-header .container .logo img{width:190px;height:auto}.site-header .container .nav{display:flex;align-items:center}.site-header .container .nav nav{order:2}@media (min-width: 1200px){.site-header .container .nav nav{order:1}}@media (min-width: 1200px){.site-header .container .nav nav .menu-button-container{display:none}}.site-header .container .nav nav .menu-button-container #primary-mobile-menu{margin-left:0px;padding-left:20px;margin-bottom:0px;margin-top:0px;border:0px;background-color:transparent;margin-right:0px}.site-header .container .nav nav .menu-button-container #primary-mobile-menu .dropdown-icon{color:#3c3c3b}.site-header .container .nav nav .menu-button-container #primary-mobile-menu .dropdown-icon.close{display:none}.site-header .container .nav nav .menu-button-container #primary-mobile-menu .dropdown-icon svg{fill:#3c3c3b;color:#3c3c3b}.site-header .container .nav nav ul{margin-left:0px;padding-left:0px;margin-bottom:0px;display:flex}@media (max-width: 1199.98px){.site-header .container .nav nav ul{position:fixed;top:0px;left:0px;width:100%;height:100vh;margin-top:0px;display:none;flex-direction:column;align-items:center;justify-content:center;z-index:11;background:#fff;transition:all 2s linear;opacity:0}.site-header .container .nav nav ul li{padding:20px 15px !important}}.site-header .container .nav nav ul>li{display:inline;padding:8px 15px}.site-header .container .nav nav ul>li.current-menu-item a{border-bottom:2px solid #F1A4B1;padding-bottom:5px}.site-header .container .nav nav ul>li.menu-item-has-children{position:relative;text-align:center}@media (max-width: 767.98px){.site-header .container .nav nav ul>li.menu-item-has-children{background:#f1a3b2}}.site-header .container .nav nav ul>li.menu-item-has-children:hover{background:#f1a3b2}.site-header .container .nav nav ul>li.menu-item-has-children:hover a{color:#fff}.site-header .container .nav nav ul>li.menu-item-has-children:hover .sub-menu{display:flex;left:0px}.site-header .container .nav nav ul>li.menu-item-has-children:hover .sub-menu a{color:#3D3D3B}.site-header .container .nav nav ul>li.menu-item-has-children .sub-menu-toggle{display:none}.site-header .container .nav nav ul>li.menu-item-has-children .sub-menu{flex-direction:column;height:auto;position:static}@media (min-width: 768px){.site-header .container .nav nav ul>li.menu-item-has-children .sub-menu{display:none;position:absolute;width:300px;background:#fff;border:2px solid #f1a3b2;margin-top:2px}}.site-header .container .nav nav ul>li.menu-item-has-children .sub-menu li{padding:10px 15px !important}@media (min-width: 992px){.site-header .container .nav nav ul>li.menu-item-has-children .sub-menu li{padding:0px 0px !important;text-align:left}}.site-header .container .nav nav ul>li.menu-item-has-children .sub-menu li a{padding:10px 20px;display:block}.site-header .container .nav nav ul>li.menu-item-has-children .sub-menu li a:hover{border:0px;background-color:#f1a3b2;color:#fff}.site-header .container .nav nav ul>li a{font-size:20px;color:#3c3c3b;text-decoration:none;font-weight:500}@media (max-width: 991.98px){.site-header .container .nav nav ul>li a{padding-bottom:10px;display:block}}@media (min-width: 992px){.site-header .container .nav nav ul>li a{font-size:16px}}.site-header .container .nav nav ul>li a:hover{border-bottom:2px solid #F1A4B1;padding-bottom:5px}section.map{position:relative}.border{position:relative;z-index:10;display:flex;position:absolute;width:100%}.border.top{top:0px}.border.bottom{bottom:0px}.border div{width:calc(100% / 3);height:5px}.border div:nth-child(1){background-color:#E12B87}.border div:nth-child(2){background-color:#33ACE3}.border div:nth-child(3){background-color:#61256E}.activity{text-align:center;margin-bottom:100px}.activity .container .points{display:flex;margin-top:100px;flex-wrap:wrap}@media (min-width: 992px){.activity .container .points{flex-wrap:nowrap}}.activity .container .points svg{margin-bottom:35px;height:130px}.activity .container .points h4,.activity .container .points .h4{font-weight:400;font-size:20px;color:#3D3D3B;position:relative;top:-20px}.offer .icons{position:relative}.offer .icons .right{position:absolute;right:0px;top:-50px}.offer .icons .right svg{display:block}.offer .icons .right svg.square{position:relative;margin-top:80px}.offer .icons .right svg.circle{right:-60px;position:relative;margin-top:70px}.offer .icons .right svg.triangle{position:relative;right:15px;margin-top:80px}.offer .container{padding-bottom:55px;margin-bottom:55px;border-bottom:1px solid #B1B1B1;position:relative;z-index:1}.offer .container .boxes{display:flex;justify-content:center;flex-direction:column;flex-wrap:wrap}@media (min-width: 576px){.offer .container .boxes{flex-direction:row}}.offer .container .boxes .box-item{text-align:center;margin-bottom:50px}@media (min-width: 576px){.offer .container .boxes .box-item{margin-bottom:50px}}.offer .container .boxes .box-item a{color:#000;display:block}.offer .container .boxes .box-item .box{display:none;text-align:center;display:flex;flex-direction:column;transition:background-color 0.5s ease;width:245px;margin:auto;cursor:pointer}@media (min-width: 576px){.offer .container .boxes .box-item .box{margin:0px 15px}}@media (min-width: 768px){.offer .container .boxes .box-item .box{margin:0px 30px}}.offer .container .boxes .box-item .box.no-offer{width:fit-content}.offer .container .boxes .box-item .box.no-offer .wrap{padding:20px 30px}.offer .container .boxes .box-item .box.no-offer .wrap h3,.offer .container .boxes .box-item .box.no-offer .wrap .h3{color:#fff;margin-bottom:0px}.offer .container .boxes .box-item .box .image{position:relative;display:flex;align-items:center;justify-content:center;background:#fff;border-radius:16px}.offer .container .boxes .box-item .box .image svg{position:absolute}.offer .container .boxes .box-item .box .image img{border-radius:16px;opacity:0.7;transition:opacity 0.5s ease}.offer .container .boxes .box-item .box .desc{display:flex;flex-direction:column;padding:20px}.offer .container .boxes .box-item .box .desc h5,.offer .container .boxes .box-item .box .desc .h5{color:#fff;font-size:20px;display:block}.offer .container .boxes .box-item .box .desc .date{background-color:#fff;font-weight:500;font-size:19px;padding:5px 0px;margin-top:10px}.offer .container .boxes .box-item .box .desc .price{color:#fff;font-weight:500;font-size:35px;padding:10px 0px}.offer .container .boxes .box-item .box .desc .btn,.offer .container .boxes .box-item .box .desc form button#active-now-submit,form .offer .container .boxes .box-item .box .desc button#active-now-submit,.offer .container .boxes .box-item .box .desc .wc-block-cart__submit-container a,.wc-block-cart__submit-container .offer .container .boxes .box-item .box .desc a,.offer .container .boxes .box-item .box .desc body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .offer .container .boxes .box-item .box .desc button,.offer .container .boxes .box-item .box .desc body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .offer .container .boxes .box-item .box .desc button,.offer .container .boxes .box-item .box .desc body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .offer .container .boxes .box-item .box .desc .single_add_to_cart_button{color:#000;padding:5px 15px;font-size:13px}.offer .container .boxes .box-item .box .desc .btn:hover,.offer .container .boxes .box-item .box .desc form button#active-now-submit:hover,form .offer .container .boxes .box-item .box .desc button#active-now-submit:hover,.offer .container .boxes .box-item .box .desc .wc-block-cart__submit-container a:hover,.wc-block-cart__submit-container .offer .container .boxes .box-item .box .desc a:hover,.offer .container .boxes .box-item .box .desc body.woocommerce-page .wc-block-checkout__actions_row button:hover,body.woocommerce-page .wc-block-checkout__actions_row .offer .container .boxes .box-item .box .desc button:hover,.offer .container .boxes .box-item .box .desc body.woocommerce-page .wc-block-components-totals-coupon__content form button:hover,body.woocommerce-page .wc-block-components-totals-coupon__content form .offer .container .boxes .box-item .box .desc button:hover,.offer .container .boxes .box-item .box .desc body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button:hover,body.woocommerce-page .summary.entry-summary form.cart .offer .container .boxes .box-item .box .desc .single_add_to_cart_button:hover{background-color:yellow}.price .icons{position:relative}.price .icons .left{position:absolute;left:0px;top:0px}.price .icons .left svg{display:block}.price .icons .left svg.triangle{position:relative;left:47px}.price .icons .left svg.square{left:114px;position:relative;margin-top:70px}.price .icons .left svg.circle{position:relative;left:47px;margin-top:50px}.price .icons .right{position:absolute;right:0px;top:50px}.price .icons .right svg{display:block}.price .icons .right svg.square{position:relative;right:47px}.price .icons .right svg.circle{right:114px;position:relative;margin-top:70px}.price .icons .right svg.triangle{position:relative;right:47px;margin-top:50px}.price .container{padding-bottom:55px;margin-bottom:55px;border-bottom:1px solid #B1B1B1;position:relative;z-index:1}.price .container .boxes{display:flex;justify-content:center;flex-direction:column;margin-bottom:50px}@media (min-width: 576px){.price .container .boxes{flex-direction:row}}.price .container .boxes .box-item{text-align:center;margin-bottom:50px}@media (min-width: 576px){.price .container .boxes .box-item{margin-bottom:0px}}.price .container .boxes .box-item a{font-size:25px;padding:20px 70px;position:relative;top:56px}.price .container .boxes .box-item .box{display:none;border-radius:16px;background-color:#33ACE3;text-align:center;display:flex;flex-direction:column;transition:background-color 0.5s ease;width:340px;margin:auto;padding:25px 20px;cursor:pointer}@media (min-width: 576px){.price .container .boxes .box-item .box{margin:0px 15px}}@media (min-width: 768px){.price .container .boxes .box-item .box{margin:0px 30px}}.price .container .boxes .box-item .box h5,.price .container .boxes .box-item .box .h5{color:#fff;font-size:25px;display:block;border-bottom:2px solid #fff;padding-bottom:10px;margin-bottom:30px}.price .container .boxes .box-item .box .desc{display:flex;flex-direction:column;padding:20px;background-color:#fff;border-radius:16px;margin-bottom:50px;margin-bottom:-25px}.price .container .boxes .box-item .box .desc h6,.price .container .boxes .box-item .box .desc .h6{color:#3c3c3b;font-size:20px;display:block;padding-bottom:10px}.price .container .boxes .box-item .box .desc .price{font-family:Poppins;color:#E12B87;padding:10px 0px;font-weight:bold;font-size:60px;margin-bottom:10px}.price .container .boxes .box-item .box .desc .price small,.price .container .boxes .box-item .box .desc .price .small{font-size:30px !important;text-transform:uppercase}.registration{margin-bottom:80px;position:relative;z-index:1}.registration .icons{position:relative}.registration .icons .left{position:absolute;left:0px}.registration .icons .left svg{display:block}.registration .icons .left svg.arrow{position:relative;margin-top:80px}.registration .icons .left svg.triangle{position:relative;left:35px;margin-top:65px}.registration .icons .left svg.square{left:160px;position:relative;margin-top:40px}.registration .icons .left svg.circle{left:60px;position:relative;margin-top:30px}.registration form{margin:auto}@media (min-width: 768px){.registration form{width:600px}}.registration form .form-group{margin-bottom:35px}.registration form .form-group.form-check{margin-bottom:60px}.registration form .form-check-input{margin-top:1px}.registration form .form-check-input a{color:#000;font-weight:400}.registration form label.error{color:#f30000;font-size:16px}.questions{display:flex;justify-content:center;margin-bottom:50px;position:relative}.questions .deco-2{position:absolute;z-index:1;left:100px;margin-top:20px;width:390px;transform:rotate(-165deg) !important;display:none}@media (min-width: 768px){.questions .deco-2{display:block}}.questions .deco-2 path{fill:#A19FD2}.questions .gymek1{transform:rotate(0deg) !important;position:absolute;width:200px;z-index:100;margin-top:-144px;margin-right:-140px}@media (min-width: 768px){.questions .gymek1{margin-right:-390px}}.questions .icons .right{position:absolute;right:0px;top:-50px}.questions .icons .right svg{display:block}.questions .icons .right svg.square{position:relative;right:47px}.questions .icons .right svg.circle{right:114px;position:relative;margin-top:70px}.questions .icons .right svg.triangle{position:relative;right:47px;margin-top:50px}.questions div.content{text-align:center;color:#3D3D3B;background-color:#C2D5EE;width:90%;padding:50px 30px;z-index:1}@media (min-width: 576px){.questions div.content{padding:50px 80px}}@media (min-width: 992px){.questions div.content{width:600px;padding:50px 100px}}.questions div.content h2,.questions div.content .h2{margin-bottom:20px;color:#3D3D3B}.questions div.content a{color:#2D63AE;text-decoration:none}.questions div.content a:hover{color:#fff;text-decoration:underline}.questions div.content p:last-of-type{margin-bottom:0px}.questions div.content p{position:relative}.questions div.content p svg.phone{position:absolute;top:-22px;margin-left:-60px}@media (max-width: 575.98px){.questions div.content p svg.phone{display:none}}.questions div.content p svg.envelope{position:absolute;top:-35px;margin-left:10px}footer{background-color:#3D3D3B;color:#fff;padding:50px 0px}@media (min-width: 768px){footer{font-size:15px;padding:35px 0px}}footer .container .col-box{display:flex;align-items:center;margin-bottom:50px;justify-content:center}footer .container .col-box:last-child{margin-bottom:0px}@media (min-width: 992px){footer .container .col-box{margin-bottom:0px;justify-content:left}}@media (min-width: 992px){footer .container .col-box:nth-child(2),footer .container .col-box:nth-child(3){border-right:1px solid #fff}}footer .container .col-box .box{width:100%;text-align:center}@media (min-width: 992px){footer .container .col-box .box{padding:0px 20px;width:fit-content;text-align:left}}footer .container .col-box .box p{font-size:15px;line-height:1.2}footer .container .col-box ul{margin-left:0px;padding-left:0px;list-style:none;margin-bottom:0px}footer .container .col-box ul li{padding:5px 0px}footer .container .col-box ul a{color:#fff;text-decoration:none}footer .container .col-box ul a:hover{text-decoration:underline}footer .container .col-box.logo{order:1}footer .container .col-box.logo img{max-width:100%}footer .container .col-box.menu{order:3}@media (min-width: 768px) and (max-width: 991.98px){footer .container .col-box.menu{margin-bottom:0px}}@media (min-width: 992px){footer .container .col-box.menu{order:2}}footer .container .col-box.address{order:2}@media (min-width: 992px){footer .container .col-box.address{order:3}}footer .container .col-box.address .box{display:flex;flex-direction:column;align-items:center;width:100%}footer .container .col-box.address .box p{margin-bottom:0px}footer .container .col-box.address .box div{display:flex;width:100%;margin-bottom:20px;justify-content:center}@media (min-width: 768px){footer .container .col-box.address .box div{margin-bottom:0px;justify-content:flex-start}}footer .container .col-box.address .box div svg{width:50px;margin:auto}@media (min-width: 768px){footer .container .col-box.address .box div svg{position:relative;margin-left:0px}}footer .container .col-box.address .box div span{margin-top:auto;margin-bottom:auto;width:100%}footer .container .col-box.address .box p:last-of-type{margin-bottom:0px}footer .container .col-box.social-media{order:4}footer .container .col-box.social-media a{text-decoration:none;display:block;margin-bottom:10px}footer .container .col-box.social-media a span{color:#fff}footer .container .col-box.social-media a svg{margin:0px 10px}footer .container .col-box.social-media a svg path{stroke:#fff}.modal .modal-content{border-radius:16px}.modal .modal-content .modal-header{background:#33ACE3}.modal .modal-content .modal-header h5,.modal .modal-content .modal-header .h5{color:#fff;font-weight:500}.modal .modal-content .modal-body{padding:40px 30px}.modal .modal-content .modal-body #activenow-venue-selector{display:none}.modal .modal-content .modal-body #activenow-proficiency-selector{display:none}.modal .modal-content .modal-body #activenow-form-eventable-description-holder{display:block !important;height:auto !important}.modal .modal-content .modal-body .activenow-class-title{padding-left:0px;padding-right:0px}.modal .modal-content .modal-body .activenow-class-row{display:flex;align-items:center}.modal .modal-content .modal-body .activenow-class-row h4,.modal .modal-content .modal-body .activenow-class-row .h4{font-size:15px;padding-bottom:0px;padding-left:0px;padding-right:0px}.icons{display:none}@media (min-width: 768px){.icons{display:block}}.panel-grid-cell .panel-last-child section .container{border-bottom:0px}.about .icons{position:relative}.about .icons .left{position:absolute;left:0px;top:0px}.about .icons .left svg{display:block}.about .icons .left svg.triangle{position:relative;left:100px;margin-top:250px}.about .icons .left svg.square{left:114px;position:relative;margin-top:0px}.about .icons .left svg.circle{position:relative;left:47px;margin-top:50px}.about .icons .left svg.arrow2{margin-top:150px}.about .icons .right{position:absolute;right:0px;top:50px}.about .icons .right svg{display:block}.about .icons .right svg.arrow1{margin-top:250px}.about .icons .right svg.square{position:relative;right:47px}.about .icons .right svg.circle{right:114px;position:relative;margin-top:70px}.about .icons .right svg.triangle{position:relative;right:47px;margin-top:50px}.about .item{display:block;margin-bottom:100px;position:relative;z-index:10}@media (min-width: 768px){.about .item{display:flex}}@media (min-width: 768px){.about .item .left{text-align:right}}@media (min-width: 768px){.about .item .left{width:50%}}.about .item .left img{margin-bottom:20px}@media (min-width: 768px){.about .item .left img{margin-bottom:0px}}.about .item .left .desc{margin-bottom:20px}@media (min-width: 768px){.about .item .left .desc{padding-right:50px;margin-bottom:0px}}@media (min-width: 768px){.about .item .left .desc ul{direction:rtl}}.about .item .right{text-align:left}@media (min-width: 768px){.about .item .right{width:50%}}@media (min-width: 768px){.about .item .right .desc{padding-left:50px}}.about .item .left img,.about .item .right img{border-radius:16px;max-width:100%}.about .item .left .desc h5,.about .item .left .desc .h5,.about .item .right .desc h5,.about .item .right .desc .h5{font-size:25px;font-weight:500;margin-bottom:25px}.about .item .left .desc h5.blue,.about .item .left .desc .blue.h5,.about .item .right .desc h5.blue,.about .item .right .desc .blue.h5{color:#33ACE3}.about .item .left .desc h5.purple,.about .item .left .desc .purple.h5,.about .item .right .desc h5.purple,.about .item .right .desc .purple.h5{color:#61256E}.about .item .left .desc h5.pink,.about .item .left .desc .pink.h5,.about .item .right .desc h5.pink,.about .item .right .desc .pink.h5{color:#E12B87}.widget_sow-editor{position:relative;z-index:10}.offer-gymnastic{margin-bottom:80px}.offer-gymnastic .deco-1{position:absolute;width:440px;z-index:1;transform:rotate(-495deg) !important;margin-top:-340px;margin-left:-170px;z-index:0}.offer-gymnastic .deco-1 path{fill:#F3D589}.offer-gymnastic .offer{margin-bottom:50px}.offer-gymnastic .offer img{height:auto !important}.offer-gymnastic .offer h1,.offer-gymnastic .offer .h1{font-size:35px;color:#3D3D3B}.offer-gymnastic .offer h1 span,.offer-gymnastic .offer .h1 span{color:#3D3D3B}.offer-gymnastic .offer h3,.offer-gymnastic .offer .h3{background:#33ace3;padding:15px 20px;font-size:20px;text-transform:uppercase;color:#fff;font-weight:bold;border-left:10px solid #e12b87;margin-bottom:20px}.offer-gymnastic .offer ul{padding-left:0px;list-style:none;align-items:stretch}.offer-gymnastic .offer ul li{margin-bottom:10px;padding:10px;color:#3d3d3b;font-weight:400}.offer-gymnastic .offer ul li div{display:flex;justify-content:space-between;align-items:center;padding:15px 20px;height:100%;color:#fff}.offer-gymnastic .offer ul li div span{width:calc(100% - 155px);background-color:transparent}.offer-gymnastic .offer ul li div .btn,.offer-gymnastic .offer ul li div form button#active-now-submit,form .offer-gymnastic .offer ul li div button#active-now-submit,.offer-gymnastic .offer ul li div .wc-block-cart__submit-container a,.wc-block-cart__submit-container .offer-gymnastic .offer ul li div a,.offer-gymnastic .offer ul li div body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .offer-gymnastic .offer ul li div button,.offer-gymnastic .offer ul li div body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .offer-gymnastic .offer ul li div button,.offer-gymnastic .offer ul li div body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .offer-gymnastic .offer ul li div .single_add_to_cart_button{padding:10px;font-size:12px;font-weight:400;line-height:normal;border-radius:0px;margin-right:0px}.offer-gymnastic .offer.baby{margin-bottom:100px}form input[type="text"],form input[type="email"],form select{border:2px solid #61256d !important}form button#active-now-submit{font-size:17px;margin-left:0px;line-height:1;padding:15px 20px;font-weight:400}.activenow-form-container .activenow-form-class-description{padding:0px !important}.activenow-class-title{padding-left:15px;padding-right:15px}.activenow-class-value{text-align:left !important}.soon{margin-top:20px;border:2px solid #61256e;border-radius:16px;padding:20px;display:flex;width:fit-content;align-items:center}.soon span{color:#3D3D3B;font-size:16px;font-weight:bold;text-align:center}.soon svg{margin-right:20px}.hp-hero{margin-bottom:100px}.hp-hero .banner{height:600px;background-color:#C2D5EE}.hp-hero .banner .container{height:100%}.hp-hero .banner .container .hero-animaton{text-align:center;display:flex;width:100%;align-items:center;justify-content:center;position:relative;height:100%;overflow:hidden}@media (min-width: 768px){.hp-hero .banner .container .hero-animaton{height:auto}}.hp-hero .banner .container .hero-animaton svg.logo{width:800px;margin:auto;display:block;z-index:5}.hp-hero .banner .container .hero-animaton h1,.hp-hero .banner .container .hero-animaton .h1{position:absolute;margin-top:286px;font-size:30px;color:#2D63AE}.hp-hero .banner .container .hero-animaton .s1{position:absolute;margin-left:-215px;z-index:1;margin-top:-150px}@media (min-width: 768px){.hp-hero .banner .container .hero-animaton .s1{margin-left:-475px}}.hp-hero .banner .container .hero-animaton .s1 span{position:absolute;transform:rotate(-14deg);top:86px;z-index:1;left:48px}.hp-hero .banner .container .hero-animaton .s1 svg{width:200px;transform:rotate(255deg);fill:#F3D589}.hp-hero .banner .container .hero-animaton .s2{position:absolute;z-index:3;margin-top:122px;margin-left:-27px}.hp-hero .banner .container .hero-animaton .s2 .text{position:absolute;z-index:16;color:#fff;font-weight:300;margin-top:-50px;transform:rotate(-3deg);margin-left:-145px}.hp-hero .banner .container .hero-animaton .s2 .shape{transform:rotate(177deg);display:block;background:#2D63AE;width:340px;height:76px;margin-top:105px}.hp-hero .banner .container .hero-animaton .s3{position:absolute;margin-left:200px;margin-top:-175px}@media (min-width: 768px){.hp-hero .banner .container .hero-animaton .s3{margin-left:460px}}.hp-hero .banner .container .hero-animaton .s3 svg{width:210px;transform:rotate(101deg);top:-119px}.hp-hero .banner .container .hero-animaton .s3 svg path{fill:#F1A4B1}.hp-hero .banner .container .hero-animaton .s3 span{position:absolute;transform:rotate(11deg);top:86px;z-index:1;left:73px}.hp-hero .hp-hero-offer{display:flex;align-items:stretch;justify-content:center;margin-top:-100px;flex-wrap:wrap;position:relative;z-index:10}@media (min-width: 768px){.hp-hero .hp-hero-offer{flex-wrap:wrap}}.hp-hero .hp-hero-offer .swiper-wrapper{padding:30px 0px}.hp-hero .hp-hero-offer .item{border-radius:0px;color:#fff;text-decoration:none;margin:0px 10px;text-align:center;font-size:240x;display:flex;align-items:center;justify-content:center;padding:35px 20px;width:calc((100% / 2) - 20px);transition:0.3s;position:relative;animation:fadeInUp;animation-duration:1s;margin-bottom:50px;transition:0.3s}.hp-hero .hp-hero-offer .item svg{transition:transform .2s}@media (min-width: 768px){.hp-hero .hp-hero-offer .item{width:calc((100% / 3) - 20px)}}@media (min-width: 1200px){.hp-hero .hp-hero-offer .item{width:calc((100% / 5 - 20px))}}.hp-hero .hp-hero-offer .item:nth-of-type(1){animation-delay:0ms}.hp-hero .hp-hero-offer .item:nth-of-type(2){animation-delay:100ms}.hp-hero .hp-hero-offer .item:nth-of-type(3){animation-delay:200ms}.hp-hero .hp-hero-offer .item:nth-child(4){animation-delay:300ms}.hp-hero .hp-hero-offer .item:nth-child(5){animation-delay:400ms}.hp-hero .hp-hero-offer .item:nth-child(6){animation-delay:500ms}.hp-hero .hp-hero-offer .item:hover svg{transform:scale(1.5)}.bg1{background-color:#C2D5EE;width:100%;height:700px;position:absolute;margin-top:-60px}@media (min-width: 992px){.bg1{height:440px}}.for-everyone{margin-bottom:60px}.for-everyone h1,.for-everyone .h1{color:#3D3D3B}.for-everyone h1 span,.for-everyone .h1 span{color:#3D3D3B}@media (min-width: 768px){.for-everyone .bg{background:url(46bde853a855fef9295c33a7c28d3928.png);background-size:contain;background-repeat:no-repeat;background-position:right;background-position-x:230px}}@media (min-width: 1200px){.for-everyone .bg{background-position-x:right}}.for-everyone img{max-width:100%}.for-everyone .text-bg{text-align:center}@media (min-width: 768px){.for-everyone .text-bg{padding:100px 0px;text-align:left}}.for-everyone .container{position:relative;z-index:1}.for-everyone p{text-align:center}@media (min-width: 768px){.for-everyone p{text-align:left}}.for-everyone .dots{position:absolute;margin-top:-250px;z-index:0;margin-left:-100px}.programs{overflow-x:hidden}@media (min-width: 768px){.programs{margin-bottom:60px}}.programs h2,.programs .h2{text-align:center}@media (min-width: 768px){.programs h2,.programs .h2{text-align:left}}.programs .container{position:relative;z-index:10}.programs p{text-align:center}@media (min-width: 768px){.programs p{text-align:left}}.programs ul{display:flex;flex-wrap:wrap;padding-left:0px;margin-top:100px}.programs ul li{list-style:none;text-align:center;width:100%;margin-bottom:60px;position:relative}@media (min-width: 768px){.programs ul li{width:50%;margin-bottom:100px;text-align:left;padding-bottom:60px}.programs ul li:nth-child(2n+1){padding-right:40px}.programs ul li:nth-child(2n){padding-left:40px}.programs ul li .btn,.programs ul li form button#active-now-submit,form .programs ul li button#active-now-submit,.programs ul li .wc-block-cart__submit-container a,.wc-block-cart__submit-container .programs ul li a,.programs ul li body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .programs ul li button,.programs ul li body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .programs ul li button,.programs ul li body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .programs ul li .single_add_to_cart_button{position:absolute;bottom:0px}}@media (min-width: 992px){.programs ul li:nth-child(2n+1){padding-right:80px}.programs ul li:nth-child(2n){padding-left:80px}}.programs ul li h3,.programs ul li .h3{color:#000000;font-size:30px;margin-bottom:20px}.programs ul li p{margin-bottom:30px}.programs .deco-1{position:absolute;width:440px;z-index:1;transform:rotate(-135deg) !important;margin-top:-80px;margin-left:-70px;display:none}@media (min-width: 768px){.programs .deco-1{display:block}}.programs .deco-1 path{fill:#A19FD2}.programs .deco-2{position:absolute;z-index:0;right:-108px;margin-top:-690px;display:none;width:500px;transform:rotate(-245deg) !important}@media (min-width: 768px){.programs .deco-2{display:block}}.programs .deco-2 path{fill:#7AC17E}.for-everyone2{position:relative;text-align:center;margin-bottom:60px}@media (min-width: 768px){.for-everyone2{text-align:right}}.for-everyone2 .container .row{display:flex;align-items:center}.for-everyone2 h1,.for-everyone2 .h1{text-align:center;color:#3D3D3B;margin-top:30px}@media (min-width: 768px){.for-everyone2 h1,.for-everyone2 .h1{text-align:right;margin-top:0px}}.for-everyone2 h1 span,.for-everyone2 .h1 span{color:#3D3D3B}.for-everyone2 h1,.for-everyone2 .h1,.for-everyone2 p{position:relative;z-index:1}.for-everyone2 .deco-1{position:absolute;z-index:0;right:100px;margin-top:-230px;width:500px;transform:rotate(-135deg) !important}.for-everyone2 .deco-1 path{fill:#F3D589}@media (min-width: 768px){.for-everyone2 .text-bg{padding:100px 0px}}.for-everyone2 img{max-width:100%}.for-everyone2 .text{margin-top:100px;text-align:center}.for-everyone2 .text h2,.for-everyone2 .text .h2{font-size:35px}.parentportal{padding:55px 0px;margin-bottom:50px}.parentportal .container{background-color:#C2D5EE;padding:50px}.parentportal h2,.parentportal .h2{text-align:left;margin-bottom:0px}.parentportal .login-btn{display:flex;align-items:center}.parentportal .login-btn a{margin-left:0px;background:#2D63AE;color:#fff}@media (min-width: 992px){.parentportal .login-btn a{margin:0px auto}}.pageheader{position:relative;height:200px;overflow:hidden;background-color:#C2D5EE}.pageheader .text{height:100%}.pageheader .text .container{text-align:right;position:relative;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;height:100%}.pageheader .text .container .bg-shapes{right:100px}.pageheader .text .container h1,.pageheader .text .container .h1{font-size:30px;text-align:left;color:#3D3D3B;margin-bottom:0;display:flex;flex-direction:column;align-items:flex-start;z-index:10}.pageheader .text .container h1 span,.pageheader .text .container .h1 span{display:#3D3D3B;font-size:24px;margin-top:10px}@media (min-width: 768px){.pageheader .text .container h1,.pageheader .text .container .h1{z-index:1;font-size:40px;text-align:left}.pageheader .text .container h1 span,.pageheader .text .container .h1 span{font-size:25px}}.bgbox{color:#3D3D3B}.bgbox h3,.bgbox .h3{color:#3D3D3B}.bgbox .container{border:20px solid #F3D589 !important;background:transparent}.bgbox .icons{margin-top:50px;text-align:center;display:flex;justify-content:space-around;flex-wrap:wrap}.bgbox .icons span{width:50%;margin-bottom:40px}@media (min-width: 768px){.bgbox .icons span{width:calc(100% / 3)}}@media (min-width: 992px){.bgbox .icons span{width:calc(100% / 5);margin-bottom:0px}}.bgbox .icons span svg{width:100px;height:100px}.bgbox .icons span h5,.bgbox .icons span .h5{margin-top:20px;font-size:18px;font-weight:400}.bg-shapes{position:absolute}.bg-shapes .s1,.bg-shapes .s2,.bg-shapes .s3{position:absolute}.bg-shapes .s1{width:210px;transform:rotate(-143deg);left:-180px;top:-100px}.bg-shapes .s1 path{fill:#F3D589}.bg-shapes .s2{transform:rotate(166deg);display:block;background:#2b76e2;width:130px;height:65px;top:-17px;left:-47px}.bg-shapes .s3{width:210px;transform:rotate(131deg);top:-119px}.bg-shapes .s3 path{fill:#F1A4B1}.gallery{display:flex;flex-wrap:wrap;margin-bottom:50px !important;justify-content:center}.gallery .gallery-item{width:50% !important;margin-top:0px !important;margin-bottom:0px !important}@media (min-width: 768px){.gallery .gallery-item{width:calc(100% / 3) !important}}@media (min-width: 992px){.gallery .gallery-item{width:calc(100% / 4) !important}}@media (min-width: 1200px){.gallery .gallery-item{width:calc(100% / 5) !important}}.gallery .gallery-item img{border:0px !important;padding:10px}.gallery .gallery-item .wp-caption-text{display:none}.calendar .deco-2{position:absolute;z-index:0;right:-20px;margin-top:-390px;width:430px;transform:rotate(-255deg) !important}.calendar .deco-2 path{fill:#C2D5EE}.calendar.desktop{display:none}@media (min-width: 768px){.calendar.desktop{display:block}}.calendar.mobile{display:block}@media (min-width: 768px){.calendar.mobile{display:none}}.calendar.mobile h4,.calendar.mobile .h4{text-align:left}.calendar.mobile h4 span,.calendar.mobile .h4 span{color:#3c3c3b;font-size:16px}.calendar.mobile .item{margin-bottom:40px}.calendar.mobile .item span{margin-bottom:10px;display:block}.calendar.mobile .item a{display:flex;justify-content:space-between;border:1px solid #e12b87;background:rgba(51,172,227,0.1);padding:10px;align-items:center;color:#3c3c3b;text-decoration:none;font-size:15px;padding:15px;margin-bottom:15px}.calendar.mobile .item a .btn,.calendar.mobile .item a form button#active-now-submit,form .calendar.mobile .item a button#active-now-submit,.calendar.mobile .item a .wc-block-cart__submit-container a,.wc-block-cart__submit-container .calendar.mobile .item a a,.calendar.mobile .item a body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .calendar.mobile .item a button,.calendar.mobile .item a body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .calendar.mobile .item a button,.calendar.mobile .item a body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .calendar.mobile .item a .single_add_to_cart_button{padding:5px 20px;font-size:12px;text-transform:uppercase;font-weight:bold;margin-bottom:0px}.calendar table{width:100%;font-size:15px}.calendar table thead{background:#2D63AE;color:#fff;text-transform:uppercase}.calendar table thead tr{height:100px}.calendar table thead tr th{text-align:center;font-weight:normal}.calendar table thead tr th+th{-webkit-box-shadow:1px 0 0 0 #527fbd inset;box-shadow:1px 0 0 0 #527fbd inset}.calendar table thead tr th.hour{max-width:60px;min-width:60px;text-align:center;vertical-align:top}.calendar table thead tr th:not(.hour){width:170px}.calendar table tbody tr{height:100px}.calendar table tbody tr:nth-child(even){background-color:#f2f2f2}.calendar table tbody tr td{text-align:center;font-size:12px;vertical-align:top}.calendar table tbody tr td:first-of-type{vertical-align:middle}.calendar table tbody tr td.active{color:#fff;font-weight:normal}.calendar table tbody tr td.active a{color:#fff}.calendar table tbody tr td div.event{background-color:#F1A4B1;min-height:110px;display:flex;justify-content:center;align-items:center;margin-top:5px;padding:10px;font-size:13px}.calendar table tbody tr td div.event:first-of-type{margin-top:0px}.calendar table tbody tr td+td{border-left:1px solid rgba(0,0,0,0.05)}.calendar table tbody tr td .btn,.calendar table tbody tr td form button#active-now-submit,form .calendar table tbody tr td button#active-now-submit,.calendar table tbody tr td .wc-block-cart__submit-container a,.wc-block-cart__submit-container .calendar table tbody tr td a,.calendar table tbody tr td body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .calendar table tbody tr td button,.calendar table tbody tr td body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .calendar table tbody tr td button,.calendar table tbody tr td body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .calendar table tbody tr td .single_add_to_cart_button{padding:5px 10px;font-size:12px;background:#2D63AE;line-height:1;margin-top:6px;color:#fff}.calendar table tbody tr td a{text-decoration:none;color:#fff}.calendar table tbody tr td a div{padding:5px 0px}.d-none{display:none}@media (min-width: 576px){.d-none.d-sm-table-cell{display:table-cell}}@media (min-width: 768px){.d-none.d-md-table-cell{display:table-cell}}@media (min-width: 992px){.d-none.d-lg-table-cell{display:table-cell}}@media (min-width: 1200px){.d-none.d-xl-table-cell{display:table-cell}}@media (min-width: 1400px){.d-none.d-xxl-table-cell{display:table-cell}}#active-now-submit{margin-top:30px !important}.boxcontent .item{flex-direction:column}@media (min-width: 992px){.boxcontent .item{flex-direction:row}}.boxcontent .item .left,.boxcontent .item .right{width:100%}@media (min-width: 992px){.boxcontent .item .left,.boxcontent .item .right{width:500%}}.boxcontent .item .left{margin-bottom:30px}@media (min-width: 992px){.boxcontent .item .left{margin-bottom:0px}}.cennik{position:relative}.cennik .gymek2{transform:rotate(15deg) !important;width:150px;right:-15px;position:absolute;margin-top:-136px;z-index:100}.cennik .deco-1{position:absolute;width:440px;z-index:1;transform:rotate(-305deg) !important;margin-top:-281px;margin-left:-250px;z-index:0}.cennik .deco-1 path{fill:#7AC17E}.cennik ul{z-index:2;list-style:none;margin-left:0px;padding-left:0px;position:relative}.cennik ul li{display:flex;justify-content:space-between;align-items:stretch;margin-bottom:15px;border:7px solid #C2D5EE}.cennik ul li span{padding:10px 20px;width:100%;display:flex;align-items:center}.cennik ul li span:first-of-type{justify-content:center;flex-direction:column;align-items:flex-start}.cennik ul li span:first-of-type small,.cennik ul li span:first-of-type .small{margin-top:5px}.cennik ul li span.price{text-align:right;width:300px;font-weight:normal;justify-content:flex-end;flex-direction:column;align-items:flex-end}.cennik ul li span.price span{background-color:#F3D589;border:0px;align-items:center;width:fit-content;margin-bottom:10px;margin-top:10px}.cennik ul li span.price small,.cennik ul li span.price .small{display:block;font-size:15px;font-weight:normal}.offer-elements{margin-top:40px;margin-bottom:80px}@media (min-width: 768px){.offer-elements ul{display:flex;flex-wrap:wrap}}.offer-elements ul li{margin-bottom:15px}@media (min-width: 768px){.offer-elements ul li{width:50%}}.activenow-form-client-details p{font-size:15px}.campmodal .activenow-class-info-proficiency{display:none !important}.campmodal .activenow-class-info-remaining_slots{display:none !important}.for-everyone.camp .date{background-color:#A19FD2;position:relative;z-index:100000;color:#fff;padding:5px 20px;top:-10px;margin-bottom:10px;display:flex;justify-content:center}@media (min-width: 768px){.for-everyone.camp .date{display:inline}}.for-everyone.camp h1,.for-everyone.camp .h1{font-size:30px}.for-everyone.camp p{margin-top:10px}.for-everyone.camp .btn,.for-everyone.camp form button#active-now-submit,form .for-everyone.camp button#active-now-submit,.for-everyone.camp .wc-block-cart__submit-container a,.wc-block-cart__submit-container .for-everyone.camp a,.for-everyone.camp body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .for-everyone.camp button,.for-everyone.camp body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .for-everyone.camp button,.for-everyone.camp body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .for-everyone.camp .single_add_to_cart_button{margin-bottom:20px;display:flex;justify-content:center}@media (min-width: 768px){.for-everyone.camp .btn,.for-everyone.camp form button#active-now-submit,form .for-everyone.camp button#active-now-submit,.for-everyone.camp .wc-block-cart__submit-container a,.wc-block-cart__submit-container .for-everyone.camp a,.for-everyone.camp body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .for-everyone.camp button,.for-everyone.camp body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .for-everyone.camp button,.for-everyone.camp body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .for-everyone.camp .single_add_to_cart_button{display:inline}}@media (min-width: 768px){.campdesc{margin-top:50px}}.campdesc .left{order:2}.campdesc .right{order:1;margin-bottom:40px}.campdesc .card{font-size:15px;background:#f2f2f2;padding:20px}.campdesc .gallery a{margin-bottom:20px}.campdesc .gallery a img{max-width:100%}.campdescmodal .activenow-class-info-proficiency,.campdescmodal .activenow-class-info-remaining_slots,.campdescmodal .activenow-class-info-instructors{display:none !important}.camp-program{width:100%;font-size:13px}.camp-program thead tr td{background:#F1A4B1;color:#fff;text-transform:uppercase}.camp-program tr td{padding:10px 30px;text-align:center;width:calc((100% - 90px) / 5);background:rgba(255,255,255,0.8);border-bottom:1px solid #F1A4B1;border-right:1px solid #F1A4B1}.camp-program tr td.hour{width:120px;background:#2b76e2;color:#fff;text-transform:uppercase;padding:5px 10px}.overlow-table{margin-bottom:10px}@media (max-width: 991.98px){.overlow-table{overflow-x:scroll}}.no-pointers{list-style:none;padding-left:0px;margin-left:0px}.gymek1 .cls-1{fill:#1d1d1b}.gymek1 .cls-2{stroke-linecap:square;stroke-linejoin:bevel}.gymek1 .cls-2,.gymek1 .cls-3{fill:#f39eb0;stroke:#1d1d1b;stroke-width:4.35px}.gymek1 .cls-3{stroke-miterlimit:10}.gymek2 .cls-1{stroke-linecap:square;stroke-linejoin:bevel}.gymek2 .cls-1,.gymek2 .cls-2{fill:#f39eb0;stroke-width:4.35px}.gymek2 .cls-1,.gymek2 .cls-2,.gymek2 .cls-3{stroke:#1d1d1b}.gymek2 .cls-2,.gymek2 .cls-3{stroke-miterlimit:10}.gymek2 .cls-3{fill:none;stroke-width:4.75px}.about h4.text-left,.about .text-left.h4{text-align:left}@media (min-width: 768px){.about h4.text-left,.about .text-left.h4{text-align:left}}.about h4.text-right,.about .text-right.h4{text-align:left}@media (min-width: 768px){.about h4.text-right,.about .text-right.h4{text-align:right}}.about .deco-1{position:absolute;width:440px;z-index:1;transform:rotate(-135deg) !important;margin-top:-380px;margin-left:-10px}.about .deco-1 path{fill:#A19FD2}.about .deco-2{position:absolute;z-index:0;right:-108px;margin-top:160px;display:none;width:500px;transform:rotate(-245deg) !important}.about .deco-2 path{fill:#7AC17E}.about .deco-3{position:absolute;z-index:0;left:-10px;margin-top:680px;width:500px;transform:rotate(-135deg) !important}.about .deco-3 path{fill:#F3D589}.campdesc h4,.campdesc .h4{text-align:left;margin-top:30px}.desc-box{text-align:left}.desc-box ul li{line-height:2}.desc-box.desc-box-1{clip-path:polygon(0% .69%, 92.96% 6.63%, 100% 100%, 8.76% 91.66%);background-color:#A19FD2;display:inline-block;padding:70px 70px}@media (min-width: 768px){.desc-box.desc-box-1{padding:50px 70px}}.desc-box.desc-box-2{clip-path:polygon(10.5% 12.37%, 90.25% 1.67%, 97.5% 97.67%, 7.23% 91%);background-color:#F1A4B1;display:inline-block;padding:50px 70px;padding-top:70px}@media (min-width: 768px){.desc-box.desc-box-2{float:right;position:relative;top:-70px;right:100px}}.desc-box.desc-box-3{clip-path:polygon(9.23% 2.69%, 89.59% 0%, 99.75% 85.33%, .23% 91%);background-color:#F3D589;display:inline-block;padding:50px 70px}.intro h1,.intro .h1{color:#3D3D3B}.intro .deco-1{position:absolute;z-index:0;left:-90px;margin-top:-450px;width:500px;transform:rotate(-45deg) !important;z-index:-1}.intro .deco-1 path{fill:#F3D589}.nocowanka-left .deco-cont{position:relative;display:none}@media (min-width: 768px){.nocowanka-left .deco-cont{display:block}}.nocowanka-left .deco-cont .deco-2{position:absolute;z-index:0;right:0px;margin-top:0px;width:500px;transform:rotate(-245deg) !important}.nocowanka-left .deco-cont .deco-2 path{fill:#7AC17E}ul.no-pointers{line-height:2}.desc-box.desc-box-1.harmonogram-gymtest{clip-path:polygon(0% .69%, 92.96% 6.63%, 100% 100%, 8.76% 95.66%);padding:50px 90px}.desc-box.desc-box-1.harmonogram-gymtest p{line-height:1.3}.uklady-gymtest h2,.uklady-gymtest .h2{line-height:1.2;font-size:20px;text-align:left}.uklady-gymtest h2 span,.uklady-gymtest .h2 span{background-color:#C2D5EE;padding:5px 20px;width:fit-content}.herobanner{position:relative}.herobanner .sides{display:flex;height:400px}.herobanner .sides .left{width:50%;background-color:#C2D5EE;height:100%}.herobanner .sides .right{width:50%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center;position:relative;background-position-x:right;background-color:#C2D5EE}@media (max-width: 767.98px){.herobanner .sides .right{background-image:none !important}}.herobanner .sides .right::after{content:"";width:50%;height:100%;display:flex;background:#fff;background:linear-gradient(270deg, rgba(255,255,255,0) 0%, #c2d5ee 100%);position:absolute;top:0px}.herobanner .container{position:relative}.herobanner .text{top:0px;height:100%;width:100%;display:flex;align-items:flex-end}@media (min-width: 768px){.herobanner .text{position:absolute;padding-bottom:40px}}.herobanner .text svg{width:180px;position:absolute;top:-320px;left:calc(50% - 90px)}@media (min-width: 768px){.herobanner .text svg{bottom:130px;top:auto}}.herobanner .text .deco{position:absolute;z-index:0;width:500px;transform:rotate(-285deg) !important;top:-120px;left:-130px;fill:#F1A4B1}.herobanner .text h1,.herobanner .text .h1{color:#3D3D3B;position:relative;z-index:1;font-size:50px}@media (max-width: 767.98px){.herobanner .text h1,.herobanner .text .h1{position:absolute;top:-140px;width:100%;font-size:35px}}.herobanner .text h1 small,.herobanner .text .h1 small,.herobanner .text h1 .small,.herobanner .text .h1 .small{display:block;font-size:20px;text-transform:uppercase;color:#3D3D3B;font-weight:500}.herobanner .text a{margin-right:10px}@media (max-width: 767.98px){.herobanner .text a{margin-right:0px;width:100%;margin-bottom:20px;position:relative;top:-30px}.herobanner .text a:last-of-type{margin-bottom:0px}}.coaches{overflow:hidden}.coaches .row{justify-content:center}.coaches .section-header{margin-bottom:100px}.coaches .item{padding:50px;position:relative;margin-bottom:30px}.coaches .item a{text-decoration:none}.coaches .item a .first{display:block;margin:auto}.coaches .item a .last{display:none;margin:auto}.coaches .item a:hover .first{display:none}.coaches .item a:hover .last{display:block}@media (max-width: 575.98px){.coaches .item a.mobile-hover .first{display:none}.coaches .item a.mobile-hover .last{display:block}}.coaches .item a h4,.coaches .item a .h4{text-decoration:none}.coaches .item svg{position:absolute;top:-70px;left:-40px;z-index:-1000;width:400px;fill:#C2D5EE}.coaches .item img{max-width:100%;position:relative}.coaches .item h4,.coaches .item .h4{z-index:1;position:relative;padding:20px 0px;background-color:#fff}.coaches .item h4 small,.coaches .item .h4 small,.coaches .item h4 .small,.coaches .item .h4 .small{font-size:15px;display:block;color:#3D3D3B}.coaches .item .btn,.coaches .item form button#active-now-submit,form .coaches .item button#active-now-submit,.coaches .item .wc-block-cart__submit-container a,.wc-block-cart__submit-container .coaches .item a,.coaches .item body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .coaches .item button,.coaches .item body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .coaches .item button,.coaches .item body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .coaches .item .single_add_to_cart_button{display:block}.galleryObject .swiper-slide{text-align:center;font-size:18px;background:#fff;display:flex;justify-content:center;align-items:center}.galleryObject .swiper-slide img{display:block;width:100%;height:100%;object-fit:cover}@media (min-width: 992px){.galleryObject .swiper-slide{width:60%}}.galleryObject .swiper-pagination{position:relative;top:3px !important;padding:20px 0px}.contact{margin:100px 0px;color:#fff}.contact h3,.contact .h3{color:#fff}.contact .text{background-color:#2D63AE;padding:60px 40px;clip-path:polygon(4% 4%, 100% 0, 100% 100%, 4% 93%)}@media (min-width: 768px){.contact .text{padding:80px}}.contact .text .btn,.contact .text form button#active-now-submit,form .contact .text button#active-now-submit,.contact .text .wc-block-cart__submit-container a,.wc-block-cart__submit-container .contact .text a,.contact .text body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .contact .text button,.contact .text body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .contact .text button,.contact .text body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .contact .text .single_add_to_cart_button{margin-bottom:10px}@media (min-width: 768px){.contact .text .btn,.contact .text form button#active-now-submit,form .contact .text button#active-now-submit,.contact .text .wc-block-cart__submit-container a,.wc-block-cart__submit-container .contact .text a,.contact .text body.woocommerce-page .wc-block-checkout__actions_row button,body.woocommerce-page .wc-block-checkout__actions_row .contact .text button,.contact .text body.woocommerce-page .wc-block-components-totals-coupon__content form button,body.woocommerce-page .wc-block-components-totals-coupon__content form .contact .text button,.contact .text body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .contact .text .single_add_to_cart_button{margin-bottom:0px}}.text-with-boxes{overflow-x:hidden}.text-with-boxes .container{position:relative;z-index:10}.text-with-boxes p{text-align:center}.text-with-boxes .video{width:700px;margin:auto;margin-top:60px;max-width:100%}.text-with-boxes .deco-1{position:absolute;width:440px;z-index:1;transform:rotate(-135deg) !important;margin-top:20px;margin-left:-70px;display:none}@media (min-width: 768px){.text-with-boxes .deco-1{display:block}}.text-with-boxes .deco-1 path{fill:#A19FD2}.text-with-boxes .deco-2{position:absolute;z-index:0;right:-108px;margin-top:-690px;display:none;width:500px;transform:rotate(-245deg) !important}@media (min-width: 768px){.text-with-boxes .deco-2{display:block}}.text-with-boxes .deco-2 path{fill:#7AC17E}.section-header{text-align:center;max-width:900px;margin:auto;line-height:1.5;margin-bottom:60px;margin-top:50px}@media (min-width: 768px){.section-header{margin-top:100px}}.section-header h2,.section-header .h2{line-height:1.1;margin-bottom:20px}.section-header h2 span,.section-header .h2 span{margin-bottom:10px}.classes .hp-hero{margin-bottom:0px}.classes .hp-hero .hp-hero-offer{margin-top:0px}.classes .hp-hero .hp-hero-offer .item{margin-bottom:40px}@media (max-width: 767.98px){.classes .hp-hero .hp-hero-offer .item{width:100%}}.events .eventsSwiper{margin-bottom:50px}.events .eventsSwiper .swiper-wrapper .swiper-slide{position:relative;padding:0px 20px;text-decoration:none}.events .eventsSwiper .swiper-wrapper .swiper-slide span{position:absolute;top:10px;left:0px;background-color:#F1A4B1;padding:10px 30px 10px 30px;font-size:20px;line-height:1;color:#3D3D3B}.events .eventsSwiper .swiper-wrapper .swiper-slide h4,.events .eventsSwiper .swiper-wrapper .swiper-slide .h4{text-decoration:none;padding:20px 0px}.events .eventsSwiper .swiper-wrapper .swiper-slide img{display:block;max-width:100%;margin:auto}.events .eventsSwiper .swiper-pagination{position:relative}.text-center{text-align:center}.club-selection{width:70%;background:#C2D5EE;padding:40px 20px;position:relative;z-index:1;margin:auto;margin-bottom:50px}.club-selection .container span{display:flex;justify-content:space-around;margin:auto}.club-selection .container span a{background-color:transparent}.club-selection .container span a.selected{background-color:#F3D589}.club-selection .container span a:hover{background-color:#F3D589}.club-selection h4,.club-selection .h4{margin-bottom:30px;color:#3d3d3b}.modal .modal-content .modal-header{background:#C2D5EE;border-radius:0px}.modal .modal-content{border-radius:0px;border:0px}#map{height:450px;display:block;margin-top:30px;width:100%}@media (min-width: 992px){#map{height:100%;margin-top:0px}}.gallery{margin-top:50px;z-index:11;position:relative}.gallery a{display:flex;flex-direction:column;padding:20px;text-align:center;text-decoration:none;position:relative;width:100%}@media (min-width: 768px){.gallery a{width:50%}}@media (min-width: 992px){.gallery a{width:calc(100% / 3)}}@media (min-width: 1200px){.gallery a{width:25%}}.gallery a:hover .img-hover-zoom img{transform:scale(1.1) rotate(-2deg)}.gallery a img{height:fit-content !important}.gallery a h4.btn.small,.gallery a .btn.small.h4,.gallery a form button.small.h4#active-now-submit,form .gallery a button.small.h4#active-now-submit,.gallery a .wc-block-cart__submit-container a.small.h4,.wc-block-cart__submit-container .gallery a a.small.h4,.gallery a body.woocommerce-page .wc-block-checkout__actions_row button.small.h4,body.woocommerce-page .wc-block-checkout__actions_row .gallery a button.small.h4,.gallery a body.woocommerce-page .wc-block-components-totals-coupon__content form button.small.h4,body.woocommerce-page .wc-block-components-totals-coupon__content form .gallery a button.small.h4,.gallery a body.woocommerce-page .summary.entry-summary form.cart .small.h4.single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .gallery a .small.h4.single_add_to_cart_button,.gallery a body.woocommerce-page .summary.entry-summary form.cart h4.small.single_add_to_cart_button,body.woocommerce-page .summary.entry-summary form.cart .gallery a h4.small.single_add_to_cart_button{display:block;text-decoration:none;font-size:15px !important;line-height:1.5 !important;margin-top:10px !important;padding:15px 20px;max-width:90%;width:90%}.gallery a .img-hover-zoom{height:auto;overflow:hidden}.gallery a .img-hover-zoom img{transition:transform .5s ease}.nav-pag{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;background:#C2D5EE;transform:rotate(1deg);color:#3D3D3B;padding:50px 0px}.hide{display:none !important}#homepagemodal .modal-body{padding:0px}#homepagemodal .modal-body img{width:100%;max-width:100%}#homepagemodal .modal-body img.desktop{display:none}@media (min-width: 768px){#homepagemodal .modal-body img.desktop{display:block}}#homepagemodal .modal-body img.mobile{display:block}@media (min-width: 768px){#homepagemodal .modal-body img.mobile{display:none}}#homepagemodal .modal-body .btn-close{position:absolute;right:10px;top:10px}@media (min-width: 768px){.widget_media_video .wp-video{margin:auto}}.bg-belt{height:450px;width:100%;background-color:#C2D5EE;position:fixed}.coach-page{position:relative;margin-top:90px;z-index:1}@media (max-width: 991.98px){.coach-page{overflow-x:hidden}}.coach-page .deco-1{position:absolute;width:590px;z-index:1;transform:rotate(-235deg) !important;margin-top:-110px;margin-left:-60px}@media (min-width: 768px){.coach-page .deco-1{width:930px}}@media (min-width: 992px){.coach-page .deco-1{width:470px}}@media (min-width: 1200px){.coach-page .deco-1{width:550px}}@media (min-width: 1400px){.coach-page .deco-1{width:610px}}.coach-page .deco-1 path{fill:#F3D589}.coach-page .row{align-items:flex-start}@media (min-width: 992px){.coach-page .row .image{position:sticky;top:97px;margin-bottom:100px}}.coach-page .row .image img{z-index:2;position:relative}.coach-page .row .description{padding:30px}@media (min-width: 768px){.coach-page .row .description{margin-top:30px;padding:70px}}.coach-page .row .description h2,.coach-page .row .description .h2{text-align:left;margin-bottom:20px}.coach-page .row .description h2 small,.coach-page .row .description .h2 small,.coach-page .row .description h2 .small,.coach-page .row .description .h2 .small{display:block;font-size:20px;background-color:#C2D5EE;width:fit-content;padding:5px 10px}.coach-page .row .description h1,.coach-page .row .description .h1{width:fit-content;position:relative;padding:25px;color:#fff;font-size:40px;margin-bottom:40px}.coach-page .row .description h1::before,.coach-page .row .description .h1::before{content:"";display:block;width:100%;height:100%;background:#2D63AE;position:absolute;top:0px;transform:rotate(-182deg);left:0px}.coach-page .row .description h1 span,.coach-page .row .description .h1 span{position:relative}.other-trainers{padding:20px;margin-bottom:50px}@media (min-width: 992px){.other-trainers{margin-top:100px;padding:0px}}.other-trainers h3,.other-trainers .h3{margin-bottom:40px}@media (min-width: 992px){.other-trainers h3,.other-trainers .h3{width:60%}}@media (min-width: 576px){.other-trainers .item{padding:20px}}.other-trainers .item svg{top:-35px;left:-44px;width:390px}@media (min-width: 576px){.other-trainers .item svg{top:-25px;left:-44px;width:300px}}@media (min-width: 768px){.other-trainers .item svg{top:-25px;left:-44px;width:400px}}@media (min-width: 1200px){.other-trainers .item svg{top:-35px;left:-64px;width:440px}}@media (min-width: 1400px){.other-trainers .item svg{width:400px}}.news{overflow:hidden;position:relative}@media (min-width: 768px){.news{margin-bottom:60px}}.news h2,.news .h2{text-align:center}@media (min-width: 768px){.news h2,.news .h2{text-align:center}}.news .container{position:relative;z-index:10}.news .list{display:flex;justify-content:space-between;margin-top:100px}.news .list>.gallery{gap:50px;width:calc(50% - 50px)}.news .list a{position:relative}.news .list div h4,.news .list div .h4{width:100%;margin-bottom:20px;padding:20px 20px}.news .list div p{text-align:left}.news .list .gallery{display:flex;justify-content:space-between;gap:20px;margin-top:0px}.news .list .gallery.full a{width:100%}.news .list .gallery a{width:calc(50% - 20px);margin-bottom:0px;padding-top:0px}.news .list .gallery a:nth-child(2n),.news .list .gallery a:nth-child(2n+1){padding-left:0px;padding-right:0px}.news p{text-align:center}@media (min-width: 768px){.news p{text-align:center}}.news .deco-1{position:absolute;width:440px;z-index:1;transform:rotate(-135deg) !important;margin-top:-80px;margin-left:-70px;display:none}@media (min-width: 768px){.news .deco-1{display:block}}.news .deco-1 path{fill:#A19FD2}.news .deco-2{position:absolute;z-index:0;right:-108px;margin-top:-690px;display:none;width:500px;transform:rotate(-245deg) !important}@media (min-width: 768px){.news .deco-2{display:block}}.news .deco-2 path{fill:#7AC17E}.withicon{padding:20px 20px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}.withicon span{position:absolute;bottom:-15px;right:6px;padding:5px 10px;transform:rotate(-1deg);font-size:13px}.withicon span svg{margin-left:10px}.withicon2{padding:30px 30px !important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;display:flex;justify-content:center !important;flex-direction:column;font-size:16px}@media (min-width: 768px){.withicon2{padding:40px 30px !important;text-align:left !important;flex-direction:row;font-size:20px;justify-content:space-between !important}}.withicon2 svg{width:40px;fill:#fff;margin-top:10px}@media (min-width: 768px){.withicon2 svg{margin-top:0px}}.withicon2 span{padding:5px 10px;transform:rotate(-1deg);font-size:13px;background-color:transparent}.widget_media_gallery .gallery.gallery-size-thumbnail .gallery-item a{width:100%}.more-news{display:flex;align-items:center;justify-content:center}body.home section.news{margin-bottom:150px}body.home section.news .gallery a{padding:40px;width:100%}@media (min-width: 768px){body.home section.news .gallery a{width:calc(100% / 2);padding:20px}}@media (min-width: 992px){body.home section.news .gallery a{width:calc(100% / 3)}}@media (min-width: 1200px){body.home section.news .gallery a{padding:40px}}body.home section.news .gallery a h4,body.home section.news .gallery a .h4{margin-top:-20px !important}section.groups{background-color:#fff;padding:100px 0px}section.groups p{text-align:center}section.groups .list{display:flex;justify-content:center;flex-wrap:wrap;gap:50px;margin-top:50px;padding:50px}@media (min-width: 1200px){section.groups .list{flex-wrap:nowrap}}section.groups .list .box{width:100%;position:relative;text-decoration:none}@media (min-width: 576px){section.groups .list .box{width:calc(50% - 50px)}}@media (min-width: 768px){section.groups .list .box{width:calc(33% - 50px)}}@media (min-width: 1200px){section.groups .list .box{width:300px}}section.groups .list .box .img-hover-zoom{text-align:center}section.groups .list .box .img-hover-zoom::after{content:"";background:#000;background:linear-gradient(0deg, rgba(0,0,0,0.504639) 0%, rgba(245,245,245,0) 100%);width:100%;display:block;height:100px;position:absolute;bottom:0px}section.groups .list .box:hover h5,section.groups .list .box:hover .h5{display:none}section.groups .list .box img{max-width:100%}section.groups .list .box h5,section.groups .list .box .h5{position:absolute;bottom:20px;left:20px;right:20px;font-size:20px;line-height:1.5}@media (min-width: 576px){section.groups .list .box h5,section.groups .list .box .h5{font-size:15px}}@media (min-width: 1400px){section.groups .list .box h5,section.groups .list .box .h5{font-size:20px}}section.groups .list .box p{text-align:left;margin-top:10px;color:#3D3D3B}section.groups .list .box h6,section.groups .list .box .h6{position:absolute;top:20px;left:20px;right:20px;font-size:15px;-webkit-box-shadow:0px 0px 24px 0px #42445a;-moz-box-shadow:0px 0px 24px 0px #42445a;box-shadow:0px 0px 24px 0px #42445a}@media (min-width: 576px){section.groups .list .box h6,section.groups .list .box .h6{font-size:12px;width:60%;line-height:1.5;margin-right:0px}}a:hover .img-hover-zoom img{transform:scale(1.1) rotate(-2deg)}a:hover .img-hover-zoom span{opacity:1}a .img-hover-zoom{height:auto;overflow:hidden;position:relative}a .img-hover-zoom span{transition:transform .5s ease;background-color:rgba(0,0,0,0.4);color:#fff;position:absolute;left:0px;top:0px;height:100%;width:100%;display:flex;align-items:center;justify-content:center;opacity:0}a .img-hover-zoom img{transition:transform .5s ease}.post-title{text-align:center}.Pagination-Num{display:flex;justify-content:center;align-items:center;margin-bottom:100px}.Pagination-Num ul{margin-bottom:0px;padding-bottom:0px;margin-left:0px;padding-left:0px;list-style:none;display:flex;align-items:center;gap:10px}.Pagination-Num ul li .current{padding:10px 15px;background:#F3D589}.Pagination-Num ul li a{background:#f2f2f2;padding:10px 15px;cursor:pointer;color:#2D63AE;text-decoration:none}.Pagination-Num ul li a:hover{background-color:#F3D589}.so-widget-youtube-widget{height:100%}.site-header .container .lang-switcher{padding:5px 15px;width:fit-content;z-index:1;color:#fff;text-align:center;text-transform:uppercase;position:relative;margin-right:0px;background:#f2f2f2;order:1}@media (min-width: 1200px){.site-header .container .lang-switcher{margin-left:20px;margin-right:0px;order:2}}.site-header .container .lang-switcher svg{width:30px}@media (min-width: 768px){.site-header .container .lang-switcher svg{width:20px}}.site-header .container .lang-switcher.active{background:#000d21}.site-header .container .lang-switcher.active ul{display:block;background:#000d21;width:fit-content}@media (min-width: 992px){.site-header .container .lang-switcher:hover{background:#000d21}.site-header .container .lang-switcher:hover ul{display:block;background:#000d21;width:fit-content}}.site-header .container .lang-switcher ul{display:none;position:absolute;left:0px;flex-direction:column;margin-left:0px;padding-left:0px;margin-bottom:0px}.site-header .container .lang-switcher ul li{display:block;padding:10px 15px}.site-header .container .lang-switcher ul li a{text-decoration:none;text-transform:uppercase;color:#fff}.site-header .container .lang-switcher ul li a:hover{text-decoration:none;border-bottom:0px}body.page-id-294 #pl-294{overflow-x:hidden}.so-widget-eventslist-widget .gallery a .img-hover-zoom img{margin-bottom:20px}.so-widget-eventslist-widget .gallery h4,.so-widget-eventslist-widget .gallery .h4{padding:25px 20px}.so-widget-eventslist-widget .gallery h4 .date,.so-widget-eventslist-widget .gallery .h4 .date{bottom:auto;right:auto;top:-15px;left:-20px}.it_epoll_survey-country.it_epoll_grid-only{margin-top:0px}.it_epoll_survey-country.it_epoll_grid-only img{width:100% !important;height:100% !important;border:0px;display:block;border-radius:00% !important;background:none repeat scroll 0 0 #fff;padding:0px;margin:0 auto !important}.it_epoll_grid .it_epoll_survey-item{width:calc(50% - 10px) !important}.it_epoll_grid .it_epoll_survey-country{margin-top:0px !important}.it_epoll_container{background:transparent !important;box-shadow:none;background-color:#C2D5EE !important;width:100%;margin-top:0px;border-radius:0px;padding:20px 50px;position:relative}@media (min-width: 768px){.it_epoll_container{padding:20px 120px}}.it_epoll_container .prev-btn{position:absolute;left:0px;padding:100px 20px}@media (min-width: 768px){.it_epoll_container .prev-btn{padding:100px 20px;background:#2D63AE}}.it_epoll_container .prev-btn svg{width:20px;height:20px;transform:rotate(180deg);fill:#2D63AE}@media (min-width: 768px){.it_epoll_container .prev-btn svg{fill:#fff}}.it_epoll_container .next-btn{position:absolute;right:0px;padding:100px 20px}@media (min-width: 768px){.it_epoll_container .next-btn{padding:100px 20px;background:#2D63AE}}.it_epoll_container .next-btn svg{width:20px;height:20px;fill:#2D63AE}@media (min-width: 768px){.it_epoll_container .next-btn svg{fill:#fff}}.it_epoll_container .it_epoll_inner{padding:0px}.it_epoll_container .it_epoll_inner .it_epoll_survey-item-inner{box-shadow:none}.it_epoll_container .it_epoll_inner .it_epoll_surveys.it_epoll_grid{display:flex;justify-content:space-between;flex-wrap:wrap}.it_epoll_container .it_epoll_inner .it_epoll_surveys.it_epoll_grid .it_epoll_survey-item{margin:0px;box-shadow:none;margin-bottom:20px}.it_epoll_container .it_epoll_inner .it_epoll_surveys.it_epoll_grid .it_epoll_survey-item img{box-shadow:none}.it_epoll_container .it_epoll_inner .it_epoll_surveys.it_epoll_grid .it_epoll_survey-item #it_epoll_survey-vote-button{background:#F3D589 !important;border-radius:0px !important;box-shadow:none  !important;color:#000 !important}.page-template-empty-php{background-color:#C2D5EE !important}.it_epoll_container{height:100%;display:flex;align-items:center;margin-bottom:0px}.it_epoll_container .it_epoll_inner{max-width:100%}.it_epoll_container .it_epoll_inner .it_epoll_grid{flex-wrap:nowrap !important;align-items:stretch}.it_epoll_container .it_epoll_inner .it_epoll_grid .it_epoll_survey-item{height:fit-content !important;width:290px !important;margin-bottom:0px !important}@media (min-width: 768px){.it_epoll_container .it_epoll_inner .it_epoll_grid .it_epoll_survey-item{width:350px !important}}.it_epoll_container .it_epoll_inner .it_epoll_grid .it_epoll_survey-item .it_epoll_pull-right{display:none}.it_epoll_container .it_epoll_inner .it_epoll_grid .it_epoll_survey-item .it_epoll_survey-item-action{margin:0px}.halloween-contests .it_epoll_container{background:transparent !important}body.woocommerce-page .wc-block-components-product-name{text-decoration:none;color:#000}body.woocommerce-page .wc-block-checkout__main h2.wc-block-components-title,body.woocommerce-page .wc-block-checkout__main .wc-block-components-title.h2{text-align:left}body.woocommerce-page .wc-block-components-validation-error{color:#c50000}body.woocommerce-page .wc-block-components-validation-error svg{display:none}body.woocommerce-page .wc-block-components-validation-error span{font-size:15px}body.woocommerce-page .woocommerce-column__title,body.woocommerce-page .woocommerce-order-details__title{text-align:left;font-size:30px}body.woocommerce-page .woocommerce-order-overview{background:#f2f2f2;padding:10px}body.woocommerce-page .summary.entry-summary{display:flex;flex-direction:column}body.woocommerce-page .summary.entry-summary h2,body.woocommerce-page .summary.entry-summary .h2{font-size:30px;text-align:left;background-color:#2D63AE;color:#fff;padding:5px 10px}body.woocommerce-page .summary.entry-summary .price{text-align:left;margin-bottom:0px}body.woocommerce-page .summary.entry-summary .price span{background-color:transparent;padding:0px}body.woocommerce-page .summary.entry-summary form.cart .woocommerce-variation-add-to-cart{display:flex}body.woocommerce-page .summary.entry-summary form.cart .woocommerce-variation-add-to-cart .quantity{display:flex}body.woocommerce-page .summary.entry-summary form.cart .woocommerce-variation-add-to-cart .quantity input{height:100%}body.woocommerce-page .summary.entry-summary form.cart .single_add_to_cart_button{margin-left:10px}body.woocommerce-page .summary.entry-summary form.cart .woocommerce-variation.single_variation{margin-bottom:20px}body.woocommerce-page .summary.entry-summary form.cart .woocommerce-variation.single_variation .woocommerce-variation-price .woocommerce-Price-amount{background:#C2D5EE;padding:10px;color:#000}body.woocommerce-page .summary.entry-summary th.label{font-size:13px;text-transform:uppercase}body.woocommerce-page .summary.entry-summary th.label label{font-weight:600;text-align:left}body.woocommerce-page .reset_variations{color:#000;font-weight:100;font-size:13px}body.woocommerce-page .onsale{border-radius:0px;padding:10px;line-height:1;min-height:auto;font-weight:100;background:#F1A4B1;font-weight:400}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{color:#2D63AE}.woocommerce div.product p.price ins,.woocommerce div.product span.price ins{font-weight:600}.woocommerce-tabs ul{display:none}.woocommerce-tabs ul li{background-color:#C2D5EE !important;border-radius:0px !important;border:0px !important;font-weight:600 !important;margin:0px !important}.woocommerce-tabs ul li:before,.woocommerce-tabs ul li:after{display:none}.woocommerce-tabs ul li.active{background-color:#2D63AE !important;color:#fff !important}.woocommerce-tabs ul li a{font-weight:600 !important}.woocommerce-tabs h2,.woocommerce-tabs .h2{font-size:20px !important;background-color:transparent !important;color:#000 !important}.woocommerce div.product .woocommerce-tabs ul.tabs::before{display:none}.woocommerce table.shop_attributes th{width:190px;font-weight:400;padding:0px 10px;font-size:15px}.woocommerce table.shop_attributes td{font-weight:400;padding:0px 10px;font-size:15px}.woocommerce table.shop_attributes td p{font-size:15px;padding:0px;text-align:left}.wc-price-history{font-size:12px}.woocommerce-message{background-color:#C2D5EE;border-top:0px}.woocommerce-message a.wc-forward{background-color:#F3D589;font-weight:400}.wp-block-woocommerce-cart-items-block .wc-block-cart-item__total .wc-block-components-sale-badge{display:none}.wc-block-checkout__form h2,.wc-block-checkout__form .h2{font-weight:600 !important}.stock.out-of-stock{text-align:left}.woocommerce-table--order-details a{color:#000}.woocommerce-table--order-details .wc-item-meta{padding-left:0px;font-size:15px}.woocommerce-table--order-details .wc-item-meta p{font-size:15px}#activenow-week-selector,#activenow-day-selector{display:none !important}.harmonogram select{margin-bottom:50px}.harmonogram .harmonogram__days{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-top:20px;padding-left:0px}@media (min-width: 768px){.harmonogram .harmonogram__days{display:flex}}@media (min-width: 992px){.harmonogram .harmonogram__days{gap:20px}}.harmonogram .harmonogram__days li{width:calc(100% / 6 - 10px);text-align:center;padding:10px;border-radius:5px;list-style:none}@media (min-width: 992px){.harmonogram .harmonogram__days li{width:calc(100% / 6 - 20px)}}.harmonogram .harmonogram__days li.active{background-color:#F3D589}.harmonogram .harmonogram__days li a{text-decoration:none;color:#000;font-weight:400;display:block;font-size:14px;border-radius:5px}@media (min-width: 992px){.harmonogram .harmonogram__days li a{padding:10px;font-size:15px}}@media (min-width: 1200px){.harmonogram .harmonogram__days li a{padding:10px;font-size:20px}}.harmonogram .harmonogram__days li a .full{display:none}@media (min-width: 768px){.harmonogram .harmonogram__days li a .full{display:block}}.harmonogram .harmonogram__days li a .short{display:block}@media (min-width: 768px){.harmonogram .harmonogram__days li a .short{display:none}}.harmonogram-cart.desktop{display:none}@media (min-width: 1200px){.harmonogram-cart.desktop{display:block}}.harmonogram-cart.mobile{display:block}@media (min-width: 1200px){.harmonogram-cart.mobile{display:none}}.harmonogram-cart.mobile .harmonogram-day-mobile{display:none}.harmonogram-cart.mobile .harmonogram-day-mobile.active{display:block}.harmonogram-cart.mobile .hour-row{display:flex;margin-bottom:20px;flex-direction:column}@media (min-width: 768px){.harmonogram-cart.mobile .hour-row{flex-direction:row}}.harmonogram-cart.mobile .hour-row span{width:100%;font-weight:600;background-color:#2d63ae;color:#fff;padding:20px;font-size:15px;text-align:center;align-items:center;display:flex;justify-content:flex-start}@media (min-width: 768px){.harmonogram-cart.mobile .hour-row span{width:100px;justify-content:center}}.harmonogram-cart.mobile table{display:table}.harmonogram-cart.mobile table thead tr td{background-color:#e9e9e9 !important}.harmonogram-cart.mobile table tr td{border:1px solid #d2d2d2;background-color:#f9f9f9;width:fit-content;padding:10px;height:70px;text-align:left}.harmonogram-cart.mobile table tr td:first-child{width:150px;font-weight:400;background-color:#f9f9f9;color:#000}.harmonogram-cart.mobile table tr td.coach{display:none}@media (min-width: 768px){.harmonogram-cart.mobile table tr td.coach{display:table-cell;width:150px}}.harmonogram-cart.mobile table tr td .mobile-coach{display:block !important;width:fit-content;background:transparent;font-size:15px;font-weight:normal;padding:0px;color:#000;margin-top:5px;font-style:italic}@media (min-width: 768px){.harmonogram-cart.mobile table tr td .mobile-coach{display:none !important}}.harmonogram-cart{display:none}@media (min-width: 1200px){.harmonogram-cart{display:block}}.harmonogram-cart table{width:100%;display:none}.harmonogram-cart table.active{display:table}.harmonogram-cart table .open-registration-popup-modlniczka{cursor:pointer}.harmonogram-cart table tr.column-count-6 td{width:calc(100% / 6);max-width:calc(100% / 6)}.harmonogram-cart table tr.column-count-6 td:first-child{width:50px}.harmonogram-cart table tr td{border:1px solid #d2d2d2;background-color:#fff;width:calc(100% / 5);max-width:calc(100% / 5);padding:20px;font-size:15px;text-align:center;height:100px}.harmonogram-cart table tr td:first-child{width:100px;font-weight:600;background-color:#2d63ae;color:#fff}.harmonogram-cart table tr td.element{background-color:#f9f9f9}.harmonogram-cart table tr td .name{font-weight:600;display:block}.harmonogram-cart table tr td .coach{margin-top:5px;font-style:italic;display:block}.faq{margin-bottom:50px}.faq h2,.faq .h2{text-align:left}.faq ul{margin-top:50px;padding-left:0px}.faq ul li{display:flex;align-items:flex-start;justify-content:flex-start;margin-bottom:50px;flex-direction:column}.faq ul li p{text-align:left}.faq ul li:nth-child(1n) h3,.faq ul li:nth-child(1n) .h3{background-color:#F1A4B1}.faq ul li:nth-child(2n) h3,.faq ul li:nth-child(2n) .h3{background-color:#C2D5EE}.faq ul li:nth-child(3n) h3,.faq ul li:nth-child(3n) .h3{background-color:#7AC17E}.faq ul li:nth-child(4n) h3,.faq ul li:nth-child(4n) .h3{color:#fff;background-color:#2D63AE}.faq ul li:nth-child(5n) h3,.faq ul li:nth-child(5n) .h3{background-color:#A19FD2}.faq ul li:nth-child(6n) h3,.faq ul li:nth-child(6n) .h3{background-color:#F3D589}.faq ul li h3,.faq ul li .h3{width:fit-content;position:relative;padding:10px 20px;left:0px}@media (min-width: 768px){.faq ul li h3,.faq ul li .h3{left:-20px}}@media (min-width: 768px){.harmonogram h2,.harmonogram .h2{line-height:1}.harmonogram h2 small,.harmonogram .h2 small,.harmonogram h2 .small,.harmonogram .h2 .small{font-size:30px}}.text-left-harmonogram h2,.text-left-harmonogram .h2{text-align:left}.section-header p{text-align:center}#harmonogram-table{background-color:#fff}

