: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, form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .gfield.gfield--width-third, .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, form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .gfield.gfield--width-third {
  -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, form .gform_body .gform_fields .gfield.gfield--width-third {
    -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, form .gform_body .gform_fields .gfield.gfield--width-half {
    -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 -*/
::-moz-selection {
  color: white;
  background: black;
}

::selection {
  color: white;
  background: black;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  line-height: 1;
}

.the-content h4 {
  margin-bottom: 10px;
}
.the-content *:last-child {
  margin-bottom: 0;
}
.the-content ul {
  list-style-type: none;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  font: 300 1rem/1.5rem "Libre Franklin", sans-serif;
}
.the-content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  display: block;
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background-color: #22917C;
}
.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%;
  max-width: 1770px;
  margin: 0 auto;
}

.wrapper-medium {
  margin: 0 auto;
  max-width: 1500px;
}

.wrapper-small {
  margin: 0 auto;
  max-width: 1250px;
}

#main {
  margin-top: 100px;
}

html,
body {
  box-sizing: border-box;
  font-family: "Libre Franklin", sans-serif;
  color: #434244;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  overflow-x: clip;
}

.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;
}

.slice {
  padding: 170px 0;
}

.absolute-normal, .refer-banner .image-text .image .image-carousel .carousel-image, .home-banner .wrapper > .right-side .small-round-slider li, .home-banner .wrapper > .right-side .big-round-slider li, .home-banner:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.bg-cover, #mobile-nav .left-side, .home-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.obj-fit, .single-poste-block img, .page-banner .right-side .image img, .appart-gallery a img, .content-gal a img, .appart-gallery .gallery-grid .gallery-sidebar .gallery-thumb img, .appart-gallery .gallery-grid .gallery-main img, .banner-appart .image img, .selected-appart .appart-card-slider img, .apparts-wrap .single-appart .img-side img, .card-section .left-side img, .career-swiper .swiperCareer .swiper-slide img, .single-new-appart .image, .home-banner .wrapper > .right-side .small-round-slider li img, .home-banner .wrapper > .right-side .big-round-slider li img {
  object-fit: cover;
  object-position: center;
}

h1 {
  font: 600 2.5rem/1.1em "Libre Franklin", sans-serif;
  color: #242725;
  margin-bottom: 20px;
}

h2 {
  font: 600 2.5rem/1.1em "Libre Franklin", sans-serif;
  color: #242725;
  margin-bottom: 20px;
}
h2 + h3, h2 + h1 {
  margin-top: -13px;
}

h3 {
  font: 700 1.5625rem/1.2em "Libre Franklin", sans-serif;
  color: #22917C;
  margin-bottom: 20px;
}
h3 + h2, h3 + h1 {
  margin-top: -18px;
}

p {
  font: 300 1rem/1.5rem "Libre Franklin", sans-serif;
  color: #242725;
}

a {
  font: 600 1.125rem/1.2em "Libre Franklin", sans-serif;
}

.btn, form .gform_footer .gform_button, button[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #FFF;
  background-color: #EEA93F;
  border: 2px solid #EEA93F;
  border-radius: 50px;
  margin-top: 40px;
  padding: 10px 25px;
  min-width: 215px;
  width: fit-content;
  font: 600 1.125rem/1.2em "Libre Franklin", sans-serif;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out !important;
  transition-delay: 0s !important;
}
.btn span, form .gform_footer .gform_button span, button[type=submit] span {
  position: relative;
}
.btn svg, form .gform_footer .gform_button svg, button[type=submit] svg {
  margin-right: 10px;
}
.btn svg path, form .gform_footer .gform_button svg path, button[type=submit] svg path {
  transition: all 0.3s ease-in-out;
}
.btn:hover, form .gform_footer .gform_button:hover, button[type=submit]:hover {
  background-color: transparent;
  color: #EEA93F;
}
.btn.btn-green, form .gform_footer .gform_button, button[type=submit] {
  background-color: #61BEA6;
  border-color: #61BEA6;
}
.btn.btn-green:hover, form .gform_footer .gform_button:hover, button[type=submit]:hover {
  color: white;
  background-color: #EEA93F;
  border-color: #EEA93F;
}
.btn.btn-green-dark, form .gform_footer .btn-green-dark.gform_button, button.btn-green-dark[type=submit] {
  background-color: #22917C;
  border-color: #22917C;
}
.btn.btn-green-dark:hover, form .gform_footer .btn-green-dark.gform_button:hover, button.btn-green-dark[type=submit]:hover {
  color: #FFF;
  background-color: #EEA93F;
  border-color: #EEA93F;
}
.btn.btn-white-green, form .gform_footer .btn-white-green.gform_button, button.btn-white-green[type=submit] {
  background-color: #FFF;
  border-color: #22917C;
  color: #22917C;
}
.btn.btn-white-green:hover, form .gform_footer .btn-white-green.gform_button:hover, button.btn-white-green[type=submit]:hover {
  border-color: #EEA93F;
  color: #EEA93F;
}
.btn.btn-white-green:hover svg path, form .gform_footer .btn-white-green.gform_button:hover svg path, button.btn-white-green[type=submit]:hover svg path {
  fill: #EEA93F;
}
.btn.btn-white, form .gform_footer .btn-white.gform_button, #postuler form .gform_footer .gform_button, button.btn-white[type=submit] {
  background-color: transparent;
  border-color: #FFF;
}
.btn.btn-white:hover, form .gform_footer .btn-white.gform_button:hover, #postuler form .gform_footer .gform_button:hover, button.btn-white[type=submit]:hover {
  color: #FFF;
  background-color: transparent;
  border-color: #EEA93F;
}
.btn.yellow-border-hover:hover, form .gform_footer .yellow-border-hover.gform_button:hover, button.yellow-border-hover[type=submit]:hover {
  color: #EEA93F;
  border-color: #EEA93F;
  background-color: #FFF;
}
.btn.disabled, form .gform_footer .disabled.gform_button, button.disabled[type=submit] {
  filter: grayscale(1);
  opacity: 0.5;
  pointer-events: none !important;
}

.btns-wrap {
  gap: 15px;
  margin-top: 40px;
}
.btns-wrap .btn, .btns-wrap form .gform_footer .gform_button, form .gform_footer .btns-wrap .gform_button, .btns-wrap button[type=submit] {
  margin-top: 0;
}

hr {
  margin: 50px 0;
  border-color: rgba(36, 39, 37, 0.4);
  border-style: solid;
  border-width: 1px 0 0 0;
}

.can-load:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -2px;
  left: -2px;
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  background-color: #22917C;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.can-load:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #FFF 94%, rgba(0, 0, 0, 0)) top/9px 9px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #FFF);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 9px), #000 0);
  animation: spinner 1s infinite linear;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.can-load.loading {
  pointer-events: none;
}
.can-load.loading:before, .can-load.loading:after {
  pointer-events: none;
  opacity: 1;
  transition: 0s;
}

@keyframes spinner {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes reverse-spinner {
  100% {
    transform: rotate(-1turn);
  }
}
.home #main, .page-template-login #main {
  margin-top: 0;
}

.home-banner {
  position: relative;
  padding-top: 120px;
  padding-bottom: 25px;
}
.home-banner h1 {
  color: #FFF;
  margin-bottom: 10px;
  max-width: 600px;
}
.home-banner h3 {
  margin-bottom: 40px;
  color: #B5EFE0;
}
.home-banner:before {
  content: "";
  background: rgb(34, 145, 124);
  background: linear-gradient(0deg, #006d58 0%, #09a78b 100%);
  opacity: 0.9;
}
.home-banner .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: -30px;
}
.home-banner .wrapper > .left-side {
  padding: 50px 0;
  width: 40%;
}
.home-banner .wrapper > .right-side {
  width: 50%;
  position: relative;
  left: 5vw;
}
.home-banner .wrapper > .right-side .small-round-slider {
  position: absolute;
  z-index: 2;
  left: -6vw;
  top: 0;
  height: 19vw;
  width: 19vw;
}
.home-banner .wrapper > .right-side .small-round-slider:before {
  content: "";
  position: absolute;
  left: -7%;
  top: -7%;
  height: 114%;
  width: 114%;
  border: 2px solid #EEA93F;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.home-banner .wrapper > .right-side .small-round-slider.small-round-image img {
  border-radius: 50%;
}
.home-banner .wrapper > .right-side .big-round-slider {
  position: relative;
  height: 40vw;
  width: 40vw;
  top: 80px;
}
.home-banner .wrapper > .right-side .big-round-slider:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -45px;
  bottom: 25%;
  height: 96px;
  width: 96px;
  border: 2px solid #88d5c1;
  border-radius: 100%;
  transform: translateY(5px);
  animation: floatinghome 5s ease-in-out infinite;
  transition: all 0.3s ease-in-out;
}
.home-banner .wrapper > .right-side .small-round-slider li, .home-banner .wrapper > .right-side .big-round-slider li {
  border-radius: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  opacity: 0;
  transition: all 1.2s ease-in-out;
}
.home-banner .wrapper > .right-side .small-round-slider li.active, .home-banner .wrapper > .right-side .big-round-slider li.active {
  opacity: 1;
}
.home-banner .wrapper > .right-side .small-round-slider li img, .home-banner .wrapper > .right-side .big-round-slider li img {
  height: 100%;
  width: 100%;
}
.home-banner .shape-hide {
  width: 100%;
  height: 25px;
  display: block;
  background-color: #FFF;
  clip-path: polygon(46px 0, calc(100% - 46px) 0, calc(100% + 5px) 100%, calc(0% - 5px) 100%);
  position: absolute;
  bottom: -2px;
  left: 50%;
}
.home-banner .shape-hide.shape-hide-1 {
  right: 50%;
  left: auto;
}

.banner-image-section .img-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.banner-image-section .img-container:before {
  content: "";
  position: absolute;
  left: -7%;
  top: -7%;
  height: 114%;
  width: 114%;
  pointer-events: none;
  border: 2px solid #EEA93F;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.banner-image-section .img-container .small-round-image img {
  border-radius: 50%;
}

@keyframes floatinghome {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
.form-row {
  margin: 15px 0;
}
.form-row.form-two-cols {
  display: flex;
  gap: 15px;
}

.select-wrap {
  width: 100%;
  background-color: #FFF;
  border-radius: 25px;
  position: relative;
  transition: all 0.2s ease-in-out;
  transition-delay: 0.15s;
}
.select-wrap.select-wrap-half {
  width: 50%;
}
.select-wrap.has-scroll .select-input-wrap > div:last-child, .select-wrap.has-scroll .select-input-wrap > label:nth-last-child(2) {
  margin-bottom: 40px;
}
.select-wrap.has-scroll.can-reset:not(.advanced) .select-input-wrap label:nth-last-child(2) {
  margin-bottom: 0;
}
.select-wrap .select-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 85px 15px 30px;
  cursor: pointer;
}
.select-wrap .select-input .left-side {
  display: flex;
  align-items: center;
  gap: 10px;
}
.select-wrap .select-input .left-side p {
  font-size: 0.9375rem;
  font-weight: 400;
  margin-top: 4px;
  line-height: 1em;
}
.select-wrap .select-input .left-side svg {
  height: 17px;
}
.select-wrap .select-input .right-side {
  display: flex;
  align-items: center;
  position: absolute;
  right: 30px;
}
.select-wrap .select-input .counter {
  display: none;
  margin-right: 15px;
  background-color: #61BEA6;
  border-radius: 26px;
  min-width: 26px;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 4px 8px;
}
.select-wrap .select-input .counter span {
  color: #FFF;
  font: 700 15px/1em "Libre Franklin", sans-serif;
}
.select-wrap .select-input .arrow {
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
}
.select-wrap .select-options {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  z-index: 3;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 450px;
  background-color: #FFF;
  border-radius: 0 0 25px 25px;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: none;
}
.select-wrap .select-options .select-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: calc(100% - 20px);
  height: fit-content;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 20px 30px 20px 20px;
  box-sizing: content-box;
  max-height: 450px;
}
.select-wrap .select-options.columned-options .select-input-wrap {
  flex-direction: row;
  flex-wrap: wrap;
}
.select-wrap .select-options.columned-options .select-input-wrap .checkbox-wrap {
  width: 31.5%;
}
.select-wrap.active {
  transition-delay: 0s;
  transition-duration: 0.1s;
  border-radius: 25px 25px 0 0;
}
.select-wrap.active .select-input .arrow {
  transform: rotate(180deg);
}
.select-wrap.active .select-options {
  pointer-events: auto;
  transition-delay: 0.1s;
  border-top: 1px solid #242725;
  height: fit-content;
  opacity: 1;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.2s ease-in-out;
}
.select-wrap .sub-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select-wrap .sub-option h4 {
  display: flex;
  align-items: center;
}
.select-wrap .sub-option h4 svg {
  margin-right: 12px;
}
.select-wrap .sub-option h4 span {
  position: relative;
  top: 2px;
}
.select-wrap .sub-option h5 {
  margin-top: 8px;
}
.select-wrap .sub-option .sub-option-input {
  width: 60%;
}
.select-wrap .sub-option .sub-option-input select {
  padding: 8px 30px 6px !important;
}
.select-wrap .sub-option .sub-checkbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.select-wrap .sub-option .sub-checkbox .checkbox-wrap {
  width: calc(50% - 10px);
}
.select-wrap.advanced .select-input-wrap {
  gap: 10px;
  width: calc(100% - 40px);
  padding: 20px 40px 20px 20px;
}

.checkbox-wrap {
  display: block;
  position: relative;
  padding-left: 25px;
  margin: 6px 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: 400 16px/1em "Libre Franklin", sans-serif;
  /* Hide the browser's default checkbox */
}
.checkbox-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-wrap {
  /* Create a custom checkbox */
}
.checkbox-wrap .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #FFF;
  border: 2px solid #A0A0A1;
  border-radius: 2px;
}
.checkbox-wrap {
  /* On mouse-over, add a grey background color */
}
.checkbox-wrap:hover input ~ .checkmark {
  background-color: #E1F0EC;
}
.checkbox-wrap {
  /* When the checkbox is checked, add a blue background */
}
.checkbox-wrap input:checked ~ .checkmark {
  background-color: #FFF !important;
}
.checkbox-wrap {
  /* Create the checkmark/indicator (hidden when not checked) */
}
.checkbox-wrap .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 1px;
  top: 1px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: #22917C;
}
.checkbox-wrap {
  /* Show the checkmark when checked */
}
.checkbox-wrap input:checked ~ .checkmark:after {
  display: block;
}

.date-wrap {
  position: relative;
  width: 100%;
}
.date-wrap.date-wrap-half {
  width: 50%;
}
.date-wrap .date-input {
  position: relative;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: white;
  border-radius: 25px;
  height: 100%;
}
.date-wrap .date-input .left-side {
  display: flex;
  align-items: center;
  gap: 10px;
}
.date-wrap .date-input .left-side p {
  font-size: 0.9375rem;
  font-weight: 400;
  margin-top: 4px;
  line-height: 1em;
}
.date-wrap .date-input .left-side svg {
  height: 17px;
}
.date-wrap input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

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;
}

.price-range .slider {
  height: 5px;
  position: relative;
  background: #88d5c1;
  border-radius: 5px;
}
.price-range .slider:before, .price-range .slider:after {
  content: "";
  background-color: #88d5c1;
  height: 10px;
  width: 10px;
  position: absolute;
  right: 0;
  top: -3px;
  border-radius: 10px;
}
.price-range .slider:before {
  right: auto;
  left: 0;
}
.price-range .slider .progress {
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 5px;
  background: #22917C;
}
.price-range .range-input {
  position: relative;
  top: -22px;
}
.price-range .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: 15px;
  left: -2px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.price-range input[type=range] {
  cursor: grab;
}
.price-range input[type=range]:active {
  cursor: grabbing;
}
.price-range input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #22917C;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  cursor: grab;
}
.price-range input[type=range]::-webkit-slider-thumb:active {
  cursor: grabbing;
}
.price-range input[type=range]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #22917C;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  cursor: grab;
}
.price-range input[type=range]::-moz-range-thumb:active {
  cursor: grabbing;
}

button[type=submit] {
  margin-top: 30px;
  cursor: pointer;
}

.featured-apparts-wrap {
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 60px auto 80px;
}
.featured-apparts-wrap + .btn, form .gform_footer .featured-apparts-wrap + .gform_button, .featured-apparts-wrap + button[type=submit] {
  margin-top: 0;
}

.single-new-appart {
  max-width: calc(33% - 15px);
  min-width: 375px;
  width: 100%;
  height: 425px;
  padding: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease-in-out;
}
.single-new-appart .image {
  height: 100%;
  width: 100%;
  max-width: unset;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
}
.single-new-appart .size {
  position: absolute;
  top: 35px;
  right: 35px;
  background-color: white;
  border-radius: 100%;
  height: 75px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-new-appart .size .size {
  width: 100%;
  height: 100%;
}
.single-new-appart .size p {
  color: #22917C;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.35;
  display: flex;
  align-content: flex-start;
}
.single-new-appart .size p span {
  font-size: 1.25rem;
  line-height: 1.8em;
  margin-left: 3px;
}
.single-new-appart .size sup {
  font: 800 1.25rem/2em "Libre Franklin", sans-serif;
  margin-left: 3px;
}
.single-new-appart .bottom-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 15px;
  background-color: #22917C;
  transition: all 0.3s ease-in-out;
}
.single-new-appart .bottom-content .city {
  color: white;
  margin-bottom: 0;
  max-width: 240px;
  word-wrap: break-word;
  hyphens: auto;
  font-weight: 600;
}
.single-new-appart .bottom-content .price {
  color: white;
  font-size: 1.875rem;
  font-weight: 700;
  display: flex;
}
.single-new-appart .bottom-content .price .currency {
  align-self: flex-start;
  font-size: 1.125rem;
  line-height: 1.7em;
}
.single-new-appart .bottom-content .price .per-month {
  font-size: 0.9375rem;
  align-self: flex-end;
  font-weight: 700;
  line-height: 2em;
  margin-left: 3px;
}

.new-tag {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  background-color: #EEA93F;
  padding: 8px 30px;
}
.new-tag svg {
  height: 15px;
  width: 15px;
  margin-right: 7px;
}
.new-tag p {
  color: white;
  font-weight: 700;
  margin-bottom: -4px;
}

.about {
  position: relative;
  background-color: #E1F0EC;
  overflow: hidden;
}
.about .wrapper {
  position: unset;
}
.about .left-side {
  position: absolute;
  left: 0;
  top: -10%;
  border-radius: 0 100% 100% 0;
  height: 120%;
  overflow: hidden;
}
.about .left-side:before {
  content: "";
  position: absolute;
  top: -10%;
  left: -67%;
  height: 120%;
  width: 160%;
  border-radius: 100%;
  border: 1px solid #61BEA6;
}
.about .left-side img {
  object-position: center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.about .right-side {
  margin-left: auto;
}

.career-swiper .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.career-swiper h3 + .slide-career-text {
  margin-top: -15px;
}
.career-swiper .swiperCareerMobile .swiper-slide img {
  border-radius: 20px;
}
.career-swiper .swiperCareer .swiper-wrapper {
  transform: skewY(15deg) scaleX(0.65) scaleY(0.9) translateX(50px);
  position: relative;
  top: 40px;
}
.career-swiper .swiperCareer .swiper-slide {
  height: 600px;
  border-radius: 20px;
  position: relative;
  top: -200px;
  transition: all 0.3s ease-in-out;
}
.career-swiper .swiperCareer .swiper-slide img {
  height: 100%;
  width: 100%;
  transform: skewY(-11deg) scale(1.6, 1.3);
}
.career-swiper .swiperCareer .swiper-slide:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.career-swiper .swiperCareer .swiper-slide.swiper-slide-next {
  top: -100px;
}
.career-swiper .swiperCareer .swiper-slide.swiper-slide-next:after {
  opacity: 0.3;
}
.career-swiper .swiperCareer .swiper-slide.swiper-slide-active {
  top: 0;
}
.career-swiper .swiperCareer .swiper-slide.swiper-slide-active:after {
  opacity: 0;
}
.career-swiper .swiperCareer .swiper-slide.is-a-prev, .career-swiper .swiperCareer .swiper-slide.is-a-next {
  opacity: 0;
}
.career-swiper .swiperCareer .swiper-slide.is-a-prev:after, .career-swiper .swiperCareer .swiper-slide.is-a-next:after {
  opacity: 1;
}
.career-swiper .slide-career-text {
  display: none;
}
.career-swiper .slide-career-text.mobile {
  display: block;
  padding-bottom: 70px;
}
.career-swiper .slide-career-text.active {
  display: block;
}
.career-swiper .left-side.mobile {
  width: 100%;
}
.career-swiper .left-side.mobile h3 {
  margin-bottom: 20px;
}
.career-swiper .left-side.mobile .image {
  margin-bottom: 20px;
}
.career-swiper .left-side.mobile .image img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  background-color: #22917C;
  opacity: 1;
  margin: 0 10px !important;
  height: 10px;
  width: 10px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #EEA93F;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid #EEA93F;
  border-radius: 50%;
  opacity: 1;
}

