@charset "UTF-8";
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

body {
  padding: 0;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
a:focus, a:active {
  outline: none;
}

input:focus, input:active, fieldset:focus, fieldset:active, textarea:focus, textarea:active, button:focus, button:active {
  outline: none;
}

.alignright {
  float: right;
}

.aligncenter {
  margin: 0 auto;
  display: block;
}

.alignleft {
  float: left;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.bold, strong, b {
  font-weight: bold;
}

.undo-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.undo-li {
  margin-bottom: 0;
  list-style: none;
  list-style-type: none;
}

.undo-p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  max-height: 100%;
}

.clearfix:after, .cf:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.flat-left {
  padding-left: 0;
}

.flat-right {
  padding-right: 0;
}

.flat-both {
  padding-left: 0;
  padding-right: 0;
}

.flat-top {
  padding-top: 0;
}

.flat-bottom {
  padding-bottom: 0;
}

.flat-vertical {
  padding-top: 0;
  padding-bottom: 0;
}

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.float-none {
  float: none !important;
}

@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields {
  display: -webkit-box;
  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, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, .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%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Remove mobile/iOS default buttons
 */
/*
 * Change font size from pixels to rem
 */
/*- Font -*/
/*- Colors -*/
p {
  font-family: Quatro;
  font-size: 16px;
  line-height: 1.5em;
}

h1 {
  font-family: Quatro;
  font-weight: 700;
  font-size: 140px;
}

h2 {
  font-family: Quatro;
  font-weight: 700;
  font-size: 50px;
  line-height: 1em;
}

h3 {
  font-family: Quatro;
  font-weight: 700;
  font-size: 25px;
  line-height: 1em;
}

h4 {
  font-family: "Public Sans", sans-serif;
  font-size: 20px;
  line-height: 1em;
}

h5 {
  font-family: Quatro;
  font-weight: 700;
  font-size: 18px;
  line-height: 1em;
}

h6 {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  line-height: 1em;
}

.color-white {
  color: #fff;
}

::-moz-selection {
  color: white;
  background: black;
}

::selection {
  color: white;
  background: black;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

.the-content *:last-child {
  margin-bottom: 0;
}
.the-content ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ul ul, .the-content ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content ol ol, .the-content ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content p {
  margin-bottom: 1em;
}

.wrapper {
  position: relative;
  height: 100%;
  width: 90%;
  margin: 0 auto;
}

#main {
  margin-top: 100px;
}

html,
body {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  color: #1E2139;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
  overflow-x: hidden;
}

.page-transition {
  position: fixed;
  top: 0%;
  left: 0%;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  transform-origin: center center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.page-transition .transition-logo {
  background: url(https://agencerubik.com/wp-content/uploads/2021/07/i-love-rubik-reversed.svg) no-repeat center center;
  background-size: contain;
  position: fixed;
  width: 550px;
  height: 550px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 999999;
}
.page-transition:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  background: black;
  transform-origin: center center;
  transform: translateY(0);
  transition: all 0.3s ease-in-out 0.03s;
}
.page-transition.out {
  pointer-events: none;
  opacity: 0;
}
.page-transition.out:before, .page-transition.out:after {
  transform: translateY(0);
}
.page-transition.out .transition-logo {
  opacity: 0;
}

.is-button {
  border: 1px solid #F36C21;
  border-radius: 30px;
  padding: 12px 50px;
  text-transform: uppercase;
  width: fit-content;
  gap: 5px;
  align-items: center;
  position: relative;
  transition: 0.5s;
}
.is-button span {
  transition: 0.3s;
  position: relative;
  left: 0;
  font-weight: 700;
}
.is-button::after {
  opacity: 0%;
  transition: 0.2s;
  content: "";
  background-image: url("../images/Bouton-Fleche-blanche.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 14px;
  top: 10px;
}
.is-button:hover span {
  left: -10px;
}
.is-button:hover::after {
  opacity: 100%;
}

.is-button:hover {
  background: #F36C21;
}
.is-button:hover a {
  color: #ffffff !important;
}

.banner1 {
  margin-top: -100px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
  position: relative;
}
.banner1 .banner-content-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: right;
}
.banner1 .banner-content-wrapper .white-lines {
  transform: translateY(6px);
}
.banner1 .banner-content-wrapper .white-lines svg {
  width: 150px;
  height: auto;
  overflow: visible;
}
.banner1 .color-top {
  padding: 375px 10% 200px;
  background-image: linear-gradient(rgba(11, 13, 39, 0.937254902), rgba(21, 24, 56, 0.937254902));
}
.banner1 .color-top.english {
  padding: 375px 20% 200px;
}
.banner1 .title1 {
  color: #ffffff;
}
.banner1 .title2 {
  color: rgba(255, 255, 255, 0);
  text-align: end;
  -webkit-text-stroke: 2px #F36C21;
}
.banner1 .col-paragraph {
  width: 100%;
  max-width: 500px;
  margin-top: 35px;
  position: relative;
}
.banner1 .col-paragraph p {
  color: #ffffff;
  margin: 40px 0px;
  line-height: 25px;
  font-family: "Public Sans";
  font-weight: 300;
}
.banner1 .col-socials {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  position: absolute;
  left: 60px;
  bottom: 50%;
  transform: translateY(50%);
  line-height: 250%;
}
.banner1 .col-socials::before, .banner1 .col-socials::after {
  content: "";
  background-image: url("../images/white-vertical-line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 5px;
  height: 100px;
  position: absolute;
  left: 50%;
}
.banner1 .col-socials::before {
  top: -95%;
}
.banner1 .col-socials::after {
  top: 100%;
}
.banner1 .col-socials::after {
  bottom: -90px;
}
.banner1 .col-socials a svg {
  width: 20px;
  height: 20px;
  transition: 0.2s;
}
.banner1 .col-socials a svg path {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.banner1 .col-socials a svg:hover {
  filter: initial;
}
.banner1 .col-socials a:hover path {
  fill: #F36C21;
}

.orange-top-title {
  color: #F36C21;
  text-transform: uppercase;
}

.banner2 {
  margin-top: -100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 10;
  position: relative;
}
.banner2 .color-top {
  padding: 150px 0px 0px 0px;
  background-color: rgba(21, 24, 56, 0.92);
  display: flex;
  flex-wrap: wrap;
}
.banner2 .color-top .col-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5%;
  padding-right: 10%;
}
.banner2 .color-top .col-content h1 {
  font-size: 69px;
  color: #ffffff;
  width: 100%;
}
.banner2 .color-top .col-content h1 span {
  border-bottom: 1px solid #F36C21;
}
.banner2 .color-top .col-image {
  padding: 0px;
  border-radius: 20px 0px 0px 20px;
  position: relative;
  bottom: -100px;
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner2 .color-top .col-image .border-orange {
  border: 1px solid #F36C21;
  height: 100%;
  width: 110%;
  border-radius: 20px 0px 0px 20px;
  transform: translate(-20px, -20px);
}
.banner2 .color-top .col-image img {
  border-radius: 20px 0px 0px 20px;
  position: relative;
  bottom: -30px;
  right: -30px;
}

.surtitre-bleu {
  font-family: "Public Sans";
  text-transform: uppercase;
  font-weight: 700;
  color: #3151BE;
  margin-bottom: 10px;
  position: relative;
}

#accueil .text-defilez {
  left: 95%;
}
#accueil .section-information {
  padding: 150px 0px;
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}
#accueil .section-information .bande {
  position: absolute;
  width: 30%;
}
#accueil .section-information .bande1 {
  top: -22%;
  left: -17%;
  z-index: 5;
}
#accueil .section-information .bande2 {
  z-index: 5;
  top: -58%;
  left: 5%;
}
#accueil .section-information .bande3 {
  top: -40%;
  left: 15%;
}
#accueil .section-information .row-a-propos {
  max-width: 100vw;
  display: flex;
}
#accueil .section-information .row-a-propos .image-gauche {
  padding-left: 0px;
}
#accueil .section-information .row-a-propos .col-image img {
  border-radius: 0px 20px 20px 0px;
  transition: 0.2s;
}
#accueil .section-information .row-a-propos .col-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#accueil .section-information .row-a-propos .col-about .col-inner {
  max-width: 550px;
  margin: auto;
}
#accueil .section-information .row-a-propos .col-about .about-top-title {
  color: #3151BE;
  font-family: "Public Sans";
  font-weight: 800;
  text-transform: uppercase;
}
#accueil .section-information .row-a-propos .col-about .about-text {
  padding: 40px 0px;
  font-family: "Public Sans";
  font-weight: 300;
}
#accueil .section-information .row-a-propos .col-about ul {
  margin-top: 40px;
}
#accueil .section-information .row-a-propos .col-about .subject-title {
  font-family: "Public Sans";
  font-weight: 900;
  text-transform: uppercase;
}
#accueil .section-information .row-a-propos .col-about .row-subject {
  border-top: 1px solid #3151BE;
  border-bottom: 1px solid #3151BE;
  margin-left: 0px;
  padding: 20px;
  transition: 0.5s;
  margin-top: -1px;
  align-items: center;
}
#accueil .section-information .row-a-propos .col-about .row-subject path {
  transition: all 0.2s ease-out;
}
#accueil .section-information .row-a-propos .col-about .row-subject:hover {
  background-color: #F36C21;
  color: #ffffff;
  border-color: #F36C21;
  z-index: 2;
}
#accueil .section-information .row-a-propos .col-about .row-subject:hover path {
  fill: #fff;
}
#accueil .section-information .row-a-propos .col-about .row-subject div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#accueil .section-information .row-a-propos .col-about .row-subject .col-image {
  align-items: center;
  margin-right: 0px;
}
#accueil .section-information .row-a-propos .col-about .row-subject .col-image img {
  width: 60px;
  border-radius: 0px;
}
#accueil .section-information .row-a-propos .col-about .row-subject .col-content p {
  display: none;
}
#accueil .section-information .row-a-propos .col-about .row-subject .col-button span {
  position: relative;
  top: 35%;
  width: 50px;
  height: auto;
  align-items: center;
}
#accueil .section-societes {
  padding: 150px 0px 200px 0px;
  width: 70%;
  margin: auto;
  text-align: center;
  position: relative;
}
#accueil .section-societes img {
  width: 100%;
  height: auto;
  max-width: 350px;
  position: relative;
}
#accueil .section-societes h2 {
  font-size: 40px;
  font-family: "Public Sans";
  font-weight: 600;
  color: #3151BE;
  width: 100%;
  max-width: 650px;
  margin: 40px auto;
  position: relative;
}
#accueil .section-societes .society-text {
  padding-bottom: 100px;
  width: 750px;
  margin: auto;
  position: relative;
}
#accueil .section-societes .society-text p {
  font-family: "Public Sans";
  font-weight: 300;
}
#accueil .section-societes .single-icon {
  position: absolute;
  width: 80px;
  height: auto;
}
#accueil .section-societes .main1 {
  left: 0%;
  bottom: 30%;
}
#accueil .section-societes .main2 {
  left: 10%;
  bottom: 25%;
}
#accueil .section-societes .main3 {
  left: 20%;
  bottom: 75%;
}
#accueil .section-societes .main4 {
  bottom: 10%;
}
#accueil .section-societes .main5 {
  right: 25%;
  bottom: 85%;
}
#accueil .section-societes .main6 {
  right: 5%;
  bottom: 60%;
}
#accueil .section-societes .main7 {
  right: 0%;
  bottom: 50%;
}
#accueil .image-fond-carte {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: relative;
  z-index: 3;
}
#accueil .titre-avantage {
  color: #3151BE;
  font-size: 9vw;
  font-family: "quatro";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-21%);
  opacity: 0.2;
}
#accueil .surtitre-bleu {
  display: none;
}
#accueil .bloc-fond-bleu {
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgb(21, 24, 56) 0%, rgb(31, 36, 85) 50%, rgba(41, 47, 113, 0) 100%);
  background: -webkit-linear-gradient(top, rgb(21, 24, 56) 0%, rgb(31, 36, 85) 50%, rgba(41, 47, 113, 0) 100%);
  background: linear-gradient(to bottom, rgb(21, 24, 56) 0%, rgb(31, 36, 85) 50%, rgba(41, 47, 113, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#151838", endColorstr="#00292f71",GradientType=0 );
  position: relative;
  padding: 175px 0px 100px;
}
#accueil .bloc-fond-bleu .section-avantages {
  width: 80%;
  margin: auto;
  position: relative;
}
#accueil .bloc-fond-bleu .section-avantages h3 {
  color: #3151BE;
  font-family: "Public Sans";
  font-weight: 600;
  text-transform: uppercase;
}
#accueil .bloc-fond-bleu .section-avantages h2 {
  color: #ffffff;
  width: 100%;
  max-width: 400px;
}
#accueil .bloc-fond-bleu .section-avantages .bloc-text {
  color: #ffffff;
  width: 100%;
  max-width: 675px;
  margin: 50px 0px;
  line-height: 25px;
  font-family: "Public Sans";
  font-weight: 300;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list {
  display: flex;
  flex-wrap: wrap;
  margin: 50px auto;
  width: 90%;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list li {
  width: 33%;
  padding: 50px;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list li h2 {
  font-family: "Public Sans";
  font-weight: 800;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 2px #F36C21;
  margin-bottom: 20px;
  transition: 0.2s ease-in-out;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list li .list-item-text h4 {
  width: 100%;
  line-height: 25px;
  margin-bottom: 50px;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list li .list-item-text p {
  color: #ffffff;
  font-family: "Public Sans";
  font-size: 1.25rem;
  font-weight: 300;
  text-transform: none;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-1 {
  position: relative;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-1::after {
  content: "";
  background: #F36C21;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 0%;
  height: 1px;
  transition: 0.5s;
  transition-delay: 0.5s;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-1::before {
  content: "";
  background: #F36C21;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 1px;
  height: 0%;
  transition: 0.5s;
  transition-delay: 0.5s;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-2 {
  border-bottom: 1px solid #F36C21;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-3 {
  position: relative;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-3::after {
  content: "";
  background: #F36C21;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 1px;
  transition: 0.5s;
  transition-delay: 0.5s;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-3::before {
  content: "";
  background: #F36C21;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 1px;
  height: 0%;
  transition: 0.5s;
  transition-delay: 0.5s;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-4 {
  position: relative;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-4::before {
  content: "";
  background: #F36C21;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 1px;
  height: 0%;
  transition: 0.5s;
  transition-delay: 0.5s;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-6 {
  position: relative;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-6::before {
  content: "";
  background: #F36C21;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1px;
  height: 0%;
  transition: 0.5s;
  transition-delay: 0.5s;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .active-before-after::before {
  height: 100%;
}
#accueil .bloc-fond-bleu .section-avantages .perk-list .active-before-after::after {
  width: 100%;
}
#accueil .bloc-fond-bleu .section-couverture {
  padding: 50px 0px;
  width: 80%;
  margin: auto;
  text-align: center;
}
#accueil .bloc-fond-bleu .section-couverture h3 {
  color: #3151BE;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#accueil .bloc-fond-bleu .section-couverture h2 {
  color: #ffffff;
}
#accueil .bloc-fond-bleu .section-couverture .bloc-text {
  color: #ffffff;
  width: 100%;
  max-width: 750px;
  margin: 50px auto;
  line-height: 25px;
  font-family: "Public Sans";
}
#accueil .bloc-fond-bleu .section-couverture .coverage-link {
  justify-content: center;
}
#accueil .bloc-fond-bleu #image-droite {
  position: absolute;
  top: -150px;
  right: -275px;
  width: 60%;
  height: auto;
}
#accueil .splide-front-page {
  position: relative;
}
#accueil .splide-front-page .filtre-orange {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  border-radius: 20px;
  background: -moz-linear-gradient(top, rgba(243, 108, 33, 0.75) 0%, rgba(243, 108, 33, 0.75) 100%);
  background: -webkit-linear-gradient(top, rgba(243, 108, 33, 0.75) 0%, rgba(243, 108, 33, 0.75) 100%);
  background: linear-gradient(to bottom, rgba(243, 108, 33, 0.75) 0%, rgba(243, 108, 33, 0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#bff36c21", endColorstr="#bff36c21",GradientType=0 );
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}
#accueil .splide-front-page .filtre-orange .loupe {
  width: 100px;
  height: auto;
}
#accueil .splide-front-page.mobile {
  display: none;
  margin: 50px 0 100px;
}
#accueil .splide-front-page .splide__track {
  border-radius: 25px;
}
#accueil .splide-front-page .splide__arrows {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 75%;
  left: 50%;
  top: 40vw;
  transform: translateX(-50%);
  z-index: 5;
}
#accueil .splide-front-page .splide__arrows .splide__arrow {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
#accueil .splide-front-page .splide__arrows .splide__arrow svg {
  width: 75px;
  height: 75px;
}
#accueil .splide-front-page .splide__arrows .splide__arrow path {
  fill: #F36C21;
  transition: all 0.3s ease-out;
}
#accueil .splide-front-page .splide__arrows .splide__arrow:after {
  content: "";
  position: absolute;
  background-image: url("../images/Bouton-Fleche-orange.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
}
#accueil .splide-front-page .splide__arrows .splide__arrow.splide__arrow--prev {
  transform: scaleX(-1);
}
#accueil .splide-front-page .splide__arrows .splide__arrow:hover path {
  fill: #151838;
}
#accueil .splide-front-page:hover .filtre-orange {
  opacity: 0.7;
}

.image-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.link-with-arrow {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.link-with-arrow::after {
  content: "";
  background-image: url("../images/Bouton-Fleche-orange.svg");
  background-repeat: no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  position: relative;
  margin-left: 10px;
  transform: translateX(0px);
  transition: 0.3s;
  display: inline-block;
}
.link-with-arrow:hover::after {
  transform: translateX(10px);
}
.link-with-arrow span {
  color: #F36C21;
  text-transform: uppercase;
  position: relative;
  font-family: Quatro;
  font-weight: 700;
  max-width: calc(100% - 25px);
}

.link-with-arrow-previous {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.link-with-arrow-previous::before {
  content: "";
  background-image: url("../images/Bouton-fleche-light-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  position: relative;
  transition: 0.2s;
  transform: scale(-1);
  margin-right: 10px;
  display: inline-block;
}
.link-with-arrow-previous:hover::before {
  margin-right: 20px;
}
.link-with-arrow-previous span {
  color: #3151BE;
  text-transform: uppercase;
  position: relative;
  font-family: Quatro;
  font-weight: 700;
}

.section-carriere {
  padding: 150px 0px;
  width: 80%;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
}
.section-carriere .link-with-arrow span {
  max-width: calc(55% - 25px);
}
.section-carriere .link-with-arrow span::after {
  margin-left: 0px;
}
.section-carriere .pattern1 {
  position: absolute;
  left: -275px;
  top: -50px;
  width: 400px;
}
.section-carriere .pattern2 {
  position: absolute;
  right: -250px;
  bottom: -80px;
  width: 400px;
}
.section-carriere .col-gauche {
  display: flex;
  align-items: center;
}
.section-carriere .col-gauche .content {
  border-left: 2px solid #F36C21;
  padding-left: 40px;
}
.section-carriere .col-gauche .content h3 {
  color: #3151BE;
}
.section-carriere .col-gauche .content h2 {
  margin-bottom: 150px;
  width: 80%;
}
.section-carriere .col-liste-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: end;
}
.section-carriere .col-liste-categories ul li {
  width: 18%;
  height: 600px;
  color: #ffffff;
  padding: 20px 20px 0px 20px;
  border-radius: 10px;
  display: grid;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}
.section-carriere .col-liste-categories ul li h3 {
  bottom: 0px;
  font-size: 1rem;
}
.section-carriere .col-liste-categories ul li .toptitle {
  margin-bottom: 30px;
  display: none;
}
.section-carriere .col-liste-categories ul li .toptitle.en {
  margin-bottom: 0px;
}
.section-carriere .col-liste-categories ul li .title {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  align-self: start;
  justify-self: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Public Sans";
  font-size: 1rem;
}
.section-carriere .col-liste-categories ul li #image-lettre svg {
  display: none;
  width: 200px;
  position: relative;
  right: -50px;
  bottom: 0px;
}
.section-carriere .col-liste-categories ul li #image-personne {
  width: 150%;
  height: auto;
  position: absolute;
  align-self: end;
  left: 10%;
  top: 45%;
  transform: scale(2);
  -webkit-transform: scale(2);
  transform-origin: center top;
  transition: all 0.3s;
}
.section-carriere .col-liste-categories ul li.active-category {
  width: 35%;
}
.section-carriere .col-liste-categories ul li.active-category h3 {
  font-family: "Public Sans";
  text-transform: uppercase;
  font-weight: 800;
  position: absolute;
  bottom: 0px;
  left: 10%;
  z-index: 6;
  bottom: 30px;
}
.section-carriere .col-liste-categories ul li.active-category .toptitle {
  margin-bottom: 30px;
  display: block;
  text-shadow: 3px 3px 10px #000;
}
.section-carriere .col-liste-categories ul li.active-category .toptitle.en {
  margin-bottom: 0px;
}
.section-carriere .col-liste-categories ul li.active-category .title {
  writing-mode: initial;
  justify-self: start;
  margin-bottom: 0px;
  transform: none;
  text-shadow: 3px 2px 5px #000;
}
.section-carriere .col-liste-categories ul li.active-category .title.en {
  margin-bottom: 30px;
}
.section-carriere .col-liste-categories ul li.active-category #image-lettre svg {
  display: block;
}
.section-carriere .col-liste-categories ul li.active-category #image-personne {
  top: 0%;
  left: -5%;
  transform: scale(1.9);
  -webkit-transform: scale(1.9);
}
.section-carriere .col-liste-categories ul li.active-category .gradient-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#a-propos .section-mission {
  padding-top: 200px;
  padding-bottom: 150px;
  width: 80%;
  margin: auto;
  position: relative;
}
#a-propos .section-mission.active .bande1 {
  transform: translate(0%, -15%);
}
#a-propos .section-mission.active .bande2 {
  transform: translate(0%, -20%);
}
#a-propos .section-mission.active .bande3 {
  transform: translate(0%, -30%);
}
#a-propos .section-mission h3 {
  color: #3151BE;
}
#a-propos .section-mission h2 {
  width: 500px;
  position: relative;
}
#a-propos .section-mission .mission-text {
  width: 650px;
  margin: 40px 0px 10px;
  position: relative;
}
#a-propos .section-mission .mission-text p {
  font-family: "Public Sans";
  font-weight: 300;
}
#a-propos .section-mission .signature {
  color: #404A56;
  font-family: "Public Sans";
  font-weight: 600;
  text-transform: uppercase;
}
#a-propos .section-mission .bande {
  position: absolute;
  width: 400px;
}
#a-propos .section-mission .bande1 {
  right: -315px;
  top: 0%;
  transform: translate(10%, -100%);
  transition: 0.8s;
}
#a-propos .section-mission .bande2 {
  right: -140px;
  top: 0%;
  transform: translate(10%, -100%);
  transition: 1s;
  animation-delay: 1s;
}
#a-propos .section-mission .bande3 {
  right: 10px;
  top: 0%;
  transform: translate(10%, -100%);
  transition: 1.2s;
  animation-delay: 2s;
}
#a-propos .section-avantages {
  padding: 150px 0px;
  display: flex;
  gap: 100px;
}
#a-propos .section-avantages .col-image {
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0px 20px 20px 0px;
}
#a-propos .section-avantages .col-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
#a-propos .section-avantages .col-content h2 {
  width: 500px;
}
#a-propos .section-avantages .col-content ul {
  margin: 50px 0px;
}
#a-propos .section-avantages .col-content ul li {
  flex-wrap: wrap;
  padding: 15px 0px;
  margin: -1px;
  border-top: 1px solid #3151BE;
  border-bottom: 1px solid #3151BE;
  display: flex;
  align-items: center;
}
#a-propos .section-avantages .col-content ul li .icone {
  text-align: center;
}
#a-propos .section-avantages .col-content ul li .icone img {
  width: 50px;
  height: 50px;
}
#a-propos .section-citation {
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
#a-propos .section-citation .filtre-bleu {
  padding: 150px 0px 200px 0px;
  background-image: linear-gradient(rgba(21, 24, 56, 0.5), rgba(41, 47, 113, 0.5));
  width: 100%;
  height: 100%;
  margin: 0px;
  color: #ffffff;
  display: grid;
  position: relative;
}
#a-propos .section-citation .filtre-bleu .col-paragraph1 {
  border-bottom: 1px solid #F36C21;
  position: relative;
}
#a-propos .section-citation .filtre-bleu .col-paragraph1 h3 {
  width: 1050px;
  padding: 0px 10%;
  line-height: 55px;
  margin-bottom: 200px;
  font-family: "Public Sans";
  font-weight: 500;
}
#a-propos .section-citation .filtre-bleu .col-paragraph1 img {
  position: absolute;
  left: 0%;
  bottom: 0px;
  width: 300px;
  height: auto;
  transition: 0.05s;
}
#a-propos .section-citation .filtre-bleu .col-paragraph1 span {
  border-bottom: 1px solid #F36C21;
}
#a-propos .section-citation .filtre-bleu .scroll-down .scrolling-element {
  transform: translateX(100vw);
}
#a-propos .section-citation .filtre-bleu .scroll-up .scrolling-element {
  transform: translateX(0vw);
}
#a-propos .section-citation .filtre-bleu p {
  width: 650px;
  text-align: right;
  margin-left: auto;
  margin-top: 100px;
  padding-right: 10%;
  font-weight: 300;
  font-family: "Public Sans";
}
#a-propos .section-citation .filtre-bleu .bourassa-text-wrapper {
  position: absolute;
  bottom: -175px;
  width: 100%;
  text-align: center;
}
#a-propos .section-citation .filtre-bleu .bourassa-text-wrapper .bourassa-bas-de-page {
  color: rgba(49, 81, 190, 0.4);
  font-size: 400px;
  font-family: "quatro";
  font-weight: 600;
}
#a-propos .section-services {
  padding: 150px 0px;
  width: 80%;
  margin: auto;
  position: relative;
}
#a-propos .section-services .pattern1 {
  position: absolute;
  right: -300px;
  top: 25px;
}
#a-propos .section-services .pattern2 {
  position: absolute;
  left: -250px;
  bottom: 75px;
  rotate: -50deg;
}
#a-propos .section-services .top-title {
  color: #3151BE;
  text-transform: uppercase;
}
#a-propos .section-services h2 {
  width: 600px;
  font-size: 40px;
}
#a-propos .section-services p {
  margin: 30px 0px;
  width: 475px;
  max-width: 100%;
}
#a-propos .section-services ul {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
#a-propos .section-services ul li {
  height: 700px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  padding: 0px;
}
#a-propos .section-services ul li .service-single {
  width: 100%;
  height: 15%;
  background-color: rgba(243, 103, 33, 0.95);
  color: #ffffff;
  padding: 20px 30px;
  transition: 0.3s;
  position: relative;
}
#a-propos .section-services ul li .service-single h3 {
  position: relative;
  top: 25%;
  transform: translateY(-50%);
  font-size: 30px;
}
#a-propos .section-services ul li .service-single span {
  position: absolute;
  bottom: 25px;
  transition: 0.3s;
  color: #ffffff;
  font-weight: 700;
}
#a-propos .section-services ul li .service-single span:after {
  content: "";
  background-image: url("../images/Bouton-Fleche-orange.svg");
  background-repeat: no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -3px;
  right: -35px;
  transition: 0.2s;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(83deg) brightness(203%) contrast(102%);
}
#a-propos .section-services ul li .service-single span:hover::after {
  right: -45px;
}

