@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 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);
    -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);
    transform: translate3d(0, -30px, 0); }
  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);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 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);
    -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);
    transform: translate3d(0, -30px, 0); }
  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);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-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; } }

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

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

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

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  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 shake {
  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); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

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

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

.swing {
  -webkit-transform-origin: top center;
  -ms-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); } }

.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  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: none;
    transform: none; } }
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  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: none;
    transform: none; } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  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.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  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.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center; }

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

.bounceIn {
  -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);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@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);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

.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);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@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);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

.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);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@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);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

.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);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  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);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

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

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.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: none;
    transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.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: none;
    transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

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

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

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

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

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

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

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

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

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

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

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

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

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

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  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);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  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);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -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-transform-origin: top left;
    transform-origin: top left;
    -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-transform-origin: top left;
    transform-origin: top left;
    -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-transform-origin: top left;
    transform-origin: top left;
    -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-transform-origin: top left;
    transform-origin: top left;
    -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-transform-origin: top left;
    transform-origin: top left;
    -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; } }

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

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

.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: none;
    transform: none; } }
@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: none;
    transform: none; } }

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

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

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

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

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

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

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

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

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

.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-transform-origin: center bottom;
    transform-origin: center bottom;
    -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-transform-origin: center bottom;
    transform-origin: center bottom;
    -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); } }

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-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);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@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);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-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);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@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);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-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-transform-origin: center bottom;
    transform-origin: center bottom;
    -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-transform-origin: center bottom;
    transform-origin: center bottom;
    -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); } }

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

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

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

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

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

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

.tcon {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 40px;
  background: transparent;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }
  .tcon > * {
    display: block; }
  .tcon:hover, .tcon:focus {
    outline: none; }
  .tcon::-moz-focus-inner {
    border: 0; }

.tcon-menu__lines {
  display: inline-block;
  height: 5.71429px;
  width: 40px;
  border-radius: 2.85714px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: white;
  position: relative; }
  .tcon-menu__lines::before, .tcon-menu__lines::after {
    display: inline-block;
    height: 5.71429px;
    width: 40px;
    border-radius: 2.85714px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: white;
    content: '';
    position: absolute;
    left: 0;
    -webkit-transform-origin: 2.85714px center;
    -ms-transform-origin: 2.85714px center;
    transform-origin: 2.85714px center;
    width: 100%; }
  .tcon-menu__lines::before {
    top: 10px; }
  .tcon-menu__lines::after {
    top: -10px; }
  .tcon-transform .tcon-menu__lines {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8); }

.tcon-menu--xbutterfly {
  width: auto; }
  .tcon-menu--xbutterfly .tcon-menu__lines::before, .tcon-menu--xbutterfly .tcon-menu__lines::after {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: top .3s .6s ease, -webkit-transform .3s ease;
    transition: top .3s .6s ease, -webkit-transform .3s ease;
    -o-transition: top .3s .6s ease, transform .3s ease;
    transition: top .3s .6s ease, transform .3s ease;
    transition: top .3s .6s ease, transform .3s ease, -webkit-transform .3s ease; }
  .tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines {
    background: transparent; }
    .tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::before, .tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::after {
      top: 0;
      -webkit-transition: top .3s ease, -webkit-transform .3s .5s ease;
      transition: top .3s ease, -webkit-transform .3s .5s ease;
      -o-transition: top .3s ease, transform .3s .5s ease;
      transition: top .3s ease, transform .3s .5s ease;
      transition: top .3s ease, transform .3s .5s ease, -webkit-transform .3s .5s ease;
      width: 40px; }
    .tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::before {
      -webkit-transform: rotate3d(0, 0, 1, 45deg);
      transform: rotate3d(0, 0, 1, 45deg); }
    .tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::after {
      -webkit-transform: rotate3d(0, 0, 1, -45deg);
      transform: rotate3d(0, 0, 1, -45deg); }