.swiper-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  position: absolute;
  right: -100px;
  top: calc(50% - 30px);
  transform: translateY(-50%);
}
.swiper-nav.mobile {
  display: none;
  right: 0;
  top: 50%;
}
.swiper-nav .swiper-nav-btn {
  display: block;
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background-color: #22917C;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.swiper-nav .swiper-nav-btn:after {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid #EEA93F;
  border-radius: 50%;
  opacity: 0;
  transition: inherit;
}
.swiper-nav .swiper-nav-btn:not(.current):hover {
  background-color: #61BEA6;
}
.swiper-nav .swiper-nav-btn.current {
  background-color: #EEA93F;
}
.swiper-nav .swiper-nav-btn.current:after {
  opacity: 1;
}

.texture-round-bottom, .texture-round-top {
  position: relative;
  overflow: hidden;
}
.texture-round-bottom:before, .texture-round-top:before {
  content: "";
  position: absolute;
  top: -50vw;
  left: -20vw;
  width: 140vw;
  border: 1px solid #61BEA6;
  height: 80vw;
  border-radius: 100%;
}

.texture-round-top:before {
  bottom: -50vw;
  top: unset;
}

.card-section {
  padding: 100px 0;
}
.card-section .big-card {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFF;
  -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.16);
}
.card-section .big-card .gform_confirmation_message {
  text-align: left;
}
.card-section select {
  padding: 13px 30px 11px !important;
}
.card-section .left-side {
  width: 40%;
}
.card-section .left-side .image {
  height: 100%;
  width: 100%;
}
.card-section .left-side img {
  display: block;
  height: 100%;
  width: 100%;
}
.card-section .right-side {
  width: 60%;
  padding: 80px 8%;
  align-self: center;
}
.card-section .right-side img {
  margin-bottom: 30px;
}
.card-section .wrapper:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  background-color: #22917C;
  -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.16);
}
.card-section.dark h2 {
  color: white;
}
.card-section.dark h3 {
  color: #167160;
}
.card-section.dark .big-card {
  background-color: #61BEA6;
}

.tools-slider-section .titles-wrap {
  max-width: 800px;
}
.tools-slider-section .slider-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 100px;
  max-width: 260px;
}
.tools-slider-section .slider-wrap a img {
  width: 100%;
  height: 100%;
  max-height: 100px;
  object-fit: contain;
  object-position: center;
}
.tools-slider-section .btn, .tools-slider-section form .gform_footer .gform_button, form .gform_footer .tools-slider-section .gform_button, .tools-slider-section button[type=submit] {
  margin-left: auto;
  margin-right: auto;
}

.slider-wrap {
  position: relative;
  margin-top: 80px;
  margin-bottom: 25px;
}
.slider-wrap .swiper-button-prev, .slider-wrap .swiper-button-next {
  width: 40px;
  height: 40px;
}
.slider-wrap .swiper-button-prev svg, .slider-wrap .swiper-button-next svg {
  height: 48px;
  width: 48px;
}

.swiper-button-prev svg path, .swiper-button-next svg path {
  transition: all 0.3s ease-in-out;
}
.swiper-button-prev:after, .swiper-button-next:after {
  content: "";
}
.swiper-button-prev:hover path, .swiper-button-next:hover path {
  fill: #EEA93F;
}

.swiper-button-next {
  transform: rotate(180deg);
}

.horizontal-filters-bar {
  background-color: #EFF7F4;
  border-bottom: 1px solid rgba(34, 145, 124, 0.1);
  padding: 15px 0;
  position: sticky;
  top: var(--header-height, 100px);
  z-index: 50;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}
