@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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;
  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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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;
  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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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;
}

/* 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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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;
}
@charset "utf-8";
/* CSS Document */
body{
	margin: 0px;
	padding: 0px;
	background: #243549;
	font-family: 'Raleway';
}

blockquote{
	color: #a59b62;
	font-size: 25px;
	padding: 0;
}
a:hover,a:focus, a:active{
	text-decoration: none;
}

.site-header{
	position: relative;
	z-index: 999;
	display: flex;
}

header#header {
    position: relative;
}

header#header:after {
    content: '';
    position: absolute;
    height: 50px;
    bottom: 0;
    right: 0;
    width: 50%;
    background: #fff;
    z-index: 1;
}



.header-logo a{
	display: flex;
	align-items: center;
	padding:15px 0;
	text-transform: uppercase;
	color: #ffffff;
	font-family: 'Ubuntu';
	font-size: 12.5;
}

.header-logo figure img{
	width: 80px;
}

.header-right .social-icons{
	font-size: 25px;
	text-align: right;
	padding: 15px 0;
}

.header-right .social-icons a{
	color: #fff;
	display: inline-block;
	padding: 5px;
}


.navbar{
	margin-bottom: 0;
	border:0;
}



.navbar-brand img{
	width: 45px;
}

.main-menu .navbar-nav{
	background:#efefef;
	width: auto;
	z-index: 999;
}
.main-menu .navbar-nav:before{
	content: '';
	width: 170px;
	height: 50px;
	left: 0;
	display: none;
	position: absolute;
	background-image: url('../../images/menu-curva.svg');
}

.main-menu a{
	font-family: 'Ubuntu';
	font-size: 14px;
	color: #777;
}
.main-menu .nav>li>a:focus, .main-menu .nav>li>a:hover {
    background-color: transparent;
    color:  #a59b62;
}
.main-menu .dropdown-menu{
	border-top:0;
	padding: 0;
	border-radius: 0;
}

.main-menu .nav .open>a, .main-menu .nav .open>a:focus, .main-menu .nav .open>a:hover {
    background-color: transparent;
}
.main-menu .navbar-brand{
	display: none;
}

figure.img-not-found {
    width: 25%;
    margin: 0 auto;
}
.not-found h3 {
    font-size: 25px;
    font-family: 'Raleway';
    text-transform: uppercase;
    color: #a59b62;
    margin-top: 50px;
}
.not-found p {
    text-align: center;
    font-size: 19px;
    font-family: 'Raleway';
}
.not-found .logo-uabjo {
    padding-top: 50px;
}
.container.logo-uabjo .caption {
    display: flex;
    max-height: 100px;
    width: 35%;
    margin: 0 auto;
    align-items: center;
    color: #fff;
}

.not-found .logo-uabjo figure img{
	max-height:100px;
}

.bg-gray{
	background-color: #f5f5f5;
}
.bg-gold{
	background-color: #a59b62;
}
.bg-blue{
	background-color: #243549;
}
.bg-white{
	background-color: #fff;
}
.site-row-container{
	margin: 0;
	padding: 0;
}
.site-row-container:after{
	content: '';
	display: block;
	position: absolute;
	height: 14px;
	width: 100px;
	left: Calc(50% - 50px);
	margin: -7px auto 0 auto;
	background: #a59b62;
	z-index:99;
}

.site-row-container.wot:after{
	display: none;
}

.site-row-container.white:after{
	background: #ffffff;
}

.site-row-container-inner{
	padding: 80px 0;
}


img.bg-hide {
    width: 0;
    height: 0;
}


/**** accordion *****/

