﻿@font-face {
  font-family: "Oswald-Light";
  src: url("../../Content/fonts/Oswald/Oswald-Light.ttf") format("truetype"); }

@font-face {
  font-family: "Oswald-Medium";
  src: url("../../Content/fonts/Oswald/Oswald-Medium.ttf") format("truetype"); }

@font-face {
  font-family: "Raleway-Regular";
  src: url("../../Content/fonts/Raleway/Raleway-Regular.ttf") format("truetype"); }

/*!
 * 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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

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

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

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

body {
  font-family: "Raleway-Regular";
  font-size: 18px;
  line-height: 1.5; }
  @media (max-width: 992px) {
    body {
      font-size: 15px; } }

.c-1900 {
  max-width: 1900px !important;
  width: 100%; }

.c-1350 {
  max-width: 1350px !important;
  width: 100%; }

h1, h2, h3 {
  font-family: "Oswald-Light";
  color: #ac192d;
  text-transform: uppercase;
  font-size: 56px; }
  h1 span, h2 span, h3 span {
    color: #1b1d1f; }
  @media (min-width: 993px) and (max-width: 1199px) {
    h1, h2, h3 {
      font-size: 40px; } }
  @media (max-width: 992px) {
    h1, h2, h3 {
      font-size: 32px; } }

header {
  border-top: 5px solid #ac192d;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  padding-bottom: 5px; }
  @media (min-width: 993px) {
    header .info-contact {
      background: linear-gradient(to left, #ac192d 70%, #fff 30%); } }
  @media (max-width: 992px) {
    header .info-contact {
      background: #ac192d; } }
  @media (max-width: 619px) {
    header .info-contact {
      text-align: center; }
      header .info-contact .social-class, header .info-contact .address-class, header .info-contact .address, header .info-contact .phone {
        width: 100%; } }
  header .info-contact .social-address-class {
    padding-top: 0px;
    padding-bottom: 5px; }
    @media (min-width: 620px) {
      header .info-contact .social-address-class {
        text-align: right;
        float: right; } }
    @media (min-width: 620px) {
      header .info-contact .social-address-class .social-class {
        float: right;
        margin-right: 30px; } }
    @media (max-width: 619px) {
      header .info-contact .social-address-class .social-class {
        display: inline-block; } }
    header .info-contact .social-address-class .social-class i {
      padding: 5px; }
    header .info-contact .social-address-class .address-class {
      font-family: "Raleway-Regular";
      background: #ac192d; }
      @media (min-width: 620px) {
        header .info-contact .social-address-class .address-class {
          float: right; } }
      @media (max-width: 619px) {
        header .info-contact .social-address-class .address-class {
          display: inline-block; } }
      @media (min-width: 620px) {
        header .info-contact .social-address-class .address-class > div {
          float: left; } }
      @media (max-width: 619px) {
        header .info-contact .social-address-class .address-class > div {
          display: inline-block; } }
      @media (min-width: 620px) {
        header .info-contact .social-address-class .address-class .address {
          margin-right: 30px; } }
  @media (min-width: 993px) {
    header .info-contact .social-address-class:after {
      content: "";
      position: absolute;
      left: calc(30% - 32px);
      width: 0px;
      height: 0px;
      border-top: 33px solid #ac192d;
      border-left: 33px solid transparent; } }
  @media (min-width: 993px) {
    header .logo-class {
      margin-top: 5px; } }
  @media (max-width: 992px) {
    header .logo-class {
      text-align: center;
      float: none !important; }
      header .logo-class img {
        display: -webkit-inline-box;
        margin-top: 5px; } }
  header a, header a:focus {
    color: #fff;
    text-decoration: none; }
  header a:hover {
    color: #1b1d1f;
    text-decoration: none; }

.js-menu {
  font-family: "Oswald-Medium";
  text-align: center;
  background: #fff; }
  @media (max-width: 992px) {
    .js-menu {
      float: none !important; } }
  .js-menu .navbar-default {
    background: #fff;
    border: none !important;
    color: #1b1d1f;
    box-shadow: inset 0 0px 0 rgba(255, 255, 255, 0.15), 0 0px 0px rgba(0, 0, 0, 0.075); }
  .js-menu .navbar {
    margin-bottom: 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 0; }
  .js-menu .navbar .nav > li a {
    font-weight: normal;
    color: #1b1d1f; }
  .js-menu .navbar .nav > li > a {
    display: flex;
    justify-content: center;
    align-items: center; }
  .js-menu .navbar .nav > li a:hover, .js-menu .navbar .nav > li a:focus {
    background: #fff;
    color: #ac192d; }
  .js-menu .navbar-default .navbar-nav > .active > a, .js-menu .navbar-default .navbar-nav > .active > a:hover, .js-menu .navbar-default .navbar-nav > .active > a:focus {
    background: #fff;
    color: #ac192d;
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075); }
  @media (min-width: 768px) {
    .js-menu .nav.navbar-nav {
      display: -webkit-inline-box;
      float: none; } }
  @media (min-width: 993px) {
    .js-menu .nav.navbar-nav {
      margin-top: 22px; } }
  @media (max-width: 992px) {
    .js-menu .nav.navbar-nav {
      margin-bottom: -4px; } }
  @media (min-width: 1350px) {
    .js-menu .navbar .nav > li a.top-level {
      padding-left: 24px;
      padding-right: 24px; }
    .js-menu .navbar .nav > li a {
      font-size: 20px; } }
  @media (min-width: 1200px) and (max-width: 1349px) {
    .js-menu .navbar .nav > li a.top-level {
      padding-left: 18px;
      padding-right: 18px; }
    .js-menu .navbar .nav > li a {
      font-size: 18px; } }
  @media (min-width: 768px) {
    .js-menu .navbar > .container {
      padding-left: 0px;
      padding-right: 0px; }
    .js-menu .navbar-nav {
      margin-left: 0%; }
    .js-menu .navbar-collapse {
      padding-left: 0;
      padding-right: 0; } }
  @media (min-width: 993px) and (max-width: 1199px) {
    .js-menu .navbar .nav > li {
      margin-left: 1px;
      margin-right: 1px; }
      .js-menu .navbar .nav > li a.top-level {
        padding-left: 9px;
        padding-right: 9px; }
      .js-menu .navbar .nav > li a {
        font-size: 17px; } }
  @media (min-width: 768px) and (max-width: 992px) {
    .js-menu .navbar .nav > li a {
      padding-left: 16px;
      padding-right: 16px;
      font-size: 16px; } }
  @media (min-width: 768px) {
    .js-menu .dropdown .dropdown-menu {
      display: none; } }
  .js-menu .dropdown.open a.dropdown-toggle:link, .js-menu .dropdown.open a.dropdown-toggle:visited, .js-menu .dropdown.open a.dropdown-toggle:hover, .js-menu .dropdown.open a.dropdown-toggle:active {
    background: #fff;
    color: #ac192d;
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075); }
  .js-menu .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    width: 700px;
    left: -42%;
    padding: 0px 0;
    margin: 0px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    border-radius: 0px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    border: none;
    text-transform: uppercase; }
    .js-menu .dropdown .dropdown-menu li {
      float: left;
      width: 350px; }
      .js-menu .dropdown .dropdown-menu li a {
        padding: 14px 30px 14px 55px !important;
        background: #fff url("../../Content/images/keyboard-right-arrow-button1.svg") 20px center no-repeat;
        background-size: 14px 14px;
        -webkit-transition: 0.2s ease all;
        transition: 0.2s ease all; }
        .js-menu .dropdown .dropdown-menu li a:hover, .js-menu .dropdown .dropdown-menu li a:active {
          background: #ac192d url("../../Content/images/keyboard-right-arrow-button.svg") 30px center no-repeat;
          color: #fff;
          background-size: 14px 14px;
          -webkit-transition: 0.2s ease all;
          transition: 0.2s ease all; }

@media (max-width: 767px) {
  .mainNav-sub-item {
    position: relative;
    z-index: 9;
    padding-left: 20px;
    padding-right: 20px;
    list-style: none; }
    .mainNav-sub-item li a {
      border-top: 1px solid #8c8c8c;
      width: 100%;
      display: inline-block;
      padding: 10px;
      background: #252525;
      color: #d0d0d0;
      text-decoration: none; }
    .mainNav-sub-item li a:hover {
      text-decoration: none; } }

.contact-banner {
  background: url("../../Content/images/banner-pages/contact-us.jpg") center center no-repeat #000; }

.about-banner {
  background: url("../../Content/images/banner-pages/about-us.jpg") center center no-repeat #000; }

.parts-banner {
  background: url("../../Content/images/banner-pages/parts-parts.jpg") center center no-repeat #000; }

.service-banner {
  background: url("../../Content/images/banner-pages/parts-service.jpg") center center no-repeat #000; }

.used-banner {
  background: url("../../Content/images/banner-pages/used-machinery.jpg") center center no-repeat #000; }

.new-banner {
  background: url("../../Content/images/banner-product/new-machinery.jpg") center center no-repeat #000; }

.content-banner .banner-title {
  margin: 60px 0; }
  .content-banner .banner-title h1 {
    font-family: "Oswald-Medium";
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    display: block; }
    @media (min-width: 768px) {
      .content-banner .banner-title h1 {
        font-size: 40px; } }
    @media (max-width: 767px) {
      .content-banner .banner-title h1 {
        font-size: 32px; } }
  .content-banner .banner-title h2 {
    color: #fff;
    line-height: 1.4;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0;
    margin-top: 0; }
    @media (min-width: 1200px) {
      .content-banner .banner-title h2 {
        font-size: 24px; } }
    @media (min-width: 768px) and (max-width: 1199px) {
      .content-banner .banner-title h2 {
        font-size: 22px; } }
    @media (max-width: 767px) {
      .content-banner .banner-title h2 {
        font-size: 20px; } }

.main-page {
  margin-top: 60px;
  margin-bottom: 60px; }
  .main-page h3 {
    font-family: "Oswald-Medium";
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.2; }
  .main-page h4 {
    line-height: 1.5; }
  .main-page p {
    margin-bottom: 15px; }
  .main-page a, .main-page a:focus {
    color: #1b1d1f; }
  .main-page a:hover {
    color: #ac192d; }

.cl-validate {
  color: #ac192d;
  font-size: 16px; }

form .form-control {
  border-radius: 0;
  padding: 10px 12px; }

form input.form-control {
  height: 44px; }

form .btn-default.btn-link, form #div-stock-content > div .box-product .box-product-info .btn-default.more-info, #div-stock-content > div .box-product .box-product-info form .btn-default.more-info, form .DetailViewTwelve .btn-default#btnSendMail, .DetailViewTwelve form .btn-default#btnSendMail, form .btn-default.btn-enquiry, form .container-detailview12 .btn-default#btnSendMail, .container-detailview12 form .btn-default#btnSendMail, form .btn-default.btn-link:hover, form .vehicle-class a:hover span.btn-default.btn-link, .vehicle-class a:hover form span.btn-default.btn-link, form .vehicle-class a:hover #div-stock-content > div .box-product .box-product-info span.btn-default.more-info, .vehicle-class a:hover #div-stock-content > div .box-product .box-product-info form span.btn-default.more-info, form #div-stock-content > div .box-product .box-product-info .vehicle-class a:hover span.btn-default.more-info, #div-stock-content > div .box-product .box-product-info .vehicle-class a:hover form span.btn-default.more-info, form .vehicle-class a:hover .DetailViewTwelve span.btn-default#btnSendMail, .vehicle-class a:hover .DetailViewTwelve form span.btn-default#btnSendMail, form .DetailViewTwelve .vehicle-class a:hover span.btn-default#btnSendMail, .DetailViewTwelve .vehicle-class a:hover form span.btn-default#btnSendMail, form .vehicle-class a:hover span.btn-default.btn-enquiry, .vehicle-class a:hover form span.btn-default.btn-enquiry, form .vehicle-class a:hover .container-detailview12 span.btn-default#btnSendMail, .vehicle-class a:hover .container-detailview12 form span.btn-default#btnSendMail, form .container-detailview12 .vehicle-class a:hover span.btn-default#btnSendMail, .container-detailview12 .vehicle-class a:hover form span.btn-default#btnSendMail, form #div-stock-content > div .box-product .box-product-info .btn-default.more-info:hover, #div-stock-content > div .box-product .box-product-info form .btn-default.more-info:hover, form .DetailViewTwelve .btn-default#btnSendMail:hover, .DetailViewTwelve form .btn-default#btnSendMail:hover, form .btn-default.btn-enquiry:hover, form .container-detailview12 .btn-default#btnSendMail:hover, .container-detailview12 form .btn-default#btnSendMail:hover {
  font-size: 24px;
  box-shadow: inset 0 0px 0 rgba(255, 255, 255, 0), 0 0px 0px transparent;
  outline: none; }

.frm-mail {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px 30px; }

.vehicle-class {
  margin-top: 30px;
  margin-bottom: 60px;
  background: #f3f3f3;
  padding-top: 50px;
  padding-bottom: 50px; }
  .vehicle-class h3 {
    margin-top: 0;
    margin-bottom: 40px; }
  .vehicle-class a, .vehicle-class a:focus {
    color: #1b1d1f;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
    .vehicle-class a h3, .vehicle-class a:focus h3 {
      color: #1b1d1f;
      font-family: "Oswald-Medium";
      font-size: 20px;
      line-height: 1.3;
      height: 70px;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center; }
    .vehicle-class a h4, .vehicle-class a:focus h4 {
      font-family: "Oswald-Medium";
      font-size: 24px;
      margin-top: 0;
      margin-bottom: 15px; }
    .vehicle-class a p, .vehicle-class a:focus p {
      font-size: 14px;
      margin-bottom: 15px; }
    .vehicle-class a .line1, .vehicle-class a:focus .line1 {
      margin-top: 0;
      margin-bottom: 15px; }
  .vehicle-class a:hover {
    text-decoration: none; }
    .vehicle-class a:hover img {
      -webkit-filter: brightness(80%); }
  .vehicle-class .box-vehicle-resize {
    width: 100%;
    padding-top: 65%;
    /* 1:1 Aspect Ratio */
    position: relative; }
    .vehicle-class .box-vehicle-resize > .resize-img {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
      .vehicle-class .box-vehicle-resize > .resize-img > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        overflow: hidden; }
  .vehicle-class .owl-nav {
    display: none; }
  .vehicle-class .owl-dots {
    margin-top: 30px; }
    .vehicle-class .owl-dots .owl-dot span {
      width: 24px !important; }
  .vehicle-class .owl-theme .owl-dots .owl-dot.active span, .vehicle-class .owl-theme .owl-dots .owl-dot:hover span {
    background: #ac192d; }

.about-class {
  margin-bottom: 60px; }
  .about-class h1 {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 20px; }
  .about-class .btn-link1, .about-class .banner .right .box-banner a .banner-text span, .banner .right .box-banner a .banner-text .about-class span {
    margin-top: 15px; }

.banner {
  margin-top: 30px; }
  @media (min-width: 993px) {
    .banner .left {
      margin-right: -20px;
      margin-left: 10px; } }
  @media (max-width: 992px) {
    .banner .left {
      margin-bottom: 30px; } }
  .banner .right .box-banner {
    margin-bottom: 10px; }
    @media (max-width: 992px) {
      .banner .right .box-banner {
        margin-bottom: 30px; } }
    .banner .right .box-banner a, .banner .right .box-banner a:focus {
      text-decoration: none; }
      .banner .right .box-banner a .banner-text, .banner .right .box-banner a:focus .banner-text {
        position: absolute;
        width: calc(100% - 30px);
        z-index: 9;
        text-align: center;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
        .banner .right .box-banner a .banner-text h2, .banner .right .box-banner a:focus .banner-text h2 {
          text-decoration: none;
          font-family: "Oswald-Medium";
          color: #fff;
          text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); }
          @media (min-width: 1200px) {
            .banner .right .box-banner a .banner-text h2, .banner .right .box-banner a:focus .banner-text h2 {
              font-size: 32px;
              margin-top: 10%;
              margin-bottom: 15px; } }
          @media (min-width: 993px) and (max-width: 1199px) {
            .banner .right .box-banner a .banner-text h2, .banner .right .box-banner a:focus .banner-text h2 {
              font-size: 26px;
              margin-top: 7%;
              margin-bottom: 10px; } }
          @media (min-width: 768px) and (max-width: 992px) {
            .banner .right .box-banner a .banner-text h2, .banner .right .box-banner a:focus .banner-text h2 {
              font-size: 24px;
              margin-top: 4%; } }
          @media (max-width: 767px) {
            .banner .right .box-banner a .banner-text h2, .banner .right .box-banner a:focus .banner-text h2 {
              font-size: 32px;
              margin-top: 10%; } }
        .banner .right .box-banner a .banner-text span, .banner .right .box-banner a:focus .banner-text span {
          min-width: auto !important; }
      .banner .right .box-banner a img, .banner .right .box-banner a:focus img {
        -webkit-filter: brightness(80%); }
    .banner .right .box-banner a:hover {
      text-decoration: none; }
      .banner .right .box-banner a:hover .banner-text {
        color: #fff;
        position: absolute;
        width: calc(100% - 30px);
        z-index: 9; }
        .banner .right .box-banner a:hover .banner-text h2 {
          color: #fff; }
        .banner .right .box-banner a:hover .banner-text span {
          color: #fff; }
      .banner .right .box-banner a:hover img {
        -webkit-filter: brightness(60%); }

.banner-slider {
  /********************
	*****Slide effect
	**********************/
  /*---------- INDICATORS CONTROL ----------*/
  /*---------- SLIDE CAPTION ----------*/ }
  .banner-slider .bs-slider {
    /*overflow: hidden;
		max-height: 800px;
		@media (max-width:767px) {
			height: 430px;
			.item {
				overflow: hidden;				
				img {
					height: 430px;
				}
			}
		}
		position: relative;
		background: #000000;*/ }
  .banner-slider .bs-slider:hover {
    cursor: default;
    /*cursor: -moz-grab;
		cursor: -webkit-grab;*/ }
  .banner-slider .bs-slider:active {
    /*cursor: -moz-grabbing;
		cursor: -webkit-grabbing;*/ }
  .banner-slider .bs-slider .bs-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); }
  .banner-slider .bs-slider > .carousel-inner > .item > img,
  .banner-slider .bs-slider > .carousel-inner > .item > a > img {
    margin: auto;
    width: 100% !important;
    /*@media (max-width:993px) {
			width: auto !important;
			max-width: inherit !important;
		}*/ }
  .banner-slider .fade {
    opacity: 1; }
  .banner-slider .fade .item {
    top: 0;
    z-index: 1;
    opacity: 0;
    width: 100%;
    position: absolute;
    left: 0 !important;
    display: block !important;
    -webkit-transition: opacity ease-in-out 1s;
    -moz-transition: opacity ease-in-out 1s;
    -ms-transition: opacity ease-in-out 1s;
    -o-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s; }
  .banner-slider .fade .item:first-child {
    top: auto;
    position: relative; }
  .banner-slider .fade .item.active {
    opacity: 1;
    z-index: 2;
    -webkit-transition: opacity ease-in-out 1s;
    -moz-transition: opacity ease-in-out 1s;
    -ms-transition: opacity ease-in-out 1s;
    -o-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s; }
  .banner-slider .indicators-line > .carousel-indicators {
    right: 0%;
    bottom: 0%;
    left: auto;
    width: 90%;
    height: 20px;
    font-size: 0;
    overflow-x: auto;
    text-align: right;
    overflow-y: hidden;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 1px;
    white-space: nowrap; }
  .banner-slider .indicators-line > .carousel-indicators li {
    padding: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    text-indent: 0;
    overflow: hidden;
    text-align: left;
    position: relative;
    letter-spacing: 1px;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-right: 5px;
    -webkit-transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99);
    transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99);
    z-index: 10;
    cursor: pointer; }
  .banner-slider .indicators-line > .carousel-indicators li:last-child {
    margin-right: 0; }
  .banner-slider .indicators-line > .carousel-indicators .active {
    margin: 1px 5px 1px 1px;
    box-shadow: 0 0 0 2px #d51125;
    background-color: transparent;
    position: relative;
    -webkit-transition: box-shadow 0.3s ease;
    -moz-transition: box-shadow 0.3s ease;
    -o-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; }
  .banner-slider .indicators-line > .carousel-indicators .active:before {
    transform: scale(0.5);
    background-color: #d51125;
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; }
  .banner-slider .slide_style_left {
    text-align: left !important; }
  .banner-slider .slide-text {
    right: 0;
    margin: auto;
    padding: 10px;
    position: absolute;
    text-align: left;
    padding: 10px 85px; }
    @media (min-width: 1560px) {
      .banner-slider .slide-text {
        left: 6%;
        top: 16%; } }
    @media (min-width: 1200px) and (max-width: 1559px) {
      .banner-slider .slide-text {
        left: 1%;
        top: 9%; } }
    @media (min-width: 768px) and (max-width: 1199px) {
      .banner-slider .slide-text {
        left: 1%;
        top: 7%; } }
    @media (max-width: 767px) {
      .banner-slider .slide-text {
        left: 1%;
        top: 7%; } }
    @media (max-width: 767px) {
      .banner-slider .slide-text {
        padding: 10px 20px; } }
    .banner-slider .slide-text .line-red {
      border-left: 10px solid #d51125;
      padding-left: 20px;
      padding-top: 10px;
      padding-bottom: 15px; }
      .banner-slider .slide-text .line-red a, .banner-slider .slide-text .line-red a:focus {
        text-decoration: none; }
        .banner-slider .slide-text .line-red a p, .banner-slider .slide-text .line-red a:focus p {
          font-family: "Oswald-Medium";
          text-transform: uppercase;
          color: #fff;
          line-height: 1.4;
          text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6); }
        .banner-slider .slide-text .line-red a .btn-link, .banner-slider .slide-text .line-red a #div-stock-content > div .box-product .box-product-info .more-info, #div-stock-content > div .box-product .box-product-info .banner-slider .slide-text .line-red a .more-info, .banner-slider .slide-text .line-red a .DetailViewTwelve #btnSendMail, .DetailViewTwelve .banner-slider .slide-text .line-red a #btnSendMail, .banner-slider .slide-text .line-red a .btn-enquiry, .banner-slider .slide-text .line-red a .container-detailview12 #btnSendMail, .container-detailview12 .banner-slider .slide-text .line-red a #btnSendMail, .banner-slider .slide-text .line-red a:focus .btn-link, .banner-slider .slide-text .line-red a:focus #div-stock-content > div .box-product .box-product-info .more-info, #div-stock-content > div .box-product .box-product-info .banner-slider .slide-text .line-red a:focus .more-info, .banner-slider .slide-text .line-red a:focus .DetailViewTwelve #btnSendMail, .DetailViewTwelve .banner-slider .slide-text .line-red a:focus #btnSendMail, .banner-slider .slide-text .line-red a:focus .btn-enquiry, .banner-slider .slide-text .line-red a:focus .container-detailview12 #btnSendMail, .container-detailview12 .banner-slider .slide-text .line-red a:focus #btnSendMail {
          margin-top: 10px;
          background: #d51125 !important;
          color: #fff !important;
          border: 2px solid #d51125 !important; }
      .banner-slider .slide-text .line-red a:hover {
        text-decoration: none; }
        .banner-slider .slide-text .line-red a:hover .btn-link, .banner-slider .slide-text .line-red a:hover #div-stock-content > div .box-product .box-product-info .more-info, #div-stock-content > div .box-product .box-product-info .banner-slider .slide-text .line-red a:hover .more-info, .banner-slider .slide-text .line-red a:hover .DetailViewTwelve #btnSendMail, .DetailViewTwelve .banner-slider .slide-text .line-red a:hover #btnSendMail, .banner-slider .slide-text .line-red a:hover .btn-enquiry, .banner-slider .slide-text .line-red a:hover .container-detailview12 #btnSendMail, .container-detailview12 .banner-slider .slide-text .line-red a:hover #btnSendMail {
          background: #fff !important;
          color: #d51125 !important;
          border: 2px solid #d51125 !important; }
  .banner-slider .slide-text > h2 {
    font-family: "Oswald-Light";
    color: #575556;
    font-style: normal;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    display: inline; }
  @media (min-width: 1560px) {
    .banner-slider .slide-text > h2 {
      font-size: 60px;
      line-height: 1.6em; }
      .banner-slider .slide-text > h2 > span {
        padding: 0em;
        box-shadow: 0.3em 0 0 rgba(246, 246, 246, 0.9), -0.3em 0 0 rgba(246, 246, 246, 0.9);
        background-color: #f6f6f6;
        background-color: rgba(246, 246, 246, 0.9); }
    .banner-slider .line-red {
      margin-left: -19px;
      margin-top: 30px;
      width: 60%; }
      .banner-slider .line-red p {
        font-size: 30px; } }
  @media (min-width: 1200px) and (max-width: 1559px) {
    .banner-slider .slide-text > h2 {
      font-size: 50px;
      line-height: 1.6em; }
      .banner-slider .slide-text > h2 > span {
        padding: 0em;
        box-shadow: 0.3em 0 0 rgba(246, 246, 246, 0.9), -0.3em 0 0 rgba(246, 246, 246, 0.9);
        background-color: #f6f6f6;
        background-color: rgba(246, 246, 246, 0.9); }
    .banner-slider .line-red {
      margin-left: -17px;
      margin-top: 30px;
      width: 60%; }
      .banner-slider .line-red p {
        font-size: 24px; } }
  @media (min-width: 993px) and (max-width: 1199px) {
    .banner-slider .line-red {
      width: 80%; } }
  @media (min-width: 768px) and (max-width: 1199px) {
    .banner-slider .slide-text > h2 {
      font-size: 40px;
      line-height: 1.6em; }
      .banner-slider .slide-text > h2 > span {
        padding: 0em;
        box-shadow: 0.3em 0 0 rgba(246, 246, 246, 0.9), -0.3em 0 0 rgba(246, 246, 246, 0.9);
        background-color: #f6f6f6;
        background-color: rgba(246, 246, 246, 0.9); }
    .banner-slider .line-red {
      margin-left: -14px;
      margin-top: 10px; }
      .banner-slider .line-red p {
        font-size: 24px; } }
  @media (max-width: 767px) {
    .banner-slider .slide-text > h2 {
      font-size: 32px;
      line-height: 1.6em; }
      .banner-slider .slide-text > h2 > span {
        padding: 0em;
        box-shadow: 0.3em 0 0 rgba(246, 246, 246, 0.9), -0.3em 0 0 rgba(246, 246, 246, 0.9);
        background-color: #f6f6f6;
        background-color: rgba(246, 246, 246, 0.9); }
    .banner-slider .line-red {
      margin-left: -10px;
      margin-top: 10px; }
      .banner-slider .line-red p {
        font-size: 20px; } }
  @media (max-width: 400px) {
    .banner-slider .slide-text > h2 {
      font-size: 30px; }
    .banner-slider .line-red p {
      font-size: 18px; } }