.horizontal-filters-bar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  width: calc(100% - 60px);
  margin: 0 30px;
}
.horizontal-filters-bar .horizontal-form {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
}
.horizontal-filters-bar .horizontal-filter-item {
  flex: 1;
  min-width: 0;
}
.horizontal-filters-bar .horizontal-filter-item.location-filter {
  flex: 1.5;
  min-width: 180px;
}
.horizontal-filters-bar .horizontal-filter-item.price-filter {
  flex: 1.2;
  min-width: 130px;
}
.horizontal-filters-bar .horizontal-filter-item.size-filter {
  flex: 1.3;
  min-width: 150px;
}
.horizontal-filters-bar .horizontal-filter-item.date-filter {
  flex: 1.2;
  min-width: 140px;
}
.horizontal-filters-bar .horizontal-filter-item.advanced-filter {
  flex: 1.8;
  min-width: 170px;
}
.horizontal-filters-bar .horizontal-filter-item.advanced-filter .select-wrap .sub-option {
  flex-direction: column;
}
.horizontal-filters-bar .horizontal-filter-item.advanced-filter .select-wrap .sub-option .sub-option-input {
  width: 100%;
  margin-top: 15px;
}
.horizontal-filters-bar .horizontal-filter-item.search-button {
  flex: 0 0 auto;
  min-width: auto;
}
.horizontal-filters-bar .horizontal-select .select-input,
.horizontal-filters-bar .horizontal-select .date-input,
.horizontal-filters-bar .horizontal-date .select-input,
.horizontal-filters-bar .horizontal-date .date-input {
  padding: 10px 20px;
  border: 1px solid rgba(34, 145, 124, 0.2);
  border-radius: 25px;
  background-color: #FFF;
  transition: all 0.3s ease-in-out;
}
.horizontal-filters-bar .horizontal-select .select-input:hover,
.horizontal-filters-bar .horizontal-select .date-input:hover,
.horizontal-filters-bar .horizontal-date .select-input:hover,
.horizontal-filters-bar .horizontal-date .date-input:hover {
  border-color: rgba(34, 145, 124, 0.4);
}
.horizontal-filters-bar .horizontal-select .select-input .left-side p,
.horizontal-filters-bar .horizontal-select .date-input .left-side p,
.horizontal-filters-bar .horizontal-date .select-input .left-side p,
.horizontal-filters-bar .horizontal-date .date-input .left-side p {
  font-size: 0.875rem;
  margin-top: 2px;
}
.horizontal-filters-bar .horizontal-select .select-input .left-side svg,
.horizontal-filters-bar .horizontal-select .date-input .left-side svg,
.horizontal-filters-bar .horizontal-date .select-input .left-side svg,
.horizontal-filters-bar .horizontal-date .date-input .left-side svg {
  height: 14px;
  width: 14px;
}
.horizontal-filters-bar .horizontal-select .select-input .right-side .counter,
.horizontal-filters-bar .horizontal-select .date-input .right-side .counter,
.horizontal-filters-bar .horizontal-date .select-input .right-side .counter,
.horizontal-filters-bar .horizontal-date .date-input .right-side .counter {
  min-width: 20px;
  height: 20px;
  padding: 2px 6px;
}
.horizontal-filters-bar .horizontal-select .select-input .right-side .counter span,
.horizontal-filters-bar .horizontal-select .date-input .right-side .counter span,
.horizontal-filters-bar .horizontal-date .select-input .right-side .counter span,
.horizontal-filters-bar .horizontal-date .date-input .right-side .counter span {
  font-size: 0.75rem;
  font-weight: 700;
}
.horizontal-filters-bar .horizontal-select .select-input .right-side .arrow svg,
.horizontal-filters-bar .horizontal-select .date-input .right-side .arrow svg,
.horizontal-filters-bar .horizontal-date .select-input .right-side .arrow svg,
.horizontal-filters-bar .horizontal-date .date-input .right-side .arrow svg {
  height: 12px;
  width: 12px;
}
.horizontal-filters-bar .horizontal-select.active .select-input,
.horizontal-filters-bar .horizontal-date.active .select-input {
  border-color: #22917C;
  border-radius: 25px 25px 25px 25px;
}
.horizontal-filters-bar .horizontal-select .select-options,
.horizontal-filters-bar .horizontal-date .select-options {
  top: calc(100% - 1px);
  left: -1px;
  width: calc(100% + 2px);
  border: 1px solid #22917C;
  z-index: 100;
  max-height: 400px;
}
.location-filter .horizontal-filters-bar .horizontal-select .select-options,
.location-filter .horizontal-filters-bar .horizontal-date .select-options {
  width: 500px;
  max-width: 90vw;
}
.price-filter .horizontal-filters-bar .horizontal-select .select-options,
.price-filter .horizontal-filters-bar .horizontal-date .select-options {
  width: 450px !important;
  max-width: 90vw !important;
  min-width: 450px !important;
}
.horizontal-filters-bar .horizontal-select .select-options .select-input-wrap,
.horizontal-filters-bar .horizontal-date .select-options .select-input-wrap {
  max-height: 400px;
  padding: 15px 20px;
}
.horizontal-filters-bar .horizontal-filter-item.price-filter .horizontal-select .select-options {
  width: 450px !important;
  max-width: 90vw !important;
  min-width: 450px !important;
}
@media (max-width: 1200px) {
  .horizontal-filters-bar .horizontal-filter-item.price-filter .horizontal-select .select-options {
    width: 380px !important;
    min-width: 380px !important;
  }
}
@media (max-width: 768px) {
  .horizontal-filters-bar .horizontal-filter-item.price-filter .horizontal-select .select-options {
    width: 320px !important;
    min-width: 320px !important;
    max-width: 95vw !important;
  }
}
.horizontal-filters-bar .horizontal-date input[type=date] {
  color: transparent;
}
.horizontal-filters-bar .horizontal-date input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.horizontal-filters-bar .refresh-btn {
  margin-top: 0 !important;
  padding: 10px 20px;
  min-width: 120px;
  height: 42px;
  font-size: 0.875rem;
}
.horizontal-filters-bar .refresh-btn svg {
  width: 16px;
  height: 16px;
}
.horizontal-filters-bar .refresh-btn span {
  font-size: 0.875rem;
}
.horizontal-filters-bar .location-group {
  margin-bottom: 10px;
}
.horizontal-filters-bar .location-group .group-label {
  font-size: 0.75rem;
  padding: 4px 0;
  margin-bottom: 6px;
}
.horizontal-filters-bar .location-group .group-label .label-icon svg {
  width: 12px;
  height: 12px;
}
.horizontal-filters-bar .location-group .group-label .label-text {
  font-size: 0.6875rem;
}
.horizontal-filters-bar .location-group .group-content {
  gap: 4px 10px;
}
.horizontal-filters-bar .location-group .group-content .location-item {
  font-size: 0.8125rem;
  padding: 4px 8px 4px 30px;
  margin: 0;
}
.horizontal-filters-bar .select-wrap {
  background-color: #EFF7F4;
}
.horizontal-filters-bar .select-wrap .select-options {
  border-radius: 25px 25px 25px 25px;
}
.horizontal-filters-bar .sub-option .sub-option-title p {
  font-size: 0.8125rem;
  margin-bottom: 5px;
}
.horizontal-filters-bar .sub-option .sub-option-title p.filter-price-range {
  font-size: 0.75rem;
}
.horizontal-filters-bar .sub-option .sub-option-title p svg {
  width: 12px;
  height: 12px;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(34, 145, 124, 0.1);
}
.horizontal-filters-bar .sub-option.price-range .sub-option-title p {
  margin-bottom: 5px;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-title p.filter-price-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-title p.filter-price-range {
  font-size: 0.8125rem;
  color: #22917C;
  font-weight: 600;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input {
  width: 80%;
  margin-top: 0;
  padding: 15px 20px 10px;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .slider {
  height: 5px;
  margin-bottom: 25px;
  border-radius: 3px;
  background: #88d5c1;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .slider:before, .horizontal-filters-bar .sub-option.price-range .sub-option-input .slider:after {
  display: none;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .slider .progress {
  height: 5px;
  border-radius: 3px;
  background: #22917C;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .range-input {
  position: relative;
  top: -30px;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .range-input input[type=range] {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -2.5px;
  padding: 0 !important;
  border: none !important;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .range-input input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #22917C;
  border: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  cursor: grab;
  pointer-events: auto;
  transition: all 0.2s ease;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .range-input input[type=range]::-webkit-slider-thumb:hover {
  background: #61BEA6;
  transform: scale(1.1);
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .range-input input[type=range]::-webkit-slider-thumb:active {
  cursor: grabbing;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .range-input input[type=range]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #22917C;
  border: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  cursor: grab;
  pointer-events: auto;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.2s ease;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .range-input input[type=range]::-moz-range-thumb:hover {
  background: #61BEA6;
  transform: scale(1.1);
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .range-input input[type=range]::-moz-range-thumb:active {
  cursor: grabbing;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .range-input input[type=range]::-webkit-slider-track {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 5px;
}
.horizontal-filters-bar .sub-option.price-range .sub-option-input .range-input input[type=range]::-moz-range-track {
  background: transparent;
  border: none;
  height: 5px;
}
.horizontal-filters-bar .sub-option.price-range .select-input-wrap {
  padding: 20px 25px 25px !important;
}
.horizontal-filters-bar .mobile-filter-button {
  display: none;
}
.horizontal-filters-bar .mobile-filter-button .mobile-filter-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid rgba(34, 145, 124, 0.2);
  border-radius: 25px;
  background-color: #FFF;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: inherit;
}
.horizontal-filters-bar .mobile-filter-button .mobile-filter-link:hover {
  border-color: rgba(34, 145, 124, 0.4);
}
.horizontal-filters-bar .mobile-filter-button .mobile-filter-link .left-side {
  display: flex;
  align-items: center;
  gap: 10px;
}
.horizontal-filters-bar .mobile-filter-button .mobile-filter-link .left-side p {
  font-size: 0.875rem;
  margin-top: 2px;
  margin-bottom: 0;
}
.horizontal-filters-bar .mobile-filter-button .mobile-filter-link .left-side svg {
  height: 14px;
  width: 14px;
}
.horizontal-filters-bar .desktop-only {
  display: block;
}
.horizontal-filters-bar .mobile-only {
  display: none;
}
@media (max-width: 1400px) {
  .horizontal-filters-bar .horizontal-form {
    gap: 10px;
  }
  .horizontal-filters-bar .horizontal-filter-item.location-filter {
    flex: 1.4;
  }
  .horizontal-filters-bar .horizontal-filter-item.price-filter {
    flex: 1.1;
  }
  .horizontal-filters-bar .horizontal-filter-item.size-filter {
    flex: 1.2;
  }
  .horizontal-filters-bar .horizontal-filter-item.date-filter {
    flex: 1.1;
  }
  .horizontal-filters-bar .horizontal-filter-item.advanced-filter {
    flex: 1.6;
  }
}
@media (max-width: 1200px) {
  .horizontal-filters-bar .wrapper {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
  .horizontal-filters-bar .horizontal-form {
    flex-wrap: wrap;
    gap: 8px;
  }
  .horizontal-filters-bar .horizontal-filter-item {
    flex: 1 1 auto;
    min-width: 140px;
  }
  .horizontal-filters-bar .horizontal-filter-item.location-filter {
    flex: 1 1 100%;
    order: 1;
  }
  .horizontal-filters-bar .horizontal-filter-item.search-button {
    flex: 1 1 100%;
    order: 6;
    margin-top: 10px;
  }
  .price-filter .horizontal-filters-bar .horizontal-select .select-options {
    width: 380px !important;
    min-width: 380px !important;
  }
  .location-filter .horizontal-filters-bar .horizontal-select .select-options {
    width: 450px;
  }
}
@media (max-width: 991px) {
  .horizontal-filters-bar {
    padding: 10px 0;
  }
  .horizontal-filters-bar .horizontal-filter-item.location-filter, .horizontal-filters-bar .horizontal-filter-item.price-filter, .horizontal-filters-bar .horizontal-filter-item.size-filter, .horizontal-filters-bar .horizontal-filter-item.date-filter, .horizontal-filters-bar .horizontal-filter-item.advanced-filter {
    display: none;
  }
  .horizontal-filters-bar .horizontal-filter-item.mobile-filter-button {
    display: flex;
    flex: 1 1 auto;
  }
  .horizontal-filters-bar .horizontal-filter-item.search-button {
    flex: 0 0 auto;
    margin-left: 10px;
  }
  .horizontal-filters-bar .desktop-only {
    display: none;
  }
  .horizontal-filters-bar .mobile-only {
    display: flex;
  }
  .horizontal-filters-bar .mobile-reset-all {
    display: none;
    background-color: #FFF;
    border: 1px solid rgba(34, 145, 124, 0.2);
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
  }
  .horizontal-filters-bar .mobile-reset-all:hover {
    border-color: rgba(34, 145, 124, 0.4);
  }
  .horizontal-filters-bar .mobile-reset-all span {
    font-size: 0.875rem;
    color: #22917C;
    opacity: 1;
    font-style: normal;
  }
  .horizontal-filters-bar .mobile-reset-all svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
  }
  .horizontal-filters-bar .mobile-reset-all svg path {
    fill: #FFC264;
  }
  .horizontal-filters-bar.has-active-filters .mobile-reset-all {
    display: flex;
  }
  .horizontal-filters-bar .horizontal-select .select-input,
  .horizontal-filters-bar .horizontal-select .date-input,
  .horizontal-filters-bar .horizontal-date .select-input,
  .horizontal-filters-bar .horizontal-date .date-input {
    padding: 8px 16px;
  }
  .horizontal-filters-bar .horizontal-select .select-input .left-side p,
  .horizontal-filters-bar .horizontal-select .date-input .left-side p,
  .horizontal-filters-bar .horizontal-date .select-input .left-side p,
  .horizontal-filters-bar .horizontal-date .date-input .left-side p {
    font-size: 0.8125rem;
  }
  .horizontal-filters-bar .horizontal-select .select-input .left-side svg,
  .horizontal-filters-bar .horizontal-select .date-input .left-side svg,
  .horizontal-filters-bar .horizontal-date .select-input .left-side svg,
  .horizontal-filters-bar .horizontal-date .date-input .left-side svg {
    height: 12px;
    width: 12px;
  }
  .horizontal-filters-bar .refresh-btn {
    padding: 8px 16px;
    min-width: 100px;
    height: 36px;
    font-size: 0.8125rem;
  }
  .horizontal-filters-bar .refresh-btn svg {
    width: 14px;
    height: 14px;
  }
  .horizontal-filters-bar .refresh-btn span {
    font-size: 0.8125rem;
  }
  .price-filter .horizontal-filters-bar .horizontal-select .select-options {
    width: 320px !important;
    max-width: 95vw !important;
    min-width: 320px !important;
  }
  .location-filter .horizontal-filters-bar .horizontal-select .select-options {
    width: 350px;
    max-width: 95vw;
  }
}

.search-map, #map {
  height: 900px;
  max-height: calc(100dvh - 200px);
  width: calc(100vw - 650px);
  z-index: 10;
  transition: all 0.3s ease-in-out;
}
.search-map.closed, #map.closed {
  width: 100%;
}

.google-map .gmnoprint, .google-map .gm-style-cc, .google-map .gm-fullscreen-control, .google-map div > div > a[target=_blank] {
  display: none !important;
}

.custom-teal-marker {
  background: transparent !important;
  border: none !important;
}
.custom-teal-marker div {
  background-color: #22917C;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.custom-yellow-marker {
  background: transparent !important;
  border: none !important;
}
.custom-yellow-marker div {
  background-color: #EEA93F;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.marker-cluster {
  background: transparent !important;
  border: none !important;
}
.marker-cluster div {
  background-color: #22917C !important;
  border: 2px solid white !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.marker-cluster div span {
  color: white !important;
  font-weight: bold !important;
  font-size: 14px !important;
  line-height: 1 !important;
}
.marker-cluster:hover div {
  background-color: #EEA93F !important;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.marker-cluster-small div {
  width: 35px !important;
  height: 35px !important;
}

.marker-cluster-medium div {
  width: 45px !important;
  height: 45px !important;
}

.marker-cluster-large div {
  width: 55px !important;
  height: 55px !important;
}

.cluster-text {
  position: relative;
  top: -8px;
}

.map-wrap {
  position: relative;
}

.map-results {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 650px;
  transition: all 0.3s ease-in-out;
}
.map-results .results-wrap-parent {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.map-results .results-wrap {
  position: relative;
  z-index: 12;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: content-box;
  height: calc(100% - 92px);
  width: calc(100% - 78px);
  background-color: #F8FDFB;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 42px 50px 50px 45px;
}
.map-results .results-wrap .the-apparts > h2 {
  font-size: 1.75rem;
  color: #22917C;
  margin-bottom: 15px;
}
.map-results .results-wrap .the-apparts > h2.no-results {
  color: #EE3F3F;
}
.map-results .results-wrap .the-apparts > h3 {
  font-size: 1.125rem;
  color: #242725;
  margin-bottom: 25px;
}
.map-results .results-wrap .no-results {
  color: #EE3F3F;
}
.map-results .results-wrap h1, .map-results .results-wrap h2 {
  font-size: clamp(25px, 4vw, 28px);
}
.map-results .results-wrap h3 {
  font-size: 1.125rem;
  color: #242725;
  margin-bottom: 25px;
}
.map-results .results-wrap .apparts-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}
.map-results .results-wrap .apparts-header .apparts-titles {
  flex: 1;
}
.map-results .results-wrap .apparts-header .apparts-titles h2 {
  color: #22917C;
}
.map-results .results-wrap .apparts-header .apparts-titles h2, .map-results .results-wrap .apparts-header .apparts-titles h3 {
  margin-bottom: 10px;
}
.map-results .results-wrap .apparts-header .apparts-titles h3 {
  margin-bottom: 0;
}
.map-results .toggle-btn {
  position: absolute;
  top: 0;
  left: -46px;
  z-index: 11;
  width: 50px;
  height: 48px;
  background-color: #EEA93F;
  border-radius: 23px 0 0 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.map-results .toggle-btn svg {
  transform: rotate(270deg);
  transition: inherit;
}
.map-results .toggle-btn svg path {
  stroke: #FFF;
}
.map-results .toggle-btn.mobile-toggle {
  display: none;
  position: static;
  width: 40px;
  height: 40px;
  background-color: #EEA93F;
  border-radius: 50%;
  margin-left: 15px;
  flex-shrink: 0;
}
.map-results .toggle-btn.mobile-toggle svg {
  width: 16px;
  height: 16px;
}
.map-results.closed {
  right: -650px;
}
.map-results.closed .toggle-btn svg {
  transform: rotate(90deg);
}
@media (max-width: 991px) {
  .map-results {
    position: static;
    right: auto;
    width: 100%;
    height: fit-content !important;
    max-height: none;
    z-index: auto;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }
  .map-results .toggle-btn.desktop-toggle {
    display: none;
  }
  .map-results .toggle-btn.mobile-toggle {
    display: flex;
  }
  .map-results .results-wrap-parent {
    height: auto;
  }
  .map-results .results-wrap {
    height: auto;
    max-height: 65vh;
    overflow-y: auto;
  }
  .map-results .results-wrap .apparts-header {
    align-items: center;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    background: #F8FDFB;
    z-index: 10;
    padding: 35px 0 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .map-results .results-wrap .apparts-wrap {
    padding-bottom: 20px;
  }
  .map-results.closed .results-wrap {
    padding: 15px 25px;
  }
  .map-results.closed .results-wrap .apparts-wrap,
  .map-results.closed .results-wrap .infinite-scroll-trigger,
  .map-results.closed .results-wrap .infinite-scroll-loading,
  .map-results.closed .results-wrap .apartments-counter {
    display: none;
  }
  .map-results.closed .results-wrap .apparts-header {
    margin-bottom: 0;
  }
  .map-results.closed .toggle-btn svg {
    transform: rotate(270deg);
  }
}

.apparts-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.apparts-wrap .single-appart-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.apparts-wrap .single-appart-link:hover .single-appart {
  -webkit-box-shadow: 3px 8px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 3px 8px 20px 0 rgba(0, 0, 0, 0.2);
}
.apparts-wrap .single-appart-link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.apparts-wrap .single-appart {
  display: flex;
  background-color: #FFF;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  width: 100%;
  position: relative;
  left: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.apparts-wrap .single-appart * {
  pointer-events: none;
}
.apparts-wrap .single-appart button, .apparts-wrap .single-appart a, .apparts-wrap .single-appart input, .apparts-wrap .single-appart select, .apparts-wrap .single-appart textarea, .apparts-wrap .single-appart label {
  pointer-events: auto;
}
.apparts-wrap .single-appart .new-tag {
  padding: 6px 15px;
}
.apparts-wrap .single-appart .img-side {
  width: 40% !important;
  min-height: 100%;
  display: block;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.apparts-wrap .single-appart .img-side img {
  width: 100%;
  height: 160px;
  min-height: 100%;
  max-width: unset;
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.apparts-wrap .single-appart .content-side {
  padding: 26px 23px 18px;
  width: 60% !important;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.apparts-wrap .single-appart .content-side h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.apparts-wrap .single-appart .content-side .addr, .apparts-wrap .single-appart .content-side .size {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 8px;
}
.apparts-wrap .single-appart .content-side .addr svg, .apparts-wrap .single-appart .content-side .size svg {
  width: 14px;
  height: 15px;
  margin-right: 4px;
  margin-bottom: -2px;
}
.apparts-wrap .single-appart .content-side .addr svg path, .apparts-wrap .single-appart .content-side .size svg path {
  fill: #61BEA6;
}
.apparts-wrap .single-appart .content-side .price {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  margin-top: 14px;
}
.apparts-wrap .single-appart .content-side .price .currency {
  align-self: flex-start;
  font-size: 1rem;
  line-height: 1.7em;
}
.apparts-wrap .single-appart .content-side .price .per-month {
  font-size: 1rem;
  align-self: flex-end;
  font-weight: 700;
  line-height: 2em;
  margin-left: 3px;
}
.apparts-wrap .single-appart .content-side .left-side {
  width: 240px;
}
.apparts-wrap .single-appart .content-side .right-side {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.apparts-wrap .single-appart .content-side .right-side > svg {
  width: 23px;
  height: 23px;
}

.infinite-scroll-loading .loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.infinite-scroll-loading .loading-spinner .spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #61BEA6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.infinite-scroll-loading .loading-spinner span {
  font-size: 0.9rem;
  color: #666;
}

.loading-indicator {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}
.loading-indicator .loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-indicator .loading-spinner .spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #61BEA6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.apartments-counter #loaded-count {
  color: #61BEA6;
  font-weight: 600;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fav-btn {
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.fav-btn svg {
  transition: all 0.3s ease-in-out;
}
.fav-btn svg path {
  transition: all 0.3s ease-in-out;
}
.fav-btn:hover svg {
  transform-origin: center;
  transform: scale(1.2);
}
.fav-btn.active svg #heart-interior {
  fill: #22917C;
}

.share-btn {
  position: relative;
  cursor: pointer;
  height: 21px;
  width: 21px;
}
.share-btn > svg {
  position: relative;
  z-index: 2;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.share-btn span {
  position: absolute;
  left: 35%;
  bottom: 45%;
  height: 50%;
  width: 50%;
  transform: scale(0.5);
  transition: all 0.3s ease-in-out;
}
.share-btn:hover > svg {
  left: 6px;
  bottom: 6px;
}
.share-btn:hover span {
  opacity: 1;
  left: 0;
  bottom: 12px;
  transform: scale(1);
}

.print-btn {
  cursor: pointer;
}
.print-btn svg .paper {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
.print-btn:hover svg .paper {
  transform: translateY(10%);
}

.selected-appart-title {
  font: 700 1.5625rem/1.2em "Libre Franklin", sans-serif;
  color: #242725;
}
.selected-appart-title svg {
  height: 27px;
  width: 18px;
  position: relative;
  top: 2px;
  margin-right: 3px;
}
.selected-appart-title svg path {
  fill: #EEA93F;
}
.selected-appart-title span {
  padding: 3px 15px 0 0;
  margin-right: 15px;
  border-right: 2px solid #22917C;
}
.selected-appart-title span:last-child {
  border-right: none;
}

.single-appart-surtitle {
  font: 700 1.5625rem/1.2em "Libre Franklin", sans-serif;
  color: #22917C;
  margin-bottom: 20px;
}

.selected-appart {
  display: none;
  flex-direction: column;
}
.selected-appart .return-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: -5px 0 10px;
  padding: 5px 0;
  cursor: pointer;
}
.selected-appart .return-btn svg {
  position: relative;
  left: 0;
  top: 1px;
  transform: rotate(90deg);
  width: 14px;
  height: 8px;
  transition: all 0.3s ease-in-out;
}
.selected-appart .return-btn svg path {
  stroke: #22917C;
}
.selected-appart .return-btn span {
  font: 700 0.875rem/1.2em "Libre Franklin", sans-serif;
  color: #22917C;
  position: relative;
  top: 2px;
}
.selected-appart .return-btn:hover svg {
  left: -4px;
}
.selected-appart .card-tools {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.selected-appart .card-tools .right-side {
  display: flex;
  align-items: center;
  gap: 5px;
}
.selected-appart .card-tools .left-side {
  display: flex;
  align-items: center;
  gap: 15px;
  height: fit-content;
}
.selected-appart .card-tools .left-side .print-btn svg {
  height: 30px;
  width: 30px;
}
.selected-appart .card-tools .left-side .fav-btn svg {
  height: 22px;
  width: 23px;
}
.selected-appart .card-tools .left-side .share-btn {
  height: 21px;
  width: 21px;
}
.selected-appart .appart-card {
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFF;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.selected-appart .card-content {
  padding: 12px 24px 35px;
}
.selected-appart .card-content .desc-bloc {
  margin-top: 30px;
}
.selected-appart .card-content .desc-bloc h1 {
  font-size: 1.375rem;
}
.selected-appart .card-content .desc-bloc h2 {
  font-size: 1.25rem;
}
.selected-appart .card-content .desc-bloc h3, .selected-appart .card-content .desc-bloc h4 {
  font-size: 1.125rem;
}
.selected-appart .card-content .caract-bloc > h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.125rem;
}
.selected-appart .card-content .btn, .selected-appart .card-content form .gform_footer .gform_button, form .gform_footer .selected-appart .card-content .gform_button, .selected-appart .card-content button[type=submit] {
  width: 100%;
}
.selected-appart .single-caract {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 15px 0;
}
.selected-appart .single-caract svg {
  height: 28px;
  width: 28px;
}
.selected-appart .single-caract p {
  margin-bottom: -3px;
}
.selected-appart .address-bloc {
  margin: 15px 0;
}
.selected-appart .address-bloc .address-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
}
.selected-appart .address-bloc .address-info svg {
  height: 20px;
  width: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.selected-appart .address-bloc .address-info svg path {
  fill: #61BEA6;
}
.selected-appart .address-bloc .address-info .address-text {
  font-size: 1rem;
  font-weight: 500;
  color: #434244;
  line-height: 1.4;
  margin: 0;
}
.selected-appart .appart-card-slider {
  height: 270px;
}
.selected-appart .appart-card-slider img {
  height: 100%;
  width: 100%;
}
.selected-appart .swiper-button-prev, .selected-appart .swiper-button-next {
  position: unset;
  width: 25px;
  height: 25px;
  margin-top: 0;
}

.appart-contact {
  position: relative;
  overflow: hidden;
}
.appart-contact:before, .appart-contact:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -60%;
  height: 850px;
  width: 850px;
  border: 1px solid #22917C;
  border-radius: 100%;
  transform: translateX(-45%);
}
.appart-contact:after {
  border-color: #EEA93F;
  bottom: 25%;
  left: 30%;
  height: 280px;
  width: 280px;
  transform: translateX(0);
}
.appart-contact .green-filter {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.appart-contact .green-filter img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.16;
}
.appart-contact .green-filter:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(225, 240, 236, 0.35) 0%, #e1f0ec 100%);
}
.appart-contact .wrapper {
  z-index: 1;
}
.appart-contact .left-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.appart-contact .left-side > .the-content, .appart-contact .left-side h2 {
  margin-bottom: 10px;
}
.appart-contact .contact-block {
  width: 100%;
  border-radius: 20px;
  background-color: #FFF;
  display: flex;
  gap: 30px;
  padding: 30px 36px;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(7, 44, 38, 0.16);
  box-shadow: 3px 3px 6px 0 rgba(7, 44, 38, 0.16);
}
.appart-contact .contact-block .image {
  height: 88px;
  width: 88px;
  border-radius: 88px;
  overflow: hidden;
}
.appart-contact .contact-block .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.appart-contact .contact-block .content-side {
  width: calc(100% - 128px);
}
.appart-contact .contact-block h3 {
  margin-bottom: 8px;
  color: #EEA93F;
}
.appart-contact .contact-block h4 {
  font-size: 1.125rem;
  margin-bottom: 2px;
}
.appart-contact .contact-block a, .appart-contact .contact-block p {
  font: 300 1rem/1.5rem "Libre Franklin", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2em;
}
.appart-contact .contact-block.advisor-block h3 {
  color: #22917C;
}
.appart-contact .contact-block.advisor-block .image {
  background-color: #61BEA6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appart-contact .contact-block.advisor-block .image svg {
  height: 47px;
  width: 47px;
}
.appart-contact .contact-block.advisor-block .advisors-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.banner-appart .image {
  height: 600px;
  width: 100%;
}
.banner-appart .image img {
  width: 100%;
  height: 100%;
}
.banner-appart .banner-border {
  background-color: #61BEA6;
}
.banner-appart .banner-border .wrapper-medium {
  display: flex;
  align-items: center;
  position: relative;
  padding: 30px 400px 30px 0;
}
.banner-appart .banner-border .selected-appart-title span {
  border-color: #F5C476;
}
.banner-appart .banner-border .cta-banner {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 360px;
  background-color: #22917C;
  border-radius: 20px 20px 0 0;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 30px 50px 20px;
}
.banner-appart .banner-border .cta-banner p {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  color: #FFF;
  text-align: center;
}
.banner-appart .banner-border .cta-banner .actual-date {
  text-transform: capitalize;
}
.banner-appart .banner-border .cta-banner .btn, .banner-appart .banner-border .cta-banner form .gform_footer .gform_button, form .gform_footer .banner-appart .banner-border .cta-banner .gform_button, .banner-appart .banner-border .cta-banner button[type=submit] {
  margin-top: 10px;
}
.banner-appart .banner-border .cta-banner .btn.btn-yellow span, .banner-appart .banner-border .cta-banner form .gform_footer .btn-yellow.gform_button span, form .gform_footer .banner-appart .banner-border .cta-banner .btn-yellow.gform_button span, .banner-appart .banner-border .cta-banner button.btn-yellow[type=submit] span {
  color: #FFF;
}
.banner-appart .banner-border .cta-banner .btn.btn-yellow:hover span, .banner-appart .banner-border .cta-banner form .gform_footer .btn-yellow.gform_button:hover span, form .gform_footer .banner-appart .banner-border .cta-banner .btn-yellow.gform_button:hover span, .banner-appart .banner-border .cta-banner button.btn-yellow[type=submit]:hover span {
  color: #FFF;
}
.banner-appart .banner-border .selected-appart-title {
  display: flex;
  flex-wrap: wrap;
  color: #FFF;
  margin-bottom: 0;
}
.banner-appart .banner-border.no-img-banner .cta-banner {
  bottom: unset;
  top: 0;
  border-radius: 0 0 20px 20px;
}

.slice.single-appart-section {
  padding-top: 100px;
  padding-bottom: 50px;
}

.single-appart-section .tools-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 25px;
}
.single-appart-section .tools-bar svg {
  max-height: 32px;
  max-width: 30px;
}
.single-appart-section .map-container {
  margin-top: 75px;
}
.single-appart-section .map-container .single-appart-map {
  max-height: 400px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}
.single-appart-section .top-desc {
  max-width: 700px;
  margin-bottom: 40px;
}
.single-appart-section .top-desc h1 {
  margin-bottom: 40px;
}
.single-appart-section .top-desc a h4, .single-appart-section .top-desc a h2 {
  display: flex;
  align-items: center;
  font: 500 1.25rem/1.3em "Libre Franklin", sans-serif;
  margin: 5px 0 30px;
}
.single-appart-section .top-desc a h4 svg, .single-appart-section .top-desc a h2 svg {
  position: relative;
  top: -2px;
  height: 22px;
  width: 15px;
  margin-right: 6px;
}
.single-appart-section .top-desc a h4 svg path, .single-appart-section .top-desc a h2 svg path {
  fill: #61BEA6;
}
.single-appart-section .top-desc .the-content {
  margin-top: 30px;
}

.appart-gallery {
  margin: 20px 0;
}
.appart-gallery a {
  margin-bottom: 0;
  height: auto;
  width: auto;
}
.appart-gallery .gallery-grid {
  display: flex;
  gap: 25px;
  height: 300px;
  position: relative;
}
.appart-gallery .gallery-grid .gallery-main {
  flex: 2;
  height: 100%;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 3px 3px 10px 0 rgba(7, 44, 38, 0.16);
  box-shadow: 3px 3px 10px 0 rgba(7, 44, 38, 0.16);
}
.appart-gallery .gallery-grid .gallery-main img {
  height: 100%;
  width: 100%;
}
.appart-gallery .gallery-grid .gallery-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.appart-gallery .gallery-grid .gallery-sidebar .gallery-thumb {
  flex: 1;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 3px 3px 10px 0 rgba(7, 44, 38, 0.16);
  box-shadow: 3px 3px 10px 0 rgba(7, 44, 38, 0.16);
}
.appart-gallery .gallery-grid .gallery-sidebar .gallery-thumb img {
  height: 100%;
  width: 100%;
}
.appart-gallery .gallery-grid .gallery-sidebar .gallery-thumb.gallery-more .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.appart-gallery a:before, .content-gal a:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #88D5C1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.appart-gallery a:after, .content-gal a:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 68px;
  width: 68px;
  background-image: url("../images/icon-loupe.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.appart-gallery a img, .content-gal a img {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  max-width: unset;
  transition: all 0.3s ease-in-out;
}
.appart-gallery a:hover:before, .content-gal a:hover:before {
  opacity: 0.66;
}
.appart-gallery a:hover:after, .content-gal a:hover:after {
  opacity: 1;
}
.appart-gallery a:hover img, .content-gal a:hover img {
  top: -5%;
  left: -5%;
  height: 110%;
  width: 110%;
}

.btn-gallery {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font: 600 1.125rem/1.2em "Libre Franklin", sans-serif;
  font-size: 1rem;
  cursor: pointer;
}
.btn-gallery svg path, .btn-gallery svg rect, .btn-gallery svg circle {
  stroke: #61BEA6;
}
.btn-gallery span {
  position: relative;
  top: 2px;
}
.btn-gallery span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #61BEA6;
  transition: all 0.3s ease-in-out;
}
.btn-gallery:hover span:after {
  width: 100%;
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  z-index: 10;
}
@media (min-width: 992px) {
  .contact-form-card::-webkit-scrollbar {
    width: 6px;
  }
  .contact-form-card::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
  }
  .contact-form-card::-webkit-scrollbar-thumb {
    background: rgba(34, 145, 124, 0.3);
    border-radius: 3px;
  }
  .contact-form-card::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 145, 124, 0.5);
  }
}
@media (min-width: 992px) {
  .contact-form-card .gravity-form-wrapper {
    min-height: fit-content;
    padding-bottom: 10px;
  }
}
.contact-form-card .form-header {
  margin-bottom: 20px;
}
.contact-form-card .form-header h3 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #242725;
  margin: 0 0 8px 0;
}
.contact-form-card .form-header .form-subtitle {
  font-size: 1.125rem;
  color: #434244;
  margin: 0;
  font-weight: 700;
}
.contact-form-card .advisor-info {
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 25px;
}
.contact-form-card .advisor-info .advisor-icon {
  width: 90px;
  height: 90px;
  background: #61BEA6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-form-card .advisor-info .advisor-icon svg {
  width: 50px;
  height: 50px;
}
.contact-form-card .advisor-info .advisor-details .advisor-title {
  font-size: 1.5625rem;
  color: #22917C;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.contact-form-card .advisor-info .advisor-details .advisor-name {
  font-size: 1.25rem;
  color: #434244;
  font-weight: 700;
  margin: 0 0 5px 0;
}
.contact-form-card .advisor-info .advisor-details .advisor-phone, .contact-form-card .advisor-info .advisor-details .advisor-email {
  display: inline-block;
  background: #EEA93F;
  color: white;
  padding: 8px 30px;
  border-radius: 25px;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.contact-form-card .advisor-info .advisor-details .advisor-phone:hover, .contact-form-card .advisor-info .advisor-details .advisor-email:hover {
  background: #e6850a;
  color: white;
}
.contact-form-card .advisor-info .advisor-details .advisor-email {
  font-size: 0.875rem;
}
.contact-form-card .gravity-form-wrapper .gform_body {
  margin: 0;
  padding: 0;
}
.contact-form-card .gravity-form-wrapper .gform_body .gform_fields {
  margin: 0;
  padding: 0;
}

.single-dropdown {
  border-top: 1px solid #22917C;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.single-dropdown .trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  font: 800 1.125rem/1.2em "Libre Franklin", sans-serif;
  cursor: pointer;
}
.single-dropdown .trigger:after {
  content: "";
  background-image: url("../images/icon-arrow-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 15px;
  height: 7px;
  display: block;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
}
.single-dropdown .dropdown-content {
  display: none;
  padding: 20px 15px 40px;
}
.single-dropdown .dropdown-content .caracteristiques {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 5%;
}
.single-dropdown .dropdown-content .caracteristiques .single-caract {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 30%;
}
.single-dropdown .dropdown-content .caracteristiques .single-caract p {
  position: relative;
  top: 2px;
  max-width: calc(100% - 40px);
}
.single-dropdown .dropdown-content .caracteristiques .single-caract strong {
  font-weight: 800;
  color: #22917C;
}
.single-dropdown .dropdown-content .caracteristiques svg {
  width: 28px;
  max-height: 24px;
}
.single-dropdown.active {
  border-top-color: #EEA93F;
}
.single-dropdown.active .trigger:after {
  transform: rotate(180deg);
}
.single-dropdown:last-child {
  border-bottom: 1px solid #22917C;
}

#map.single-appart-map {
  width: 100%;
}

@media print {
  .no-print, .no-print * {
    display: none !important;
  }
  #main {
    margin-top: 0;
  }
  .banner-appart .image {
    height: 250px;
  }
  .banner-appart .banner-border {
    display: none;
  }
  .single-appart-section.slice {
    padding-top: 20px;
  }
  .single-appart-section .wrapper {
    width: 100%;
    max-width: 100%;
  }
  .single-appart-section .content-side {
    width: 100%;
    max-width: 100%;
    flex: unset;
  }
  .single-appart-section .top-desc {
    max-width: 100%;
  }
  .single-appart-section .top-desc h1 {
    font-size: 1.625rem;
  }
  .single-appart-section .top-desc h3 {
    font-size: 1.375rem;
  }
  .the-content ul {
    list-style-type: disc;
    list-style-position: inside;
  }
  .the-content ul li {
    padding-left: 0;
    margin-bottom: 7px;
  }
  .the-content ul li:before {
    display: none;
  }
  .single-dropdown {
    border-color: #22917C !important;
  }
  .single-dropdown .trigger {
    padding-bottom: 0;
  }
  .single-dropdown .trigger:after {
    display: none !important;
  }
  .single-dropdown .dropdown-content {
    display: block;
  }
  .single-dropdown .dropdown-content .caracteristiques {
    gap: 10px 5%;
  }
}
.popup {
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(34, 145, 124);
  background: linear-gradient(0deg, rgba(34, 145, 124, 0.88) 0%, rgba(97, 190, 166, 0.88) 100%);
  display: flex;
  padding: 60px 0;
  overflow-y: scroll;
}
.popup.information .wrapper {
  max-width: 1100px;
}
.popup .wrapper {
  max-width: 840px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  margin: auto;
}
.popup .popup-block {
  position: relative;
  width: 100%;
  background-color: #FFF;
  border-radius: 20px;
  padding: 70px 70px 50px;
  margin-inline: -30px;
  row-gap: 20px;
}
.popup .popup-block .col-12, .popup .popup-block form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .popup .popup-block .ginput_left, .popup .popup-block form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .popup .popup-block .ginput_right, .popup .popup-block form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .popup .popup-block .ginput_full, .popup .popup-block form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .popup .popup-block .gfield.gfield--width-full, .popup .popup-block form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .popup .popup-block .gfield.gfield--width-half, .popup .popup-block form .gform_body .gform_fields .gfield.gfield--width-third, form .gform_body .gform_fields .popup .popup-block .gfield.gfield--width-third {
  padding-inline: 30px;
}
.popup .popup-block {
  -webkit-box-shadow: 3px 3px 6px 0 rgba(7, 44, 38, 0.16);
  box-shadow: 3px 3px 6px 0 rgba(7, 44, 38, 0.16);
}
.popup .popup-block h2 {
  margin-bottom: 30px;
  color: #22917C;
}
.popup .popup-block .select-wrap, .popup .popup-block .date-wrap .date-input {
  border: 1px solid #22917C;
}
.popup .popup-block .select-wrap .select-options {
  left: -1px;
  width: calc(100% + 2px);
  border: 1px solid transparent;
}
.popup .popup-block .select-wrap.active .select-options {
  border-color: #22917C;
}
.popup .popup-block .img-container {
  position: relative;
}
.popup .popup-block .img-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.popup .popup-block .img-container {
  position: relative;
}
.popup .popup-block .img-container > img,
.popup .popup-block .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.popup .popup-block .close {
  position: absolute;
  top: 30px;
  right: 38px;
  cursor: pointer;
}
.popup .popup-block .close svg {
  height: 16px;
  width: 16px;
}
.popup .popup-block .close svg line {
  transition: all 0.3s ease-in-out;
}
.popup .popup-block .close:hover svg line {
  stroke: #EEA93F;
}
.popup.active {
  opacity: 1;
  pointer-events: auto;
}

.refresh-btn {
  margin: 30px auto 5px !important;
}
.refresh-btn svg {
  transition: all 0.3s ease-in-out;
}
.refresh-btn span {
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.refresh-btn:hover svg {
  transform: rotate(-170deg);
}
.refresh-btn.loading svg {
  margin-right: 0;
  animation: reverse-spinner 1s infinite linear;
}
.refresh-btn.loading span {
  width: 0 !important;
}
.refresh-btn.loading:before, .refresh-btn.loading:after {
  display: none !important;
}

.reset-filter-btn {
  display: none;
  width: 100%;
  cursor: pointer;
  padding-right: 20px;
}
.reset-filter-btn svg {
  margin-right: 5px;
  transform: rotate(0);
  transform-origin: center;
  transition: all 0.3s ease-in-out;
}
.reset-filter-btn span {
  opacity: 1;
  font-style: italic;
  font-size: 16px;
  color: #000;
  position: relative;
  top: 1px;
}
.reset-filter-btn span:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #EEA93F;
}

.can-reset .reset-filter-btn {
  display: flex;
  justify-content: flex-end;
}

.location-group {
  width: 100% !important;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.location-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.group-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-bottom: 8px;
  padding: 8px 0;
  border-bottom: 2px solid #f5f5f5;
}

.group-label .label-icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
  color: #666;
}

.group-label .label-icon svg {
  width: 16px;
  height: 16px;
}

.group-label .label-text {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.location-group .group-content {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0;
}

.location-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px 6px 30px;
  margin: 0;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 14px;
}

.location-item:hover {
  border-color: #e0e0e0;
  user-select: none;
}

.location-item.quartier {
  font-size: 14px;
}

.location-item .checkmark {
  margin-left: 8px;
  top: 5px;
}

.share-popup .share-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
}
.share-popup .share-icon-wrap svg {
  height: 40px;
  width: 40px;
}
.share-popup .share-icon-wrap svg path {
  fill: #22917C;
  transition: all 0.3s ease-in-out;
}
.share-popup .share-icon-wrap a:hover svg path {
  fill: #EEA93F;
}
.share-popup .copy-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 6px 6px 6px 30px;
  border: 1px solid #22917C;
  border-radius: 100px;
}
.share-popup .copy-link p {
  position: relative;
  top: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.share-popup .copy-link .btn, .share-popup .copy-link form .gform_footer .gform_button, form .gform_footer .share-popup .copy-link .gform_button, .share-popup .copy-link button[type=submit] {
  margin-top: 0;
  min-width: 125px;
}
.share-popup .copied {
  opacity: 0;
  margin: 10px auto -15px;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.share-popup .copied.active {
  opacity: 1;
}
.share-popup .copied p {
  font-weight: 800;
  color: #61BEA6;
}

.login-section {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(34, 145, 124);
  background: linear-gradient(0deg, #006d58 0%, #09a78b 100%);
  opacity: 0.9;
}
.login-section > .wrapper {
  max-width: 875px;
}
.login-section h2 {
  margin-bottom: 30px;
}
.login-section .forms-block {
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: #FFF;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, 0.16);
}
.login-section .forms-nav {
  width: 100%;
  display: flex;
}
.login-section .forms-nav .form-tab {
  width: 50%;
  text-align: center;
  padding: 20px 10px;
  font: 600 1.25rem/1.1em "Libre Franklin", sans-serif;
  background-color: #FFF;
  color: #22917C;
  cursor: pointer;
}
.login-section .forms-nav .form-tab[data-form=signup] {
  background-color: #E1F0EC;
  color: #242725;
}
.login-section .forms-wrap form {
  display: none;
  padding: 60px 30px 50px;
}
.login-section .forms-wrap form.active {
  display: block;
}
.login-section .forms-wrap form.signup {
  background-color: #E1F0EC;
}

form.success, form .error {
  display: none;
}
form.loading {
  opacity: 0.5;
}

.form:not(#search-form) .error {
  font-size: 1rem;
  font-weight: 500;
  color: #EE3F3F;
  max-width: 500px;
  margin: 5px auto 10px;
}
.form:not(#search-form) .location-group label {
  margin-bottom: 0;
}
.form:not(#search-form) .location-group label span {
  margin-bottom: 0;
}
.form:not(#search-form) label {
  width: 100%;
  margin-bottom: 10px;
}
.form:not(#search-form) label span {
  font: 500 1rem/1.2em "Libre Franklin", sans-serif;
  margin-bottom: 4px;
  display: block;
}
.form:not(#search-form) label .focus-text {
  display: none;
}
.form:not(#search-form) label input:focus + .focus-text {
  display: flex;
  margin: 5px 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #EE3F3F;
}
.form:not(#search-form) input {
  border: 1px solid #22917C;
  border-radius: 100px;
  width: 100%;
  padding: 16px 38px 13px;
  font: 400 1rem/1.2em "Libre Franklin", sans-serif;
}
.form:not(#search-form) .form-message {
  display: none;
}
.form:not(#search-form) .form-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 660px;
  margin: 15px auto;
}
.form:not(#search-form) .form-row.two-cols-row {
  justify-content: space-between;
}
.form:not(#search-form) .form-row.two-cols-row label {
  width: calc(50% - 8px);
}
.form:not(#search-form) .form-row.form-row-left {
  margin: 15px auto 15px 0;
}
.form:not(#search-form) .form-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.form:not(#search-form) .form-footer .btn, .form:not(#search-form) .form-footer form .gform_footer .gform_button, form .gform_footer .form:not(#search-form) .form-footer .gform_button, .form:not(#search-form) .form-footer button[type=submit] {
  margin-top: 0;
}
.form:not(#search-form) .form-footer #forgot-password-trigger {
  font: 400 1rem/1.2em "Libre Franklin", sans-serif;
  text-align: center;
  margin-top: 13px;
}
.form:not(#search-form) .form-footer.form-footer-left {
  align-items: start;
}

.dashboard-section {
  position: relative;
  padding-top: 70px !important;
}
.dashboard-section:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 500px);
  background-color: #E1F0EC;
}

.dashboard-block {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  background-color: #FFF;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.dashboard-block .dashboard-head {
  background-color: #242725;
  padding: 22px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-block .dashboard-head h3 {
  color: #FFF;
  margin-bottom: 0;
  position: relative;
  top: 3px;
}
.dashboard-block .dashboard-head a {
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-block .dashboard-head a span {
  position: relative;
  margin-bottom: -5px;
}
.dashboard-block .dashboard-head a span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #FFF;
  transition: all 0.3s ease-in-out;
}
.dashboard-block .dashboard-head a svg {
  height: 16px;
  width: 16px;
  overflow: visible;
}
.dashboard-block .dashboard-head a svg path {
  stroke: #FFF;
  fill: #FFF;
  transition: all 0.3s ease-in-out;
}
.dashboard-block .dashboard-head a:hover span:after {
  width: 100%;
}
.dashboard-block .dashboard-head a:hover svg path:last-child {
  transform: translateX(3px);
}
.dashboard-block .dashboard-nav {
  border-right: 1px solid #242725;
  height: auto;
  min-width: 350px;
  max-width: 400px;
}
.dashboard-block .dashboard-nav li {
  border-bottom: 1px solid #242725;
  padding: 32px 65px;
  font: 600 1.125rem/1.2em "Libre Franklin", sans-serif;
  width: max-content;
  min-width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.dashboard-block .dashboard-nav li svg {
  width: 20px;
  height: 20px;
}
.dashboard-block .dashboard-nav li span {
  margin-bottom: -3px;
  max-width: calc(100% - 36px);
}
.dashboard-block .dashboard-nav li.active {
  background-color: #E1F0EC;
}
.dashboard-block .dashboard-body {
  display: flex;
}
.dashboard-block .dashboard-content {
  min-height: 75vh;
  width: 100%;
}
.dashboard-block .dashboard-content .dashboard-single-content {
  display: none;
  padding: 30px 5%;
}
.dashboard-block .dashboard-content .dashboard-single-content.active {
  display: flex;
  flex-direction: column;
}
.dashboard-block .dashboard-content .dashboard-single-content h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.125rem;
  margin-bottom: 32px;
}
.dashboard-block .dashboard-content .dashboard-single-content h2 svg {
  width: 24px;
  height: 22px;
}
.dashboard-block .dashboard-content .dashboard-single-content h2 span {
  margin-bottom: -3px;
}

.success-box {
  padding: 10px 25px;
  border: 2px solid #61BEA6;
  border-radius: 50px;
  margin-bottom: 15px;
  width: fit-content;
}
.success-box p {
  font-weight: 500;
  color: #61BEA6;
}

.favs-block, .visites-block {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 25px;
}
.favs-block .single-fav, .favs-block .single-visite, .visites-block .single-fav, .visites-block .single-visite {
  display: flex;
  flex-direction: column;
  width: 370px;
  max-width: 100%;
}
.favs-block .single-fav .image, .favs-block .single-visite .image, .visites-block .single-fav .image, .visites-block .single-visite .image {
  position: relative;
  display: block;
  height: 230px;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.favs-block .single-fav .image img, .favs-block .single-visite .image img, .visites-block .single-fav .image img, .visites-block .single-visite .image img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.favs-block .single-fav .image .fav-btn, .favs-block .single-visite .image .fav-btn, .visites-block .single-fav .image .fav-btn, .visites-block .single-visite .image .fav-btn {
  position: absolute;
  top: 13px;
  right: 13px;
  height: 46px;
  width: 46px;
  background-color: #FFF;
  border-radius: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.favs-block .single-fav .image:hover img, .favs-block .single-visite .image:hover img, .visites-block .single-fav .image:hover img, .visites-block .single-visite .image:hover img {
  transform: scale(1.1);
}
.favs-block .single-fav .selected-appart-title, .favs-block .single-visite .selected-appart-title, .visites-block .single-fav .selected-appart-title, .visites-block .single-visite .selected-appart-title {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 13px;
  font-size: 1.25rem;
}
.favs-block .single-fav .selected-appart-title span, .favs-block .single-visite .selected-appart-title span, .visites-block .single-fav .selected-appart-title span, .visites-block .single-visite .selected-appart-title span {
  border-right-color: #61BEA6;
  padding-right: 10px;
  margin-right: 10px;
}
.favs-block .single-fav .selected-appart-title span:first-child, .favs-block .single-visite .selected-appart-title span:first-child, .visites-block .single-fav .selected-appart-title span:first-child, .visites-block .single-visite .selected-appart-title span:first-child {
  padding-left: 0;
}
.favs-block .single-fav .addr, .favs-block .single-visite .addr, .visites-block .single-fav .addr, .visites-block .single-visite .addr {
  margin-bottom: 5px;
  font-size: 1rem;
}
.favs-block .single-fav .dispo, .favs-block .single-visite .dispo, .visites-block .single-fav .dispo, .visites-block .single-visite .dispo {
  font: 800 1rem/1.2em "Libre Franklin", sans-serif;
  color: #61BEA6;
}
.favs-block .single-fav .dispo.not-dispo, .favs-block .single-visite .dispo.not-dispo, .visites-block .single-fav .dispo.not-dispo, .visites-block .single-visite .dispo.not-dispo {
  color: #EE3F3F;
}
.favs-block .single-fav, .visites-block .single-fav {
  justify-content: space-between;
}
.favs-block .visit-checkbox-wrap, .visites-block .visit-checkbox-wrap {
  border-top: 1px solid rgba(36, 39, 37, 0.3);
  margin-top: 8px;
  padding-top: 5px;
}

.single-content-infos .form-row {
  margin-top: 0 !important;
}

.scroll-icon {
  width: fit-content;
  cursor: pointer;
}
.scroll-icon svg path {
  transition: all 0.3s ease-in-out;
}
.scroll-icon:hover svg path {
  fill: #EEA93F;
}

.page-banner h1 {
  max-width: 550px;
}
.page-banner .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 150px;
}
.page-banner .wrapper .content-side, .page-banner .wrapper .right-side {
  width: calc(50% - 50px);
}
.page-banner .content-side {
  padding: 170px 0 150px;
}
.page-banner .right-side {
  position: relative;
}
.page-banner .right-side:before, .page-banner .right-side:after {
  content: "";
  position: absolute;
  transform: translate(-50%, calc(50% - 5px));
  border: 2px solid #88d5c1;
  border-radius: 100%;
  animation: floating 5s ease-in-out infinite;
}
.page-banner .right-side:before {
  left: 65%;
  bottom: 50%;
  height: 25vw;
  width: 25vw;
}
.page-banner .right-side:after {
  left: 86%;
  bottom: 76%;
  height: 12vw;
  width: 12vw;
  border-color: #EEA93F;
  animation-duration: 4.5s;
}
.page-banner .right-side .image {
  position: absolute;
  z-index: 2;
  right: -8vw;
  bottom: 0;
  width: 130%;
}
.page-banner .right-side .image img {
  display: block;
}
.page-banner .scroll-icon {
  margin-top: 70px;
  display: block;
}
.page-banner.type-1 .image {
  right: -11vw;
  bottom: -110px;
}
.page-banner.type-2 .wrapper {
  min-height: 670px;
}
.page-banner.type-2 .right-side:before, .page-banner.type-2 .right-side:after {
  display: none;
}
.page-banner.type-2 .image {
  height: 40vw;
  width: 40vw;
  max-height: 700px;
  max-width: 700px;
  overflow: visible;
  bottom: -40px;
}
.page-banner.type-2 .image:before, .page-banner.type-2 .image:after {
  content: "";
  position: absolute;
  border: 2px solid #88d5c1;
  border-radius: 100%;
}
.page-banner.type-2 .image:before {
  left: 5%;
  top: 5%;
  height: 90%;
  width: 90%;
}
.page-banner.type-2 .image:after {
  left: -12%;
  bottom: 20%;
  height: 28%;
  width: 28%;
  border-color: #EEA93F;
  transform: translateY(5px);
  animation: floatinghome 5s ease-in-out infinite;
}
.page-banner.type-2 .image img {
  height: 100%;
  width: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.page-banner.type-4 .right-side:before {
  left: 48%;
  bottom: 50%;
  height: 675px;
  width: 675px;
  border-color: #EEA93F;
}
.page-banner.type-4 .right-side:after {
  left: 9%;
  bottom: 88%;
  height: 7.5vw;
  width: 7.5vw;
  border-color: #88d5c1;
}
.page-banner.type-4 .image {
  bottom: 0;
  right: -9vw;
  width: 126%;
}
.page-banner.type-3 .right-side:before {
  left: 48%;
  bottom: 48%;
  height: 675px;
  width: 675px;
  border-color: #EEA93F;
}
.page-banner.type-3 .right-side:after {
  left: 9%;
  bottom: 86%;
  height: 7.5vw;
  width: 7.5vw;
  border-color: #88d5c1;
}
.page-banner.type-3 .image {
  bottom: -20px;
  right: -9vw;
  width: 126%;
  max-height: 100%;
}
.page-banner.type-3 .image img {
  max-height: 100%;
}

.page-template-outils-pratiques .page-banner.type-1 .image {
  right: -51vw;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
  animation: handIn 0.75s ease-in-out 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

@keyframes floating {
  0% {
    transform: translate(-50%, calc(50% - 5px));
  }
  50% {
    transform: translate(-50%, calc(50% + 5px));
  }
  100% {
    transform: translate(-50%, calc(50% - 5px));
  }
}
@keyframes handIn {
  0% {
    right: -51vw;
    transform: rotate(45deg);
  }
  100% {
    right: -11vw;
    transform: rotate(0deg);
  }
}
.sliding-title {
  width: fit-content;
  padding: 80px 0;
  font-size: 9.375rem;
  font-weight: 800;
  color: #FFF;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #61BEA6;
  white-space: nowrap;
  transform: translateX(0);
  animation-timing-function: linear;
  animation: sliding-text 62s linear 0s infinite normal;
}

@keyframes sliding-text {
  100% {
    transform: translateX(-60%);
  }
}
.tools-section {
  background-color: #E1F0EC;
  padding-top: 0 !important;
}
.tools-section .sliding-title {
  color: transparent;
}

.tools-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 50px 25px;
}
.tools-wrap .single-tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 360px;
  background-color: #FFF;
  border-radius: 20px;
  padding: 80px 35px;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(7, 44, 38, 0.16);
  box-shadow: 3px 3px 6px 0 rgba(7, 44, 38, 0.16);
}
.tools-wrap .single-tool img {
  height: 75px;
  max-width: 85%;
  margin-bottom: 80px;
  object-fit: contain;
}
.tools-wrap .single-tool h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.tools-wrap .single-tool h4 {
  font-size: 1.5625rem;
  font-weight: 800;
}
.tools-wrap .single-tool .the-content {
  margin-top: 28px;
  margin-bottom: 40px;
}
.tools-wrap .single-tool .btn, .tools-wrap .single-tool form .gform_footer .gform_button, form .gform_footer .tools-wrap .single-tool .gform_button, .tools-wrap .single-tool button[type=submit] {
  margin-top: auto;
}

.refer-section {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #e1f0ec 49.9999%, #61bea6 50%);
}
.refer-section form {
  display: flex;
  align-items: stretch;
}
.refer-section form .left-side, .refer-section form .right-side {
  width: 50%;
  padding: 150px 128px;
}
.refer-section form h2 {
  margin-bottom: 10px;
}
.refer-section form .left-side {
  padding-left: 0;
  background-color: #E1F0EC;
  position: relative;
}
.refer-section form .left-side:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -25px;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 40px 25px;
  border-color: transparent transparent transparent #E1F0EC;
}
.refer-section form .left-side {
  z-index: 1;
}
.refer-section form .right-side {
  position: relative;
  padding-right: 0;
  background-color: #61BEA6;
}
.refer-section form .right-side h2 {
  color: #FFF;
}
.refer-section form .right-side h3 {
  color: #242725;
}
.refer-section form input {
  margin-bottom: 15px;
}
.refer-section form .input-date-placeholder-wrap {
  position: relative;
  display: block;
  height: 52px;
}
.refer-section form .input-date-placeholder-wrap .date-input-hidden {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.refer-section form .input-date-placeholder-wrap input.date-input-hidden {
  color: transparent;
}
.refer-section form .input-date-placeholder-wrap .date-placeholder {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: grey;
  padding: 0 20px;
  font-weight: 400 !important;
  z-index: 0;
}
.refer-section form .input-date-placeholder-wrap.has-value .date-placeholder {
  opacity: 0;
}
.refer-section form .input-date-placeholder-wrap.has-value .date-display {
  color: #242725;
}
.refer-section form .form-footer {
  position: relative;
  margin-top: 40px;
}
.refer-section form .form-footer .form-message {
  position: absolute;
  top: calc(100% + 20px);
  display: block !important;
  font-weight: bold;
  margin: 0 5px;
  opacity: 0;
  pointer-events: none;
  transition: all 1.2s ease-in-out;
}
.refer-section form .form-footer .form-message.error {
  color: #EE3F3F;
}
.refer-section form .form-footer .form-message.success {
  color: #167160;
}

.contact-section .wrapper {
  gap: 50px 0;
}

.contact-content .contact-info {
  display: flex;
  gap: 15px;
  margin-top: 26px;
}
.contact-content .contact-info svg {
  height: 28px;
  width: 38px;
  margin-top: 2px;
}
.contact-content .contact-info p {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 4px;
}
.contact-content .contact-info.hours svg {
  height: 24px;
}
.contact-content .socials-wrap {
  margin-top: 30px;
  gap: 15px;
}
.contact-content .socials-wrap svg path {
  fill: #61BEA6;
  transition: all 0.3s ease-in-out;
}
.contact-content .socials-wrap a:hover svg path {
  fill: #EEA93F;
}

.contact-map-wrap #map {
  width: 100%;
  height: 850px;
  max-height: 90vw;
}

.page-template-career .page-banner.type-4 .right-side:before {
  border-color: #88d5c1;
}
.page-template-career .page-banner.type-4 .right-side:after {
  border-color: #EEA93F;
}

.section-career {
  padding-bottom: 60px;
}

.postes-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}

.single-poste-block {
  position: relative;
  display: block;
  width: calc(50% - 15px);
  height: 540px;
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.16);
}
.single-poste-block img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: unset;
  transition: all 0.3s ease-in-out;
}
.single-poste-block h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  background-color: #22917C;
  padding: 25px 50px;
  margin-bottom: 0;
  font: 700 1.5625rem/1.2em "Libre Franklin", sans-serif;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.single-poste-block:hover img {
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
}
.single-poste-block:hover h2 {
  background-color: #EEA93F;
}

.section-why {
  padding-bottom: 200px;
}

.why-wrap {
  margin-top: 60px;
  gap: 20px;
}

.single-why {
  align-items: center;
  padding: 40px 30px 40px 40px;
  width: calc(50% - 10px);
  border-radius: 20px;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.single-why svg {
  width: 70px;
  max-height: 100px;
  margin-right: 50px;
  height: fit-content;
}
.single-why .content-side {
  width: calc(100% - 120px);
}
.single-why h3 {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

#postuler {
  margin: 75px auto;
  padding: 125px 0;
}

.poste-desc {
  background-color: #E1F0EC;
}
.poste-desc .wrapper {
  display: flex;
  justify-content: space-between;
}
.poste-desc .left-side {
  width: 50%;
}
.poste-desc .right-side {
  width: 35%;
}

.single-desc:not(:first-child) {
  margin-top: 50px;
}

.perks-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.single-perk {
  background-color: #FFF;
  padding: 15px 35px;
  border-radius: 20px;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(7, 44, 38, 0.16);
  box-shadow: 3px 3px 6px 0 rgba(7, 44, 38, 0.16);
  display: flex;
  align-items: center;
  gap: 30px;
}
.single-perk svg {
  width: 60px;
  max-height: 60px;
}

.remove-file {
  margin-right: 10px;
  font-size: 22px;
  color: #EE3F3F;
  transform: rotate(45deg);
  display: inline-block;
  cursor: pointer;
}

.reset-pass-page form .error, .reset-pass-page form .success {
  font-weight: 500;
}
.reset-pass-page form .error {
  color: #EE3F3F;
}
.reset-pass-page form .success {
  color: #61BEA6;
}
.reset-pass-page form button[type=submit] {
  margin-top: 0;
}
.reset-pass-page form[data-message=reset-password-invalid-email] .reset-password-invalid-email {
  display: block;
}
.reset-pass-page form[data-message=error-field-required] .error-field-required {
  display: block;
}
.reset-pass-page form[data-message=success-reset-password-email-sent] .success-reset-password-email-sent {
  display: block;
}
.reset-pass-page form[data-message=error-passwords-dont-match] .error-passwords-dont-match {
  display: block;
}
.reset-pass-page form[data-message=success-password-reset] .success-password-reset {
  display: block;
}
.reset-pass-page form[data-message=error-passwords-weak] .error-passwords-weak {
  display: block;
}

.filters-wrap {
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}
.filters-wrap .select-wrap {
  width: 330px;
  border: 1px solid #22917C;
}
.filters-wrap .select-wrap .select-options {
  left: -1px;
  width: calc(100% + 2px);
  border: 1px solid transparent;
}
.filters-wrap .select-wrap .select-options.columned-options .select-input-wrap .checkbox-wrap {
  width: 100%;
}
.filters-wrap .select-wrap.active .select-options {
  border-color: #22917C;
}

.blog-order {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.blog-order p {
  display: none;
  position: relative;
  top: 3px;
}
.blog-order p.active {
  display: inline-block;
}
.blog-order svg {
  transition: all 0.3s ease-in-out;
}
.blog-order svg g, .blog-order svg path {
  transition: inherit;
}
.blog-order.order-asc svg #first-arrow {
  opacity: 0.4 !important;
}
.blog-order.order-asc svg #first-arrow path {
  stroke: #EEA93F !important;
}
.blog-order.order-asc svg #second-arrow {
  opacity: 1 !important;
}
.blog-order.order-asc svg #second-arrow path {
  stroke: #EEA93F !important;
}

.posts-teasers {
  gap: 27px;
}

.post-teaser {
  width: calc(33.3333% - 18px);
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease-in-out;
}
.post-teaser h4 {
  margin-bottom: 4px;
}
.post-teaser .post-thumb {
  position: relative;
  height: 310px;
  width: 100%;
  overflow: hidden;
  transition: inherit;
}
.post-teaser .post-thumb:before {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 90%);
}
.post-teaser .post-thumb img {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 100%;
  max-width: unset;
  object-fit: cover;
  object-position: center;
  transition: inherit;
}
.post-teaser .post-thumb .project-logo {
  position: absolute;
  z-index: 3;
  left: 20px;
  top: 20px;
  height: 44px;
  max-width: 70%;
}
.post-teaser .post-thumb .project-logo img {
  object-fit: contain;
  object-position: left;
}
.post-teaser .post-content {
  padding: 30px 40px;
  margin-bottom: auto;
}
.post-teaser .the-content {
  margin-top: 25px;
}
.post-teaser .read-more {
  display: flex;
  flex-wrap: wrap;
  align-content: end;
  margin-top: 5px;
  height: 60px;
  transition: inherit;
}
.post-teaser .read-more .read-more-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #61BEA6;
  padding: 0 15px;
  height: 50%;
  width: 100%;
  transition: inherit;
}
.post-teaser .read-more span {
  color: #FFF;
  opacity: 0;
  transition: inherit;
}
.post-teaser:hover .post-thumb > img {
  top: -5%;
  left: -5%;
  height: 110%;
  width: 110%;
}
.post-teaser:hover .read-more-block {
  height: 100%;
}
.post-teaser:hover .read-more-block span {
  opacity: 1;
}