.tcon-visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .tcon-visuallyhidden:active, .tcon-visuallyhidden:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../img/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("fonts/slick.eot");
  src: url("fonts/slick.eot?#iefix") format("embedded-opentype"), url("fonts/slick.woff") format("woff"), url("fonts/slick.ttf") format("truetype"), url("fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("fonts/fa-brands-400.eot");
  src: url("fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fonts/fa-brands-400.woff2") format("woff2"), url("fonts/fa-brands-400.woff") format("woff"), url("fonts/fa-brands-400.ttf") format("truetype"), url("fonts/fa-brands-400.svg#fontawesome") format("svg"); }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  src: url("fonts/fa-solid-900.eot");
  src: url("fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("fonts/fa-solid-900.woff2") format("woff2"), url("fonts/fa-solid-900.woff") format("woff"), url("fonts/fa-solid-900.ttf") format("truetype"), url("fonts/fa-solid-900.svg#fontawesome") format("svg"); }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  src: url("fonts/fa-regular-400.eot");
  src: url("fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("fonts/fa-regular-400.woff2") format("woff2"), url("fonts/fa-regular-400.woff") format("woff"), url("fonts/fa-regular-400.ttf") format("truetype"), url("fonts/fa-regular-400.svg#fontawesome") format("svg"); }

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  font-size: 16px;
  font-family: 'Lato';
  margin: 0;
  padding: 0;
  overflow: auto;
  color: #475C6D; }

body {
  overflow: hidden; }

input, select, button, textarea {
  -webkit-appearance: none !important;
  -webkit-border-radius: none;
  -moz-border-radius: none;
  -moz-appearance: none;
  appearance: none;
  outline: none; }

img {
  max-width: 100%; }

a[href^="tel"] {
  color: inherit;
  /* Inherit text color of parent element. */
  text-decoration: none;
  /* Remove underline. */
  /* Additional css `propery: value;` pairs here */ }

.hiddenAnimation {
  opacity: 0; }

header {
  width: 100%;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 9999; }
  header .bar-principal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 9999;
    width: 100%;
    padding: 20px calc((100% - 1170px) / 2);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    header .bar-principal a {
      width: 150px; }
      header .bar-principal a svg .cls-1 {
        fill: #006691; }
    header .bar-principal .right {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 550px; }
      header .bar-principal .right .redes {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        header .bar-principal .right .redes a {
          width: 40px;
          height: 40px;
          font-size: 20px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          background: #006691;
          color: #fff;
          text-decoration: none;
          border-radius: 50%;
          margin: 0 10px; }
      header .bar-principal .right .agenda-cita {
        text-transform: uppercase;
        color: #006691;
        border: 1px solid #006691;
        border-radius: 8px;
        padding: 5px 10px;
        cursor: pointer;
        -webkit-transition: ease .5s;
        -o-transition: ease .5s;
        transition: ease .5s; }
        header .bar-principal .right .agenda-cita:hover {
          background-color: #006691;
          color: #fff; }
        header .bar-principal .right .agenda-cita span {
          margin-right: 10px;
          font-size: initial; }
        header .bar-principal .right .agenda-cita i {
          -webkit-transform: rotate(0deg);
          -moz-transform: rotate(0deg);
          -o-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
          transform: rotate(0deg);
          -webkit-transition: .5s ease-in-out;
          -moz-transition: .5s ease-in-out;
          -o-transition: .5s ease-in-out;
          transition: .5s ease-in-out; }
      header .bar-principal .right .agenda-activo {
        background-color: #006691;
        color: #fff; }
        header .bar-principal .right .agenda-activo i {
          -webkit-transform: rotate(180deg);
          -moz-transform: rotate(180deg);
          -o-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
      header .bar-principal .right .menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        header .bar-principal .right .menu p {
          text-transform: uppercase;
          color: #006691;
          margin-right: 10px !important;
          font-size: initial; }
        header .bar-principal .right .menu .menu-hamburger button {
          border: 0;
          background: transparent; }
        header .bar-principal .right .menu .menu-hamburger .animated-icon {
          width: 30px;
          height: 20px;
          position: relative;
          margin: 0px;
          -webkit-transform: rotate(0deg);
          -moz-transform: rotate(0deg);
          -o-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
          transform: rotate(0deg);
          -webkit-transition: .5s ease-in-out;
          -moz-transition: .5s ease-in-out;
          -o-transition: .5s ease-in-out;
          transition: .5s ease-in-out;
          cursor: pointer; }
          header .bar-principal .right .menu .menu-hamburger .animated-icon span {
            display: block;
            position: absolute;
            height: 4px;
            width: 100%;
            border-radius: 9px;
            opacity: 1;
            left: 0;
            background: #006691;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .25s ease-in-out;
            -moz-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out; }
            header .bar-principal .right .menu .menu-hamburger .animated-icon span:nth-child(1) {
              top: 0px;
              width: 20px;
              margin-left: 10px; }
            header .bar-principal .right .menu .menu-hamburger .animated-icon span:nth-child(2), header .bar-principal .right .menu .menu-hamburger .animated-icon span:nth-child(3) {
              top: 8px; }
            header .bar-principal .right .menu .menu-hamburger .animated-icon span:nth-child(4) {
              bottom: 0;
              width: 10px; }
        header .bar-principal .right .menu .menu-hamburger .open span:nth-child(1), header .bar-principal .right .menu .menu-hamburger .open span:nth-child(4) {
          top: 11px;
          width: 0%;
          left: 50%; }
        header .bar-principal .right .menu .menu-hamburger .open span:nth-child(2) {
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
        header .bar-principal .right .menu .menu-hamburger .open span:nth-child(3) {
          -webkit-transform: rotate(-45deg);
          -moz-transform: rotate(-45deg);
          -o-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }
  header .agendar-cita-form {
    height: 100vh;
    width: 100%;
    position: fixed;
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    top: 0;
    z-index: 6000;
    padding-top: 112px;
    background-color: #fff; }
    header .agendar-cita-form .container-cita {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 1170px;
      margin: 0 auto;
      position: relative; }
      header .agendar-cita-form .container-cita .close {
        position: absolute;
        top: 0;
        right: 0; }
        header .agendar-cita-form .container-cita .close i {
          font-size: 20px; }
      header .agendar-cita-form .container-cita .image {
        width: 50%;
        height: calc(100vh - 107px - 112px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
      header .agendar-cita-form .container-cita form {
        width: 40%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        height: calc(100vh - 107px - 112px); }
        header .agendar-cita-form .container-cita form input, header .agendar-cita-form .container-cita form textarea, header .agendar-cita-form .container-cita form select {
          width: 100%;
          padding: 5px 10px;
          text-align: center;
          border-radius: 25px;
          border: 1px solid rgba(101, 101, 101, 0.3);
          margin-bottom: 20px;
          resize: none;
          font-family: inherit; }
          header .agendar-cita-form .container-cita form input::-webkit-input-placeholder, header .agendar-cita-form .container-cita form textarea::-webkit-input-placeholder, header .agendar-cita-form .container-cita form select::-webkit-input-placeholder {
            letter-spacing: 1px; }
          header .agendar-cita-form .container-cita form input:-ms-input-placeholder, header .agendar-cita-form .container-cita form textarea:-ms-input-placeholder, header .agendar-cita-form .container-cita form select:-ms-input-placeholder {
            letter-spacing: 1px; }
          header .agendar-cita-form .container-cita form input::-ms-input-placeholder, header .agendar-cita-form .container-cita form textarea::-ms-input-placeholder, header .agendar-cita-form .container-cita form select::-ms-input-placeholder {
            letter-spacing: 1px; }
          header .agendar-cita-form .container-cita form input::placeholder, header .agendar-cita-form .container-cita form textarea::placeholder, header .agendar-cita-form .container-cita form select::placeholder {
            letter-spacing: 1px; }
        header .agendar-cita-form .container-cita form .col12 {
          width: 45%; }
          header .agendar-cita-form .container-cita form .col12 label {
            text-align: left; }
        header .agendar-cita-form .container-cita form .col-12 {
          width: 150px; }
          header .agendar-cita-form .container-cita form .col-12 a {
            color: inherit; }
          header .agendar-cita-form .container-cita form .col-12 i {
            font-size: 50px;
            width: 100%;
            text-align: center; }
          header .agendar-cita-form .container-cita form .col-12 p {
            text-align: center; }
        header .agendar-cita-form .container-cita form label {
          width: 100%;
          font-style: italic;
          font-size: 14px;
          margin-bottom: 5px;
          display: block;
          text-align: center; }
        header .agendar-cita-form .container-cita form input[type="submit"] {
          border-radius: 10px;
          border: 2px solid #006691;
          color: #006691;
          background-color: #fff;
          -webkit-transition: ease .5s;
          -o-transition: ease .5s;
          transition: ease .5s;
          text-transform: uppercase;
          letter-spacing: 2px;
          font-weight: 700;
          cursor: pointer; }
          header .agendar-cita-form .container-cita form input[type="submit"]:hover {
            background-color: #006691;
            color: #fff; }
    header .agendar-cita-form .sub-menu {
      position: absolute;
      bottom: 0; }
  header .menu-principal {
    height: 100vh;
    width: 100%;
    position: fixed;
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    top: 0;
    z-index: 5000;
    background-color: #00a5b7;
    background: #00a5b7;
    background: -moz-linear-gradient(-45deg, #00a5b7 0%, #00a5b7 13%, #9acdef 90%, #9acdef 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #00a5b7), color-stop(13%, #00a5b7), color-stop(90%, #9acdef), color-stop(100%, #9acdef));
    background: -webkit-linear-gradient(-45deg, #00a5b7 0%, #00a5b7 13%, #9acdef 90%, #9acdef 100%);
    background: -o-linear-gradient(-45deg, #00a5b7 0%, #00a5b7 13%, #9acdef 90%, #9acdef 100%);
    background: -ms-linear-gradient(-45deg, #00a5b7 0%, #00a5b7 13%, #9acdef 90%, #9acdef 100%);
    background: -webkit-linear-gradient(315deg, #00a5b7 0%, #00a5b7 13%, #9acdef 90%, #9acdef 100%);
    background: -o-linear-gradient(315deg, #00a5b7 0%, #00a5b7 13%, #9acdef 90%, #9acdef 100%);
    background: linear-gradient(135deg, #00a5b7 0%, #00a5b7 13%, #9acdef 90%, #9acdef 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a5b7', endColorstr='#9acdef', GradientType=1 ); }
    header .menu-principal .left {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      position: relative;
      background-image: url(../img/menu/curva.svg);
      height: 100%;
      background-position: right;
      background-size: cover;
      width: 40%; }
      header .menu-principal .left .container {
        position: absolute;
        top: 120px;
        left: calc((100vw - 1170px) / 2);
        color: #fff; }
        header .menu-principal .left .container p {
          font-size: initial; }
        header .menu-principal .left .container .redes {
          width: 70px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          margin: 20px 0; }
          header .menu-principal .left .container .redes a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #fff;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            text-decoration: none; }
            header .menu-principal .left .container .redes a i {
              color: #918BBE; }
        header .menu-principal .left .container .agenda-cita {
          text-transform: uppercase;
          color: #fff;
          border: 1px solid #fff;
          border-radius: 8px;
          padding: 5px 10px;
          cursor: pointer;
          -webkit-transition: ease .5s;
          -o-transition: ease .5s;
          transition: ease .5s;
          margin-top: 10px;
          display: -webkit-inline-box;
          display: -ms-inline-flexbox;
          display: inline-flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          header .menu-principal .left .container .agenda-cita:hover {
            background-color: #fff;
            color: #918BBE; }
          header .menu-principal .left .container .agenda-cita span {
            margin-right: 10px;
            font-size: initial; }
          header .menu-principal .left .container .agenda-cita i {
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out; }
    header .menu-principal .right nav {
      padding-top: 120px;
      width: 600px; }
      header .menu-principal .right nav ul {
        color: #fff;
        list-style: none; }
        header .menu-principal .right nav ul li {
          width: 100%;
          padding: 20px 0;
          font-style: italic;
          font-weight: 300;
          font-size: 20px;
          border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
          header .menu-principal .right nav ul li a {
            display: inline-block;
            padding-left: 20px;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            font-style: normal; }
          header .menu-principal .right nav ul li:last-child {
            border-bottom: none; }
  header .whatsapp {
    position: fixed;
    right: calc((100% - 1240px) / 2);
    top: 30vh;
    width: 70px;
    z-index: 1000; }

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 10px calc((100% - 1170px) / 2);
  background-color: #475C6D;
  color: #fff;
  margin-top: 30px; }
  footer .logo {
    width: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  footer .derechos {
    width: 300px;
    text-align: center; }
    footer .derechos p {
      font-size: initial;
      margin: 1em 0 !important; }
  footer .braigo {
    width: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    footer .braigo a {
      height: 50px; }
      footer .braigo a img {
        height: 100%; }

#home {
  margin-top: 112px; }
  #home h1.special {
    font-size: 125px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    margin: 20px 0;
    font-weight: 900; }
  #home .arrow {
    width: 25px;
    position: absolute;
    left: calc((100% - 25px) / 2);
    cursor: pointer; }
    #home .arrow svg {
      width: 100%; }
      #home .arrow svg .cls-1 {
        fill: #006691; }
  #home img.icono-separador {
    width: 70px;
    margin: 0 auto;
    display: block; }
  #home .slide-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative; }
    #home .slide-container .curva {
      position: absolute;
      width: 100%; }
      #home .slide-container .curva svg {
        width: 100%; }
        #home .slide-container .curva svg .cls-1 {
          fill: #f6f7f9; }
    #home .slide-container .indicadores {
      position: absolute;
      left: calc((100% - 1170px) / 2);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      top: 50px;
      z-index: 2000; }
      #home .slide-container .indicadores a {
        width: 100%;
        margin-bottom: 20px;
        text-decoration: none;
        color: inherit;
        opacity: .3;
        -webkit-transition: ease-in-out .2s;
        -o-transition: ease-in-out .2s;
        transition: ease-in-out .2s; }
      #home .slide-container .indicadores .active {
        opacity: 1; }
    #home .slide-container .slide-index {
      width: 100%;
      height: 850px;
      padding: 50px 0; }
      #home .slide-container .slide-index .slide {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 calc((100vw - 1170px) / 2); }
        #home .slide-container .slide-index .slide .text {
          width: 335px;
          margin-left: 150px; }
          #home .slide-container .slide-index .slide .text h3 {
            font-weight: 500;
            width: 50px;
            border-bottom: 1px solid;
            padding-bottom: 20px;
            font-size: 23px; }
          #home .slide-container .slide-index .slide .text h1 {
            text-transform: uppercase;
            font-weight: 800;
            font-size: 35px; }
          #home .slide-container .slide-index .slide .text a {
            margin-top: 20px;
            display: inline-block;
            text-decoration: none;
            color: inherit;
            padding: 5px 20px;
            border: 1px solid #475C6D;
            -webkit-transition: ease .5s;
            -o-transition: ease .5s;
            transition: ease .5s; }
            #home .slide-container .slide-index .slide .text a:hover {
              background-color: #475C6D;
              color: #fff; }
        #home .slide-container .slide-index .slide .imagen {
          width: 500px; }
    #home .slide-container .arrow {
      bottom: 250px; }
  #home .especialidades {
    width: 1170px;
    margin: 0 auto;
    margin-bottom: 350px; }
    #home .especialidades .cols {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      margin: 30px 0; }
      #home .especialidades .cols .col15:hover .flipper, #home .especialidades .cols .col15.hover .flipper {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg); }
      #home .especialidades .cols .col15 {
        width: 180px;
        height: 350px;
        -webkit-perspective: 1000px;
        perspective: 1000px; }
        #home .especialidades .cols .col15 .flipper {
          position: relative;
          -webkit-transition: 0.6s;
          -o-transition: 0.6s;
          transition: 0.6s;
          -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }
          #home .especialidades .cols .col15 .flipper .front {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -ms-flex-line-pack: center;
            align-content: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            border: 3px solid linear-gradient(45deg, red, rgba(0, 0, 0, 0)) 1 100%;
            position: absolute;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            width: 180px;
            height: 350px;
            top: 0;
            left: 0;
            z-index: 2;
            -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg); }
            #home .especialidades .cols .col15 .flipper .front .background {
              width: 100%;
              height: 7px;
              bottom: 0;
              position: absolute; }
          #home .especialidades .cols .col15 .flipper .back {
            height: 100%;
            width: 100%;
            position: absolute;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            top: 0;
            -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
            left: 0;
            width: 180px;
            height: 350px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            padding: 20px;
            color: #fff; }
            #home .especialidades .cols .col15 .flipper .back img {
              height: 75px; }
            #home .especialidades .cols .col15 .flipper .back h3 {
              width: 100%;
              text-align: center; }
            #home .especialidades .cols .col15 .flipper .back p {
              text-align: center;
              margin: 0;
              font-size: 14px; }
        #home .especialidades .cols .col15 .nth-1 .front img {
          width: 80%;
          margin: 13px 0; }
        #home .especialidades .cols .col15 .nth-1 .front .background {
          background-image: -webkit-gradient(linear, left top, left bottom, from(#00A5B7), to(#9ACDEF));
          background-image: -webkit-linear-gradient(top, #00A5B7, #9ACDEF);
          background-image: -o-linear-gradient(top, #00A5B7, #9ACDEF);
          background-image: linear-gradient(to bottom, #00A5B7, #9ACDEF); }
        #home .especialidades .cols .col15 .nth-1 .back {
          background-image: -webkit-gradient(linear, left top, left bottom, from(#00A5B7), to(#9ACDEF));
          background-image: -webkit-linear-gradient(top, #00A5B7, #9ACDEF);
          background-image: -o-linear-gradient(top, #00A5B7, #9ACDEF);
          background-image: linear-gradient(to bottom, #00A5B7, #9ACDEF); }
        #home .especialidades .cols .col15 .nth-2 .front .background {
          background-image: -webkit-gradient(linear, left top, right top, from(#F4C9DE), to(#E9A9CA));
          background-image: -webkit-linear-gradient(left, #F4C9DE, #E9A9CA);
          background-image: -o-linear-gradient(left, #F4C9DE, #E9A9CA);
          background-image: linear-gradient(to right, #F4C9DE, #E9A9CA); }
        #home .especialidades .cols .col15 .nth-2 .back {
          background-image: -webkit-gradient(linear, left top, right top, from(#F4C9DE), to(#E9A9CA));
          background-image: -webkit-linear-gradient(left, #F4C9DE, #E9A9CA);
          background-image: -o-linear-gradient(left, #F4C9DE, #E9A9CA);
          background-image: linear-gradient(to right, #F4C9DE, #E9A9CA); }
        #home .especialidades .cols .col15 .nth-3 .front .background {
          background-image: -webkit-gradient(linear, left top, right top, from(#918BBE), to(#9ACDEF));
          background-image: -webkit-linear-gradient(left, #918BBE, #9ACDEF);
          background-image: -o-linear-gradient(left, #918BBE, #9ACDEF);
          background-image: linear-gradient(to right, #918BBE, #9ACDEF); }
        #home .especialidades .cols .col15 .nth-3 .back {
          background-image: -webkit-gradient(linear, left top, right top, from(#918BBE), to(#9ACDEF));
          background-image: -webkit-linear-gradient(left, #918BBE, #9ACDEF);
          background-image: -o-linear-gradient(left, #918BBE, #9ACDEF);
          background-image: linear-gradient(to right, #918BBE, #9ACDEF); }
        #home .especialidades .cols .col15 .nth-4 .front .background {
          background-image: -webkit-gradient(linear, left top, right top, from(#0076B3), to(#9ACDEF));
          background-image: -webkit-linear-gradient(left, #0076B3, #9ACDEF);
          background-image: -o-linear-gradient(left, #0076B3, #9ACDEF);
          background-image: linear-gradient(to right, #0076B3, #9ACDEF); }
        #home .especialidades .cols .col15 .nth-4 .back {
          background-image: -webkit-gradient(linear, left top, right top, from(#0076B3), to(#9ACDEF));
          background-image: -webkit-linear-gradient(left, #0076B3, #9ACDEF);
          background-image: -o-linear-gradient(left, #0076B3, #9ACDEF);
          background-image: linear-gradient(to right, #0076B3, #9ACDEF); }
          #home .especialidades .cols .col15 .nth-4 .back p {
            font-size: 13px; }
        #home .especialidades .cols .col15 .nth-5 .front .background {
          background-image: -webkit-gradient(linear, left top, right top, from(#E95865), to(#EC807C));
          background-image: -webkit-linear-gradient(left, #E95865, #EC807C);
          background-image: -o-linear-gradient(left, #E95865, #EC807C);
          background-image: linear-gradient(to right, #E95865, #EC807C); }
        #home .especialidades .cols .col15 .nth-5 .back {
          background-image: -webkit-gradient(linear, left top, right top, from(#E95865), to(#EC807C));
          background-image: -webkit-linear-gradient(left, #E95865, #EC807C);
          background-image: -o-linear-gradient(left, #E95865, #EC807C);
          background-image: linear-gradient(to right, #E95865, #EC807C); }
    #home .especialidades .arrow {
      margin: 150px 0; }
  #home .circulo-info {
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 800px;
    overflow: hidden; }
    #home .circulo-info .circle {
      width: 1000px;
      left: calc((100% - 1000px) / 2);
      top: 0;
      height: 1000px;
      border-radius: 50%;
      background: #0077b3;
      background: -moz-linear-gradient(top, #0077b3 0%, #5c9ff8 100%);
      background: -webkit-gradient(left top, left bottom, color-stop(0%, #0077b3), color-stop(100%, #5c9ff8));
      background: -webkit-linear-gradient(top, #0077b3 0%, #5c9ff8 100%);
      background: -o-linear-gradient(top, #0077b3 0%, #5c9ff8 100%);
      background: -ms-linear-gradient(top, #0077b3 0%, #5c9ff8 100%);
      background: -webkit-gradient(linear, left top, left bottom, from(#0077b3), to(#5c9ff8));
      background: linear-gradient(to bottom, #0077b3 0%, #5c9ff8 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0077b3', endColorstr='#5c9ff8', GradientType=0 );
      position: absolute; }
      #home .circulo-info .circle h1 {
        text-align: center;
        color: #fff;
        font-size: 45px;
        top: -.5em;
        position: absolute;
        left: calc((100% - 740px) / 2); }
    #home .circulo-info .canvas {
      width: 250px;
      margin: 50px auto;
      display: block;
      height: 370px;
      position: absolute;
      top: 70px;
      left: calc((100% - 250px) / 2); }
      #home .circulo-info .canvas .particles {
        position: relative;
        width: 100%;
        height: 100%; }
        #home .circulo-info .canvas .particles .info {
          opacity: 1;
          width: 15px !important;
          height: 15px !important;
          -webkit-transition: ease .5s;
          -o-transition: ease .5s;
          transition: ease .5s;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          color: #fff;
          background: #8F0580; }
        #home .circulo-info .canvas .particles .particulas {
          width: 10px;
          height: 10px;
          position: absolute;
          border-radius: 50%; }
        #home .circulo-info .canvas .particles .texto-slide {
          position: absolute;
          width: 700px;
          bottom: -3.5em;
          font-size: 40px;
          color: #fff;
          font-weight: bold;
          text-align: center;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          left: calc((100% - 700px) / 2); }
          #home .circulo-info .canvas .particles .texto-slide p {
            margin: 0; }
    #home .circulo-info .agenda-cita {
      text-transform: uppercase;
      color: #fff;
      border: 1px solid #fff;
      border-radius: 8px;
      padding: 5px 10px;
      position: absolute;
      bottom: 100px;
      left: calc((100% - 189px) / 2);
      cursor: pointer;
      -webkit-transition: ease .5s;
      -o-transition: ease .5s;
      transition: ease .5s; }
      #home .circulo-info .agenda-cita:hover {
        background: #fff;
        color: #006691; }
      #home .circulo-info .agenda-cita span {
        margin-right: 10px; }
    #home .circulo-info .arrow {
      bottom: 30px; }
      #home .circulo-info .arrow svg .cls-1 {
        fill: #fff; }
    #home .circulo-info .curva {
      width: 100vw;
      left: 0;
      position: absolute;
      top: 0;
      z-index: -1; }
  #home .nuestro-equipo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 1170px;
    margin: 0 auto;
    margin-top: 50px; }
    #home .nuestro-equipo .col12 {
      width: 450px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-bottom: 50px; }
      #home .nuestro-equipo .col12 img {
        width: 200px;
        height: 100%; }
      #home .nuestro-equipo .col12 p {
        width: 200px; }
        #home .nuestro-equipo .col12 p i {
          text-transform: uppercase; }
  #home .instalaciones {
    width: 1170px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    #home .instalaciones .collage {
      height: 600px;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 50px; }
      #home .instalaciones .collage .img {
        width: 100%;
        height: 600px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden; }
        #home .instalaciones .collage .img img {
          height: 100%;
          max-width: inherit;
          width: initial; }
    #home .instalaciones .collage-indicadores {
      width: 750px;
      margin: 0 auto;
      margin-bottom: 50px; }
      #home .instalaciones .collage-indicadores .img {
        height: 130px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #f9f9f9; }
        #home .instalaciones .collage-indicadores .img img {
          height: 100%; }
      #home .instalaciones .collage-indicadores .slick-prev:before, #home .instalaciones .collage-indicadores .slick-next:before {
        color: #006691;
        font-family: "Font Awesome 5 Free";
        font-weight: 900; }
      #home .instalaciones .collage-indicadores .slick-prev:before {
        content: "\f053"; }
      #home .instalaciones .collage-indicadores .slick-next:before {
        content: "\f054";
        font-weight: 900; }
  #home .contactanos form {
    width: 700px;
    margin: 0 auto; }
    #home .contactanos form input, #home .contactanos form label, #home .contactanos form textarea {
      width: 100%; }
    #home .contactanos form input {
      border: none;
      border-bottom: 2px solid #AEADB3;
      font-size: inherit;
      text-align: center;
      padding: 5px 0;
      margin-bottom: 30px;
      font-family: inherit; }
      #home .contactanos form input::-webkit-input-placeholder {
        opacity: .3; }
      #home .contactanos form input:-ms-input-placeholder {
        opacity: .3; }
      #home .contactanos form input::-ms-input-placeholder {
        opacity: .3; }
      #home .contactanos form input::placeholder {
        opacity: .3; }
    #home .contactanos form label {
      width: 100%;
      text-align: center;
      padding: 5px 0;
      display: block;
      opacity: .3; }
    #home .contactanos form textarea {
      border: 2px solid #AEADB3;
      resize: none;
      font-family: inherit; }
    #home .contactanos form input[type="submit"] {
      margin-top: 30px;
      border: 2px solid #475C6D;
      text-transform: uppercase;
      background: #fff;
      -webkit-transition: ease .5s;
      -o-transition: ease .5s;
      transition: ease .5s;
      cursor: pointer;
      color: #475C6D; }
      #home .contactanos form input[type="submit"]:hover {
        background-color: #475C6D;
        color: #fff; }
  #home .contactanos #map {
    margin: 10px auto;
    width: 700px;
    height: 300px;
    background: rgba(101, 101, 101, 0.3);
    position: relative; }
  #home .contactanos .waze {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    #home .contactanos .waze a {
      color: #475C6D;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-top: 15px; }
      #home .contactanos .waze a img {
        width: 100px; }
      #home .contactanos .waze a p {
        width: 100%;
        text-align: center;
        margin: 0; }
  #home .contactanos .info-contacto {
    width: 700px;
    margin: 0 auto;
    color: #475C6D; }
    #home .contactanos .info-contacto p {
      width: 100%;
      text-align: center; }
    #home .contactanos .info-contacto .formas {
      width: 60%;
      margin: 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-pack: distribute;
      justify-content: space-around; }
      #home .contactanos .info-contacto .formas .col12 {
        width: 200px; }
        #home .contactanos .info-contacto .formas .col12 a {
          color: #475C6D; }
        #home .contactanos .info-contacto .formas .col12 i {
          font-size: 90px;
          width: 100%;
          text-align: center; }
      #home .contactanos .info-contacto .formas .col1 {
        width: 100%; }
        #home .contactanos .info-contacto .formas .col1 .redes {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
          #home .contactanos .info-contacto .formas .col1 .redes a {
            width: 30px;
            height: 30px;
            color: #fff;
            background: #475C6D;
            border-radius: 50%;
            margin: 0 10px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            text-decoration: none; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(1) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -50s;
  animation-delay: -50s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(2) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -100s;
  animation-delay: -100s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(3) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -150s;
  animation-delay: -150s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(4) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -200s;
  animation-delay: -200s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(5) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -250s;
  animation-delay: -250s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(6) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -300s;
  animation-delay: -300s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(7) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -350s;
  animation-delay: -350s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(8) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -400s;
  animation-delay: -400s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(9) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -450s;
  animation-delay: -450s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(10) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -500s;
  animation-delay: -500s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(11) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -550s;
  animation-delay: -550s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(12) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -600s;
  animation-delay: -600s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(13) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -650s;
  animation-delay: -650s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(14) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -700s;
  animation-delay: -700s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(15) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -750s;
  animation-delay: -750s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(16) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -800s;
  animation-delay: -800s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(17) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -850s;
  animation-delay: -850s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(18) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -900s;
  animation-delay: -900s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(19) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -950s;
  animation-delay: -950s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(20) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1000s;
  animation-delay: -1000s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(21) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1050s;
  animation-delay: -1050s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(22) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1100s;
  animation-delay: -1100s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(23) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1150s;
  animation-delay: -1150s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(24) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1200s;
  animation-delay: -1200s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(25) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1250s;
  animation-delay: -1250s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(26) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1300s;
  animation-delay: -1300s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(27) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1350s;
  animation-delay: -1350s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(28) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1400s;
  animation-delay: -1400s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(29) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1450s;
  animation-delay: -1450s;
  background: #6AB8D3; }

@-webkit-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-moz-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-o-keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@keyframes moveX {
  from {
    left: 0; }
  to {
    left: 250px; } }

@-webkit-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-moz-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@-o-keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

@keyframes moveY {
  from {
    top: 0; }
  to {
    top: 370px; } }

.particulas:nth-child(30) {
  -webkit-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -moz-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  -o-animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  animation: moveX 26.05s linear 0s infinite alternate, moveY 30.4s linear 0s infinite alternate;
  height: 5px;
  width: 5px;
  -webkit-animation-delay: -1500s;
  animation-delay: -1500s;
  background: #6AB8D3; }

#servicio {
  margin-top: 112px; }
  #servicio h1.special {
    font-size: 125px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    margin: 0;
    font-weight: 900; }
  #servicio h3.special {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 500;
    margin: 0; }
  #servicio .arrow {
    width: 25px;
    position: absolute;
    left: calc((100% - 25px) / 2);
    cursor: pointer; }
    #servicio .arrow svg {
      width: 100%; }
      #servicio .arrow svg .cls-1 {
        fill: #006691; }
  #servicio img.icono-separador {
    width: 70px;
    margin: 0 auto;
    display: block; }
  #servicio .general-container {
    width: 1170px;
    margin: 0 auto; }
    #servicio .general-container .banner {
      position: relative;
      height: 450px;
      margin-bottom: 50px; }
      #servicio .general-container .banner img {
        position: absolute;
        top: 0;
        z-index: -1; }
      #servicio .general-container .banner p {
        width: 450px;
        margin: 0 auto;
        text-align: justify; }
    #servicio .general-container .servicios {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      #servicio .general-container .servicios .col14 {
        width: 250px;
        height: 250px;
        overflow: hidden;
        position: relative;
        margin: 20px 21px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer; }
        #servicio .general-container .servicios .col14 img {
          max-height: 100%;
          max-width: inherit; }
        #servicio .general-container .servicios .col14 .more-info {
          position: absolute;
          bottom: 0;
          width: 100%;
          height: 45px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          z-index: 1;
          background-color: #475C6D;
          color: #fff;
          padding: 0 20px; }
          #servicio .general-container .servicios .col14 .more-info p {
            width: 60%;
            font-weight: bold;
            margin: 0; }
          #servicio .general-container .servicios .col14 .more-info a {
            width: 26px;
            height: 26px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            font-size: 14px;
            border: 1px solid #fff;
            border-radius: 50%;
            cursor: pointer;
            color: #fff;
            text-decoration: none; }
        #servicio .general-container .servicios .col14:nth-child(32), #servicio .general-container .servicios .col14:nth-child(31), #servicio .general-container .servicios .col14:nth-child(30), #servicio .general-container .servicios .col14:nth-child(29), #servicio .general-container .servicios .col14:nth-child(28), #servicio .general-container .servicios .col14:nth-child(27) {
          height: 0;
          margin-top: 0;
          margin-bottom: 0; }
    #servicio .general-container .banner-promocion {
      width: 100%;
      height: 400px;
      background-image: url(../img/servicios/sonrisa_promocion}.png);
      background-position: top;
      background-size: cover;
      color: #fff;
      padding: 20px;
      padding-right: 47%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
      align-content: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-bottom: 50px; }
      #servicio .general-container .banner-promocion h3 {
        text-transform: uppercase; }
      #servicio .general-container .banner-promocion h1 {
        font-size: 60px;
        margin: 0;
        text-transform: uppercase; }
      #servicio .general-container .banner-promocion p {
        text-transform: uppercase;
        width: 100%; }
      #servicio .general-container .banner-promocion a {
        text-transform: uppercase;
        text-decoration: none;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 5px;
        padding: 5px 15px;
        left: calc((100% - 189px) / 2);
        cursor: pointer;
        -webkit-transition: ease .5s;
        -o-transition: ease .5s;
        transition: ease .5s; }
        #servicio .general-container .banner-promocion a:hover {
          background: #fff;
          color: #006691; }
        #servicio .general-container .banner-promocion a span {
          margin-right: 10px; }
    #servicio .general-container .collage {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      #servicio .general-container .collage .col12 {
        width: 400px;
        height: 400px;
        margin: 30px; }
  #servicio .popups {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(101, 101, 101, 0.3);
    left: 0;
    z-index: 9999;
    display: none; }
    #servicio .popups .popup {
      width: 700px;
      height: 500px;
      background-color: #fff;
      position: relative; }
      #servicio .popups .popup .head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 90px;
        padding: 10px 20px; }
        #servicio .popups .popup .head img {
          width: 85px;
          margin-right: 15px; }
        #servicio .popups .popup .head .large {
          height: 25px;
          width: 400px;
          background-color: #B9CDD4; }
        #servicio .popups .popup .head .first-short {
          height: 25px;
          width: 70px;
          background: #ABB8C1; }
        #servicio .popups .popup .head .second-short {
          background: #8597A3;
          height: 25px;
          width: 70px; }
      #servicio .popups .popup .close {
        position: absolute;
        right: -15px;
        top: -15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #ABB8C1;
        height: 30px;
        width: 30px;
        border-radius: 50%;
        cursor: pointer; }
        #servicio .popups .popup .close p {
          margin: 0;
          color: #fff;
          display: inline; }
      #servicio .popups .popup .body {
        padding: 0 20px; }
        #servicio .popups .popup .body h3 {
          margin: 0; }
        #servicio .popups .popup .body .container {
          display: none; }
          #servicio .popups .popup .body .container p {
            text-align: justify; }
      #servicio .popups .popup .footer {
        position: absolute;
        bottom: 0;
        width: 650px;
        left: 25px;
        border-top: 1px solid #475C6D;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 70px; }
        #servicio .popups .popup .footer a {
          text-decoration: none; }
        #servicio .popups .popup .footer .button {
          width: 200px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          text-transform: uppercase;
          color: #475C6D;
          border: 1px solid #475C6D;
          border-radius: 8px;
          height: 35px;
          -webkit-transition: ease .5s;
          -o-transition: ease .5s;
          transition: ease .5s; }
          #servicio .popups .popup .footer .button:hover {
            background: #475C6D;
            color: #fff; }
        #servicio .popups .popup .footer .indicadores {
          width: 80px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          #servicio .popups .popup .footer .indicadores a {
            height: 35px;
            width: 35px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            color: #fff;
            background: #475C6D; }