.accordion-container{
	height: 330px;
}
.accordion-container:hover .accordion-item{
	height: 25%;
}
.accordion-item{
	height: 33.3333%;
	position: relative;
	overflow: hidden;
	background: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-transition: height 0.7s;
	-moz-transition: height 0.7s;
	transition: height 0.7s;
	border-top: .5px solid white;
}
.accordion-item:hover:before{
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/*background: -moz-linear-gradient(left, rgba(165,155,98,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(165,155,98,1)), color-stop(100%, rgba(255,255,255,0)));
	background: -webkit-linear-gradient(left, rgba(165,155,98,1) 0%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(left, rgba(165,155,98,1) 0%, rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(left, rgba(165,155,98,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(165,155,98,1) 0%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a59b62', endColorstr='#ffffff', GradientType=1 );*/
	background: -moz-linear-gradient(left, rgba(165,155,98,1) 1%, rgba(165,155,98,1) 16%, rgba(165,155,98,0.9) 51%, rgba(165,155,98,0.3) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(165,155,98,1) 1%,rgba(165,155,98,1) 16%,rgba(165,155,98,0.9) 51%,rgba(165,155,98,0.3) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(165,155,98,1) 1%,rgba(165,155,98,1) 16%,rgba(165,155,98,0.9) 51%,rgba(165,155,98,0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a59b62', endColorstr='#4da59b62',GradientType=1 );
}

.accordion-item:before{
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/*background: -moz-linear-gradient(left, rgba(46,53,58,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(46,53,58,1)), color-stop(100%, rgba(255,255,255,0)));
	background: -webkit-linear-gradient(left, rgba(46,53,58,1) 0%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(left, rgba(46,53,58,1) 0%, rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(left, rgba(46,53,58,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(46,53,58,1) 0%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e353a', endColorstr='#ffffff', GradientType=1 );*/
	background: -moz-linear-gradient(left, rgba(73,83,90,1) 1%, rgba(73,83,90,1) 16%, rgba(73,83,90,0.9) 51%, rgba(73,83,90,0.3) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(73,83,90,1) 1%,rgba(73,83,90,1) 16%,rgba(73,83,90,0.9) 51%,rgba(73,83,90,0.3) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(73,83,90,1) 1%,rgba(73,83,90,1) 16%,rgba(73,83,90,0.9) 51%,rgba(73,83,90,0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#49535a', endColorstr='#4d49535a',GradientType=1 );
}


.accordion-item a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.accordion-item .caption{
	text-transform: uppercase;
	padding-left: 30px;
	font-size: 16px;

}

.accordion-item .caption h4,
.accordion-item .caption h5{
	width: 100%;
	color: #ffffff;
	margin: 5px 0;
}

.accordion-item .caption h4{
	color: #a59b62;
	font-weight: 600;
}
.accordion-item:hover .caption h4{
	color: #2e353a;
}




.accordion-item.bg-nms{
	background-image: url('../../images/bnn_media.jpg');
}
.accordion-item.bg-ns{
	background-image: url('../../images/bnn_superior.jpg');
}
.accordion-item.bg-admision{
	background-image: url('../../images/bnn_admision.jpg');
}


.accordion-container:hover .accordion-item:hover{
	height: 50%;
}


/***** end accordion ****/
.bg-half{
	position: relative;
	height: 258px;
}
.bg-half .caption {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 55%;
    padding: 25px 15px 25px 25px;
    z-index: 9;
    color: #ffffff;
}
.bg-rectoria-home{
	background-image: url('../../images/rector.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 35%;
}
.bg-half:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 55%;
	height: 100%;
	background: rgba(165, 155, 98,.77);
}

.bg-half:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	width: Calc(100% - 30px);
	height: Calc(100% - 30px);
	margin: 15px;
	border: 1px solid #ffffff;
}


/***** slide carreras  ****/

.carousel-carreras{
	max-height: 750px;
	overflow: hidden;
}
.carousel-carreras .item{
	height: 100%;
}
.carrera-item{
	position: relative;
	height: 750px;
	background-attachment: fixed;
	background-repeat: no-repeat;
    background-size: cover;

}
.carrera-item figure{
	max-height: 750px;

}
.carrera-item .caption{
	position: absolute;
	width: 42%;
	height: 100%;
	top: 0;
	bottom: 0;
	background-color: rgba(12,34,56,.77);
	color: #fff;
	display: flex;
	align-items: center;

}
.carrera-item .caption .info-carrera{
	padding: 0 77px;
	margin: 0 auto;
}
.carrera-item .caption a{
	color: #fff;
}

.title-carrera{
	font-size: 36px;
	text-align: center;
	margin-bottom: 50px;
}

.detalle-carrera{
	border: 1px solid #fff;
	padding: 50px 30px;
	position: relative;
	font-size: 18px;
}

.detalle-carrera:before{
	content: '';
	display: block;
	position: absolute;
	height: 30px;
	width: 100px;
	top: 0;
	left: Calc(50% - 50px);
	margin: -15px auto 0 auto;
	background: #a59b62;
}

.carrera-item .caption img.img-top-slide {
    width: 50%;
    margin: 0 auto;
}


/***  sitios */
.sitios-grid{
    width: 100%;
    float: left;
}

.sitios-grid .item{
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    float: left;
    height: 0;
}

.sitios-grid .cell-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.icono-sitio{   
    width: 75%;
    height: 75%;
    margin: 0 auto;
    border: 1px solid #ffffff;
    border-radius: 10px;
}

.icono-sitio a{
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-transform: uppercase;
}

.icono-sitio a img{
    max-width: 55%;
    max-height: 55%; 
    padding-top: 20px;
}

.icono-sitio a .caption{
    height: 60px;
    width: 98%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
}


.gold{
	color: #a59b62;
}
.white{
	color:#ffffff;
}

/* Botones */
.btn-gold {
	color: #a59b62;
	border-color: #a59b62;
}

.btn-gold:focus,
.btn-gold.focus {
	color: white;
	background-color: #a59b62;
	border-color: #a59b62;
}

.btn-gold:hover {
	color: white;
	background-color: #a59b62;
	border-color: #a59b62;
}

.espacio-btn-gold{
	padding: 35px 0 10px 0;
}

.btn-white {
	color: white;
	border-color: white;
}

.btn-white:focus,
.btn-white.focus {
	color: white;
	background-color: #a59b62;
	border-color: white;
}

.btn-white:hover {
	color: white;
	background-color: #a59b62;
	border-color: white;
}

.btn-more{
	margin-top: 70px;
}
a.more-details {
    width: 100%;
    background: #123456;
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin: 15px 0;
}
a.more-details:hover {
    color: #fff!important;
}

.title-section{
	margin-bottom: 45px;
	text-align: center;
}



.bg-search {
    background-color: #c8d5e2;
    padding: 30px;
    width: 70%;
    margin: 0 auto 15px auto;
}

.input-search-custom {
    width: 100%;
    margin: auto;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #a6b6c5;
}

.logo-algolia{
	margin: 15px;
	text-align: right;
}


/* niveles */

.niveles-uabjo{
	background: white;
}

.caja-sistemas{
	border: 1px solid #a59b62;
	padding: 15px;
	height: 165px;
}

.caja-sistemas h3,h4,h5{
	color: #a59b62;
}

.half-landscape {
    width: 100%;
    height: 165px;
}

.padding15{
	padding: 15px;
}

.pid-container {
    display: flex;
    align-items: center;
    height: 135px;
    border: 1px solid #a59b52;
}
.pid-container figure {
    width: Calc(50% - 15px);
    padding-left: 15px;
}
.pid-container figure img{
	width: 100%;
}
.pid-container h4{
	width: 50%;
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	font-size: 17px;
	color: #a59b62;
	line-height: 1.5;
	padding-left: 15px;
}
.pid-container h4 span{
	font-size: 18px;
	color: #243549;
}
.pid-container:hover {
    background-color: #f5f5f5;
}


.buzon-container {
    position: fixed;
    bottom: 0;
    right: 25px;
    z-index: 9999;
}
.buzon{
	width: 250px;
}

.buzon h5 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #243549;
    margin: 0;
    padding: 15px;
    text-align: center;
    border-radius: 7px 7px 0 0;
    cursor: pointer;
    border-top: 1px solid #f5f5f5;
    border-left: 1px solid #f5f5f5;
    border-right: 1px solid #f5f5f5;
}
.buzon #buzon-form-fx.open-form{
	opacity: 1;
	transform: translateY(0);
	transition: all .7s;
}
.buzon #buzon-form-fx {
    position: absolute;
    bottom: 50px;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #243549;
    border-radius: 15px;
    padding: 15px;
    opacity: 0;
    transition: all .7s;
    transform: translateY(501px);
}
.buzon #buzon-form-fx label{
	font-weight: 400;
	font-size: 14px;
}

.form-container {
    width: 60%;
    margin: 0 auto;
}



/* acontecer */
/*.acontecer-uabjo h3,h4,h5{
	color: #a59b62;
}*/

.news-container {
    padding: 0 10px;
}
.news-container .news{
	position: relative;
}

.news-container .item{
	margin: 5px;
	overflow: hidden;
}

.news-container .item img{
	display: block;
	width: auto;
	height: 100%;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.news-container .news-item {
    width: 100%;
    position: relative;
    height: 240px;
}

.category-container-header .post-category:hover img,
.category-container-previous .post-category:hover img,
.news-container .news-item:hover img{
	-webkit-animation-name: pulse;
  	animation-name: pulse;
}
.news-container .news-date{
	position: absolute;
	width: 50px;
	background: rgba(165, 155, 98,.7);
	padding: 5px;
	color: white;
	text-align: center;
	z-index: 1;
}
.news-container .news-date .date-month,
.news-container .news-date .date-day,
.news-container .news-date .date-year{
	display: block;
	width: 100%;
	line-height: 1;
}
.news-container .news-date .date-day{
	font-size: 20px;
	letter-spacing: 2px;
}
.news-container .news-title{
	z-index: 1;
	position: absolute;
	bottom:0;
	right: 0;
	left: 0;
	background: rgba(0,0,0,.7);
}
.news-container .news-title h3{
	color: #fff;
	font-size: 16px;
	padding: 10px;
	margin: 0;
}

.mensaje-acontecer{
	position: absolute;
	background: black;
	bottom: 20%;
	width: 98%;
	opacity: .80;
}

.mensaje-acontecer p{
	margin: 2px;
	color: white;
}



.menu-footer h3{
	font-size: 15px;
}

.menu-footer img{
	margin-bottom: 15px;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@-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);
  }
}