.blog-wrap {
  transition: all 0.3s ease-in-out;
}
.blog-wrap.loading {
  opacity: 0.4;
  pointer-events: none;
}

.blog.slice {
  padding-top: 40px;
}
.blog .page-banner.type-4 .right-side:before {
  border-color: #C1EDE0;
  height: 235px;
  width: 235px;
  left: 15%;
  bottom: 67%;
  z-index: 3;
}
.blog .page-banner.type-4 .right-side:after {
  border-color: #EEA93F;
  height: 125px;
  width: 125px;
  left: 88%;
  bottom: 18%;
  z-index: 3;
  animation: floatinghome 5s ease-in-out infinite;
}
.blog .page-banner.type-4 .image {
  right: -5vw;
  width: 100%;
  bottom: 50%;
  transform: translateY(50%);
}
.blog .pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-top: 65px;
}
.blog .pagination .page-numbers {
  color: #22917C;
  font: 700 1.25rem/1.1em "Libre Franklin", sans-serif;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .pagination .page-numbers:not(.current, .dots) {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.blog .pagination .page-numbers:not(.current, .dots):hover {
  color: #61BEA6;
}
.blog .pagination .page-numbers.current {
  color: #61BEA6;
  border: 1px solid #61BEA6;
  border-radius: 50px;
}

.blog-content {
  padding-top: 0 !important;
  background-color: #E1F0EC;
}
.blog-content .sliding-title {
  color: transparent;
}
.blog-content .wrapper-small {
  background-color: white;
  border-radius: 20px;
  padding: 60px 120px;
}
.blog-content .wrapper-small > div {
  margin: 40px 0;
}
.blog-content .the-content ul {
  margin-left: 50px;
}

.post-content-wrap {
  position: relative;
  overflow: hidden;
}
.post-content-wrap .texture-top, .post-content-wrap .texture-bottom {
  position: absolute;
  top: 150px;
  left: -20vw;
  width: 140vw;
  height: 400px;
  overflow: hidden;
}
.post-content-wrap .texture-top:before, .post-content-wrap .texture-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  border: 1px solid #61BEA6;
  width: 100%;
  height: 80vw;
  border-radius: 100%;
}
.post-content-wrap .texture-bottom {
  bottom: 150px;
  top: unset;
}
.post-content-wrap .texture-bottom:before {
  top: unset;
  bottom: 0;
}

.content-gal {
  gap: 24px;
}
.content-gal .image {
  position: relative;
  width: calc(50% - 12px);
  height: 285px;
  border-radius: 20px;
  overflow: hidden;
}
.content-gal .image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.project-apparts h2 {
  max-width: 720px;
}

.blog-next-prev {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease-in-out;
}
.back-btn svg {
  position: relative;
  right: 0;
  transform: rotate(90deg);
  transition: inherit;
}
.back-btn svg path {
  transition: all 0.3s ease-in-out;
}
.back-btn:hover {
  color: #22917C;
}
.back-btn:hover svg {
  right: 4px;
}
.back-btn:hover svg path {
  stroke: #22917C;
}
.back-btn.next-btn svg {
  transform: rotate(-90deg);
}
.back-btn.next-btn:hover svg {
  right: -4px;
}

.single-post .page-banner .back-btn {
  margin-bottom: 40px;
}
.single-post .page-banner .content-side {
  position: relative;
  top: -20px;
}

.section-rent-form {
  padding-top: 50px;
}
.section-rent-form .form-intro {
  margin-bottom: 50px;
}
.section-rent-form form .gform_body .gform_fields .gfield.gfield--width-half {
  max-width: 100%;
}
.section-rent-form form .gform_body .gform_fields .gfield .gsection_title {
  margin-top: 30px;
}
.section-rent-form form .gform_body .gform_fields .gfield.gfield--type-radio .gfield_label {
  padding-top: 10px;
  padding-bottom: 5px;
}
.section-rent-form form .gform_body .gform_fields .gfield .gfield_label {
  margin-top: 20px;
}
.section-rent-form form .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  display: inline-block;
  color: #EE3F3F;
  font-size: 1.125rem;
}
.section-rent-form form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload:before, .section-rent-form form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload:after {
  display: none;
}
.section-rent-form #field_7_283, .section-rent-form #field_17_283 {
  display: flex;
  align-items: end;
}
.section-rent-form #field_7_283 .ginput_container_date, .section-rent-form #field_17_283 .ginput_container_date {
  width: 100%;
}