.col-content {
  position: relative;
}
.col-content .text-defilez {
  writing-mode: vertical-rl;
  width: fit-content;
  text-transform: uppercase;
  color: #F36C21;
  position: relative;
  top: 14%;
}
.col-content .text-defilez::after {
  content: "";
  background-image: url(../images/fleche-orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 100%;
  position: absolute;
  left: 5px;
  bottom: -110px;
}

#carriere .section-banner .banner-text {
  margin: 40px 0px;
  color: #ffffff;
}
#carriere .section-banner .col-content {
  margin-top: 100px;
  padding-bottom: 200px;
}
#carriere .section-banner .col-image {
  height: 900px;
}
#carriere .section-banner .col-boutons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#carriere .section-banner .col-boutons span {
  color: #ffffff;
}
#carriere .section-banner .col-boutons .left-button {
  background-color: #F36C21;
}
#carriere .section-banner .col-boutons .left-button:hover {
  background-color: #3151BE;
  border: 1px solid #3151BE;
}
#carriere .section-postes-disponibles {
  padding: 200px 150px 150px;
}
#carriere .section-postes-disponibles .col-titre {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#carriere .section-postes-disponibles .col-titre .col-select {
  position: relative;
}
#carriere .section-postes-disponibles .col-titre .col-select::after {
  content: "";
  background-image: url("../images/Petite-Fleche.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 10px;
  height: 15px;
  top: 35%;
  right: 30px;
  cursor: pointer;
  z-index: 6;
}
#carriere .section-postes-disponibles .col-titre .col-select .select-box {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #3151BE;
}
#carriere .section-postes-disponibles .department-list {
  margin: 50px 0px;
}
#carriere .section-postes-disponibles .department-list .row-departement {
  border-top: 1px solid #3151BE;
  border-bottom: 1px solid #3151BE;
  margin: -1px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #ffffff;
  transition: 0.1s;
  cursor: pointer;
}
#carriere .section-postes-disponibles .department-list .row-departement .department-name {
  font-family: "Public Sans";
  font-weight: 800;
  text-transform: uppercase;
}
#carriere .section-postes-disponibles .department-list .row-departement .col-fleche {
  width: 25px;
  height: 25px;
  text-align: end;
}
#carriere .section-postes-disponibles .department-list .row-departement .col-fleche img {
  transition: 0.2s;
  rotate: 90deg;
}
#carriere .section-postes-disponibles .department-list .liste-jobs {
  display: none;
  background-color: #ffffff;
}
#carriere .section-postes-disponibles .department-list .row-single-job:nth-child(odd) {
  background-color: #F0F6FD;
}
#carriere .section-postes-disponibles .department-list .row-single-job {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: -1px;
  font-family: "Public Sans";
  font-weight: 600;
}
#carriere .section-postes-disponibles .department-list .row-single-job .left-button {
  padding: 12px 30px;
}
#carriere .section-postes-disponibles .department-list .row-single-job .single-job-link {
  font-size: 1.25rem;
  font-family: "Public Sans";
  font-weight: 400;
}
#carriere .section-postes-disponibles .department-list .row-single-job.hide {
  display: none;
}
#carriere .section-postes-disponibles .department-list .row-single-job .is-button {
  background: #F36C21;
  padding: 10px 50px;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0px 20px;
}
#carriere .section-postes-disponibles .department-list .row-single-job .is-button:hover {
  background: #3151BE;
  border: 1px solid #3151BE;
}
#carriere .section-postes-disponibles .department-list .row-single-job .is-button::after {
  background-image: none;
}
#carriere .section-postes-disponibles .department-list .row-single-job .col-nom {
  padding: 0px 50px;
}
#carriere .section-postes-disponibles .department-list .row-single-job .col-nom:hover a {
  text-decoration: underline;
}
#carriere .section-postes-disponibles .department-list .row-single-job .col-ville {
  padding: 50px 20px;
  border-left: 1px solid #151838;
  border-right: 1px solid #151838;
}
#carriere .section-postes-disponibles .department-list .row-single-job .col-ville h4 {
  font-size: 1.25rem;
  font-family: "Public Sans";
  font-weight: 400;
  text-align: center;
}
#carriere .section-postes-disponibles .department-list .row-single-job .col-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-evenly;
}
#carriere .section-postes-disponibles .department-list .row-single-job .col-socials .socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
#carriere .section-postes-disponibles .department-list .row-single-job .col-socials .socials a path, #carriere .section-postes-disponibles .department-list .row-single-job .col-socials .socials a circle, #carriere .section-postes-disponibles .department-list .row-single-job .col-socials .socials a rect {
  transition: 0.3s;
}
#carriere .section-postes-disponibles .department-list .row-single-job .col-socials .socials a:hover path, #carriere .section-postes-disponibles .department-list .row-single-job .col-socials .socials a:hover circle, #carriere .section-postes-disponibles .department-list .row-single-job .col-socials .socials a:hover rect {
  fill: #3151BE;
}
#carriere .section-postes-disponibles .department-list .row-single-job .col-socials p {
  font-weight: 300;
}
#carriere .section-avantages {
  padding: 150px 10%;
  text-align: center;
  background-image: linear-gradient(rgb(21, 24, 56), rgb(41, 47, 113));
  position: relative;
}
#carriere .section-avantages .perks-link {
  justify-content: center;
}
#carriere .section-avantages .pattern1, #carriere .section-avantages .pattern2 {
  position: absolute;
}
#carriere .section-avantages .pattern1 {
  left: -10%;
  top: 0px;
  width: 40%;
}
#carriere .section-avantages .pattern2 {
  right: -15%;
  bottom: 13%;
  width: 40%;
  transform: rotate(-100deg);
}
#carriere .section-avantages .bourassa-vertical {
  color: rgba(49, 81, 190, 0.4);
  font-size: 250px;
  font-family: "quatro";
  font-weight: 600;
  writing-mode: vertical-lr;
  position: absolute;
  top: -100px;
  left: -100px;
  margin: 100px 0px;
}
#carriere .section-avantages h3 {
  color: #3151BE;
  position: relative;
}
#carriere .section-avantages h2 {
  color: #ffffff;
  position: relative;
}
#carriere .section-avantages p {
  color: #ffffff;
  width: 700px;
  max-width: 100%;
  margin: 30px auto;
  position: relative;
  text-align: center;
}
#carriere .section-avantages .liste-avantages {
  width: 80%;
  margin: auto;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-around;
}
#carriere .section-avantages .liste-avantages li {
  width: 20%;
}
#carriere .section-avantages .liste-avantages li img {
  width: 150px;
  margin-bottom: 20px;
}
#carriere .section-avantages .liste-avantages li h4 {
  color: #ffffff;
}
#carriere .section-candidature {
  padding: 150px 0px;
  padding-bottom: 300px;
  background-image: url("../images/background-candidature.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
#carriere .section-candidature .gfield {
  margin-bottom: 15px;
}
#carriere .section-candidature .col-content {
  width: 80%;
  margin: auto;
  display: flex;
}
#carriere .section-candidature .col-content .col-informations {
  padding-top: 100px;
  padding-right: 100px;
}
#carriere .section-candidature .col-content .col-informations hr {
  width: 15%;
  max-width: 100%;
  height: 1px;
  background-color: #F36C21;
  border: none;
  margin: 50px 0px 30px;
}
#carriere .section-candidature .col-content .col-informations p, #carriere .section-candidature .col-content .col-informations span {
  font-family: "Public Sans";
  font-weight: 300;
}
#carriere .section-candidature .col-content h3 {
  color: #3151BE;
  text-transform: uppercase;
}
#carriere .section-candidature .col-content .candidacy-title {
  width: 400px;
  max-width: 100%;
}
#carriere .section-candidature .col-content .candidacy-text {
  width: 100%;
  max-width: 450px;
  margin: 50px 0px;
}
#carriere .section-candidature .col-content .contact-title {
  font-family: "Public Sans";
  font-weight: 600;
  color: #F36C21;
  margin-bottom: 20px;
}
#carriere .section-candidature .col-content li {
  margin: 10px 0px;
}
#carriere .section-candidature .col-content li .contact-method {
  display: flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
}
#carriere .section-candidature .col-content li .contact-method:hover {
  text-decoration: underline;
}
#carriere .section-candidature .col-content li img {
  width: 20px;
  height: 20px;
}
#carriere .section-candidature .col-formulaire {
  background-color: #F36C21;
  padding: 100px;
  border-radius: 20px;
  color: #ffffff;
}
#carriere .section-candidature .col-formulaire hr {
  width: 100%;
  max-width: 100%;
  height: 1px;
  background-color: #ffffff;
  border: none;
}
#carriere .section-candidature .col-formulaire .gform-field-label.gform-field-label--type-inline {
  padding-left: 30px;
}
#carriere .section-candidature .col-formulaire h2:not(.gform_submission_error) {
  margin-bottom: 50px;
  width: 500px;
  max-width: 100%;
}
#carriere .section-candidature .col-formulaire input {
  font-family: "Public Sans";
  font-weight: 300;
}
#carriere .section-candidature .col-formulaire #field_1_12 .gfield_label, #carriere .section-candidature .col-formulaire #field_10_12 .gfield_label {
  margin: 25px 0px;
}
#carriere .section-candidature .col-formulaire #input_1_12, #carriere .section-candidature .col-formulaire #input_10_12 {
  display: flex;
  gap: 20px;
}
#carriere .section-candidature .col-formulaire #input_1_12 label:before, #carriere .section-candidature .col-formulaire #input_10_12 label:before {
  border: 2px solid #ffffff;
  background-color: #ffffff;
  height: 15px;
  width: 15px;
}
#carriere .section-candidature .col-formulaire #input_1_12 .gchoice_1_12_0, #carriere .section-candidature .col-formulaire #input_1_12 .gchoice_10_12_0, #carriere .section-candidature .col-formulaire #input_10_12 .gchoice_1_12_0, #carriere .section-candidature .col-formulaire #input_10_12 .gchoice_10_12_0 {
  margin-bottom: 0px;
}
#carriere .section-candidature .col-formulaire #field_1_13, #carriere .section-candidature .col-formulaire #field_10_13 {
  position: relative;
}
#carriere .section-candidature .col-formulaire #field_1_13 input, #carriere .section-candidature .col-formulaire #field_10_13 input {
  opacity: 0;
  position: relative;
  top: 50%;
  transform: translateY(-25%);
  left: 0px;
  height: 40px;
  z-index: 99;
  cursor: pointer;
}
#carriere .section-candidature .col-formulaire #field_1_13::before, #carriere .section-candidature .col-formulaire #field_10_13::before {
  content: "";
  background-image: url(../images/icone-trombone.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 20px;
  transform: translateY(-50%);
  left: 15px;
}
#carriere .section-candidature .col-formulaire #field_1_13 #gfield_upload_rules_1_13, #carriere .section-candidature .col-formulaire #field_1_13 #gfield_upload_rules_10_13, #carriere .section-candidature .col-formulaire #field_10_13 #gfield_upload_rules_1_13, #carriere .section-candidature .col-formulaire #field_10_13 #gfield_upload_rules_10_13 {
  position: absolute;
  font-family: "Public Sans";
  font-size: 1rem;
  font-weight: 300;
  left: 35px;
  top: 35%;
  transform: translateY(-50%);
  cursor: pointer !important;
}
#carriere .section-candidature .col-formulaire #field_1_13 #gfield_upload_rules_1_13:hover, #carriere .section-candidature .col-formulaire #field_1_13 #gfield_upload_rules_10_13:hover, #carriere .section-candidature .col-formulaire #field_10_13 #gfield_upload_rules_1_13:hover, #carriere .section-candidature .col-formulaire #field_10_13 #gfield_upload_rules_10_13:hover {
  text-decoration: underline;
}
#carriere .section-candidature .col-formulaire #field_1_13 #live_validation_message_1_13, #carriere .section-candidature .col-formulaire #field_1_13 #live_validation_message_10_13, #carriere .section-candidature .col-formulaire #field_10_13 #live_validation_message_1_13, #carriere .section-candidature .col-formulaire #field_10_13 #live_validation_message_10_13 {
  display: none;
}
#carriere .section-candidature .col-formulaire .gform_heading {
  display: none;
}
#carriere .section-candidature .col-formulaire input {
  border-radius: 12px;
  border: none;
}
#carriere .section-candidature .col-formulaire .ginput_container_select {
  position: relative;
}
#carriere .section-candidature .col-formulaire .ginput_container_select::after {
  content: "";
  background-image: url(../images/chevron-noir.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 25px;
  top: 10px;
  rotate: 180deg;
  cursor: pointer;
}
#carriere .section-candidature .col-formulaire .ginput_container_select select {
  border: none;
}
#carriere .section-candidature .col-formulaire #gform_submit_button_1, #carriere .section-candidature .col-formulaire #gform_submit_button_10 {
  background-color: rgba(255, 255, 255, 0);
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  position: relative;
  cursor: pointer;
  justify-content: left;
  width: fit-content;
}
#carriere .section-candidature .col-formulaire #gform_submit_button_1::after, #carriere .section-candidature .col-formulaire #gform_submit_button_10::after {
  content: "";
  position: absolute;
  background-image: url(../images/Bouton-Fleche-blanche.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(30px);
  transition: 0.3s;
}
#carriere .section-candidature .col-formulaire #gform_submit_button_1:hover::after, #carriere .section-candidature .col-formulaire #gform_submit_button_10:hover::after {
  transform: translateY(-50%) translateX(40px);
}
#carriere .cv-trash {
  cursor: pointer;
}
#carriere .cv-trash img {
  position: relative;
  max-width: 100%;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#transport .col-lien {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#transport .col-lien:hover img {
  transform: translateY(-5px);
}
#transport .col-lien img {
  width: 17px;
  transition: 0.2s;
}
#transport .col-lien span {
  color: #F36C21;
  text-transform: uppercase;
  font-weight: 700;
}
#transport .section-services {
  padding-top: 250px;
  padding-bottom: 150px;
  width: 70%;
  margin: auto;
}
#transport .section-services span {
  border-bottom: 1px solid #F36C21;
}
#transport .section-services .col-top {
  display: flex;
  align-items: center;
}
#transport .section-services .col-top .col-image svg {
  overflow: visible;
  width: 95%;
  max-width: 100%;
}
#transport .section-services .col-top h3 {
  text-transform: uppercase;
  color: #3151BE;
  font-family: "Public Sans";
  font-weight: 600;
}
#transport .section-services .col-top p {
  font-weight: 300;
  font-family: "Public Sans";
}
#transport .section-services .col-top .col-text {
  margin: 50px 0px;
  width: 600px;
  max-width: 100%;
}
#transport .section-services .col-top img {
  width: 450px;
  height: auto;
}
#transport .section-services .liste-outils {
  display: flex;
  padding: 75px 0px;
  justify-content: space-between;
}
#transport .section-services .liste-outils.mobile {
  display: none;
  margin-bottom: 75px;
}
#transport .section-services .liste-outils a {
  border: 1px solid #3151BE;
  width: 100%;
  padding: 25px 60px;
  transition: 0.3s;
}
#transport .section-services .liste-outils a:hover {
  background-color: #F0F6FD;
}
#transport .section-services .liste-outils a li {
  display: flex;
  gap: 20px;
  align-items: center;
}
#transport .section-services .liste-outils a li h4 {
  font-family: "Public Sans";
  font-weight: 600;
}
#transport .section-services .liste-outils a li img {
  width: 35px;
}
#transport .section-services .liste-outils #aiguille {
  transform-origin: 50% 58%;
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
}
#transport .section-services .liste-outils .item-border {
  border-left: none;
  border-right: none;
}
#transport .section-services .liste-outils .single-item svg {
  overflow: visible;
  width: 35px;
  height: 40px;
}
#transport .section-services .liste-outils .single-item svg circle {
  transition: all 0.1s ease-in-out;
}
#transport .section-services .liste-outils .single-item #Groupe_2255 #Contour_feuille {
  transform: translate(0%, 0%);
  transition: all 0.1s ease-in-out;
}
#transport .section-services .liste-outils .single-item #Groupe_2255 #Contour_devant, #transport .section-services .liste-outils .single-item #Groupe_2255 #Contour_feuille, #transport .section-services .liste-outils .single-item #Groupe_2255 #Contour_derrière {
  fill: #F36C21;
}
#transport .section-services .liste-outils .single-item #Groupe_2255 #Contour_devant .st1, #transport .section-services .liste-outils .single-item #Groupe_2255 #Contour_feuille .st1, #transport .section-services .liste-outils .single-item #Groupe_2255 #Contour_derrière .st1 {
  fill: #F36C21;
}
#transport .section-services .liste-outils .single-item #Groupe_2255 #Fond_devant, #transport .section-services .liste-outils .single-item #Groupe_2255 #Fond_derrière, #transport .section-services .liste-outils .single-item #Groupe_2255 #Fond_feuille {
  fill: #fff !important;
}
#transport .section-services .liste-outils .single-item:hover svg #aiguille {
  transform: rotate(180deg);
}
#transport .section-services .liste-outils .single-item:hover svg #Groupe_2220 #Ellipse_11 {
  transform: translateX(-1px) translateY(-1px);
}
#transport .section-services .liste-outils .single-item:hover svg #Groupe_2220 #Ellipse_16 {
  transform: translateX(-1px);
}
#transport .section-services .liste-outils .single-item:hover svg #Groupe_2220 #Ellipse_19 {
  transform: translateX(-1px) translateY(1px);
}
#transport .section-services .liste-outils .single-item:hover svg #Groupe_2220 #Ellipse_12 {
  transform: translateY(-1px);
}
#transport .section-services .liste-outils .single-item:hover svg #Groupe_2220 #Ellipse_18 {
  transform: translateY(1px);
}
#transport .section-services .liste-outils .single-item:hover svg #Groupe_2220 #Ellipse_13 {
  transform: translateX(1px) translateY(-1px);
}
#transport .section-services .liste-outils .single-item:hover svg #Groupe_2220 #Ellipse_14 {
  transform: translateX(1px);
}
#transport .section-services .liste-outils .single-item:hover svg #Groupe_2220 #Ellipse_17 {
  transform: translateX(1px) translateY(1px);
}
#transport .section-services .liste-outils .single-item:hover #Groupe_2255 #Contour_feuille {
  transform: translate(5%, -5%);
}
#transport .section-services .liste-outils .single-item:hover #Groupe_2255 #Fond_devant, #transport .section-services .liste-outils .single-item:hover #Groupe_2255 #Fond_derrière, #transport .section-services .liste-outils .single-item:hover #Groupe_2255 #Fond_feuille {
  fill: #F0F6FD !important;
}
#transport .section-information {
  z-index: 5;
  padding-bottom: 7%;
  width: 80%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
#transport .section-information .pattern {
  position: absolute;
  width: 100%;
  max-width: 700px;
  left: -500px;
  top: -50px;
}
#transport .section-information img {
  border-radius: 20px;
}
#transport .section-information .col-content {
  padding: 50px 10% 10%;
}
#transport .section-information .col-content .information-text {
  margin: 40px 0px;
}
#transport .section-information .col-content .information-text p {
  font-family: "Public Sans";
  font-weight: 300;
  line-height: 25px;
}
#transport .section-remorques {
  margin-top: -13%;
  background-size: 100%;
  background-position: right top;
}
#transport .section-remorques .fond-bleu {
  padding: 300px 10% 150px 10%;
  background: -moz-linear-gradient(top, rgba(21, 24, 56, 0.2) 0%, rgb(29, 33, 79) 40%, rgb(41, 47, 113) 100%);
  background: -webkit-linear-gradient(top, rgba(21, 24, 56, 0.2) 0%, rgb(29, 33, 79) 40%, rgb(41, 47, 113) 100%);
  background: linear-gradient(to bottom, rgba(21, 24, 56, 0.2) 0%, rgb(29, 33, 79) 40%, rgb(41, 47, 113) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33151838", endColorstr="#292f71",GradientType=0 );
  margin: auto;
  position: relative;
}
#transport .section-remorques .fond-bleu .pattern-noir {
  position: absolute;
  bottom: 500px;
  left: -400px;
  filter: invert(14%) sepia(14%) saturate(3380%) hue-rotate(199deg) brightness(91%) contrast(105%);
}
#transport .section-remorques .fond-bleu h2 {
  color: #ffffff;
  width: 900px;
  max-width: 100%;
}
#transport .section-remorques .fond-bleu p {
  margin: 40px 0px;
  color: #ffffff;
  font-family: "Public Sans";
  font-weight: 300;
  line-height: 25px;
  width: 700px;
  max-width: 100%;
}
#transport .section-remorques .fond-bleu ul {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
#transport .section-remorques .fond-bleu ul .trailer-image {
  height: 250px;
}
#transport .section-remorques .fond-bleu ul .trailer-image .img-container {
  height: 138px;
  max-width: 100%;
  margin-bottom: 40px;
}
#transport .section-remorques .fond-bleu ul .trailer-image .img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#transport .section-remorques .fond-bleu ul li {
  width: 30%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
#transport .section-remorques .fond-bleu ul li img {
  width: 100%;
  height: 600px;
  min-height: auto;
  object-fit: cover;
  object-position: top;
}
#transport .section-remorques .fond-bleu ul li h4 {
  color: #ffffff;
  font-weight: 600;
}
#transport .section-remorques .section-autres-services {
  text-align: center;
  padding-top: 100px;
  position: relative;
}
#transport .section-remorques .section-autres-services h2 {
  margin: auto;
}
#transport .section-remorques .section-autres-services p {
  margin: 40px auto;
  width: 800px;
}
#transport .section-remorques .section-autres-services ul {
  justify-content: center;
  gap: 20px;
}
#transport .section-remorques .section-autres-services ul .single-service {
  background-color: rgba(243, 108, 33, 0.92);
  margin-bottom: 20px;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  z-index: 5;
  padding: 0;
}
#transport .section-remorques .section-autres-services ul .single-service .col-content {
  height: 100%;
  width: 100%;
  padding: 40px;
  text-align: left;
  position: relative;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#transport .section-remorques .section-autres-services ul .single-service .col-content .service-name {
  font-family: "Public Sans";
  color: #fff;
  position: relative;
  width: auto;
  font-size: 25px;
  font-weight: 800;
  align-self: start;
}
#transport .section-remorques .section-autres-services ul .single-service .col-content .description {
  display: block;
  position: relative;
  width: 100%;
  font-size: 25px;
  bottom: -60px;
  white-space: nowrap;
  overflow-x: clip;
  text-overflow: ellipsis;
  align-self: start;
}
#transport .section-remorques .section-autres-services ul .single-service .col-content .description p {
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#transport .section-remorques .section-autres-services ul .single-service .col-content p {
  font-family: "Public Sans";
  width: auto;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 140%;
}
#transport .section-remorques .section-autres-services ul .single-service .col-content .text-toggle {
  align-self: start;
  height: 65%;
}
#transport .section-remorques .section-autres-services ul .single-service .col-content .btn-wrapper a {
  bottom: 50px;
  align-items: center;
  width: 100%;
}
#transport .section-remorques .section-autres-services ul .single-service .col-content .btn-wrapper a span {
  color: #ffffff;
}
#transport .section-remorques .section-autres-services ul .single-service .col-content .btn-wrapper a::after {
  filter: invert(100%) sepia(1%) saturate(7500%) hue-rotate(170deg) brightness(216%) contrast(101%);
}
#transport .section-carte {
  padding-top: 150px;
  width: 80%;
  margin: auto;
}
#transport .section-carte .map-top-title {
  font-family: "Public Sans";
  color: #3151BE;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}
