@font-face {
  font-family: "Riffic";
  src: url(../fonts/riffic-bold.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/roboto.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
} /*!
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  animation-delay: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  animation-duration: calc(1s * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    opacity: 1 !important;

    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: calc(1s * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Riffic", Arial, sans-serif;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
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: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}
a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
figure {
  margin: 0 0 1rem;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
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,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
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;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
progress {
  vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
  cursor: pointer;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .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;
  }
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.row-cols-3 > * {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.row-cols-6 > * {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.col-1 {
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}
.col-2 {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.col-5 {
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}
.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}
.col-8 {
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}
.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}
.col-11 {
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}
.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  -ms-flex-order: -1;
  order: -1;
}
.order-last {
  -ms-flex-order: 13;
  order: 13;
}
.order-0 {
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -ms-flex-order: 5;
  order: 5;
}
.order-6 {
  -ms-flex-order: 6;
  order: 6;
}
.order-7 {
  -ms-flex-order: 7;
  order: 7;
}
.order-8 {
  -ms-flex-order: 8;
  order: 8;
}
.order-9 {
  -ms-flex-order: 9;
  order: 9;
}
.order-10 {
  -ms-flex-order: 10;
  order: 10;
}
.order-11 {
  -ms-flex-order: 11;
  order: 11;
}
.order-12 {
  -ms-flex-order: 12;
  order: 12;
}
.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%;
}
@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .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%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .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%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .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%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .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%;
  }
}
.animateMe {
  opacity: 0;
}
.animate__animated {
  opacity: 1;
}
html,
body {
  overflow-x: hidden;
}
body {
  position: relative;
  background-color: #b5e3ee;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(1.275rem + 0.3vw);
  color: #000;
  counter-reset: section;
  counter-reset: subsection;
}
@media (min-width: 1200px) {
  body {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  body {
    font-size: calc(1.29375rem + 0.525vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  body {
    font-size: 1.6875rem;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
a {
  text-decoration: underline;
}
figure {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column-reverse nowrap;
  flex-flow: column-reverse nowrap;
  margin: 0;
}
@media (min-width: 992px) {
  figure {
    display: block;
  }
}
figcaption {
  font-size: 0.6rem;
  color: #04509c;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 992px) {
  figcaption {
    position: absolute;
    inset: 50% auto auto 100%;
    transform: rotate(90deg);
    transform-origin: 50% 100%;
  }
}
p {
  max-width: 800px;
  margin: 0 0 1.5vw 0;
}
p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  img {
    max-width: 100%;
  }
}
strong {
  font-weight: 600;
  font-size: inherit;
  font-family: "Riffic", sans;
}
.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
a.skip-to-content {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: -1;
  width: auto;
  height: auto;
  transform: translateX(-50%);
}
header.ecl-site-header {
  box-shadow:
    0 3px 5px rgba(9, 49, 142, 0.04),
    0 0 18px rgba(9, 49, 142, 0.04),
    0 6px 10px rgba(9, 49, 142, 0.04),
    0 -4px 4px rgba(9, 49, 142, 0.04);
  z-index: 2;
  background-color: #fff;
  margin: 0;
  position: relative;
}
header.ecl-site-header .ecl-site-header__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  position: static;
}
@media (min-width: 992px) {
  header.ecl-site-header .ecl-site-header__container {
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
}
header.ecl-site-header .ecl-site-header__container .ecl-site-header__top {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 992px) {
  header.ecl-site-header .ecl-site-header__container .ecl-site-header__top {
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
header.ecl-site-header .ecl-site-header__container .ecl-site-header__logo-link {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 576px) {
  header.ecl-site-header .ecl-site-header__container .ecl-site-header__logo-link {
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media (min-width: 768px) {
  header.ecl-site-header .ecl-site-header__container .ecl-site-header__logo-link {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  header.ecl-site-header .ecl-site-header__container .ecl-site-header__logo-link {
    margin-bottom: 0;
  }
}
header.ecl-site-header .ecl-site-header__container .ecl-site-header__logo-image {
  display: block;
  max-height: 1.875rem;
  max-width: 100%;
}
@media (min-width: 576px) {
  header.ecl-site-header .ecl-site-header__container .ecl-site-header__logo-image {
    height: 2.5rem;
    max-height: 100%;
    max-width: 100%;
    width: auto;
  }
}
@media (min-width: 992px) {
  header.ecl-site-header .ecl-site-header__container .ecl-site-header__logo-image {
    display: block;
    height: 2.75rem;
    width: auto;
  }
}
header.ecl-site-header .ecl-site-header__container .ecl-site-header__action {
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  header.ecl-site-header .ecl-site-header__container .ecl-site-header__action {
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 992px) {
  header.ecl-site-header
    .ecl-site-header__container
    .ecl-site-header__action
    .ecl-site-header__search-container {
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-inline-start: 0.75rem;
  }
}
header.ecl-site-header .ecl-site-header__banner {
  background: linear-gradient(90deg, #082b7a, #0e47cb);
  min-height: 1.75rem;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  header.ecl-site-header .ecl-site-header__banner {
    background: transparent;
    display: block;
    min-height: 0;
    padding: 0;
  }
}
header.ecl-site-header .ecl-site-header__banner .container {
  position: relative;
}
@media (min-width: 992px) {
  header.ecl-site-header .ecl-site-header__banner .container::before {
    border-top: 2px solid #cfdaf5;
    content: "";
    left: 1rem;
    position: absolute;
    right: 1rem;
    top: -1px;
  }
}
header.ecl-site-header .ecl-site-header__banner .ecl-site-header__site-name {
  color: #fff;
  font:
    normal normal 400 1.25rem / 1.75rem arial,
    sans-serif;
  font-weight: 700;
  margin-inline-end: 3rem;
  padding: 0;
}
@media (min-width: 992px) {
  header.ecl-site-header .ecl-site-header__banner .ecl-site-header__site-name {
    -ms-flex-item-align: center;
    align-self: center;
    color: #515560;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font:
      normal normal 400 2rem / 2.5rem arial,
      sans-serif;
    font-weight: 700;
    margin-inline-end: 0;
    padding: 1rem 0;
  }
}
.header-site {
  inset: 0 0 auto 0;
  transition: all 0.9s;
  padding: 1.5vh 0;
}
@media (min-width: 992px) {
  .header-site {
    padding: 60px 0;
  }
}
.header-site .container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#navigation {
  position: fixed;
  inset: 0 1rem 0 auto;
  z-index: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.nav-list,
.nav-sub-list {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  gap: 1rem;
}
.nav-list {
  background-color: #ffffff50;
  padding: 1rem;
  border-radius: 10px;
}
#navigation .nav-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#navigation .nav-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.nav-link {
  display: block;
}
.nav-sub-list {
  padding: 1rem 0;
}
.nav-sub-list .nav-item:last-child .nav-link {
  margin-bottom: 0;
}
.nav-bullet {
  content: "";
  display: block;
  min-height: 12px;
  min-width: 12px;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background-color: #04509c;
}
.nav-link.active .nav-bullet {
  background-color: #a1d7e6;
}
#language-form {
  padding: 0.5rem 0;
}
#language-form #language-select {
  padding: 4px;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.9s;
  border-width: 1px;
  border-style: solid;
}
.title-container {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  white-space: normal;
  transition: all 0.9s;
}
.title-container a {
  display: block;
  max-width: 100%;
  text-decoration: none;
}
.page-title {
  margin: 0 auto 0.25rem;
  max-width: 100%;
  font-family: "Riffic", sans;
  font-weight: 500;
  font-size: calc(1.525rem + 3.3vw);
  line-height: 1.1;
  text-transform: none;
  text-align: center;
  overflow-wrap: break-word;
  color: #04509c;
}
@media (min-width: 1200px) {
  .page-title {
    font-size: 4rem;
  }
}
.apostrophe {
  color: #f05833;
}
.page-title-big {
  display: block;
  overflow-wrap: break-word;
  text-transform: uppercase;
}
.page-title-small {
  display: block;
  font-family: "Riffic", sans;
  font-weight: 500;
  line-height: 1.24;
  font-size: 20px;
  overflow-wrap: break-word;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .page-title {
    font-size: clamp(1.35rem, 5.2vw, 2.5rem);
  }
  .page-title-small {
    font-size: clamp(1rem, 3.8vw, 1.35rem);
  }
}
@media (min-width: 992px) {
  .page-title-small {
    font-size: calc(1.34375rem + 1.125vw);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .page-title-small {
    font-size: 2.1875rem;
  }
}
.tag {
  margin: 0 0 auto;
  font-family: "Roboto", Arial;
  font-weight: 500;
  font-size: calc(1.375rem + 1.5vw);
  line-height: 1.24;
  text-align: center;
  color: #04509c;
}
@media (min-width: 1200px) {
  .tag {
    font-size: 2.5rem;
  }
}
section {
  position: relative;
  z-index: 10;
  padding: calc(1.925rem + 8.1vw) 0;
}
@media (min-width: 1200px) {
  section {
    padding: 8rem 0;
  }
}
.bg,
section,
.sub-section-inner {
  background: transparent url(../img/background.svg) no-repeat 50% 66.66666%;
  background-size: 100% auto;
  background-attachment: fixed;
  background-blend-mode: multiply;
  transition: all 1.5s ease-in;
}
@media (min-width: 992px) {
  .bg,
  section,
  .sub-section-inner {
    background: transparent url(../img/background.svg) no-repeat 50% 100%;
    background-size: auto calc(100vh - calc(272px + 2rem));
    background-attachment: fixed;
  }
  .pageScroll .bg,
  .pageScroll section,
  .pageScroll .sub-section-inner {
    background-size: auto calc((100vh - calc(272px + 2rem)) * 1.05);
  }
}
.sub-section {
  position: relative;
  padding: calc(1.725rem + 5.7vw) 0;
}
@media (min-width: 1200px) {
  .sub-section {
    padding: 6rem 0;
  }
}
.container {
  position: relative;
  z-index: 0;
}
.container-inside {
  max-width: 800px;
  margin: 0 auto;
}
.bg-light {
  background-color: #ffffff15;
}
.bg-blue {
  background-color: #04509c;
  color: #cddc42;
}

#section-1 .intro-microphone.bg-blue {
  overflow: hidden;
}
.bg-blue a {
  color: #cddc42;
}
.bg-blue figcaption {
  color: #fff;
}
.bg-yellow {
  background-color: rgba(205, 220, 66, 0.98);
  color: #04509c;
}
.bg-mandarine {
  background-color: rgba(240, 88, 51, 0.98);
  color: #fff;
}
.hero-img-wrapper {
  z-index: -1;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
#section-1 {
  background-color: transparent;
}
.slogan-bis:after {
  content: none;
}
.children-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 1199.98px) {
  .children-wrapper {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
#megaphone {
  position: relative;
  z-index: 0;
  width: 65%;
  background: transparent url(../img/megaphone.png) no-repeat 50% 0;
  background-size: 0 0;
  margin: 0 auto -100px;
  text-align: center;
}
.section-title {
  margin: calc(1.325rem + 0.9vw) 0;
  font-family: "Riffic", sans;
  font-weight: 500;
  font-size: calc(1.26875rem + 0.225vw);
  line-height: 1.24;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .section-title {
    margin: 2rem 0;
  }
}
@media (min-width: 1200px) {
  .section-title {
    font-size: 1.4375rem;
  }
}
.sub-section-title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 calc(1.325rem + 0.9vw) 0;
  padding: 1rem calc(1.925rem + 8.1vw) 1rem calc(1.325rem + 0.9vw);
  font-family: "Riffic", sans;
  font-weight: 500;
  font-size: calc(1.26875rem + 0.225vw);
  line-height: 1.5;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .sub-section-title {
    margin: 0 0 2rem 0;
  }
}
@media (min-width: 1200px) {
  .sub-section-title {
    padding: 1rem 8rem 1rem 2rem;
  }
}
@media (min-width: 1200px) {
  .sub-section-title {
    font-size: 1.4375rem;
  }
}
@media (max-width: 1199.98px) {
  .sub-section-title {
    margin-left: -1rem;
    padding-left: 3rem;
  }
}
.sub-section-title:after {
  content: "";
  position: absolute;
  inset: 0 0 0 calc((100vw - 800px) / -2);
  z-index: -1;
  background-color: inherit;
}
.sub-section-title.bg-light-blue {
  color: #ffffff;
  background-color: #217ab7;
}
.sub-section-title.bg-light-blue:after {
  background-color: #217ab7;
}

@media (max-width: 1199.98px) {
  .sub-section-3 .sub-section-title {
    padding-right: 13.5vw;
  }
}
.intro {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: auto;
  padding: 2rem;
}
.section-with-counter {
  counter-increment: section;
}
.section-title {
  padding: 0.25rem 2rem;
  font-family: "Riffic", sans;
  font-weight: 600;
  font-size: calc(1.39375rem + 1.725vw);
  line-height: 1.24;
  color: #fff;
  background-color: #f05833;
}
@media (min-width: 1200px) {
  .section-title {
    font-size: 2.6875rem;
  }
}
.section-title:before {
  content: counter(section, upper-roman) ".";
  margin-right: 2rem;
}
.eu-should {
  color: #04509c;
}
.bg-blue .eu-should {
  color: #f05833;
}
.list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  padding-left: 0;
}
.list li {
  position: relative;
  list-style-type: none;
  margin: 1.25vw 0 0;
  padding-left: 40px;
}
.list li:first-child {
  margin-top: 0;
}
.list li:last-child {
  margin-bottom: 0;
}
.list li:before {
  content: url(../img/bullet.svg);
  position: absolute;
  inset: 3px auto auto 0;
  height: auto;
  width: 20px;
}
.list li:last-child {
  margin-bottom: 0;
}
#section-2 .section-title {
  position: relative;
  z-index: 25;
  width: -moz-min-content;
  width: min-content;
  margin: -3rem auto -1rem;
}

#section-2 .section-2-pie-layout {
  position: relative;
  width: min(100%, 560px);
  margin: 1.25rem auto 0;
  line-height: 1;
}

#section-2 .section-2-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

#section-2 .counter-fixed-width {
  display: inline-block;
  width: 5ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

#section-2 .section-2-bar-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  column-gap: 0.65rem;
  align-items: start;
}

#section-2 .section-2-bar-label,
#section-2 .section-2-bar-value {
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(0.8rem, 1.55vw, 0.98rem);
  color: #04509c;
  line-height: 1.2;
  text-align: left;
}

#section-2 .section-2-bar-value {
  font-weight: 700;
  opacity: 0;
  transition: opacity 255ms ease;
  position: absolute;
  left: var(--current-progress);
  top: 50%;
  transform: translate(6px, -50%);
  text-align: left;
}

#section-2 .section-2-bar-track {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 50%;
  height: clamp(14px, 2vw, 18px);
  display: block;
  background-color: transparent;
  --current-progress: 0%;
  opacity: 0;
  transition: opacity 255ms ease;
  overflow: visible;
}

#section-2 .section-2-bar-fill {
  display: block;
  width: var(--current-progress);
  height: 100%;
  border-radius: 0;
  background-color: #f94b1c;
}

#section-2 .section-2-bar-label {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
  opacity: 0;
  transition: opacity 265ms ease;
}

#section-2 .section-2-bar-row.is-label-visible .section-2-bar-label {
  opacity: 1;
}

#section-2 .section-2-bar-row.is-track-visible .section-2-bar-track {
  opacity: 1;
}

#section-2 .section-2-bar-row.is-track-visible .section-2-bar-value {
  opacity: 1;
}

@media (max-width: 991.98px) {
  #section-2 .section-2-pie-layout {
    width: 100%;
  }

  #section-2 .section-2-bar-chart {
    gap: 0.75rem;
  }

  #section-2 .section-2-bar-track {
    width: 55%;
    height: clamp(14px, 2.4vw, 18px);
  }
}

@media (max-width: 767.98px) {
  #section-2 .section-2-pie-layout {
    width: 100%;
  }

  #section-2 .section-2-bar-label,
  #section-2 .section-2-bar-value {
    font-size: 0.76rem;
  }

  #section-2 .section-2-bar-chart {
    gap: 0.58rem;
  }

  #section-2 .section-2-bar-row {
    grid-template-columns: 125px 1fr;
  }

  #section-2 .section-2-bar-track {
    width: 65%;
    height: 12px;
  }
}

#section-3 {
  padding-bottom: 0;
}
#section-3 .section-title {
  position: relative;
  z-index: 25;
  width: -moz-min-content;
  width: min-content;
  margin: 0 auto -1rem;
  white-space: nowrap;
}
.sub-section-1 {
  padding-top: 0;
}
.sub-section-1 .sub-section-title {
  padding-top: 2rem;
}
.sub-section-1 .sub-section-title:before {
  top: 2rem;
}

#section-3.screen3-banner,
#section-3 .sub-section-1 .screen3-banner,
#section-3 .sub-section-2 .screen3-banner,
#section-3 .sub-section-3 .screen3-banner,
#section-3 .sub-section-4 .screen3-banner {
  background-color: #cddc42;
  color: #04509c;
}

#section-3 .sub-section-1 .screen3-banner:after,
#section-3 .sub-section-2 .screen3-banner:after,
#section-3 .sub-section-3 .screen3-banner:after,
#section-3 .sub-section-4 .screen3-banner:after {
  background-color: #cddc42;
}

/* Alternance: vert, rouge, bleu section-2 fonce, puis repeat */
#section-3 .sub-section-title.screen3-banner,
#section-6 .sub-section-title.screen3-banner {
  background-color: #cddc42;
  color: #04509c;
}