footer .sign-class {
  background: url("../../Content/images/footer_bg1.jpg") top center no-repeat #ac192d;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 40px; }
  footer .sign-class .text-class {
    font-family: "Oswald-Medium";
    font-size: 28px;
    line-height: 2.4; }
    @media (min-width: 768px) {
      footer .sign-class .text-class {
        text-align: right;
        font-size: 28px; } }
    @media (max-width: 767px) {
      footer .sign-class .text-class {
        text-align: center;
        font-size: 22px; } }
  footer .sign-class .newsletter-class form {
    margin-top: 10px; }
  footer .sign-class .newsletter-class .form-control {
    padding: 18px 40px 18px 20px;
    background: #fff;
    border: 0;
    border-radius: 25px !important;
    height: 42px; }
  footer .sign-class .newsletter-class .btn-subscribe {
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent; }
    footer .sign-class .newsletter-class .btn-subscribe button {
      background: #1b1d1f;
      color: #fff;
      padding: 11px 20px;
      text-decoration: none;
      border-radius: 25px;
      border: 0;
      outline: none;
      margin-left: -35px;
      position: relative;
      z-index: 9; }
  footer .sign-class .newsletter-class img {
    border-radius: 20px; }

footer .menu-footer {
  background: url("../../Content/images/footer_bg.png") center center no-repeat #373737;
  color: #fff;
  border-top: 9px solid #ac192d;
  padding-top: 35px;
  padding-bottom: 40px;
  margin-top: 15px; }
  footer .menu-footer .icon-fa i {
    padding: 5px;
    font-size: 30px;
    margin-left: 10px;
    margin-right: 10px; }
  footer .menu-footer ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    margin-top: 25px; }
    @media (min-width: 768px) {
      footer .menu-footer ul {
        display: -webkit-inline-box; } }
    @media (max-width: 767px) {
      footer .menu-footer ul {
        text-align: center; }
        footer .menu-footer ul li {
          margin-top: 10px;
          margin-bottom: 10px; } }
    footer .menu-footer ul li {
      margin-left: 20px;
      margin-right: 20px; }