@-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);
  }
}


/* agenda digital */

/*.agenda-digital-uabjo h3,h4,h5{
	color: #a59b62;
}*/

.carousel-agenda .item figure{
	padding: 0 2.5px;
}

.carousel-agenda .item figcaption {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Raleway', sans-serif;
    color: #2e384a;
    font-weight: 500;
    font-size: 15px;
    background-color: #fff;
}

.carousel-agenda .item figcaption header {
    width: 100%;
    display: flex;
    padding: 7px;
    border-bottom: 1px solid #2e384a;
}

.carousel-agenda .item figcaption .type{
    width: 80%;
}

.carousel-agenda .item figcaption .icon{
    width: 20%;
    text-align: right;
}

.carousel-agenda .item figcaption .date {
    width: 30%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}
.carousel-agenda .item figcaption .date span.day {
    font-size: 51px;
    width: 100%;
    display: inline-block;

}
.carousel-agenda .item figcaption .date span.month {
    width: 100%;
    font-size: 20px;
}

.carousel-agenda .item figcaption .details {
    width: Calc(100% - 30px);
    padding: 12px 15px;
    height: 170px;
    overflow: hidden;
}

.carousel-agenda .item figcaption .details .title {
    font-size: 16px;
    color: #a09a64;
    padding-bottom: 5px;
}

.carousel-agenda .item figcaption .details .description {
    color: #4e4e4e;
}

.carousel-agenda .item figcaption footer.category {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    border-top: 1px solid #2e384a;
    padding: 7px 0;
    margin-top: 5px;
}
.carousel-agenda footer{
	background: #fff;
	color: #2e384a;
}

.owl-prev {
    position: absolute;
    top: Calc(50% - 40px);
    left: -15px;
}
.owl-next {
    position: absolute;
    top: Calc(50% - 40px);
    right: -15px;
}

.owl-prev i,.owl-next i {
    font-size: 85px;
    color: #d6d6d6;
}