#section-3 .sub-section-title.screen3-banner:after,
#section-6 .sub-section-title.screen3-banner:after {
  background-color: #cddc42;
}

#section-4 .sub-section-title.screen3-banner,
#section-7 .sub-section-title.screen3-banner {
  background-color: #f05833;
  color: #fff;
}

#section-4 .sub-section-title.screen3-banner:after,
#section-7 .sub-section-title.screen3-banner:after {
  background-color: #f05833;
}

#section-5 .sub-section-title.screen3-banner {
  background-color: #217ab7;
  color: #fff;
}

#section-5 .sub-section-title.screen3-banner:after {
  background-color: #217ab7;
}

#section-8 .sub-section-title.screen3-banner {
  background-color: #217ab7;
  color: #fff;
}

#section-8 .sub-section-title.screen3-banner:after {
  background-color: #217ab7;
}

#section-4.screen4-banner,
#section-3 .sub-section-2 .screen4-banner {
  background-color: #cddc42;
  color: #04509c;
}

#section-3 .sub-section-2 .screen4-banner:after {
  background-color: #cddc42;
}

#section-3 .sub-section-3 .screen5-banner {
  background-color: #cddc42;
  color: #04509c;
}

#section-3 .sub-section-3 .screen5-banner:after {
  background-color: #cddc42;
}