#transport .section-carte h2 {
  text-align: center;
}
#transport .section-carte .col-selecteur {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto;
  border: 1px solid #F36C21;
  width: fit-content;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
#transport .section-carte .col-selecteur.active {
  border-color: #3151BE;
}
#transport .section-carte .col-selecteur button {
  padding: 20px 120px;
  font-size: 20px;
  font-family: "Public Sans";
  font-weight: 800;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  color: #151838;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
#transport .section-carte .col-selecteur button.us-btn:hover {
  background-color: rgba(243, 108, 33, 0.3137254902);
}
#transport .section-carte .col-selecteur button.ca-btn:hover {
  background-color: rgba(49, 81, 190, 0.3137254902);
}
#transport .section-carte .col-selecteur .active-map-us {
  background-color: rgba(243, 108, 33, 0.3137254902);
}
#transport .section-carte .col-selecteur .active-map-ca {
  background-color: rgba(49, 81, 190, 0.3137254902);
}
#transport .section-carte p {
  font-family: "Public Sans";
  font-weight: 300;
  margin: 40px auto;
  width: 930px;
  max-width: 100%;
  text-align: center;
}
#transport .section-carte .col-lien {
  justify-content: center;
}
#transport .section-carte .col-map {
  margin: 50px 0px;
  position: relative;
}
#transport .section-carte .col-map #us-map, #transport .section-carte .col-map #ca-map {
  position: relative;
}
#transport .section-carte .col-map #us-map svg, #transport .section-carte .col-map #ca-map svg {
  height: auto;
  max-width: 100%;
  padding: 0px 5%;
}
#transport .section-carte .col-map #us-map svg #Zone_Orange, #transport .section-carte .col-map #us-map svg #Zone_Turquoise, #transport .section-carte .col-map #us-map svg #Zone_Bleu_pâle, #transport .section-carte .col-map #us-map svg #Zone_Bleu_pale, #transport .section-carte .col-map #us-map svg #Zone_Bleu_Foncé, #transport .section-carte .col-map #us-map svg #Zone_Jaune, #transport .section-carte .col-map #us-map svg #Zone_Verte, #transport .section-carte .col-map #us-map svg #Zone_Mauve, #transport .section-carte .col-map #us-map svg #Zone_Bleu, #transport .section-carte .col-map #us-map svg #Zone_Vert_pale, #transport .section-carte .col-map #us-map svg #Zone_Vert_pale_US, #transport .section-carte .col-map #us-map svg #Zone_Verte_foncee, #transport .section-carte .col-map #ca-map svg #Zone_Orange, #transport .section-carte .col-map #ca-map svg #Zone_Turquoise, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_pâle, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_pale, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_Foncé, #transport .section-carte .col-map #ca-map svg #Zone_Jaune, #transport .section-carte .col-map #ca-map svg #Zone_Verte, #transport .section-carte .col-map #ca-map svg #Zone_Mauve, #transport .section-carte .col-map #ca-map svg #Zone_Bleu, #transport .section-carte .col-map #ca-map svg #Zone_Vert_pale, #transport .section-carte .col-map #ca-map svg #Zone_Vert_pale_US, #transport .section-carte .col-map #ca-map svg #Zone_Verte_foncee {
  fill: transparent !important;
}
#transport .section-carte .col-map #us-map svg #Zone_Orange polygon, #transport .section-carte .col-map #us-map svg #Zone_Orange polyline, #transport .section-carte .col-map #us-map svg #Zone_Orange path, #transport .section-carte .col-map #us-map svg #Zone_Turquoise polygon, #transport .section-carte .col-map #us-map svg #Zone_Turquoise polyline, #transport .section-carte .col-map #us-map svg #Zone_Turquoise path, #transport .section-carte .col-map #us-map svg #Zone_Bleu_pâle polygon, #transport .section-carte .col-map #us-map svg #Zone_Bleu_pâle polyline, #transport .section-carte .col-map #us-map svg #Zone_Bleu_pâle path, #transport .section-carte .col-map #us-map svg #Zone_Bleu_pale polygon, #transport .section-carte .col-map #us-map svg #Zone_Bleu_pale polyline, #transport .section-carte .col-map #us-map svg #Zone_Bleu_pale path, #transport .section-carte .col-map #us-map svg #Zone_Bleu_Foncé polygon, #transport .section-carte .col-map #us-map svg #Zone_Bleu_Foncé polyline, #transport .section-carte .col-map #us-map svg #Zone_Bleu_Foncé path, #transport .section-carte .col-map #us-map svg #Zone_Jaune polygon, #transport .section-carte .col-map #us-map svg #Zone_Jaune polyline, #transport .section-carte .col-map #us-map svg #Zone_Jaune path, #transport .section-carte .col-map #us-map svg #Zone_Verte polygon, #transport .section-carte .col-map #us-map svg #Zone_Verte polyline, #transport .section-carte .col-map #us-map svg #Zone_Verte path, #transport .section-carte .col-map #us-map svg #Zone_Mauve polygon, #transport .section-carte .col-map #us-map svg #Zone_Mauve polyline, #transport .section-carte .col-map #us-map svg #Zone_Mauve path, #transport .section-carte .col-map #us-map svg #Zone_Bleu polygon, #transport .section-carte .col-map #us-map svg #Zone_Bleu polyline, #transport .section-carte .col-map #us-map svg #Zone_Bleu path, #transport .section-carte .col-map #us-map svg #Zone_Vert_pale polygon, #transport .section-carte .col-map #us-map svg #Zone_Vert_pale polyline, #transport .section-carte .col-map #us-map svg #Zone_Vert_pale path, #transport .section-carte .col-map #us-map svg #Zone_Vert_pale_US polygon, #transport .section-carte .col-map #us-map svg #Zone_Vert_pale_US polyline, #transport .section-carte .col-map #us-map svg #Zone_Vert_pale_US path, #transport .section-carte .col-map #us-map svg #Zone_Verte_foncee polygon, #transport .section-carte .col-map #us-map svg #Zone_Verte_foncee polyline, #transport .section-carte .col-map #us-map svg #Zone_Verte_foncee path, #transport .section-carte .col-map #ca-map svg #Zone_Orange polygon, #transport .section-carte .col-map #ca-map svg #Zone_Orange polyline, #transport .section-carte .col-map #ca-map svg #Zone_Orange path, #transport .section-carte .col-map #ca-map svg #Zone_Turquoise polygon, #transport .section-carte .col-map #ca-map svg #Zone_Turquoise polyline, #transport .section-carte .col-map #ca-map svg #Zone_Turquoise path, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_pâle polygon, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_pâle polyline, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_pâle path, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_pale polygon, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_pale polyline, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_pale path, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_Foncé polygon, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_Foncé polyline, #transport .section-carte .col-map #ca-map svg #Zone_Bleu_Foncé path, #transport .section-carte .col-map #ca-map svg #Zone_Jaune polygon, #transport .section-carte .col-map #ca-map svg #Zone_Jaune polyline, #transport .section-carte .col-map #ca-map svg #Zone_Jaune path, #transport .section-carte .col-map #ca-map svg #Zone_Verte polygon, #transport .section-carte .col-map #ca-map svg #Zone_Verte polyline, #transport .section-carte .col-map #ca-map svg #Zone_Verte path, #transport .section-carte .col-map #ca-map svg #Zone_Mauve polygon, #transport .section-carte .col-map #ca-map svg #Zone_Mauve polyline, #transport .section-carte .col-map #ca-map svg #Zone_Mauve path, #transport .section-carte .col-map #ca-map svg #Zone_Bleu polygon, #transport .section-carte .col-map #ca-map svg #Zone_Bleu polyline, #transport .section-carte .col-map #ca-map svg #Zone_Bleu path, #transport .section-carte .col-map #ca-map svg #Zone_Vert_pale polygon, #transport .section-carte .col-map #ca-map svg #Zone_Vert_pale polyline, #transport .section-carte .col-map #ca-map svg #Zone_Vert_pale path, #transport .section-carte .col-map #ca-map svg #Zone_Vert_pale_US polygon, #transport .section-carte .col-map #ca-map svg #Zone_Vert_pale_US polyline, #transport .section-carte .col-map #ca-map svg #Zone_Vert_pale_US path, #transport .section-carte .col-map #ca-map svg #Zone_Verte_foncee polygon, #transport .section-carte .col-map #ca-map svg #Zone_Verte_foncee polyline, #transport .section-carte .col-map #ca-map svg #Zone_Verte_foncee path {
  fill: transparent !important;
}
#transport .section-carte .col-map .floating-box {
  background-color: #ffffff;
  padding: 20px 50px;
  color: #000000;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99;
  width: 250px;
  border-radius: 20px;
  box-shadow: 1px 1px 10px #888888;
}
#transport .section-carte .col-map .floating-box .floating-box-text {
  display: none;
}
#transport .section-carte .col-map .floating-box .floating-box-title {
  color: #151838;
  font-weight: 800;
  font-family: "Public Sans";
}
#transport .section-carte .col-map .floating-box .type-wrapper {
  justify-content: center;
  margin-top: 15px;
}
#transport .section-carte .col-map .floating-box .type-wrapper .col-title {
  font-family: "Public Sans";
  color: #3151BE;
  font-weight: 700;
}
#transport .section-carte .col-map .floating-box .type-wrapper .col-left {
  border-right: 1px solid #F36C21;
  text-align: center;
}
#transport .section-carte .col-map .floating-box .type-wrapper .col-droite {
  border-left: 1px solid #F36C21;
}
#transport .section-carte .col-map .floating-box .box-bottom {
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-bottom: 0;
  border-top: 15px solid #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(18px);
}
#transport .section-carte .col-map p {
  margin: 0px;
}
#transport .section-carte #ca-map {
  display: none;
}

#entreposage .white-lines {
  transform: translateY(-6px);
}
#entreposage .text-defilez {
  left: 95%;
}
#entreposage .section-explications {
  padding: 150px 0px;
  width: 80%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
#entreposage .section-explications .bande {
  position: absolute;
  width: 500px;
}
#entreposage .section-explications .bande1 {
  right: -375px;
  top: -200px;
}
#entreposage .section-explications .bande2 {
  right: -200px;
  top: -400px;
}
#entreposage .section-explications .bande3 {
  right: -25px;
  top: -600px;
}
#entreposage .section-explications .col-content {
  width: 55%;
  padding-right: 50px;
}
#entreposage .section-explications .col-content h4 {
  font-family: "Public Sans";
  font-weight: 600;
  text-transform: uppercase;
  color: #3151BE;
}
#entreposage .section-explications .col-content .col-text {
  margin: 40px 0px;
}
#entreposage .section-explications .col-content .col-text p {
  font-family: "Public Sans";
  font-weight: 300;
  line-height: 25px;
}
#entreposage .section-explications .col-image {
  padding: 100px;
  width: 45%;
}
#entreposage .section-explications .col-storage-types {
  padding-top: 100px;
}
#entreposage .section-explications .col-storage-types ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#entreposage .section-explications .col-storage-types ul li {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 1px 1px 10px #888888;
  padding: 90px 20px;
  height: 450px;
  width: 24%;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  transition: 0.3s;
}
#entreposage .section-explications .col-storage-types ul li .layer1 h4 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#entreposage .section-explications .col-storage-types ul li .layer1 .dark {
  color: #151838;
}
#entreposage .section-explications .col-storage-types ul li .layer1 img {
  height: 150px;
  width: 150px;
  margin-bottom: 50px;
}
#entreposage .section-explications .col-storage-types ul li .layer1 .learn-more.dark path {
  fill: #151838;
}
#entreposage .section-explications .col-storage-types ul li .layer2 {
  display: none;
  transition: 0.2s;
  text-align: left;
}
#entreposage .section-explications .col-storage-types ul li .layer2 .storage-type-title {
  color: #3151BE;
  margin-bottom: 20px;
  font-weight: 700;
}
#entreposage .section-explications .col-storage-types ul li .layer2 .storage-type-text {
  color: #1e1e1e;
  font-family: "Public Sans";
  font-weight: 300;
}
#entreposage .section-explications .col-storage-types ul li:hover {
  transform: translateY(-30px);
}
#entreposage .section-etapes-service {
  background-repeat: no-repeat;
  background-size: 100%;
}
#entreposage .section-etapes-service .fond-bleu {
  background: -moz-linear-gradient(top, rgba(21, 24, 56, 0) 0%, rgb(27, 31, 73) 30%, rgb(41, 47, 113) 100%);
  background: -webkit-linear-gradient(top, rgba(21, 24, 56, 0) 0%, rgb(27, 31, 73) 30%, rgb(41, 47, 113) 100%);
  background: linear-gradient(to bottom, rgba(21, 24, 56, 0) 0%, rgb(27, 31, 73) 30%, rgb(41, 47, 113) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00151838", endColorstr="#292f71",GradientType=0 );
}
#entreposage .section-etapes-service .fond-bleu .row-etapes {
  padding: 150px 0px 300px;
  width: 80%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-image-lien {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  bottom: 20%;
  width: 100%;
  max-width: 400px;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-image-lien.bottom {
  display: none;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-image-lien h4 {
  color: #ffffff;
  margin-bottom: 10px;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-image-lien .col-image {
  width: 100px;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-content .service-step-title {
  color: #ffffff;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li {
  border-top: 1px solid #F36C21;
  border-bottom: 1px solid #F36C21;
  padding: 15px 0px;
  display: flex;
  gap: 20px;
  margin: -1px 0px;
  cursor: pointer;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li .col-nbr h2 {
  font-family: "Public Sans";
  font-weight: 800;
  font-size: 40px;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #F36C21;
  transition: 0.1s;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li .col-content {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  padding-right: 0px;
  gap: 10px;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li .col-content h4, #entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li .col-content p {
  color: #ffffff;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li .col-content p {
  display: none;
  font-family: "Public Sans";
  font-weight: 300;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li .col-fleche {
  padding-top: 15px;
  padding-left: 0px;
  text-align: end;
}
#entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li .col-fleche img {
  transform: scaleY(-1);
  transition: 0.2s;
  max-width: 20px;
  height: 20px;
}
#entreposage .section-etapes-service .fond-bleu .square-feet-available {
  position: relative;
  padding: 150px 0px;
}
#entreposage .section-etapes-service .fond-bleu .square-feet-available p {
  text-align: center;
  color: #3151BE;
  font-size: 17vw;
  font-family: "Public Sans";
  font-weight: 700;
}
#entreposage .section-etapes-service .fond-bleu .square-feet-available #petite-boite {
  transform: translateY(-60%);
  transition: 0.05s;
}
#entreposage .section-etapes-service .fond-bleu .square-feet-available svg {
  position: absolute;
  left: 42%;
  width: 17%;
  top: 0%;
  overflow: visible;
}
#entreposage .section-etapes-service .fond-bleu .square-feet-text {
  padding: 50px 0px 150px;
  color: #ffffff;
  font-family: "Public Sans";
  font-weight: 400;
  font-size: 35px;
  text-align: center;
  max-width: 100%;
  width: 600px;
  margin: auto;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage {
  padding-bottom: 150px;
  position: relative;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage li {
  width: 90% !important;
  margin: 0px 10px;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage li img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage li .filtre-orange {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  border-radius: 20px;
  background: -moz-linear-gradient(top, rgba(243, 108, 33, 0.75) 0%, rgba(243, 108, 33, 0.75) 100%);
  background: -webkit-linear-gradient(top, rgba(243, 108, 33, 0.75) 0%, rgba(243, 108, 33, 0.75) 100%);
  background: linear-gradient(to bottom, rgba(243, 108, 33, 0.75) 0%, rgba(243, 108, 33, 0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#bff36c21", endColorstr="#bff36c21",GradientType=0 );
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage li .filtre-orange .loupe {
  width: 100px;
  height: auto;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__pagination {
  display: none;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows {
  position: absolute;
  bottom: 160px;
  z-index: 95;
  width: 100%;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  position: absolute;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--prev {
  left: 10%;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--prev::after {
  content: "";
  background-image: url(../images/Bouton-Fleche-blanche.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  height: 50px;
  width: 50px;
  rotate: 180deg;
  transition: 0.2s;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--prev:hover::after {
  background-image: url(../images/Bouton-Fleche-orange.svg);
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--prev svg {
  display: none;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--next {
  right: 20%;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--next::after {
  content: "";
  background-image: url(../images/Bouton-Fleche-blanche.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  height: 50px;
  width: 50px;
  transition: 0.2s;
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--next:hover::after {
  background-image: url(../images/Bouton-Fleche-orange.svg);
}
#entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--next svg {
  display: none;
}
#entreposage .section-etapes-service .fond-bleu .col-lien-contact {
  padding: 150px 0px 175px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#entreposage .section-etapes-service .fond-bleu .col-lien-contact .boite {
  position: absolute;
}
#entreposage .section-etapes-service .fond-bleu .col-lien-contact .boite1 {
  left: 5%;
  bottom: 40%;
}
#entreposage .section-etapes-service .fond-bleu .col-lien-contact .boite2 {
  left: 10%;
  bottom: 30%;
}
#entreposage .section-etapes-service .fond-bleu .col-lien-contact .boite3 {
  left: 20%;
  bottom: 45%;
}
#entreposage .section-etapes-service .fond-bleu .col-lien-contact .boite4 {
  left: 20%;
  bottom: 5%;
}
#entreposage .section-etapes-service .fond-bleu .col-lien-contact .boite5 {
  right: 30%;
  bottom: 40%;
}
#entreposage .section-etapes-service .fond-bleu .col-lien-contact .boite6 {
  right: 15%;
  bottom: 20%;
}
#entreposage .section-etapes-service .fond-bleu .col-lien-contact .boite7 {
  right: 10%;
  bottom: 10%;
}
#entreposage .section-etapes-service .fond-bleu .col-lien-contact h2 {
  position: relative;
  text-align: center;
  color: #ffffff;
  width: 950px;
  max-width: 100%;
}

.no-border {
  border: none !important;
}

#poste-disponible .is-button {
  background-color: #F36C21;
  color: #ffffff;
}
#poste-disponible .left-button, #poste-disponible .sticky-box-button {
  cursor: pointer;
}
#poste-disponible .col-details {
  line-height: 40px;
}
#poste-disponible .col-details ul {
  list-style: none;
}
#poste-disponible .col-details li {
  margin-left: 20px;
}
#poste-disponible .col-details ul li::before {
  content: "•";
  color: #F36C21;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
#poste-disponible .col-details .apply-btn {
  margin-top: 30px;
}
#poste-disponible .color-top .col-boutons {
  display: flex;
  align-items: center;
  gap: 50px;
}
#poste-disponible .color-top .col-boutons .left-button {
  display: block;
  width: fit-content;
  text-align: center;
  background-color: #F36C21;
  color: #ffffff;
  padding: 12px 40px;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 700;
}
#poste-disponible .color-top .col-boutons .left-button:hover {
  background-color: #3151BE;
}
#poste-disponible .color-top .col-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#poste-disponible .color-top .col-content h1 {
  width: 600px;
  max-width: 100%;
}
#poste-disponible .color-top .col-content .text-defilez {
  top: 125px;
}
#poste-disponible .color-top .col-content .subtitle {
  color: #F36C21;
  font-family: "Public Sans";
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#poste-disponible .modal {
  display: flex;
  align-items: center;
  justify-content: center;
}
#poste-disponible .modal .primary:hover {
  border: 2px solid #4569E0;
  background-color: #4569E0;
}
#poste-disponible .modal input, #poste-disponible .modal select {
  border-radius: 12px;
  border: none;
  font-size: 1rem !important;
}
#poste-disponible .modal .form-title {
  font-family: "Public Sans";
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  padding-bottom: 60px;
}
#poste-disponible .modal .close-btn {
  top: 3%;
  right: 3%;
}
#poste-disponible .modal .col-formulaire {
  position: relative;
  padding: 60px;
  border-radius: 20px;
  min-height: 90vh;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #3151BE;
  width: fit-content;
  height: 90vh;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
#poste-disponible .modal .col-formulaire::-webkit-scrollbar {
  display: none;
}
#poste-disponible .modal #input_7_12, #poste-disponible .modal #input_9_12 {
  display: flex;
  align-items: center;
  gap: 20px;
}
#poste-disponible .modal #input_7_12 .gform-field-label, #poste-disponible .modal #input_9_12 .gform-field-label {
  padding-left: 25px;
}
#poste-disponible .modal #input_7_12 .gchoice, #poste-disponible .modal #input_9_12 .gchoice {
  margin-bottom: 0px;
}
#poste-disponible .modal #gform_confirmation_message_7 {
  color: #ffffff;
}
#poste-disponible .modal .gfield_label {
  color: #fff;
}
#poste-disponible .modal .gform-field-label {
  color: #fff;
}
#poste-disponible .modal .gform-field-label::before {
  border: 2px solid #ffffff;
  background-color: #ffffff;
  height: 15px;
  width: 15px;
}
#poste-disponible .modal #field_7_13, #poste-disponible .modal #field_9_13 {
  position: relative;
}
#poste-disponible .modal #field_7_13 input, #poste-disponible .modal #field_9_13 input {
  opacity: 0;
  position: relative;
  top: 50%;
  transform: translateY(-25%);
  left: 0px;
  height: 40px;
  z-index: 99;
  cursor: pointer;
}
#poste-disponible .modal #field_7_13::before, #poste-disponible .modal #field_9_13::before {
  content: "";
  background-image: url(../images/icone-trombone.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
#poste-disponible .modal #field_7_13 #gfield_upload_rules_7_13, #poste-disponible .modal #field_7_13 #gfield_upload_rules_9_13, #poste-disponible .modal #field_9_13 #gfield_upload_rules_7_13, #poste-disponible .modal #field_9_13 #gfield_upload_rules_9_13 {
  position: absolute;
  font-family: "Public Sans";
  font-size: 1rem;
  font-weight: 300;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer !important;
  color: #ffffff;
}
#poste-disponible .modal #field_7_13 #gfield_upload_rules_7_13:hover, #poste-disponible .modal #field_7_13 #gfield_upload_rules_9_13:hover, #poste-disponible .modal #field_9_13 #gfield_upload_rules_7_13:hover, #poste-disponible .modal #field_9_13 #gfield_upload_rules_9_13:hover {
  text-decoration: underline;
}
#poste-disponible .modal #field_7_13 #live_validation_message_7_13, #poste-disponible .modal #field_7_13 #live_validation_message_9_13, #poste-disponible .modal #field_9_13 #live_validation_message_7_13, #poste-disponible .modal #field_9_13 #live_validation_message_9_13 {
  display: none;
}
#poste-disponible .modal .gform_footer button {
  margin: auto;
  border: 2px solid #F36C21;
  color: #ffffff;
  background: #F36C21;
  text-transform: uppercase;
  border-radius: 30px;
  transition: 0.3s ease-in-out;
  font-weight: 700;
  cursor: pointer;
}
#poste-disponible .modal .job input {
  pointer-events: none;
}
#poste-disponible .section-details {
  padding: 250px 10% 150px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