.agenda-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.agenda-grid .item {
    width: 100%;
    overflow: hidden;
}
.agenda-grid .item figure{
    padding: 5px;
}
.agenda-grid .item figure .image {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.agenda-grid .item figure .image img {
    position: absolute;
    width: 100%;
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;
    margin: auto;
}

.agenda-grid .item figcaption {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Raleway', sans-serif;
    color: #2e384a;
    font-weight: 500;
    font-size: 15px;
    background-color: #fff;
}

.agenda-grid .item figcaption header {
    width: 100%;
    display: flex;
    padding: 7px;
    border-bottom: 1px solid #2e384a;
}

.agenda-grid .item figcaption .type{
    width: 80%;
}

.agenda-grid .item figcaption .icon{
    width: 20%;
    text-align: right;
}

.agenda-grid .item figcaption .date {
    width: 30%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}
.agenda-grid .item figcaption .date span.day {
    font-size: 51px;
    width: 100%;

}
.agenda-grid .item figcaption .date span.month {
    width: 100%;
    font-size: 20px;
}
.agenda-grid .item figcaption .details {
    width: Calc(100% - 30px);
    padding: 12px 15px;
    height: 170px;
    overflow: hidden;
}

.agenda-grid .item figcaption .details .title {
    font-size: 16px;
    color: #a09a64;
    padding-bottom: 5px;
}

.agenda-grid .item figcaption .details .description {
    color: #4e4e4e;
}

.agenda-grid .item figcaption footer.category {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    border-top: 1px solid #2e384a;
    padding: 7px 0;
    margin-top: 5px;
}

.agenda-grid footer{
	background: #fff;
	color: #2e384a;
}


.agenda-single .featured-image {
    width: 100%;
    height: 350px;
    position: relative;
    margin-bottom: 15px;
}
.agenda-single .featured-image img {
    position: absolute;
    height: 100%;
    margin: auto;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
}

.agenda-tipo {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #243549;
    border-bottom: 1px solid #243549;
    background: #f5f5f5;
    padding: 10px;
}
.agenda-tipo .type {
    width: 50%;
}
.agenda-tipo .icon {
    width: 50%;
    text-align: right;
}
.agenda-descripcion {
    padding: 15px 0;
}

.title-agenda-section {
	position: relative;
}
.title-agenda-section span{
	position: absolute;
	right: 0;
	top: 30px;
}
.title-agenda-section span a{
	font-size: 15px;
	text-transform: uppercase;
	color: #a59b62;
	font-weight: 700;
}

/*** widget agenda  ***/
.widget-agenda .widget-content{
    display: flex;
    flex-wrap: wrap;
}
.widget-agenda .agenda-item {
    width: 100%;
    border-bottom: 1px solid #cdcdcd;
    margin-bottom: 15px;
}
.widget-agenda .agenda-item figure{
    width: 100%;
}
.widget-agenda .agenda-item figure .image {
    max-height: 150px;
    overflow: hidden;
}

.widget-agenda .agenda-item figure .image img {
    width: 100%;
}

.widget-agenda .agenda-item figcaption {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Raleway', sans-serif;
    color: #5f5f5f;
    font-weight: 600;
    font-size: 15px;
    background-color: #fff;
}

.widget-agenda .agenda-item figcaption header {
    width: 100%;
    display: flex;
    padding: 7px;
    border-bottom: 1px solid #cdcdcd;
}

.widget-agenda .agenda-item figcaption .type{
    width: 80%;
}

.widget-agenda .agenda-item figcaption .icon{
    width: 20%;
    text-align: right;
}

.widget-agenda .agenda-item figcaption .date {
    width: 30%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.widget-agenda .agenda-item figcaption img{

}

.widget-agenda .agenda-item figcaption .date span.day {
    font-size: 51px;
    width: 100%;

}

.widget-agenda .agenda-item figcaption .date span.month {
    width: 100%;
    font-size: 20px;
}

.widget-agenda .agenda-item figcaption .details {
    width: Calc(100% - 30px);
    padding: 12px 0;
    display: flex;
    flex-wrap: wrap;
}

.widget-agenda .agenda-item figcaption .details .title {
    font-size: 16px;
    color: #a09a64;
    padding-bottom: 5px;
    width: 70%;
}

.widget-agenda .agenda-item figcaption .details .description {
    color: #4e4e4e;
}

.widget-agenda .agenda-item figcaption footer.category {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    border-top: 1px solid #2e384a;
    padding: 7px 0;
    margin-top: 5px;
}
/*** end widget agenda ***/

/* sitios-uabjo */


.social-icon a{
	color: white;
}

/* menu-footer */
.menu-footer{

}

.menu-footer h3{
	color: white;
}

.menu-footer ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-footer ul li a {
	color: #a59b62;
	display: block;
	padding: .2em 0 .2em 0;
}

.menu-footer a:hover{
	color: #fff;
}



/* footer */
footer{
	padding: 20px 0 20px 0;
	background: #1e2e3d;
	color: #fff;
}

footer span{
	color: #a59b62;
}

/*** header post ***/
.post-header{
	position: relative;
	width: 100%;
	height: 700px;
	overflow: hidden;

	background-size: cover;
	background-attachment: fixed;
}
.post-header-sec{
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;

	background-size: cover;
	background-attachment: fixed;
}
/*.post-header figure {
    position: relative;
    height: 550px;
}

.post-header figure img {
    position: absolute;
    width: 150%;
    left: -25%;
    top: -250px;
}*/
.post-header-sec:after,
.post-header:after{
	content: '';
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	background: rgba(0,0,0,.7);
	background: -moz-radial-gradient(center, ellipse cover, rgba(33,33,33,.3) 0%, rgba(33,33,33,.3) 66%, rgba(0,0,0,.8) 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(33,33,33,.3)), color-stop(66%, rgba(33,33,33,.3)), color-stop(100%, rgba(0,0,0,.8)));
	background: -webkit-radial-gradient(center, ellipse cover, rgba(33,33,33,.3) 0%, rgba(33,33,33,.3) 66%, rgba(0,0,0,.8) 100%);
	background: -o-radial-gradient(center, ellipse cover, rgba(33,33,33,.3) 0%, rgba(33,33,33,.3) 66%, rgba(0,0,0,.8) 100%);
	background: -ms-radial-gradient(center, ellipse cover, rgba(33,33,33,.3) 0%, rgba(33,33,33,.3) 66%, rgba(0,0,0,.8) 100%);
	background: radial-gradient(ellipse at center, rgba(33,33,33,.3) 0%, rgba(33,33,33,.3) 66%, rgba(0,0,0,.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#000000', GradientType=1 );
}

.post-header-sec .post-header-caption,
.post-header .post-header-caption{
	width: 700px;
	position: absolute;
	padding: 30px;
	background-color: rgba(12,34,56,.7);
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 60%;
	color: #fff;
	font-size: 18px;
	border: 1px solid rgba(255,255,255,.5);
	z-index: 9;
}
.post-header-sec .post-header-paction p,
.post-header .post-header-caption p{
	margin: 0;
}
.post-header-sec .slide-content,
.post-header .slide-content{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    height: 100%;
}
.post-header-sec .post-header-caption:before,
.post-header .post-header-caption:before{
	content: '';
	display: block;
	position: absolute;
	height: 30px;
	width: 100px;
	top: 0;
	left: Calc(50% - 50px);
	margin: -15px auto 0 auto;
	background: #a59b62;
}

.post-header-sec .post-header-caption h3,
.post-header .post-header-caption h3{
	text-transform: uppercase;
	font-size: 28px;
	text-align: center;
	color: #fff;
}

.post-header-sec .post-header-caption a,
.post-header .post-header-caption a{
	color:#a59b62;
}

.post-content{
	padding-top: 55px;
}
.post-content .meta-content {
    border-top: 1px solid #a59b62;
    border-bottom: 1px solid  #a59b62;
    padding: 10px 15px;
    margin-top: 35px;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    text-align: right;
    text-transform: uppercase;
}

.content{
	font-family: 'Maitree';
	font-weight: 500;
	font-size: 19px;
	color: #333;
}

.content p{
	text-align: justify;
}

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6{
	color: #a59b62;
}

.content a{
	color: #a59b62;
}

.content a:hover{
	color: #243549;
}

/***  social icons ****/

.sis-item a{
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 17px;
	color: #333;
}
.sis-item a span{
	padding-left: 25px;
}
.sis-item i{
	font-size: 45px;
}
.sis-item.facebook i{
	color: #3b5998;
}
.sis-item.twitter i{
	color: #55acee;
}
.sis-item.google-plus i{
	color: #d95032;
}
/***  widget-agenda ***/

.widget{
	margin-bottom:70px;
}
.widget h3{
	border-top: 2px solid  #a59b62;
	border-bottom: 2px solid  #a59b62;
	padding: 15px 0;
	text-align: center;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 500;
	color: #333;
	margin-bottom:15px;
	margin-top: 0;
}

.widget-agenda{
	width: 100%;
}

.widget-agenda img{
	max-width: 100%;
}

.widget-agenda .agenda-item{
	margin-bottom: 25px;
}


.widget-sitios{
	width: 100%;
	text-align: center;
}

.widget-sitios svg{
	max-width: 37%;
	margin:0 auto 15px auto;
	color: #333;
}

.widget-sitios svg .cls-1{
	fill: #777!important;
}

.widget-sitios .sitio-item{
	margin-bottom: 25px;
	border-bottom:1px solid #777;
}
.widget-sitios .sitio-item .caption{
	padding: 10px 30px  30px 30px;
	font-size: 15px;
	color: #333;
	text-transform: uppercase;
}


.widget-social-icons-share{
	width: 100%;
}

.widget-social-icons-share .sis-item{
	padding: 25px;
	border-bottom:1px solid #333;
}



/**  post relacionados  ***/
.posts-relacionados{
	padding-bottom: 70px;
}
.post-relacionados-item {
    width: 100%;
    max-height: 270px;
    position: relative;
    overflow: hidden;
    margin-bottom:25px;
}
.post-relacionados-item .date{
	position: absolute;
	width: 50px;
	background: rgba(165, 155, 98,.7);
	padding: 5px;
	color: white;
	text-align: center;
	z-index: 1;
}

.post-relacionados-item .title{
	z-index: 1;
	position: absolute;
	bottom:0;
	right: 0;
	left: 0;
	min-height: 70px;
	background: rgba(0,0,0,.7);
	display: flex;
	align-items: center;
}
.post-relacionados-item .title h3{
	color: #fff;
	font-size: 15px;
	padding: 10px;
	margin: 0;
}

.post-relacionados-item img{
	display: block;
	width: auto;
	max-height: 350px;
	min-height: 250px;
	height: auto;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.post-relacionados-item:hover img{
	-webkit-animation-name: pulse;
  	animation-name: pulse;
}


/** oferta **/

.oferta-item figure{
	width: 100%;
	height: 450px;
}

.col-md-9.content .oferta-item figure img{
	width: auto;
	height: 100%;
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    margin: auto;
    max-width: initial;
}
.oferta-item{
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	min-height: 450px;
	overflow: hidden;
}

.oferta-item .enlaces{
	position: absolute;
	left: 0;
	right: 0;
	top: 12px;
	width: 100%;
	color: #fff;
	padding-top: 15px;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	z-index: 9;
}

.oferta-item .enlaces .item{
	padding: 1px 15px;
	opacity: 0;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
}
.oferta-item:hover .enlaces .item{
	opacity: 1;
}
.oferta-item:hover .enlaces{
	padding-top: 0;
}
.oferta-item .enlaces .item a{
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 14px;
	-webkit-transition: padding-left 1s;
	-moz-transition: padding-left 1s;
	transition: padding-left 1s;
}
.oferta-item .enlaces .item a:hover{
	padding-left: 20px;
	color: #a59b62;
}


.oferta-item .caption{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	color: #fff;
	z-index: 9;
}
.oferta-item .caption h3{
	padding: 15px;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 30px;
	margin:0;
	color:#fff;
}

.oferta-item figure:before
{
	content:'';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba( 165, 155, 98, .5 );
	z-index: 9;
}

.oferta-item:hover figure:before
{
	background-color: rgba( 12, 34, 56, .5 );
}

/***  category  ****/

.category-container-header figure{
	height: 100%;
	position: relative;
}
.category-container-header .post-category{
	height: 285px;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}
.category-container-header .post-category.left{
	height: 600px;
	overflow: hidden;
}
.category-container-header .post-category .caption,
.category-container-previous .post-category .caption{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	min-height: 70px;
	width: 100%;
	background-color: rgba(12,34,56,.7);
	display: flex;
	align-items: center;
}

.category-container-header .post-category .caption h3,
.category-container-previous .post-category .caption h3{
	color: #fff;
	padding: 10px;
	font-size: 18px;
	margin: 0;
}



.category-container-header .post-category.left img{
	height: 100%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    top: -100%;
    left: -100%;
    bottom: -100%;
    right: -100%;
    margin: auto;
}

.category-container-header .post-category.right img{
	width: 120%;
	position: absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.category-container-previous .post-category{
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 100%;
	max-height: 260px;
	margin-bottom: 30px;
}
.category-container-previous .post-category img{
	width: 150%;
	position: relative;
	margin-left: -25%;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

/** images **/

figure.img-single {
    height: 180px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.img-single img {
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
    margin: auto;
}

.title-single {
    color: #243549;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px;
}
.post-date-single {
    color: #a59b62;
    margin-bottom: 10px;
}

.news-item figure {
    height: 100%;
    position: relative;
}

.news-item figure img {
    position: absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto;
}

/***** slider *****/

.main-slide{
	position: relative;
}

.home-slide-caption {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    width: 50%;
    text-align: center;
    margin: 0 auto!important;
}

.acontecer-home{
	/*position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 99;
	background: rgba(11,16,23,0);
	background: -moz-linear-gradient(top, rgba(11,16,23,0) 0%, rgba(11,16,23,1) 40%, rgba(11,16,23,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11,16,23,0)), color-stop(40%, rgba(11,16,23,1)), color-stop(100%, rgba(11,16,23,1)));
	background: -webkit-linear-gradient(top, rgba(11,16,23,0) 0%, rgba(11,16,23,1) 40%, rgba(11,16,23,1) 100%);
	background: -o-linear-gradient(top, rgba(11,16,23,0) 0%, rgba(11,16,23,1) 40%, rgba(11,16,23,1) 100%);
	background: -ms-linear-gradient(top, rgba(11,16,23,0) 0%, rgba(11,16,23,1) 40%, rgba(11,16,23,1) 100%);
	background: linear-gradient(to bottom, rgba(11,16,23,0) 0%, rgba(11,16,23,1) 40%, rgba(11,16,23,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b1017', endColorstr='#0b1017', GradientType=0 );*/
}

.acontecer-home .title-section {
    margin-bottom: 30px;
}

.acontecer-home .owl-prev, .acontecer-home .owl-next {
    position: absolute;
    top: Calc(50% - 35px);
}
.acontecer-home .owl-prev i, .acontecer-home .owl-next i{
	color: rgba(255,255,255,.5);
    font-size: 77px;
}

.acontecer-home .owl-prev{
	left: 0;
}

.acontecer-home .owl-next{
	right: 0;
}

.home-slide-caption h3 {
    text-transform: uppercase;
    color: #a59b62;
}
.acontecer-home .btn-more{
	margin-top: 25px;
	margin-bottom: 25px;
}

.main-slide-item{
	position: relative;
	width: 100%;
	height: 750px;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

.main-slide-item:before{
	content: '';
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	background: rgba(11,16,23,1);
	background: -moz-linear-gradient(top, rgba(11,16,23,1) 0%, rgba(50,54,60,0) 16%, rgba(255,255,255,0) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11,16,23,1)), color-stop(16%, rgba(50,54,60,0)), color-stop(100%, rgba(255,255,255,0)));
	background: -webkit-linear-gradient(top, rgba(11,16,23,1) 0%, rgba(50,54,60,0) 16%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(top, rgba(11,16,23,1) 0%, rgba(50,54,60,0) 16%, rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(top, rgba(11,16,23,1) 0%, rgba(50,54,60,0) 16%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(11,16,23,1) 0%, rgba(50,54,60,0) 16%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b1017', endColorstr='#ffffff', GradientType=0 );
}

.main-slide-item .main-slide-caption{
	width: 370px;
	position: absolute;
	padding: 30px;
	background: rgba(12,34,56,.7);
	left: 30px;
	top: 250px;
	color: #fff;
	font-size: 18px;

}
.main-slide-item .main-slide-caption p{
	margin: 0;
}
.main-slide-item .slide-content,
.carousel-carreras .slide-content {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    height: 100%;
}

.main-slide-item .main-slide-caption:before{
	content: '';
	display: block;
	position: absolute;
	height: 30px;
	width: 100px;
	top: 0;
	left: Calc(50% - 50px);
	margin: -15px auto 0 auto;
	background: #a59b62;
}
.main-slide-item .main-slide-caption h3{
	text-transform: uppercase;
	font-size: 21px;
	text-align: center;
	color: #a59b62;
}

.main-slide-item .main-slide-caption a{
	color:#a59b62;
}


.pagination {
	width: 100%;
	display: flex;
	justify-content: center;
}

.pagination li a {
    background-color: #a59b62;
    margin: 2px;
    border: 1px solid #a59b62;
    color: #fff;
    border-radius: 0;
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: #243549;
    border: 1px solid #a59b62;
}

.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
    color: #ffffff;
    background-color: #243549;
    border-color: #f7f7f7;
}


.search_wrapper {
    padding: 15px;
    position: relative;
    width: 100%;
}

.search_wrapper i{
	color: #fff;
}

.search_wrapper .fa-search,
.search_wrapper .icon_close {
    position: absolute;
    top: 25px;
    font-size: 22px;
    line-height: 22px;
    display: block;
}

.search_wrapper .fa-search{
	top: 18px;
}

#search-container {
    background-color: #a59b62;
    display: none;
    width: 100%;
}

.search_wrapper input[type="text"],
.header-search input[type="text"] {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    padding-left: 35px;
    background: none;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: rgba(255,255,255,.25)!important;
    font-size: 15px;
    color: #fff;
}

.search_wrapper .icon_close {
    right: 18px;
    color: #fff;
    opacity: .3;
    filter: alpha(opacity=30);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.search_wrapper .form-control::-moz-placeholder {
  color: rgba(255,255,255,.7);
  opacity: 1;
}
.search_wrapper .form-control:-ms-input-placeholder {
  color: rgba(255,255,255,.7);
}
.search_wrapper .form-control::-webkit-input-placeholder {
  color: rgba(255,255,255,.7);
}

.header-search {
    background-color: #243549;
    padding: 25px;
}

.main-search {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}

.main-search #left-column {
    width: 25%;
}

.main-search #left-column {
    background-color: #ffffff;
    padding: 25px;
}


.main-search #left-column h5 {
    text-transform: uppercase;
    margin: 0;
    padding: 15px;
    background-color: #a49a62;
    color: white;
}
.main-search #right-column {
    width: 75%;
}




.ais-menu--item {
    background-color: whitesmoke;
    margin-top: 5px;
}
a.ais-menu--link {
	position: relative;
	width: 100%;
	display: inline-block;
	padding: 15px;
	color:  #a49a62;
}
a.ais-menu--link span {
    position: absolute;
    right: 18px;
}

div#hits {
    background-color: #edf2f9;
    padding: 25px;
}

.hit {
    margin-bottom: 25px;
}

.ais-hits--item {
    margin-bottom: 7px;
}
.hit-description em,
.hit-name em {
    font-weight: bold;
}
.hit-content {
    color: #333;
}
.hit-name {
    font-size: 21px;
    margin: 0;
}



ul.ais-pagination {
    text-align: center;
}

li.ais-pagination--item.ais-pagination--item__page {
    display: inline-block;
}

a.ais-pagination--link {
    display: inline-block;
    background-color: #243549;
    color: #fff;
    padding: 5px 15px;
    font-size: 19px;
    font-family: 'Ubuntu', sans-serif;
}

div#pagination {
    padding: 15px 0;
    background-color: #edf2f9;
}

.col-md-9.content img{
    max-width: 100%;
    height: auto;
}

.youtube-container {
    position: relative;
    padding-bottom: 70%;
    height: 0;
    overflow: hidden;
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.buttons-container-1,
.buttons-container-2,
.buttons-container-3,
.buttons-container-4{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.buttons-container-2 .button-item,
.buttons-container-2 .button-item,
.buttons-container-3 .button-item,
.buttons-container-4 .button-item{
	width: Calc(100% - 10px);
	margin-bottom: 15px;	
}

.buttons-container-1 .button-item,
.buttons-container-2 .button-item,
.buttons-container-3 .button-item,
.buttons-container-4 .button-item {
    text-align: center;
    border: 2px solid #a59b62;
    margin-left: 5px;
    margin-right: 5px;
    padding: 8px;
    text-transform: uppercase;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    transition: all .5s;
}

.buttons-container-1 .button-item:hover,
.buttons-container-2 .button-item:hover,
.buttons-container-3 .button-item:hover,
.buttons-container-4 .button-item:hover {
    color: #fff;
    background-color: #a59b62;
}


div#lightgallery a {
    width: 25%;
}


ol.breadcrumb {
    margin-bottom: 0;
}

ol.breadcrumb a {
    color: #a59b62;
    font-weight: 500;
}

.lg-backdrop {
    background-color: rgba(36, 53, 73, 0.93)!important;
}



div#lightgallery {
    display: flex;
    flex-wrap: wrap;
}

div#lightgallery a {
    width: Calc(50% - 10px);
    height: 125px;
    overflow: hidden;
    margin: 5px;
    position: relative;
    border: 3px solid #a59b62;
}

div#lightgallery img {
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    margin: auto;
    height: 100%;
    width: auto;
    max-width: initial!important;
}