.wrapper-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8%;
}
.wrapper-404:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 600px;
  width: 600px;
  bottom: -300px;
  right: -130px;
  border-radius: 600px;
  border: 2px solid #61BEA6;
}
.wrapper-404 .image {
  position: relative;
}
.wrapper-404 .image img {
  position: relative;
  z-index: 2;
  width: 31vw;
}
.wrapper-404 .image:before, .wrapper-404 .image:after {
  content: "";
  position: absolute;
  left: -50px;
  top: -130px;
  height: 220px;
  width: 220px;
  border-radius: 220px;
  border: 2px solid #EEA93F;
}
.wrapper-404 .image:after {
  border-color: #88d5c1;
  height: 80px;
  width: 80px;
  top: 10px;
  left: -80px;
}

.page-slice {
  padding-top: 70px;
}
.page-slice h1 {
  text-align: center;
  font-size: 3.4375rem;
  margin-bottom: 70px;
}

.city-link {
  font-size: clamp(22px, 4vw, 25px);
  line-height: 1;
}

.search-popup-title {
  font: 600 2.5rem/1.1em "Libre Franklin", sans-serif;
  margin-bottom: 30px;
  color: #22917C;
}

.select-wrap .sub-option p {
  display: flex;
  align-items: center;
}
.select-wrap .sub-option p.filter-price-title, .select-wrap .sub-option p.filter-price-range, .select-wrap .sub-option p.filter-bathrooms-title {
  font: 600 1rem/1 "Libre Franklin", sans-serif;
  color: #434244;
  font-variant-numeric: lining-nums tabular-nums;
}
.select-wrap .sub-option p.filter-price-title svg, .select-wrap .sub-option p.filter-price-range svg, .select-wrap .sub-option p.filter-bathrooms-title svg {
  margin-right: 12px;
}
.select-wrap .sub-option p.filter-price-title span, .select-wrap .sub-option p.filter-price-range span, .select-wrap .sub-option p.filter-bathrooms-title span {
  position: relative;
  top: 2px;
}
.select-wrap .sub-option p.filter-price-range {
  font-size: 0.875rem;
  font-weight: 700;
}