#section-3 .sub-section-4 .screen6-banner-red {
  background-color: #f05833;
  color: #fff;
}

#section-3 .sub-section-4 .screen6-banner-red:after {
  background-color: #f05833;
}

#section-3 .sub-section-4 .screen6-banner-transparent {
  background: transparent;
  color: #04509c;
}

#section-3 .sub-section-4 .screen6-banner-transparent:after {
  content: none;
}
#section-3 .section-3-banner__icon {
  position: absolute;
  inset: 50% auto auto calc(100% - 13.5vw);
  width: 17vw;
  margin: -8.5vw auto auto 2vw;
  z-index: 3;
  pointer-events: none;
}

#section-3 .section-3-banner__icon img,
#section-3 .section-3-banner__icon svg {
  display: block;
  width: 100%;
  height: auto;
}

#section-3 .sub-section-title.animate__animated .section-3-banner__icon-orbit {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: section-3-icon-grow-in 3000ms ease-out both;
  transform-origin: 40% 18%;
}

#section-3 .section-3-banner__icon::before,
#section-3 .section-3-banner__icon::after {
  content: "";
  position: absolute;
  inset: 34% auto auto 35%;
  width: 0.5rem;
  height: 0.5rem;
  border: 2px solid rgba(4, 80, 156, 0.45);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}

#section-3 .section-3-banner__icon.animate__animated::before {
  animation: section-3-icon-click-ring-first 4000ms ease-out infinite;
}

#section-3 .section-3-banner__icon.animate__animated::after {
  animation: section-3-icon-click-ring-second 4000ms ease-out infinite;
}

@keyframes section-3-icon-double-click-loop {
  0%,
  12%,
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  16% {
    transform: translateY(8%) scale(0.94) rotate(2deg);
  }
  20% {
    transform: translateY(0) scale(1.02) rotate(0deg);
  }
  26% {
    transform: translateY(8%) scale(0.94) rotate(2deg);
  }
  30% {
    transform: translateY(0) scale(1.02) rotate(0deg);
  }
  34% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes section-3-icon-grow-in {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes section-3-icon-click-ring-first {
  0%,
  14%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  18% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.2);
  }
  28% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2);
  }
}

@keyframes section-3-icon-click-ring-second {
  0%,
  24%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  28% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.2);
  }
  38% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2);
  }
}

/* Section-specific icon reveal animations (sections 4 to 8) */
#section-4 .section-3-banner__icon::before,
#section-4 .section-3-banner__icon::after,
#section-5 .section-3-banner__icon::before,
#section-5 .section-3-banner__icon::after,
#section-6 .section-3-banner__icon::before,
#section-6 .section-3-banner__icon::after,
#section-7 .section-3-banner__icon::before,
#section-7 .section-3-banner__icon::after,
#section-8 .section-3-banner__icon::before,
#section-8 .section-3-banner__icon::after {
  content: none;
}

/* Section 8 — entrée ressort 3D */
#section-3 #section-8 .section-3-banner__icon {
  perspective: 640px;
  perspective-origin: 50% 92%;
}

#section-4 .sub-section-title.animate__animated .section-3-banner__icon-orbit {
  animation: section-4-icon-reveal 900ms ease-out both;
}

#section-3 #section-5 .sub-section-title.animate__animated .section-3-banner__icon-orbit {
  width: 100%;
  transform-origin: 50% 100%;
  animation: section-5-icon-reveal 1.1s cubic-bezier(0.45, 0, 0.2, 1) 1s both;
  will-change: transform;
}