footer .copy-class {
  background: #1b1d1f;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px; }

footer .info-class {
  background: #fff; }
  @media (min-width: 993px) {
    footer .info-class {
      width: 445px;
      position: relative;
      margin-top: -317px;
      margin-left: 8px;
      padding: 30px 5px; } }
  @media (min-width: 768px) and (max-width: 992px) {
    footer .info-class {
      margin-left: 25%; } }
  @media (max-width: 992px) {
    footer .info-class {
      padding-top: 40px;
      padding-bottom: 45px; } }
  footer .info-class h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-family: "Oswald-Medium";
    font-size: 32px; }
  footer .info-class p i {
    width: 30px;
    font-size: 24px; }
  footer .info-class a, footer .info-class a:focus {
    color: #1b1d1f; }
  footer .info-class a:hover {
    color: #ac192d; }
  footer .info-class a, footer .info-class a:focus, footer .info-class a:hover {
    text-decoration: none; }
  footer .info-class .btn-link, footer .info-class #div-stock-content > div .box-product .box-product-info .more-info, #div-stock-content > div .box-product .box-product-info footer .info-class .more-info, footer .info-class .DetailViewTwelve #btnSendMail, .DetailViewTwelve footer .info-class #btnSendMail, footer .info-class .btn-enquiry, footer .info-class .container-detailview12 #btnSendMail, .container-detailview12 footer .info-class #btnSendMail {
    margin-top: 20px; }

.btn-link, #div-stock-content > div .box-product .box-product-info .more-info, .DetailViewTwelve #btnSendMail, .btn-enquiry, .container-detailview12 #btnSendMail, .btn-link:focus, #div-stock-content > div .box-product .box-product-info .more-info:focus, .DetailViewTwelve #btnSendMail:focus, .btn-enquiry:focus, .container-detailview12 #btnSendMail:focus {
  text-align: center;
  font-family: "Oswald-Medium";
  background: transparent !important;
  color: #ac192d !important;
  padding: 11px 32px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 25px;
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  min-width: 180px;
  border: 1px solid #ac192d; }

.btn-link:hover, .vehicle-class a:hover span.btn-link, .vehicle-class a:hover #div-stock-content > div .box-product .box-product-info span.more-info, #div-stock-content > div .box-product .box-product-info .vehicle-class a:hover span.more-info, .vehicle-class a:hover .DetailViewTwelve span#btnSendMail, .DetailViewTwelve .vehicle-class a:hover span#btnSendMail, .vehicle-class a:hover span.btn-enquiry, .vehicle-class a:hover .container-detailview12 span#btnSendMail, .container-detailview12 .vehicle-class a:hover span#btnSendMail, #div-stock-content > div .box-product .box-product-info .more-info:hover, .DetailViewTwelve #btnSendMail:hover, .btn-enquiry:hover, .container-detailview12 #btnSendMail:hover {
  background: #ac192d !important;
  color: #fff !important;
  text-decoration: none; }

.btn-link1, .banner .right .box-banner a .banner-text span, .banner .right .box-banner a:focus .banner-text span, .btn-link1:focus, .banner .right .box-banner a .banner-text span:focus {
  text-align: center;
  font-family: "Oswald-Medium";
  background: #ac192d !important;
  color: #fff !important;
  padding: 11px 32px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 25px;
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  min-width: 180px; }

.btn-link1:hover, .banner .right .box-banner a .banner-text span:hover, .banner .right .box-banner a:hover .banner-text span {
  background: #ac192d !important;
  color: #fff !important;
  text-decoration: none; }

.btn-text, footer .menu-footer a, footer .copy-class a, footer .copy-class a:focus, .btn-text:focus, footer .menu-footer a:focus, footer .copy-class a:focus {
  color: #fff;
  text-decoration: none; }

.btn-text:hover, footer .menu-footer a:hover, footer .copy-class a:hover {
  color: #ac192d;
  text-decoration: none; }

.line1 {
  width: 80px;
  height: 1px;
  text-align: center;
  background: #ac192d;
  border-top: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  display: -webkit-inline-box; }

.line2 {
  width: 80px;
  height: 3px;
  text-align: center;
  background: #ac192d;
  border-top: 0;
  margin-top: 10px;
  margin-bottom: 15px;
  display: -webkit-inline-box; }

#btnTopPages {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 999;
  background: #ac192d; }
  #btnTopPages a, #btnTopPages a:focus {
    color: #fff !important;
    text-decoration: inherit;
    background: #ac192d;
    padding: 5px 7px; }
  #btnTopPages a:hover {
    color: #fff !important;
    text-decoration: inherit;
    background: #ac192d; }