.vero-louis-section {
  padding-bottom: 50px;
}
.vero-louis-section .wrapper {
  background-color: #EEECE1;
  overflow: hidden;
  border-radius: 20px;
}
.vero-louis-section .col-content {
  width: calc(40% - 50px);
  margin-inline: auto;
  padding: 60px 0;
}
.vero-louis-section .col-content h2 {
  font: 700 1.875rem/1.2em "Libre Franklin", sans-serif;
  color: #025184;
  text-wrap: balance;
}
.vero-louis-section .col-content .the-content p {
  color: #025184;
  font-weight: 500;
}
.vero-louis-section .col-content .btns-container {
  gap: 20px;
  margin-top: 30px;
}
.vero-louis-section .col-content .btns-container .btn, .vero-louis-section .col-content .btns-container form .gform_footer .gform_button, form .gform_footer .vero-louis-section .col-content .btns-container .gform_button, .vero-louis-section .col-content .btns-container button[type=submit] {
  height: 45px;
  margin-top: 0;
}
.vero-louis-section .col-image {
  position: relative;
  width: 50%;
  height: 100%;
}
.vero-louis-section .col-image .bg-image {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transform: scaleX(-1);
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  overflow: hidden;
}
.vero-louis-section .col-image .bg-image:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  aspect-ratio: 1/1;
  translate: -50% -50%;
  width: 110%;
  height: auto;
  background-color: #EEECE1;
  border-radius: 50%;
  opacity: 0.6;
}
.vero-louis-section .col-image .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vero-louis-section .col-image .logo {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 400px;
  margin-inline: auto;
}

.newsletter-section {
  background-color: #E1F0EC;
}
.newsletter-section.slice {
  padding: 50px 0;
}
.newsletter-section .wrapper {
  max-width: 650px;
  margin-inline: auto;
}
.newsletter-section .wrapper h2 {
  margin-bottom: 10px;
}
.newsletter-section .wrapper .the-content {
  margin-bottom: 25px;
}
.newsletter-section .wrapper .the-content p {
  font: 600 1.5rem/1.2em "Libre Franklin", sans-serif;
  color: #22917C;
}
.newsletter-section form .gform_body .gform_fields {
  margin-inline: auto;
}
.newsletter-section form .gform_footer {
  justify-content: center;
}
.newsletter-section .gform_confirmation_wrapper .gform_confirmation_message p {
  text-align: center;
}

.open-house-section.slice {
  padding-top: 0;
}
.open-house-section .open-house-card {
  overflow: hidden;
  margin-top: 0;
}
.open-house-section .open-house-card:before {
  content: "";
  position: absolute;
  right: -250px;
  top: 50px;
  width: 40%;
  height: 100%;
  background-color: #FFF;
  rotate: 18deg;
  scale: 1.5;
}
.open-house-section h2 {
  margin-bottom: 30px;
}
.open-house-section .open-house-items {
  row-gap: 30px;
}
.open-house-section .open-house-items .btn, .open-house-section .open-house-items form .gform_footer .gform_button, form .gform_footer .open-house-section .open-house-items .gform_button, .open-house-section .open-house-items button[type=submit] {
  margin-top: 20px;
}

.open-house-card {
  background-color: #22917C;
  box-shadow: 4px 2px 4.6px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  container-type: inline-size;
  container-name: open-house-card;
}
.open-house-card h2 {
  position: relative;
  font: 900 3.125rem/1.2em "Libre Franklin", sans-serif;
  color: #FFF;
  max-width: 300px;
  text-transform: uppercase;
}
.open-house-card h2:before {
  content: "";
  position: absolute;
  width: 15px;
  right: 15px;
  top: 0;
  height: 50px;
  width: 50px;
  background: url("../images/open-house/house-icon.svg") no-repeat center center;
  background-size: contain;
}
@container open-house-card (max-width: 290px) {
  .open-house-card h3 {
    font-size: 1.875rem;
  }
  .open-house-card h3:before {
    height: 30px;
    width: 30px;
    left: 140px;
  }
}
.open-house-card p {
  position: relative;
  color: #FFF;
  padding-left: 25px;
}
.open-house-card p.date {
  font: 700 1rem/1.2em "Libre Franklin", sans-serif;
  margin-bottom: 10px;
}
.open-house-card p.date:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  background: url("../images/open-house/date-icon.svg") no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
.open-house-card p.time {
  font: 400 1rem/1.2em "Libre Franklin", sans-serif;
  margin-bottom: 10px;
}
.open-house-card p.time:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  background: url("../images/open-house/time-icon.svg") no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
.open-house-card p.address {
  font: 400 1rem/1.2em "Libre Franklin", sans-serif;
}
.open-house-card p.address:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  background: url("../images/open-house/pin-icon.svg") no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}

.refer-banner {
  min-height: 720px;
  display: flex;
  align-items: stretch;
  height: 100%;
}
.refer-banner h1 {
  text-wrap: balance;
}
.refer-banner .wrapper {
  height: auto;
}
.refer-banner .wrapper .row, .refer-banner .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .refer-banner .wrapper .ginput_container.ginput_container_address, .refer-banner .wrapper form .gform_body .gform_fields, form .gform_body .refer-banner .wrapper .gform_fields {
  height: 100%;
}
.refer-banner .wrapper .col-12, .refer-banner .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .refer-banner .wrapper .ginput_left, .refer-banner .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .refer-banner .wrapper .ginput_right, .refer-banner .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .refer-banner .wrapper .ginput_full, .refer-banner .wrapper form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .refer-banner .wrapper .gfield.gfield--width-full, .refer-banner .wrapper form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .refer-banner .wrapper .gfield.gfield--width-half, .refer-banner .wrapper form .gform_body .gform_fields .gfield.gfield--width-third, form .gform_body .gform_fields .refer-banner .wrapper .gfield.gfield--width-third {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.refer-banner .wrapper .col-12:nth-child(2), .refer-banner .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:nth-child(2), form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .refer-banner .wrapper .ginput_left:nth-child(2), .refer-banner .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:nth-child(2), form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .refer-banner .wrapper .ginput_right:nth-child(2), .refer-banner .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:nth-child(2), form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .refer-banner .wrapper .ginput_full:nth-child(2), .refer-banner .wrapper form .gform_body .gform_fields .gfield.gfield--width-full:nth-child(2), form .gform_body .gform_fields .refer-banner .wrapper .gfield.gfield--width-full:nth-child(2), .refer-banner .wrapper form .gform_body .gform_fields .gfield.gfield--width-half:nth-child(2), form .gform_body .gform_fields .refer-banner .wrapper .gfield.gfield--width-half:nth-child(2), .refer-banner .wrapper form .gform_body .gform_fields .gfield.gfield--width-third:nth-child(2), form .gform_body .gform_fields .refer-banner .wrapper .gfield.gfield--width-third:nth-child(2) {
  justify-content: flex-end;
}
.refer-banner .content-side {
  position: relative;
  z-index: 3;
}
.refer-banner .content-side h3, .refer-banner .content-side h1, .refer-banner .content-side .the-content {
  max-width: 550px;
}
.refer-banner .image-text {
  position: relative;
  z-index: 2;
  padding: 30px 0;
}
.refer-banner .image-text .image-shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 115%;
  height: 100%;
  background: url("../images/refer-shape.png") no-repeat left center;
  background-size: cover;
  z-index: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.refer-banner .image-text .image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.refer-banner .image-text .image .img-container {
  position: relative;
}
.refer-banner .image-text .image .img-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.refer-banner .image-text .image .img-container {
  position: relative;
}
.refer-banner .image-text .image .img-container > img,
.refer-banner .image-text .image .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.refer-banner .image-text .image .img-container {
  height: 100%;
}
.refer-banner .image-text .image .image-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.refer-banner .image-text .image .image-carousel .carousel-image {
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.refer-banner .image-text .image .image-carousel .carousel-image.active {
  opacity: 1;
}
.refer-banner .image-text .image .image-carousel .carousel-image img {
  width: 100%;
  height: 100%;
  object-position: bottom center;
  translate: 50px 0;
}
.refer-banner .image-text h2 {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  position: relative;
  z-index: 2;
}
.refer-banner .image-text h2 br {
  display: contents;
}
.refer-banner .image-text h2 span.highlight {
  font: 900 6.25rem/1.2em "Libre Franklin", sans-serif;
  text-shadow: -2px 10px 20px rgba(0, 0, 0, 0.8);
  color: #FFF;
  text-transform: uppercase;
}
.refer-banner .image-text h2 span.highlight:nth-of-type(3) {
  translate: 20px 0;
}
.refer-banner .image-text h2 span:not(.highlight) {
  border-radius: 18px;
  padding: 2px 15px;
  border: 2px solid #FFF;
  font: 500 1.5625rem/1.2em "Libre Franklin", sans-serif;
  text-transform: initial;
  width: fit-content;
  color: #FFF;
}
.refer-banner .image-text h2 span:not(.highlight):last-of-type {
  translate: 10px 0;
  align-self: flex-end;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  z-index: 99;
  padding: 30px 0;
  transition: all 0.3s ease-in-out;
  background: #FFF;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrapper .logo {
  position: relative;
  height: 60px;
  width: 240px;
  transition: all 0.3s ease-in-out;
}
header .wrapper .logo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
header .wrapper .logo img.logo-light {
  opacity: 0;
}
header .right-side {
  display: flex;
  align-items: center;
}
header .right-side .lang-item {
  list-style: none;
  text-transform: uppercase;
  color: #22917C;
  margin-right: 15px;
  margin-left: 35px;
  transition: all 0.3s ease-in-out;
}
header .right-side .btn, header .right-side form .gform_footer .gform_button, form .gform_footer header .right-side .gform_button, header .right-side button[type=submit] {
  margin-top: 0;
}
header .right-side .btn.btn-yellow:hover, header .right-side form .gform_footer .btn-yellow.gform_button:hover, form .gform_footer header .right-side .btn-yellow.gform_button:hover, header .right-side button.btn-yellow[type=submit]:hover {
  color: #EEA93F;
}
header .right-side .btn.btn-yellow:hover svg path, header .right-side form .gform_footer .btn-yellow.gform_button:hover svg path, form .gform_footer header .right-side .btn-yellow.gform_button:hover svg path, header .right-side button.btn-yellow[type=submit]:hover svg path {
  fill: #EEA93F;
}
header .right-side .login-link {
  margin-right: 25px;
  color: #22917C;
  transition: all 0.3s ease-in-out;
}
header .right-side .login-link svg {
  height: 15px;
  width: 15px;
  margin-right: 7px;
}
header .right-side .login-link svg path {
  fill: #22917C;
  transition: all 0.3s ease-in-out;
}
header.shrink:not(.active) {
  height: fit-content;
  padding: 15px 0;
  -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
}
header.shrink:not(.active) .logo {
  height: 40px;
}
header.shrink:not(.active) .mobile-nav-trigger span {
  background-color: #22917C;
}
header.shrink:not(.active) .user-menu .dashboard-link {
  color: #22917C;
}
header.shrink:not(.active) .user-menu .dashboard-link svg {
  height: 15px;
  width: 15px;
}
header.shrink:not(.active) .user-menu .dashboard-link svg path {
  fill: #22917C;
}
header.shrink:not(.active) .right-side .lang-item {
  color: #22917C;
}

.home header, .page-template-login header {
  background-color: transparent;
}
.home header .logo img, .page-template-login header .logo img {
  transition: all 0.3s ease-in-out;
}
.home header .logo img.logo-dark, .page-template-login header .logo img.logo-dark {
  opacity: 0;
}
.home header .logo img.logo-light, .page-template-login header .logo img.logo-light {
  opacity: 1;
}
.home header .mobile-nav-trigger span, .page-template-login header .mobile-nav-trigger span {
  background-color: #FFF;
}
.home header .user-menu .dashboard-link, .page-template-login header .user-menu .dashboard-link {
  color: #FFF;
}
.home header .user-menu .dashboard-link svg path, .page-template-login header .user-menu .dashboard-link svg path {
  fill: #FFF;
}
.home header .right-side .btn.btn-yellow:hover, .home header .right-side form .gform_footer .btn-yellow.gform_button:hover, form .gform_footer .home header .right-side .btn-yellow.gform_button:hover, .home header .right-side button.btn-yellow[type=submit]:hover, .page-template-login header .right-side .btn.btn-yellow:hover, .page-template-login header .right-side form .gform_footer .btn-yellow.gform_button:hover, form .gform_footer .page-template-login header .right-side .btn-yellow.gform_button:hover, .page-template-login header .right-side button.btn-yellow[type=submit]:hover {
  color: #FFF;
}
.home header .right-side .btn.btn-yellow:hover svg path, .home header .right-side form .gform_footer .btn-yellow.gform_button:hover svg path, form .gform_footer .home header .right-side .btn-yellow.gform_button:hover svg path, .home header .right-side button.btn-yellow[type=submit]:hover svg path, .page-template-login header .right-side .btn.btn-yellow:hover svg path, .page-template-login header .right-side form .gform_footer .btn-yellow.gform_button:hover svg path, form .gform_footer .page-template-login header .right-side .btn-yellow.gform_button:hover svg path, .page-template-login header .right-side button.btn-yellow[type=submit]:hover svg path {
  fill: #FFF;
}
.home header .right-side .lang-item, .page-template-login header .right-side .lang-item {
  color: #FFF;
}
.home header.shrink:not(.active), .page-template-login header.shrink:not(.active) {
  background-color: #FFF;
}
.home header.shrink:not(.active) .logo img.logo-dark, .page-template-login header.shrink:not(.active) .logo img.logo-dark {
  opacity: 1;
}
.home header.shrink:not(.active) .logo img.logo-light, .page-template-login header.shrink:not(.active) .logo img.logo-light {
  opacity: 0;
}
.home header.shrink:not(.active) .right-side .btn.btn-yellow:hover, .home header.shrink:not(.active) .right-side form .gform_footer .btn-yellow.gform_button:hover, form .gform_footer .home header.shrink:not(.active) .right-side .btn-yellow.gform_button:hover, .home header.shrink:not(.active) .right-side button.btn-yellow[type=submit]:hover, .page-template-login header.shrink:not(.active) .right-side .btn.btn-yellow:hover, .page-template-login header.shrink:not(.active) .right-side form .gform_footer .btn-yellow.gform_button:hover, form .gform_footer .page-template-login header.shrink:not(.active) .right-side .btn-yellow.gform_button:hover, .page-template-login header.shrink:not(.active) .right-side button.btn-yellow[type=submit]:hover {
  color: #EEA93F;
}
.home header.shrink:not(.active) .right-side .btn.btn-yellow:hover svg path, .home header.shrink:not(.active) .right-side form .gform_footer .btn-yellow.gform_button:hover svg path, form .gform_footer .home header.shrink:not(.active) .right-side .btn-yellow.gform_button:hover svg path, .home header.shrink:not(.active) .right-side button.btn-yellow[type=submit]:hover svg path, .page-template-login header.shrink:not(.active) .right-side .btn.btn-yellow:hover svg path, .page-template-login header.shrink:not(.active) .right-side form .gform_footer .btn-yellow.gform_button:hover svg path, form .gform_footer .page-template-login header.shrink:not(.active) .right-side .btn-yellow.gform_button:hover svg path, .page-template-login header.shrink:not(.active) .right-side button.btn-yellow[type=submit]:hover svg path {
  fill: #EEA93F;
}

.user-menu {
  position: relative;
  margin-right: 40px;
}
.user-menu + .lang-item {
  margin-left: 0 !important;
}
.user-menu .dashboard-link {
  padding-bottom: 20px;
  color: #22917C;
  transition: all 0.3s ease-in-out;
}
.user-menu .dashboard-link svg path {
  fill: #22917C;
  transition: all 0.3s ease-in-out;
}
.user-menu .dashboard-link span {
  margin-left: 7px;
}
.user-menu .menu-pin {
  position: absolute;
  z-index: 2;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  height: 11px;
  width: 22px;
  display: block;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.user-menu .menu-pin:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #FFF;
  transform: rotate(45deg);
  position: relative;
  top: 4px;
  right: -3px;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}
.user-menu .user-dropdown {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 0;
  padding: 0 20px;
  margin-top: 18px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background-color: #FFF;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
}
.user-menu .user-dropdown li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.user-menu .user-dropdown li a > span {
  position: relative;
  top: 2px;
  display: flex;
  align-items: center;
}
.user-menu .user-dropdown li a .favs-count {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  color: #FFF;
  font-weight: 800;
  font-size: 0.875rem;
  background-color: #61BEA6;
  height: 22px;
  width: fit-content;
  min-width: 22px;
  margin: -2px 0 0 5px;
  padding: 3px 5px 0;
}
.user-menu .user-dropdown li a:hover {
  color: #22917C;
}
.user-menu .user-dropdown svg {
  height: 20px;
  width: 20px;
  margin-right: 8px;
}

.mobile-nav-trigger {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 11px;
  margin-left: 30px;
  width: 37px;
  cursor: pointer;
}
.mobile-nav-trigger span {
  background-color: #22917C;
  height: 3px;
  width: 37px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.mobile-nav-trigger span:nth-child(2) {
  width: 23px;
}
.mobile-nav-trigger:hover span {
  width: 23px;
}
.mobile-nav-trigger:hover span:nth-child(2) {
  width: 37px;
}

header.active {
  background-color: transparent;
}
header.active .logo {
  opacity: 0;
  pointer-events: none;
}
header.active .right-side > .btn, header.active form .gform_footer .right-side > .gform_button, form .gform_footer header.active .right-side > .gform_button, header.active .right-side > button[type=submit] {
  background-color: transparent;
  border-color: transparent;
}
header.active .right-side > .btn:hover, header.active form .gform_footer .right-side > .gform_button:hover, form .gform_footer header.active .right-side > .gform_button:hover, header.active .right-side > button[type=submit]:hover {
  color: #F5C476 !important;
}
header.active .right-side > .btn:hover svg path, header.active form .gform_footer .right-side > .gform_button:hover svg path, form .gform_footer header.active .right-side > .gform_button:hover svg path, header.active .right-side > button[type=submit]:hover svg path {
  fill: #F5C476 !important;
}
header.active .right-side .lang-item {
  color: #FFF;
}
header.active .right-side .login-link {
  color: #FFF;
}
header.active .right-side .login-link path {
  fill: #FFF;
}
header.active .right-side .login-link:hover {
  color: #F5C476;
}
header.active .right-side .login-link:hover path {
  fill: #F5C476;
}
header.active .user-menu .dashboard-link {
  color: #FFF;
}
header.active .user-menu .dashboard-link svg path {
  fill: #FFF;
}
header.active .user-menu .dashboard-link:hover {
  color: #F5C476;
}
header.active .user-menu .dashboard-link:hover svg path {
  fill: #F5C476;
}
header.active .mobile-nav-trigger span {
  background-color: #FFF;
}
header.active .mobile-nav-trigger span:nth-child(2) {
  width: 0;
}
header.active .mobile-nav-trigger span:first-child {
  width: 30px;
  transform: rotate(-45deg) translate(-10px, -5px);
  transform-origin: top right;
}
header.active .mobile-nav-trigger span:last-child {
  width: 30px;
  transform: rotate(45deg) translate(-10px, 5px);
  transform-origin: bottom right;
}

#mobile-nav {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 120vw;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  background: #61bea6;
  background: linear-gradient(0deg, #006d58 0%, #09a78b 100%);
  transition: all 0.3s ease-in-out;
}
#mobile-nav:after {
  content: "";
  background-image: url("../images/search/icon-pin.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  height: 47vh;
  width: 16vw;
  right: 60px;
  bottom: -60px;
  opacity: 0.2;
}
#mobile-nav.active {
  left: 0;
}
#mobile-nav .left-side {
  width: 45%;
  height: 100%;
  position: relative;
}
#mobile-nav .left-side img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#mobile-nav .left-side img.active {
  opacity: 1;
}
#mobile-nav ul {
  position: relative;
  z-index: 2;
  width: 55%;
  padding: 50px 10% 150px;
  margin-top: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  max-height: 100%;
}
#mobile-nav ul li:not(.socials-container) {
  margin-bottom: 30px;
}
#mobile-nav ul li:not(.socials-container) a {
  font: 600 2.5rem/1.1em "Libre Franklin", sans-serif;
  font-weight: 400;
  color: white;
  display: flex;
  align-items: center;
  width: fit-content;
}
#mobile-nav ul li:not(.socials-container) a:before {
  content: "";
  width: 0;
  height: 2px;
  margin-top: -3px;
  margin-right: 0;
  border-radius: 2px;
  background-color: #EEA93F;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