#section-6 .section-3-banner__icon--spin-y {
  perspective: 900px;
  perspective-origin: 50% 50%;
  pointer-events: auto;
  cursor: pointer;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  text-align: inherit;
}

#section-6 .section-3-banner__icon-tooltip {
  position: absolute;
  z-index: 5;
  bottom: calc(100% + 0.45rem);
  left: 50%;
  padding: 0.35rem 0.55rem;
  border-radius: 0.25rem;
  background: rgba(4, 80, 156, 0.94);
  color: #fff;
  font:
    normal 600 0.7rem/1.2 Arial,
    sans-serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  pointer-events: none;
}

#section-6 .section-3-banner__icon--spin-y:hover .section-3-banner__icon-tooltip,
#section-6 .section-3-banner__icon--spin-y:focus-visible .section-3-banner__icon-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#section-6 .section-3-banner__icon--spin-y:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

#section-6 .section-3-banner__icon-spin {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
}

#section-6 .section-3-banner__icon-face {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#section-6 .section-3-banner__icon-face--front {
  transform: translateZ(1px);
}

#section-6 .section-3-banner__icon-face--back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg) scaleX(-1) translateZ(1px);
}

#section-6 .sub-section-title.animate__animated .section-3-banner__icon--spin-y {
  animation: section-6-icon-fade-in 900ms ease-out forwards;
}

#section-6 .sub-section-title.animate__animated .section-3-banner__icon-spin {
  --section-6-spin-duration: 5.5s;
  animation: section-6-icon-spin var(--section-6-spin-duration, 5.5s) linear infinite;
  transform-origin: center center;
}

#section-3 #section-8 .sub-section-title.animate__animated .section-3-banner__icon-orbit {
  transform-origin: 50% 92%;
  backface-visibility: hidden;
  animation: section-8-spring-in 1.05s cubic-bezier(0.34, 1.35, 0.64, 1) 0.55s both;
}

@keyframes section-4-icon-reveal {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes section-5-icon-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, -200%, 0) scale(0.88, 0.92);
  }
  38% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1, 1);
  }
  44% {
    transform: translate3d(0, 0, 0) scale(1.3, 0.52);
  }
  52% {
    transform: translate3d(0, -14%, 0) scale(0.9, 1.1);
  }
  60% {
    transform: translate3d(0, 0, 0) scale(1.1, 0.82);
  }
  72% {
    transform: translate3d(0, -4%, 0) scale(0.98, 1.03);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1, 1);
  }
}

@keyframes section-6-icon-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes section-6-icon-spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@keyframes section-7-icon-reveal {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.9) rotate(-10deg);
  }
  55% {
    opacity: 1;
    transform: translateY(-2px) scale(1.03) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* Entrée ressort + léger bascule 3D (type badge overshoot, adapté logement) */
@keyframes section-8-spring-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 14%, 0) scale(0.62) rotateX(16deg);
  }
  48% {
    opacity: 1;
    transform: translate3d(0, -7%, 0) scale(1.1) rotateX(-3deg);
  }
  64% {
    transform: translate3d(0, 3%, 0) scale(0.94) rotateX(2deg);
  }
  80% {
    transform: translate3d(0, -1%, 0) scale(1.03) rotateX(-0.5deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  #section-3 .section-3-banner__icon {
    position: absolute;
    top: 0.65rem;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(12vw, 110px);
    margin: 0;
    transform: translateX(50%);
    transform-origin: center;
  }
}

@media (min-width: 1200px) {
  #section-3 .section-3-banner__icon {
    inset: 23px calc(100% + 35px) auto auto;
    width: 155px;
    margin: auto;
  }
}

@media (max-width: 767px) {
  /* Section 3 → fin : texte 70 % (col. 1) · icône 30 % (col. 2, à droite) */
  #section-3 .sub-section .sub-section-title,
  #main-content > section#section-4 .sub-section-title,
  #main-content > section#section-5 .sub-section-title,
  #main-content > section#section-6 .sub-section-title,
  #main-content > section#section-7 .sub-section-title,
  #main-content > section#section-8 .sub-section-title {
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-left: 0;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
  }

  #section-3 .sub-section-title > .section-3-banner__icon,
  #section-3 .sub-section-title > button.section-3-banner__icon,
  #section-3 .sub-section-title > .section-7-banner__icon-spark,
  #main-content > section#section-4 .sub-section-title > .section-3-banner__icon,
  #main-content > section#section-4 .sub-section-title > button.section-3-banner__icon,
  #main-content > section#section-4 .sub-section-title > .section-7-banner__icon-spark,
  #main-content > section#section-5 .sub-section-title > .section-3-banner__icon,
  #main-content > section#section-5 .sub-section-title > button.section-3-banner__icon,
  #main-content > section#section-5 .sub-section-title > .section-7-banner__icon-spark,
  #main-content > section#section-6 .sub-section-title > .section-3-banner__icon,
  #main-content > section#section-6 .sub-section-title > button.section-3-banner__icon,
  #main-content > section#section-6 .sub-section-title > .section-7-banner__icon-spark,
  #main-content > section#section-7 .sub-section-title > .section-3-banner__icon,
  #main-content > section#section-7 .sub-section-title > button.section-3-banner__icon,
  #main-content > section#section-7 .sub-section-title > .section-7-banner__icon-spark,
  #main-content > section#section-8 .sub-section-title > .section-3-banner__icon,
  #main-content > section#section-8 .sub-section-title > button.section-3-banner__icon,
  #main-content > section#section-8 .sub-section-title > .section-7-banner__icon-spark {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    transform: none;
    justify-self: end;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
  }

  #section-3 .sub-section-title .section-3-banner__icon img,
  #section-3 .sub-section-title .section-3-banner__icon svg,
  #section-3 .sub-section-title .section-3-banner__icon-face,
  #section-3 .sub-section-title > .section-7-banner__icon-spark,
  #main-content > section#section-4 .sub-section-title .section-3-banner__icon img,
  #main-content > section#section-4 .sub-section-title .section-3-banner__icon svg,
  #main-content > section#section-4 .sub-section-title > .section-7-banner__icon-spark,
  #main-content > section#section-5 .sub-section-title .section-3-banner__icon img,
  #main-content > section#section-5 .sub-section-title .section-3-banner__icon svg,
  #main-content > section#section-5 .sub-section-title > .section-7-banner__icon-spark,
  #main-content > section#section-6 .sub-section-title .section-3-banner__icon img,
  #main-content > section#section-6 .sub-section-title .section-3-banner__icon svg,
  #main-content > section#section-6 .sub-section-title .section-3-banner__icon-face,
  #main-content > section#section-6 .sub-section-title > .section-7-banner__icon-spark,
  #main-content > section#section-7 .sub-section-title .section-3-banner__icon img,
  #main-content > section#section-7 .sub-section-title .section-3-banner__icon svg,
  #main-content > section#section-7 .sub-section-title > .section-7-banner__icon-spark,
  #main-content > section#section-8 .sub-section-title .section-3-banner__icon img,
  #main-content > section#section-8 .sub-section-title .section-3-banner__icon svg,
  #main-content > section#section-8 .sub-section-title > .section-7-banner__icon-spark {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right center;
  }
}

#section-3 ul li,
#section-4 ul li,
#section-5 ul li,
#section-6 ul li {
  color: #04509c;
  margin-bottom: 0.22rem;
}

#section-3 ul li:last-child,
#section-4 ul li:last-child,
#section-5 ul li:last-child,
#section-6 ul li:last-child {
  margin-bottom: 0;
}