#poste-disponible .section-details p {
  font-family: "Public Sans";
  font-weight: 300;
}
#poste-disponible .section-details .single-detail-list {
  margin: 50px 0px;
}
#poste-disponible .section-details .single-detail-list h3 {
  font-family: "Public Sans";
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 30px;
}
#poste-disponible .section-details .single-detail-list ul {
  line-height: 40px;
}
#poste-disponible .section-details .single-detail-list ul li {
  transform: translateX(20px);
  position: relative;
  font-family: "Public Sans";
  font-weight: 300;
}
#poste-disponible .section-details .single-detail-list ul li::before {
  content: "";
  background-image: url(../images/orange-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 38%;
  left: -18px;
}
#poste-disponible .section-details .mention {
  margin-top: 50px;
  width: 690px;
  max-width: 100%;
  font-weight: 300;
  font-style: italic;
}
#poste-disponible .section-details .col-boite {
  z-index: 5;
}
#poste-disponible .section-details .col-boite .sticky-box {
  padding: 50px 50px;
  border-radius: 20px;
  background-color: #F0F6FD;
  box-shadow: 1px 2px 10px #888888;
  top: 100px;
}
#poste-disponible .section-details .col-boite .sticky-box .col-image {
  width: 35px;
}
#poste-disponible .section-details .col-boite .sticky-box .col-image img {
  min-width: 35px;
}
#poste-disponible .section-details .col-boite .sticky-box .title {
  text-transform: uppercase;
  margin-bottom: 5px;
}
#poste-disponible .section-details .col-boite .sticky-box .subtitle {
  color: #3151BE;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#poste-disponible .section-details .col-boite .sticky-box .col-content p {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 300;
}
#poste-disponible .section-details .col-boite .sticky-box ul {
  margin-bottom: 50px;
}
#poste-disponible .section-details .col-boite .sticky-box ul li {
  display: flex;
  flex-wrap: nowrap;
  margin: 10px 0px;
  gap: 20px;
  line-height: 50px;
}
#poste-disponible .section-details .left-button {
  width: fit-content;
  padding: 12px 40px;
}
#poste-disponible .section-details .bande {
  position: absolute;
  transform: scaleX(-1);
}
#poste-disponible .section-details .bande1 {
  width: 35%;
  bottom: -650px;
  right: -100px;
}
#poste-disponible .section-details .bande2 {
  width: 35%;
  bottom: -400px;
  right: -275px;
}
#poste-disponible .section-details .bande3 {
  width: 35%;
  bottom: -200px;
  right: -475px;
}
#poste-disponible .banniere-postuler {
  display: flex;
  flex-wrap: wrap;
  padding: 150px 0px;
  margin: 0px;
}
#poste-disponible .banniere-postuler .col-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0px;
}
#poste-disponible .banniere-postuler .col-content {
  padding: 225px 7%;
  background-image: linear-gradient(#151838, #292F71);
}
#poste-disponible .banniere-postuler .col-content h2 {
  color: #ffffff;
  font-size: 70px;
  width: 525px;
  max-width: 100%;
}
#poste-disponible .banniere-postuler .col-content p {
  color: #ffffff;
  margin: 40px 0px;
  font-family: "Public Sans";
  line-height: 30px;
  width: 500px;
  max-width: 100%;
  font-weight: 300;
}
#poste-disponible .banniere-postuler .col-content a {
  text-align: center;
  background-color: #F36C21;
  color: #ffffff;
  padding: 12px 50px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
}
#poste-disponible .banniere-postuler .col-content a:hover {
  background-color: #3151BE;
}
#poste-disponible .section-autres-postes {
  padding-bottom: 250px;
  width: 80%;
  margin: auto;
  position: relative;
}
#poste-disponible .section-autres-postes .carousel-video {
  margin-top: 50px;
}
#poste-disponible .section-autres-postes h4 {
  font-family: "Public Sans";
  font-weight: 600;
}
#poste-disponible .section-autres-postes .pattern {
  position: absolute;
}
#poste-disponible .section-autres-postes .pattern1 {
  right: -410px;
  top: -450px;
  rotate: 360deg;
}
#poste-disponible .section-autres-postes .pattern2 {
  left: -350px;
  bottom: -70px;
  rotate: 110deg;
}

.active-radio::before {
  background-color: #1e1e1e !important;
}

.event-none {
  pointer-events: none;
}

.carousel-video {
  margin-top: 200px;
}
.carousel-video .titre-video {
  text-align: left;
  font-size: 35px;
  margin-bottom: 50px;
}
.carousel-video .hide-arrows .splide__arrow {
  display: none;
}
.carousel-video .splide__arrows {
  position: relative;
}
.carousel-video .splide__arrows .splide__arrow--prev {
  rotate: 180deg;
  left: -100px;
  top: 100px;
}
.carousel-video .splide__arrows .splide__arrow--next {
  right: -100px;
  top: 120px;
}
.carousel-video .splide__arrows .splide__arrow {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  position: absolute;
}
.carousel-video .splide__arrows .splide__arrow svg {
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(47deg) brightness(108%) contrast(101%);
}
.carousel-video ul {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.carousel-video ul li {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 32% !important;
  height: 400px;
  display: grid;
  align-items: end;
  border-radius: 10px;
  overflow: hidden;
}
.carousel-video ul li a {
  height: 100%;
  position: relative;
}
.carousel-video ul li .video-single {
  background-color: rgba(243, 108, 33, 0.8156862745);
  height: 15%;
  padding: 10px 20px;
  transition: 0.3s;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.carousel-video ul li .video-single h3 {
  position: relative;
  text-align: left;
  font-size: 1.5625rem;
  color: #ffffff !important;
  transform: translateY(-50%);
  top: 50%;
}
.carousel-video ul li .video-single .col-bouton-lien {
  text-align: right;
  position: absolute;
  bottom: 20px;
  right: 60px;
  color: #ffffff;
}
.carousel-video ul li .video-single .col-bouton-lien span {
  display: none;
  position: relative;
}
.carousel-video ul li .video-single .col-bouton-lien span::after {
  content: "";
  position: absolute;
  background-image: url(../images/Fleche-video.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  top: -4px;
  right: -30px;
}

#blogue .color-top .col-image {
  background-position: initial;
}
#blogue .section-liste-blogues {
  padding: 150px 0px;
  width: 80%;
  margin: auto;
}
#blogue .section-liste-blogues .liste-posts.loading {
  opacity: 0.5;
}
#blogue .section-liste-blogues .single-blog.hide {
  display: none;
}
#blogue .section-liste-blogues .pagination {
  display: flex;
  margin: 50px 0px;
  justify-content: center;
  gap: 50px;
}
#blogue .section-liste-blogues .pagination .page-numbers {
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: 0.2s ease;
  border-radius: 99%;
}
#blogue .section-liste-blogues .pagination .page-numbers:hover {
  border-color: #F36C21;
  color: #F36C21;
}
#blogue .section-liste-blogues .pagination .current {
  border-color: #F36C21;
  color: #F36C21;
}
#blogue .section-liste-blogues .pagination .pagination__bullet {
  transition: 250ms;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#blogue .section-liste-blogues .pagination .pagination__bullet:first-of-type {
  display: none;
}
#blogue .section-liste-blogues .pagination .pagination__bullet p {
  font-weight: 500;
  color: #151838;
  font-size: 1.25rem;
  pointer-events: none;
}
#blogue .section-liste-blogues .pagination .pagination__bullet.active {
  border: 1px solid #F36C21;
}
#blogue .section-liste-blogues .pagination .pagination__bullet.active p {
  color: #F36C21;
}
#blogue .col-select {
  display: flex;
  gap: 100px;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
#blogue .col-select .select-wrapper {
  position: relative;
}
#blogue .col-select .select-wrapper .select-box {
  width: 300px;
  border: 1px solid #3151BE;
  border-radius: 10px;
  position: relative;
}
#blogue .col-select .select-wrapper::after {
  content: "";
  position: absolute;
  background-image: url(../images/Petite-Fleche.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  left: 90%;
  z-index: 6;
}
#blogue .col-select .filtre-date {
  position: relative;
  transition: 0.2s;
  cursor: pointer;
}
#blogue .col-select .filtre-date::before {
  content: "";
  background-image: url(../images/icone-filtre-date.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 20px;
  height: 20px;
  left: -30px;
  bottom: 0px;
  transition: 0.2s;
  cursor: pointer;
}
#blogue .col-select .filtre-date:hover {
  color: #F36C21;
}
#blogue .col-select .filtre-date:hover::before {
  background-image: url(../images/icone-filtre-date-orange.svg);
}
#blogue ul {
  padding-top: 100px;
  padding-bottom: 50px;
}
#blogue ul li {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 50px 0px;
  margin: -1px 0px;
}
#blogue ul li a {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: auto;
}
#blogue ul li a .col-image {
  position: relative;
  padding: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 500px;
  border-radius: 15px;
}
#blogue ul li a .col-image .filtre-orange {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.2s ease;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#blogue ul li a .col-image .filtre-orange h4 {
  color: #ffffff;
  opacity: 0;
  transition: 0.2s ease;
  text-transform: uppercase;
}
#blogue ul li a .col-image:hover .filtre-orange {
  background-color: rgba(243, 108, 33, 0.8);
}
#blogue ul li a .col-image:hover .filtre-orange h4 {
  opacity: 1;
}
#blogue ul li a .col-content .blog-top-title {
  font-family: "Public Sans";
  font-weight: 800;
  color: #3151BE;
  margin-bottom: 20px;
}
#blogue ul li a .col-content .blog-title {
  font-family: "Public Sans";
  font-size: 35px;
  font-weight: 700;
}
#blogue ul li a .col-content .blog-description {
  margin: 40px 0px;
  font-family: "Public Sans";
  font-weight: 300;
  line-height: 35px;
}

#article .share-btn {
  margin-left: 30px;
  position: relative;
  width: fit-content;
}
#article .share-btn .share-wrapper {
  gap: 10px;
}
#article .share-btn .linkedin, #article .share-btn .share-email {
  width: 26px;
  height: 26px;
  transform: translateY(-2px);
}
#article .share-btn .linkedin svg, #article .share-btn .share-email svg {
  width: 100%;
  height: 100%;
}
#article .share-btn a path, #article .share-btn a circle {
  transition: 0.2s;
}
#article .share-btn a:hover:not(.share-email) path {
  fill: #F36C21;
}
#article .share-btn a:hover.share-email circle {
  fill: #F36C21;
}
#article .content-section-texte {
  margin: 40px 0px;
}
#article .content-section-texte p {
  font-weight: 300;
  font-family: "Public Sans";
}
#article .content-section-texte ul {
  line-height: 40px;
}
#article .content-section-texte ul li {
  transform: translateX(20px);
  position: relative;
  font-family: "Public Sans";
  font-weight: 300;
}
#article .content-section-texte ul li::before {
  content: "";
  display: inline-block;
  background-image: url(../images/orange-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 8px;
  transform: translateX(-10px) translateY(-2px);
}
#article .color-top .col-content .blog-top-title {
  color: #F36C21;
  text-transform: uppercase;
}
#article .color-top .col-content .blog-title {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
#article .titre-article {
  color: #3151BE;
  font-family: "Public Sans";
  font-weight: 600;
}
#article .section-contenu1 {
  padding: 225px 0px 200px;
  width: 60%;
  margin: auto;
}
#article .section-citation {
  padding: 200px 0px;
  text-align: center;
  background-image: linear-gradient(#151838, #292F71);
  position: relative;
  overflow: hidden;
}
#article .section-citation .pattern1 {
  width: 700px;
  left: -185px;
  top: -160px;
  rotate: 328deg;
  transform: scaleY(-1);
}
#article .section-citation .pattern2 {
  position: absolute;
  right: -125px;
  bottom: -165px;
  width: 700px;
  rotate: 154deg;
  transform: scaleY(-1);
}
#article .section-citation h3 {
  font-size: 40px;
  margin: 40px auto;
  color: #ffffff;
  width: 1100px;
  max-width: 90%;
  position: relative;
  position: relative;
}
#article .section-citation h4 {
  font-family: "Public Sans";
  text-transform: uppercase;
  color: #F36C21;
  position: relative;
}
#article .section-citation .logo-citation {
  width: 200px;
  position: relative;
}
#article .section-contenu2 {
  padding: 150px 5%;
  width: 90%;
  margin: auto;
  display: flex;
}
#article .section-contenu2 .col-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}
#article .section-contenu2 .col-content {
  padding: 100px;
}
#article .section-boutons-bottom {
  padding: 100px 10% 250px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
#article .section-boutons-bottom .is-button {
  background-color: #F36C21;
  text-transform: initial;
  color: #ffffff;
  padding: 10px 50px;
  font-size: 20px;
  font-family: "Public Sans";
  font-weight: 700;
}
#article .section-boutons-bottom .is-button:hover {
  background-color: #3151BE;
  border-color: #3151BE;
}
#article .section-boutons-bottom .is-button::after {
  background-image: none;
}
#article .section-boutons-bottom .post-link a {
  color: #151838;
  position: relative;
  font-family: Quatro;
  font-weight: 700;
}
#article .section-boutons-bottom .col-next a::after {
  content: "";
  background-image: url("../images/Bouton-Fleche-bleu.svg");
  background-repeat: no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -3px;
  right: -35px;
  transition: 0.2s;
}
#article .section-boutons-bottom .col-next a:hover::after {
  right: -45px;
}
#article .section-boutons-bottom .col-previous a::before {
  content: "";
  background-image: url("../images/Bouton-Fleche-bleu.svg");
  background-repeat: no-repeat;
  transform: scaleX(-1);
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -3px;
  left: -35px;
  transition: 0.2s;
}
#article .section-boutons-bottom .col-previous a:hover::before {
  left: -45px;
}

.pattern {
  position: absolute;
  opacity: 0.5;
}

#contact .gform_confirmation_wrapper .gform_confirmation_message {
  color: #ffffff;
}
#contact .section-contactez-nous {
  padding: 200px 10% 75px;
}
#contact .section-contactez-nous .contact-us-title {
  width: 650px;
  max-width: 100%;
}
#contact .section-contactez-nous .contact-us-text {
  width: 490px;
  max-width: 100%;
  margin: 40px 0px 60px;
  font-family: "Public Sans";
  font-weight: 300;
}
#contact .section-contactez-nous .address-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#contact .section-contactez-nous .address-list li {
  width: 100%;
  margin: 0px -1px;
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 50px;
  align-items: center;
  border: 1px solid #3151BE;
  cursor: pointer;
}
#contact .section-contactez-nous .address-list li img {
  width: 200px;
  height: auto;
}
#contact .section-contactez-nous .address-list li h4 {
  font-family: "Public Sans";
  font-size: 18px;
}
#contact .section-contactez-nous .address-list li .address-title {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#contact .section-contactez-nous .address-list li .col-content a {
  width: 320px;
  max-width: 100%;
  display: block;
  text-decoration: underline;
  transition: all 0.3s ease-out;
}
#contact .section-contactez-nous .address-list li .col-content a:hover {
  color: #F36C21;
}
#contact .section-contactez-nous .address-list li .complete-address {
  font-weight: 300;
  line-height: 140%;
}
#contact .section-contactez-nous .address-list .no-border-left {
  border-left: none;
}
#contact .section-contactez-nous .address-list .no-border-right {
  border-right: none;
}
#contact .section-formulaire {
  padding: 0px 10% 150px;
}
#contact .section-formulaire .gform_submission_error {
  display: block;
}
#contact .section-formulaire .col-form {
  background-color: #F36C21;
  padding: 75px;
  border-radius: 20px;
}
#contact .section-formulaire .col-form h2:not(.gform_submission_error) {
  color: #ffffff;
  font-family: "Public Sans";
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
}
#contact .section-formulaire .col-form .gform_title {
  display: none;
}
#contact .section-formulaire .col-form input, #contact .section-formulaire .col-form select, #contact .section-formulaire .col-form textarea {
  border: none;
  border-radius: 10px;
  font-family: "Public Sans" !important;
  font-weight: 300 !important;
  padding-left: 20px !important;
}
#contact .section-formulaire .col-form .ginput_container_select {
  position: relative;
}
#contact .section-formulaire .col-form .ginput_container_select::after {
  content: "";
  background-image: url(../images/chevron-noir.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 25px;
  top: 10px;
  rotate: 180deg;
  cursor: pointer;
}
#contact .section-formulaire .col-form .gfield {
  margin-bottom: 15px;
}
#contact .section-formulaire .col-form hr {
  border: none;
  height: 1px;
  background: #FFA572;
}
#contact .section-formulaire .col-form .gform_footer {
  text-align: center;
}
#contact .section-formulaire .col-form .gform_button {
  background: none;
  border: none;
  margin: auto;
}
#contact .section-formulaire .col-form .gform_button span {
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  font-family: Quatro;
  font-weight: 700;
  font-size: 16px;
}
#contact .section-formulaire .col-form .gform_button span::after {
  content: "";
  background-image: url("../images/Bouton-Fleche-blanche.svg");
  background-repeat: no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -3px;
  right: -35px;
  transition: 0.2s;
}
#contact .section-formulaire .col-form .gform_button span:hover::after {
  right: -45px;
}
#contact .section-carte .google-map {
  height: 750px;
}

.share-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-left: 30px;
}
.share-btn h4 {
  font-family: "Public Sans";
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
}
.share-btn a {
  opacity: 0;
  transition: visibility 0s, opacity 0.2s linear;
}
.share-btn a path, .share-btn a circle {
  transition: 0.2s;
}
.share-btn a:hover:not(.share-email) path {
  fill: #F36C21;
}
.share-btn a:hover.share-email circle {
  fill: #F36C21;
}
.share-btn::before {
  content: "";
  background-image: url(../images/share-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
  position: absolute;
  left: -25px;
  top: 7px;
}

.row.gutter-100, form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address, form .gform_body .gutter-100.gform_fields {
  margin-left: -50px;
  margin-right: -50px;
}
.row.gutter-100 > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-100.gform_fields > div[class*=col-] {
  padding-left: 50px;
  padding-right: 50px;
}
.row.gutter-50, form .gform_body .gform_fields .gfield .gutter-50.ginput_container.ginput_container_address, form .gform_body .gutter-50.gform_fields {
  margin-left: -25px;
  margin-right: -25px;
}
.row.gutter-50 > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-50.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-50.gform_fields > div[class*=col-] {
  padding-left: 25px;
  padding-right: 25px;
}

.text-defilez {
  writing-mode: vertical-rl;
  width: fit-content;
  text-transform: uppercase;
  color: #F36C21;
  position: absolute;
  left: 5%;
  bottom: 5%;
}
.text-defilez::after {
  content: "";
  background-image: url(../images/fleche-orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 100%;
  position: absolute;
  left: 5px;
  bottom: -110px;
}

#demande-taux {
  margin-top: -100px;
  padding: 250px 0px 150px;
  background: rgb(21, 24, 56);
  background: -moz-linear-gradient(top, rgb(21, 24, 56) 0%, rgb(41, 47, 113) 100%);
  background: -webkit-linear-gradient(top, rgb(21, 24, 56) 0%, rgb(41, 47, 113) 100%);
  background: linear-gradient(to bottom, rgb(21, 24, 56) 0%, rgb(41, 47, 113) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#151838", endColorstr="#292f71",GradientType=0 );
  position: relative;
}
#demande-taux form.loading {
  opacity: 0.5;
  pointer-events: none;
}
#demande-taux .pattern {
  position: absolute;
}
#demande-taux .pattern1 {
  left: -16%;
  top: 12%;
  width: 700px;
  transform: rotate(22deg);
}
#demande-taux .pattern2 {
  right: -10%;
  bottom: -11%;
  width: 700px;
  transform: rotate(-222deg) scalex(-1);
}
#demande-taux .form-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}
#demande-taux .row-steps-number {
  padding: 75px 25%;
  display: flex;
  justify-content: space-around;
  color: #ffffff;
}
#demande-taux .row-steps-number .step {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  font-family: "Public Sans";
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: relative;
}
#demande-taux .row-steps-number .step.active {
  background-color: #F36C21;
  color: #ffffff;
}
#demande-taux .row-steps-number .step.done {
  background-color: #3151BE;
  background-image: url("../images/white-checkmark.svg");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  color: #ffffff;
}
#demande-taux .row-steps-number .step1::before, #demande-taux .row-steps-number .step1::after, #demande-taux .row-steps-number .step2::before, #demande-taux .row-steps-number .step2::after, #demande-taux .row-steps-number .step3::before, #demande-taux .row-steps-number .step3::after {
  content: "";
  height: 3px;
  left: 100%;
  position: absolute;
  transition: 0.3s ease-in-out;
}
#demande-taux .row-steps-number .step1::before, #demande-taux .row-steps-number .step2::before, #demande-taux .row-steps-number .step3::before {
  background-color: #ffffff;
  width: 11vw;
}
#demande-taux .row-steps-number .step1::after, #demande-taux .row-steps-number .step2::after, #demande-taux .row-steps-number .step3::after {
  background-color: #3151BE;
  width: 0vw;
}
#demande-taux .row-steps-number .step1.done::after, #demande-taux .row-steps-number .step2.done::after, #demande-taux .row-steps-number .step3.done::after {
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
  width: 11vw;
}
#demande-taux p, #demande-taux .row-recap-details span {
  color: #ffffff;
  font-family: "Public Sans";
  font-weight: 300;
}
#demande-taux p.company, #demande-taux .row-recap-details span.company {
  font-weight: 700;
}
#demande-taux .h2 {
  text-align: center;
}
#demande-taux .orange-top-title {
  text-align: left;
}
#demande-taux label {
  display: none;
}
#demande-taux input, #demande-taux select {
  height: 50px;
}
#demande-taux .form-section1 .section1-title {
  margin-bottom: 20px;
}
#demande-taux .dropdown {
  position: relative;
}
#demande-taux .dropdown::after {
  content: "";
  background-image: url(../images/dropdown-orange-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 43%;
  right: 25px;
  cursor: pointer;
}
#demande-taux select {
  height: 100%;
}
#demande-taux input, #demande-taux select, #demande-taux textarea {
  width: 100%;
  padding: 20px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s ease-in-out;
  font-family: "Public Sans";
}
#demande-taux input::placeholder, #demande-taux select::placeholder, #demande-taux textarea::placeholder {
  font-family: "Public Sans";
  font-size: 1rem;
  font-weight: 300;
}
#demande-taux input.erreur, #demande-taux select.erreur, #demande-taux textarea.erreur {
  border: 2px solid red;
}
#demande-taux input:focus, #demande-taux select:focus, #demande-taux textarea:focus {
  border: 2px solid #F36C21;
}
#demande-taux .next-button, #demande-taux .previous-button {
  background: none;
  border: none;
  margin: 50px auto 50px;
  cursor: pointer;
}
#demande-taux .next-button span, #demande-taux .previous-button span {
  text-transform: capitalize;
}
#demande-taux .form-section1 .next-button, #demande-taux .form-section4 .previous-button {
  justify-content: center;
}
#demande-taux .form-section2 .next-button, #demande-taux .form-section3 .next-button {
  justify-content: left;
}
#demande-taux .form-section2 .previous-button, #demande-taux .form-section3 .previous-button {
  justify-content: right;
}
#demande-taux .label-radio.col-11 {
  text-align: right;
}
#demande-taux .next-button {
  text-align: left;
}
#demande-taux .previous-button {
  text-align: right;
}
#demande-taux .previous-button.section4 {
  text-align: center;
}
#demande-taux .form-section1, #demande-taux .form-section3, #demande-taux .form-section4 {
  width: 50%;
}
#demande-taux .form-section3 .matiere-dangereuses, #demande-taux .form-section3 .trailer-title {
  margin-bottom: 0px;
}
#demande-taux .form-section3 input[type=radio] {
  width: fit-content;
}
#demande-taux .form-section3 .fee {
  width: 40vw;
}
#demande-taux .form-section4 small {
  color: #fff;
}
#demande-taux .form-section4 .row-btn {
  margin-top: 50px;
}
#demande-taux .form-section4 .orange-top-title {
  margin-top: 75px;
  margin-bottom: 40px;
}
#demande-taux .form-section2 {
  width: 70%;
}
#demande-taux .form-section2 .third-party {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
#demande-taux .form-section2 .date-input p {
  color: #000000;
}
#demande-taux .form-section2 .select-date {
  position: relative;
}
#demande-taux .form-section2 .select-date::after {
  content: "";
  background-image: url(../images/Icone-Calendrier.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  cursor: pointer;
}
#demande-taux .form-section1, #demande-taux .form-section2, #demande-taux .form-section3, #demande-taux .form-section4 {
  position: relative;
  margin: auto;
}
#demande-taux .form-section2, #demande-taux .form-section3, #demande-taux .form-section4 {
  display: none;
}
#demande-taux .row-title {
  align-items: center;
}
#demande-taux .row-btn {
  align-items: center;
  text-align: center;
}
#demande-taux .row-forms {
  margin-bottom: 20px;
}
#demande-taux .col-radio {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #ffffff;
}
#demande-taux .col-radio input {
  width: 20px;
}
#demande-taux .form-section2 .col-checkbox {
  justify-content: right;
  display: flex;
  align-items: center;
  gap: 5px;
  text-align: end;
}
#demande-taux .form-section3 .single-checkbox {
  margin-bottom: 30px;
}
#demande-taux .col-options {
  display: flex;
  gap: 75px;
}
#demande-taux .input-radio {
  height: 18px;
  margin: 0px;
}
#demande-taux .label-radio {
  display: block;
  color: #ffffff;
}
#demande-taux .col-radio-title {
  text-align: left;
  color: #ffffff;
}
#demande-taux .col-radio-title h4 {
  font-weight: 600;
}
#demande-taux .ajouter {
  color: #ffffff;
  position: relative;
  transform: translateX(45px);
  margin: 30px 0px;
  cursor: pointer;
  text-align: left;
  width: fit-content;
}
#demande-taux .ajouter::before {
  content: "";
  position: absolute;
  background-image: url(../images/Icone-Plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  transform: translateX(-35px) translateY(-2px);
}
#demande-taux .single-commodite {
  display: flex;
}
#demande-taux .row-single-dimension {
  align-items: center;
}
#demande-taux .row-single-dimension .content-wrapper {
  margin-bottom: 10px;
  gap: 20px;
  align-items: center;
}
#demande-taux .row-single-dimension span {
  color: #ffffff;
  font-family: "Public Sans";
  font-size: 1.25rem;
  font-weight: 600;
}
#demande-taux .row-single-commodite, #demande-taux .row-single-dimension {
  margin-top: 20px;
  margin-bottom: 20px;
}
#demande-taux .delete-commodite, #demande-taux .delete-dimension, #demande-taux .delete-acc {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#demande-taux .delete-commodite span, #demande-taux .delete-dimension span, #demande-taux .delete-acc span {
  text-align: center;
  width: 30px;
  height: 30px;
  border: 2px solid #F36C21;
  border-radius: 50%;
  font-size: 20px;
  color: #ffffff;
}
#demande-taux .addbox {
  margin: 20px 0px;
}
#demande-taux #commodite-comments {
  resize: none;
}
#demande-taux .col-qty input {
  padding: 10px;
}
#demande-taux .col-type {
  display: flex;
  align-items: center;
  gap: 5px;
}
#demande-taux .col-type label {
  display: block;
  color: #ffffff;
}
#demande-taux .row-espace {
  margin-top: 20px;
  margin-bottom: 20px;
}
#demande-taux .titre-blanc {
  text-align: left;
  color: #ffffff;
  font-family: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}