#gracias {
  margin-top: 112px; }
  #gracias .general-container {
    height: 500px;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    #gracias .general-container .image {
      width: 50%; }
    #gracias .general-container .text {
      width: 40%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-line-pack: center;
      align-content: center;
      padding-right: 10%; }
      #gracias .general-container .text h3, #gracias .general-container .text p {
        text-align: center;
        width: 100%;
        font-weight: bold; }
      #gracias .general-container .text h3 {
        font-size: 40px; }
      #gracias .general-container .text p {
        font-size: 20px; }
      #gracias .general-container .text a {
        text-transform: uppercase;
        color: #006691;
        letter-spacing: 1px;
        font-size: 14px;
        font-weight: 700;
        margin-top: 30px; }

#login header {
  background: transparent; }
  #login header .bar-principal a svg .cls-1 {
    fill: #fff; }
  #login header .bar-principal .right .redes a {
    background-color: #fff;
    color: #006691; }
  #login header .bar-principal .right .agenda-cita {
    color: #fff;
    border: 1px solid #fff; }
    #login header .bar-principal .right .agenda-cita:hover {
      background: #fff;
      color: #006691; }
  #login header .bar-principal .right .menu p {
    color: #fff; }
  #login header .bar-principal .right .menu .menu-hamburger .animated-icon span {
    background-color: #fff; }