#section-3 .sub-section-2 .section-4-banner__icon-random {
  position: absolute;
  top: 100;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease;
  width: min(13.2vw, 120px);
  height: auto;
  transform: translate(-50%, -50%);
}

#section-3 .sub-section-2 .section-4-banner__icon-random.is-visible {
  opacity: 1;
}

#section-3 .sub-section-2 .section-4-banner__icon-random img {
  display: block;
  width: 100%;
  height: auto;
}

#section-3 .sub-section-2 .section-4-banner__icon-random img.is-flipped {
  transform: scaleX(-1);
}

@media (min-width: 1200px) {
  #section-3 .sub-section-2 .section-4-banner__icon-random {
    width: min(9.9vw, 90px);
  }
}

/* Section 7 — effet informationSparkIn (CyberBullying section 5) */
#section-7 .section-7-banner__icon-spark {
  position: absolute;
  inset: 50% auto auto calc(100% - 13.5vw);
  width: 17vw;
  margin: -8.5vw auto auto 2vw;
  z-index: 3;
  pointer-events: none;
  height: auto;
  opacity: 0;
  transform-origin: center center;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  #section-7 .section-7-banner__icon-spark {
    top: 0.65rem;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(12vw, 110px);
    margin: 0;
    transform: translateX(50%) scaleX(-1);
  }
}

@media (min-width: 1200px) {
  #section-7 .section-7-banner__icon-spark {
    inset: 23px calc(100% + 35px) auto auto;
    width: 155px;
    margin: auto;
    transform: none;
  }
}

#information {
  position: absolute;
  inset: 0rem -2rem auto auto;
  width: 17vw;
  height: auto;
  background: transparent url(../img/information.svg) no-repeat 50% 0;
  background-size: 0 0;
}

@keyframes informationSparkIn {
  0% {
    opacity: 0;
    transform: translate3d(26px, -18px, 0) scale(0.45) rotate(-28deg);
  }
  55% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.04) rotate(8deg);
  }
  78% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.98) rotate(-4deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  #information {
    width: 11vw;
  }
}

@media (max-width: 767px) {
  #information {
    inset: 0.35rem 0.35rem auto auto;
    width: 18vw;
  }
}
@media (min-width: 1200px) {
  #information {
    inset: 0.8vw 100% auto auto;
    width: 155px;
  }
}
.sub-section-4 .sub-section-title {
  color: #04509c;
  padding-right: clamp(6rem, 22vw, 12rem);
}
#vote {
  position: absolute;
  inset: -1rem -2.5rem auto auto;
  width: 20vw;
  height: auto;
  background: transparent url(../img/vote.svg) no-repeat 50% 0;
  background-size: 0 0;
  animation: vote-double-bob 5.5s ease-in-out 1.2s infinite;
}

@keyframes vote-double-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  6% {
    transform: translateY(-8px);
  }
  12% {
    transform: translateY(0);
  }
  21% {
    transform: translateY(0);
  }
  27% {
    transform: translateY(-8px);
  }
  33% {
    transform: translateY(0);
  }
}
/* @media (min-width: 768px) {
  #vote {
    inset: 0.5rem 2.5rem auto auto;
    width: 13vw;
  }
}
@media (min-width: 1200px) {
  #vote {
    inset: 1vw calc(100% + 35px) auto auto;
    width: 9vw;
  }
} */
@media (min-width: 768px) {
  #vote {
    inset: -1.5rem -4.5rem auto auto;
    width: 10vw;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  #vote {
    inset: -1rem 0.5rem auto auto;
  }
}
@media (min-width: 1200px) {
  #vote {
    inset: 0.5vw calc(100% + 35px) auto auto;
    width: 9vw;
  }
}
#globe {
  position: absolute;
  inset: 50% auto auto calc(100% - 13.5vw);
  width: 17vw;
  margin: -8.5vw auto auto 2vw;
  height: auto;
  background: transparent url(../img/globe.svg) no-repeat 50% 0;
  background-size: 0 0;
}
@media (min-width: 768px) {
  #globe {
    inset: 100% auto auto calc(100% - 11.5vw);
    width: 11vw;
  }
}
@media (min-width: 1200px) {
  #globe {
    inset: 23px calc(100% + 35px) auto auto;
    width: 155px;
    margin: auto;
  }
}
#activists {
  width: 240;
  height: auto;
  background: transparent url(../img/activists.svg) no-repeat 50% 0;
  background-size: 0 0;
}
#children {
  width: 120;
  height: auto;
  background: transparent url(../img/children.svg) no-repeat 50% 0;
  background-size: 0 0;
}

#icon-chiffres {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  background: none;
}
.pre-footer-container {
  overflow: hidden;
}
.pre-footer {
  position: relative;
  z-index: 500;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: stretch;
  padding: 2rem 0;
  height: auto;
  background-color: transparent;
}
@media (min-width: 992px) {
  .pre-footer {
    height: 55vh;
    max-height: 300px;
  }
}
.pre-footer #thumb-up {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0;
  height: 100%;
  min-height: 0;
}
/* Comme l’ancien fond : background-size 180px auto */
.pre-footer #thumb-up img {
  width: 180px;
  max-width: 180px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: right bottom;
}

@media (max-width: 991.98px) {
  .pre-footer #thumb-up {
    flex: 0 0 100%;
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
  }

  .pre-footer #thumb-up img {
    width: min(60vw, 220px);
    max-width: 100%;
    height: auto;
  }

  .pre-footer figcaption {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 0.5rem;
    text-align: center;
  }
}
/* Comme l’ancien fond : background-size auto 100% dans la zone du pre-footer */
@media (min-width: 992px) {
  .pre-footer #thumb-up img {
    width: auto;
    max-width: none;
    height: 100%;
    max-height: 100%;
  }
}
.pre-footer figcaption {
  inset: auto;
  transform-origin: unset;
  right: -30px;
  bottom: 1rem;
  text-align: right;
}
.pre-footer__column {
  font:
    normal normal 400 1rem / 1.5rem arial,
    sans-serif;
}
.pre-footer__column .pre-footer__title {
  color: #171a22;
  font:
    normal normal 400 1.75rem / 2rem arial,
    sans-serif;
}
.pre-footer__column .pre-footer__title--separator {
  border-bottom: 1px solid #a0ccd7;
  padding-bottom: 0.75rem;
}
.pre-footer__column .pre-footer__title__list {
  list-style: none;
  margin-bottom: 0;
  margin-top: 0.75rem;
  padding-inline-start: 0;
}
.pre-footer__column .pre-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pre-footer__column .pre-footer__link {
  text-decoration: none;
  color: #08529e;
  margin: 0;
}