#demande-taux .row-matieres-dangereuses, #demande-taux .row-trailer {
  align-items: center;
  padding: 0px 15px;
  gap: 20px;
  row-gap: 0;
}
#demande-taux .row-matieres-dangereuses span.color-white, #demande-taux .row-trailer span.color-white {
  width: 100%;
  margin-bottom: 10px;
}
#demande-taux .single-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
}
#demande-taux .col-checkbox label {
  display: block;
  color: #ffffff;
}
#demande-taux .col-checkbox input[type=text] {
  width: 100%;
}
#demande-taux .col-checkbox input {
  width: 20px;
}
#demande-taux .ajouter-frais {
  transform: translateX(30px);
}
#demande-taux .details-title {
  margin: 40px 0px;
  font-family: "Public Sans";
  font-weight: 600;
  color: #ffffff;
}
#demande-taux .row-comments {
  margin-top: 20px;
  padding: 0px 15px;
  gap: 10px;
  margin-bottom: 20px;
}
#demande-taux .comments-title {
  font-family: "Public Sans";
  font-weight: 700;
}
#demande-taux .row-recap-dimensions {
  margin-bottom: 75px;
}
#demande-taux .form-section4 .wrapper-button {
  text-align: center;
}
#demande-taux .form-confirmation {
  padding: 100px 25%;
}
#demande-taux .form-confirmation h3 {
  color: #ffffff;
  text-align: center;
}

.submit-button {
  border: none;
  color: #ffffff;
  background: #F36C21;
  width: fit-content;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 15px 30px;
  transition: 0.3s ease-in-out;
  font-weight: 700;
  cursor: pointer;
}
.submit-button:hover {
  background: #4569E0;
}

.blue-title {
  font-family: "Public Sans";
  font-weight: 600;
  color: #3151BE;
  margin-bottom: 20px;
}

.hr-blue {
  height: 1px;
  border: 0;
  border-top: 1px solid #5B62B5;
  margin: 40px 0;
  padding: 0;
}

.bold {
  font-weight: 700;
}

.date-wrap {
  position: relative;
  width: 100%;
}
.date-wrap.date-wrap-half {
  width: 100%;
}
.date-wrap .date-input {
  position: relative;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: white;
  border-radius: 8px;
}
.date-wrap .date-input .left-side {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}
.date-wrap .date-input .left-side p {
  font-size: 1rem;
  color: #000000;
}
.date-wrap .date-input .left-side svg {
  height: 25px;
}
.date-wrap .date-input.erreur {
  border: 2px solid red;
}
.date-wrap input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.date-wrap input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

#circle-rotate {
  transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
  transform-origin: 50%;
  -webkit-animation: cog 60s infinite;
  -moz-animation: cog 60s infinite;
  -ms-animation: cog 60s infinite;
  animation: cog 60s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes cog {
  0% {
    -moz-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
#documents-utiles .section-documents-list {
  padding: 250px 10% 150px;
}
#documents-utiles .section-documents-list .flex-row {
  flex-wrap: wrap;
  justify-content: space-between;
}
#documents-utiles .section-documents-list .single-document {
  width: 45%;
}

.error-msg {
  font-size: 0.75rem;
  font-weight: 700 !important;
  color: red !important;
  max-width: 100%;
}

.success-msg {
  font-size: 0.75rem;
  color: #ffffff !important;
  font-weight: 700 !important;
  max-width: 100%;
}

.logout {
  display: flex;
  gap: 15px;
  color: #fff;
}

.apply-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #F36C21;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #F36C21;
}
.apply-btn.left-button, .apply-btn.right-button {
  width: fit-content;
  padding: 12px 40px;
}
.apply-btn.right-button {
  background-color: transparent;
  border: 1px solid #F36C21;
}
.apply-btn:hover {
  background-color: #3151BE;
  border: 1px solid #3151BE;
}
.apply-btn:hover.right-button {
  background-color: transparent;
  border: 1px solid #3151BE;
}

.small-round-slider {
  height: 100%;
}
.small-round-slider li {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s;
}
.small-round-slider li.active {
  opacity: 1;
}
.small-round-slider li img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}

select, .gfield_select, .dropdown select {
  z-index: 5;
  background: none;
}

.ginput_container_select, .dropdown {
  background-color: #ffffff;
  border-radius: 10px;
}

.col-province {
  margin-top: 18px;
}

.menu-item.hidden {
  display: none;
}

.grecaptcha-badge {
  display: none;
}

.page-transition {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 300vw;
  width: 300vw;
  border-radius: 100%;
  z-index: 9999;
  background: #F36C21;
  transform-origin: center center;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.page-transition .transition-logo {
  background: url(../images/Bourassa-LoadingPage.gif) no-repeat center center;
  background-size: contain;
  position: fixed;
  width: 550px;
  height: 550px;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  z-index: 347483647;
}
.page-transition:after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  height: 300vh;
  width: 300vh;
  border-radius: 100%;
  z-index: 999;
  background: #F36C21;
  transform-origin: center center;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.2s ease-in-out 0.03s;
}
.page-transition.out {
  width: 0;
  height: 0;
}
.page-transition.out:before, .page-transition.out:after {
  width: 0;
  height: 0;
}
.page-transition.out .transition-logo {
  opacity: 0;
}

.ginput_container_checkbox .gfield_checkbox .gchoice label::before {
  border: 2px solid #ffffff !important;
  background-color: transparent !important;
  height: 20px !important;
  width: 20px !important;
}
.ginput_container_checkbox .gfield_checkbox .gchoice label::after {
  transform: unset !important;
  top: 3px !important;
  left: 4px !important;
  height: 12px !important;
  width: 12px !important;
  background-image: unset !important;
  background: #ffffff;
}

form .gform_body .gform_fields .gfield.gfield_error .gfield_description {
  color: #fff !important;
}

.privacy-policy h1, .page-id-3012 h1, .page-id-3026 h1 {
  font-size: 4em;
  margin-bottom: 50px;
}
.privacy-policy h2, .page-id-3012 h2, .page-id-3026 h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
.privacy-policy h3, .page-id-3012 h3, .page-id-3026 h3 {
  margin-bottom: 10px;
}
.privacy-policy p, .page-id-3012 p, .page-id-3026 p {
  margin-top: 10px;
}
.privacy-policy #header, .page-id-3012 #header, .page-id-3026 #header {
  background-color: #151838;
}
.privacy-policy #main, .page-id-3012 #main, .page-id-3026 #main {
  padding: 250px 0 150px 0;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.mobile-pay-btn {
  display: none;
  margin: auto;
  width: 100%;
  max-width: 300px;
  margin-bottom: 40px;
}

#maintenance-page {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#maintenance-page .title {
  width: calc(100% - 60px);
  max-width: 960px;
  color: #fff;
  text-align: center;
  z-index: 5;
}
#maintenance-page .blue-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(21, 24, 56, 0.7529411765);
}

.error404 #main {
  margin-top: 0;
  padding: 350px 0 200px;
  height: 10vh;
  min-height: 300px;
  background-color: #151838;
}
.error404 #main .the-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error404 #main p {
  font-size: 3.125rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.video-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.2;
  overflow: hidden;
}
.video-container video {
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}

.initiatives {
  padding: 0 0 150px;
}
.initiatives .wrapper {
  width: 90%;
  max-width: 1500px;
  margin-inline: auto;
}
.initiatives .wrapper .row, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address, .initiatives .wrapper form .gform_body .gform_fields, form .gform_body .initiatives .wrapper .gform_fields {
  margin-inline: -50px;
}
.initiatives .wrapper .row .col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full, .initiatives .wrapper form .gform_body .gform_fields .col-12, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .initiatives .wrapper .gform_fields .col-12, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full {
  position: relative;
  padding-inline: 50px;
}
.initiatives .wrapper .row .col-12:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .col-12:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .col-12:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child:before {
  content: "";
  position: absolute;
  background: url(../images/bourassa-planete.svg) no-repeat center;
  background-size: contain;
  width: 100%;
  max-width: 250px;
  height: 100%;
  max-height: 250px;
  right: 30px;
  top: 0;
}
.initiatives .wrapper .row .col-12 h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full h4, .initiatives .wrapper form .gform_body .gform_fields .col-12 h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full h4, form .gform_body .initiatives .wrapper .gform_fields .col-12 h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full h4 {
  color: #3151BE;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.initiatives .wrapper .row .col-12 h2, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left h2, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right h2, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full h2, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 h2, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left h2, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right h2, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full h2, .initiatives .wrapper form .gform_body .gform_fields .col-12 h2, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left h2, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right h2, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full h2, form .gform_body .initiatives .wrapper .gform_fields .col-12 h2, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left h2, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right h2, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full h2 {
  width: 100%;
  max-width: 600px;
  font-size: 40px;
  margin-bottom: 50px;
}
.initiatives .wrapper .row .col-12 .the-content, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left .the-content, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right .the-content, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full .the-content, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 .the-content, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left .the-content, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right .the-content, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full .the-content, .initiatives .wrapper form .gform_body .gform_fields .col-12 .the-content, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content, form .gform_body .initiatives .wrapper .gform_fields .col-12 .the-content, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content {
  margin-bottom: 50px;
  max-width: 715px;
}
.initiatives .wrapper .row .col-12 .the-content h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left .the-content h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right .the-content h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full .the-content h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 .the-content h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left .the-content h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right .the-content h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full .the-content h4, .initiatives .wrapper form .gform_body .gform_fields .col-12 .the-content h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content h4, form .gform_body .initiatives .wrapper .gform_fields .col-12 .the-content h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content h4 {
  color: #F36C21;
  font-size: 1.125rem;
  text-transform: initial;
}
.initiatives .wrapper .row .col-12 .the-content p, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left .the-content p, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right .the-content p, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full .the-content p, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 .the-content p, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left .the-content p, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right .the-content p, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full .the-content p, .initiatives .wrapper form .gform_body .gform_fields .col-12 .the-content p, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content p, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content p, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content p, form .gform_body .initiatives .wrapper .gform_fields .col-12 .the-content p, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content p, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content p, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content p, .initiatives .wrapper .row .col-12 .the-content li, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left .the-content li, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right .the-content li, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full .the-content li, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 .the-content li, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left .the-content li, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right .the-content li, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full .the-content li, .initiatives .wrapper form .gform_body .gform_fields .col-12 .the-content li, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content li, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content li, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content li, form .gform_body .initiatives .wrapper .gform_fields .col-12 .the-content li, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content li, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content li, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content li {
  font-family: Quatro;
  font-size: 1rem;
  line-height: 1.5em;
}
.initiatives .wrapper .row .col-12 .the-content li, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left .the-content li, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right .the-content li, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full .the-content li, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 .the-content li, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left .the-content li, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right .the-content li, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full .the-content li, .initiatives .wrapper form .gform_body .gform_fields .col-12 .the-content li, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content li, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content li, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content li, form .gform_body .initiatives .wrapper .gform_fields .col-12 .the-content li, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content li, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content li, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin-bottom: 30px;
}
.initiatives .wrapper .row .col-12 .the-content li:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left .the-content li:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right .the-content li:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full .the-content li:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 .the-content li:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left .the-content li:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right .the-content li:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full .the-content li:before, .initiatives .wrapper form .gform_body .gform_fields .col-12 .the-content li:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content li:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content li:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content li:before, form .gform_body .initiatives .wrapper .gform_fields .col-12 .the-content li:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content li:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content li:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content li:before {
  content: "";
  position: absolute;
  background-color: #F36C21;
  font-weight: bold;
  display: inline-block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  left: 0;
  top: 10px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: 20%;
  min-height: 200px;
  width: 100%;
  z-index: 99;
  padding: 0px 0 30px;
  margin-top: -1px;
  transition: all 0.3s ease-in-out;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrapper img {
  max-height: 100%;
  transition: 0.3s ease-in-out;
}
header .wrapper .logo {
  height: 40px;
  transition: all 0.3s ease-in-out;
}
header .wrapper nav ul .menu-item {
  display: inline-block;
  margin-left: 30px;
  background: none;
  position: relative;
}
header .wrapper nav ul .menu-item:not(.is-button) a:hover {
  color: #F36C21;
}
header .wrapper nav ul .menu-item a {
  font-family: Quatro;
  font-size: 16px;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease-in-out;
  position: relative;
}
header .wrapper nav ul .is-button a::after {
  background: none;
}
@media (max-width: 1024px) {
  header .wrapper nav ul li {
    margin-left: 25px;
  }
}
header.shrink {
  height: 13%;
  min-height: 120px;
  background: rgb(21, 24, 56);
  z-index: 99;
}
header.shrink .menu-header {
  padding: 0px;
  transform: translateY(-15px);
}
@media (max-width: 992px) {
  header.shrink .menu-header {
    transform: translateY(0px);
  }
}
header.shrink .menu-header img {
  width: 175px;
}
header.shrink .logo {
  height: 30px;
}
header.shrink .blue-background {
  top: 100% !important;
  background-color: #151838;
  padding: 20px;
  right: 50%;
  transform: translateX(15%);
}
header.shrink .topbar ul #menu-item-819, header.shrink .topbar ul #menu-item-1198 {
  position: relative;
}
header.shrink .topbar ul #menu-item-819 .sub-menu, header.shrink .topbar ul #menu-item-1198 .sub-menu {
  transform: none;
  right: -90%;
}
@media (max-width: 992px) {
  header {
    height: 65px;
    padding: 50px 0;
    background: #151838;
  }
  header.active {
    background: #171a3f;
  }
  header .menu-header {
    padding: 0px;
  }
  header .logo {
    height: 30px;
  }
}

.mobile-nav-trigger {
  z-index: 99;
}

#mobile-nav {
  background: rgb(21, 24, 56);
  background: -moz-linear-gradient(top, rgb(21, 24, 56) 0%, rgb(41, 47, 113) 100%);
  background: -webkit-linear-gradient(top, rgb(21, 24, 56) 0%, rgb(41, 47, 113) 100%);
  background: linear-gradient(to bottom, rgb(21, 24, 56) 0%, rgb(41, 47, 113) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#151838", endColorstr="#292f71",GradientType=0 );
}

.mobile-nav-trigger,
#mobile-nav {
  display: none;
}
.mobile-nav-trigger hr,
#mobile-nav hr {
  width: 90%;
  max-width: 100%;
  height: 1px;
  background-color: #ffffff;
  border: none;
  margin: 0;
}
.mobile-nav-trigger .btn svg,
#mobile-nav .btn svg {
  margin-right: 20px;
}
.mobile-nav-trigger .btn span,
#mobile-nav .btn span {
  text-transform: uppercase;
  font-size: 18px;
}
.mobile-nav-trigger .mobile-top-bar,
#mobile-nav .mobile-top-bar {
  display: flex;
  gap: 20px;
}
.mobile-nav-trigger .mobile-top-bar svg,
#mobile-nav .mobile-top-bar svg {
  width: 45px;
  height: 25px;
}
.mobile-nav-trigger .mobile-top-bar #menu-top-bar-1, .mobile-nav-trigger .mobile-top-bar #menu-top-bar-en-1, .mobile-nav-trigger .mobile-top-bar #menu-top-bar-menu-mobile, .mobile-nav-trigger .mobile-top-bar #menu-top-bar-menu-mobile-en,
#mobile-nav .mobile-top-bar #menu-top-bar-1,
#mobile-nav .mobile-top-bar #menu-top-bar-en-1,
#mobile-nav .mobile-top-bar #menu-top-bar-menu-mobile,
#mobile-nav .mobile-top-bar #menu-top-bar-menu-mobile-en {
  margin-top: 10px;
}
.mobile-nav-trigger .mobile-top-bar #menu-top-bar-1 a, .mobile-nav-trigger .mobile-top-bar #menu-top-bar-en-1 a, .mobile-nav-trigger .mobile-top-bar #menu-top-bar-menu-mobile a, .mobile-nav-trigger .mobile-top-bar #menu-top-bar-menu-mobile-en a,
#mobile-nav .mobile-top-bar #menu-top-bar-1 a,
#mobile-nav .mobile-top-bar #menu-top-bar-en-1 a,
#mobile-nav .mobile-top-bar #menu-top-bar-menu-mobile a,
#mobile-nav .mobile-top-bar #menu-top-bar-menu-mobile-en a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-trigger.active,
#mobile-nav.active {
  max-width: 100%;
  z-index: 98;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 20px;
  justify-content: flex-start;
}
.mobile-nav-trigger .menu-portail-mobile a,
#mobile-nav .menu-portail-mobile a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-trigger .btn,
#mobile-nav .btn {
  padding: 13px 30px;
}

.topbar {
  padding: 15px 5%;
  color: #ffffff;
  background: #151838;
  font-weight: 600;
  opacity: 1;
  transition: 0.1s ease-in-out;
}
.topbar ul {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  align-items: center;
}
.topbar ul li svg {
  width: 15px;
  transform-origin: 50%;
  transition: 0.3s;
  overflow: visible;
}
.topbar ul li #Group_1963 {
  transition: 0.3s;
  transform: translate(0px);
}
.topbar ul li #Group_1961 {
  transform: rotate(0);
  transition: 0.2s;
}
.topbar ul li:hover #Group_1960, .topbar ul li:hover #Group_1963 {
  position: relative;
  transform: translate(0px, -6px);
}
.topbar ul li:hover #Group_1961 {
  transform: rotate(-15deg) translateY(5px);
}
.topbar ul li:hover #camions-a-vendre {
  animation-name: sale;
  animation-duration: 0.5s;
  transform-origin: top;
}
@keyframes sale {
  0% {
    transform: translate(0);
  }
  33% {
    transform: rotate(20deg);
  }
  66% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(0);
  }
}
.topbar ul li:hover svg {
  overflow: visible;
}
.topbar ul li:hover svg circle {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.topbar ul li:hover svg .cls-1 {
  fill: #F36C21;
}
.topbar ul li:hover svg #Ellipse_11 {
  transform: translate(-1px, -1px);
}
.topbar ul li:hover svg #Ellipse_16 {
  transform: translate(-1px, 0px);
}
.topbar ul li:hover svg #Ellipse_19 {
  transform: translate(-1px, 1px);
}
.topbar ul li:hover svg #Ellipse_12 {
  transform: translate(0px, -1px);
}
.topbar ul li:hover svg #Ellipse_18 {
  transform: translate(0px, 1px);
}
.topbar ul li:hover svg #Ellipse_13 {
  transform: translate(1px, -1px);
}
.topbar ul li:hover svg #Ellipse_14 {
  transform: translate(1px, 0px);
}
.topbar ul li:hover svg #Ellipse_17 {
  transform: translate(1px, 1px);
}
.topbar ul a {
  display: flex;
  gap: 10px;
  align-items: center;
  transition: 0.2s;
}
.topbar ul a:hover {
  color: #F36C21;
}
.topbar ul a span {
  font-family: Quatro;
  font-weight: 500;
  font-size: 16px;
}
.topbar ul #menu-item-819 > a, .topbar ul #menu-item-1198 > a {
  pointer-events: none;
}
.topbar ul #menu-item-819 .sub-menu, .topbar ul #menu-item-1198 .sub-menu {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  width: 250px;
  position: absolute;
  transform: translate(-15%, -3%);
  background: #151838;
  z-index: 99;
  gap: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.2s linear;
}
.topbar ul #menu-item-819 .sub-menu #menu-item-883, .topbar ul #menu-item-819 .sub-menu #menu-item-1197, .topbar ul #menu-item-1198 .sub-menu #menu-item-883, .topbar ul #menu-item-1198 .sub-menu #menu-item-1197 {
  border-bottom: 1px solid #F36C21;
}
.topbar ul #menu-item-819 .sub-menu li, .topbar ul #menu-item-1198 .sub-menu li {
  padding: 20px;
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }
}
.menu-header {
  font-weight: 400;
}
.menu-header a img {
  width: 300px;
}
@media (max-width: 768px) {
  .menu-header a img {
    width: 200px;
  }
}
.menu-header .is-button a {
  position: relative;
  transition: 0.3s;
  left: 0;
}
.menu-header .is-button:hover a {
  left: -10px;
}
.menu-header a {
  transition: 0.2s;
}

#menu-item-24, #menu-item-1178 {
  position: relative;
}
#menu-item-24 > a, #menu-item-1178 > a {
  pointer-events: none;
}
#menu-item-24 .sub-menu, #menu-item-1178 .sub-menu {
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  text-align: center;
  right: -18px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.2s linear;
  padding-top: 20px;
}
#menu-item-24 .sub-menu li, #menu-item-1178 .sub-menu li {
  margin-left: 0px;
}

#menu-item-1178 .sub-menu {
  right: -5px;
}

#menu-item-657 {
  background-color: #D5601F;
}
#menu-item-657::after {
  background-image: none;
}

footer {
  position: relative;
  padding: 50px 0 20px;
  background-color: #151838;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
footer .pattern1 {
  left: -6%;
  top: 11%;
  width: 20%;
  transform: rotate(-200deg) scaleX(-1);
}
footer .pattern2 {
  right: -5%;
  bottom: 13%;
  width: 20%;
  transform: rotate(173deg);
}
footer .footer-contact {
  background-color: #F0F6FD;
  border-radius: 10px;
  padding: 0px 20px;
  display: flex;
  max-width: 900px;
  width: 100%;
  margin: auto;
  margin-top: -85px;
  margin-bottom: 75px;
  justify-content: space-around;
}
@media (max-width: 768px) {
  footer .footer-contact {
    padding: 20px;
  }
}
footer .footer-contact .image-box {
  gap: 10px;
  border-right: 1px solid #3151BE;
}
@media (max-width: 768px) {
  footer .footer-contact .image-box {
    justify-content: center;
    border-right: none;
  }
}
footer .footer-contact .image-box img {
  max-width: 40px;
  width: 100%;
}
footer .footer-contact .image-box h4 {
  width: 175px;
  font-family: Quatro;
  font-weight: 700;
}
@media (max-width: 768px) {
  footer .footer-contact .image-box h4 {
    text-align: center;
  }
}
footer .footer-contact .col {
  padding: 30px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: center;
  gap: 20px;
}
footer .footer-contact .col .titre {
  font-family: "Public Sans";
  font-weight: 600;
  color: #3151BE;
  margin-bottom: 10px;
}
footer .footer-contact .col .tel {
  font-family: "Public Sans";
  font-weight: 800;
  color: #0B0D27;
}
footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  padding-bottom: 40px;
  justify-content: space-between;
  color: #ffffff;
}
footer .footer-content .address {
  position: relative;
  font-family: "Public Sans";
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media (max-width: 768px) {
  footer .footer-content .col-address, footer .footer-content .col-menu-gauche, footer .footer-content .col-menu-droite, footer .footer-content .col-socials {
    width: 100%;
    text-align: center;
  }
  footer .footer-content .col-address {
    margin-bottom: 25px;
  }
}
footer .footer-content img {
  max-width: 75%;
  margin-bottom: 20px;
}
footer .footer-content li {
  list-style-type: none;
  font-family: "Public Sans";
  font-weight: 600;
  margin-bottom: 25px;
}
footer .footer-content li a {
  transition: 0.2s;
}
footer .footer-content li a:hover {
  color: #F36C21;
}
footer .footer-content p {
  font-weight: 300;
}
@media (max-width: 768px) {
  footer .footer-content p {
    text-align: center;
  }
}
footer .footer-content .col-socials {
  position: relative;
}
footer .footer-content .social-block {
  text-align: end;
}
@media (max-width: 915px) {
  footer .footer-content .social-block {
    text-align: left;
  }
}
@media (max-width: 768px) {
  footer .footer-content .social-block {
    text-align: center;
  }
}
footer .footer-content .social-block h5 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}
footer .footer-content .social-block .socials a {
  margin: 0px 5px;
}
footer .footer-content .social-block .socials svg {
  width: 25px;
  height: 25px;
  transition: 0.2s;
}
footer .footer-content .social-block .socials svg:hover {
  filter: brightness(1.5);
}
footer .footer-content .career-block {
  display: flex;
  flex-direction: column;
  text-align: end;
  align-items: end;
}
@media (max-width: 915px) {
  footer .footer-content .career-block {
    text-align: left;
    align-items: start;
  }
}
@media (max-width: 768px) {
  footer .footer-content .career-block {
    text-align: center;
    align-items: center;
    margin-bottom: 25px;
  }
}
footer .footer-content .career-block h5 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 1.5rem;
}
footer .footer-content .career-block .is-button {
  background-color: #F36C21;
  gap: 5px;
  align-items: center;
  position: relative;
  transition: 0.5s;
}
footer .footer-content .career-block .is-button span {
  font-family: Quatro;
  font-weight: 700;
  transition: 0.3s;
  position: relative;
  left: 0;
}
footer .footer-content .career-block .is-button::after {
  opacity: 0%;
  transition: 0.2s;
  content: "";
  background-image: url("../images/Bouton-Fleche-blanche.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 10px;
  top: 11px;
}
footer .footer-content .career-block .is-button:hover {
  background-color: #D5601F;
}
footer .footer-content .career-block .is-button:hover span {
  left: -10px;
}
footer .footer-content .career-block .is-button:hover::after {
  opacity: 100%;
}
footer hr {
  height: 1px;
  background-color: #F36C21;
  border: none;
}
footer #copyrights {
  padding-top: 20px;
  text-align: center;
  width: 80%;
  color: #ffffff;
  margin: auto;
}
footer #copyrights .wrapper {
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  footer #copyrights .wrapper {
    gap: 20px;
    justify-content: center !important;
  }
}
footer #copyrights #rubik-api-copyright a {
  line-height: 33px;
}
footer .footer-arrow {
  display: none;
  position: absolute;
  right: 30px;
  bottom: 20%;
  transform: scaleY(-1);
  cursor: pointer;
}