#login footer {
  margin-top: 0; }

#login .general-container {
  background-image: url(../img/login/background.png);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  #login .general-container form {
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    #login .general-container form input {
      width: 100%;
      background: none;
      border: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      text-align: center;
      height: 30px;
      margin-bottom: 60px;
      font-family: inherit;
      font-size: 25px;
      padding: 5px 0;
      height: 2em; }
      #login .general-container form input::-webkit-input-placeholder {
        text-transform: uppercase;
        color: #fff;
        font-weight: lighter; }
      #login .general-container form input:-ms-input-placeholder {
        text-transform: uppercase;
        color: #fff;
        font-weight: lighter; }
      #login .general-container form input::-ms-input-placeholder {
        text-transform: uppercase;
        color: #fff;
        font-weight: lighter; }
      #login .general-container form input::placeholder {
        text-transform: uppercase;
        color: #fff;
        font-weight: lighter; }
    #login .general-container form input[type="submit"] {
      width: auto;
      border: 1px solid rgba(255, 255, 255, 0.3);
      text-decoration: none;
      font-weight: 800;
      text-transform: uppercase;
      padding: 0 50px;
      font-size: 12px;
      height: 2em;
      cursor: pointer;
      -webkit-transition: ease .5s;
      -o-transition: ease .5s;
      transition: ease .5s; }
      #login .general-container form input[type="submit"]:hover {
        background: #fff;
        color: #006691; }