#slides .slides-container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

#slides .slides-container .slide-item{
	width: 100%;
	padding: 100px 50px;
}

#slides .slides-container .slide-item .info-carrera img{
	width: 100%;
}
#slides .slides-container .slide-item .info-carrera a{
	color: #666666;
}

#slides .slides-container .slide-item .info-carrera .detalle-carrera{
	border:1px solid #a59b62;
}
#slides .slides-container .slide-item .info-carrera .img-container{
	text-align: center;
	display: inline-block;
	width: 100%;
}
#slides .slides-container .slide-item .info-carrera .img-container img{
	width: 70%;
}
/* media query */

.protocolo-img-6{
	max-width: 100%;
}


.container-redondo{
	border:1px solid #a59b62;
	border-radius: 5px;
	margin-bottom: 15px;
}
.container-redondo-2{
	border:1px solid #243549;
	background-color: #243549;
	border-radius: 5px;
	margin-bottom: 15px;
}

.container-redondo-2 span{
	line-height: 1;
}

.container-redondo-2 a{
	display: inline-block;
	padding: 15px;
	width: 100%;
	height: 100%;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #fff;
}

.container-redondo a{
	display: inline-block;
	padding: 14px;
	width: 100%;
	height: 100%;
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	font-size: 15px;
}

.container-redondo a img{
	max-width: 90%;
}