/*
 * Modify gravity form, chosen and mailpoet styles here
 *
 * Change and modify according to designs
 */
form .gform_body .gform_fields fieldset {
  outline: none;
  border: 0;
  border-radius: 0;
}
form .gform_body .gform_fields .gfield {
  position: relative;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield small {
  color: #fff;
}
form .gform_body .gform_fields .gfield:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container input, form .gform_body .gform_fields .gfield:last-child .ginput_container textarea {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .gfield_label {
  display: block;
  text-align: left;
  font: normal 18px/20px sans-serif;
  margin-bottom: 10px;
}
form .gform_body .gform_fields .gfield .gfield_label.gfield_label_before_complex {
  margin-bottom: 20px;
}
form .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  display: none;
}
form .gform_body .gform_fields .gfield.hidden_label label, form .gform_body .gform_fields .gfield.hidden_label .gfield_label {
  display: none;
}
form .gform_body .gform_fields .gfield .gfield_description {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px 0;
}
form .gform_body .gform_fields .gfield.gform_validation_container {
  display: none;
  content: none;
  padding: 0 0;
  margin: 0 0;
}
form .gform_body .gform_fields .gfield.gfield_error .gfield_description {
  color: red !important;
}
form .gform_body .gform_fields .gfield .ginput_container {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text], form .gform_body .gform_fields .gfield .ginput_container input[type=email], form .gform_body .gform_fields .gfield .ginput_container input[type=tel], form .gform_body .gform_fields .gfield .ginput_container input[type=number] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 15px;
  border: 1px solid #404A56;
  border-radius: 0;
  box-shadow: none;
  background: white;
  color: black;
  font: 400 16px/18px sans-serif;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=email]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=tel]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=number]::placeholder {
  color: grey !important;
  opacity: 1 !important;
}
form .gform_body .gform_fields .gfield .ginput_container textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 150px;
  padding: 15px;
  border: 1px solid #404A56;
  border-radius: 0;
  box-shadow: none;
  background: white;
  color: black;
  font: 400 16px/18px sans-serif;
  resize: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state .chosen-container-single {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span {
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span label {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select {
  /*
   * To add "custom" arrow to HTML select in gForm - comment out if Chosen or enhanced UI active - can comment back in mobile since chosen does not work
   */
  /*
  &:after{
  	content: '';
  	display: block;
  	position: absolute;
  	@include v-align(absolute);
  	right: 15px;
  	height: 25px;
  	width: 25px;
  	background: {
  		image: url('../images/forms/angle-down.svg');
  		size: contain;
  		position: center;
  		repeat: no-repeat;
  	}
  }
   */
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select .chosen-container-single {
  width: 100% !important;
  max-width: 100% !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid black;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
  border-radius: 50%;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 10px 15px;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  max-height: 50px;
  padding: 10px 15px;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area span.gform_drop_instructions {
  display: block;
  text-align: left;
  font: 400 14px/14px sans-serif;
  margin-right: 10px;
}
form .gform_body .gform_fields .gfield .ginput_preview {
  display: flex;
  align-items: center;
}
form .gform_body .gform_fields .gfield .ginput_preview button {
  outline: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_preview button .dashicons:before {
  content: "\f335";
}
form .gform_body .gform_fields .gfield .ginput_preview strong {
  display: block;
  text-align: left;
  font: 400 12px/12px sans-serif;
  margin-right: 10px;
}
form .gform_footer {
  position: relative;
  margin-top: 20px;
  /*
   * Edit the stroke-line cap, and stroke color directly in /images/loader.svg
   */
}
form .gform_footer .gform_ajax_spinner {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 10px 10px 10px 30px;
}

.gform_wrapper .gform_validation_errors {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.gform_wrapper .gform_validation_errors h2, .gform_wrapper .gform_validation_errors .gform_submission_error {
  font: normal 18px/20px sans-serif;
}

.gform_confirmation_wrapper {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  text-align: center;
  font: bold 18px/32px sans-serif;
}

/*
 * Select + Chosen (will apply to gravity forms dropdown automatically)
 */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  box-shadow: none;
  outline: none;
  width: 100%;
  height: 100%;
  max-height: 55px;
  border: 1px solid #404A56;
  border-radius: 0;
  padding: 15px !important;
  font: 400 18px/20px sans-serif !important;
  color: black;
  cursor: pointer;
}
select::placeholder {
  color: grey !important;
  opacity: 1 !important;
}

.chosen-container-single {
  width: 100% !important;
}
.chosen-container-single.chosen-with-drop .chosen-single div {
  transform: rotate(180deg);
}
.chosen-container-single.chosen-with-drop .chosen-drop {
  display: block;
}
.chosen-container-single .chosen-single {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 50px;
  max-height: 100%;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 15px;
  font: 400 16px/18px sans-serif;
  color: black;
  background: transparent;
  cursor: pointer;
}
.chosen-container-single .chosen-single span {
  font: 400 16px/18px sans-serif;
  color: black;
  margin: 0 0 !important;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  bottom: inherit;
  top: inherit;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: black transparent transparent transparent;
}
.chosen-container-single .chosen-single div b {
  display: none !important;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.chosen-container-single .chosen-drop {
  display: none;
  position: absolute;
  width: 100%;
  margin: 0 0;
  box-shadow: none;
  z-index: 1;
  top: calc(100% - 2px);
  border-radius: 0 0;
  border: 2px solid black;
}
.chosen-container-single .chosen-drop .chosen-search {
  margin: 0 0 !important;
  padding: 0 0 !important;
  display: none !important;
}
.chosen-container-single .chosen-drop .chosen-results {
  border: 0;
  background: white;
  border-radius: 0;
  max-height: 150px;
  overflow-y: scroll;
  height: auto;
  padding: 0 0;
  margin: 0 0;
}
.chosen-container-single .chosen-drop .chosen-results li {
  position: relative;
  display: block;
  padding: 15px;
  font: 400 16px/18px sans-serif;
  color: black;
  cursor: pointer;
  text-align: left;
}
.chosen-container-single .chosen-drop .chosen-results li.disabled-result, .chosen-container-single .chosen-drop .chosen-results li.gf_placeholder {
  display: none !important;
}
.chosen-container-single .chosen-drop .chosen-results li.highlighted {
  background: grey;
  background-color: grey;
  color: white;
}

#portal form .gform_body .gform_fields .gfield small {
  color: #1E2139;
}

/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Remove mobile/iOS default buttons
 */
/*
 * Change font size from pixels to rem
 */
/*- Font -*/
/*- Colors -*/
.btn {
  transition: 250ms;
  background-color: #F36C21;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
}
.btn span {
  font-family: "Public Sans";
  font-weight: bold;
}
.btn.primary {
  max-width: 270px;
  width: 100%;
  border: none;
}
.btn.primary span {
  text-transform: uppercase;
  font-family: "Quatro";
  font-size: 1rem;
}
.btn:hover {
  background-color: #3850B7;
}

.page-template-portail #main {
  padding-top: 335px;
  margin: 0;
  background-color: #151838;
  padding-bottom: 155px;
}
.page-template-portail form .gform_body .gform_fields {
  margin: 0;
}
.page-template-portail form .gform_body .gform_fields .gfield {
  width: 100%;
}
.page-template-portail form .gform_body .gform_fields .gfield .ginput_container textarea {
  border-radius: 10px;
  border: 1px solid #3850B7;
  min-height: 245px;
  font-family: "Public Sans";
}
.page-template-portail form .gform_body .gform_fields .gfield .ginput_container textarea::placeholder {
  color: #151838;
  opacity: 1;
  font-style: italic !important;
  font-family: "Public Sans";
  font-weight: 300;
}
.page-template-portail form .gform_footer {
  margin-top: 40px;
}
.page-template-portail .gform_confirmation_wrapper .gform_confirmation_message {
  text-align: left;
}
.page-template-portail .gform_confirmation_wrapper .gform_confirmation_message p {
  font-family: "Public Sans";
  font-size: 1rem;
  font-weight: 600;
}

.dashboard-header {
  color: white;
  font-family: "Public Sans";
  padding-bottom: 40px;
}
.dashboard-header h1 {
  font-size: 1.875rem;
  font-weight: 600;
  font-family: "Public Sans";
}
.dashboard-header .user {
  gap: 5px;
}
.dashboard-header .welcome {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
}
.dashboard-header .logout {
  gap: 8px;
  font-weight: 300;
}
.dashboard-header .logout svg {
  overflow: visible;
}
.dashboard-header .logout svg path {
  transition: 0.2s ease-in-out;
}
.dashboard-header .logout svg #logout-arrow {
  transform: translateX(0);
}
.dashboard-header .logout span {
  transition: 0.2s;
}
.dashboard-header .logout:hover svg path {
  fill: #F36C21;
}
.dashboard-header .logout:hover svg #logout-arrow {
  transform: translateX(2px);
}
.dashboard-header .logout:hover span {
  color: #F36C21;
}
.dashboard-header svg {
  width: 16px;
  height: 16px;
}

.dashboard {
  background-color: #fff;
  border-radius: 15px;
}

.dashboard__nav {
  border-right: 1px solid #3850B7;
  flex-shrink: 0;
  padding-bottom: 485px;
  min-width: 400px;
}
.dashboard__nav ul {
  list-style: none;
}
.dashboard__nav li {
  display: flex;
  border-bottom: 1px solid #3850B7;
}
.dashboard__nav li:hover, .dashboard__nav li.current_page_item {
  cursor: pointer;
  background-color: #f0f6fd;
}
.dashboard__nav li:hover svg, .dashboard__nav li.current_page_item svg {
  color: #F36C21;
}
.dashboard__nav li svg {
  transition: 250ms;
  color: #151838;
}
.dashboard__nav a {
  display: flex;
  gap: 10px;
  align-items: center;
  transition: 250ms;
  width: 100%;
  padding: 20px 45px 20px 40px;
  font-family: "Public Sans";
  font-weight: 600;
}
.dashboard__nav .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard__nav .icon-0 svg {
  width: 16px;
  height: 22px;
}
.dashboard__nav .icon-1 svg {
  width: 22px;
  height: 15px;
}
.dashboard__nav .icon-2 svg {
  width: 18px;
  height: 24px;
}
.dashboard__nav .icon-3 svg {
  width: 16px;
  height: 23px;
}
.dashboard__nav .icon-4 svg {
  width: 23px;
  height: 20px;
}
.dashboard__nav .icon-5 svg {
  width: 23px;
  height: 21px;
}
.dashboard__nav .icon-6 svg {
  width: 22px;
  height: 22px;
}
.dashboard__nav .icon-7 svg {
  width: 27px;
  height: 14px;
}
.dashboard__nav .icon-8 svg {
  width: 29px;
  height: 26px;
}

.dashboard__payment {
  padding: 50px 0;
  border-bottom: 1px solid #3850B7;
}
.dashboard__payment .btn {
  width: 100%;
  max-width: 315px;
  margin: 0 45px;
  padding: 15px 0;
}
.dashboard__payment span {
  font-size: 1.25rem;
}
.dashboard__payment svg {
  width: 27px;
  height: 25px;
}

.dashboard__content {
  overflow: hidden;
  padding: 70px 65px;
  width: 100%;
}
.dashboard__content h2 {
  font-size: 1.25rem;
  font-family: "Public Sans";
  text-transform: uppercase;
  padding-bottom: 60px;
  font-weight: 800;
}
.dashboard__content .department-name {
  font-size: 1rem;
}
.dashboard__content #carriere .section-postes-disponibles .department-list {
  margin: 0px;
}
.dashboard__content #carriere .section-postes-disponibles .department-list .row-single-job .single-job-link, .dashboard__content #carriere .section-postes-disponibles .department-list .row-single-job .col-ville h4 {
  font-size: 1rem;
}
.dashboard__content p {
  max-width: 565px;
  font-family: "Public Sans";
  font-weight: 300;
  padding-bottom: 35px;
}
.dashboard__content .partager {
  padding-bottom: 0px;
}

.dashboard__intro-text {
  padding-bottom: 10px;
}
.dashboard__intro-text ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-bottom: 25px;
}
.dashboard__intro-text li {
  position: relative;
  padding-left: 22px;
  font-weight: 300;
  font-family: "Public Sans";
  color: #151838;
}
.dashboard__intro-text li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 5px;
  background-color: #F36C21;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dashboard__intro-text p {
  color: #151838;
}

#change-password .password-wrapper .password-toggle {
  top: 68%;
}
#change-password .success-msg {
  color: green !important;
}

#changement-adresse h2 {
  padding: 0px 15px;
  padding-bottom: 20px;
}
#changement-adresse .gform-address-change .gform_title {
  display: none;
}
#changement-adresse #gform_6 .gfield, #changement-adresse #gform_11 .gfield {
  padding: 0px 15px;
}
#changement-adresse #gform_6 input[name=input_1], #changement-adresse #gform_6 input[name=input_3], #changement-adresse #gform_6 input[name=input_4], #changement-adresse #gform_11 input[name=input_1], #changement-adresse #gform_11 input[name=input_3], #changement-adresse #gform_11 input[name=input_4] {
  color: #a7a7ab;
  pointer-events: none;
}
#changement-adresse #gform_6 input, #changement-adresse #gform_6 select, #changement-adresse #gform_11 input, #changement-adresse #gform_11 select {
  border: 1px solid #3850B7;
  border-radius: 10px;
  font-family: "Public Sans";
  font-size: 1.125rem;
  padding: 15px 20px;
}
#changement-adresse .gform_footer {
  padding: 0px 15px;
}
#changement-adresse #gform_confirmation_message_6 {
  padding: 0px 15px;
}

.gform_submission_error {
  display: block;
}

.dashboard-form {
  transition: 250ms;
}
.dashboard-form.loading {
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}
.dashboard-form .form-row {
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}
.dashboard-form input, .dashboard-form select {
  border: 1px solid #3850B7;
  border-radius: 10px;
  font-family: "Public Sans";
  font-size: 1.125rem;
  padding: 15px 20px;
}
.dashboard-form input:read-only {
  color: #a7a7ab;
}
.dashboard-form label {
  font-family: "Public Sans";
  font-size: 1rem;
  font-weight: 300;
  padding-bottom: 8px;
  color: #151838;
}
.dashboard-form .form-col {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.dashboard-form .form-col--half {
  width: 48%;
}
.dashboard-form .btn {
  margin-top: 20px;
  padding: 17px 0;
}
.dashboard-form .btn.primary {
  max-width: 300px;
}
.dashboard-form .disabled {
  opacity: 1;
}

.login-section {
  height: calc(100vh - 190px);
  min-height: 500px;
}
.login-section h1 {
  font-size: 3.125rem;
  color: white;
  padding-bottom: 35px;
}
.login-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.message-sent-text, .password-changed-message {
  color: #ffffff;
  font-family: "Public Sans";
  font-weight: 600;
  width: 600px;
  max-width: 100%;
  text-align: center;
}

.password-forgot-wrapper {
  text-align: center;
  margin-top: 15px;
}
.password-forgot-wrapper span:hover {
  text-decoration: underline;
}

.form-login {
  max-width: 560px;
  width: 100%;
}
.form-login.user-form-login {
  display: flex;
}
.form-login input[type=text], .form-login select, .form-login input[type=password] {
  border: none;
  border-radius: 10px;
  font-family: "Public Sans";
  font-size: 1rem;
  font-weight: 300;
  padding: 20px 30px;
  width: 100%;
}
.form-login #forgot-password-trigger {
  background-color: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
}
.form-login #forgot-password-trigger:hover {
  text-decoration: underline;
}
.form-login .form-col {
  padding-bottom: 15px;
}
.form-login .password-wrapper {
  position: relative;
}
.form-login .password-wrapper .password-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: 0;
  cursor: pointer;
  z-index: 50;
  width: 50px;
  height: 50px;
}
.form-login .password-wrapper .password-toggle .toggle {
  display: none;
}
.form-login .password-wrapper .password-toggle .toggle.active {
  display: block;
}
.form-login .btn {
  margin: 25px auto 15px auto;
  padding: 15px 20px;
  width: fit-content;
  max-width: 100%;
}
.form-login .btn span {
  text-transform: none;
  font-family: "Public Sans";
  font-size: 1.25rem;
}
.form-login a {
  margin: 0 auto;
}
.form-login a span {
  color: white;
  font-family: "Public Sans";
  font-size: 1rem;
}

.password-wrapper {
  position: relative;
}
.password-wrapper .password-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: 0;
  cursor: pointer;
  z-index: 50;
  width: 50px;
  height: 50px;
}
.password-wrapper .password-toggle .toggle {
  display: none;
}
.password-wrapper .password-toggle .toggle.active {
  display: block;
}

.example {
  user-select: none;
}

.documents {
  gap: 30px;
}
.documents span {
  font-size: 1rem;
  font-family: "Public Sans";
  font-weight: 500;
}
.documents span:hover {
  text-decoration: underline;
}
.documents a {
  gap: 20px;
}
.documents svg {
  width: 16px;
  height: 23px;
  color: #F36C21;
}

.activities {
  padding: 35px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.activities .activity-list {
  gap: 40px;
}
.activities h2 {
  padding-bottom: 20px;
  color: #3850B7;
}
.activities h4 {
  margin-bottom: 5px;
}
.activities h5 {
  font-weight: 300;
  font-family: "Public Sans";
  margin-bottom: 15px;
}
.activities .btn {
  width: fit-content;
  padding: 12px 30px;
}
.activities .upcoming-activities, .activities .past-activities {
  gap: 10px;
}
.activities span {
  font-family: "Public Sans";
  font-weight: 300;
}

.activities--future {
  background-color: #f0f6fd;
  min-height: 245px;
}

.activities--past {
  border: 1px solid #3850B7;
}

.people.loading {
  opacity: 0.5;
}

#admin-contacts {
  display: flex;
  flex-wrap: wrap;
}
#admin-contacts .btn {
  padding: 12px 30px;
  width: fit-content;
}

.person {
  padding: 45px;
  gap: 45px;
  align-items: center;
  width: 50%;
}
.person:nth-child(4n+2), .person:nth-child(4n+3) {
  background: #f0f6fd;
}
.person img {
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 120px;
  object-fit: cover;
  border-radius: 50%;
}
.person span {
  font-family: "Public Sans";
  font-size: 1rem;
  font-weight: 300;
}
.person .person__job-title {
  font-size: 1.25rem;
  color: #3850B7;
  font-weight: 600;
  padding-bottom: 5px;
  max-width: 285px;
}
.person .person__name {
  padding-bottom: 11px;
  padding-right: 20px;
}
.person .post {
  gap: 10px;
}
.person .post svg {
  width: 15px;
  height: 15px;
}

.person__info {
  padding-bottom: 30px;
}

.person__content {
  width: 100%;
}

.see-more-employee {
  cursor: pointer;
  width: 30px;
  text-align: end;
}
.see-more-employee .icon {
  transform: scale(1);
  transition: 0.1s;
}
.see-more-employee:hover .icon {
  transform: scale(1.1);
}

.page-template-portail #carriere .section-postes-disponibles {
  padding: 0;
}

@media screen and (max-width: 1620px) {
  .person {
    flex-direction: column;
    gap: 25px;
  }
  .person__content {
    height: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .person:nth-child(4n+2), .person:nth-child(4n+3) {
    background: transparent;
  }
  .person:nth-child(2n) {
    background: #f0f6fd;
  }
}
@media screen and (max-width: 991px) {
  .dashboard__nav {
    display: none;
  }
  .page-template-portail #main {
    padding-top: 175px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard__content h2 {
    text-align: left;
  }
}
@media screen and (max-width: 680px) {
  .dashboard__content {
    padding: 45px 20px;
  }
}
@media screen and (max-width: 550px) {
  .dashboard-header {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 30px;
  }
  .dashboard-header h1 {
    text-align: left;
  }
  .dashboard-header .user {
    display: none !important;
  }
  .dashboard__content h2 {
    font-size: 1.125rem;
    padding-bottom: 30px !important;
  }
  .activities {
    padding: 20px;
  }
  .person {
    padding: 25px;
  }
}
@media screen and (max-width: 420px) {
  .dashboard__content {
    padding: 35px 20px;
  }
}
.person--employee .person__info {
  height: 100%;
  justify-content: space-between;
}
.person--employee .person__name {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  padding-bottom: 0;
}
.person--employee .info svg {
  width: 23px;
  height: 23px;
}
.person--employee .info-1 {
  padding-bottom: 5px;
  position: relative;
  justify-content: space-between;
}
.person--employee .info-1 .name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.person--employee .info-1 div {
  gap: 15px;
}
.person--employee .info-1 svg {
  color: #F36C21;
}
.person--employee .info-1 .icon {
  position: relative;
  padding-left: 10px;
  cursor: pointer;
}
.person--employee .info-1 .icon svg {
  width: 4px;
  height: 17px;
}
.person--employee .info-1 .employee-cta {
  position: absolute;
  right: 0;
  width: 40px;
  text-align: end;
}
.person--employee .info-2 {
  padding-bottom: 40px;
}
.person--employee .info-2 svg {
  color: #3850B7;
}
.person--employee .info-2, .person--employee .info-3 {
  gap: 10px;
  width: fit-content;
}
.person--employee .info-3 span {
  font-weight: 900;
}

.employee-cta {
  height: 24px;
}

.employee__menu {
  transition: 250ms;
  position: absolute;
  background-color: white;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  width: max-content;
  bottom: -115px;
  right: 0;
  opacity: 0;
  pointer-events: none;
}
.employee__menu.is-active {
  opacity: 1;
  pointer-events: auto;
  bottom: -135px;
}
.employee__menu li {
  padding: 10px 15px;
  border-bottom: 1px solid #151838;
  display: flex;
  align-items: center;
  gap: 8px;
}
.employee__menu li span {
  font-size: 0.875rem;
  font-weight: 400;
}
.employee__menu li:nth-last-child(1) {
  border-bottom: none;
}
.employee__menu li .icon {
  display: flex;
  justify-content: center;
  width: 25px;
  padding-left: 0 !important;
}
.employee__menu li#password-reset svg {
  width: 23px;
  height: 25px;
}
.employee__menu li.password-reset .icon svg {
  width: 23px;
  height: 25px;
  transform: scale(1);
  transition: 0.1s;
}
.employee__menu li.password-reset:hover .icon {
  transform: scale(1.1);
}
.employee__menu li.password-reset:hover span {
  color: #3151BE;
}
.employee__menu li#connection .icon {
  transform: scale(1);
  transition: 0.1s;
}
.employee__menu li#connection svg {
  width: 17px;
  height: 18px;
}
.employee__menu li#connection:hover .icon {
  transform: scale(1.1);
}
.employee__menu li#connection:hover span {
  color: #3151BE;
}
.employee__menu li#delete .icon {
  transform: scale(1);
  transition: 0.1s;
}
.employee__menu li#delete svg {
  width: 17px;
  height: 23px;
}
.employee__menu li#delete span {
  color: #F36C21;
}
.employee__menu li#delete:hover .icon {
  transform: scale(1.1);
}
.employee__menu li#delete:hover span {
  color: #D5601F;
}