#recursos {
  margin-top: 112px; }
  #recursos .general-container {
    width: 1170px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    #recursos .general-container .banner {
      width: 100%;
      height: 250px;
      background: url(../img/recursos/recursos.png);
      background-size: cover;
      background-position: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      #recursos .general-container .banner h1.special {
        font-size: 125px;
        text-transform: uppercase;
        width: 100%;
        text-align: center;
        margin: 20px 0;
        font-weight: 900; }
    #recursos .general-container .entradas {
      width: 60%;
      margin-top: 30px; }
      #recursos .general-container .entradas .entrada {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        height: 225px;
        margin-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(101, 101, 101, 0.3); }
        #recursos .general-container .entradas .entrada .img {
          width: 50%;
          height: 100%; }
          #recursos .general-container .entradas .entrada .img img {
            min-width: 100%;
            height: 100%; }
        #recursos .general-container .entradas .entrada .text {
          position: relative;
          width: 45%;
          height: 100%; }
          #recursos .general-container .entradas .entrada .text h3 {
            margin: 0;
            color: #006691;
            letter-spacing: 1px;
            font-weight: 800; }
          #recursos .general-container .entradas .entrada .text p {
            text-align: justify;
            margin-bottom: 0;
            margin-top: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            height: 7.5em;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            overflow: hidden;
            line-height: 1.25em; }
          #recursos .general-container .entradas .entrada .text a {
            position: absolute;
            bottom: 0;
            text-decoration: none;
            color: #475C6D;
            padding: 5px 20px;
            border: 1px solid #475C6D;
            -webkit-transition: ease .5s;
            -o-transition: ease .5s;
            transition: ease .5s;
            margin-top: 10px;
            display: inline-block; }
            #recursos .general-container .entradas .entrada .text a:hover {
              background-color: #475C6D;
              color: #fff; }
    #recursos .general-container .sub-menu {
      width: 25%;
      margin-top: 30px; }
      #recursos .general-container .sub-menu .sub span {
        display: inline-block;
        padding-bottom: 20px;
        width: 100%;
        border-bottom: 1px solid rgba(101, 101, 101, 0.3);
        font-weight: 800;
        letter-spacing: 2px; }
      #recursos .general-container .sub-menu .sub ul {
        list-style: none;
        padding: 0; }
        #recursos .general-container .sub-menu .sub ul li {
          padding: 5px 0; }
          #recursos .general-container .sub-menu .sub ul li a {
            color: inherit;
            text-decoration: none; }
            #recursos .general-container .sub-menu .sub ul li a:hover {
              text-decoration: underline; }
      #recursos .general-container .sub-menu .sub form {
        width: 100%; }
        #recursos .general-container .sub-menu .sub form input {
          width: 100%;
          height: 60px;
          padding: 0 10px;
          font-family: inherit;
          font-size: 20px;
          font-weight: 300;
          border: 1px solid rgba(101, 101, 101, 0.3);
          border-radius: 5px;
          margin-bottom: 30px; }
          #recursos .general-container .sub-menu .sub form input::-webkit-input-placeholder {
            letter-spacing: 1px;
            color: rgba(101, 101, 101, 0.3); }
          #recursos .general-container .sub-menu .sub form input:-ms-input-placeholder {
            letter-spacing: 1px;
            color: rgba(101, 101, 101, 0.3); }
          #recursos .general-container .sub-menu .sub form input::-ms-input-placeholder {
            letter-spacing: 1px;
            color: rgba(101, 101, 101, 0.3); }
          #recursos .general-container .sub-menu .sub form input::placeholder {
            letter-spacing: 1px;
            color: rgba(101, 101, 101, 0.3); }
        #recursos .general-container .sub-menu .sub form input[type="submit"] {
          background-color: #006691;
          border-color: #006691;
          -webkit-transition: ease .5s;
          -o-transition: ease .5s;
          transition: ease .5s;
          color: #fff;
          text-transform: uppercase;
          letter-spacing: 1px;
          font-weight: 500;
          cursor: pointer; }
          #recursos .general-container .sub-menu .sub form input[type="submit"]:hover {
            background-color: #fff;
            color: #006691; }
    #recursos .general-container .paginacion {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-top: 20px; }
      #recursos .general-container .paginacion p {
        margin: 0 20px; }