#home-slider .item{
	height: 225px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

#home-slider .item a{
	display: inline-block;
	width: 100%;
	height: 100%;
}

#home-slider .owl-prev {
    position: absolute;
    top: Calc(50% - 50px);
    left: 20px;
}

#home-slider .owl-next {
    position: absolute;
    top: Calc(50% - 50px);
    right: 20px;
}

#home-slider .owl-prev i,#home-slider .owl-next i {
    font-size: 85px;
    color: rgba(255,255,255,.85);
}

#home-slider .text-slider{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: rgba(0,0,0,.5);
	color: #fff;
	padding: 10px 10px 20px 10px;
}

#home-slider .text-slider {
    font-size: 21px;
}

#home-slider .text-slider h3{
	margin: 0 0 5px 0;
	font-size: 17px;
}

#home-slider .text-slider p{
	margin: 0 0 5px 0;
	font-size: 14px;
}

@media (min-width: 450px){

	#home-slider .item{
		height: 240px;
	}
}


@media (min-width: 768px){
	

	.buzon-container {
	    right: 150px;
	}
	.buttons-container-2 .button-item{
		width: Calc(100% - 10px);	
	}

	.buttons-container-2 .button-item{
		width: Calc(50% - 10px);	
	}

	.buttons-container-3 .button-item{
		width: Calc(33.333% - 10px);	
	}
	.buttons-container-4 .button-item{
		width: Calc(25% - 10px);	
	}
	.main-menu .navbar-right .dropdown-menu {
    	right: auto;
    	left: 0;
	}
	.sticky .main-menu{
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
	}

	.sticky .main-menu .container-fluid{
		padding: 0;
	}

	.sticky .main-menu{
		background-color: rgba(36,53,73,.9);
		z-index: 9999;
	}
	.sticky	.main-menu .navbar-nav {
	    background-color: transparent;
	}
	.sticky .main-menu a{
		color:  #fff;
	}
	.sticky .main-menu .dropdown-menu a{
		color:  #a59b62;
	}

	.sticky .main-menu .dropdown-menu a:hover,
	.sticky .main-menu .dropdown-menu a:focus,
	.sticky .main-menu .dropdown-menu a:active {
	    color: #fff;
	}

	.sticky .main-menu .navbar-brand{
		display: block;
		padding: 10px 0 0 30px;
	}
	.sticky .navbar-nav>li>a {
	    padding-top: 27px;
	    padding-bottom: 27px;
	}

	figure.img-single {
    	height: 400px;
	}

	#home-slider .item{
		height: 390px;
	}

	#home-slider .owl-prev {
		top: Calc(50% - 40px);
	    left: 100px;
	}
	#home-slider .owl-next {
		top: Calc(50% - 40px);
	    right: 100px;
	}

	#home-slider .owl-prev i,#home-slider .owl-next i {
	    font-size: 85px;
	    color: rgba(255,255,255,.85);
	}

	#home-slider .text-slider{
		padding: 15px 15px 30px 15px;
	}

	#home-slider .text-slider h3{
		margin: 0 0 5px 0;
		font-size: 19px;
	}

	#home-slider .text-slider p{
		margin: 0 0 5px 0;
		font-size: 16px;
	}
}