.modal {
  visibility: hidden; /* Hidden by default */
  opacity: 0;
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden;
  color: #151838;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.modal form {
  margin: 0 auto;
  max-width: 895px;
}
.modal:after {
  content: "";
  background-color: #151838; /* Fallback color */
  opacity: 0.9;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.modal .btn-close {
  transition: 250ms;
  position: absolute;
  right: 35px;
  top: 35px;
  z-index: 10;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.modal .btn-close svg {
  width: 100%;
  height: 100%;
  transform-origin: center;
}
.modal .btn-close:hover svg {
  transition: 250ms;
  transform: rotate(180deg);
}
.modal.modal-form {
  display: inline;
}
.modal.modal-form .form-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding-bottom: 55px;
}
.modal.modal-form .form-intro h4 {
  color: #3151BE;
  text-transform: uppercase;
}
.modal.modal-form .content-wrapper {
  position: relative;
}
.modal.modal-form .form-title, .modal.modal-form .form-employee-details-title {
  font-family: "Public Sans";
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: none;
  text-align: center;
  color: #ffffff;
}
.modal.modal-form .form-title span, .modal.modal-form .form-employee-details-title span {
  color: #ffffff;
}
.modal.modal-form .form-employee-details-title {
  text-transform: uppercase;
}
.modal.modal-form textarea {
  border-radius: 10px !important;
}
.modal.modal-form hr {
  max-width: 135px;
  margin: 40px 0;
}
.modal.modal-form .primary {
  background: transparent;
  border: 2px solid white;
}
.modal.modal-form .primary span {
  color: white;
}
.modal.modal-form .primary:hover {
  border: 2px solid red;
  background-color: red;
}
.modal.modal-form .primary:hover span {
  color: white;
}
.modal .wrapper {
  overflow: hidden;
  background-color: #fff;
  width: calc(100vw - 50px);
  max-width: 1380px;
  height: auto;
}
.modal .close-btn {
  position: absolute;
  right: 0;
  top: -5%;
  background-color: transparent;
  border: none;
}
.modal .close-btn svg {
  overflow: visible;
  cursor: pointer;
}
.modal .close-btn svg:hover line, .modal .close-btn svg:hover circle {
  stroke: #F36C21;
}
.modal .update-password {
  flex-direction: row;
  align-items: center;
}
.modal .update-password label {
  padding: 0px;
  color: #fff;
}
.modal .update-password input {
  margin-right: 10px;
}
.modal .inner__form {
  width: 1120px;
  max-width: 90vw;
  margin: 0 auto;
  background-color: #3151BE;
  border-radius: 20px;
  padding: 75px 40px;
  position: relative;
}
.modal .inner__form .lettre-bleu-bourassa {
  position: absolute;
  bottom: 0;
  left: 0;
}
.modal .inner {
  width: 100%;
  height: 90vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
  box-sizing: content-box; /* So the width will be 100% + 17px */
  position: relative;
  transform: translateX(8px);
}
.modal .inner .form-rdv {
  width: 100%;
}
.modal .the-content {
  margin: 0 0 3rem 0;
}
.modal h1, .modal p, .modal span {
  color: #151838;
}
.modal input, .modal select {
  font-family: "Public Sans";
  font-weight: 300;
  font-size: 1rem;
}
.modal input.disabled, .modal select.disabled {
  pointer-events: none;
}
.modal .select {
  position: relative;
}
.modal .select .dropdown::after {
  content: "";
  background-image: url("../images/dropdown-orange-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0px;
  top: 76%;
  transform: translateY(-50%) translateX(-100%);
}
.modal .select .dropdown.disabled {
  pointer-events: none;
}
.modal .select .dropdown.disabled::after {
  background-image: none;
}
.modal .wrapper-button {
  text-align: center;
  margin: 20px 0px;
}
.modal .wrapper-button .submit-button {
  text-transform: uppercase;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}

.change-password-form.loading .inner__form, .delete-user.loading .inner__form {
  opacity: 0.5;
}
.change-password-form .close-btn, .delete-user .close-btn {
  top: 4%;
  right: 2%;
}
.change-password-form .error-msg, .change-password-form .success-msg, .delete-user .error-msg, .delete-user .success-msg {
  transform: translateX(25px);
}
.change-password-form .inner, .delete-user .inner {
  display: flex;
  align-items: center;
}
.change-password-form .inner .inner__form, .delete-user .inner .inner__form {
  width: fit-content;
}
.change-password-form .inner .inner__form .form-title, .delete-user .inner .inner__form .form-title {
  width: 500px;
  max-width: 100%;
  margin: auto;
}
.change-password-form .inner .inner__form .input-wrapper, .delete-user .inner .inner__form .input-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.change-password-form .inner .inner__form .input-wrapper .form-col, .delete-user .inner .inner__form .input-wrapper .form-col {
  padding: 15px;
}

.delete-user .btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.delete-user .btn-wrapper input {
  font-family: "Public Sans";
  font-weight: 700;
  margin: 15px;
  transition: 0.2s;
}
.delete-user .btn-wrapper .confirm-btn {
  border: 1px solid #F36C21;
}
.delete-user .btn-wrapper .confirm-btn:hover {
  border: 1px solid #D5601F;
  background-color: #D5601F;
}
.delete-user .btn-wrapper .cancel-btn {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.delete-user .btn-wrapper .cancel-btn:hover {
  background-color: #ffffff;
  color: #3151BE;
}

form#create-user label, form#update-user label {
  color: #ffffff;
  font-family: "Public Sans";
  font-weight: 300;
}

.mobile-add-button {
  display: none;
  margin: 0;
  padding: 0 15px;
}
.mobile-add-button button {
  color: #F36C21;
  font-size: 20px;
  background: transparent;
  cursor: pointer;
  display: block;
  text-align: center;
  width: 30px;
  height: 30px;
  border: 1px solid #F36C21;
  border-radius: 30px;
  padding: 0px;
  margin: 0;
  font-family: "Public Sans";
}
.mobile-add-button button:hover {
  color: #D5601F;
}

.liste-employees .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
}
.liste-employees .pagination {
  margin-top: 50px;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
.liste-employees .pagination .pagination__bullet {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Public Sans";
  font-size: 1rem;
  font-weight: 500;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}
.liste-employees .pagination .pagination__bullet p {
  padding: 0px;
}
.liste-employees .pagination .pagination__bullet.active {
  color: #F36C21;
  border: 1px solid #F36C21;
}

.search-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #151838;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  width: 300px;
  max-width: 100%;
}
.search-bar-wrapper .search-bar {
  border: none;
  width: 100%;
}

.to-first-bullet, .previous-bullet {
  transform: scaleX(-1);
}

.to-first-bullet svg, .previous-bullet svg, .to-last-bullet svg, .next-bullet svg {
  width: 15px;
  height: 15px;
  cursor: pointer;
  transform: translateY(2px);
}
.to-first-bullet svg path, .previous-bullet svg path, .to-last-bullet svg path, .next-bullet svg path {
  transition: 0.1s;
}
.to-first-bullet svg:hover path, .previous-bullet svg:hover path, .to-last-bullet svg:hover path, .next-bullet svg:hover path {
  fill: #F36C21;
}

.psw-change-message {
  color: red;
  font-weight: 800;
  margin-bottom: 20px;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.search-order {
  gap: 10px;
  justify-content: right;
}

.employee-order {
  position: relative;
}
.employee-order #employee-order {
  border: 1px solid #3151BE;
  border-radius: 10px;
  position: relative;
  height: 41px;
  font-size: 1rem !important;
  padding: 0 15px !important;
  width: 175px;
  max-width: 100%;
  z-index: 1;
}
.employee-order::after {
  content: "";
  position: absolute;
  background-image: url(../images/Petite-Fleche.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

#pay-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

#update-email input[name=current-email] {
  pointer-events: none;
  color: rgba(21, 24, 56, 0.6901960784);
}

@media screen and (max-width: 1550px) {
  .section-carriere .link-with-arrow span {
    max-width: calc(70% - 25px);
  }
  #accueil .section-information .bande2 {
    z-index: 5;
    top: -33%;
    left: 1%;
  }
  #accueil .section-information .bande3 {
    top: -32%;
    left: 15%;
  }
  #poste-disponible .section-details {
    padding: 250px 5% 150px;
  }
}
@media screen and (max-width: 1400px) {
  h1 {
    font-size: 100px;
  }
  #accueil .bloc-fond-bleu .section-avantages {
    width: 90%;
  }
  .dashboard__content .partager {
    display: none;
  }
  .section-carriere .col-liste-categories ul li.active-category #image-personne {
    left: -5%;
    transform: scale(2.2);
    -webkit-transform: scale(2.2);
  }
  #entreposage .section-etapes-service .fond-bleu .square-feet-available svg {
    transform: translateY(0%);
  }
  #entreposage .section-explications .col-storage-types ul li {
    width: 45%;
    margin-bottom: 30px;
  }
  .section-carriere .col-liste-categories ul li #image-personne {
    transform: scale(2.4);
  }
  #poste-disponible .banniere-postuler .col-content {
    padding: 225px 100px;
  }
}
@media screen and (max-width: 1300px) {
  #accueil .image-fond-carte {
    background-size: cover;
  }
  #transport .section-remorques {
    background-size: cover;
  }
  #entreposage .section-etapes-service {
    background-size: cover;
  }
}
@media screen and (max-width: 1200px) {
  .banner2 .color-top {
    padding: 250px 0px 0px 0px;
  }
  .banner2 .color-top .col-image {
    margin-left: auto;
  }
  #accueil .section-societes .society-text {
    width: 100%;
  }
  .menu-header a img {
    width: 200px;
  }
  #demande-taux .form-section2 .col-checkbox {
    justify-content: left;
  }
  #demande-taux .form-section3 .row-single-dimension {
    gap: 20px;
    justify-content: space-between;
  }
  #carriere .section-banner .col-content {
    margin-top: 0px;
    padding-bottom: 0px;
  }
  #carriere .section-postes-disponibles {
    padding: 200px 5%;
  }
  #carriere .section-postes-disponibles .department-list .row-single-job {
    border-left: 1px solid #151838;
    border-right: 1px solid #151838;
    border-bottom: 1px solid #151838;
  }
  #carriere .section-postes-disponibles .department-list .row-single-job .col-nom {
    padding: 30px;
    border-top: 1px solid #151838;
    border-bottom: 1px solid #151838;
  }
  #carriere .section-postes-disponibles .department-list .row-single-job .col-ville {
    border-left: none;
    border-right: none;
  }
  #carriere .section-postes-disponibles .department-list .row-single-job .col-socials {
    border-left: 1px solid #151838;
    margin: -1px 0px;
    padding: 35px 0px;
  }
  #carriere .section-candidature .col-content {
    gap: 30px;
    width: 90%;
  }
  .section-carriere {
    gap: 50px;
  }
  .section-carriere .col-gauche {
    flex-direction: column;
    text-align: center;
  }
  .section-carriere .col-gauche .content {
    border-left: none;
    padding-left: 0px;
  }
  .section-carriere .col-gauche .content h2 {
    margin: 20px 0px;
    width: 100%;
  }
  .section-carriere .career-link {
    justify-content: center;
  }
  #a-propos .section-avantages .col-content h2 {
    width: 100%;
  }
  #entreposage .section-etapes-service .fond-bleu .square-feet-available svg {
    transform: translateY(50%);
  }
  .carousel-video ul li {
    width: 45% !important;
  }
  .section-etapes-service .service-steps-link {
    justify-content: center;
  }
  .section-etapes-service .fond-bleu .square-feet-available svg {
    transform: translateY(0%);
  }
  #transport .section-remorques {
    margin-top: 0;
  }
  #transport .section-remorques .section-autres-services ul .single-service {
    width: 100%;
  }
  #transport .section-information .col-content {
    padding-bottom: 0;
  }
  #transport .section-services .col-top img {
    width: 100%;
  }
  #transport .liste-outils a li {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes {
    gap: 50px;
    width: 100%;
    padding: 100px 0px;
    margin-bottom: 100px;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes .col-image-lien {
    position: relative;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes .col-image-lien.top {
    display: none;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes .col-image-lien.bottom {
    display: block;
    max-width: 100%;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes .col-image-lien.bottom .col-image {
    margin: auto;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes .col-image-lien.bottom .col-lien {
    text-align: center;
  }
  #entreposage .section-etapes-service .fond-bleu .col-lien-contact {
    padding-top: 50px;
  }
  #entreposage .section-explications .col-content, #entreposage .section-explications .col-image {
    width: 100%;
  }
  #entreposage .section-explications .col-storage-types {
    padding: 0px;
  }
  #poste-disponible .banniere-postuler .col-image {
    height: 450px;
  }
  .person {
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .dashboard-form .form-col--half {
    width: 100%;
  }
  .initiatives .wrapper .row .col-12:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .col-12:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .col-12:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right:first-child:before {
    max-width: 150px;
    max-height: 150px;
  }
}
@media screen and (max-width: 1024px) {
  #accueil .bloc-fond-bleu .section-avantages .perk-list {
    width: 100%;
    margin: 50px auto;
  }
  #accueil .bloc-fond-bleu .section-avantages .perk-list li {
    padding: 20px;
    width: 100%;
    border-top: 1px solid #F36C21;
    border-bottom: 1px solid #F36C21;
    margin-top: -1px;
  }
  #accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-1::after {
    background: none;
  }
  #accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-1::before {
    background: none;
  }
  #accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-3::after {
    background: none;
  }
  #accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-3::before {
    background: none;
  }
  #accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-4::before {
    background: none;
  }
  #accueil .bloc-fond-bleu .section-avantages .perk-list .list-item-6::before {
    background: none;
  }
  #accueil .bloc-fond-bleu #image-droite {
    display: none;
  }
  .section-carriere {
    width: 100%;
  }
  .section-carriere .col-liste-categories ul li.active-category #image-personne {
    left: -5%;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
  }
  #a-propos .section-citation .filtre-bleu .col-paragraph1 h3 {
    width: 100%;
  }
  #a-propos .section-services {
    width: 90%;
  }
  #transport .section-services {
    width: 90%;
  }
  #transport .section-remorques .fond-bleu {
    padding: 300px 5% 150px;
  }
  #transport .section-remorques .fond-bleu ul li {
    width: 45%;
  }
  #transport .section-carte .col-selecteur button {
    width: 100%;
    height: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 991px) {
  #header {
    min-height: 13%;
  }
  header.shrink .menu-header img {
    width: 200px;
  }
  .banner1 .title2 {
    text-align: center;
  }
  #accueil .single-icon {
    display: none;
  }
  #accueil .splide-front-page .splide__track {
    border-radius: 0px;
  }
  #accueil .splide-front-page .splide__arrows {
    top: 82vw;
    width: 100%;
  }
  #accueil .section-information {
    padding: 0px;
  }
  #accueil .section-information .row-a-propos .image-gauche {
    padding: 0px;
  }
  #accueil .section-information .row-a-propos .col-image img {
    border-radius: 0px;
  }
  #accueil .section-information .row-a-propos .col-about {
    padding: 50px 0 0;
  }
  #accueil .section-information .row-a-propos .col-about .row-subject .col-button span {
    width: 100%;
    justify-content: center;
  }
  #accueil .section-information .row-a-propos .col-about .col-inner {
    max-width: 90%;
  }
  #accueil .bloc-fond-bleu {
    padding: 50px 0px;
  }
  #accueil .splide-front-page.desktop {
    display: none;
  }
  #accueil .splide-front-page.mobile {
    display: block;
  }
  #accueil .splide-front-page .splide__arrows .splide__arrow:hover path {
    fill: #F36C21;
  }
  #a-propos .section-avantages {
    padding: 50px 0px;
  }
  #a-propos .section-avantages .col-image {
    height: 450px;
    border-radius: 0px;
  }
  #transport .section-services .col-top .col-image {
    text-align: center;
  }
  #transport .section-services .col-top .col-image svg {
    width: 60%;
    margin: auto;
  }
  #transport .section-autres-services ul {
    width: 80%;
    margin: auto;
  }
  #entreposage .section-explications .col-storage-types ul li .layer1 .learn-more {
    display: block;
  }
  .section-carriere {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .section-carriere .col-liste-categories ul li {
    width: 48%;
  }
  .section-carriere .col-liste-categories ul li .gradient-background {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .section-carriere .col-liste-categories ul li h3 {
    font-family: "Public Sans";
    text-transform: uppercase;
    font-weight: 800;
    position: absolute;
    bottom: 0px;
    left: 10%;
    z-index: 6;
    bottom: 30px;
  }
  .section-carriere .col-liste-categories ul li .toptitle {
    margin-bottom: 30px;
    display: block;
    font-size: 1.375rem;
  }
  .section-carriere .col-liste-categories ul li .title {
    writing-mode: initial;
    justify-self: start;
    margin-bottom: 0px;
    transform: none;
    font-size: 1.375rem;
  }
  .section-carriere .col-liste-categories ul li #image-lettre svg {
    display: block;
  }
  .section-carriere .col-liste-categories ul li #image-personne {
    top: 0%;
    left: -5%;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
  }
  .section-carriere .col-liste-categories ul li.active-category {
    width: 48%;
  }
  .section-carriere .gradient-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  #header .wrapper > nav {
    display: none;
  }
  #header .mobile-nav-trigger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45px;
    height: 22px;
    pointer-events: all;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #header .mobile-nav-trigger span {
    width: 45px;
    height: 4px;
    display: block;
    background: white;
    flex: 0 0 auto;
    transform-origin: center;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #header .mobile-nav-trigger span:nth-child(1) {
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    transition: all 0.3s ease-in-out;
  }
  #header .mobile-nav-trigger span:nth-child(2):before, #header .mobile-nav-trigger span:nth-child(2):after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    transition: all 0.3s ease-in-out;
  }
  #header .mobile-nav-trigger span:nth-child(3) {
    transform: translateY(3px);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger:hover span:nth-child(2) {
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger:hover span:nth-child(1), #header .mobile-nav-trigger:hover span:nth-child(3) {
    transform: translateY(0px);
  }
  #header.active .mobile-nav-trigger span:nth-child(1) {
    transform: translateY(13px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(3) {
    transform: translateY(-13px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    background: transparent;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2):before {
    transform: rotateZ(135deg);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header.active .mobile-nav-trigger span:nth-child(2):after {
    transform: rotateZ(225deg);
    transition: all 0.3s ease-in-out 0.3s;
  }
  .mobile-nav-trigger, #mobile-nav {
    display: block;
  }
  #mobile-nav {
    position: fixed;
    z-index: 10;
    top: 0px;
    right: 0;
    width: 100%;
    max-width: 250px;
    height: 100vh;
    overflow-x: scroll;
    padding-top: 140px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: start;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    transform: translateX(100%);
    -webkit-box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
  }
  #mobile-nav > ul {
    width: calc(100% - 40px);
    text-align: left;
  }
  #mobile-nav > ul li {
    margin-bottom: 20px;
  }
  #mobile-nav > ul li a {
    display: inline-block;
    position: relative;
    color: white;
    font: bold 18px Arial, sans-serif;
    padding: 5px 0px;
    transition: all 0.3s ease-in-out;
  }
  #mobile-nav > ul li.socials-container {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 17px;
  }
  #mobile-nav > ul li.socials-container p {
    padding: 5px 0px;
    color: white;
    font: bold 18px Arial, sans-serif;
  }
  #mobile-nav > ul li.socials-container a {
    padding: 0 10px 0 0px;
  }
  #mobile-nav > ul li.socials-container a svg {
    width: 30px;
  }
  #mobile-nav > ul li.socials-container a svg path {
    fill: white;
    transition: all 0.3s ease-in-out;
  }
  #mobile-nav > ul li.socials-container a:hover svg {
    max-width: 100%;
  }
  #mobile-nav > ul li.socials-container a:hover svg path {
    fill: black;
  }
  #mobile-nav.active {
    transform: translateX(0);
    pointer-events: all;
    opacity: 1;
  }
  #mobile-nav .mobile-top-bar .sub-menu {
    display: none;
  }
  #mobile-nav .is-button {
    padding: 8px 20px;
    background-color: transparent;
  }
  #mobile-nav .is-button a {
    font-size: 1rem;
  }
  #demande-taux {
    padding: 150px 0px 100px;
  }
  #demande-taux .form-title {
    position: relative;
  }
  #demande-taux .row-espace {
    gap: 20px;
  }
  #demande-taux .col-extension, #demande-taux .col-phone, #demande-taux .col-province, #demande-taux .col-zip-code, #demande-taux .col-title, #demande-taux .col-checkbox, #demande-taux .col-city, #demande-taux .col-province, #demande-taux .col-zip-code, #demande-taux .col-qty, #demande-taux .col-length, #demande-taux .col-width, #demande-taux .col-height, #demande-taux .col-nombre-commodites, #demande-taux .col-type-commodite, #demande-taux .col-type, #demande-taux .col-weight, #demande-taux .col-space, #demande-taux .col-palettes, #demande-taux .col-recap-palettes, #demande-taux .col-recap-others, #demande-taux .row-comments, #demande-taux .col-contact-details, #demande-taux .col-sender-details, #demande-taux .col-consignee-details {
    padding: 0px;
  }
  #demande-taux .form-section1, #demande-taux .form-section2, #demande-taux .form-section3, #demande-taux .form-section4 {
    width: 90%;
  }
  #demande-taux .form-section2 .row-forms {
    gap: 50px;
  }
  #demande-taux .form-section2 .date-input p {
    color: #000000;
  }
  #demande-taux .form-section2 .radio-row {
    gap: 20px;
  }
  #demande-taux .form-section2 .radio-row .col-options {
    gap: 20px;
  }
  #demande-taux .form-section3 .row-single-commodite {
    gap: 20px;
  }
  #demande-taux .form-section4 .col-contact-details, #demande-taux .form-section4 .col-sender-details, #demande-taux .form-section4 .col-consignee-details {
    margin-bottom: 40px;
  }
  #demande-taux .row-steps-number {
    padding: 75px 0px;
  }
  #demande-taux .row-steps-number .step1::before, #demande-taux .row-steps-number .step2::before, #demande-taux .row-steps-number .step3::before {
    width: 20vw;
  }
  #demande-taux .row-steps-number .step1.done::after, #demande-taux .row-steps-number .step2.done::after, #demande-taux .row-steps-number .step3.done::after {
    width: 20vw;
  }
  .dashboard-form .form-col--half {
    width: 100%;
  }
  .desktop-logout {
    display: none;
  }
  #carriere .cv-trash img {
    transform: translateY(0%);
  }
  .carousel-video ul li {
    width: 100% !important;
  }
  #poste-disponible .section-details {
    padding: 150px 5% 100px;
    gap: 50px;
  }
  #poste-disponible .banniere-postuler {
    padding: 0px;
  }
  #poste-disponible .section-autres-postes {
    padding: 100px 0px;
  }
  #poste-disponible .section-autres-postes .carousel-video {
    margin-top: 0px;
  }
  #blogue ul li a {
    gap: 50px;
  }
  #blogue .section-liste-blogues .pagination .pagination__bullet {
    margin-top: 20px;
  }
  .row, form .gform_body .gform_fields, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address {
    margin: 0px;
  }
  .row.gutter-100, form .gform_body .gutter-100.gform_fields, form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address {
    margin: 0px;
  }
  #mobile-nav > ul #menu-item-829 {
    margin-bottom: 0px;
  }
  .mobile-add-button {
    display: flex;
  }
  .liste-employees .header-wrapper {
    flex-wrap: wrap;
  }
  .liste-employees .header-wrapper #employee-title {
    padding-bottom: 20px;
  }
  .liste-employees .header-wrapper .search-bar-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
  .search-order {
    justify-content: left;
  }
  #footer .image-box img {
    width: 20px;
    max-width: 100%;
  }
  .sticky-box-button {
    width: fit-content;
  }
  .privacy-policy #main, .page-id-3012 #main, .page-id-3026 #main {
    padding: 150px 0 50px 0;
  }
  .privacy-policy h2, .page-id-3012 h2, .page-id-3026 h2 {
    text-align: left;
  }
  .mobile-pay-btn {
    display: block;
  }
  .initiatives .wrapper .row .col-12:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .col-12:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .col-12:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right:first-child:before {
    top: -50px;
  }
}
@media screen and (max-width: 768px) {
  p {
    text-align: left;
  }
  h1 {
    text-align: center;
    font-size: 3.75rem;
  }
  h2 {
    font-size: 1.875rem;
    text-align: center;
  }
  .surtitre-bleu {
    text-align: center;
  }
  .banner1 .color-top {
    text-align: center;
    padding: 150px 5% 100px;
  }
  .banner1 .color-top.english {
    padding: 150px 5% 100px;
  }
  .banner1 .col-paragraph {
    margin: auto;
    text-align: center;
  }
  .banner1 .col-socials {
    display: none;
  }
  .orange-top-title {
    text-align: center;
  }
  .banner2 .color-top {
    padding: 200px 0px 0px;
  }
  .banner2 .color-top .col-content {
    padding-right: 5%;
  }
  .banner2 .color-top .col-content h1 {
    font-size: 50px;
  }
  .banner2 .color-top .col-image {
    border-radius: 0px;
    background-size: cover;
    height: 450px;
  }
  #accueil .splide-front-page .splide__track {
    transform: translateX(0);
  }
  #accueil .splide-front-page .splide__arrows {
    top: 80vw;
  }
  #accueil .splide-front-page .splide__slide {
    border: 0px;
  }
  #accueil .section-information .bande {
    display: none;
  }
  #accueil .section-information .row-a-propos ul {
    padding: 20px 0px;
  }
  #accueil .section-information .row-a-propos ul li {
    background-color: #D5601F;
    border-radius: 20px;
    margin: 5px 0px;
    overflow: hidden;
  }
  #accueil .section-information .row-a-propos ul li .row-subject {
    border-top: none !important;
    border-bottom: none !important;
  }
  #accueil .section-information .row-a-propos ul li .row-subject:hover {
    background-color: transparent !important;
  }
  #accueil .section-information .row-a-propos ul li h4, #accueil .section-information .row-a-propos ul li p {
    color: #ffffff;
    margin-bottom: 10px;
  }
  #accueil .section-information .row-a-propos ul li p, #accueil .section-information .row-a-propos ul li span {
    display: block !important;
    color: #ffffff;
  }
  #accueil .section-information .row-a-propos ul li .col-image {
    margin-bottom: 20px;
  }
  #accueil .section-information .row-a-propos ul li path {
    fill: #fff;
  }
  #accueil .bloc-fond-bleu .section-avantages {
    text-align: center;
  }
  #accueil .bloc-fond-bleu .section-avantages .bloc-text {
    text-align: left;
  }
  #accueil .bloc-fond-bleu .section-avantages .perk-list li {
    padding: 30px;
  }
  #accueil .bloc-fond-bleu .section-avantages .perk-list li .list-item-text h4 {
    margin-bottom: 0px;
  }
  #accueil .bloc-fond-bleu .section-avantages .perk-list li:hover h2 {
    color: transparent !important;
  }
  #accueil .bloc-fond-bleu .section-avantages h2 {
    max-width: 100%;
  }
  #accueil .bloc-fond-bleu .section-couverture {
    padding-bottom: 0px;
  }
  #accueil .bloc-fond-bleu .section-couverture .link-with-arrow::after {
    margin-left: 0px;
    transform: translateX(5px);
  }
  #accueil .section-societes {
    width: 90%;
    padding: 50px 0;
  }
  #accueil .section-societes h2 {
    font-size: 1.875rem;
  }
  #accueil .section-societes .society-text {
    padding-bottom: 0px;
  }
  #accueil .titre-avantage {
    font-size: 12vw;
  }
  #accueil .surtitre-bleu {
    display: block;
  }
  .banner1 .title2 {
    -webkit-text-stroke: 1px #F36C21;
  }
  .link-with-arrow::after {
    position: relative;
    top: 0px;
    left: 10px;
    transform: translateX(-50%);
  }
  .link-with-arrow:hover::after {
    left: 20px;
  }
  .link-with-arrow span {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .link-with-arrow-previous::before {
    position: relative;
    top: 0px;
    margin-left: 20px;
  }
  .link-with-arrow-previous:hover::before {
    margin-right: 22px;
  }
  .link-with-arrow-previous span {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .banner2 .color-top .col-image {
    margin: auto;
    border-radius: 20px;
    background-position: unset;
  }
  .banner2 .color-top .col-image .border-orange {
    border: none;
  }
  .section-carriere {
    gap: 20px;
  }
  .section-carriere .col-liste-categories ul li #image-personne {
    left: -5%;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
  }
  .section-carriere .col-liste-categories ul li .title, .section-carriere .col-liste-categories ul li .toptitle {
    text-shadow: 3px 2px 5px #000;
  }
  .section-carriere .col-liste-categories ul li .toptitle.en {
    margin-bottom: 0px;
  }
  .section-carriere .col-liste-categories ul li .title.en {
    margin-bottom: 30px;
  }
  .section-carriere .col-liste-categories ul li.active-category {
    width: 100%;
  }
  #a-propos .banner2 .color-top .col-image {
    background-position: 90%;
  }
  #a-propos .bande {
    display: none;
  }
  #a-propos .section-mission {
    padding-bottom: 50px;
  }
  #a-propos .section-mission h2 {
    width: 100%;
    text-align: center;
  }
  #a-propos .section-mission .mission-text {
    width: 100%;
  }
  #a-propos .section-avantages {
    gap: 50px;
  }
  #a-propos .section-avantages .col-content {
    padding: 0px 5%;
  }
  #a-propos .section-avantages .col-content h2 {
    text-align: center;
  }
  #a-propos .section-citation .filtre-bleu {
    padding: 50px 0px 50px;
  }
  #a-propos .section-citation .filtre-bleu .col-paragraph1 h3 {
    font-size: 1.25rem;
    line-height: 40px;
  }
  #a-propos .section-citation .filtre-bleu p {
    width: 100%;
    padding-left: 10%;
    margin-top: 50px;
  }
  #a-propos .section-citation .filtre-bleu .bourassa-bas-de-page {
    display: none;
  }
  #a-propos .section-services {
    padding: 50px 0px;
  }
  #a-propos .section-services h2 {
    width: 100%;
    text-align: center;
    font-size: 1.875rem;
  }
  #a-propos .section-services ul li {
    height: 450px;
  }
  #a-propos .section-services ul li .service-single {
    height: 25%;
  }
  #a-propos .section-services ul li .service-single span::after {
    transform: translateX(400%);
  }
  .banner1 .banner-content-wrapper .white-lines {
    display: none;
  }
  .link-with-arrow-previous span::before {
    display: none;
  }
  .link-with-arrow-previous span::after {
    content: "";
    background-image: url("../images/Bouton-fleche-light-blue.svg");
    background-repeat: no-repeat;
    background-size: 25px 25px;
    width: 25px;
    height: 25px;
    position: relative;
    transform: translateX(-50%);
    top: 0px;
    left: 50%;
    transition: 0.2s;
    transform: scale(-1) translateX(50%);
  }
  .link-with-arrow-previous span:hover::after {
    left: 48%;
  }
  #carriere .section-banner .col-image {
    height: 450px;
  }
  #carriere .section-banner .col-boutons {
    justify-content: center;
  }
  #carriere .section-postes-disponibles {
    padding: 150px 5% 50px;
  }
  #carriere .section-postes-disponibles .department-name {
    font-size: 1.125rem;
  }
  #carriere .section-postes-disponibles .col-titre {
    justify-content: center;
  }
  #carriere .section-postes-disponibles .department-list {
    margin-bottom: 0;
  }
  #carriere .section-postes-disponibles .department-list .row-departement {
    gap: 0;
  }
  #carriere .section-postes-disponibles .department-list .row-single-job .is-button {
    padding: 10px 30px;
  }
  #carriere .section-postes-disponibles .department-list .row-single-job .col-ville {
    padding: 69px 5px;
  }
  #carriere .section-postes-disponibles .department-list .row-single-job .col-socials .socials {
    gap: 10px;
  }
  #carriere .section-postes-disponibles .department-list .row-single-job .col-socials p {
    display: none;
  }
  #carriere .section-avantages {
    padding: 100px 5%;
  }
  #carriere .section-avantages h2 {
    text-align: center;
  }
  #carriere .section-avantages .liste-avantages li {
    width: 40%;
  }
  #carriere .section-candidature {
    padding: 100px 0px;
  }
  #carriere .section-candidature .col-content .col-informations {
    padding: 0px;
  }
  #carriere .section-candidature .col-content .candidacy-title {
    margin: auto;
    width: 100%;
  }
  #carriere .section-candidature .col-formulaire {
    padding: 100px 20px;
  }
  #carriere .section-candidature .col-formulaire h2 {
    margin: 0 auto 50px;
  }
  #transport .section-services {
    padding-top: 175px;
    padding-bottom: 50px;
  }
  #transport .section-services .col-top {
    gap: 0;
  }
  #transport .section-services .liste-outils {
    flex-wrap: wrap;
    padding-bottom: 0px;
  }
  #transport .section-services .liste-outils.mobile {
    display: flex;
    padding-top: 0;
  }
  #transport .section-services .liste-outils.desktop {
    display: none;
  }
  #transport .section-services .liste-outils a {
    width: 100%;
    border: none;
    border-top: 1px solid #3151BE;
    border-bottom: 1px solid #3151BE;
    margin: -0.5px 0px;
  }
  #transport .section-remorques .fond-bleu {
    padding: 50px 5%;
  }
  #transport .section-remorques .section-autres-services {
    padding: 0px 0px;
  }
  #transport .section-remorques .section-autres-services ul .single-service {
    background-size: contain;
    background-position: top;
    height: fit-content;
    min-height: 900px;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content {
    background-color: #D5601F;
    height: 70%;
    gap: 0;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .description {
    display: none;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .service-name {
    top: 0;
    transform: none;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .service-name h3 {
    font-size: 22px;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .text-toggle {
    display: block;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .text-toggle p {
    width: 100%;
    top: 15%;
    font-size: 20px;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .btn-wrapper {
    max-width: 100%;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .btn-wrapper a {
    position: relative;
    width: fit-content;
    bottom: 0px;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .btn-wrapper a::after {
    position: absolute;
    right: 0px;
    left: unset;
    top: 50%;
    transform: translateX(35px) translateY(-50%);
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .btn-wrapper a span {
    text-align: left;
    white-space: nowrap;
  }
  #transport .section-carte {
    padding: 50px 5% 0px;
    width: 95%;
  }
  #transport .section-carte .col-map {
    margin-bottom: 0px;
  }
  #transport .section-carte .col-map #us-map svg, #transport .section-carte .col-map #ca-map svg {
    width: 100%;
  }
  #demande-taux input[type=radio], #demande-taux input[type=checkbox] {
    transform: scale(0.5);
  }
  #demande-taux .form-section2 .col-radio-title {
    text-align: center;
  }
  #demande-taux .form-section2 .col-options {
    justify-content: center;
    flex-wrap: wrap;
  }
  #demande-taux .form-section3 .trailer-title {
    margin-bottom: 20px;
  }
  #demande-taux .form-section3 .fee {
    width: 100%;
  }
  #demande-taux .ajouter {
    transform: translateX(16%);
  }
  .login-section {
    width: 90%;
    margin: auto;
  }
  .gform-address-change #gform_submit_button_6 {
    margin: auto;
  }
  #update-email .btn.primary, #change-password .btn.primary {
    margin: auto;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes {
    padding: 50px 5%;
    margin-bottom: 0px;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li {
    gap: 20px;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li .col-content {
    padding-top: 10px;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li .col-fleche {
    transform: translateX(-15px);
  }
  #entreposage .section-etapes-service .fond-bleu .square-feet-available {
    display: none;
  }
  #entreposage .section-etapes-service .fond-bleu .square-feet-text {
    display: none;
  }
  #entreposage .section-etapes-service .fond-bleu .splide-storage {
    padding: 50px 0px;
  }
  #entreposage .section-etapes-service .fond-bleu .splide-storage li {
    width: 97% !important;
    border-radius: 30px;
    overflow: hidden;
  }
  #entreposage .section-etapes-service .fond-bleu .splide-storage li img {
    border-radius: 0px;
  }
  #entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--prev, #entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--next {
    transform: translateY(100px);
  }
  #entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--prev:hover::after, #entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows .splide__arrow--next:hover::after {
    background-image: url(../images/Bouton-Fleche-blanche.svg);
  }
  #entreposage .section-etapes-service .fond-bleu .col-lien-contact {
    padding: 50px 5%;
  }
  #entreposage .section-etapes-service .fond-bleu .col-lien-contact .boite {
    display: none;
  }
  #entreposage .section-etapes-service .col-image-lien.bottom .col-image {
    text-align: center;
  }
  #entreposage .section-etapes-service .col-image-lien.bottom .col-image img {
    width: 80px;
    margin: auto;
    margin-top: 50px;
  }
  #entreposage .section-explications {
    width: 90%;
    padding: 50px 0px;
  }
  #entreposage .section-explications .bande {
    display: none;
  }
  #entreposage .section-explications .col-content {
    padding: 0px 5%;
  }
  #entreposage .section-explications .col-image {
    padding: 50px;
  }
  #entreposage .section-explications .col-storage-types {
    padding: 50px 0px;
  }
  #entreposage .section-explications .col-storage-types ul {
    gap: 20px;
  }
  #entreposage .section-explications .col-storage-types ul li {
    width: 100%;
  }
  #entreposage .section-explications .col-storage-types ul li:hover {
    transform: none;
  }
  #documents-utiles .section-documents-list {
    padding: 175px 10% 100px;
  }
  #contact .banner2 .color-top .col-image {
    background-position: center;
  }
  #contact .section-contactez-nous {
    padding: 200px 5% 50px;
  }
  #contact .section-contactez-nous .contact-us-text {
    margin: 40px auto;
  }
  #contact .section-contactez-nous .address-list li {
    border: none;
  }
  #contact .section-formulaire {
    padding: 0px 2.5% 100px;
  }
  #contact .section-formulaire .col-form {
    padding: 40px 20px;
  }
  #contact .section-formulaire .col-form h2 {
    font-size: 1.875rem;
  }
  #contact .section-formulaire .col-form .gform_button span {
    transform: translateX(-15px);
  }
  #contact #contact .section-carte .google-map {
    height: 350px;
  }
  #carriere .banner2 .color-top .col-image {
    background-position: right;
  }
  #carriere .section-avantages .bourassa-vertical {
    opacity: 0.2;
  }
  #carriere .section-candidature #field_1_12 {
    margin-bottom: 0px;
  }
  #carriere .section-candidature .col-formulaire #gform_submit_button_1 {
    margin: auto;
    transform: translateX(-15px);
  }
  #carriere .section-candidature .col-formulaire #field_1_12 .gfield_label {
    margin: 25px 0px 12px;
  }
  #poste-disponible .banner2 .color-top .col-image {
    bottom: -50px;
  }
  #poste-disponible .section-details {
    padding: 150px 0px 100px;
  }
  #poste-disponible .color-top .col-boutons {
    justify-content: center;
    gap: 10px;
    margin-left: 20px;
  }
  #poste-disponible .color-top .col-content .subtitle {
    text-align: center;
  }
  #poste-disponible .color-top .col-content h1 {
    margin: auto;
  }
  #poste-disponible .banniere-postuler .col-content {
    padding: 100px 5%;
    text-align: center;
  }
  #poste-disponible .banniere-postuler .col-content h2 {
    font-size: 1.875rem;
    margin: auto;
  }
  #poste-disponible .banniere-postuler .col-content p {
    margin: 40px auto;
  }
  #poste-disponible .section-details p {
    text-align: center;
  }
  #poste-disponible .section-details .left-button {
    margin: auto;
  }
  #poste-disponible .section-details .col-boite .sticky-box {
    padding: 50px 20px;
    text-align: center;
  }
  #poste-disponible .section-details .col-boite .sticky-box ul li {
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    align-items: center;
  }
  #poste-disponible .section-details .col-boite .sticky-box-button {
    margin: auto;
  }
  #poste-disponible .section-autres-postes {
    padding-bottom: 175px;
  }
  #poste-disponible .apply-btn.left-button, #poste-disponible .apply-btn.right-button {
    margin: auto;
  }
  .carousel-video {
    margin-top: 100px;
  }
  .carousel-video .titre-video {
    text-align: center;
    font-size: 1.875rem;
  }
  .carousel-video ul li .video-single .col-bouton-lien span {
    display: block;
    color: transparent;
  }
  .carousel-video ul li .video-single h3 {
    font-size: 1.125rem;
  }
  #blogue .section-liste-blogues {
    width: 90%;
  }
  #blogue .section-liste-blogues .pagination {
    margin: 0;
  }
  #blogue .col-select {
    justify-content: space-between;
    gap: 50px;
  }
  #blogue .col-select .select-wrapper .select-box {
    width: 175px;
  }
  #blogue ul {
    padding-top: 50px;
  }
  #blogue ul li a .col-content .blog-top-title {
    text-align: center;
  }
  #blogue ul li a .col-content .blog-title {
    font-size: 1.875rem;
  }
  #blogue ul li a .col-image {
    height: 400px;
  }
  .share-btn {
    transform: translateY(30%);
  }
  .share-btn h4 {
    width: 100%;
  }
  .row.gutter-100 > div[class*=col-], form .gform_body .gutter-100.gform_fields > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-] {
    padding: 0px;
  }
  .row.gutter-50, form .gform_body .gutter-50.gform_fields, form .gform_body .gform_fields .gfield .gutter-50.ginput_container.ginput_container_address {
    margin: 0px;
  }
  .text-defilez {
    display: none;
  }
  .splide__track {
    padding: 0% !important;
    transform: translateX(-1%);
  }
  #article .banner2 .color-top .col-image {
    height: 300px;
    bottom: -25px;
  }
  #article .share-btn {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 50px;
  }
  #article .share-wrapper {
    transform: translateX(-18px);
  }
  #article .color-top .col-content .blog-top-title {
    text-align: center;
  }
  #article .titre-article {
    text-align: center;
  }
  #article .section-contenu1 {
    width: 90%;
    padding: 100px 0px;
  }
  #article .section-citation {
    padding: 100px 0px;
  }
  #article .section-citation h3 {
    font-size: 30px;
  }
  #article .section-contenu2 {
    padding: 0px;
    width: 100%;
  }
  #article .section-contenu2 .col-image {
    height: 450px;
    border-radius: 0px;
  }
  #article .section-contenu2 .col-content {
    padding: 50px 5%;
  }
  #article .section-boutons-bottom {
    padding: 0px 10% 50px;
    justify-content: center;
    gap: 40px;
    transform: translateY(-50px);
  }
  #demande-taux .link-with-arrow-previous span::after {
    display: none;
  }
  #demande-taux .form-confirmation {
    padding: 100px 10%;
    position: relative;
  }
  .modal .close-btn {
    right: -5px;
  }
  .modal .inner__form {
    padding: 75px 20px;
  }
  #footer .col-phone {
    width: 100%;
  }
  #footer .image-box {
    transform: translateX(-20px);
  }
  #footer .image-box img {
    width: 40px;
    max-width: 100%;
  }
  #footer .footer-arrow {
    display: block;
  }
  .copyrights {
    width: 215px;
  }
  #rubik-api-copyright {
    width: 100%;
    justify-content: center;
  }
  #sidebar {
    display: none;
  }
  .initiatives {
    padding: 50px 0 50px;
  }
  .initiatives .wrapper .row .col-12:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .col-12:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .col-12:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left:first-child:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right:first-child:before, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child:before, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child:before, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right:first-child:before {
    display: none;
  }
  .initiatives .wrapper .row .col-12 h2, .initiatives .wrapper form .gform_body .gform_fields .col-12 h2, form .gform_body .initiatives .wrapper .gform_fields .col-12 h2, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 h2, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full h2, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full h2, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full h2, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full h2, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left h2, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left h2, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left h2, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left h2, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right h2, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right h2, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right h2, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right h2 {
    font-size: 1.875rem;
    margin-inline: auto;
  }
  .initiatives .wrapper .row .col-12 h4, .initiatives .wrapper form .gform_body .gform_fields .col-12 h4, form .gform_body .initiatives .wrapper .gform_fields .col-12 h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right h4 {
    text-align: center;
  }
  .initiatives .wrapper .row .col-12 .the-content h4, .initiatives .wrapper form .gform_body .gform_fields .col-12 .the-content h4, form .gform_body .initiatives .wrapper .gform_fields .col-12 .the-content h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .col-12 .the-content h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_full .the-content h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .the-content h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_full .the-content h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_left .the-content h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .the-content h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_left .the-content h4, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .initiatives .wrapper .row .ginput_right .the-content h4, .initiatives .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content h4, form .gform_body .initiatives .wrapper .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .the-content h4, form .gform_body .gform_fields .gfield .initiatives .wrapper .ginput_container.ginput_container_address .ginput_right .the-content h4 {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  #a-propos .section-services ul {
    gap: 50px;
  }
  #transport .section-remorques .fond-bleu ul li {
    width: 100%;
  }
  #contact .section-contactez-nous .address-list .no-border-left {
    border-bottom: 1px solid #3151BE;
  }
}
@media screen and (max-height: 700px) {
  h2 {
    font-size: 2.1875rem;
  }
  .slice {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  #transport .section-services {
    padding-bottom: 50px;
  }
  #transport .section-information {
    margin-bottom: 40px;
  }
  #entreposage .section-etapes-service .fond-bleu .splide-storage .splide__arrows {
    bottom: 165px;
  }
  .carousel-video ul li .video-single h3 {
    font-size: 1.25rem;
  }
  #poste-disponible .section-details .col-boite .sticky-box {
    position: relative;
  }
}
@media screen and (max-width: 680px) {
  p {
    text-align: center;
  }
  .share-btn h4 {
    text-align: left;
  }
  h4 {
    text-align: center;
  }
  .link-with-arrow {
    justify-content: center;
  }
  #a-propos .section-citation .filtre-bleu .col-paragraph1 h3 {
    text-align: center;
  }
  #a-propos .section-citation .filtre-bleu p {
    text-align: center;
  }
  #transport .section-services .col-top .col-image {
    text-align: center;
  }
  #transport .section-services .col-top .col-image svg {
    width: 90%;
    margin: auto;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .service-name {
    text-align: center;
  }
  #transport .section-autres-services ul {
    width: 100%;
  }
  #transport .section-information {
    width: 95%;
    padding: 50px 0px;
  }
  #transport .section-information .col-content {
    padding: 40px;
    padding-bottom: 0;
  }
  .section-carriere .col-liste-categories ul li {
    width: 100%;
  }
  #poste-disponible .col-details ul {
    margin-bottom: 50px;
  }
  #poste-disponible .modal .col-formulaire {
    padding: 60px 20px;
  }
  .info-1 .col-content {
    flex-direction: column;
  }
  .info-2 {
    flex-direction: column;
    align-items: start !important;
  }
  .privacy-policy h1, .page-id-3012 h1, .page-id-3026 h1 {
    font-size: 2.5em;
  }
  .privacy-policy h2, .page-id-3012 h2, .page-id-3026 h2 {
    font-size: 1.5em;
  }
  .privacy-policy p, .page-id-3012 p, .page-id-3026 p {
    text-align: left;
  }
}
@media screen and (max-width: 550px) {
  .page-transition .transition-logo {
    width: 250px;
    height: 250px;
  }
  #blogue ul li a .col-image {
    height: 300px;
  }
  #carriere .apply-btn.left-button, #carriere .apply-btn.right-button {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 45px;
  }
  .banner2 .color-top .col-content h1 {
    font-size: 2.1875rem;
  }
  #accueil .section-information .row-a-propos .col-about {
    text-align: center;
  }
  #accueil .section-information .row-a-propos .col-about .row-subject {
    padding: 50px 20px;
  }
  #accueil .section-information .row-a-propos .col-about .row-subject .col-content p {
    margin-top: 10px;
  }
  #transport .section-services .col-top .col-image svg {
    margin: -20% 0px;
  }
  #carriere .section-avantages .liste-avantages li {
    width: 100%;
  }
  #carriere .section-postes-disponibles {
    border-left: none;
    border-top: 1px solid #151838;
  }
  #carriere .section-postes-disponibles .department-list .row-departement {
    padding: 20px 0;
  }
}
@media screen and (max-width: 525px) {
  .person .d-flex {
    flex-wrap: wrap;
  }
  .person .see-more-employee span {
    font-size: 0.9375rem;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content {
    display: block;
  }
  #entreposage .section-etapes-service .fond-bleu .row-etapes .col-etapes ul li .col-nbr h2 {
    font-size: 30px;
    padding-top: 5px;
  }
  .dashboard__content #carriere .section-postes-disponibles .department-list .row-departement .department-name {
    font-size: 1rem;
  }
}
@media screen and (max-width: 442px) {
  h1 {
    font-size: 2.8125pxrem;
  }
  #accueil .section-couverture .link-with-arrow::after {
    position: relative;
    left: -35px;
  }
  #accueil .section-couverture .link-with-arrow:hover::after {
    left: -25px;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .btn-wrapper {
    bottom: 10%;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .text-toggle p {
    font-size: 1rem;
  }
  #transport .section-remorques .section-autres-services ul .single-service .col-content .btn-wrapper a::after {
    transform: translateX(30px) translateY(-50%);
  }
  #carriere .section-postes-disponibles .department-name {
    font-size: 1em;
  }
  #documents-utiles .section-documents-list .single-document {
    width: 100%;
  }
  #contact .section-carte .google-map {
    height: 350px;
  }
}

/*# sourceMappingURL=main.css.map */