#services {
  margin-top: 112px;
  font-size: 19px; }
  #services h1 {
    font-size: 125px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    margin: 0;
    font-weight: 900; }
  #services .largo {
    font-size: 110px; }
  #services h3, #services p {
    margin: 0; }
  #services h2 {
    text-transform: uppercase;
    font-style: italic;
    margin: 0;
    font-size: 20px;
    width: 100%;
    text-align: center; }
  #services .margin-bottom {
    margin-bottom: 20px; }
  #services .margin-top {
    margin-top: 20px; }
  #services .extra-padding {
    padding: 0 50px !important; }
  #services .extra-extra-padding {
    padding: 0 100px !important; }
  #services .general-container {
    width: 1170px;
    margin: 0 auto;
    position: relative; }
    #services .general-container .return {
      position: absolute;
      top: 0;
      text-decoration: none;
      color: inherit; }
      #services .general-container .return i {
        padding-right: 10px; }
    #services .general-container .text-align-justify {
      text-align: justify !important; }
    #services .general-container .text-align-left {
      text-align: left !important; }
    #services .general-container .row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-bottom: 50px;
      text-align: justify; }
      #services .general-container .row .col12 {
        width: 50%;
        padding: 0 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        #services .general-container .row .col12 .row-4 {
          height: 140px;
          margin: 5px 10%; }
        #services .general-container .row .col12 .row-12 img {
          height: 250px; }
      #services .general-container .row .col13 {
        width: 30%; }
      #services .general-container .row .text-align-center {
        text-align: center; }
        #services .general-container .row .text-align-center h3 {
          width: 100%; }
      #services .general-container .row .col14 {
        width: 25%;
        padding: 0 20px; }
    #services .general-container .animacion {
      position: relative;
      min-height: 285px; }
      #services .general-container .animacion img {
        position: absolute;
        top: 0;
        z-index: -1;
        left: calc((100% - 350px) / 2);
        width: 350px; }
      #services .general-container .animacion .text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        #services .general-container .animacion .text p {
          text-align: center; }
    #services .general-container .parrafo {
      width: 71%;
      margin-left: auto;
      margin-right: auto;
      text-align: center; }
    #services .general-container .justify-content-center {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
    #services .general-container .justify-content-space-between {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
    #services .general-container .justify-content-flex-end {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
    #services .general-container .align-items-center {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    #services .general-container .align-content-center {
      -ms-flex-line-pack: center;
      align-content: center; }
    #services .general-container .height {
      height: 350px; }
      #services .general-container .height img {
        height: 100%; }
    #services .general-container .banner-promocion {
      width: 100%;
      height: 400px;
      background-image: url(../img/servicios/sonrisa_promocion}.png);
      background-position: top;
      background-size: cover;
      color: #fff;
      padding: 20px;
      padding-right: 47%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
      align-content: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-bottom: 50px; }
      #services .general-container .banner-promocion h3 {
        text-transform: uppercase;
        margin: 1em 0; }
      #services .general-container .banner-promocion h1 {
        font-size: 60px;
        margin: 0;
        text-transform: uppercase;
        text-align: left;
        font-weight: bold; }
      #services .general-container .banner-promocion p {
        text-transform: uppercase;
        width: 100%;
        font-size: 16px;
        margin: 1em 0; }
      #services .general-container .banner-promocion a {
        text-transform: uppercase;
        text-decoration: none;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 5px;
        padding: 5px 15px;
        left: calc((100% - 189px) / 2);
        cursor: pointer;
        -webkit-transition: ease .5s;
        -o-transition: ease .5s;
        transition: ease .5s;
        font-size: 16px; }
        #services .general-container .banner-promocion a:hover {
          background: #fff;
          color: #006691; }
        #services .general-container .banner-promocion a span {
          margin-right: 10px; }