@media (max-width: 1999px){
	.main-menu .navbar-nav {
	    background-color: transparent;
	}
	header#header:after {
	    display: none;
	}
	.main-menu a {
	    color: #fff;
	}

	.main-menu .collapse.in a:hover {
	    color: #a59b62;
	}
}

@media (min-width: 1200px){
	.container {
	    max-width: 1280px;
	    width: 100%;
	}
	.header-logo{
		width: 22%;
	}
	.sticky .main-menu .navbar-nav:before{
		display: none;
	}
	.main-menu .navbar-nav:before{
		display: block;
	}
	.main-menu .navbar-nav {
	    background-color: #fff;
	    margin-left: 130px;
	}
	.main-menu a {
	    color: #243549;
	}
	.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
	    color: #262626;
	    background-color: #a59b62;
	    color: #fff;
	}
	.main-menu .nav .open>a, .main-menu .nav .open>a:focus, .main-menu .nav .open>a:hover {
	    color: #a59b62;
	}
	header#header:after {
	    display: block;
	}

	#home-slider .item{
		height: 400px;
	}

	#home-slider .owl-prev {
		top: Calc(50% - 40px);
	    left: 100px;
	}
	#home-slider .owl-next {
		top: Calc(50% - 40px);
	    right: 100px;
	}

	#home-slider .owl-prev i,#home-slider .owl-next i {
	    font-size: 85px;
	    color: rgba(255,255,255,.85);
	}

	#home-slider .text-slider{
		padding: 15px 15px 30px 15px;
	}

	#home-slider .text-slider h3{
		margin: 0 0 5px 0;
		font-size: 19px;
	}

	#home-slider .text-slider p{
		margin: 0 0 5px 0;
		font-size: 16px;
	}
}
@media( min-width: 992px ){
	.category-container-previous .post-category{
		min-height: 260px;
	}
}

@media ( min-width: 768px ) and (max-width: 991px){
	.category-container-header .post-category.right img {
    	max-width: 150%;
    	width: auto;
    	height: auto;
    	min-height: 100%;
	}

	.main-menu .nav>li>a {
	    padding: 10px 7px;
	    font-size: 13px;
	}

	.sticky .main-menu .nav>li>a {
	    padding: 25px 15px;
	    font-size: 13px;
	}

	.widget-agenda .widget-content{
		display: flex;
		flex-wrap: wrap;
	}

	.widget-agenda .widget-content .agenda-item {
	    width: 50%;
	    padding: 0 10px;
	    display: flex;
    	justify-content: center;
	}
	.widget-social-icons-share .widget-content {
	    display: flex;
	    border-bottom: 1px solid #777;
	}
	.widget-social-icons-share .widget-content .sis-item{
		width: 33.33%;
		padding: 15px 0;
		border-bottom: 0;
	}
	figure.img-single {
    	height: 400px;
	}
}


@media ( max-width: 480px ) {
	.social-icon{
		border: 1px solid white;
	}


	.post-header,
	.category-container-header .post-category.left,
	.post-header-sec{
	    height: 350px;
	}

	.main-slide-item{
		height: 700px;
	}

	.main-slide-item .main-slide-caption h3 {
	    font-size: 15px;
	}

	.post-header-sec .post-header-caption,
	.post-header .post-header-caption,
	.main-slide-item .main-slide-caption {
	    width: Calc(100% - 20px);
	    padding: 10px;
	    left: 0;
	    top: 120px;
	    font-size: 12px;
	}

	.widget-agenda img {
	    width: 100%;
	}

	.main-slide-item img{
		height: 350px;
		width: auto!important;
	}

	.bg-half .caption {
	    padding: 20px 10px 20px 20px;
	}
	.bg-half:after {
	    width: Calc(100% - 20px);
	    height: Calc(100% - 20px);
	    margin: 10px;
	}

	.title-carrera {
	    font-size: 26px;
	    margin-bottom: 30px;
	}

	.icono-sitio {
	    width: 90%;
	    height: 90%;
	}
	.icono-sitio a .caption {
		font-size: 12px;
	}

	.sitios-uabjo .container {
	    padding-right: 0;
	    padding-left: 0;
	}
	.menu-footer img{
		width: 150px;
		margin-bottom: 45px;
	}
	.category-container-header .post-category.right img {
	    max-width: 150%;
	    min-height: 100%;
	    width: auto;
	    height: auto;
	}

}