.pre-footer__column .pre-footer__link:hover,
.pre-footer__column .pre-footer__link:focus-visible {
  text-decoration: underline;
}
.external-icon {
  height: 1rem;
  width: 1rem;
  top: -1px;
  fill: currentcolor;
  position: relative;
  vertical-align: middle;
  margin-inline-start: 0.3rem;
  transition: transform 0.3s ease-in-out;
}
.standard-logo-eu,
.logo-eu {
  background-image: url(../img/logo-eu--en.svg);
}
.bg .standard-logo-eu,
.bg .logo-eu {
  background-image: url(../img/logo-eu--bg.svg);
}
.cs .standard-logo-eu,
.cs .logo-eu {
  background-image: url(../img/logo-eu--cs.svg);
}
.da .standard-logo-eu,
.da .logo-eu {
  background-image: url(../img/logo-eu--da.svg);
}
.de .standard-logo-eu,
.de .logo-eu {
  background-image: url(../img/logo-eu--de.svg);
}
.et .standard-logo-eu,
.et .logo-eu {
  background-image: url(../img/logo-eu--et.svg);
}
.el .standard-logo-eu,
.el .logo-eu {
  background-image: url(../img/logo-eu--el.svg);
}
.es .standard-logo-eu,
.es .logo-eu {
  background-image: url(../img/logo-eu--es.svg);
}
.fi .standard-logo-eu,
.fi .logo-eu {
  background-image: url(../img/logo-eu--fi.svg);
}
.fr .standard-logo-eu,
.fr .logo-eu {
  background-image: url(../img/logo-eu--fr.svg);
}
.ga .standard-logo-eu,
.ga .logo-eu {
  background-image: url(../img/logo-eu--ga.svg);
}
.hu .standard-logo-eu,
.hu .logo-eu {
  background-image: url(../img/logo-eu--hu.svg);
}
.hr .standard-logo-eu,
.hr .logo-eu {
  background-image: url(../img/logo-eu--hr.svg);
}
.it .standard-logo-eu,
.it .logo-eu {
  background-image: url(../img/logo-eu--it.svg);
}
.lt .standard-logo-eu,
.lt .logo-eu {
  background-image: url(../img/logo-eu--lt.svg);
}
.lv .standard-logo-eu,
.lv .logo-eu {
  background-image: url(../img/logo-eu--lv.svg);
}
.mt .standard-logo-eu,
.mt .logo-eu {
  background-image: url(../img/logo-eu--mt.svg);
}
.nl .standard-logo-eu,
.nl .logo-eu {
  background-image: url(../img/logo-eu--nl.svg);
}
.pl .standard-logo-eu,
.pl .logo-eu {
  background-image: url(../img/logo-eu--pl.svg);
}
.pt .standard-logo-eu,
.pt .logo-eu {
  background-image: url(../img/logo-eu--pt.svg);
}
.ro .standard-logo-eu,
.ro .logo-eu {
  background-image: url(../img/logo-eu--ro.svg);
}
.sk .standard-logo-eu,
.sk .logo-eu {
  background-image: url(../img/logo-eu--sk.svg);
}
.sl .standard-logo-eu,
.sl .logo-eu {
  background-image: url(../img/logo-eu--sl.svg);
}
.sv .standard-logo-eu,
.sv .logo-eu {
  background-image: url(../img/logo-eu--sv.svg);
}
#qr-code {
  display: block;
  margin: auto;
  background-size: 0 0;
}
#qr-code img {
  display: block;
  height: auto;
  width: 140px;
}
@media (min-width: 992px) {
  #qr-code img {
    height: 50%;
    width: auto;
  }
}
.eu-footer {
  font-family: "Roboto", Arial;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #04509c;
}
.ecl-site-footer {
  background-color: #f3f6fc;
  box-shadow:
    0 3px 5px rgba(9, 49, 142, 0.04),
    0 0 18px rgba(9, 49, 142, 0.04),
    0 6px 10px rgba(9, 49, 142, 0.04),
    0 -4px 4px rgba(9, 49, 142, 0.04);
  color: #171a22;
  display: -ms-flexbox;
  display: flex;
  font:
    normal normal 400 1rem/1.5rem arial,
    sans-serif;
  margin: 0;
}
.ecl-site-footer__container {
  padding: 3rem 1rem;
}
.ecl-site-footer__row {
  border-bottom: 2px solid #cfdaf5;
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.ecl-site-footer__row:first-child {
  padding-top: 0;
}
.ecl-site-footer__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.ecl-site-footer__column {
  padding-top: 1.5rem;
}
.ecl-site-footer__column:first-child {
  padding-top: 0;
}
.ecl-site-footer__section {
  padding-top: 1.5rem;
}
.ecl-site-footer__section:first-child {
  padding-top: 0;
}
.ecl-site-footer__section--desktop {
  display: none;
}
.ecl-site-footer__section--mobile {
  padding-top: 0;
}
.ecl-site-footer__title {
  color: #171a22;
  font:
    normal normal 400 1.5rem/1.75rem arial,
    sans-serif;
  margin: 0;
}
.ecl-site-footer__title-link,
.ecl-site-footer__title-link:focus,
.ecl-site-footer__title-link:hover,
.ecl-site-footer__title-link:visited {
  color: #171a22;
}
.ecl-link--standalone {
  text-decoration: none;
  color: #0e47cb;
  margin: 0;
}
.ecl-link--standalone:hover {
  color: #082b7a;
}
.ecl-site-footer__title--separator {
  border-bottom: 1px solid #cfdaf5;
  padding-bottom: 0.75rem;
}
.ecl-site-footer__description {
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.ecl-site-footer__list {
  list-style: none;
  margin-bottom: 0;
  margin-top: 0.75rem;
  padding-inline-start: 0;
}
.ecl-site-footer__list-item {
  margin-top: 0.5rem;
}
.ecl-site-footer__list-item:first-of-type {
  margin-top: 0;
}
.ecl-site-footer__logo-link {
  display: inline-block;
  vertical-align: bottom;
}
.ecl-site-footer__logo-image-desktop {
  display: none;
}
.ecl-site-footer__logo-image,
.ecl-site-footer__logo-image-mobile {
  display: block;
  height: 2.75rem;
}
.ecl-site-footer__section--site-info .ecl-site-footer__list {
  margin-top: 1rem;
}
@media (min-width: 996px) {
  .ecl-site-footer {
    padding-top: 0;
  }
  .ecl-site-footer__container {
    padding: 4rem 1rem;
  }
  .ecl-site-footer__row {
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    display: grid;
    grid-gap: 0 2rem;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
  .ecl-site-footer__column {
    padding-top: 0;
  }
  .ecl-site-footer__section {
    padding-top: 1.5rem;
  }
  .ecl-site-footer__section--desktop {
    display: block;
  }
  .ecl-site-footer__section--mobile {
    display: none;
  }
  .ecl-site-footer__title,
  .ecl-site-footer__title:focus,
  .ecl-site-footer__title:hover,
  .ecl-site-footer__title:visited {
    color: #171a22;
    font:
      normal normal 400 1.75rem/2rem arial,
      sans-serif;
  }
  .ecl-site-footer__logo-image-mobile {
    display: none;
  }
  .ecl-site-footer__logo-image,
  .ecl-site-footer__logo-image-desktop {
    display: block;
    height: 2.75rem;
  }
}
@keyframes float {
  0% {
    transform: translatey(0px) rotate(-5deg);
  }
  50% {
    transform: translatey(-10px) rotate(0deg);
  }
  100% {
    transform: translatey(0px) rotate(15deg);
  }
}
#back-to-top {
  position: fixed;
  inset: auto 1rem 1rem auto;
  z-index: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  aspect-ratio: 1/1;
  padding: 0 0.25rem;
  background-color: #ffffff50;
  border-radius: 10px;
}
.not-pageScroll #back-to-top {
  display: none;
}
#back-to-top img {
  position: relative;
  display: block;
  width: 40px;
  height: auto;
  transform: rotate(-90deg);
}
#back-to-top:hover img,
#back-to-top:focus img {
  top: -2px;
}
@media (max-width: 767px) and (orientation: landscape) {
  .rotate-phone {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.933333) url(../img/mobile-rotate-rotation-icon.svg) 50% 50%
      no-repeat;
    background-size: auto 50vh;
  }
}
.statement .text-link,
.statement .mail-link {
  color: #000000;
}
.statement p {
  max-width: none;
  margin-bottom: 2rem;
}
.statement p,
.statement li:not(.ecl-site-footer__list-item):not(.pre-footer__list-item),
.statement table {
  font-size: 18px;
  line-height: 24px;
}
.statement ul:not(.ecl-site-footer__list):not(.pre-footer__list) {
  margin-bottom: 2rem;
}
.statement ul:not(.ecl-site-footer__list):not(.pre-footer__list) li {
  font-weight: bold;
}
.statement table {
  font-size: 18px;
  border: 1px solid #000000;
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border-spacing: 0;
  border-collapse: collapse;
}
.statement .table > thead:first-child > tr:first-child > th {
  border-top: 0;
}
.statement .table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 1px solid #000000;
}
.statement .table > caption + thead > tr:first-child > td,
.statement .table > caption + thead > tr:first-child > th,
.statement .table > colgroup + thead > tr:first-child > td,
.statement .table > colgroup + thead > tr:first-child > th,
.statement .table > thead:first-child > tr:first-child > td,
.statement .table > thead:first-child > tr:first-child > th {
  border-top: 0;
}
.statement .table > tbody > tr > td,
.statement .table > tbody > tr > th,
.statement .table > tfoot > tr > td,
.statement .table > tfoot > tr > th,
.statement .table > thead > tr > td,
.statement .table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #000000;
  font-weight: bold;
}
.statement table th,
.statement table td {
  border: 1px solid #000000;
  padding: 8px;
}
.statement .table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
.statement .btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.statement .btn.btn-back {
  color: #cddc42;
  background: #04509c;
  border-color: #04509c;
  text-decoration: none;
}
.statement .btn.btn-back:hover {
  color: #04509c;
  background: #cddc42;
  border-color: #04509c;
  text-decoration: none;
}
.statement #main-content {
  padding: 2rem 0;
}
@media (min-width: 1200px) {
  .statement #main-content {
    padding: 4rem 0;
  }
}
.text-center {
  text-align: center !important;
}
.quotes {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .quotes {
    grid-template-columns: 1fr 4fr;
  }
}
.quotes-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}
@media (min-width: 992px) {
  .quotes-icon {
    grid-template-columns: 1fr 4fr;
    -ms-flex-pack: left;
    justify-content: left;
  }
}
.quotes-icon img {
  width: 80px;
  height: auto;
  background: transparent url(../img/quotes.svg) no-repeat 50% 0;
  background-size: 0 0;
}
@media (min-width: 992px) {
  .quotes-icon img {
    position: absolute;
    width: 120px;
  }
}
.quotes-content {
  padding: 0.6rem 0;
  line-height: 1.5rem;
  color: #04509c;
}
@media (min-width: 992px) {
  .quotes-content {
    line-height: 2rem;
  }
}
.quotes-content > div {
  border-left: 3px solid #04509c;
  padding: 0 2rem;
}
.quotes-content span {
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  .quotes-content span {
    font-size: 1.5rem;
  }
}
.quotes--blue .quotes-content {
  color: #cddc42;
}
.quotes--blue .quotes-content > div {
  border-left: 3px solid #cddc42;
}