@media only screen and (max-width: 1300px) {
  header .bar-principal {
    padding: 20px 5vw; }
  header .agendar-cita-form .container-cita {
    width: 90%; }
  header .menu-principal .left .container {
    left: 10%; }
  header .whatsapp {
    right: calc(5vw - 35px); }
  footer {
    padding: 10px 5vw; }
  #home h1.special {
    font-size: 100px; }
  #home .slide-container .indicadores {
    left: 5vw; }
  #home .slide-container .slide-index .slide {
    padding: 0 5vw; }
    #home .slide-container .slide-index .slide .imagen {
      width: 400px; }
  #home .especialidades {
    width: 90%; }
  #home .nuestro-equipo {
    width: 90%; }
  #home .instalaciones {
    width: 90%; }
  #servicio .general-container {
    width: 90%; }
  #recursos .general-container {
    width: 90%; }
    #recursos .general-container .entradas {
      width: 70%; }
      #recursos .general-container .entradas .entrada img {
        width: 50%; }
  #services h1 {
    font-size: 95px; }
  #services .general-container {
    width: 90%; }
  #services .extra-padding {
    padding: 0 35px !important; }
  #services .extra-extra-padding {
    padding: 0 75px !important; } }

@media only screen and (max-width: 1023px) {
  header .bar-principal a {
    width: 100px; }
  header .bar-principal .right {
    width: 350px; }
    header .bar-principal .right .redes {
      display: none; }
  header .menu-principal .right nav {
    width: 350px; }
  #home h1.special {
    font-size: 80px; }
  #home .slide-container .slide-index .slide .imagen {
    margin: 0 auto; }
  #home .slide-container .arrow {
    bottom: 20px; }
  #home .circulo-info .agenda-cita {
    bottom: 100px; }
  #servicio h1.special {
    font-size: 100px; }
  #recursos .general-container .entradas {
    width: 100%; }
  #recursos .general-container .sub-menu {
    width: 100%; }
  #gracias .general-container {
    height: auto; }
    #gracias .general-container .image {
      width: 100%; }
    #gracias .general-container .text {
      width: 100%;
      padding: 0; }
  #services h1 {
    font-size: 70px; }
  #services .extra-extra-padding {
    padding: 0 50px !important; }
  #services .extra-padding {
    padding: 0 20px !important; } }