@media (min-width: 480px) {
	.sitios{
		padding: 10px 0 10px 0;
	}

	.agenda-grid .item {
        width: 50%;
    }

    div#lightgallery a {
	    width: Calc(33.333% - 10px);
	}

}

@media (min-width: 650px) {
	#slides .slides-container .slide-item{
		padding: 100px 110px;
	}
}

@media ( max-width: 767px ) {

	.sitios-grid .cell{
	    width: 50%;
	    padding-bottom: 50%;
	}

	#unidades_sistemas .site-row-container-inner,
	#unidades_sistemas .site-row-container-inner .container,
	#unidades_sistemas .site-row-container-inner .container .col-md-4,
	#slide-carreras .site-row-container-inner,
	#slide-carreras .container,
	.site-row-container .container,
	.category-container-header .col-xs-12,
	.category-container-previous .col-xs-12
	{
		padding: 0;
	}

	.category-container-header .row{
		margin: 0;
	}

	.post-category.right{
		margin-left: 0;
		margin-right: 0;
	}

	.carrera-item .caption {
	    width: 100%;
	    height: 52%;
	    top: 48%;
	}
	.carrera-item .caption .info-carrera {
	    padding: 0 10px;
	}
	.detalle-carrera {
	    border: 1px solid #fff;
	    padding: 30px 15px 15px 15px;
	    font-size: 14px;
	}
	header#header:after {
	    display: none;
	}
	header .col-xs-12 {
	    padding: 0;
	}
	.header-logo figure img {
	    display: none;
	}
	.header-right{
		width: 100%;
	}
	.main-menu .navbar-brand{
		display: block;
	}

	.main-menu a {
	    padding: 5px 10px;
	}

	.main-menu .navbar-nav .open .dropdown-menu>li>a:hover {
	    color:#fff;
	    background-color: #243549;
	}

	.main-menu .nav .open>a, .main-menu .nav .open>a:focus, .main-menu .nav .open>a:hover {
	    color:#fff;
	}

	.navbar-toggle .icon-bar {
	    background: #a59b62;
	}
	.navbar-brand img {
	    height: 40px;
	    width: auto;
	}
	.main-menu .navbar-nav {
    	background: #a59b62;
	}
	.main-menu a {
	    color: #243549;
	}

	.post-content .container .row,
	.menu-footer .row,
	.acontecer-uabjo .row,
	.agenda-digital-uabjo .row{
		margin-left: 0;
		margin-right: 0;
	}



	.navbar-nav {
	    margin-bottom:0;
	}

	.post-header-sec .post-header-caption h3,
	.post-header .post-header-caption h3{
		font-size: 23px;
	}
	.content {
	    font-size: 15px;
	}

	.social-icons-tm {
	    position: relative;
	    height: 50px;
	    float: right;
	    padding-top: 12px;
	}
	.social-icons-tm a {
	    color: #fff;
	    padding: 5px;
	    margin-top: 25px;
	    font-size: 19px;
	}

	.widget-social-icons-share .sis-item {
	    padding: 10px 25px;
	}


}


@media (min-width: 481px ) and (max-width: 767px) {
	.post-header,
	.post-header-sec {
	    height: 450px;
	}

	.main-slide-item{
		height: 700px;
	}
	.main-slide-item .main-slide-caption h3 {
	    font-size: 17px;
	}

	.post-header .post-header-caption,
	.post-header-sec .post-header-caption,
	.main-slide-item .main-slide-caption {
	    width: Calc(100% - 80px);
	    padding: 30px;
	    left: 40px;
	    top: 200px;
	    font-size: 14px;
	}

	.post-header .post-header-caption{
		left: 0;
	}

	.main-slide-item img{
		height: 450px;
		width: auto!important;
	}

	.accordion-container {
	    height: 390px;
	}

	.category-container-header .post-category.right img{
		width: 100%;
	}

	.widget-agenda .widget-content{
		display: flex;
		flex-wrap: wrap;
	}

	.widget-agenda .widget-content .agenda-item {
	    width: 50%;
	    padding: 0 10px;
	    display: flex;
    	justify-content: center;
	}

	.widget-agenda .agenda-item a{
		display: inline-block;
	}

	.news-container .item img{
		width: 100%;
    	height: auto;
	}

	.carrera-item .caption img.img-top-slide {
	    width: 50%;
	}
}

@media (min-width: 768px ) and (max-width: 991px) {


	.main-slide-item .main-slide-caption {

	    top: 140px;

	}

	.carrera-item .caption {
	    width: 60%;
	}

	.carrera-item .caption img.img-top-slide {
	    width: 75%;
	}

}

@media( min-width: 400px ){
	figure.img-single {
    	height: 250px;
	}
}

@media( min-width: 768px ){
	figure.img-single {
    	height: 350px;
	}
	.agenda-grid .item {
        width: 33.33%;
    }
    div#lightgallery a {
	    width: Calc(25% - 10px);
	}

	#slides .slides-container .slide-item{
		padding: 100px 200px;
	}
}

@media( min-width: 992px ){
	figure.img-single {
    	height: 430px;
	}
	.agenda-grid .item {
        width: 25%;
    }

    .carrera-item .caption img.img-top-slide {
	    width: 75%;
	}

	#slides .slides-container .slide-item{
		width: 50%;
		padding: 100px 50px;
	}

	#slides .slides-container .slide-item .info-carrera .protocolo-img-1{
		margin-top: 30px;
		margin-bottom: 10px!important;
	}

	#slides .slides-container .slide-item .info-carrera .protocolo-img-2{
		margin-bottom: 30px!important;
	}
	#slides .slides-container .slide-item .info-carrera .protocolo-img-3{
		margin-bottom: 10px!important;
	}
}

@media( min-width: 1280px ){
	#home-slider .item {
		height: 430px;
	}

	#slides .slides-container .slide-item{
		width: 50%;
		padding: 100px 12%;
	}

	#slides .slides-container .slide-item .info-carrera .protocolo-img-1{
		margin-bottom: 10px!important;
	}

	#slides .slides-container .slide-item .info-carrera .protocolo-img-2{
		margin-bottom: 20px!important;
	}
	#slides .slides-container .slide-item .info-carrera .protocolo-img-3{
		margin-bottom: 20px!important;
	}
}

@media( min-width: 1600px ){
	#home-slider .item {
    	height: 537px;
	}
	#home-slider .text-slider {
    	font-size: 23px;
	}
}



@media (min-width: 1440px){

	.home-slider .item figure {
		height: 525px;
	}
}


@media (min-width: 1900px){

	#home-slider .item {
		height: 730px;
	}
}

@media (min-width: 2400px){

	#home-slider .item  {
		height: 900px;
	}
}

@media (min-width: 3500px){

	#home-slider .item  {
		height: 1333px;
	}
}