#section-6 .quotes .quotes-content {
  color: #04509c;
}

#section-6 .quotes .quotes-content > div {
  border-left: 3px solid #04509c;
}

/* Hands icon aligned like banner icons in section 6 */
#section-6 .section-6__hands {
  position: absolute;
  inset: 50% auto auto calc(100% - 13.5vw);
  width: 25.5vw;
  margin: -8.5vw auto auto 2vw;
  z-index: 3;
  pointer-events: none;
}

#section-6 .section-6__hand {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(13.2vw, 120px);
  height: auto;
}

#section-6 .section-6__hand--back {
  animation: none;
}

#section-6 .section-6__hand--front {
  animation: none;
}

@media (min-width: 768px) {
  /* On banner entry: left hand fades up, right hand fades down, then usual loop starts */
  #section-6 .section-6__hands.animate__animated .section-6__hand--back {
    animation: hero-hand-back-meet 6s ease-in-out 1.05s infinite both;
  }

  #section-6 .section-6__hands.animate__animated .section-6__hand--front {
    animation: hero-hand-front-meet 6s ease-in-out 1.05s infinite both;
  }
  #section-6 .section-6__hands {
    position: absolute;
    top: 0.65rem;
    right: 0;
    bottom: auto;
    left: auto;
    width: 16.5vw;
    height: 75px;
    margin: 0;
    transform: translateX(50%);
    transform-origin: center;
  }
}

@media (min-width: 1200px) {
  #section-6 .section-6__hands {
    inset: 42px calc(100% + 35px) auto auto;
    width: 278px;
    margin: auto;
  }
}

@media (max-width: 767px) {
  #section-6 .section-6__hands {
    inset: 0.35rem 0.35rem auto auto;
    width: min(34vw, 150px);
    height: min(22vw, 100px);
    margin: 0;
  }

  #section-6 .section-6__hand {
    width: min(16vw, 72px);
  }
}

@keyframes section-6-hand-wobble {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

@media (max-width: 767px) {
  #section-6 .section-6__hand--back,
  #section-6 .section-6__hand--front {
    animation: none;
  }

  #section-6 .section-6__hand--back {
    animation:
      fadeIn 0.9s ease 0s 1 both,
      section-6-hand-wobble 1s ease-in-out 1.05s infinite both;
  }

  #section-6 .section-6__hand--front {
    animation:
      fadeIn 0.9s ease 0s 1 both,
      section-6-hand-wobble 1s ease-in-out 1.05s infinite both;
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

/* Template-specific overrides */
html,
body {
  scroll-behavior: auto;
}

.title-container a,
.title-container a * {
  cursor: pointer;
}

.header-site .container .title-container {
  margin: 0 auto 0.25rem;
  max-width: 100%;
  text-align: center;
}

/* Section 0 - image1 recreation */
#section-0 {
  height: auto;
  min-height: 0;
  padding: 0;
}

#section-0 .container {
  display: block;
  height: auto;
  padding: 0;
}

.hero-zero {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 2.6rem;
}

.hero-zero__media {
  position: relative;
  z-index: 0;
  line-height: 0;
}

.hero-zero__orbit {
  position: absolute;
  top: 6%;
  right: 9%;
  width: clamp(105px, 16.25vw, 225px);
  aspect-ratio: 1 / 1;
  z-index: 0;
  pointer-events: none;
}

.hero-zero__stars-spin {
  position: absolute;
  inset: 0;
  animation: spin 12s linear 0s infinite;
  z-index: 0;
}

.hero-zero__stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: hero-stars-pulse 5s ease-in-out 0s infinite;
}

.hero-zero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 75%;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

.hero-zero__bulb {
  position: absolute;
  top: 2%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}

.hero-zero__bulb-stack {
  position: relative;
  display: inline-block;
  width: clamp(32px, 7.5vw, 58px);
  opacity: 0;
  animation: hero-zero-bulb-fade-io 3.2s ease-in-out 2s infinite;
}

.hero-zero__bulb-base,
.hero-zero__bulb-lit-layer {
  display: block;
  width: 100%;
  height: auto;
}

.hero-zero__bulb-lit-layer {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  pointer-events: none;
}