@media only screen and (max-width: 768px) {
  body {
    margin-top: 91px !important; }
  header .bar-principal .right {
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    header .bar-principal .right .agenda-cita {
      display: none; }
  header .agendar-cita-form {
    padding-top: 90px; }
    header .agendar-cita-form .sub-menu {
      display: none; }
    header .agendar-cita-form .container-cita .image {
      width: 100%;
      height: 25vh; }
      header .agendar-cita-form .container-cita .image img {
        max-width: inherit;
        height: 100%; }
    header .agendar-cita-form .container-cita form {
      padding-top: 2vh;
      width: 100%;
      height: inherit; }
      header .agendar-cita-form .container-cita form input, header .agendar-cita-form .container-cita form textarea, header .agendar-cita-form .container-cita form select {
        margin-bottom: 1vh; }
      header .agendar-cita-form .container-cita form .col-12 {
        padding-top: 1vh; }
        header .agendar-cita-form .container-cita form .col-12 i {
          font-size: 35px; }
        header .agendar-cita-form .container-cita form .col-12 p {
          margin-bottom: 0;
          font-size: 12px; }
  header .menu-principal {
    -ms-flex-line-pack: start;
    align-content: flex-start; }
    header .menu-principal .left {
      height: 320px;
      width: 100%;
      background-position: top;
      background-size: 1000%; }
      header .menu-principal .left .container {
        top: 80px; }
        header .menu-principal .left .container p {
          margin: 0; }
        header .menu-principal .left .container .redes {
          margin: 5px 0; }
    header .menu-principal .right nav {
      padding-top: 0; }
      header .menu-principal .right nav ul li {
        padding: 10px 0;
        font-size: 16px; }
  header .whatsapp {
    right: 2.5%;
    width: 35px; }
  footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 5%; }
    footer .braigo {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
  #home h1.special {
    font-size: 40px; }
  #home .slide-container .slide-index .slide .imagen {
    margin: 30px auto; }
  #home .slide-container .slide-index .slide .text {
    margin-left: 50px; }
    #home .slide-container .slide-index .slide .text h1 {
      font-size: 30px; }
  #home .especialidades .cols {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  #home .circulo-info .circle h1.circle-path {
    font-size: 18px;
    width: 310px;
    left: calc((100% - 310px) / 2);
    top: 0; }
  #home .circulo-info .canvas .particles .texto-slide {
    width: 310px;
    left: calc((100% - 310px) / 2);
    font-size: 30px;
    bottom: -5em; }
    #home .circulo-info .canvas .particles .texto-slide p {
      line-height: 1.1em;
      height: 3.3em;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
  #home .nuestro-equipo .col12 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  #home .instalaciones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    #home .instalaciones .collage {
      height: inherit; }
      #home .instalaciones .collage .img {
        height: 275px; }
    #home .instalaciones .collage-indicadores {
      width: 100%; }
  #home .contactanos form {
    width: 90%; }
  #home .contactanos #map {
    width: 90%; }
  #home .contactanos .info-contacto {
    width: 90%; }
  #servicio h1.special {
    font-size: 45px; }
  #servicio .general-container .banner {
    height: 300px; }
    #servicio .general-container .banner p {
      width: 90%; }
  #servicio .general-container .servicios {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  #servicio .general-container .banner-promocion {
    padding-right: 0; }
    #servicio .general-container .banner-promocion h1 {
      font-size: 30px; }
  #servicio .general-container .collage .col12 {
    height: auto; }
  #servicio .popups .popup {
    width: 90%;
    height: 560px; }
    #servicio .popups .popup .head .large, #servicio .popups .popup .head .first-short, #servicio .popups .popup .head .second-short {
      display: none; }
    #servicio .popups .popup .footer {
      width: 90%;
      left: 5%;
      height: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column; }
      #servicio .popups .popup .footer .button {
        margin: 10px 0; }
  #login {
    margin: 0 !important; }
  #recursos .general-container .entradas .entrada {
    height: auto; }
    #recursos .general-container .entradas .entrada img {
      width: 100%; }
    #recursos .general-container .entradas .entrada .text {
      width: 100%;
      margin-top: 10px; }
      #recursos .general-container .entradas .entrada .text a {
        position: inherit; }
  #recursos .general-container .banner h1.special {
    font-size: 60px; }
  #services h1 {
    font-size: 36px; }
  #services .largo {
    font-size: 36px; }
  #services .extra-extra-padding {
    padding: 0 30px !important; }
  #services .general-container {
    padding-top: 25px; }
    #services .general-container .row .col14 {
      width: 50%;
      padding: 20px; }
    #services .general-container .row .responsive-special {
      -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
      justify-content: center !important;
      margin-bottom: 10px; }
    #services .general-container .parrafo {
      width: 100%; }
    #services .general-container .row .col12 {
      width: 100%; }
    #services .general-container .row .col13 {
      width: 100%;
      margin-bottom: 15px; }
    #services .general-container .banner-promocion {
      padding-right: 0; }
      #services .general-container .banner-promocion h1 {
        font-size: 30px; } }