.box-product-specifications {
  display: none; }

.css-view19 .container, .DetailViewTwelve .container {
  max-width: 1350px;
  width: 100%; }

.frm-view19 {
  background: #1b1d1f;
  float: left;
  width: 100%;
  border-radius: 4px;
  padding-top: 15px; }
  .frm-view19 > .col-lg-12 {
    background: rgba(0, 0, 0, 0.2); }
  .frm-view19 .form-control {
    background: #f0f2f5;
    color: #1b1d1f;
    outline: none; }
  .frm-view19 .countVehicles {
    color: #fff;
    font-size: 18px; }
    .frm-view19 .countVehicles b {
      font-size: 24px; }
  .frm-view19 .titleCurrent {
    color: #fff;
    font-size: 18px;
    text-align: right;
    line-height: 2; }

@media (max-width: 767px) {
  .frm-view19 .titleCurrent {
    text-align: left; } }

#div-stock-content > div .box-product {
  background: #f0f2f5;
  display: block;
  margin-bottom: 30px;
  color: #1b1d1f;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  #div-stock-content > div .box-product img {
    display: initial; }
  #div-stock-content > div .box-product h3 {
    font-family: "Oswald-Medium";
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px;
    font-size: 22px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2; }
  #div-stock-content > div .box-product .box-product-specifications {
    background: #f3f3f3;
    padding: 10px 10px 0px 10px;
    height: 65px; }
    #div-stock-content > div .box-product .box-product-specifications .col-xs-3 {
      padding-left: 10px;
      padding-right: 10px;
      font-size: 13px; }
      #div-stock-content > div .box-product .box-product-specifications .col-xs-3 p {
        margin-bottom: 0; }
  #div-stock-content > div .box-product .box-product-description {
    font-size: 15px;
    line-height: 1.5;
    padding: 0 15px;
    margin: 5px 0 15px 0;
    display: -webkit-box;
    height: 70px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; }
  #div-stock-content > div .box-product .box-product-price {
    padding: 0 15px 15px 15px;
    text-align: left; }
    #div-stock-content > div .box-product .box-product-price .cl-price {
      line-height: 1.2; }
      #div-stock-content > div .box-product .box-product-price .cl-price h4 {
        font-family: "Oswald-Medium";
        margin-bottom: 0;
        margin-top: 0;
        font-size: 24px; }
      #div-stock-content > div .box-product .box-product-price .cl-price span {
        font-size: 13px; }
  #div-stock-content > div .box-product .box-product-info .more-info {
    text-align: center;
    display: block;
    padding: 10px; }

#div-stock-content > div .box-product-hover:hover {
  -moz-box-shadow: 0 0 5px #bbb;
  -webkit-box-shadow: 0 0 5px #bbb;
  box-shadow: 0 0 5px #bbb; }
  #div-stock-content > div .box-product-hover:hover .box-product-info .more-info {
    background: #ac192d !important;
    color: #fff !important;
    box-shadow: inset 0 0px 0px transparent; }

#div-stock-content > div a:hover, #div-stock-content > div a:focus {
  text-decoration: initial; }

.css-view19 input.btn-success, .js-search input.btn-success {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background: #ac192d;
  border-radius: 25px;
  outline: none; }

.css-view19 input.btn-success:hover, .js-search input.btn-success:hover {
  opacity: 0.85; }

ul.pagination {
  margin-top: 0; }
  ul.pagination li input {
    background-color: #f3f3f3;
    color: #ac192d;
    float: left;
    padding: 5px 10px; }
  ul.pagination li.active input {
    background-color: #ac192d;
    color: #fff;
    float: left;
    padding: 5px 10px; }