#mobile-nav ul li:not(.socials-container) a:hover:before {
  width: 16px;
  margin-right: 7px;
}
#mobile-nav ul li:not(.socials-container).lang-item {
  display: none;
  margin-top: 40px;
}
#mobile-nav ul li:not(.socials-container).lang-item a {
  font-size: 1.3125rem;
  transition: all 0.3s ease-in-out;
}
#mobile-nav ul li:not(.socials-container).lang-item a:before {
  display: none !important;
}
#mobile-nav ul li:not(.socials-container).lang-item a:hover {
  color: #88d5c1;
}
#mobile-nav ul .login-btn, #mobile-nav ul .dashboard-link {
  display: none;
  margin: 5px 0 40px;
}
#mobile-nav .socials-container {
  display: flex;
  gap: 15px;
}
#mobile-nav .socials-container svg {
  height: 40px;
  width: 40px;
}
#mobile-nav .socials-container svg path {
  transition: all 0.3s ease-in-out;
}
#mobile-nav .socials-container svg:hover path {
  fill: #EEA93F;
}
#mobile-nav .btn:hover path, #mobile-nav form .gform_footer .gform_button:hover path, form .gform_footer #mobile-nav .gform_button:hover path, #mobile-nav button[type=submit]:hover path {
  fill: #EEA93F;
}

footer {
  position: relative;
  z-index: 2;
  padding: 50px 0 0;
  background-color: #22917C;
}
footer > .wrapper {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px 70px;
}
footer .logo {
  margin-bottom: 40px;
  max-width: 278px;
}
footer .addr, footer .phone {
  display: flex;
  margin-bottom: 22px;
}
footer .addr p, footer .phone p {
  color: #FFF;
  font-size: 1.25rem;
  margin-top: 2px;
}
footer .addr svg, footer .phone svg {
  width: 35px;
  height: 23px;
  margin-right: 5px;
}
footer .phone {
  align-items: center;
}
footer .addr p {
  margin-top: 2px;
}
footer .socials-wrap {
  margin-top: 50px;
  gap: 15px;
}
footer .socials-wrap a path {
  fill: #FFF;
  transition: all 0.3s ease-in-out;
}
footer .socials-wrap a:hover path {
  fill: #F5C476;
}
footer .footer-menus {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 9vw;
}
footer .footer-menus ul li:first-child {
  color: #88d5c1;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
}
footer .footer-menus ul li {
  margin-bottom: 14px;
}
footer .footer-menus ul li a {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: white;
}
footer .footer-menus ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #FFF;
  transition: all 0.3s ease-in-out;
}
footer .footer-menus ul li a:hover:before {
  width: 100%;
}
footer #copyrights {
  border-top: 1px solid #61BEA6;
  margin-top: 60px;
  padding: 14px 0;
}
footer #copyrights .wrapper {
  justify-content: end;
}
footer #copyrights p, footer #copyrights a {
  font-size: 16px;
  color: #FFF;
  position: relative;
  top: 3px;
  margin-right: 5px;
  line-height: 1em;
  font-weight: 300;
}
footer #copyrights .privacy-link:hover {
  text-decoration: underline;
}
footer #copyrights #rubik-api-copyright {
  font-family: "Libre Franklin", sans-serif;
}
footer #copyrights #rubik-api-copyright span {
  font-size: 16px;
}
footer #copyrights #rubik-api-copyright a {
  width: 51px;
  position: relative;
  top: 3px;
  margin-left: 5px;
}

