/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
@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;
}

/**
 * Swiper 3.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: February 7, 2016
 */
.swiper-container{margin:0 auto;position:relative;overflow:hidden;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate(0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-box-lines:multiple;-moz-box-lines:multiple;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex:0 0 auto;flex-shrink:0;width:100%;height:100%;position:relative}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;-webkit-transition-property:-webkit-transform,height;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform,height}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-wp8-horizontal{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;-moz-background-size:27px 44px;-webkit-background-size:27px 44px;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-moz-appearance:none;-ms-appearance:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-white .swiper-pagination-bullet{background:#fff}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-o-transform:translate(0,-50%);-ms-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:5px 0;display:block}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 5px}.swiper-pagination-progress{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progress .swiper-pagination-progressbar{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar{-webkit-transform-origin:right top;-moz-transform-origin:right top;-ms-transform-origin:right top;-o-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progress{width:100%;height:4px;left:0;top:0}.swiper-container-vertical>.swiper-pagination-progress{width:4px;height:100%;left:0;top:0}.swiper-pagination-progress.swiper-pagination-white{background:rgba(255,255,255,.5)}.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar{background:#fff}.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar{background:#000}.swiper-container-3d{-webkit-perspective:1200px;-moz-perspective:1200px;-o-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper{-ms-perspective:1200px}.swiper-container-cube,.swiper-container-flip{overflow:visible}.swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-slide{visibility:hidden;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-moz-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-moz-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;-moz-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;-webkit-background-size:100%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}
html {
  font-size: 62.5%;
  box-sizing: border-box; }

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  padding-top: 70px;
  background-color: #fff; }
  body.js-noScroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    body {
      padding-top: 100px; } }

*, *:before, *:after {
  box-sizing: inherit; }

a {
  text-decoration: none; }

strong {
  font-weight: 700; }

table {
  width: 100%;
  display: block; }
  table th {
    border: 1px solid #6c665e;
    padding: 20px; }
    table th h4 {
      margin: 0; }
  table td {
    border: 1px solid #6c665e;
    padding: 10px; }

.text, .content p, .content ul li, .animateContent p, .animateContent .js-animate .animateContent p {
  color: #6c665e;
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Roboto", sans-serif; }
  .text--big {
    font-size: 2.1rem;
    line-height: 1.5238; }

.heading {
  font-family: "Cantata One", serif;
  line-height: 1.3333;
  letter-spacing: -0.01em;
  line-height: 1.272727; }
  .heading--jumbo {
    font-size: 2.7rem;
    width: 100%;
    text-align: center;
    white-space: pre-line;
    z-index: 2; }
    @media (min-width: 400px) {
      .heading--jumbo {
        font-size: 3.4rem; } }
    @media (min-width: 768px) {
      .heading--jumbo {
        font-size: 4.4rem; } }
    .heading--jumbo.heading--bordered::before {
      width: 181px;
      height: 276px;
      left: 50%;
      top: 70%;
      z-index: 1;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .heading--big {
    font-size: 4.2rem;
    color: #fff;
    position: relative;
    z-index: 1; }
    .heading--big.heading--bordered::before {
      width: 181px;
      height: 127px;
      left: -30px; }
  .heading--small {
    position: relative;
    font-size: 3.8rem;
    z-index: 2; }
    .heading--small.heading--bordered::before {
      width: 181px;
      height: 147px;
      left: -30px;
      z-index: -1; }
  .heading--bordered::before {
    content: "";
    border: 4px solid #f1b86f;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: -1; }
  .heading--subsite {
    font-size: 4.3rem;
    z-index: 2; }
    @media (min-width: 400px) {
      .heading--subsite {
        font-size: 5.3rem; } }
    @media (min-width: 768px) {
      .heading--subsite {
        font-size: 5.6rem; } }
    .heading--subsite.heading--bordered::before {
      content: "";
      width: 146px;
      height: 243px;
      top: 55%;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: -1; }

.box {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }
  .box .heading {
    max-width: 240px;
    font-size: 3.1rem;
    text-align: center;
    color: #fff;
    display: block;
    margin: 0 auto 36px;
    letter-spacing: 0.025em;
    line-height: 1.1290; }
  .box .text, .box .content p, .content .box p, .box .content ul li, .content ul .box li, .box .animateContent p, .animateContent .box p, .box .animateContent .js-animate .animateContent p, .animateContent .js-animate .animateContent .box p {
    color: #fff;
    text-align: center;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    line-height: 1.6250; }
  .box::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #212a4a;
    opacity: 0;
    z-index: -2;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .box .borderAnimate {
    z-index: -1; }
  .box:hover {
    cursor: pointer; }
    .box:hover::after {
      opacity: 0.6; }
    .box:hover .borderAnimate span:nth-child(3), .box:hover .borderAnimate span:nth-child(4) {
      width: 100%; }
    .box:hover .borderAnimate span:nth-child(1), .box:hover .borderAnimate span:nth-child(2) {
      height: 100%; }
  .box--menu {
    padding-top: 0;
    position: relative;
    display: block;
    height: 100px;
    margin-bottom: 7px;
    background-repeat: no-repeat;
    background-position: center; }
    @media (min-width: 768px) {
      .box--menu {
        height: 232px;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 0; } }
    @media (min-width: 992px) {
      .box--menu {
        width: 291px; } }
    .box--menu .heading {
      position: relative;
      top: 50%;
      margin: 0 auto;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      font-size: 2.4rem;
      letter-spacing: 0.025em;
      line-height: 1.0909;
      z-index: 3; }

.borderAnimate {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2; }
  .borderAnimate > span {
    position: absolute;
    background-color: #e6b16e; }
    .borderAnimate > span:nth-child(1), .borderAnimate > span:nth-child(2) {
      width: 3px;
      height: 0;
      -webkit-transition: height .3s ease-in-out;
      transition: height .3s ease-in-out; }
    .borderAnimate > span:nth-child(3), .borderAnimate > span:nth-child(4) {
      width: 0;
      height: 3px;
      -webkit-transition: width .3s ease-in-out;
      transition: width .3s ease-in-out; }
    .borderAnimate > span:nth-child(1) {
      top: 0;
      left: 0;
      -webkit-transition-delay: .3s;
              transition-delay: .3s; }
    .borderAnimate > span:nth-child(2) {
      right: 0;
      bottom: 0;
      -webkit-transition-delay: .3s;
              transition-delay: .3s; }
    .borderAnimate > span:nth-child(3) {
      top: 0;
      left: 0; }
    .borderAnimate > span:nth-child(4) {
      right: 0;
      bottom: 0; }

.btn {
  display: inline-block;
  vertical-align: top;
  background-color: transparent;
  border: 0; }
  .btn:active {
    outline: none; }
  .btn--underline, .btn--more {
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    letter-spacing: 0.1em;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s; }
    .btn--underline > span, .btn--more > span {
      height: 4px;
      width: 0;
      background-color: #f1b86f;
      display: block;
      margin-top: 5px;
      position: absolute;
      -webkit-transition: all .3s;
      transition: all .3s; }
    .btn--underline:hover, .btn--more:hover {
      letter-spacing: 0.26em;
      cursor: pointer; }
      .btn--underline:hover span, .btn--more:hover span {
        width: 100%; }
  .btn--more {
    padding-top: 9px;
    color: #263054;
    font-size: 1.3rem; }

.images {
  background: url("../themes/mortgages/assets/img/contact_img.jpg");
  width: 162px;
  height: 162px;
  position: relative;
  background-size: cover;
    background-position: center;
}
  .images::before {
    content: "";
    width: 152px;
    height: 150px;
    border: 3px solid #e0ab67;
    position: absolute;
    top: 23px;
    left: 22px;
    z-index: -1; }

.choose {
  font-size: 0; }
  .choose__box {
    width: 390px;
    height: 337px;
    background-color: #263054;
    display: block;
    position: relative; }
    @media (min-width: 768px) {
      .choose__box {
        display: inline-block;
        vertical-align: top; } }
    .choose__box:nth-child(2), .choose__box:nth-child(4), .choose__box:nth-child(6) {
      background-color: #212a4a; }
    @media (min-width: 768px) {
      .choose__box:nth-child(2), .choose__box:nth-child(3), .choose__box:nth-child(6) {
        background-color: #212a4a; }
      .choose__box:nth-child(4) {
        background-color: #263054; } }
    @media (min-width: 992px) {
      .choose__box:nth-child(2), .choose__box:nth-child(4), .choose__box:nth-child(6) {
        background-color: #212a4a; }
      .choose__box:nth-child(3) {
        background-color: #263054; } }
    .choose__box::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      z-index: -1;
      box-sizing: content-box; }
    .choose__box:hover:not(:first-child) {
      background-color: #fff;
      box-shadow: 16px 0 109px #090d1c;
      position: relative;
      z-index: 7; }
      .choose__box:hover:not(:first-child)::after {
        padding: 6px;
        top: -6px;
        left: -6px;
        background-color: #fff;
        -webkit-transition: all 0.4s cubic-bezier(0, 1.52, 1, 1.435);
        transition: all 0.4s cubic-bezier(0, 1.52, 1, 1.435); }
      .choose__box:hover:not(:first-child) .choose__box__inner {
        -webkit-transition: -webkit-transform .3s ease-in-out .3s;
        transition: -webkit-transform .3s ease-in-out .3s;
        transition: transform .3s ease-in-out .3s;
        transition: transform .3s ease-in-out .3s, -webkit-transform .3s ease-in-out .3s; }
        .choose__box:hover:not(:first-child) .choose__box__inner__img {
          position: relative;
          z-index: 8;
          -webkit-animation: mask 1s;
                  animation: mask 1s;
          -webkit-transform: translateY(-60px);
                  transform: translateY(-60px);
          -webkit-transition: all .3s ease-in-out .2s;
          transition: all .3s ease-in-out .2s; }
        .choose__box:hover:not(:first-child) .choose__box__inner__title {
          color: #263054;
          z-index: 8;
          -webkit-transform: translateY(-60px);
                  transform: translateY(-60px);
          -webkit-transition: all .3s ease-in-out .3s;
          transition: all .3s ease-in-out .3s; }
      .choose__box:hover:not(:first-child) .choose__box__hidenText {
        opacity: 1;
        color: #6c665e;
        z-index: 20;
        top: 75%;
        -webkit-transition: all .3s ease-in-out .4s;
        transition: all .3s ease-in-out .4s; }
        @media (min-width: 768px) {
          .choose__box:hover:not(:first-child) .choose__box__hidenText {
            top: 70%; } }
        @media (min-width: 992px) {
          .choose__box:hover:not(:first-child) .choose__box__hidenText {
            top: 70%; } }
        @media (min-width: 1230px) {
          .choose__box:hover:not(:first-child) .choose__box__hidenText {
            top: 70%; } }
    .choose__box__inner {
      z-index: 3;
      font-size: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 100%; }
      .choose__box__inner__img {
        display: block;
        margin: 0 auto 22px;
        z-index: 5; }
      .choose__box__inner__title {
        font-size: 2.4rem;
        line-height: 1.0833;
        color: #fff;
        text-align: center;
        letter-spacing: 0.025em; }
    .choose__box__hidenText {
      font-size: 1.3rem;
      text-align: center;
      color: #fff;
      font-family: "Roboto", sans-serif;
      line-height: 1.8571;
      width: 100%;
      padding: 0 15px;
      position: absolute;
      opacity: 0; }
      @media (min-width: 768px) {
        .choose__box__hidenText {
          font-size: 1.4rem; } }
    .choose__box__wrap {
      overflow: hidden; }
      .choose__box__wrap:nth-child(2) {
        margin-bottom: 30px; }

@-webkit-keyframes mask {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes mask {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.field__wiadomosci {
  background-color: #2c375a;
  width: 639px;
  height: 138px;
  border: none;
  border-bottom: 4px solid #212a4a;
  padding: 16px;
  color: #fefaf5;
  font-size: 1.6rem;
  line-height: 1.2727;
  resize: none; }
  .field__wiadomosci::-webkit-input-placeholder {
    color: #fefaf5; }
  .field__wiadomosci::-moz-placeholder {
    color: #fefaf5; }
  .field__wiadomosci:-ms-input-placeholder {
    color: #fefaf5; }
  .field__wiadomosci::placeholder {
    color: #fefaf5; }
  .field__wiadomosci:focus {
    outline: none; }

.field__underline {
  width: 100%;
  height: 4px;
  position: relative;
  top: -6px; }
  .field__underline::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background-color: orange;
    left: 0;
    height: 100%;
    width: 0;
    -webkit-transition: width .2s linear;
    transition: width .2s linear; }
    .field__wiadomosci:focus + .field__underline::after {
      outline: none; }

.field__wiadomosci:focus + .field__underline::after {
  width: 639px; }

.field {
  position: relative;
  z-index: 1; }
  .field__input {
    width: 100%;
    height: 54px;
    border: none;
    border-bottom: 4px solid #212a4a;
    padding: 16px;
    font-size: 1.6rem;
    line-height: 1.2727;
    resize: none;
    background: none;
    color: #fefaf5;
    background-color: transparent;
    outline: none; }
    @media (min-width: 992px) {
      .field__input {
        width: 470px; } }
    @media (min-width: 1230px) {
      .field__input {
        width: 315px; } }
    .field__input::-webkit-input-placeholder {
      color: #fefaf5; }
    .field__input::-moz-placeholder {
      color: #fefaf5; }
    .field__input:-ms-input-placeholder {
      color: #fefaf5; }
    .field__input::placeholder {
      color: #fefaf5; }
    .field__input:focus ~ .field__underline > span, .field__input.error ~ .field__underline > span {
      width: 100%; }
      @media (min-width: 992px) {
        .field__input:focus ~ .field__underline > span, .field__input.error ~ .field__underline > span {
          width: 470px; } }
      @media (min-width: 1230px) {
        .field__input:focus ~ .field__underline > span, .field__input.error ~ .field__underline > span {
          width: 100%; } }
    .field__input.error ~ .field__underline > span {
      background-color: #C93535; }
    .field__input--textarea {
      height: 140px;
      font-family: "Roboto", sans-serif; }
      @media (min-width: 1230px) {
        .field__input--textarea {
          width: 661px; } }
    .field__input.js-filled + .label, .field__input:focus + .label {
      font-size: 1rem;
      top: 5px; }
  .field .label {
    font-size: 1.6rem;
    color: #fefaf5;
    position: absolute;
    left: 17px;
    top: 18px;
    font-family: "Roboto", sans-serif;
    z-index: -1;
    -webkit-transition: font-size .3s ease-in-out, top .3s ease-in-out;
    transition: font-size .3s ease-in-out, top .3s ease-in-out; }
    .field .label > span {
      color: #e6b16e; }
  .field__underline {
    width: 100%;
    height: 4px;
    position: relative;
    top: -4px; }
    .field__underline > span {
      display: block;
      position: absolute;
      top: 0;
      background-color: #e6b16e;
      left: 0;
      height: 100%;
      width: 0;
      -webkit-transition: width .3s linear, background-color .2s linear;
      transition: width .3s linear, background-color .2s linear;
      z-index: 2; }
      .field__underline > span.js-animate {
        width: 0;
        left: auto;
        right: 0; }

.header {
  width: 100%;
  display: block;
  position: relative; }
  .header .heading {
    text-align: center;
    font-family: "Cantata One", serif;
    color: #fff; }
    @media (min-width: 768px) {
      .header .heading {
        max-width: 936px; } }
  .header--big {
    height: 775px; }
    .header--big__prev, .header--big__next {
      width: 13px;
      height: 17px;
      position: absolute;
      padding: 6px;
      opacity: .75;
      background-repeat: no-repeat;
      -webkit-transition: opacity .2s ease-in-out, -webkit-transform .3s ease-in-out;
      transition: opacity .2s ease-in-out, -webkit-transform .3s ease-in-out;
      transition: transform .3s ease-in-out, opacity .2s ease-in-out;
      transition: transform .3s ease-in-out, opacity .2s ease-in-out, -webkit-transform .3s ease-in-out; }
      .header--big__prev:hover, .header--big__next:hover {
        cursor: pointer;
        opacity: 1; }
    .header--big__prev {
      fill: #fff;
      bottom: 20px;
      left: 20px; }
      .header--big__prev:hover {
        -webkit-transform: translateX(-3px);
                transform: translateX(-3px); }
    .header--big__next {
      fill: #fff;
      bottom: 20px;
      right: 20px; }
      .header--big__next:hover {
        -webkit-transform: translateX(3px);
                transform: translateX(3px); }
    .header--big__border {
      border: 4px solid #f1b86f;
      width: 181px;
      height: 276px;
      position: relative; }
  .header--subsite__border {
    border: 4px solid #f1b86f;
    width: 181px;
    height: 230px;
    position: relative;
    top: 45%;
    margin: 0 auto;
    z-index: -1; }
    @media (min-width: 768px) {
      .header--subsite__border {
        height: 276px;
        top: 50%; } }
  .header--article__border {
    border: 4px solid #f1b86f;
    width: 265px;
    height: 79px;
    position: absolute;
    bottom: -11px;
    left: 15%; }

.headerBorder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: 150px; }
  @media (min-width: 768px) {
    .headerBorder {
      top: 250px; } }

.iconBox {
  border: 4px solid #f1b86f;
  width: 62px;
  height: 62px;
  display: block;
  position: relative;
  margin-top: 40px; }
  .iconBox > span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 2.4rem;
    color: #fff; }

.overlay {
  width: 0;
  height: 0;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(38, 48, 84, 0.65);
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear; }
  .overlay.js-active {
    width: 100%;
    height: 100%;
    opacity: 1; }

.news {
  margin-bottom: 20px; }
  .news .darkHover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    z-index: 20; }
  .news__img {
    position: relative;
    font-size: 0;
    display: block;
    overflow: hidden; }
    .news__img::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background-color: #263054;
      opacity: 0;
      -webkit-transition: opacity .2s ease-in-out;
      transition: opacity .2s ease-in-out; }
    .news__img > img {
      max-width: 100%;
      -webkit-transition: -webkit-transform .3s ease-in-out;
      transition: -webkit-transform .3s ease-in-out;
      transition: transform .3s ease-in-out;
      transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out; }
    .news__img:hover {
      cursor: pointer; }
      .news__img:hover::after {
        opacity: 0.2; }
      .news__img:hover > img {
        -webkit-transform: scale(1.1);
                transform: scale(1.1); }
  .news__inner {
    background-color: #fff;
    padding: 30px;
    width: 100%; }
    .news__inner .data {
      font-family: "Roboto", sans-serif;
      color: #6c665e;
      font-size: 1.3rem;
      margin-bottom: 24px; }
    .news__inner .heading {
      color: #263054;
      line-height: 1.4230;
      font-size: 2.6rem;
      font-family: "Cantata One", serif;
      margin-bottom: 30px;
      display: block; }
      .news__inner .heading:hover {
        cursor: pointer;
        text-decoration: underline; }
    .news__inner .text, .news__inner .content p, .content .news__inner p, .news__inner .content ul li, .content ul .news__inner li, .news__inner .animateContent p, .animateContent .news__inner p, .news__inner .animateContent .js-animate .animateContent p, .animateContent .js-animate .animateContent .news__inner p {
      margin-bottom: 43px; }
    .news__inner .btn {
      font-size: 1.3rem;
      color: #263054; }

.content p {
  font-size: 1.7rem;
  margin-bottom: 31px; }

.content h2 {
  font-size: 2.4rem;
  color: #263054;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-bottom: 16px; }

.content h4 {
  font-size: 1.8rem;
  color: #263054;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-bottom: 20px; }

.content ul {
  margin-bottom: 42px; }
  .content ul li {
    font-size: 1.7rem;
    position: relative;
    margin-left: 40px; }
    .content ul li::before {
      content: "";
      position: absolute;
      width: 17px;
      height: 4px;
      background-color: #e6b16e;
      display: block;
      top: 16px;
      left: -30px; }

.animationBox {
  width: 164px;
  height: 141px;
  position: relative;
  margin: 25px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .animationBox span {
    position: absolute; }
  .animationBox__up, .animationBox__left, .animationBox__right, .animationBox__down {
    -webkit-transition: height .2s ease-in-out;
    transition: height .2s ease-in-out; }
  .animationBox__top-left, .animationBox__top-right, .animationBox__bottom-left, .animationBox__bottom-right {
    -webkit-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out; }
  .animationBox__up {
    width: 4px;
    height: 38px;
    background-color: #f7d4a9;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
  .animationBox__top-left {
    width: 82.5px;
    height: 4px;
    background-color: #f1b86f;
    top: 38px;
    right: 81px;
    left: auto;
    -webkit-transition-delay: .2s;
            transition-delay: .2s; }
  .animationBox__top-right {
    width: 82.5px;
    height: 4px;
    background-color: #f1b86f;
    top: 38px;
    left: 81px;
    right: 0;
    -webkit-transition-delay: .2s;
            transition-delay: .2s; }
  .animationBox__left {
    width: 4px;
    height: 64px;
    background-color: #f1b86f;
    left: 0;
    top: 38px;
    -webkit-transition-delay: .4s;
            transition-delay: .4s; }
  .animationBox__right {
    width: 4px;
    height: 64px;
    background-color: #f1b86f;
    right: 0;
    top: 38px;
    -webkit-transition-delay: .4s;
            transition-delay: .4s; }
  .animationBox__bottom-left {
    width: 82.5px;
    height: 4px;
    background-color: #f1b86f;
    left: 0;
    bottom: 38px;
    -webkit-transition-delay: .6s;
            transition-delay: .6s; }
  .animationBox__bottom-right {
    width: 82.5px;
    height: 4px;
    background-color: #f1b86f;
    right: 0;
    bottom: 38px;
    -webkit-transition-delay: .6s;
            transition-delay: .6s; }
  .animationBox__down {
    width: 4px;
    height: 38px;
    background-color: #f7d4a9;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 102px;
    -webkit-transition-delay: .8s;
            transition-delay: .8s; }
  .animationBox.js-animated .animationBox__up {
    height: 38px; }
  .animationBox.js-animated .animationBox__top-left {
    width: 82.5px; }
  .animationBox.js-animated .animationBox__top-right {
    width: 82.5px; }
  .animationBox.js-animated .animationBox__left {
    height: 64px; }
  .animationBox.js-animated .animationBox__right {
    height: 64px; }
  .animationBox.js-animated .animationBox__bottom-left {
    width: 82.5px; }
  .animationBox.js-animated .animationBox__bottom-right {
    width: 82.5px; }
  .animationBox.js-animated .animationBox__down {
    height: 38px; }

.lastAnimationBox {
  display: block;
  width: 164px;
  height: 57px;
  position: relative;
  margin: 25px 0; }
  .lastAnimationBox span {
    position: absolute; }
  .lastAnimationBox__up {
    -webkit-transition: height .2s ease-in-out;
    transition: height .2s ease-in-out; }
  .lastAnimationBox__down {
    -webkit-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out; }
  .lastAnimationBox__up {
    width: 4px;
    height: 38px;
    background-color: #f7d4a9;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
  .lastAnimationBox__down {
    width: 26px;
    height: 4px;
    background-color: #f1b86f;
    top: 38px;
    left: 50%;
    -webkit-transition-delay: .2s;
            transition-delay: .2s;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }

.contentLeftBox {
  display: block; }
  @media (min-width: 768px) {
    .contentLeftBox {
      display: inline-block;
      vertical-align: top; } }
  .contentLeftBox .heading {
    font-size: 3.8rem; }
  .contentLeftBox__left {
    padding-left: 45px;
    width: 100%;
    background-color: #263054;
    height: 386px;
    padding-top: 11px;
    position: relative;
    margin-bottom: 43px; }
    @media (min-width: 768px) {
      .contentLeftBox__left {
        width: 300px;
        display: inline-block;
        vertical-align: top; }
        .contentLeftBox__left::before {
          content: "";
          position: absolute;
          top: 0;
          bottom: 0;
          width: 100%;
          background-color: #263054;
          left: -56px;
          z-index: -1; } }
    @media (min-width: 992px) {
      .contentLeftBox__left {
        margin-right: 43px; } }
    .contentLeftBox__left > ul {
      margin-top: 76px; }
      .contentLeftBox__left > ul > li {
        margin: 40px 0; }
        .contentLeftBox__left > ul > li > a {
          color: #fff;
          font-size: 1.8rem;
          font-family: "Roboto", sans-serif;
          position: relative; }
          .contentLeftBox__left > ul > li > a .spanHover {
            width: 17px;
            height: 4px;
            position: absolute;
            left: -30px;
            top: 9px; }
            .contentLeftBox__left > ul > li > a .spanHover > span {
              position: absolute;
              background-color: #e6b16e;
              width: 0;
              height: 4px;
              -webkit-transition: width .1s ease-in-out;
              transition: width .1s ease-in-out; }
          .contentLeftBox__left > ul > li > a:hover span {
            width: 17px; }
          .contentLeftBox__left > ul > li > a.active {
            font-weight: 700; }
            .contentLeftBox__left > ul > li > a.active:before {
              content: "";
              background-color: #e6b16e;
              width: 17px;
              height: 4px;
              position: absolute;
              left: -30px;
              top: 50%;
              -webkit-transform: translateY(-50%);
                      transform: translateY(-50%); }

.relatedArticles {
  display: none; }
  @media (min-width: 1230px) {
    .relatedArticles {
      display: block;
      width: 356px;
      background-color: #263054;
      padding: 0 37px 45px;
      padding-top: 9px;
      position: relative; }
      .relatedArticles .heading {
        color: #fff !important;
        font-size: 3.8rem;
        position: relative;
        left: 15px;
        margin-bottom: 49px; }
        .relatedArticles .heading--bordered::before {
          width: 202px;
          height: 139px; }
        .relatedArticles .heading--articles {
          font-size: 2.2rem;
          line-height: 1.2272; }
          .relatedArticles .heading--articles:hover {
            text-decoration: underline; }
      .relatedArticles__data {
        font-size: 1.3rem;
        color: #c4c5cc;
        font-family: "Roboto", sans-serif;
        font-weight: 600;
        margin-bottom: 10px;
        margin-left: 15px; }
      .relatedArticles .btn {
        color: #fff;
        margin-left: 15px;
        margin-top: 13px; }
        .relatedArticles .btn--all {
          display: table;
          margin: 0 auto; }
      .relatedArticles .belt {
        height: 2px;
        background-color: #3c4771;
        margin: 35px 0; } }

.animateContent p {
  font-size: 1.7rem;
  opacity: 1; }

.animateContent h2 {
  font-size: 2.4rem;
  color: #263054;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 1; }

.animateContent h4 {
  font-size: 1.8rem;
  color: #263054;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  opacity: 1; }

.animateContent h6 {
  opacity: 0;
  font-size: 1.8rem;
  color: #263054;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  opacity: 1; }

.animateContent .js-animate .animateContent p {
  font-size: 1.7rem;
  margin-bottom: 31px;
  opacity: 1; }

.animateContent .js-animate .animateContent h2 {
  font-size: 2.4rem;
  color: #263054;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 1; }

.animateContent .js-animate .animateContent h4 {
  font-size: 1.8rem;
  color: #263054;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 1; }

.cookies {
  background-color: #263054;
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out; }
  .cookies.js-visible {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .cookies .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .cookies__text {
    font-size: 1.6rem;
    padding: 20px;
    color: #fff;
    font-family: "Roboto", sans-serif; }
    .cookies__text > a {
      color: #e6b16e; }
  .cookies__close {
    min-width: 68px;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #1A213B;
    color: #e6b16e;
    padding: 13px 15px 15px;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
    text-align: center; }

.form__success {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #263054;
  display: none;
  height: 492px;
  border: 4px solid #212a4a; }
  @media (min-width: 768px) {
    .form__success {
      height: 507px; } }
  @media (min-width: 1230px) {
    .form__success {
      width: 665px;
      height: 377px; } }
  .form__success__img {
    width: 163px;
    height: 163px;
    border: 1px solid #e6b16e;
    border-radius: 50%;
    display: block;
    margin: 40px auto 80px;
    position: relative; }
    @media (min-width: 1230px) {
      .form__success__img {
        margin: 40px auto 28px; } }
    .form__success__img > img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .form__success .heading {
    text-align: center;
    font-size: 3.2rem;
    color: #fff;
    margin: 0 !important; }
  .form__success .text, .form__success .content p, .content .form__success p, .form__success .content ul li, .content ul .form__success li, .form__success .animateContent p, .animateContent .form__success p, .form__success .animateContent .js-animate .animateContent p, .animateContent .js-animate .animateContent .form__success p {
    color: #9c9da7;
    font-size: 1.5rem;
    text-align: center; }
  .form__success.js-anim-success {
    display: block; }

.navbar {
  height: 70px;
  background-color: rgba(38, 48, 84, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 21;
  -webkit-transition: height .2s linear, opacity .2s linear, line-height .2s linear;
  transition: height .2s linear, opacity .2s linear, line-height .2s linear; }
  @media (max-width: 767px) {
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      -webkit-transition: background-color .1s ease-in-out;
      transition: background-color .1s ease-in-out; }
      .navbar.js-open {
        background-color: #263054; } }
  @media (min-width: 768px) {
    .navbar {
      height: 100px; } }
  .navbar.js-scroll {
    height: 70px; }
    @media (min-width: 768px) {
      .navbar.js-scroll .navbar__menu > li > a {
        line-height: 50px; } }
    @media (min-width: 768px) {
      .navbar.js-scroll .navbar__nav {
        line-height: 70px; } }
    @media (min-width: 768px) {
      .navbar.js-scroll .navbar__lang {
        margin: 15px auto; } }
    @media (min-width: 768px) {
      .navbar.js-scroll .navbar__logo {
        width: 236px; }
        .navbar.js-scroll .navbar__logo > img {
          max-width: 100%; } }
    @media (min-width: 768px) {
      .navbar.js-scroll .navbar__nav .navbar__menu > li > a > span {
        bottom: 0; } }
    @media (min-width: 768px) {
      .navbar.js-scroll .navbar__menu > li .active::after {
        bottom: 0; } }
  @media (min-width: 768px) {
    .navbar > .container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transition: all .3s linear;
      transition: all .3s linear; } }
  .navbar__squares {
    width: 100px;
    height: 44px;
    position: absolute;
    top: 10px;
    right: 17px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all .3s linear;
    transition: all .3s linear; }
    .navbar__squares__square {
      width: 44px;
      height: 44px;
      z-index: 1;
      border: 1px solid #e6b16e;
      position: relative;
      -webkit-transition: all .3s linear;
      transition: all .3s linear; }
      .navbar__squares__square > img {
        margin-left: 15px;
        margin-top: 15px; }
      @media (min-width: 768px) {
        .navbar__squares__square {
          display: none; } }
      .navbar__squares__square > span {
        width: 23px;
        height: 1px;
        background-color: white;
        display: block;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        -webkit-transition: all .3s;
        transition: all .3s;
        -webkit-transition-timing-function: cubic-bezier(0, 1.65, 0.83, 1.16);
                transition-timing-function: cubic-bezier(0, 1.65, 0.83, 1.16); }
        .navbar__squares__square > span:nth-child(1) {
          margin-top: 14px; }
        .navbar__squares__square > span:nth-child(2) {
          margin-top: 20px; }
        .navbar__squares__square > span:nth-child(3) {
          margin-top: 27px; }
      .navbar__squares__square.js-open > span {
        width: 23px;
        height: 1px;
        background-color: #fff;
        display: block;
        position: absolute;
        left: 50%; }
        .navbar__squares__square.js-open > span:nth-child(1) {
          margin-top: 20px;
          -webkit-transform: translate(-50%) rotate(45deg);
                  transform: translate(-50%) rotate(45deg);
          left: 50%; }
        .navbar__squares__square.js-open > span:nth-child(2) {
          margin-top: 20px;
          opacity: 0; }
        .navbar__squares__square.js-open > span:nth-child(3) {
          margin-top: 20px;
          -webkit-transform: translate(-50%) rotate(-45deg);
                  transform: translate(-50%) rotate(-45deg);
          left: 50%; }
  .navbar__logo {
    display: block;
    -webkit-transition: all .2s linear;
    transition: all .2s linear; }
    @media (max-width: 767px) {
      .navbar__logo {
        position: absolute;
        top: 49%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 159px; } }
    @media (min-width: 360px) and (max-width: 399px) {
      .navbar__logo {
        width: 200px; } }
    @media (min-width: 400px) and (max-width: 767px) {
      .navbar__logo {
        width: 225px; } }
    .navbar__logo > img {
      max-width: 259px;
      height: auto;
      display: block;
      -webkit-transition: all .2s linear;
      transition: all .2s linear; }
    @media (min-width: 768px) {
      .navbar__logo {
        width: 230px; } }
    @media (min-width: 992px) {
      .navbar__logo {
        width: 259px; } }
  .navbar__nav {
    height: 200%;
    overflow-x: hidden;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    overflow: hidden; }
    @media (max-width: 767px) {
      .navbar__nav {
        width: 100%;
        position: fixed;
        top: 67px;
        height: 200%;
        overflow-y: auto;
        bottom: 0;
        left: 0;
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        background-color: #263054;
        z-index: -1; } }
    @media (min-width: 768px) {
      .navbar__nav {
        padding: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        padding: 0;
        line-height: 100px; } }
    .navbar__nav.js-open {
      left: 0;
      -webkit-transform: translate(0);
              transform: translate(0); }
  @media (min-width: 768px) {
    .navbar__menu {
      display: inline-block;
      vertical-align: top; } }
  @media (min-width: 992px) {
    .navbar__menu {
      margin-right: 71px; } }
  .navbar__menu > li {
    display: block;
    text-align: center;
    border-bottom: 1px solid #465073;
    width: 100%; }
    @media all and (orientation: landscape) {
      .navbar__menu > li .navbar__level .container > ul > li {
        width: 50%; }
        .navbar__menu > li .navbar__level .container > ul > li > a {
          width: 95%; } }
    @media (min-width: 768px) {
      .navbar__menu > li {
        width: auto;
        border: 0;
        display: inline-block;
        margin: 0; } }
  @media all and (min-width: 768px) and (orientation: landscape) {
    .navbar__menu > li .navbar__level .container > ul > li {
      width: auto; }
      .navbar__menu > li .navbar__level .container > ul > li > a {
        width: 292px; } }
  @media (min-width: 768px) and (min-width: 992px) {
    .navbar__menu > li {
      padding: 0 10px; } }
  @media (min-width: 768px) and (min-width: 1230px) {
    .navbar__menu > li {
      padding: 0 20px; } }
    @media (min-width: 768px) {
      .navbar__menu > li .active::after {
        content: "";
        background-color: #b69169;
        width: 100%;
        height: 4px;
        position: absolute;
        bottom: 30px;
        left: 0;
        z-index: -1;
        -webkit-transition: none;
        transition: none; } }
    .navbar__menu > li > a {
      display: block;
      font-family: sans-serif;
      color: #fff;
      font-size: 2.5rem;
      text-align: left;
      padding: 30px 19px;
      position: relative; }
      @media (min-width: 768px) {
        .navbar__menu > li > a > span {
          position: absolute;
          left: 0;
          bottom: 30px;
          width: 0;
          height: 4px;
          display: block;
          background-color: #f1b86f;
          -webkit-transition: width .2s ease-in-out;
          transition: width .2s ease-in-out; } }
      @media (min-width: 768px) {
        .navbar__menu > li > a {
          font-size: 1.3rem;
          padding: 0 10px; } }
      @media (min-width: 992px) {
        .navbar__menu > li > a {
          font-size: 1.5rem; } }
      @media (min-width: 992px) {
        .navbar__menu > li > a:hover > span {
          width: 100%; } }
    .navbar__menu > li > ul {
      position: relative;
      top: 0; }
      .navbar__menu > li > ul li {
        width: 291px;
        height: 232px;
        display: inline-block; }
        .navbar__menu > li > ul li > a {
          display: block;
          height: 232px; }
    .navbar__menu > li.js-hasSubmenu > a {
      position: relative; }
      .navbar__menu > li.js-hasSubmenu > a::after {
        content: "";
        width: 6px;
        height: 8px;
        position: absolute;
        top: 50%;
        right: 20px;
        margin-top: -4px;
        background: url("../themes/mortgages/assets/img/arrow_navbar_mobile.png") no-repeat;
        background-position-x: 0; }
        @media (min-width: 768px) {
          .navbar__menu > li.js-hasSubmenu > a::after {
            background: url("../themes/mortgages/assets/img/arrow_navbar.png") no-repeat;
            position: static;
            display: inline-block;
            vertical-align: middle;
            margin-left: 7px;
            width: 8px;
            height: 6px; } }
    .navbar__menu > li.js-hasSubmenu.js-open > a::after {
      content: "";
      background-position-x: -8px; }
  .navbar__lang {
    margin: 33px auto;
    border-bottom: 0;
    text-align: center;
    width: 88px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all .2s linear;
    transition: all .2s linear; }
    @media (min-width: 768px) {
      .navbar__lang {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin: 29px 0; } }
    .navbar__lang__active {
      border: 3px solid #e6b16e; }
    .navbar__lang > li {
      width: 40px;
      height: 40px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transition: all .2s linear;
      transition: all .2s linear; }
      .navbar__lang > li > a {
        font-size: 14px;
        color: white;
        font-family: sans-serif;
        line-height: 40px;
        width: 100%;
        position: relative; }
        @media (min-width: 768px) {
          .navbar__lang > li > a {
            font-size: 1.3rem;
            padding: 0;
            width: 100%; } }
        .navbar__lang > li > a > span {
          position: absolute;
          left: 0;
          bottom: 0px;
          width: 0;
          height: 4px;
          display: block;
          background-color: #f1b86f;
          -webkit-transition: width .2s ease-in-out;
          transition: width .2s ease-in-out; }
        .navbar__lang > li > a:hover > span {
          width: 100%; }
  .navbar__level {
    background-color: #263054;
    z-index: 20;
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out; }
    .navbar__level.js-open {
      -webkit-transform: translateX(0);
              transform: translateX(0); }
    @media (max-width: 767px) {
      .navbar__level {
        display: block !important; } }
    @media (min-width: 768px) {
      .navbar__level {
        -webkit-transform: none;
                transform: none;
        padding: 0;
        display: block;
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%; } }
    .navbar__level .container > ul {
      font-size: 0; }
      .navbar__level .container > ul > li {
        display: inline-block;
        vertical-align: top;
        width: 100%; }
        @media (min-width: 768px) {
          .navbar__level .container > ul > li {
            width: auto; } }
        .navbar__level .container > ul > li .borderAnimate {
          width: 103px;
          height: 93px;
          margin-left: -51.2px;
          margin-top: -46.5px; }
  @media (max-width: 767px) {
    .navbar__mobileBack {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 20px 0; } }
  .navbar__mobileBack__text {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
    @media (min-width: 768px) {
      .navbar__mobileBack__text {
        display: none; } }
  .navbar__mobileBack > img {
    margin-right: 7px; }
    @media (min-width: 768px) {
      .navbar__mobileBack > img {
        display: none; } }

.footer {
  padding: 20px 0 40px;
  background-color: #fff; }
  @media (min-width: 768px) {
    .footer {
      padding: 89px 0 85px; } }
  @media (min-width: 992px) {
    .footer .container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; } }
  .footer__copyright {
    display: block;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .footer__copyright {
        display: inline-block;
        margin-right: 31px; } }
    @media (min-width: 992px) {
      .footer__copyright {
        margin-bottom: 0; } }
    @media (min-width: 1230px) {
      .footer__copyright {
        margin-right: 111px; } }
    .footer__copyright > img {
      width: 37px;
      height: 37px;
      display: block;
      margin: 0 auto 10px; }
      @media (min-width: 768px) {
        .footer__copyright > img {
          display: inline-block;
          vertical-align: middle;
          margin-right: 10px;
          margin-bottom: 0;
          width: 30px;
          height: 30px; } }
    .footer__copyright .text, .footer__copyright .content p, .content .footer__copyright p, .footer__copyright .content ul li, .content ul .footer__copyright li, .footer__copyright .animateContent p, .animateContent .footer__copyright p, .footer__copyright .animateContent .js-animate .animateContent p, .animateContent .js-animate .animateContent .footer__copyright p {
      display: block;
      font-size: 1.4rem;
      text-align: center;
      font-family: sans-serif;
      font-weight: 300;
      overflow: auto; }
      @media (min-width: 768px) {
        .footer__copyright .text, .footer__copyright .content p, .content .footer__copyright p, .footer__copyright .content ul li, .content ul .footer__copyright li, .footer__copyright .animateContent p, .animateContent .footer__copyright p, .footer__copyright .animateContent .js-animate .animateContent p, .animateContent .js-animate .animateContent .footer__copyright p {
          display: inline-block;
          vertical-align: middle;
          font-size: 1.2rem; } }
      .footer__copyright .text > span, .footer__copyright .content p > span, .content .footer__copyright p > span, .footer__copyright .content ul li > span, .content ul .footer__copyright li > span, .footer__copyright .animateContent p > span, .animateContent .footer__copyright p > span, .footer__copyright .animateContent .js-animate .animateContent p > span, .animateContent .js-animate .animateContent .footer__copyright p > span {
        color: #263054;
        font-weight: 600; }
  .footer__navigation {
    display: none; }
    @media (min-width: 768px) {
      .footer__navigation {
        display: inline-block;
        vertical-align: middle; } }
    .footer__navigation > li {
      display: inline-block;
      text-align: center; }
      .footer__navigation > li > a {
        color: #6c665e;
        font-size: 1.4rem;
        padding: 9px;
        font-family: sans-serif; }
        @media (min-width: 992px) {
          .footer__navigation > li > a:hover {
            text-decoration: underline; } }
        @media (min-width: 768px) {
          .footer__navigation > li > a {
            font-size: 1.2rem; } }
  .footer__yslab {
    text-align: center;
    display: block; }
    .footer__yslab .text, .footer__yslab .content p, .content .footer__yslab p, .footer__yslab .content ul li, .content ul .footer__yslab li, .footer__yslab .animateContent p, .animateContent .footer__yslab p, .footer__yslab .animateContent .js-animate .animateContent p, .animateContent .js-animate .animateContent .footer__yslab p {
      font-family: "Roboto", sans-serif;
      font-size: 1.2rem; }
      .footer__yslab .text > img, .footer__yslab .content p > img, .content .footer__yslab p > img, .footer__yslab .content ul li > img, .content ul .footer__yslab li > img, .footer__yslab .animateContent p > img, .animateContent .footer__yslab p > img, .footer__yslab .animateContent .js-animate .animateContent p > img, .animateContent .js-animate .animateContent .footer__yslab p > img {
        margin-left: 3px;
        margin-top: 2px; }

.container {
  padding: 0 15px; }
  @media (min-width: 768px) {
    .container {
      width: 750px;
      margin: 0 auto; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1230px) {
    .container {
      width: 1200px; } }

.l-index .heading__parallaxa {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0;
  position: relative;
  z-index: 2;
  margin-bottom: -40px; }
  @media (min-width: 768px) {
    .l-index .heading__parallaxa {
      margin: 0;
      height: 150px; } }
  .l-index .heading__parallaxa .heading {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.38, -0.24, 0, 1.45);
    transition: -webkit-transform 1s cubic-bezier(0.38, -0.24, 0, 1.45);
    transition: transform 1s cubic-bezier(0.38, -0.24, 0, 1.45);
    transition: transform 1s cubic-bezier(0.38, -0.24, 0, 1.45), -webkit-transform 1s cubic-bezier(0.38, -0.24, 0, 1.45); }
  .l-index .heading__parallaxa__hidden {
    overflow: hidden;
    background-position: 40px; }
    .l-index .heading__parallaxa__hidden.js-hidden .heading--jumbo {
      -webkit-transform: translateY(100%);
              transform: translateY(100%); }

.l-index__aboutUs {
  margin-bottom: 83px;
  display: block;
  padding-top: 37px;
  font-size: 0; }
  @media (min-width: 1230px) {
    .l-index__aboutUs .container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  .l-index__aboutUs__left {
    display: block;
    margin-bottom: 80px; }
    @media (min-width: 768px) {
      .l-index__aboutUs__left {
        padding-right: 75px; } }
    @media (min-width: 1230px) {
      .l-index__aboutUs__left {
        width: 632px; } }
    .l-index__aboutUs__left .heading {
      margin-bottom: 76px;
      color: #263054; }
    .l-index__aboutUs__left .text, .l-index__aboutUs__left .content p, .content .l-index__aboutUs__left p, .l-index__aboutUs__left .content ul li, .content ul .l-index__aboutUs__left li, .l-index__aboutUs__left .animateContent p, .animateContent .l-index__aboutUs__left p, .l-index__aboutUs__left .animateContent .js-animate .animateContent p, .animateContent .js-animate .animateContent .l-index__aboutUs__left p {
      margin-bottom: 21px; }
  .l-index__aboutUs__right {
    width: 100%;
    height: 332px;
    position: relative; }
    @media (min-width: 768px) {
      .l-index__aboutUs__right {
        width: 486px;
        display: block;
        margin: 0 auto; } }
    .l-index__aboutUs__right__images {
      min-width: 100%;
      height: 332px;
      overflow: hidden; }
      @media (min-width: 768px) {
        .l-index__aboutUs__right__images {
          width: 486px; } }
      .l-index__aboutUs__right__images img {
        overflow: hidden; }
    .l-index__aboutUs__right__logo {
      position: absolute;
      left: auto;
      bottom: -39px; }
      @media (min-width: 992px) {
        .l-index__aboutUs__right__logo {
          bottom: -65px;
          left: -65px; } }

.l-index__mortgages {
  width: 100%;
  background-color: #263054;
  padding: 113px 0 0;
  font-size: 0; }
  @media (min-width: 768px) {
    .l-index__mortgages {
      padding-bottom: 113px; } }
  .l-index__mortgages__box {
    display: inline-block;
    vertical-align: top;
    padding-top: 71px;
    width: 100%;
    height: 310px;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .l-index__mortgages__box {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        margin-bottom: 0; } }
    @media (min-width: 992px) {
      .l-index__mortgages__box {
        width: 313px; } }
    @media (min-width: 1230px) {
      .l-index__mortgages__box {
        width: 390px; } }
    .l-index__mortgages__box:first-child {
      padding-top: 0;
      height: 130px; }
      @media (min-width: 768px) {
        .l-index__mortgages__box:first-child {
          padding-top: 39px;
          height: 220px; } }
    .l-index__mortgages__box:last-child {
      padding-top: 57px;
      padding-left: 49px; }
    .l-index__mortgages__box__inner {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 266px; }
    .l-index__mortgages__box--noAnimate {
      -webkit-transition: background .3s ease-in-out;
      transition: background .3s ease-in-out; }
      .l-index__mortgages__box--noAnimate:hover {
        background-color: #212a4a; }
  .l-index__mortgages .box .borderAnimate {
    width: 163px;
    height: 93px;
    margin-top: -85.5px;
    margin-left: -81px; }

.l-index__quickContact {
  width: 100%;
  padding: 80px 0 105px;
  position: relative;
  overflow: hidden; }
  .l-index__quickContact > img {
    margin-left: -947px;
    position: absolute;
    left: 50%;
    top: -240px;
    z-index: 1; }
  @media (min-width: 768px) {
    .l-index__quickContact .container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; } }
  .l-index__quickContact__background {
    background: url("../themes/mortgages/assets/img/contact_bg.png") no-repeat center/cover;
    height: 395px; }
  .l-index__quickContact__left .heading {
    color: #263054;
    line-height: 1;
    margin-bottom: 75px; }
    @media (min-width: 768px) {
      .l-index__quickContact__left .heading {
        margin-bottom: 0; } }
    .l-index__quickContact__left .heading::before {
      height: 163px; }
  @media (min-width: 768px) {
    .l-index__quickContact__left {
      padding-right: 7px; } }
  .l-index__quickContact__right {
    width: 100%;
    font-size: 0; }
    @media (min-width: 768px) {
      .l-index__quickContact__right {
        width: auto; } }
    @media (min-width: 992px) {
      .l-index__quickContact__right {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
    .l-index__quickContact__right__person {
      width: 100%;
      height: 217px;
      background-color: #263054;
      display: inline-block;
      vertical-align: top;
      padding: 52px 40px; }
      @media (min-width: 768px) {
        .l-index__quickContact__right__person {
          width: 285px;
          display: block; } }
      @media (min-width: 1230px) {
        .l-index__quickContact__right__person {
          width: 315px; } }
      .l-index__quickContact__right__person .heading {
        font-size: 2.2rem;
        color: #fff;
        margin-bottom: 40px; }
      @media (min-width: 992px) {
        .l-index__quickContact__right__person {
          font-size: 2.4rem; } }
      .l-index__quickContact__right__person a {
        font-size: 1.6rem;
        color: #fff;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        font-family: "Roboto", sans-serif;
        margin-bottom: 15px; }
        .l-index__quickContact__right__person a.mail:hover {
          text-decoration: underline; }
        .l-index__quickContact__right__person a > img {
          margin-right: 10px; }
        .l-index__quickContact__right__person a > span {
          color: #b6b6b6;
          margin-right: 6px; }
    .l-index__quickContact__right__contactForm {
      background-position: center;
      width: 100%;
      height: 217px;
      overflow: hidden;
      display: inline-block;
      vertical-align: top;
      position: relative; }
      .l-index__quickContact__right__contactForm .hoverDark {
        background-color: #263054;
        opacity: 0.6;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        -webkit-transition: opacity .2s ease-in-out;
        transition: opacity .2s ease-in-out; }
      .l-index__quickContact__right__contactForm:hover {
        cursor: pointer; }
        .l-index__quickContact__right__contactForm:hover .hoverDark {
          opacity: 0.8; }
      @media (min-width: 768px) {
        .l-index__quickContact__right__contactForm {
          width: 285px; } }
      .l-index__quickContact__right__contactForm > img {
        position: absolute;
        left: 0;
        top: 0;
        margin-top: -321px;
        width: 100%; }
        @media (min-width: 768px) {
          .l-index__quickContact__right__contactForm > img {
            left: -100px;
            width: auto; } }
      .l-index__quickContact__right__contactForm .heading {
        font-size: 2.4rem;
        color: #fff;
        text-align: center;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        max-width: none;
        width: 100%;
        z-index: 20; }
  .l-index__quickContact .box .borderAnimate {
    width: 106px;
    height: 90px;
    margin-top: -45px;
    margin-left: -53px;
    border: 4px solid #e6b16e;
    z-index: 10; }

#primarySlider {
  top: -70px;
  background-position: center;
  height: 100vh; }
  @media (min-width: 768px) {
    #primarySlider {
      top: -100px;
      height: 775px; } }

.l-aboutUs .header__border {
  top: 80%; }

.l-aboutUs__header {
  width: 100%;
  height: 470px;
  background: center/cover no-repeat;
  position: relative;
  z-index: 1;
  top: -100px;
  margin-bottom: -40px; }
  @media (min-width: 768px) {
    .l-aboutUs__header {
      margin: 0; } }
  .l-aboutUs__header .heading {
    color: #fff;
    text-align: center; }

.l-aboutUs__info01 {
  margin-bottom: 102px; }
  .l-aboutUs__info01__left {
    display: block;
    margin-bottom: 20px; }
    @media (min-width: 992px) {
      .l-aboutUs__info01__left {
        display: inline-block;
        vertical-align: top;
        margin-right: 25px;
        width: 426px; } }
    @media (min-width: 1230px) {
      .l-aboutUs__info01__left {
        width: 680px;
        padding-right: 129px;
        margin: 0; } }
  .l-aboutUs__info01__right {
    display: block;
    width: 100%; }
    @media (min-width: 992px) {
      .l-aboutUs__info01__right {
        width: auto;
        display: inline-block;
        vertical-align: top; } }

.l-aboutUs__info02 {
  margin-bottom: 75px;
  font-size: 0; }
  @media (min-width: 768px) {
    .l-aboutUs__info02 {
      margin-bottom: 150px; } }
  .l-aboutUs__info02__left {
    padding: 20px;
    width: 100%;
    padding-bottom: 20px;
    background-color: #263054;
    display: block;
    margin: 0 auto 20px;
    position: relative; }
    .l-aboutUs__info02__left::after {
      content: '';
      display: block;
      position: absolute;
      z-index: -1;
      top: 0;
      left: -56px;
      right: 0;
      bottom: 0;
      background-color: #263054; }
    @media (min-width: 768px) {
      .l-aboutUs__info02__left {
        width: 395px;
        padding-top: 9px; } }
    @media (min-width: 992px) {
      .l-aboutUs__info02__left {
        display: inline-block;
        vertical-align: top;
        margin-right: 30px;
        margin-bottom: 0; } }
    @media (min-width: 1230px) {
      .l-aboutUs__info02__left {
        margin-right: 139px; } }
    .l-aboutUs__info02__left .heading {
      color: #fff;
      margin-bottom: 63px;
      line-height: 1.1315; }
    .l-aboutUs__info02__left ul > li {
      color: #fff;
      font-size: 1.7rem;
      margin-bottom: 24px;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      line-height: 1.2727; }
      .l-aboutUs__info02__left ul > li:last-child {
        bottom: 0; }
      .l-aboutUs__info02__left ul > li > span {
        width: 24px;
        height: 24px;
        background-color: #19203a;
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
        line-height: 24px;
        text-align: center;
        margin-right: 10px; }
        @media (min-width: 768px) {
          .l-aboutUs__info02__left ul > li > span {
            width: 28px;
            height: 28px;
            line-height: 28px; } }
  @media (min-width: 992px) {
    .l-aboutUs__info02__right {
      display: inline-block;
      vertical-align: top;
      width: 456px; } }
  @media (min-width: 1230px) {
    .l-aboutUs__info02__right {
      width: 636px; } }

.l-aboutUs__choose {
  background-color: #263054;
  padding: 88px 0;
  font-size: 0; }
  .l-aboutUs__choose .choose__box {
    display: block;
    width: 100%; }
    @media (min-width: 768px) {
      .l-aboutUs__choose .choose__box {
        display: inline-block;
        width: 360px; } }
    @media (min-width: 992px) {
      .l-aboutUs__choose .choose__box {
        width: 313px;
        height: 300px;
        display: inline-block; } }
    @media (min-width: 1230px) {
      .l-aboutUs__choose .choose__box {
        width: 390px;
        height: 337px; } }
    .l-aboutUs__choose .choose__box:first-child {
      height: 175px; }
      @media (min-width: 768px) {
        .l-aboutUs__choose .choose__box:first-child {
          padding-top: 90px; } }

.l-contact__header {
  width: 100%;
  height: 470px;
  background-position: center;
  position: relative;
  z-index: 1;
  top: -100px;
  margin-bottom: -40px; }
  @media (min-width: 768px) {
    .l-contact__header {
      margin: 0; } }
  .l-contact__header .heading {
    color: #263054;
    text-align: center; }
  @media (max-width: 767px) {
    .l-contact__header #map #map {
      pointer-event: none; } }

.l-contact__info {
  display: block;
  padding-bottom: 60px; }
  @media (min-width: 768px) {
    .l-contact__info {
      padding-bottom: 125px; } }
  .l-contact__info .text, .l-contact__info .content p, .content .l-contact__info p, .l-contact__info .content ul li, .content ul .l-contact__info li, .l-contact__info .animateContent p, .animateContent .l-contact__info p, .l-contact__info .animateContent .js-animate .animateContent p, .animateContent .js-animate .animateContent .l-contact__info p {
    max-width: 788px;
    font-size: 2.1rem;
    line-height: 1.6190;
    text-align: center;
    display: block;
    margin: 0 auto; }
    .l-contact__info .text > span, .l-contact__info .content p > span, .content .l-contact__info p > span, .l-contact__info .content ul li > span, .content ul .l-contact__info li > span, .l-contact__info .animateContent p > span, .animateContent .l-contact__info p > span, .l-contact__info .animateContent .js-animate .animateContent p > span, .animateContent .js-animate .animateContent .l-contact__info p > span {
      font-weight: 600; }

.l-contact__contact {
  background-color: #263054;
  padding: 60px 0 20px;
  font-size: 0; }
  @media (min-width: 768px) {
    .l-contact__contact {
      padding: 140px 0; } }
  .l-contact__contact .heading {
    color: #fff;
    margin-bottom: 60px; }
    @media (min-width: 768px) {
      .l-contact__contact .heading {
        margin-bottom: 100px; } }
  .l-contact__contact .contactLeftWrapper {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-bottom: 60px;
    position: relative; }
    @media (min-width: 768px) {
      .l-contact__contact .contactLeftWrapper {
        margin-bottom: 0;
        width: 50%;
        margin-right: 60px; } }
    @media (min-width: 992px) {
      .l-contact__contact .contactLeftWrapper {
        margin-right: 95px; } }
    @media (min-width: 1230px) {
      .l-contact__contact .contactLeftWrapper {
        width: 665px;
        margin-right: 108px; } }
    .l-contact__contact .contactLeftWrapper .l-contact__contact__left .field {
      display: block;
      margin-bottom: 30px; }
      @media (min-width: 992px) {
        .l-contact__contact .contactLeftWrapper .l-contact__contact__left .field {
          margin-right: 31px; } }
      @media (min-width: 1230px) {
        .l-contact__contact .contactLeftWrapper .l-contact__contact__left .field {
          display: inline-block; } }
      .l-contact__contact .contactLeftWrapper .l-contact__contact__left .field:last-child {
        margin-bottom: 0; }
      .l-contact__contact .contactLeftWrapper .l-contact__contact__left .field:nth-child(2n) {
        margin-right: 0; }
    .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media (min-width: 768px) {
        .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -ms-flex-direction: row;
                  flex-direction: row;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between; } }
      .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .btn {
        font-size: 1.9rem;
        color: #e6b16e;
        text-align: left; }
        .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .btn:focus {
          outline: none; }
        @media (min-width: 768px) {
          .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .btn {
            font-size: 1.3rem;
            text-align: center; } }
      .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .text, .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .content p, .content .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn p, .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .content ul li, .content ul .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn li, .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .animateContent p, .animateContent .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn p {
        font-size: 1.3rem;
        color: #9c9da7;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; }
        @media (min-width: 768px) {
          .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .text, .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .content p, .content .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn p, .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .content ul li, .content ul .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn li, .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .animateContent p, .animateContent .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn p {
            -webkit-box-ordinal-group: 0;
            -webkit-order: -1;
                -ms-flex-order: -1;
                    order: -1; } }
        .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .text > span, .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .content p > span, .content .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn p > span, .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .content ul li > span, .content ul .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn li > span, .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .animateContent p > span, .animateContent .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn p > span, .l-contact__contact .contactLeftWrapper .l-contact__contact__left__btn .animateContent .js-animate .animateContent p > span {
          color: #e6b16e;
          margin-right: 4px; }
    .l-contact__contact .contactLeftWrapper .l-contact__contact__left .form__error {
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 25px;
      padding: 20px;
      background-color: #C93535; }
      .l-contact__contact .contactLeftWrapper .l-contact__contact__left .form__error__text {
        font-size: 1.6rem;
        color: #fff;
        font-family: "Roboto", sans-serif; }
      .l-contact__contact .contactLeftWrapper .l-contact__contact__left .form__error__button {
        font-size: 1.6rem;
        color: #fff;
        font-family: "Roboto", sans-serif;
        text-transform: uppercase; }
        .l-contact__contact .contactLeftWrapper .l-contact__contact__left .form__error__button:hover {
          cursor: pointer; }
  .l-contact__contact__right {
    width: 100%;
    padding: 47px 20px;
    background-color: #212a4a;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1; }
    @media (min-width: 768px) {
      .l-contact__contact__right {
        width: 300px; } }
    @media (min-width: 992px) {
      .l-contact__contact__right {
        width: 375px; } }
    @media (min-width: 1230px) {
      .l-contact__contact__right {
        width: 355px;
        padding-left: 146px;
        padding-right: 0; }
        .l-contact__contact__right:after {
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          right: -72px;
          width: 72px;
          background-color: #212a4a; } }
    .l-contact__contact__right .images {
      display: block;
      margin: 0 auto;
      margin-bottom: 30px; }
      @media (min-width: 1230px) {
        .l-contact__contact__right .images {
          position: absolute;
          top: 23px;
          left: -73px; } }
    .l-contact__contact__right .text, .l-contact__contact__right .content p, .content .l-contact__contact__right p, .l-contact__contact__right .content ul li, .content ul .l-contact__contact__right li, .l-contact__contact__right .animateContent p, .animateContent .l-contact__contact__right p, .l-contact__contact__right .animateContent .js-animate .animateContent p, .animateContent .js-animate .animateContent .l-contact__contact__right p {
      font-size: 1.8rem;
      color: #fff;
      margin-bottom: 11px;
      font-weight: 600; }
    .l-contact__contact__right__text {
      display: block;
      font-size: 1.6rem;
      color: #fff;
      font-family: "Roboto", sans-serif;
      margin-bottom: 7px;
      line-height: 1.2525;
      position: relative;
      padding-left: 25px; }
      .l-contact__contact__right__text > img {
        vertical-align: middle;
        position: absolute;
        left: 0; }
      .l-contact__contact__right__text--mail {
        margin-bottom: 30px; }
        .l-contact__contact__right__text--mail a {
          color: #fff; }
          .l-contact__contact__right__text--mail a:hover {
            text-decoration: underline;
            cursor: pointer; }

.l-mortgages {
  background-color: #fefaf5; }
  .l-mortgages__header {
    width: 100%;
    height: 470px;
    background-position: center;
    position: relative;
    z-index: 1;
    top: -100px;
    margin-bottom: -40px; }
    @media (min-width: 768px) {
      .l-mortgages__header {
        margin: 0; } }
    .l-mortgages__header .heading {
      color: #fff;
      text-align: center; }
  .l-mortgages .more {
    margin: 0 auto;
    margin-bottom: 60px;
    display: table; }
  @media (max-width: 767px) {
    .l-mortgages #newsMasonry {
      max-width: 375px;
      margin: 0 auto; } }
  @media (min-width: 768px) {
    .l-mortgages #newsMasonry .news {
      width: 340px; } }
  @media (min-width: 992px) {
    .l-mortgages #newsMasonry .news {
      width: 300px; } }
  @media (min-width: 1230px) {
    .l-mortgages #newsMasonry .news {
      width: 376px; } }
  .l-mortgages #newsMasonry .wrapperNews .news:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s; }
  .l-mortgages #newsMasonry .wrapperNews .news:nth-child(2) {
    -webkit-animation-delay: .2s;
            animation-delay: .2s; }
  .l-mortgages #newsMasonry .wrapperNews .news:nth-child(3) {
    -webkit-animation-delay: .4s;
            animation-delay: .4s; }
  .l-mortgages #newsMasonry .wrapperNews .news:nth-child(4) {
    -webkit-animation-delay: .6s;
            animation-delay: .6s; }
  .l-mortgages #newsMasonry .wrapperNews .news:nth-child(5) {
    -webkit-animation-delay: .8s;
            animation-delay: .8s; }
  .l-mortgages #newsMasonry .wrapperNews .news:nth-child(6) {
    -webkit-animation-delay: .10s;
            animation-delay: .10s; }
  .l-mortgages #newsMasonry .wrapperNews .news:nth-child(7) {
    -webkit-animation-delay: .12s;
            animation-delay: .12s; }
  .l-mortgages #newsMasonry .wrapperNews .news:nth-child(8) {
    -webkit-animation-delay: .14s;
            animation-delay: .14s; }
  .l-mortgages #newsMasonry .wrapperNews .news:nth-child(9) {
    -webkit-animation-delay: .16s;
            animation-delay: .16s; }

.l-buying__header {
  width: 100%;
  height: 470px;
  background-position: center;
  position: relative;
  z-index: 1;
  top: -100px;
  margin-bottom: -40px; }
  @media (min-width: 768px) {
    .l-buying__header {
      margin: 0; } }
  .l-buying__header .heading {
    color: #fff;
    text-align: center; }

.l-buying__content {
  font-size: 0; }
  .l-buying__content .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (min-width: 992px) {
      .l-buying__content .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row; } }
  .l-buying__content__right {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    display: inline-block;
    vertical-align: top; }
    @media (min-width: 992px) {
      .l-buying__content__right {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
        margin-top: 26px;
        width: 597px; } }
    @media (min-width: 1230px) {
      .l-buying__content__right {
        width: 827px; } }
    .l-buying__content__right__purposes {
      display: block;
      font-size: 0;
      margin-bottom: 62px; }
      .l-buying__content__right__purposes__box {
        width: 100%;
        height: 217px;
        display: block;
        position: relative; }
        .l-buying__content__right__purposes__box:nth-child(2), .l-buying__content__right__purposes__box:nth-child(4), .l-buying__content__right__purposes__box:nth-child(6) {
          background-color: #f6f6f6; }
        .l-buying__content__right__purposes__box:nth-child(1), .l-buying__content__right__purposes__box:nth-child(3), .l-buying__content__right__purposes__box:nth-child(5) {
          background-color: #ededed; }
        @media (min-width: 768px) {
          .l-buying__content__right__purposes__box {
            display: inline-block;
            width: 50%; }
            .l-buying__content__right__purposes__box:nth-child(1), .l-buying__content__right__purposes__box:nth-child(4), .l-buying__content__right__purposes__box:nth-child(5) {
              background-color: #f6f6f6; }
            .l-buying__content__right__purposes__box:nth-child(2), .l-buying__content__right__purposes__box:nth-child(3), .l-buying__content__right__purposes__box:nth-child(6) {
              background-color: #ededed; } }
        @media (min-width: 992px) {
          .l-buying__content__right__purposes__box {
            width: 298px;
            display: inline-block;
            vertical-align: top; } }
        @media (min-width: 1230px) {
          .l-buying__content__right__purposes__box {
            width: 274px; }
            .l-buying__content__right__purposes__box:nth-child(2), .l-buying__content__right__purposes__box:nth-child(4), .l-buying__content__right__purposes__box:nth-child(6) {
              background-color: #f6f6f6; }
            .l-buying__content__right__purposes__box:nth-child(1), .l-buying__content__right__purposes__box:nth-child(3), .l-buying__content__right__purposes__box:nth-child(5) {
              background-color: #ededed; } }
        .l-buying__content__right__purposes__box p {
          text-align: center;
          display: block;
          margin: 0 auto;
          line-height: 1.2941;
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%); }
          @media (min-width: 1230px) {
            .l-buying__content__right__purposes__box p {
              width: 208px; } }

.l-remortgaging__header {
  width: 100%;
  height: 470px;
  background-position: center;
  position: relative;
  z-index: 1;
  top: -100px;
  margin-bottom: -40px; }
  @media (min-width: 768px) {
    .l-remortgaging__header {
      margin: 0; } }
  .l-remortgaging__header .heading {
    color: #fff;
    text-align: center; }

.l-remortgaging__content__right {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
  display: inline-block;
  vertical-align: top; }
  @media (min-width: 992px) {
    .l-remortgaging__content__right {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1;
      margin-top: 26px;
      width: 597px; } }
  @media (min-width: 1230px) {
    .l-remortgaging__content__right {
      width: 827px; } }

.l-home__header {
  width: 100%;
  height: 470px;
  background-position: center;
  position: relative;
  z-index: 1;
  top: -100px;
  margin-bottom: -40px; }
  @media (min-width: 768px) {
    .l-home__header {
      margin: 0; } }
  .l-home__header .heading {
    color: #fff;
    text-align: center; }

.l-home__content .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 992px) {
    .l-home__content .container {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }

.l-home__content__right {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
  display: inline-block;
  vertical-align: top; }
  @media (min-width: 992px) {
    .l-home__content__right {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2;
      width: 594px;
      margin-top: 26px; } }
  @media (min-width: 1230px) {
    .l-home__content__right {
      width: 824px; } }

.l-articles__header {
  width: 100%;
  height: 230px;
  background-position: center;
  position: relative;
  z-index: 1;
  top: -100px; }
  .l-articles__header.headerEmpty {
    width: 100%;
    height: 230px;
    background-color: #262f54; }
  @media (min-width: 768px) {
    .l-articles__header {
      height: 470px; } }
  .l-articles__header svg {
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 17px;
    padding: 6px;
    position: absolute;
    margin-left: 17px;
    margin-top: 36px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    fill: #fff;
    opacity: .75;
    box-sizing: content-box;
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out, -webkit-transform .2s ease-in-out; }
    .l-articles__header svg:hover {
      -webkit-transform: translateY(-50%) translateX(-3px);
              transform: translateY(-50%) translateX(-3px);
      opacity: 1;
      cursor: pointer; }
  .l-articles__header .nextArticle {
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    line-height: 71px;
    margin-left: 104px;
    display: block;
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out, -webkit-transform .2s ease-in-out; }
    .l-articles__header .nextArticle:hover {
      -webkit-transform: translateX(3px);
              transform: translateX(3px);
      cursor: pointer;
      opacity: 1; }
      .l-articles__header .nextArticle:hover svg:first-child {
        position: absolute;
        margin-top: 36px;
        right: 23px;
        padding: 6px;
        opacity: 1;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
    .l-articles__header .nextArticle svg {
      display: inline-block;
      vertical-align: middle;
      width: 13px;
      height: 17px;
      position: absolute;
      margin-top: 36px;
      right: 23px;
      padding: 6px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      fill: #fff;
      opacity: .75;
      box-sizing: content-box; }

.l-articles__articles {
  margin-top: -100px; }
  .l-articles__articles .headingBig {
    color: #263054;
    margin-bottom: 28px;
    font-size: 4.8rem; }
  .l-articles__articles__data {
    font-size: 1.5rem;
    color: #6c665e;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    margin: 42px 0; }
  .l-articles__articles__left {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-bottom: 76px; }
    @media (min-width: 1230px) {
      .l-articles__articles__left {
        width: 811px;
        padding-right: 80px; } }
    .l-articles__articles__left ul {
      margin: 47px 0;
      margin-left: 18px; }
      .l-articles__articles__left ul > li {
        color: #6c665e;
        font-size: 1.7rem;
        font-family: "Roboto", sans-serif;
        line-height: 2;
        margin-left: 30px;
        position: relative; }
        .l-articles__articles__left ul > li::before {
          content: "";
          display: block;
          width: 17px;
          height: 4px;
          background-color: #e6b16e;
          margin-right: 14px;
          position: absolute;
          top: 16px;
          left: -30px; }
  .l-articles__articles__right {
    display: inline-block;
    vertical-align: top; }

    form#contactForm {
    display: none;
}