.DetailViewTwelve {
  /*@extend .main;*/
  padding-top: 60px;
  padding-bottom: 50px; }
  .DetailViewTwelve .product-title {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px; }
    .DetailViewTwelve .product-title h2 {
      font-family: "Oswald-Medium";
      margin-top: 14px;
      float: left;
      font-size: 24px;
      color: #1b1d1f; }
    .DetailViewTwelve .product-title .cl_search_results {
      background: #ac192d;
      padding-top: 12px;
      padding-bottom: 12px;
      text-align: center;
      color: #fff;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .DetailViewTwelve .product-title .cl_search_results input {
        color: #fff; }
    .DetailViewTwelve .product-title .cl_search_results:hover {
      background: #ac192d; }
    .DetailViewTwelve .product-title .product-header {
      float: right; }
      .DetailViewTwelve .product-title .product-header .product-price {
        font-family: "Oswald-Medium";
        font-weight: normal;
        font-size: 26px;
        margin-top: 5px;
        margin-bottom: 5px;
        display: inline-block;
        color: #ac192d; }
      .DetailViewTwelve .product-title .product-header .drive-away-label {
        font-size: 12px; }
  .DetailViewTwelve .widget.form {
    background: #e0e0e0;
    padding: 15px;
    margin-bottom: 30px; }
    .DetailViewTwelve .widget.form h3 {
      font-family: "Oswald-Medium";
      font-weight: normal;
      border-bottom: 0;
      font-size: 30px;
      border-bottom: 0;
      margin-top: 5px;
      padding-bottom: 5px; }
    .DetailViewTwelve .widget.form > label {
      font-weight: inherit;
      line-height: 1.4;
      margin-bottom: 15px; }
  .DetailViewTwelve .product-slider {
    margin-bottom: 20px; }
  .DetailViewTwelve .product-comments {
    margin-bottom: 40px; }
    .DetailViewTwelve .product-comments h3 {
      font-family: "Oswald-Medium";
      background: #e0e0e0;
      font-size: 24px;
      padding: 15px; }
  .DetailViewTwelve #btnSendMail {
    background: #ac192d !important;
    color: #fff !important;
    text-transform: uppercase;
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 18px;
    outline: none; }
  .DetailViewTwelve #btnSendMail:hover {
    background: #ac192d !important;
    color: #fff !important;
    border: 1px solid #ac192d;
    box-shadow: inset 0 0px 0px transparent; }

@media (min-width: 993px) {
  .product-title {
    background: #e0e0e0; }
    .product-title .col-md-4.col-lg-3 {
      float: right; }
      .product-title .col-md-4.col-lg-3 .cl_search_results {
        margin-right: -15px;
        margin-left: 8px; } }

@media (max-width: 992px) {
  .product-title .col-md-8.col-lg-9 {
    background: #e0e0e0;
    display: inline-block;
    width: 100%;
    margin-top: 20px; }
  .product-title .col-md-4.col-lg-3 {
    float: left; }
    .product-title .col-md-4.col-lg-3 .cl_search_results {
      margin-left: -15px;
      padding-left: 15px;
      padding-right: 15px; } }

@media (min-width: 768px) {
  .main-content .tab-content {
    padding: 30px 20px; }
    .main-content .tab-content .frm2-calculator {
      margin: 30px 20%; } }

.main-content .tab-content .vehicle_details_body table tr th {
  font-weight: 500; }

.main-content .tab-content .tab-pane h4 {
  font-family: "Oswald-Medium";
  font-size: 30px;
  text-transform: uppercase; }

.main-content .tab-content .tab-pane .panel-group .panel-heading {
  padding-bottom: 0; }
  .main-content .tab-content .tab-pane .panel-group .panel-heading a {
    padding-left: 10px;
    padding-right: 10px; }
  .main-content .tab-content .tab-pane .panel-group .panel-heading a:hover {
    background: #fbfbfb; }
  .main-content .tab-content .tab-pane .panel-group .panel-heading i {
    margin-right: 10px; }

.main-content ul.nav-tabs {
  border-bottom: 0;
  text-align: center; }
  .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
    background: #e0e0e0;
    background-image: url("../../Content/images/icondetails12.png");
    background-repeat: no-repeat;
    float: left;
    height: 85px; }
    @media (min-width: 768px) {
      .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
        width: 24%;
        margin-left: 0.5%;
        margin-right: 0.5%; } }
    @media (min-width: 768px) and (max-width: 992px) {
      .main-content ul.nav-tabs li a, .main-content ul.nav-tabs li:hover a {
        padding: 0; } }
    @media (max-width: 767px) {
      .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
        width: 49%;
        margin: 0.5%; } }
    .main-content ul.nav-tabs li a, .main-content ul.nav-tabs li a:hover, .main-content ul.nav-tabs li:hover a, .main-content ul.nav-tabs li:hover a:hover {
      background-color: transparent;
      border: 0;
      color: #1b1d1f;
      padding-top: 55px; }
  .main-content ul.nav-tabs li.tabs1, .main-content ul.nav-tabs li.tabs1:hover {
    background-position: center 5px; }
  .main-content ul.nav-tabs li.tabs2, .main-content ul.nav-tabs li.tabs2:hover {
    background-position: center -195px; }
  .main-content ul.nav-tabs li.tabs3, .main-content ul.nav-tabs li.tabs3:hover {
    background-position: center -195px; }
  .main-content ul.nav-tabs li.tabs4, .main-content ul.nav-tabs li.tabs4:hover {
    background-position: center -395px; }
  .main-content ul.nav-tabs li.active {
    background: #ac192d;
    background-image: url("../../Content/images/icondetails12.png");
    background-repeat: no-repeat;
    float: left;
    height: 85px; }
    @media (min-width: 768px) {
      .main-content ul.nav-tabs li.active {
        width: 24%;
        margin-left: 0.5%;
        margin-right: 0.5%; } }
    @media (min-width: 768px) and (max-width: 992px) {
      .main-content ul.nav-tabs li.active a {
        padding: 0; } }
    @media (max-width: 767px) {
      .main-content ul.nav-tabs li.active {
        width: 49%;
        margin: 0.5%; } }
    .main-content ul.nav-tabs li.active a, .main-content ul.nav-tabs li.active a:hover {
      background-color: transparent;
      border: 0;
      color: #fff;
      padding-top: 55px; }
  .main-content ul.nav-tabs li.tabs1.active {
    background-position: center -95px; }
  .main-content ul.nav-tabs li.tabs2.active {
    background-position: center -295px; }
  .main-content ul.nav-tabs li.tabs3.active {
    background-position: center -295px; }
  .main-content ul.nav-tabs li.tabs4.active {
    background-position: center -495px; }

.main-content .panel-group .panel {
  box-shadow: 0 0px 0px transparent;
  border: 0;
  border-radius: 0; }
  .main-content .panel-group .panel .panel-heading {
    background: transparent;
    padding: 0 0 5px 0;
    border: 1px solid #f0f0f0; }
    .main-content .panel-group .panel .panel-heading a {
      display: inline-block;
      width: 100%;
      padding-top: 10px;
      padding-bottom: 10px; }
    .main-content .panel-group .panel .panel-heading a, .main-content .panel-group .panel .panel-heading a:focus, .main-content .panel-group .panel .panel-heading a:hover {
      text-decoration: none; }
    .main-content .panel-group .panel .panel-heading i {
      position: relative;
      margin-top: -30px; }
  .main-content .panel-group .panel > div.panel-collapse.collapse, .main-content .panel-group .panel > div.panel-collapse.collapsing, .main-content .panel-group .panel > div.panel-collapse.collapse.in {
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 2.4; }

.panel-group .panel + .panel {
  margin-top: 10px; }

.tooltip {
  background: #ac192d !important; }

.galleria-container {
  background: #484848 !important; }

.galleria-fullscreen, .galleria-play {
  border-right: 1px solid #2f2f2f !important;
  outline: 1px solid #797979 !important; }

.galleria-container.notouch .galleria-thumblink:hover,
.galleria-container.touch .galleria-thumblink:active,
.galleria-thumblink.open,
.galleria-container.notouch .galleria-fullscreen:hover,
.galleria-container.touch .galleria-fullscreen:active,
.galleria-container.notouch .galleria-play:hover,
.galleria-container.touch .galleria-play:active,
.galleria-container.notouch .galleria-popout:hover,
.galleria-container.touch .galleria-popout:active {
  background-color: #d51125 !important; }

@media (min-width: 1200px) {
  .about-page h3 {
    margin-top: 60px; } }

@media (min-width: 768px) and (max-width: 1199px) {
  .about-page h3 {
    margin-top: 25px;
    font-size: 22px; } }

.about-page h3.top1 {
  margin-top: 0; }

@media (min-width: 993px) {
  .about-page .pull-left > div {
    margin-right: -15px; }
  .about-page .pull-left > .fadeInLeft {
    padding-right: 30px; }
  .about-page .pull-right > div {
    margin-left: -15px; }
  .about-page .pull-right > .fadeInRight {
    padding-left: 30px; } }

@media (max-width: 767px) {
  .about-page {
    text-align: center; }
    .about-page .pull-left, .about-page .pull-right {
      float: none !important; }
      .about-page .pull-left img, .about-page .pull-right img {
        margin-bottom: 40px;
        margin-rop: 20px; } }

.frm-class {
  background: #f0f1f5;
  padding: 20px 30px; }

.frm-calculate {
  background: #f6f7fb;
  margin-top: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: -60px; }
  .frm-calculate h2 {
    margin-top: 0;
    font-size: 46px; }

div.tooltip {
  background: #ac192d !important; }

.frm-finance h3 {
  font-size: 28px; }

.logo-brands {
  margin-bottom: 30px;
  text-align: center; }
  .logo-brands img {
    display: -webkit-inline-box;
    margin-bottom: 20px;
    max-width: 168px; }
  .logo-brands #owl-demo .item {
    padding: 0; }

.parts-page .parts-box a, .parts-page .parts-box a:hover, .parts-page .parts-box a:focus {
  text-decoration: none; }

.old-parts .part-list table tr th, .old-parts .part-list table tr td {
  min-width: 130px;
  padding: 10px 5px;
  font-size: 14px;
  font-family: Arial; }

@media (max-width: 1199px) {
  .old-parts .part-list #list_right tr th {
    display: none; } }

.blog-page .box-lastnews h2 {
  margin-top: 0;
  font-size: 32px; }

.btn-enquiry {
  background: #ac192d !important;
  color: #fff !important;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-size: 18px;
  outline: none; }
  .btn-enquiry:hover {
    background: #ac192d !important;
    color: #fff !important;
    border: 1px solid #ac192d;
    box-shadow: inset 0 0px 0px transparent; }

.container-listview19 .hf-filter {
  display: none;
  color: #fff;
  background-color: #d51125;
  padding: 8px 25px; }
  @media (max-width: 767px) {
    .container-listview19 .hf-filter {
      display: inline-block; } }

.container-listview19 .container-filter-top {
  background: #1b1d1f;
  width: 100%;
  border-radius: 4px;
  padding-top: 15px; }
  .container-listview19 .container-filter-top .div-sortby-1 {
    background-color: rgba(0, 0, 0, 0.25); }
  .container-listview19 .container-filter-top #frm-search-5 .btn-filter {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #d51125;
    border: 1px solid #d51125;
    border-radius: 25px;
    outline: none;
    padding: 7px 12px;
    font-family: "Raleway-Regular";
    font-size: 17px; }
    .container-listview19 .container-filter-top #frm-search-5 .btn-filter:hover {
      background-color: #ac192d; }
  .container-listview19 .container-filter-top #frm-sortby-1 .count-vehicles, .container-listview19 .container-filter-top #frm-sortby-1 .title-current {
    color: #fff; }

.container-listview19 .vehicleList {
  background-color: #f0f2f5;
  box-shadow: none; }
  .container-listview19 .vehicleList .vehicleList-title h3 {
    font-family: "Oswald-Medium";
    padding: 15px 15px 0 15px !important;
    font-size: 18px !important;
    height: 75px !important;
    line-height: 1.2;
    color: #d51125; }
  .container-listview19 .vehicleList .vehicleList-info .vehicleList-specifications {
    display: none; }
  .container-listview19 .vehicleList .vehicleList-info .vehicleList-description {
    height: 70px;
    font-size: 15px; }
  .container-listview19 .vehicleList .vehicleList-info .vehicleList-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
    .container-listview19 .vehicleList .vehicleList-info .vehicleList-price .listButton-class {
      display: none; }
    .container-listview19 .vehicleList .vehicleList-info .vehicleList-price .price-class {
      height: 45px; }
      .container-listview19 .vehicleList .vehicleList-info .vehicleList-price .price-class h4 {
        font-family: "Oswald-Medium";
        margin-bottom: 0;
        margin-top: 0;
        font-size: 24px;
        font-weight: 100; }
    .container-listview19 .vehicleList .vehicleList-info .vehicleList-price .btn-moreDetails {
      background: transparent;
      color: #ac192d;
      border: 1px solid #ac192d;
      text-decoration: none;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
      text-align: center;
      display: block;
      font-size: 18px;
      font-family: "Oswald-Medium";
      padding: 7px 40px;
      border-radius: 25px; }
      .container-listview19 .vehicleList .vehicleList-info .vehicleList-price .btn-moreDetails:hover {
        background-color: #ac192d;
        color: #fff; }

.container-listview19 #frm-pagination-1 .justify-content-md-center p {
  display: none; }

.container-listview19 #frm-pagination-1 .pagination li.active a {
  background-color: #ac192d;
  color: #fff;
  border: 1px solid #ac192d; }

.container-listview19 #frm-pagination-1 .pagination li a {
  color: #ac192d; }

.container-detailview12 {
  padding-bottom: 50px; }
  .container-detailview12 > .container {
    max-width: 1350px;
    width: 100%; }
  .container-detailview12 .product-title {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px; }
    .container-detailview12 .product-title .title-vehInfo {
      font-family: "Oswald-Medium";
      margin-top: 14px;
      float: left;
      font-size: 24px;
      color: #1b1d1f; }
    .container-detailview12 .product-title h2 {
      font-family: "Oswald-Medium";
      margin-top: 14px;
      float: left;
      font-size: 24px;
      color: #1b1d1f; }
    .container-detailview12 .product-title .cl_search_results {
      background: #ac192d;
      text-align: center;
      color: #fff;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
      .container-detailview12 .product-title .cl_search_results a {
        color: #fff;
        background-color: #ac192d; }
        .container-detailview12 .product-title .cl_search_results a:hover {
          background: #ac192d; }
    .container-detailview12 .product-title .product-header {
      float: right; }
      .container-detailview12 .product-title .product-header .product-price {
        font-family: "Oswald-Medium";
        font-weight: normal;
        font-size: 26px;
        margin-top: 5px;
        margin-bottom: 5px;
        display: inline-block;
        color: #d51125; }
      .container-detailview12 .product-title .product-header .drive-away-label {
        font-size: 12px; }
  .container-detailview12 .widget.form {
    background: #e0e0e0;
    padding: 15px;
    margin-bottom: 30px; }
    .container-detailview12 .widget.form h3 {
      font-family: "Oswald-Medium";
      font-weight: normal;
      border-bottom: 0;
      font-size: 30px;
      border-bottom: 0;
      margin-top: 5px;
      padding-bottom: 5px; }
    .container-detailview12 .widget.form > label {
      font-weight: inherit;
      line-height: 1.4;
      margin-bottom: 15px; }
    .container-detailview12 .widget.form label {
      font-weight: bold; }
  .container-detailview12 .product-slider {
    margin-bottom: 20px; }
  .container-detailview12 .product-comments {
    margin-bottom: 40px; }
    .container-detailview12 .product-comments h3 {
      font-family: "Oswald-Medium";
      background: #e0e0e0;
      font-size: 24px;
      padding: 15px; }
  .container-detailview12 #btnSendMail {
    background: #ac192d !important;
    color: #fff !important;
    text-transform: uppercase;
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 18px;
    outline: none;
    border-radius: 20px !important;
    border: 1px solid #ac192d !important; }
  .container-detailview12 #btnSendMail:hover {
    background: #ac192d !important;
    color: #fff !important;
    border: 1px solid #ac192d;
    box-shadow: inset 0 0px 0px transparent; }
  .container-detailview12 #galleria .galleria-bar .galleria-fullscreen:hover, .container-detailview12 #galleria .galleria-bar .galleria-play.pause:hover {
    background-color: #d51125 !important; }

@media (min-width: 993px) {
  .product-title {
    background: #e0e0e0; }
    .product-title .col-md-4.col-lg-3 {
      float: right; }
      .product-title .col-md-4.col-lg-3 .cl_search_results {
        margin-right: -15px;
        margin-left: 8px; } }

@media (max-width: 992px) {
  .product-title .col-md-8.col-lg-9 {
    background: #e0e0e0;
    display: inline-block;
    width: 100%;
    margin-top: 20px; }
  .product-title .col-md-4.col-lg-3 {
    float: left; }
    .product-title .col-md-4.col-lg-3 .cl_search_results {
      margin-left: -15px;
      padding-left: 15px;
      padding-right: 15px; } }

@media (min-width: 768px) {
  .main-content .tab-content {
    padding: 30px 20px; }
    .main-content .tab-content .frm2-calculator {
      margin: 30px 20%; } }

.main-content .tab-content .vehicle_details_body table tr th {
  font-weight: 500; }

.main-content .tab-content .tab-pane h4 {
  font-family: "Oswald-Medium";
  font-size: 30px;
  text-transform: uppercase; }

.main-content .tab-content .tab-pane .panel-group .panel-heading {
  padding-bottom: 0; }
  .main-content .tab-content .tab-pane .panel-group .panel-heading a {
    padding-left: 10px;
    padding-right: 10px; }
  .main-content .tab-content .tab-pane .panel-group .panel-heading a:hover {
    background: #fbfbfb; }
  .main-content .tab-content .tab-pane .panel-group .panel-heading i {
    margin-right: 10px; }

.main-content ul.nav-tabs {
  border-bottom: 0;
  text-align: center; }
  .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
    background: #e0e0e0;
    background-image: url("../../Content/images/icondetails12.png");
    background-repeat: no-repeat;
    float: left;
    height: 85px; }
    @media (min-width: 768px) {
      .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
        width: 24%;
        margin-left: 0.5%;
        margin-right: 0.5%; } }
    @media (min-width: 768px) and (max-width: 992px) {
      .main-content ul.nav-tabs li a, .main-content ul.nav-tabs li:hover a {
        padding: 0; } }
    @media (max-width: 767px) {
      .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
        width: 49%;
        margin: 0.5%; } }
    .main-content ul.nav-tabs li a, .main-content ul.nav-tabs li a:hover, .main-content ul.nav-tabs li:hover a, .main-content ul.nav-tabs li:hover a:hover {
      background-color: transparent;
      border: 0;
      color: #1b1d1f;
      padding-top: 55px; }
  .main-content ul.nav-tabs li.tabs1, .main-content ul.nav-tabs li.tabs1:hover {
    background-position: center 5px; }
  .main-content ul.nav-tabs li.tabs2, .main-content ul.nav-tabs li.tabs2:hover {
    background-position: center -195px; }
  .main-content ul.nav-tabs li.tabs3, .main-content ul.nav-tabs li.tabs3:hover {
    background-position: center -195px; }
  .main-content ul.nav-tabs li.tabs4, .main-content ul.nav-tabs li.tabs4:hover {
    background-position: center -395px; }
  .main-content ul.nav-tabs li.active {
    background: #ac192d;
    background-image: url("../../Content/images/icondetails12.png");
    background-repeat: no-repeat;
    float: left;
    height: 85px; }
    @media (min-width: 768px) {
      .main-content ul.nav-tabs li.active {
        width: 24%;
        margin-left: 0.5%;
        margin-right: 0.5%; } }
    @media (min-width: 768px) and (max-width: 992px) {
      .main-content ul.nav-tabs li.active a {
        padding: 0; } }
    @media (max-width: 767px) {
      .main-content ul.nav-tabs li.active {
        width: 49%;
        margin: 0.5%; } }
    .main-content ul.nav-tabs li.active a, .main-content ul.nav-tabs li.active a:hover {
      background-color: #ac192d !important;
      border: 0;
      color: #fff;
      padding-top: 55px;
      padding-bottom: 17px; }
  .main-content ul.nav-tabs li.tabs1.active {
    background-position: center -95px; }
  .main-content ul.nav-tabs li.tabs2.active {
    background-position: center -295px; }
  .main-content ul.nav-tabs li.tabs3.active {
    background-position: center -295px; }
  .main-content ul.nav-tabs li.tabs4.active {
    background-position: center -495px; }

.main-content .panel-group .panel {
  box-shadow: 0 0px 0px transparent;
  border: 0;
  border-radius: 0; }
  .main-content .panel-group .panel .panel-heading {
    background: transparent;
    padding: 0 0 5px 0;
    border: 1px solid #f0f0f0; }
    .main-content .panel-group .panel .panel-heading a {
      display: inline-block;
      width: 100%;
      padding-top: 10px;
      padding-bottom: 10px; }
    .main-content .panel-group .panel .panel-heading a, .main-content .panel-group .panel .panel-heading a:focus, .main-content .panel-group .panel .panel-heading a:hover {
      text-decoration: none; }
    .main-content .panel-group .panel .panel-heading i {
      position: relative;
      margin-top: -30px; }
  .main-content .panel-group .panel > div.panel-collapse.collapse, .main-content .panel-group .panel > div.panel-collapse.collapsing, .main-content .panel-group .panel > div.panel-collapse.collapse.in {
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 2.4; }

.panel-group .panel + .panel {
  margin-top: 10px; }

.models-farm h2 {
  color: #d51125; }
  .models-farm h2 span {
    color: #000; }

.models-farm .filter-list ul.list-menu {
  background: #fff; }
  .models-farm .filter-list ul.list-menu li a, .models-farm .filter-list ul.list-menu li a:focus {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #1b1d1f;
    margin-bottom: -1px;
    max-height: inherit !important; }
  .models-farm .filter-list ul.list-menu li.active a, .models-farm .filter-list ul.list-menu li.active a:focus, .models-farm .filter-list ul.list-menu li.active a:hover {
    color: #fff;
    background: #d51125; }
    .models-farm .filter-list ul.list-menu li.active a i, .models-farm .filter-list ul.list-menu li.active a:focus i, .models-farm .filter-list ul.list-menu li.active a:hover i {
      color: #fff; }
  .models-farm .filter-list ul.list-menu li.active ul li a, .models-farm .filter-list ul.list-menu li.active ul li a:focus {
    background-color: rgba(172, 25, 45, 0.075);
    color: #000;
    margin-bottom: -1px !important; }
    .models-farm .filter-list ul.list-menu li.active ul li a:hover, .models-farm .filter-list ul.list-menu li.active ul li a:focus:hover {
      background-color: #fff;
      color: #d51125; }
  .models-farm .filter-list ul.list-menu li.active ul li.active a, .models-farm .filter-list ul.list-menu li.active ul li.active a:focus, .models-farm .filter-list ul.list-menu li.active ul li.active a:hover {
    color: #d51125; }
  .models-farm .filter-list ul.list-menu li.active ul li a[aria-expanded="true"] {
    color: #d51125; }
  .models-farm .filter-list ul.list-menu li.active ul li a[aria-expanded="false"] {
    color: #000; }

.models-farm .models-list .nav-tabs li a {
  background-color: #d51125;
  color: #fff; }

.models-farm .models-list .nav-tabs li.active a {
  background-color: #d51125; }

.models-farm .models-list .box-models a, .models-farm .models-list .box-models a:focus {
  color: #000; }

.models-farm .models-list .box-models a:hover {
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  color: #d51125; }

.models-farm .models-list .box-models .box-list {
  color: #000; }
  .models-farm .models-list .box-models .box-list h4 {
    font-family: "Oswald-Medium"; }

.models-details-page .container {
  width: 100%;
  max-width: 1350px; }

.models-details-page .models-details-video h2 {
  margin-top: 0;
  margin-bottom: 30px; }

.models-details-page #nm-intro {
  background: url("../../Content/images/intro.png") no-repeat center bottom #fff; }
  .models-details-page #nm-intro .nm-title {
    color: #d51125; }
  .models-details-page #nm-intro h3 {
    font-size: 24px; }
  .models-details-page #nm-intro .nm-heading {
    color: #1b1d1f; }
  .models-details-page #nm-intro p {
    color: #1b1d1f;
    font-size: 18px !important; }
  .models-details-page #nm-intro .options {
    background-color: rgba(0, 0, 0, 0.7); }
    .models-details-page #nm-intro .options .link .small-arrow {
      background: url("../../Content/images/little-arrow.svg") no-repeat center center #fff; }
    .models-details-page #nm-intro .options .link .small-play {
      background: url("../../Content/images/play-button.svg") no-repeat center center #fff; }
    .models-details-page #nm-intro .options .link span {
      color: #FFFFFF; }
    .models-details-page #nm-intro .options .link:hover span {
      color: #d51125; }
    .models-details-page #nm-intro .options h4 {
      color: #fff; }
    .models-details-page #nm-intro .options .pdf {
      color: #fff; }
      .models-details-page #nm-intro .options .pdf div {
        background: url("../../Content/images/pdf-icon.svg") center left no-repeat; }
      .models-details-page #nm-intro .options .pdf:hover {
        color: #d51125; }
    .models-details-page #nm-intro .options .get-view {
      border-right: 1px solid white; }
  .models-details-page #nm-intro .form-title {
    color: #fff;
    background-color: #d51125; }
    .models-details-page #nm-intro .form-title span {
      color: #fff; }
  .models-details-page #nm-intro .form-shell {
    background-color: #fff; }
    .models-details-page #nm-intro .form-shell label {
      color: #000; }
    .models-details-page #nm-intro .form-shell .noticed a {
      color: #d51125; }

.models-details-page .nm-gallery .style-3 {
  color: #1b1d1f; }

.models-details-page .grey-strip .text-body {
  background: #f0f0f0; }

.models-details-page #nm-specs .specs-table > thead > tr > th {
  border: 1px solid #e0e0e0; }

.models-details-page #nm-specs .specs-table > tbody > tr > td {
  border: 1px solid #e0e0e0; }

@media (max-width: 768px) {
  .content-filter-farm {
    background: rgba(0, 0, 0, 0.5); }
    .content-filter-farm .filter-list {
      background: #fff; } }

.btn-filter-farm {
  background-color: #d51125;
  border: 2px solid #fff;
  color: #fff; }

.btn-direction {
  text-align: center;
  font-family: "Oswald-Medium";
  background: transparent !important;
  color: #ac192d !important;
  padding: 11px 32px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 25px;
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  min-width: 180px;
  border: 1px solid #ac192d; }
  .btn-direction :hover {
    background: #ac192d !important;
    color: #fff !important;
    text-decoration: none; }

/* ====================== */
/* Banner base */
/* ====================== */
/*.banner 
{
	background-size: cover;
	padding-top: 40px;
	padding-bottom: 80px;
	background-color: #333;
	height: 220px;
}*/
.banner-small {
  background-size: cover;
  background-color: #333;
  color: white;
  text-align: center;
  text-transform: uppercase; }
  .banner-small h2 {
    color: white !important;
    font-size: 36px !important; }

.banner-with-header {
  background-size: cover;
  padding-top: 0px;
  padding-bottom: 80px;
  background-color: #333;
  height: 300px; }
  .banner-with-header .container {
    padding-top: 59px; }

.banner-with-header-mini {
  background-size: cover;
  padding-top: 0px;
  padding-bottom: 80px;
  background-color: #333;
  height: 200px; }
  .banner-with-header-mini .container {
    padding-top: 109px; }

/* ====================== */
/* Banners */
/* ====================== */
.b-1 {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b1-c.jpg") 0 bottom no-repeat;
  background-position: 26% 54%;
  background-size: cover; }

.b-2 {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b2-c.jpg") 0 bottom no-repeat;
  background-position: 26% 54%;
  background-size: cover; }

.b-3 {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b3-c.jpg") 0 bottom no-repeat;
  background-position: 26% 54%;
  background-size: cover; }

.b-4 {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b4-c.jpg") 0 bottom no-repeat;
  background-position: 26% 54%;
  background-size: cover; }

.b-sample-c {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-sample-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-about-c {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-about-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-HP {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-hondape-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-fendt {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-fendt-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-massey-ferguson {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-massey-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-goldacre {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-goldacres-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-hustler {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-hustler-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-kubota {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-kubota-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-honda {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-honda-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-sam-spreaders {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-sam-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-DA {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-davimac-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-daken {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-delaval-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-GE {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-gerni-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-krone {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-krone-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-iseki {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-iseki-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-fleming {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-fleming-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-vicon {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-vicon-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-rapid-spray {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-rapidspray-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.banner-mchale {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-mchale-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-farmmachinery-c {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-farmmachinery-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-groundscare-c {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b-groundscare-c.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-claas {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/CL-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-orthman {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/OR-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-agrowplow {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/AP-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-amazone {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/AM-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-degelman {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/DE-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-cfmoto {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/CF-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-landboss {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/LB-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-tti {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/TT-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-stoll {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/ST-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-agrifac {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/AF-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-honey-bee {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/HB-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-macdon {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/DM-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-burando-hill {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/BH-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-burder {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/BU-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-morris {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/MO-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-mid-west {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/MW-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-seedhawk {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/SE-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

.b-deutz {
  background: linear-gradient(transparent, transparent), url("../../Content/images/banner-product/DZ-bg.jpg") 0 bottom no-repeat;
  background-position: center center;
  background-size: cover; }

@media (min-width: 768px) {
  /*.banner
	{
		height: 400px;
		.container{
			padding-top: 139px;}
	}

	.banner-small
	{
		background-size: cover;
		background-color: #333;
		height: 242px;
	}
	.banner-with-header-mini
	{
		height: 300px;
		.container{
			padding-top: 139px;}
	}*/
  .b-1 {
    background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b1-b.jpg") 0 bottom no-repeat;
    background-position: 26% 54%;
    background-size: cover; }
  .b-2 {
    background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b2-b.jpg") 0 bottom no-repeat;
    background-position: 26% 54%;
    background-size: cover; }
  .b-3 {
    background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b3-b.jpg") 0 bottom no-repeat;
    background-position: 26% 54%;
    background-size: cover; }
  .b-4 {
    background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b4-b.jpg") 0 bottom no-repeat;
    background-position: 26% 54%;
    background-size: cover; } }

@media (min-width: 1200px) {
  /*.banner
	{
		height: 400px;
		.container
		{padding-top: 79px;}
	}*/
  .banner-small {
    background-size: cover;
    background-color: #333; }
  .b-1 {
    background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b1-a.jpg") 0 bottom no-repeat;
    background-position: 26% 54%;
    background-size: cover; }
  .b-2 {
    background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b2-a.jpg") 0 bottom no-repeat;
    background-position: 26% 54%;
    background-size: cover; }
  .b-3 {
    background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b3-a.jpg") 0 bottom no-repeat;
    background-position: 26% 54%;
    background-size: cover; }
  .b-4 {
    background: linear-gradient(transparent, transparent), url("../../Content/images/banners/b4-a.jpg") 0 bottom no-repeat;
    background-position: 26% 54%;
    background-size: cover; } }

/*-------------------------------- begin menu-mobile ------------------------------------*/
.is-hidden {
  overflow: hidden; }
  .is-hidden .menu-mobile .topNav {
    position: fixed;
    top: 10px; }

.menu-mobile .topNav-toggle, .menu-mobile [hidden], .menu-mobile template {
  display: none; }

.menu-mobile .main.-hp:after, .menu-mobile .mainHeader-scrollDown, .menu-mobile .mainHeader-videoBackground, .menu-mobile .topNav, .menu-mobile .topNav-bannerWrapper:after, .menu-mobile .topNav-inner {
  left: 0;
  right: 0;
  bottom: 0; }

.menu-mobile .darkTheme .mainHeader-intro, .menu-mobile .grid-item, .menu-mobile .headline, .menu-mobile .mainNav-itemTitle, .menu-mobile .newsletter-title, .menu-mobile .section-figcaption {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased; }

.menu-mobile .topNav-logoIndicator, .menu-mobile .topNav-menu:before {
  letter-spacing: .2em;
  text-transform: uppercase; }

.menu-mobile button, .menu-mobile html input[type=button], .menu-mobile input[type=reset], .menu-mobile input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; }

.menu-mobile button[disabled], .menu-mobile html input[disabled] {
  cursor: default; }

.menu-mobile .roundedCta, .menu-mobile .topNav-menu {
  cursor: pointer;
  text-decoration: none; }

.menu-mobile .topNav {
  position: absolute;
  z-index: 990;
  pointer-events: none;
  color: #fff; }
  @media (min-width: 620px) and (max-width: 767px) {
    .menu-mobile .topNav {
      top: 120px; } }
  @media (max-width: 619px) {
    .menu-mobile .topNav {
      top: 164px; } }

.menu-mobile .topNav-inner {
  position: absolute;
  top: 0;
  overflow-y: hidden; }

.menu-mobile .topNav-toggle:checked ~ .topNav-inner {
  overflow-y: scroll; }

.menu-mobile .topNav-bannerWrapper {
  position: relative;
  z-index: 1; }

@media screen and (min-width: 48em) {
  .menu-mobile .topNav-bannerWrapper {
    padding: 0 5rem; } }

@media screen and (min-width: 64em) {
  .menu-mobile .topNav-bannerWrapper {
    padding: 0 5rem; } }

.menu-mobile .topNav-bannerWrapper:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out; }

.menu-mobile .mainHeader-cover, .menu-mobile .mainHeader-intro, .menu-mobile .topNav-backToHome {
  position: relative;
  z-index: 1; }

.menu-mobile .topNav-bannerWrapper.is-scrolled:after {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-bannerWrapper:after {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); }

.menu-mobile .topNav-bannerInner {
  margin: auto;
  display: table;
  width: 100%;
  height: 5rem;
  max-width: 144rem; }

@media screen and (min-width: 48em) {
  .menu-mobile .topNav-bannerInner {
    height: 6rem; } }

@media screen and (min-width: 64em) {
  .menu-mobile .topNav-bannerInner {
    height: 8rem; } }

.menu-mobile .topNav-left, .menu-mobile .topNav-right {
  display: table-cell;
  vertical-align: middle;
  font-size: 0; }

.menu-mobile .topNav-backToHome, .menu-mobile .topNav-logoIndicator, .menu-mobile .topNav-menu, .menu-mobile .topNav-menu:before, .menu-mobile .topNav-menuIcon {
  display: inline-block;
  vertical-align: middle; }

.menu-mobile .topNav-left svg g, .menu-mobile .topNav-right svg g {
  -webkit-transition: stroke .3s ease-out;
  transition: stroke .3s ease-out; }

.menu-mobile .darkTheme .topNav-left svg g, .menu-mobile .darkTheme .topNav-right svg g, .menu-mobile .is-scrolled .topNav-left svg g, .menu-mobile .is-scrolled .topNav-right svg g, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-left svg g, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-right svg g {
  stroke: #fff; }

.menu-mobile .topNav-backToHome {
  text-decoration: none;
  pointer-events: auto; }

.menu-mobile .topNav-backToHome:focus ~ .topNav-logoIndicator, .menu-mobile .topNav-backToHome:hover ~ .topNav-logoIndicator {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.menu-mobile .topNav-logo {
  width: 30px;
  height: 15px; }

@media screen and (min-width: 93.75em) {
  .menu-mobile .topNav-bannerWrapper {
    padding: 0 9rem; }
  .menu-mobile .topNav-logo {
    width: 35px;
    height: 18px; } }

.menu-mobile .topNav-logo path {
  -webkit-transition: fill .3s ease-out;
  transition: fill .3s ease-out; }

.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-logo {
  background-color: transparent; }

.menu-mobile .darkTheme .topNav-logo path, .menu-mobile .is-scrolled .topNav-logo path, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-logo path {
  fill: #fff; }

.menu-mobile .topNav-logoIndicator {
  padding-left: 1rem;
  font-size: 1.1rem;
  text-decoration: none;
  color: #13171F;
  opacity: 0;
  -webkit-transform: translateX(-0.5em);
  -ms-transform: translateX(-0.5em);
  transform: translateX(-0.5em);
  -webkit-transition: -webkit-transform .2s ease-out, opacity .2s ease-out, color .3s ease-out;
  transition: transform .2s ease-out, opacity .2s ease-out, color .3s ease-out;
  pointer-events: none; }

@media screen and (min-width: 93.75em) {
  .menu-mobile .topNav-logoIndicator {
    font-size: 1.2rem; } }

.menu-mobile .darkTheme .topNav-logoIndicator, .menu-mobile .is-scrolled .topNav-logoIndicator, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-logoIndicator {
  color: #fff; }

.menu-mobile .topNav-right {
  font-size: 0;
  text-align: right;
  text-decoration: none; }

.menu-mobile .topNav-menu {
  pointer-events: auto;
  outline-width: 0;
  background: #1b1d1f;
  padding: 5px 10px; }

.menu-mobile .topNav-menu:before {
  content: 'Menu';
  padding-right: 1rem;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  -webkit-transition: color .3s ease-out;
  transition: color .3s ease-out; }

.menu-mobile .article-inner .article-intro, .menu-mobile .cards-desc, .menu-mobile .cards-info, .menu-mobile .cards-intro, .menu-mobile .grid-desc, .menu-mobile .headline-desc, .menu-mobile .mainHeader-headline, .menu-mobile .section-ctaTxt, .menu-mobile .section-quote, .menu-mobile .section-subtitle, .menu-mobile .team-desc {
  letter-spacing: .05em; }

.menu-mobile .darkTheme .topNav-menu:before, .menu-mobile .is-scrolled .topNav-menu:before, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu:before {
  color: #fff; }

.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu:before {
  content: 'Close'; }

.menu-mobile .headline-title.-bubble:after, .menu-mobile .main.-hp:after, .menu-mobile .mainHeader-videoContainer:after, .menu-mobile .mainHeader-videoContainer:before {
  content: ''; }

.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-1 {
  -webkit-transform: rotate(45deg) translateX(5px) translateY(-3px);
  -ms-transform: rotate(45deg) translateX(5px) translateY(-3px);
  transform: rotate(45deg) translateX(5px) translateY(-3px); }

.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2 {
  opacity: 0; }

@media all and (-ms-high-contrast: none) {
  .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2 {
    opacity: 1; }
  .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu ::-ms-backdrop {
    opacity: 1; } }

.menu-mobile .edge .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2 {
  opacity: 1; }

.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-3 {
  -webkit-transform: rotate(-45deg) translateX(5px) translateY(3px);
  -ms-transform: rotate(-45deg) translateX(5px) translateY(3px);
  transform: rotate(-45deg) translateX(5px) translateY(3px); }

.menu-mobile .topNav-menuIcon {
  width: 24px;
  height: 24px; }

.menu-mobile .topNav-menuIcon .path-1, .menu-mobile .topNav-menuIcon .path-3 {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.67, -0.57, 0.43, 1.51);
  transition: transform 0.35s cubic-bezier(0.67, -0.57, 0.43, 1.51); }

.menu-mobile .topNav-menuIcon .path-2 {
  -webkit-transition: opacity .35s ease-out;
  transition: opacity .35s ease-out; }

.menu-mobile .topNav-menuIcon .path-1 {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0; }

.menu-mobile .topNav-menuIcon .path-3 {
  -webkit-transform-origin: 0 24px;
  -ms-transform-origin: 0 24px;
  transform-origin: 0 24px; }

.menu-mobile .mainNav-itemTitleExternal:after, .menu-mobile .mainNav-link:after, .menu-mobile .mainNav:after, .menu-mobile .mainNav:before, .menu-mobile .team-desc:before, .menu-mobile .team-imgContainer:before {
  content: ''; }

.menu-mobile .mainNav-list, .menu-mobile .roundedCta {
  vertical-align: middle;
  text-align: center; }

.menu-mobile .mainNav {
  background: #1b1d1f;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s linear .3s, opacity ease-out .3s;
  transition: visibility 0s linear .3s, opacity ease-out .3s;
  pointer-events: auto;
  overflow-y: scroll; }

.menu-mobile .mainNav:after, .menu-mobile .mainNav:before {
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  height: 5rem;
  display: none; }

@media screen and (min-width: 48em) {
  .menu-mobile .mainNav:after, .menu-mobile .mainNav:before {
    height: 6rem; } }

@media screen and (min-width: 64em) {
  .menu-mobile .mainNav:after, .menu-mobile .mainNav:before {
    height: 8rem; } }

.menu-mobile .mainNav:before {
  top: 0;
  background: -webkit-linear-gradient(#4B8BF2, rgba(83, 144, 236, 0));
  background: linear-gradient(#4B8BF2, rgba(83, 144, 236, 0)); }

.menu-mobile .mainNav:after {
  bottom: 0;
  background: -webkit-linear-gradient(rgba(83, 144, 236, 0), #4B8BF2);
  background: linear-gradient(rgba(83, 144, 236, 0), #4B8BF2); }

.menu-mobile .topNav-toggle:checked ~ .topNav-inner .mainNav {
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0s linear 0s, opacity ease-out .3s;
  transition: visibility 0s linear 0s, opacity ease-out .3s; }

.menu-mobile .mainNav-inner {
  padding: 1rem 0;
  display: table;
  height: 100%;
  width: 100%;
  overflow: hidden; }

@media screen and (min-width: 48em) {
  .menu-mobile .mainNav-inner {
    padding: 6rem 0; } }

@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-inner {
    padding: 8rem 0; } }

.menu-mobile .mainNav-list {
  margin: 0 auto;
  padding: 0;
  display: table-cell;
  list-style: none; }

.menu-mobile .mainNav-item {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out; }

.menu-mobile .mainNav-item + .mainNav-item .mainNav-link:before {
  content: '';
  margin: auto;
  display: block;
  max-width: 144rem;
  height: 1px;
  background-color: #fff; }

.menu-mobile .mainNav-list .mainNav-item:nth-child(1) {
  -webkit-transition: opacity ease-out .3s -.14118s, -webkit-transform ease-out .3s -.14118s;
  transition: opacity ease-out .3s -.14118s, transform ease-out .3s -.14118s; }

.menu-mobile .mainNav-list .mainNav-item:nth-child(2) {
  -webkit-transition: opacity ease-out .3s -.08235s, -webkit-transform ease-out .3s -.08235s;
  transition: opacity ease-out .3s -.08235s, transform ease-out .3s -.08235s; }

.menu-mobile .mainNav-list .mainNav-item:nth-child(3) {
  -webkit-transition: opacity ease-out .3s -.02353s, -webkit-transform ease-out .3s -.02353s;
  transition: opacity ease-out .3s -.02353s, transform ease-out .3s -.02353s; }

.menu-mobile .mainNav-list .mainNav-item:nth-child(4) {
  -webkit-transition: opacity ease-out .3s 35.29ms, -webkit-transform ease-out .3s 35.29ms;
  transition: opacity ease-out .3s 35.29ms, transform ease-out .3s 35.29ms; }

.menu-mobile .mainNav-list .mainNav-item:nth-child(5) {
  -webkit-transition: opacity ease-out .3s .09412s, -webkit-transform ease-out .3s .09412s;
  transition: opacity ease-out .3s .09412s, transform ease-out .3s .09412s; }

.menu-mobile .mainNav-list .mainNav-item:nth-child(6) {
  -webkit-transition: opacity ease-out .3s .15294s, -webkit-transform ease-out .3s .15294s;
  transition: opacity ease-out .3s .15294s, transform ease-out .3s .15294s; }

.menu-mobile .mainNav-list .mainNav-item:nth-child(7) {
  -webkit-transition: opacity ease-out .3s .21176s, -webkit-transform ease-out .3s .21176s;
  transition: opacity ease-out .3s .21176s, transform ease-out .3s .21176s; }

.menu-mobile .mainNav-list .mainNav-item:nth-child(8) {
  -webkit-transition: opacity ease-out .3s .27059s, -webkit-transform ease-out .3s .27059s;
  transition: opacity ease-out .3s .27059s, transform ease-out .3s .27059s; }

.menu-mobile .topNav-toggle:checked ~ .topNav-inner .mainNav-item {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.menu-mobile .mainNav-link {
  padding: 0 2rem;
  display: block;
  height: 6rem;
  line-height: 6rem;
  font-size: 1.8rem;
  font-weight: 300;
  text-decoration: none;
  color: #fff; }

@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-link {
    height: 11rem;
    line-height: 11rem;
    font-size: 3.2rem; }
  .menu-mobile .mainNav-link:focus:after, .menu-mobile .mainNav-link:hover:after {
    opacity: 1; }
  .menu-mobile .mainNav-link:focus .mainNav-itemTitle, .menu-mobile .mainNav-link:hover .mainNav-itemTitle {
    -webkit-transform: translateY(-1.2rem);
    -ms-transform: translateY(-1.2rem);
    transform: translateY(-1.2rem); }
  .menu-mobile .mainNav-link:focus .mainNav-itemSubtitle, .menu-mobile .mainNav-link:hover .mainNav-itemSubtitle {
    opacity: 1;
    -webkit-transform: translateY(-9.2rem);
    -ms-transform: translateY(-9.2rem);
    transform: translateY(-9.2rem); } }

@media screen and (min-width: 93.75em) {
  .menu-mobile .mainNav-link {
    padding: 0 9rem;
    font-size: 3.8rem; }
  .menu-mobile .mainNav-link:focus .mainNav-itemTitle, .menu-mobile .mainNav-link:hover .mainNav-itemTitle {
    -webkit-transform: translateY(-1.4rem);
    -ms-transform: translateY(-1.4rem);
    transform: translateY(-1.4rem); }
  .menu-mobile .mainNav-link:focus .mainNav-itemSubtitle, .menu-mobile .mainNav-link:hover .mainNav-itemSubtitle {
    opacity: 1;
    -webkit-transform: translateY(-8.8rem);
    -ms-transform: translateY(-8.8rem);
    transform: translateY(-8.8rem); } }

.menu-mobile .mainNav-link:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: -1px;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: .2s opacity ease-out;
  transition: .2s opacity ease-out; }

.menu-mobile .mainNav-itemSubtitle, .menu-mobile .mainNav-itemTitle {
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform .25s ease-out, opacity .25s ease-out;
  transition: transform .25s ease-out, opacity .25s ease-out; }

.menu-mobile .mainNav-itemTitle {
  display: block;
  font-weight: 300; }

.menu-mobile .mainNav-itemTitleExternal {
  position: relative;
  display: inline-block; }

.menu-mobile .mainNav-itemTitleExternal:after {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: calc(50% + 2px);
  right: -30px;
  background-image: url(icon-external-link.svg);
  background-size: cover;
  opacity: .4;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

@media screen and (min-width: 48em) {
  .menu-mobile .mainNav-itemTitleExternal:after {
    width: 35px;
    height: 35px;
    top: calc(50% + 3px);
    right: -35px; } }

@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-itemTitleExternal:after {
    width: 41px;
    height: 41px;
    right: -41px; } }

.menu-mobile .mainNav-itemSubtitle {
  display: none; }

@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-itemSubtitle {
    display: block;
    letter-spacing: .05em;
    font-size: 1.4rem;
    font-style: italic;
    opacity: 0;
    -webkit-transform: translateY(-10rem);
    -ms-transform: translateY(-10rem);
    transform: translateY(-10rem); } }

@media screen and (min-width: 93.75em) {
  .menu-mobile .mainNav-itemTitleExternal:after {
    width: 48px;
    height: 48px;
    top: calc(50% + 4px);
    right: -48px; }
  .menu-mobile .mainNav-itemSubtitle {
    font-size: 1.6rem; } }

/*-------------------------------- end menu-mobile ------------------------------------*/