@keyframes hero-zero-bulb-fade-io {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.hero-zero__children {
  position: absolute;
  top: 25%;
  left: 5%;
  width: clamp(100px, 24vw, 200px);
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}

.hero-zero__children-img {
  display: block;
  width: 100%;
  height: auto;
  animation: hero-zero-children-double-jump 3s ease-in-out 1.9s infinite;
}

@keyframes hero-zero-children-double-jump {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(0) rotate(-45deg);
  }
  32% {
    transform: translateY(-9px) rotate(-47deg);
  }
  42% {
    transform: translateY(0) rotate(-44deg);
  }
  52% {
    transform: translateY(-6px) rotate(-46deg);
  }
  62% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.hero-zero__hands {
  position: absolute;
  top: 42%;
  left: calc((100% - 75%) / 2 - 4.5rem);
  width: min(20vw, 180px);
  height: min(12vw, 110px);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.hero-zero__hand {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(10vw, 90px);
  height: auto;
}

.hero-zero__hand--back {
  animation: hero-hand-back-meet 6s ease-in-out infinite;
}

.hero-zero__hand--front {
  animation: hero-hand-front-meet 6s ease-in-out infinite;
}

@keyframes hero-hand-back-meet {
  0%,
  100% {
    transform: translate(calc(-50% - 75px), -50%);
  }
  25% {
    transform: translate(-50%, -50%);
  }
  33% {
    transform: translate(-52%, -50%) rotate(-3deg);
  }
  41% {
    transform: translate(-48%, -50%) rotate(3deg);
  }
  49% {
    transform: translate(-52%, -50%) rotate(-2deg);
  }
  57% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  58% {
    transform: translate(-50%, -50%);
  }
}

@keyframes hero-hand-front-meet {
  0%,
  100% {
    transform: translate(calc(-50% + 75px), -50%);
  }
  25% {
    transform: translate(-50%, -50%);
  }
  33% {
    transform: translate(-48%, -50%) rotate(3deg);
  }
  41% {
    transform: translate(-52%, -50%) rotate(-3deg);
  }
  49% {
    transform: translate(-48%, -50%) rotate(2deg);
  }
  57% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  58% {
    transform: translate(-50%, -50%);
  }
}

@keyframes hero-stars-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

.hero-zero__label {
  position: absolute;
  z-index: 2;
  left: calc((100% - 75%) / 2);
  bottom: 0;
  transform: none;
  line-height: 1.3;
  display: inline-block;
  max-width: calc(75% - 1rem);
  padding: 0.45rem 0.85rem;
  color: #22439d;
  background: #fff;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.slogans {
  inset: auto 0 0 0;
  margin: -2rem 0 0;
  opacity: 1;
  transition: all 0.5s 0.4s;
}

@media (min-width: 992px) {
  .slogans {
    position: relative;
    inset: auto;
  }
}

.slogan {
  position: relative;
  padding: 1rem;
  font-family: "Riffic", sans;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.24;
  text-transform: uppercase;
  color: #04509c;
  background-color: rgba(205, 220, 66, 0.67);
}

@media (min-width: 992px) {
  .slogan {
    font-size: calc(1.3125rem + 0.75vw);
    padding: calc(1.325rem + 0.9vw);
  }
}

@media (min-width: 1200px) {
  .slogan {
    font-size: 1.875rem;
    padding: 2rem;
  }
}

.slogan:after {
  content: "";
  position: absolute;
  inset: 0 0 0 calc((100vw - 800px) / -2);
  z-index: -1;
  background-color: inherit;
}

.slogan-2 {
  position: relative;
  margin: 0;
  max-width: calc(100% - 6rem);
  padding: 1rem;
  font-family: "Riffic", sans;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.24;
  text-transform: uppercase;
  color: #fff;
  background-color: #f05833;
}

@media (min-width: 992px) {
  .slogan-2 {
    font-size: calc(1.3125rem + 0.75vw);
    padding: calc(1.325rem + 0.9vw);
  }
}

@media (min-width: 1200px) {
  .slogan-2 {
    font-size: 1.875rem;
    padding: 2rem;
  }
}

.slogan-2:after {
  content: "";
  position: absolute;
  inset: 0 0 0 calc((100vw - 800px) / -2);
  z-index: -1;
  background-color: inherit;
}

.hero-zero__panel {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  background: #cddc39;
  color: #1f43a4;
  padding: 0.95rem 1.6rem 0.8rem;
  border-top: none;
  width: 75%;
}

.hero-zero__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.hero-zero__title {
  margin: 0;
  max-width: 14ch;
  font-family: "Riffic", Arial, sans-serif;
  font-size: clamp(1.55rem, 5.3vw, 3.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-zero__subtitle {
  margin: 0.6rem 0 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.hero-zero__date {
  position: absolute;
  right: 1.2rem;
  bottom: 0;
  padding: 0.55rem 1.2rem;
  background: #ff4f1f;
  color: #fff;
  font-family: "Riffic", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .hero-zero__hands {
    top: 36%;
    left: calc((100% - 75%) / 2 - 2.4rem);
    width: min(30vw, 140px);
    height: min(20vw, 90px);
  }

  .hero-zero__hand {
    width: min(16vw, 72px);
  }

  .hero-zero__orbit {
    top: 4%;
    right: 6%;
  }

  .hero-zero__label {
    left: calc((100% - 75%) / 2);
    max-width: calc(75% - 0.75rem);
    font-size: 0.95rem;
  }
  .hero-zero__panel {
    padding: 1rem 1rem 0.9rem;
  }
  .hero-zero__date {
    right: 0.8rem;
    font-size: 1rem;
    padding: 0.55rem 1rem;
  }
}

/* Accessibility hardening (WCAG 2.1 AA / EN 301 549) */
html,
body {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

html {
  font-size: 100%;
}

body {
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* By default (no JS), all content stays visible */
.animateMe {
  opacity: 1;
}

/* Animations become progressive enhancement only when JS is active */
html.js .animateMe {
  opacity: 0;
}

html.js .animate__animated {
  opacity: 1;
}

/* Keep keyboard focus clearly visible everywhere */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 0.2rem solid #082b7a;
  outline-offset: 0.2rem;
}

a.skip-to-content {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2000;
  transform: none;
  padding: 0.75rem 1rem;
  border: 0.125rem solid #082b7a;
  background: #ffffff;
  color: #082b7a;
}

a.skip-to-content:focus,
a.skip-to-content:active {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  white-space: normal;
}

/* Ensure nav links remain keyboard-usable */
.nav-link {
  min-width: 1.25rem;
  min-height: 1.25rem;
}

/* Small viewport reflow */
@media (max-width: 20rem) {
  .container,
  .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  #navigation {
    position: static;
    inset: auto;
    margin: 0 0 1rem;
    justify-content: flex-start;
  }

  .nav-list {
    flex-flow: row wrap;
    gap: 0.5rem;
  }

  .pre-footer {
    height: auto;
    max-height: none;
  }
}

/* Disable all motion when user asks for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    opacity: 1 !important;

    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  html.js .animateMe {
    opacity: 1 !important;
  }

  .hero-zero__hands {
    display: none !important;
  }

  .hero-zero__children-img {
    animation: none !important;
  }

  .hero-zero__bulb-stack {
    animation: none !important;
    opacity: 1 !important;
  }

  .hero-zero__bulb-lit-layer {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Progressive reveal for list items (JS enhancement only) */
html.js #main-content ul.reveal-list > li {
  opacity: 0;
  transform: translateY(0.5rem);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

html.js #main-content ul.reveal-list > li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js #main-content ul.reveal-list > li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.hero-zero__media > .hero-zero__bubble {
  position: absolute;
  top: 10%;
  left: 25%;
  width: clamp(40px, 7vw, 92px);
  height: auto;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.12);
  transform-origin: 50% 50%;
  z-index: 4;
  pointer-events: none;
  animation: hero-bubble-sequence 5000ms ease-in-out 5000ms infinite;
}

@keyframes hero-bubble-sequence {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.12);
  }
  23% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  61.5% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