/*
 * 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: 0;
}
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;
}
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: 16px 30px 13px;
  border: 1px solid #22917C;
  border-radius: 25px;
  box-shadow: none;
  background: white;
  color: #242725;
  font: 300 1rem/1.5rem "Libre Franklin", 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: 16px 30px 13px;
  border: 1px solid #22917C;
  border-radius: 25px;
  box-shadow: none;
  background: white;
  color: #242725;
  font: 300 1rem/1.5rem "Libre Franklin", 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: 32px;
  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;
  border-radius: 4px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 10px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 13px;
  width: 13px;
  background: #61BEA6;
  border-radius: 2px;
}
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: 32px;
  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: 20px;
  width: 20px;
  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: 9px;
  left: 10px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 12px;
  width: 12px;
  background: #61BEA6;
  border-radius: 50%;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 15px;
}
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: -4px;
  left: 0;
  height: 24px;
  width: 24px;
  border: 1px solid #22917C;
  border-radius: 5px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 12px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 16px;
  width: 16px;
  background-color: #22917C;
  border-radius: 4px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent .gfield_required_text {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload:before {
  content: "";
  background-image: url("../images/forms/icon-file.svg");
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 5px;
  width: 30px;
  height: 25px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload:after {
  content: var(--add-resume-text, "Joindre un C.V.");
  position: absolute;
  z-index: 2;
  left: 40px;
  top: 9px;
  cursor: pointer;
  pointer-events: none;
  display: block;
  font: 800 1rem/1.4em "Libre Franklin", sans-serif;
  color: #167160;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s ease-in-out;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload:hover:after {
  text-decoration-color: #167160;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload .filename {
  font-weight: 800;
  margin-top: -6px;
  display: block;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload .validation_message--hidden-on-empty {
  display: none;
}
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;
  opacity: 0;
}
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_container.gfield_signature_container {
  z-index: 50 !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_container_date {
  width: 32%;
  max-width: 33%;
  flex-basis: unset;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_container_date input {
  padding: 16px 10px 13px 25px;
  text-align: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_container_date label {
  display: none;
}
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_body .gform_fields .gfield.gfield--type-html small {
  opacity: 0.5;
  font-size: 0.8125rem;
  line-height: 1em;
}
form .gform_body .gform_fields .gfield.gfield--type-html small a {
  font-size: inherit;
  line-height: inherit;
}
form .gform_footer {
  position: relative;
  margin-top: 30px;
  /*
   * 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;
}
form .gform_footer .gform_button {
  margin-top: 10px;
  cursor: pointer;
}

#postuler form .gform_footer .gform_button:hover {
  background-color: #EEA93F;
}
#postuler .gform_confirmation_wrapper .gform_confirmation_message p {
  color: #FFF;
}

.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;
}
.gform_confirmation_wrapper .gform_confirmation_message p {
  text-align: left;
  font: 800 1.25rem/1.4em "articulat-cf", 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 #22917C;
  border-radius: 25px;
  padding: 16px 30px 13px !important;
  font: 300 1rem/1.5rem "Libre Franklin", sans-serif !important;
  font-weight: 500 !important;
  color: black;
  background: white url("../images/icon-arrow-down.svg") no-repeat 96% center;
  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;
}

.gfield_visibility_hidden {
  display: none !important;
}

@media screen and (min-width: 992px) {
  header.active .mobile-nav-trigger {
    transition: all 0.3s ease-in-out;
  }
  header.active .mobile-nav-trigger:hover {
    transform: scale(1.2);
  }
  header.active .mobile-nav-trigger:hover span {
    background-color: #F5C476;
  }
  .user-menu:hover .menu-pin {
    opacity: 1;
  }
  .user-menu:hover .dashboard-link {
    color: #EEA93F;
  }
  .user-menu:hover .dashboard-link svg path {
    fill: #EEA93F;
  }
  .user-menu:hover .user-dropdown {
    height: fit-content;
    padding: 25px 20px 30px;
    opacity: 1;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  }
  .apparts-wrap .single-appart:hover {
    width: 106%;
    left: -3%;
  }
  .apparts-wrap .single-appart:hover .img-side {
    width: 40.55%;
  }
  .apparts-wrap .single-appart:hover .img-side img {
    width: 105%;
  }
  .apparts-wrap .single-appart:hover .content-side {
    width: 59.45%;
  }
  .map-results .toggle-btn:hover {
    left: -50px;
  }
  .single-new-appart:hover .image {
    height: 110%;
    width: 110%;
    left: -5%;
    top: -5%;
  }
  .single-new-appart:hover .bottom-content {
    background-color: #EEA93F;
  }
}
@media screen and (max-width: 1700px) {
  .slider-wrap .swiper-button-prev {
    left: -50px;
  }
  .slider-wrap .swiper-button-next {
    right: -50px;
  }
}
@media screen and (max-width: 1300px) {
  .search-map, #map:not(.single-appart-map) {
    width: 100% !important;
  }
}
@media screen and (max-width: 1500px) {
  .page-banner.type-2 .image {
    bottom: 10%;
  }
  .page-banner.type-4 .right-side:before {
    height: 600px;
    width: 600px;
  }
  .page-banner.type-4 .right-side:after {
    bottom: 80%;
  }
  .page-banner.type-4 .image {
    bottom: 10%;
  }
  .blog .page-banner.type-4 .right-side:after {
    left: 93%;
  }
}
@media screen and (max-width: 1400px) {
  #mobile-nav:after {
    bottom: -100px;
  }
  .page-banner .right-side:after {
    bottom: 66%;
  }
  .page-banner.type-1 .image {
    bottom: 0;
  }
  .page-banner.type-4 .image {
    bottom: 15%;
  }
  .page-banner.type-4 .right-side:after {
    height: 125px;
    width: 125px;
    left: 4%;
  }
  .page-banner.type-3 .right-side:before {
    left: 50%;
    bottom: 45%;
    height: 550px;
    width: 550px;
  }
  .page-banner.type-3 .right-side:after {
    bottom: 73%;
  }
  .sliding-title {
    font-size: 7.1875rem;
    padding: 70px 0;
  }
  .favs-block .single-fav, .favs-block .single-visite, .visites-block .single-fav, .visites-block .single-visite {
    width: calc(50% - 15px);
  }
  .refer-banner .image-text h2 span:not(.highlight) {
    position: relative;
  }
  .refer-banner .image-text h2 span:not(.highlight):first-of-type {
    left: 50px;
  }
  .refer-banner .image-text .image .image-carousel .carousel-image {
    left: 100px;
  }
}
@media screen and (max-width: 1280px) {
  #mobile-nav ul {
    padding: 0 5% 150px;
  }
  .home-banner .wrapper > .left-side {
    width: 55%;
  }
  .home-banner .wrapper > .right-side {
    width: 45%;
    left: 13vw;
  }
  .career-swiper .left-side:not(.mobile) {
    padding-right: 25px;
  }
  .page-banner.type-2 .image {
    bottom: 17%;
    width: 45vw;
    height: 45vw;
  }
  .page-banner.type-3 .content-side {
    padding: 150px 0 70px;
  }
  .blog .page-banner.type-4 .right-side:before {
    height: 185px;
    width: 185px;
  }
  .blog .page-banner.type-4 .right-side:after {
    height: 100px;
    width: 100px;
    bottom: 30%;
  }
  .posts-teasers {
    gap: 28px;
  }
  .post-teaser {
    width: calc(50% - 14px);
  }
}
@media screen and (max-width: 1199px) {
  .slice {
    padding: 135px 0;
  }
  .user-menu {
    margin-right: 35px;
  }
  .btn.modify-search, button.modify-search[type=submit], form .gform_footer .modify-search.gform_button {
    min-width: unset;
    padding: 10px 25px;
  }
  .btn.modify-search svg, button.modify-search[type=submit] svg, form .gform_footer .modify-search.gform_button svg {
    margin-right: 0;
  }
  .btn.modify-search span, button.modify-search[type=submit] span, form .gform_footer .modify-search.gform_button span {
    display: none;
  }
  .card-section > .right-side {
    padding: 65px 5%;
  }
  .career-swiper .swiperCareer {
    margin-top: 100px;
    left: -10%;
  }
  .career-swiper .swiperCareer .swiper-slide {
    height: 450px;
  }
  .slider-wrap .swiper-button-prev {
    left: -42px;
  }
  .slider-wrap .swiper-button-next {
    right: -42px;
  }
  .page-banner .content-side {
    padding: 110px 0 100px;
  }
  .page-banner.type-1 .image {
    bottom: 25%;
  }
  .page-banner.type-4 .image {
    bottom: 20%;
    width: 134%;
  }
  .page-banner.type-4 .right-side:before {
    height: 500px;
    width: 500px;
  }
  .page-banner.type-3 .image {
    right: -12vw;
    width: 140%;
    display: flex;
    align-items: end;
  }
  .page-banner.type-3 .right-side:before {
    bottom: 45%;
    height: 420px;
    width: 420px;
  }
  .page-banner.type-3 .right-side:after {
    bottom: 70%;
    left: 16%;
  }
  .sliding-title {
    font-size: 6.25rem;
    padding: 70px 0;
  }
  .map-results {
    width: 550px;
  }
  .map-results.closed {
    right: -550px;
  }
  .search-map {
    width: calc(100vw - 550px);
  }
  .card-section .right-side {
    padding: 60px 5%;
  }
  .refer-section form .left-side, .refer-section form .right-side {
    padding: 100px 80px;
  }
  .refer-section form .right-side {
    padding-right: 0;
  }
  .refer-section form .left-side {
    padding-left: 0;
  }
  .dashboard-block .dashboard-head {
    padding: 22px 35px;
  }
  .dashboard-block .dashboard-nav {
    min-width: 280px;
    max-width: 340px;
  }
  .dashboard-block .dashboard-nav li {
    padding: 32px 35px;
  }
  .poste-desc .right-side {
    width: 42%;
  }
  .wrapper-404:before {
    bottom: -390px;
    right: -270px;
  }
  .wrapper-404 .image:before {
    top: -110px;
    height: 170px;
    width: 170px;
  }
  .wrapper-404 .image:after {
    height: 60px;
    width: 60px;
    top: 0;
    left: -75px;
  }
}
@media screen and (max-width: 991px) {
  .map-wrap .results-wrap {
    height: calc(100% - 80px);
    width: calc(100% - 35px);
    padding: 0 35px 50px 18px;
  }
  .slice {
    padding: 110px 0;
  }
  #mobile-nav {
    flex-direction: column;
  }
  #mobile-nav ul {
    width: 100%;
    margin-top: 120px;
    padding: 0 7% 50px;
  }
  #mobile-nav ul li:not(.socials-container) a {
    font-size: 2.125rem;
  }
  #mobile-nav .left-side {
    display: none;
  }
  #mobile-nav:after {
    bottom: -25px;
    height: 200px;
    width: 150px;
  }
  .home-banner .wrapper {
    flex-direction: column;
  }
  .home-banner .wrapper h1 {
    text-align: center;
    margin: 0 auto 10px;
  }
  .home-banner .wrapper h3 {
    text-align: center;
  }
  .home-banner .wrapper button[type=submit] {
    margin-left: auto;
    margin-right: auto;
  }
  .home-banner .wrapper > .left-side {
    width: 100%;
    padding-bottom: 85px;
  }
  .home-banner .wrapper > .right-side {
    display: none;
  }
  .single-new-appart {
    max-width: calc(50% - 15px);
  }
  .featured-apparts-wrap {
    margin: 50px auto 40px;
  }
  .about .wrapper {
    padding-top: 350px;
  }
  .about .left-side {
    height: 400px;
    top: 0;
    left: -10%;
    width: 120%;
    max-width: unset;
    border-radius: 0 0 100% 100%;
  }
  .about .left-side:before {
    top: -66%;
    left: -10%;
    height: 158%;
    width: 120%;
  }
  .page-template-career .about .wrapper {
    padding-top: 530px;
  }
  .page-template-career .about .left-side {
    height: 580px;
  }
  .tools-slider-section .slider-wrap {
    width: calc(90% - 40px);
    margin: 50px auto;
  }
  .career-swiper {
    padding-bottom: 0;
  }
  .swiper-nav.mobile {
    display: flex;
  }
  .page-banner .wrapper {
    flex-direction: column;
    gap: 0;
  }
  .page-banner .wrapper .content-side {
    width: 100%;
  }
  .page-banner .wrapper .right-side {
    width: 100%;
    height: 400px;
  }
  .page-banner .wrapper .right-side .image {
    width: 100%;
    height: 100%;
  }
  .page-banner.type-1 .right-side:before {
    left: 45%;
    bottom: 65%;
    height: 400px;
    width: 400px;
  }
  .page-banner.type-1 .right-side:after {
    left: 71%;
    bottom: 100%;
    height: 150px;
    width: 150px;
  }
  .page-banner.type-2 .right-side .image {
    width: 450px;
    height: 450px;
    bottom: 8%;
    right: 0;
  }
  .page-banner.type-3 .right-side {
    height: 450px;
    margin-top: -40px;
  }
  .page-banner.type-3 .right-side:before {
    left: 40%;
  }
  .page-banner.type-3 .right-side:after {
    bottom: 80%;
    left: 20%;
    height: 65px;
    width: 65px;
  }
  .page-banner.type-4 .wrapper .right-side .image {
    right: 0;
    bottom: 15%;
  }
  .page-banner.type-4 .wrapper .right-side .image img {
    max-height: 100%;
    margin: 0 auto;
  }
  .page-banner.type-4 .wrapper .right-side:before {
    left: 40%;
    bottom: 65%;
  }
  .page-banner.type-4 .wrapper .right-side:after {
    left: 15%;
    bottom: 110%;
  }
  .page-banner .scroll-icon {
    margin-top: 40px;
  }
  .blog.slice {
    padding-top: 0;
  }
  .blog .page-banner.type-4 .content-side {
    padding-bottom: 75px;
  }
  .blog .page-banner.type-4 .right-side, .blog .page-banner.type-4 .scroll-icon {
    display: none;
  }
  .sliding-title {
    font-size: 5.3125rem;
  }
  .search-map {
    width: 100%;
  }
  .map-results {
    width: 100%;
    position: static;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }
  .map-results .toggle-btn {
    display: flex;
  }
  .map-results .toggle-btn svg {
    transform: rotate(0deg);
  }
  .map-results.closed .toggle-btn svg {
    transform: rotate(180deg);
  }
  .apparts-wrap {
    /* Ensure the anchor wrapper and card span full width on mobile */
  }
  .apparts-wrap .single-appart-link {
    width: 100% !important;
    display: block !important;
  }
  .apparts-wrap .single-appart {
    flex-wrap: wrap;
    align-items: stretch;
    width: 100% !important;
    display: flex !important;
  }
  .apparts-wrap .single-appart .img-side {
    width: 100% !important;
    flex: 0 0 100% !important; /* prevent shrinking on Android */
    max-width: 100% !important;
  }
  .apparts-wrap .single-appart .img-side img {
    height: 140px;
  }
  .apparts-wrap .single-appart .content-side {
    width: 100% !important;
    flex: 0 0 100% !important; /* prevent shrinking on Android */
    max-width: 100% !important;
  }
  .apparts-wrap .single-appart {
    /* Force block-level stacking of direct children */
  }
  .apparts-wrap .single-appart > .img-side,
  .apparts-wrap .single-appart > .content-side {
    flex-basis: 100% !important;
  }
  .single-appart .content-side {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .single-appart .img-side {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    /* Avoid image min-height influencing layout */
  }
  .single-appart .img-side img {
    min-height: 0 !important;
    width: 100% !important;
  }
  .appart-gallery .gallery-grid .gallery-main {
    flex: 1.5;
  }
  .appart-gallery .gallery-grid .gallery-sidebar {
    flex: 1;
  }
  .appart-gallery .gallery-grid {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }
  .appart-gallery .gallery-grid .gallery-main {
    height: 250px;
    order: 1;
    flex: unset;
  }
  .appart-gallery .gallery-grid .gallery-sidebar {
    flex-direction: row;
    height: 120px;
    order: 2;
    gap: 15px;
    flex: unset;
  }
  .appart-gallery .gallery-grid .gallery-sidebar .gallery-thumb {
    flex: 1;
    height: 100%;
  }
  .appart-gallery .gallery-grid .gallery-sidebar .gallery-thumb.gallery-more .gallery-overlay {
    font-size: 16px;
  }
  .map-results h2 {
    font-size: 1.875rem;
  }
  .map-results h3 {
    font-size: 1.25rem;
  }
  .banner-appart .banner-border .wrapper-medium {
    padding: 0;
    flex-direction: column;
    align-items: start;
    width: 100%;
    max-width: 100%;
  }
  .banner-appart .banner-border .selected-appart-title {
    padding: 20px 5%;
  }
  .banner-appart .banner-border .cta-banner {
    position: unset;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 5%;
  }
  .banner-appart .banner-border .cta-banner .btn, .banner-appart .banner-border .cta-banner button[type=submit], .banner-appart .banner-border .cta-banner form .gform_footer .gform_button, form .gform_footer .banner-appart .banner-border .cta-banner .gform_button {
    margin-top: 0;
  }
  .banner-appart .image {
    height: 450px;
  }
  .single-appart-section.slice {
    padding-top: 50px;
  }
  .btn-gallery {
    width: 100%;
  }
  .appart-contact:before, .appart-contact:after {
    display: none;
  }
  .appart-contact .wrapper {
    gap: 40px;
  }
  .appart-contact .contact-block {
    justify-content: space-around;
  }
  .appart-contact .contact-block .content-side {
    width: calc(100% - 200px);
  }
  .appart-contact .gform_body .gform_fields {
    margin-left: auto;
    margin-right: auto;
  }
  .appart-contact .gform_footer {
    justify-content: center;
    align-items: center;
  }
  .single-poste-block {
    height: 400px;
  }
  .single-poste-block h2 {
    padding: 25px;
    font-size: 1.375rem;
  }
  .single-why {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
  .section-why {
    padding-bottom: 110px;
  }
  .card-section .left-side {
    width: 100%;
  }
  .card-section .left-side img {
    max-height: 600px;
  }
  .card-section .right-side {
    width: 100%;
  }
  .refer-section {
    background: #E1F0EC;
  }
  .refer-section .wrapper {
    margin: 0;
    width: 100%;
  }
  .refer-section form {
    flex-direction: column;
  }
  .refer-section form .left-side:after {
    top: calc(100% + 12px);
    left: calc(50% - 40px);
    border-width: 25px 40px 0 40px;
    border-color: #E1F0EC transparent transparent transparent;
  }
  .refer-section form .right-side, .refer-section form .left-side {
    width: 100%;
    padding: 80px 60px !important;
  }
  .favs-block .single-fav, .favs-block .single-visite, .visites-block .single-fav, .visites-block .single-visite {
    width: 100%;
  }
  .poste-desc .wrapper {
    flex-wrap: wrap;
    gap: 50px;
  }
  .poste-desc .left-side, .poste-desc .right-side {
    width: 100%;
  }
  .single-perk {
    justify-content: left;
  }
  .post-teaser .post-thumb {
    height: 220px;
  }
  .post-teaser .post-content {
    padding: 30px 25px;
  }
  .post-teaser .read-more .read-more-block {
    height: 100%;
  }
  .post-teaser .read-more .read-more-block span {
    opacity: 1;
  }
  .blog-content .wrapper-small {
    padding: 60px 80px;
  }
  .content-gal .image {
    height: 250px;
  }
  .wrapper-404 {
    flex-direction: column;
    text-align: center;
  }
  .wrapper-404 .image {
    margin-bottom: 50px;
  }
  .wrapper-404 .image img {
    width: 100%;
  }
  .wrapper-404 .image:before {
    top: -90px;
    left: 0;
  }
  .wrapper-404 .image:after {
    top: 10px;
    left: -35px;
  }
  .wrapper-404 .the-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .selected-appart .return-btn {
    padding: 20px 0 0 0;
  }
  .open-house-card {
    margin-top: 70px;
  }
  .open-house-section .open-house-card:before {
    display: none;
  }
  .refer-banner .row, .refer-banner form .gform_body .gform_fields, form .gform_body .refer-banner .gform_fields, .refer-banner form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .refer-banner .ginput_container.ginput_container_address {
    width: 100%;
    margin-inline: auto;
  }
  .refer-banner .content-side {
    padding: 50px 0;
  }
  .refer-banner .image-text .image-shape {
    right: -18%;
    width: 130%;
  }
  .refer-banner .image-text h2 span:not(.highlight) {
    left: 0;
    font-size: 1.25rem;
  }
  .refer-banner .image-text h2 span:not(.highlight):first-of-type {
    left: 0;
  }
  .refer-banner .image-text h2 span:not(.highlight):last-of-type {
    translate: -20px 0;
  }
  .refer-banner .image-text h2 span.highlight {
    font-size: 5rem;
  }
  .refer-banner .image-text .image {
    width: 50%;
  }
  .refer-banner .image-text .image .image-carousel .carousel-image {
    left: 0;
  }
  .refer-banner .image-text .image .image-carousel .carousel-image img {
    object-fit: contain;
    translate: 0 0;
  }
  .banner-image-section.slice {
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 767px) {
  header.shrink:not(.active) {
    height: 70px;
  }
  header .wrapper .logo {
    width: 180px;
  }
  header .right-side .user-menu, header .right-side .login-link, header .right-side .login-btn, header .right-side .lang-item {
    display: none;
  }
  footer .footer-menus {
    gap: 25px 90px;
  }
  #mobile-nav ul .login-btn, #mobile-nav ul .dashboard-link {
    display: flex;
  }
  #mobile-nav ul li:not(.socials-container).lang-item {
    display: block;
  }
  .sliding-title {
    font-size: 4.375rem;
    -webkit-text-stroke-width: 1px;
  }
  .page-banner.type-3 .right-side:after {
    left: 15%;
  }
  #main .slice:first-child {
    padding-top: 60px;
  }
  .tools-slider-section a {
    max-height: 220px;
    max-width: 220px;
  }
  .career-swiper .left-side.mobile .image img {
    height: 400px;
  }
  .single-new-appart {
    max-width: 550px;
    min-width: unset;
  }
  .postes-wrap {
    gap: 30px;
  }
  .single-poste-block {
    height: 375px;
    width: 100%;
  }
  .single-poste-block h2 {
    padding: 20px;
    font-size: 1.25rem;
  }
  .dashboard-block .dashboard-body {
    flex-wrap: wrap;
  }
  .dashboard-block .dashboard-nav {
    border-right: none;
    width: 100%;
  }
  .dashboard-block .dashboard-nav li {
    padding: 25px 5%;
  }
  .dashboard-block .dashboard-head {
    padding: 20px 5%;
  }
  .favs-block .single-fav, .favs-block .single-visite, .visites-block .single-fav, .visites-block .single-visite {
    width: 100%;
    max-width: 500px;
  }
  .dashboard-section:before {
    height: calc(100% - 300px);
  }
  .single-dropdown .dropdown-content .caracteristiques .single-caract {
    width: 45%;
  }
  .banner-appart .image {
    height: 360px;
  }
  .refer-section form .right-side, .refer-section form .left-side {
    padding: 75px 5%;
  }
  .form:not(#search-form) .form-row.two-cols-row label {
    width: 100%;
  }
  .post-teaser {
    width: 100%;
  }
  .filters-wrap {
    gap: 20px;
  }
  .wrapper-404 .image:before, .wrapper-404 .image:after {
    display: none;
  }
  .vero-louis-section {
    padding: 50px 0 0;
  }
  .vero-louis-section .wrapper {
    padding: 40px 20px;
  }
  .vero-louis-section .col-content {
    width: 100%;
    padding: 0;
  }
  .vero-louis-section .col-content h2 {
    font-size: 1.5rem;
  }
  .vero-louis-section .col-image {
    width: 100%;
    height: auto;
  }
  .vero-louis-section .col-image .logo {
    max-width: 300px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .appart-gallery .gallery-grid {
    gap: 10px;
  }
  .appart-gallery .gallery-grid .gallery-main {
    height: 200px;
  }
  .appart-gallery .gallery-grid .gallery-sidebar {
    height: 100px;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .contact-form-card {
    margin-top: 70px;
    text-align: center;
    height: auto;
    max-height: none;
    overflow-y: visible;
  }
  .contact-form-card .form-header {
    text-align: center;
  }
  .contact-form-card .gravity-form-wrapper {
    text-align: left;
  }
  .contact-form-card .gravity-form-wrapper .gform_body {
    margin: 0;
    padding: 0;
  }
  .contact-form-card .gravity-form-wrapper .gform_body .gform_fields {
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 991px) {
  .advisor-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 25px 16px;
  }
  .advisor-info .advisor-icon {
    width: 80px;
    height: 80px;
  }
  .advisor-info .advisor-icon svg {
    width: 45px;
    height: 45px;
  }
  .advisor-info .advisor-details .advisor-title {
    font-size: 1.375rem;
  }
  .advisor-info .advisor-details .advisor-name {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 680px) {
  .form-row.form-two-cols {
    flex-direction: column;
  }
  .select-wrap.select-wrap-half, .date-wrap.date-wrap-half {
    width: 100%;
  }
  .select-wrap .select-options.columned-options .select-input-wrap {
    gap: 8px;
  }
  .select-wrap .select-options.columned-options .select-input-wrap .checkbox-wrap {
    width: 48%;
  }
  .select-wrap .sub-option {
    flex-direction: column;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
  }
  .select-wrap .sub-option .sub-option-input {
    width: 90%;
  }
  .select-wrap .sub-option .sub-checkbox .checkbox-wrap {
    width: 100%;
  }
  .select-wrap .sub-option.other-advanced {
    padding-bottom: 20px;
  }
  .select-wrap.can-reset .sub-option.other-advanced {
    padding-bottom: 0;
  }
  .popup .popup-block {
    padding: 70px 40px 40px;
  }
  .page-banner .content-side {
    padding-top: 60px;
  }
  .page-banner.type-1 .image {
    bottom: 10%;
  }
  .page-banner.type-2 .right-side .image {
    width: 450px;
    height: 450px;
    bottom: 8%;
    right: -10%;
  }
  .page-banner.type-3 .content-side {
    padding-top: 60px;
  }
  .page-banner.type-4 .wrapper .right-side:before {
    height: 400px;
    width: 400px;
    left: 50%;
    bottom: 70%;
  }
  .page-banner.type-4 .wrapper .right-side:after {
    left: 10%;
    bottom: 105%;
    height: 100px;
    width: 100px;
  }
  .page-banner .scroll-icon {
    height: 40px;
    width: 40px;
  }
  .sliding-title {
    font-size: 3.75rem;
    padding: 50px 0;
  }
  .about .wrapper {
    padding-top: 300px;
  }
  .about .left-side {
    height: 350px;
    left: -25%;
    width: 150%;
  }
  .page-template-career .about .wrapper {
    padding-top: 400px;
  }
  .page-template-career .about .left-side {
    height: 450px;
  }
  .tools-slider-section a {
    max-height: 190px;
    max-width: 190px;
  }
  .dashboard-section {
    padding-top: 50px !important;
  }
  .dashboard-block .dashboard-body {
    flex-direction: column;
  }
  .dashboard-block .dashboard-nav {
    min-width: unset;
    max-width: unset;
    width: 100%;
    border-right: none;
  }
  .dashboard-block .dashboard-nav li {
    padding: 20px 35px;
  }
  .share-popup .share-icon-wrap svg {
    height: 32px;
    width: 32px;
  }
  .share-popup .copy-link {
    flex-direction: column;
    border: none;
    padding: 0;
    gap: 10px;
  }
  .share-popup .copy-link p {
    max-width: 100%;
    border: 1px solid #22917C;
    padding: 6px 20px;
    border-radius: 100px;
  }
  .blog-content .wrapper-small {
    padding: 40px 50px;
  }
  .blog-content .the-content ul {
    margin-left: 20px;
  }
  .content-gal .image {
    width: 100%;
  }
  .appart-contact .left-side {
    text-align: center;
  }
  .appart-contact .contact-block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
  }
  .appart-contact .contact-block .content-side {
    width: 100%;
    max-width: 600px;
  }
  .newsletter-section .wrapper .the-content p {
    font-size: 1.25rem;
  }
  .open-house-card {
    padding: 40px 20px;
  }
  .open-house-card h2 {
    font-size: 1.875rem;
  }
  .open-house-card h2:before {
    left: 140px;
    height: 30px;
    width: 30px;
  }
  .refer-banner .image-text .image-shape {
    width: 215%;
    right: -85%;
  }
  .refer-banner .image-text .image {
    display: none;
  }
  .refer-banner .image-text h2 span.highlight {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 550px) {
  h1 {
    font-size: 2.1875rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.4375rem;
  }
  h2 + h3, h2 + h1 {
    margin-top: -10px;
  }
  .texture-round-bottom:before, .texture-round-top:before {
    top: -150px;
    left: -135px;
    width: 800px;
    height: 400px;
  }
  .texture-round-top:before {
    bottom: -150px;
    top: unset;
  }
  #mobile-nav ul li:not(.socials-container) a {
    font-size: 1.875rem;
  }
  #mobile-nav:after {
    right: -20px;
  }
  .page-banner.type-1 .right-side {
    height: 330px;
  }
  .page-banner.type-1 .right-side:before {
    height: 320px;
    width: 320px;
  }
  .page-banner.type-2 .wrapper .right-side {
    height: 330px;
  }
  .page-banner.type-2 .wrapper .right-side .image {
    width: 375px;
    height: 375px;
  }
  .page-banner.type-3 .right-side:after {
    left: 10%;
  }
  .page-banner.type-4 .wrapper .right-side .image {
    bottom: 0;
  }
  .page-banner.type-4 .wrapper .right-side:before {
    height: 340px;
    width: 340px;
  }
  .sliding-title {
    font-size: 3.125rem;
  }
  .tools-wrap .single-tool {
    padding: 40px 20px;
  }
  .tools-wrap .single-tool img {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .tools-wrap .single-tool svg {
    margin-bottom: 40px;
  }
  .home-banner .wrapper > .left-side {
    padding-top: 20px;
  }
  .career-swiper .left-side.mobile .image img {
    height: 300px;
  }
  .card-section .wrapper:after {
    top: 10px;
    left: 10px;
  }
  .card-section .left-side img {
    max-height: 400px;
  }
  .card-section .right-side {
    padding: 60px 5% 30px;
  }
  .card-section .gform_fields {
    margin: auto !important;
  }
  .card-section .gform_fields .gfield {
    padding: 0 !important;
  }
  .tools-slider-section.slice {
    padding-top: 0;
  }
  .newsletter-section + .tools-slider-section.slice {
    padding-top: 110px;
  }
  .map-wrap {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: calc(100vh - 100px);
  }
  .map-results {
    width: 100%;
    position: static;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }
  .map-results .toggle-btn {
    display: flex;
  }
  .map-results .toggle-btn svg {
    transform: rotate(0deg);
  }
  .map-results.closed .toggle-btn svg {
    transform: rotate(180deg);
  }
  .search-map, #map:not(.single-appart-map) {
    width: 100% !important;
    height: 25vh;
    max-height: 25vh;
  }
  .search-map.closed, #map:not(.single-appart-map).closed {
    height: 75vh;
    max-height: 75vh;
  }
  .select-wrap .select-options.columned-options .select-input-wrap .checkbox-wrap {
    width: 100%;
  }
  .single-dropdown .dropdown-content {
    padding-top: 0;
  }
  .single-dropdown .dropdown-content .caracteristiques .single-caract {
    width: 100%;
  }
  .banner-appart .banner-border .selected-appart-title {
    margin: auto;
  }
  .banner-appart .banner-border .cta-banner {
    flex-direction: column;
  }
  #map.single-appart-map {
    max-height: 45vh;
  }
  .refer-section form .right-side, .refer-section form .left-side {
    padding: 80px 5% !important;
  }
  .dashboard-block .dashboard-head a {
    margin-top: 3px;
  }
  .dashboard-block .dashboard-head a span {
    display: none;
  }
  .dashboard-block .dashboard-content .dashboard-single-content {
    padding-top: 50px;
  }
  .dashboard-section.slice {
    padding-top: 30px !important;
  }
  footer #copyrights .wrapper {
    flex-wrap: wrap;
    justify-content: start;
    gap: 5px 0;
  }
  .form:not(#search-form) input {
    padding: 16px 20px 13px;
  }
  .select-wrap .select-input {
    padding: 15px 70px 15px 20px;
  }
  .blog-content .sliding-title {
    margin-bottom: 0;
  }
  #postuler {
    padding: 50px 0;
  }
  .section-career.slice {
    padding: 20px 0 0;
  }
  .wrapper-404:before {
    bottom: -340px;
    height: 500px;
    width: 500px;
  }
  .wrapper-404 .the-content .btn, .wrapper-404 .the-content button[type=submit], .wrapper-404 .the-content form .gform_footer .gform_button, form .gform_footer .wrapper-404 .the-content .gform_button {
    margin-top: 20px;
  }
  .refer-section form .input-date-placeholder-wrap .date-placeholder {
    padding: 0 5px;
  }
}
@media screen and (max-width: 500px) {
  .btn.modify-search, button.modify-search[type=submit], form .gform_footer .modify-search.gform_button {
    padding: 10px;
  }
  .map-wrap {
    height: 100dvh;
    max-height: calc(100dvh - 150px);
  }
  .map-results {
    position: static;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }
  .map-results .results-wrap {
    padding: 0 15px 30px 15px;
    width: calc(100% - 30px);
  }
  .search-map, #map:not(.single-appart-map) {
    width: 100% !important;
  }
  footer .addr p, footer .phone p {
    font-size: 1.125rem;
  }
  .single-why {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }
  .single-why svg {
    margin-right: 0;
  }
  .single-perk {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 30px 30px;
  }
  .single-why .content-side {
    width: 100%;
  }
  .page-banner.type-3 .right-side {
    height: 350px;
  }
  .page-banner.type-3 .right-side:before {
    height: 350px;
    width: 350px;
  }
  .contact-map-wrap #map {
    max-height: 80vh;
  }
  .post-teaser .post-content h3 {
    margin-bottom: 15px;
  }
  .post-teaser .post-content p {
    font-size: 0.9375rem;
  }
  .refer-banner .image-text .image-shape {
    width: 250%;
    right: -120%;
  }
}
@media screen and (max-width: 420px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.375rem;
  }
  header .wrapper .logo {
    width: 160px;
  }
  #mobile-nav ul li:not(.socials-container) {
    margin-bottom: 24px;
  }
  #mobile-nav ul li:not(.socials-container) a {
    font-size: 1.625rem;
  }
  .page-banner.type-1 .right-side {
    height: 300px;
  }
  .page-banner.type-1 .right-side:before {
    height: 250px;
    width: 250px;
  }
  .page-banner.type-1 .right-side:after {
    height: 100px;
    width: 100px;
  }
  .page-banner.type-2 .wrapper .right-side {
    height: 260px;
  }
  .page-banner.type-2 .wrapper .right-side .image {
    width: 300px;
    height: 300px;
  }
  .page-banner.type-3 .right-side {
    height: 300px;
  }
  .page-banner.type-3 .right-side:before {
    height: 300px;
    width: 300px;
  }
  .career-swiper .left-side.mobile .image img {
    height: 275px;
  }
  .single-poste-block h2 {
    font-size: 1.125rem;
  }
  .login-section .forms-wrap form {
    padding: 60px 20px 50px;
  }
  .banner-appart .image {
    height: 330px;
  }
  .popup .popup-block {
    padding: 70px 20px 40px;
  }
  .popup .popup-block .close {
    top: 25px;
    right: 25px;
  }
  .select-wrap .select-input .right-side {
    right: 15px;
  }
  .select-wrap .select-input .counter {
    margin-right: 10px;
  }
  .select-wrap .sub-option .sub-option-input select {
    padding: 8px 30px 6px 15px !important;
  }
  .blog-content .wrapper-small {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 360px) {
  header .wrapper .logo {
    width: 145px;
  }
}

/*# sourceMappingURL=main.css.map */
