a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video,
xmp {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%; }

html,
body {
  height: 100%; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block; }

b,
strong {
  font-weight: bold; }

img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic; }

ul,
ol {
  list-style: none; }

li {
  display: list-item; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

th,
td,
caption {
  font-weight: normal;
  vertical-align: top;
  text-align: left; }

q {
  quotes: none; }

q:before,
q:after {
  content: "";
  content: none; }

sub,
sup,
small {
  font-size: 75%; }

sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

svg {
  overflow: hidden; }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * 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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }

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

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.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; }

/*
 *  Remodal - v1.0.7
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

@font-face {
  font-family: 'wmt_book';
  src: url("../assets/fonts/wmt-book-webfont.woff2") format("woff2"), url("../assets/fonts/wmt-book-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'wmt_medium';
  src: url("../assets/fonts/wmt-medium-webfont.woff2") format("woff2"), url("../assets/fonts/wmt-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'wmt_medium_oblique';
  src: url("../assets/fonts/wmt-mediumoblique-webfont.woff2") format("woff2"), url("../assets/fonts/wmt-mediumoblique-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'wmt_bold';
  src: url("../assets/fonts/wmt-bold-webfont.woff2") format("woff2"), url("../assets/fonts/wmt-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'wmt_extrabold';
  src: url("../assets/fonts/wmt-extrabold-webfont.woff2") format("woff2"), url("../assets/fonts/wmt-extrabold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

body {
  background: #f9f6ea; }
  @media print {
    body {
      background: #ffffff; } }

img {
  width: 100%;
  height: auto; }

main {
  position: relative;
  overflow-x: hidden; }

section, .show .promo {
  position: relative;
  margin-top: 8em;
  margin-bottom: 8em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media (max-width: 1440px) {
    section, .show .promo {
      margin-top: 7em;
      margin-bottom: 7em; } }
  @media (max-width: 1350px) {
    section, .show .promo {
      margin-top: 5em;
      margin-bottom: 5em; } }
  @media (max-width: 1024px) {
    section, .show .promo {
      margin-top: 4em;
      margin-bottom: 4em; } }
  @media (max-width: 480px) {
    section, .show .promo {
      margin-top: 3em;
      margin-bottom: 3em; } }

.section-trigger {
  position: absolute;
  top: 20px; }

.icon-trigger {
  position: absolute; }

.presenter {
  background: #f9f6ea;
  color: #000000; }
  @media print {
    .presenter {
      background: #ffffff;
      color: #000000; } }

body {
  font-family: "wmt_book", san-serif;
  font-size: 15px;
  color: #000000; }
  @media (max-width: 1200px) {
    body {
      font-size: 14px; } }
  @media (max-width: 480px) {
    body {
      font-size: 13px; } }
  @media print {
    body {
      font-size: 9pt; } }

h1, h2, h3,
h4,
h5, h5 {
  font-family: "wmt_extrabold", san-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: normal;
  line-height: 1em; }

h1 {
  font-size: 7em;
  min-height: 0.55em; }
  @media (max-width: 768px) {
    h1 {
      font-size: 5em; } }
  @media (max-width: 480px) {
    h1 {
      font-size: 3em; } }
  @media print {
    h1 {
      font-size: 4em; } }

h2 {
  font-size: 1.6em;
  border-top: 3px solid #000000;
  padding-top: 0.1em;
  margin-bottom: 2em; }
  @media (max-width: 480px) {
    h2 {
      font-size: 1.5em;
      margin-bottom: 1.5em; } }

h3 {
  font-size: 1.35em; }
  @media (max-width: 768px) {
    h3 {
      font-size: 1.25em; } }


h4,
h5 {
  font-family: "wmt_bold", san-serif;
  letter-spacing: 0.02em;
  font-size: 1.2em; }
  @media (max-width: 480px) {
    
    h4,
    h5 {
      font-size: 1.1em; } }

h5 {
  font-size: 0.85em;
  letter-spacing: 0.05em; }

p {
  line-height: 1.5em; }
  .content p {
    margin-bottom: 1em; }

footer {
  text-transform: uppercase;
  font-size: 0.85em; }

strong {
  font-family: "wmt_bold", san-serif;
  letter-spacing: 0.02em;
  font-weight: normal; }

em {
  font-style: italic; }

a {
  color: #000000; }
  p a {
    font-family: "wmt_medium", san-serif; }

h1 a, h2 a, h3 a, h4 a, h5 a {
  color: inherit;
  text-decoration: none; }

._1 {
  -webkit-animation-delay: 220ms;
  animation-delay: 220ms; }

._2 {
  -webkit-animation-delay: 440ms;
  animation-delay: 440ms; }

._3 {
  -webkit-animation-delay: 660ms;
  animation-delay: 660ms; }

._4 {
  -webkit-animation-delay: 880ms;
  animation-delay: 880ms; }

._5 {
  -webkit-animation-delay: 1100ms;
  animation-delay: 1100ms; }

._6 {
  -webkit-animation-delay: 1320ms;
  animation-delay: 1320ms; }

._7 {
  -webkit-animation-delay: 1540ms;
  animation-delay: 1540ms; }

._8 {
  -webkit-animation-delay: 1760ms;
  animation-delay: 1760ms; }

._9 {
  -webkit-animation-delay: 1980ms;
  animation-delay: 1980ms; }

._10 {
  -webkit-animation-delay: 2200ms;
  animation-delay: 2200ms; }

/* CSS Document */
main .icon-list {
  list-style: none;
  padding-left: 0 !important;
  padding-right: 0; }
  main .icon-list::after {
    clear: both;
    content: "";
    display: block; }
  main .icon-list li {
    border-bottom: 1px solid #cccccc;
    list-style: none;
    float: left;
    clear: both;
    padding: 0.5em 0;
    width: 100%;
    margin-bottom: 0.25em !important; }
    main .icon-list li:before {
      font-size: 2.6em;
      float: left;
      margin-top: -0.2em;
      margin-right: 0.35em;
      -webkit-transition: all 250ms ease;
      transition: all 250ms ease; }
      .white main .icon-list li:before {
        color: #ffffff; }
      .black main .icon-list li:before {
        color: #000000; }
      .blue main .icon-list li:before {
        color: #2d7fc4; }
      .pink main .icon-list li:before {
        color: #f99cc8; }
      .teal main .icon-list li:before {
        color: #6ecbc7; }
      .purple main .icon-list li:before {
        color: #863796; }
      .peach main .icon-list li:before {
        color: #ee8275; }
      .navy main .icon-list li:before {
        color: #365495; }
      .yellow main .icon-list li:before {
        color: #facc20; }
      .red main .icon-list li:before {
        color: #d0003c; }
      .magenta main .icon-list li:before {
        color: #e800ae; }
      @media (max-width: 480px) {
        main .icon-list li:before {
          margin-top: 0; } }
    main .icon-list li a {
      text-decoration: none; }
      main .icon-list li a:hover {
        text-decoration: underline; }
    main .icon-list li:hover:before {
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }
    @media (max-width: 480px) {
      main .icon-list li {
        font-size: 0.9em; } }
  main .icon-list.small li {
    border-bottom: none;
    padding: 0; }
    main .icon-list.small li:before {
      font-size: 2em !important;
      margin-top: -0.05em; }

main .icon, p .icon {
  padding: 0.75em 0 1em;
  display: block;
  text-decoration: none;
  font-weight: "wmt_bold", san-serif !important;
  margin-top: 1.5em; }
  main .icon:before, p .icon:before {
    font-size: 2.6em;
    float: left;
    margin-top: -0.2em;
    margin-right: 0.25em;
    -webkit-transition: all 220ms ease;
    transition: all 220ms ease; }
    .white main .icon:before, .white p .icon:before {
      color: #ffffff; }
    .black main .icon:before, .black p .icon:before {
      color: #000000; }
    .blue main .icon:before, .blue p .icon:before {
      color: #2d7fc4; }
    .pink main .icon:before, .pink p .icon:before {
      color: #f99cc8; }
    .teal main .icon:before, .teal p .icon:before {
      color: #6ecbc7; }
    .purple main .icon:before, .purple p .icon:before {
      color: #863796; }
    .peach main .icon:before, .peach p .icon:before {
      color: #ee8275; }
    .navy main .icon:before, .navy p .icon:before {
      color: #365495; }
    .yellow main .icon:before, .yellow p .icon:before {
      color: #facc20; }
    .red main .icon:before, .red p .icon:before {
      color: #d0003c; }
    .magenta main .icon:before, .magenta p .icon:before {
      color: #e800ae; }
    @media (max-width: 480px) {
      main .icon:before, p .icon:before {
        margin-top: 0; } }
  main .icon:hover:before, p .icon:hover:before {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }

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

[data-icon]:before {
  font-family: "windmill" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "windmill" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a[class^="icon-"], a[class*=" icon-"] {
  text-decoration: none; }

.icon-time-circle:before {
  content: "\61"; }

.icon-info-circle:before {
  content: "\62"; }

.icon-warning-circle:before {
  content: "\63"; }

.icon-hear-circle:before {
  content: "\64"; }

.icon-access-circle:before {
  content: "\65"; }

.icon-ticket-circle:before {
  content: "\66"; }

.icon-download-circle:before {
  content: "\67"; }

.icon-download:before {
  content: "\67"; }

.icon-linkedin-circle:before {
  content: "\68"; }

.icon-wechat-circle:before {
  content: "\69"; }

.icon-language-en-circle:before {
  content: "\6a"; }

.icon-language-ch-circle:before {
  content: "\6b"; }

.icon-language-fr-circle:before {
  content: "\6c"; }

.icon-language-en:before {
  content: "\6d"; }

.icon-language-ch:before {
  content: "\6e"; }

.icon-language-fr:before {
  content: "\6f"; }

.icon-like:before {
  content: "\42"; }

.icon-tweet:before {
  content: "\4d"; }

.icon-sms:before {
  content: "\4e"; }

.icon-email:before {
  content: "\4f"; }

.icon-cart:before {
  content: "\50"; }

.icon-search:before {
  content: "\51"; }

.icon-login:before {
  content: "\52"; }

.icon-twitter:before {
  content: "\53"; }

.icon-facebook:before {
  content: "\54"; }

.icon-vimeo:before {
  content: "\57"; }

.icon-pinterest:before {
  content: "\58"; }

.icon-enews:before {
  content: "\59"; }

.icon-down:before {
  content: "\5a"; }

.icon-up:before {
  content: "\30"; }

.icon-left:before {
  content: "\31"; }

.icon-right:before {
  content: "\32"; }

.icon-down-circle:before {
  content: "\33"; }

.icon-up-circle:before {
  content: "\34"; }

.icon-left-circle:before {
  content: "\35"; }

.icon-right-circle:before {
  content: "\36"; }

.icon-down-mini-circle:before {
  content: "\37"; }

.icon-up-mini-circle:before {
  content: "\38"; }

.icon-left-mini-circle:before {
  content: "\39"; }

.icon-right-mini-circle:before {
  content: "\21"; }

.icon-map:before {
  content: "\22"; }

.icon-down-mini:before {
  content: "\23"; }

.icon-up-mini:before {
  content: "\24"; }

.icon-right-mini:before {
  content: "\25"; }

.icon-map-fill:before {
  content: "\26"; }

.icon-left-mini:before {
  content: "\27"; }

.icon-apple:before {
  content: "\28"; }

.icon-youtube:before {
  content: "\29"; }

.icon-instagram:before {
  content: "\2a"; }

.icon-paper-plane:before {
  content: "\56"; }

.icon-audio-described:before {
  content: "\3b"; }

.icon-closed-captions:before {
  content: "\3c"; }

.icon-play:before {
  content: "\3d"; }

.icon-rated-g:before {
  content: "\3e"; }

.icon-rated-m:before {
  content: "\3f"; }

.icon-rated-ma:before {
  content: "\40"; }

.icon-rated-pg:before {
  content: "\5b"; }

.icon-rated-r:before {
  content: "\5d"; }

.icon-strobe-lighting:before {
  content: "\5e"; }

.icon-ticket:before {
  content: "\5f"; }

.icon-phone:before {
  content: "\60"; }

.icon-price:before {
  content: "\7b"; }

.icon-back:before {
  content: "\7c"; }

.icon-print:before {
  content: "\7d"; }

.icon-pdf:before {
  content: "\7e"; }

.icon-delete:before {
  content: "\74"; }

.icon-phone-circle:before {
  content: "\75"; }

.icon-email-circle:before {
  content: "\76"; }

.icon-arrows-alt:before {
  content: "\41"; }

.icon-age:before {
  content: "\70"; }

.icon-calendar-circle:before {
  content: "\71"; }

.icon-gift-circle:before {
  content: "\72"; }

.icon-ethical:before {
  content: "\73"; }

.icon-ict:before {
  content: "\77"; }

.icon-info:before {
  content: "\78"; }

.icon-interactive:before {
  content: "\79"; }

.icon-intercultural:before {
  content: "\7a"; }

.icon-numeracy:before {
  content: "\44"; }

.icon-social:before {
  content: "\45"; }

.icon-studyguide:before {
  content: "\46"; }

.icon-thinking:before {
  content: "\47"; }

.icon-video:before {
  content: "\48"; }

.icon-access:before {
  content: "\49"; }

.icon-link:before {
  content: "\43"; }

.icon-question:before {
  content: "\4a"; }

.icon-literacy:before {
  content: "\4b"; }

.main-menu {
  position: fixed;
  right: 0;
  top: 0;
  margin: 0;
  margin-right: -0.5em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: hidden;
  background-color: #000000;
  height: 100vh;
  min-width: 15vw;
  opacity: 0;
  -webkit-transform: translateX(10em);
          transform: translateX(10em); }
  .white .main-menu {
    background-color: #ffffff; }
  .black .main-menu {
    background-color: #000000; }
  .blue .main-menu {
    background-color: #2d7fc4; }
  .pink .main-menu {
    background-color: #f99cc8; }
  .teal .main-menu {
    background-color: #6ecbc7; }
  .purple .main-menu {
    background-color: #863796; }
  .peach .main-menu {
    background-color: #ee8275; }
  .navy .main-menu {
    background-color: #365495; }
  .yellow .main-menu {
    background-color: #facc20; }
  .red .main-menu {
    background-color: #d0003c; }
  .magenta .main-menu {
    background-color: #e800ae; }
  .white .main-menu, .default .main-menu {
    background-color: #ffffff !important; }
  .black .main-menu {
    background-color: #000000 !important; }
  .main-menu .menu {
    padding: 6em 3em 0 2em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: relative; }
    @media (max-width: 768px) {
      .main-menu .menu {
        min-width: 25vw; } }
    @media (max-width: 700px) {
      .main-menu .menu {
        min-width: 40vw; } }
    @media (max-width: 480px) {
      .main-menu .menu {
        min-width: 66vw; } }
    .main-menu .menu li {
      padding: 0; }
      .main-menu .menu li.active ul {
        visibility: visible;
        opacity: 1;
        z-index: 100;
        max-height: 40em;
        opacity: 0.7;
        padding-bottom: 1em; }
      .main-menu .menu li a {
        font-family: "wmt_medium", san-serif;
        font-size: 1.25em;
        color: #ffffff;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.05em;
        -webkit-transition: all 220ms ease;
        transition: all 220ms ease;
        padding: 0.5em 0;
        display: block;
        text-align: left; }
        @media (max-width: 480px) {
          .main-menu .menu li a {
            font-size: 1.4em;
            padding: 0.4em 0; } }
        .white .main-menu .menu li a, .default .main-menu .menu li a {
          color: #000000 !important; }
        .black .main-menu .menu li a {
          color: #ffffff !important; }
        .main-menu .menu li a:hover {
          -webkit-transform: translateX(0.5em);
                  transform: translateX(0.5em); }
        .main-menu .menu li a:visited {
          color: #ffffff; }
    .main-menu .menu .sub-menu {
      display: block;
      position: relative;
      display: block;
      width: 100%;
      border-radius: 0.5em;
      padding: 0;
      left: 0;
      margin: 0;
      font-size: 0.7em;
      z-index: 90;
      -webkit-transition: all 1000ms ease;
      transition: all 1000ms ease;
      height: auto;
      visibility: hidden;
      opacity: 0;
      overflow: hidden;
      max-height: 0; }
      .main-menu .menu .sub-menu:before {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 100px 100px 100px;
        border-color: transparent transparent #007bff transparent; }
      .main-menu .menu .sub-menu li {
        float: none;
        margin: 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
        .white .main-menu .menu .sub-menu li, .default .main-menu .menu .sub-menu li {
          border-bottom-color: rgba(0, 0, 0, 0.2); }
        .black .main-menu .menu .sub-menu li {
          border-bottom-color: rgba(255, 255, 255, 0.2); }
        .main-menu .menu .sub-menu li a {
          display: block;
          padding: 0.75em 1em;
          color: #ffffff !important;
          letter-spacing: 0.05em;
          -webkit-transition: all 220ms ease;
          transition: all 220ms ease;
          cursor: pointer; }
          .white .main-menu .menu .sub-menu li a, .default .main-menu .menu .sub-menu li a {
            color: #000000 !important; }
          .black .main-menu .menu .sub-menu li a {
            color: #ffffff !important; }
        .main-menu .menu .sub-menu li:last-child {
          margin-bottom: 0;
          border: none; }
  .main-menu .options {
    margin: 1em 3em 1em 1.5em;
    padding-top: 0;
    text-align: left; }
    .white .main-menu .options, .default .main-menu .options {
      border-top-color: #000000 !important; }
    .black .main-menu .options {
      border-top-color: #ffffff !important; }
    .main-menu .options li {
      text-align: left; }
    .main-menu .options a {
      font-size: 1.75em;
      padding: 0;
      line-height: 1em;
      color: #ffffff;
      text-transform: uppercase; }
      .white .main-menu .options a, .default .main-menu .options a {
        color: #000000 !important; }
      .black .main-menu .options a {
        color: #ffffff !important; }
      .main-menu .options a span {
        font-size: 0.3em;
        letter-spacing: 0.1em;
        display: inline-block;
        -webkit-transform: translateY(-1.2em);
                transform: translateY(-1.2em); }
      .main-menu .options a:before {
        display: inline-block;
        -webkit-transition: all 220ms ease;
        transition: all 220ms ease; }
      .main-menu .options a:hover {
        -webkit-transform: none;
                transform: none; }
        .main-menu .options a:hover:before {
          -webkit-transform: scale(1.1) rotate(-10deg);
                  transform: scale(1.1) rotate(-10deg); }
  .main-menu .social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1em 3em 1em 1.5em;
    text-align: left; }
    .white .main-menu .social {
      background-color: #ffffff; }
    .black .main-menu .social {
      background-color: #000000; }
    .blue .main-menu .social {
      background-color: #2d7fc4; }
    .pink .main-menu .social {
      background-color: #f99cc8; }
    .teal .main-menu .social {
      background-color: #6ecbc7; }
    .purple .main-menu .social {
      background-color: #863796; }
    .peach .main-menu .social {
      background-color: #ee8275; }
    .navy .main-menu .social {
      background-color: #365495; }
    .yellow .main-menu .social {
      background-color: #facc20; }
    .red .main-menu .social {
      background-color: #d0003c; }
    .magenta .main-menu .social {
      background-color: #e800ae; }
    @media (max-width: 700px) {
      .main-menu .social {
        display: none; } }
    .main-menu .social li {
      display: inline-block;
      text-align: left; }
      .main-menu .social li a {
        display: block;
        font-size: 20px;
        border: 1px solid #ffffff;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        padding: 0;
        text-align: center;
        color: #ffffff; }
        .white .main-menu .social li a, .default .main-menu .social li a {
          color: #000000 !important;
          border-color: #000000 !important; }
        .black .main-menu .social li a {
          color: #ffffff !important;
          border-color: #ffffff !important; }
        @media (max-width: 480px) {
          .main-menu .social li a {
            font-size: 26px; } }
        .main-menu .social li a:before {
          display: block;
          -webkit-transition: all 220ms ease;
          transition: all 220ms ease;
          -webkit-transform: translateY(2px);
                  transform: translateY(2px); }
        .main-menu .social li a:hover {
          -webkit-transform: scale(1.1) rotate(-10deg);
                  transform: scale(1.1) rotate(-10deg); }
          .main-menu .social li a:hover:before {
            -webkit-transform: scale(1.4) translateY(2px);
                    transform: scale(1.4) translateY(2px); }

.menu-bg {
  display: none;
  /*
    width: 100%;
    height: 150px;
    position: fixed;
    top: 0;
    z-index: 10;
    pointer-events: none;
    @include linear-gradient($color-bg 0, rgba($color-bg, 0) 100%, $fallback: transparent);
  
    .presenter & {
        @include linear-gradient($color-default 0, transparent 100%, $fallback: transparent);
    }
    
    .home & {
        display: none;
    }*/ }

.menu-trigger {
  position: fixed;
  clip: rect(0, 0, 0, 0);
  visibility: hidden;
  opacity: 0; }
  .menu-trigger + label {
    visibility: visible;
    opacity: 1;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-transition: all 220ms ease-out;
    transition: all 220ms ease-out; }
    .white .menu-trigger + label {
      background-color: #ffffff; }
    .black .menu-trigger + label {
      background-color: #000000; }
    .blue .menu-trigger + label {
      background-color: #2d7fc4; }
    .pink .menu-trigger + label {
      background-color: #f99cc8; }
    .teal .menu-trigger + label {
      background-color: #6ecbc7; }
    .purple .menu-trigger + label {
      background-color: #863796; }
    .peach .menu-trigger + label {
      background-color: #ee8275; }
    .navy .menu-trigger + label {
      background-color: #365495; }
    .yellow .menu-trigger + label {
      background-color: #facc20; }
    .red .menu-trigger + label {
      background-color: #d0003c; }
    .magenta .menu-trigger + label {
      background-color: #e800ae; }
    .white .menu-trigger + label, .default .menu-trigger + label {
      color: #ffffff; }
    .black .menu-trigger + label {
      background-color: #000000; }
    .menu-trigger + label:hover {
      cursor: pointer;
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }
    @media (max-width: 768px) {
      .menu-trigger + label {
        right: 10px; } }
    @media (max-width: 480px) {
      .menu-trigger + label {
        top: 12px; } }
    .menu-trigger + label .burger {
      list-style: none; }
      .menu-trigger + label .burger li {
        display: block;
        background-color: #000000;
        width: 30px;
        margin: 0 10px;
        height: 3px;
        position: absolute;
        margin-top: -1px;
        -webkit-transform-origin: center left;
                transform-origin: center left;
        -webkit-transition: all 220ms ease-out;
        transition: all 220ms ease-out; }
        .black .menu-trigger + label .burger li,
        .default .black .menu-trigger + label .burger li,
        .white .black .menu-trigger + label .burger li,
        .blue .menu-trigger + label .burger li,
        .pink .menu-trigger + label .burger li,
        .teal .menu-trigger + label .burger li,
        .purple .menu-trigger + label .burger li,
        .peach .menu-trigger + label .burger li,
        .navy .menu-trigger + label .burger li,
        .yellow .menu-trigger + label .burger li,
        .red .menu-trigger + label .burger li,
        .magenta .menu-trigger + label .burger li {
          background-color: #ffffff !important; }
        .white .menu-trigger + label .burger li, .default .menu-trigger + label .burger li {
          background-color: #000000 !important; }
      .menu-trigger + label .burger .top {
        top: 32%; }
      .menu-trigger + label .burger .middle {
        top: 50%;
        -webkit-animation-delay: 100ms !important;
                animation-delay: 100ms !important; }
      .menu-trigger + label .burger .bottom {
        top: 68%;
        -webkit-animation-delay: 200ms !important;
                animation-delay: 200ms !important; }
  .menu-trigger:checked + label {
    background: rgba(255, 255, 255, 0); }
    .menu-trigger:checked + label .burger li {
      background: #ffffff; }
    .menu-trigger:checked + label .burger .top {
      -webkit-transform: rotate(-45deg) translate(20%);
              transform: rotate(-45deg) translate(20%);
      top: 80%; }
    .menu-trigger:checked + label .burger .middle {
      opacity: 0; }
    .menu-trigger:checked + label .burger .bottom {
      -webkit-transform: rotate(45deg) translate(20%);
              transform: rotate(45deg) translate(20%);
      top: 20%; }
  .menu-trigger:checked ~ .main-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
    @media (max-width: 768px) {
      .menu-trigger:checked ~ .main-menu {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch; } }

.menu-label {
  display: none;
  position: absolute;
  right: 80px;
  top: 18px;
  text-transform: uppercase;
  font-family: "wmt_medium", san-serif;
  letter-spacing: 0.1em;
  font-size: 0.7em;
  text-align: right;
  color: #ffffff;
  pointer-events: none; }
  .white .menu-label {
    color: #ffffff; }
  .black .menu-label {
    color: #000000; }
  .blue .menu-label {
    color: #2d7fc4; }
  .pink .menu-label {
    color: #f99cc8; }
  .teal .menu-label {
    color: #6ecbc7; }
  .purple .menu-label {
    color: #863796; }
  .peach .menu-label {
    color: #ee8275; }
  .navy .menu-label {
    color: #365495; }
  .yellow .menu-label {
    color: #facc20; }
  .red .menu-label {
    color: #d0003c; }
  .magenta .menu-label {
    color: #e800ae; }
  @media (max-width: 480px) {
    .menu-label {
      right: 70px; } }

#side-icons {
  position: fixed;
  right: 15px;
  bottom: 20px;
  z-index: 998; }
  #side-icons.stick {
    position: absolute; }
  @media print {
    #side-icons {
      display: none; } }
  #side-icons ul {
    list-style: none; }
    #side-icons ul li {
      display: block;
      width: 25px;
      height: 25px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      text-align: center;
      border-radius: 50%;
      margin-top: 0.25em;
      position: relative;
      -webkit-transition: all 500ms ease;
      transition: all 500ms ease;
      -webkit-transform: translateZ(0); }
      @media (max-width: 480px) {
        #side-icons ul li {
          width: 30px;
          height: 30px; } }
      #side-icons ul li a {
        text-decoration: none;
        font-size: 20px;
        width: 100%;
        height: 100%;
        display: block;
        padding-top: 2px;
        line-height: 1em;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        -webkit-animation-delay: 500ms;
                animation-delay: 500ms;
        -webkit-transition: all 220ms ease;
        transition: all 220ms ease; }
        @media (max-width: 480px) {
          #side-icons ul li a {
            font-size: 26px; } }
      #side-icons ul li span {
        position: absolute;
        display: block;
        background: #000000;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 0;
        opacity: 0;
        visibility: hidden;
        padding: 0.8em 1.2em;
        border-radius: 2em;
        font-size: 0.4em;
        font-family: "wmt_bold", san-serif;
        letter-spacing: 0.05em;
        color: #ffffff;
        text-align: right;
        text-transform: uppercase;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transition-delay: 220ms;
                transition-delay: 220ms; }
        .white #side-icons ul li span {
          background-color: #ffffff; }
        .black #side-icons ul li span {
          background-color: #000000; }
        .blue #side-icons ul li span {
          background-color: #2d7fc4; }
        .pink #side-icons ul li span {
          background-color: #f99cc8; }
        .teal #side-icons ul li span {
          background-color: #6ecbc7; }
        .purple #side-icons ul li span {
          background-color: #863796; }
        .peach #side-icons ul li span {
          background-color: #ee8275; }
        .navy #side-icons ul li span {
          background-color: #365495; }
        .yellow #side-icons ul li span {
          background-color: #facc20; }
        .red #side-icons ul li span {
          background-color: #d0003c; }
        .magenta #side-icons ul li span {
          background-color: #e800ae; }
      #side-icons ul li:hover {
        -webkit-transform: scale(1.4);
                transform: scale(1.4); }
        #side-icons ul li:hover a {
          -webkit-transform: scale(1.3) rotate(-376deg);
                  transform: scale(1.3) rotate(-376deg); }
        #side-icons ul li:hover span {
          visibility: visible;
          opacity: 1;
          right: 28px;
          z-index: 99; }

.side-menu {
  @extent ul;
  margin-bottom: 1em; }
  .side-menu li {
    background-color: #000000; }
    .white .side-menu li {
      background-color: #ffffff; }
    .black .side-menu li {
      background-color: #000000; }
    .blue .side-menu li {
      background-color: #2d7fc4; }
    .pink .side-menu li {
      background-color: #f99cc8; }
    .teal .side-menu li {
      background-color: #6ecbc7; }
    .purple .side-menu li {
      background-color: #863796; }
    .peach .side-menu li {
      background-color: #ee8275; }
    .navy .side-menu li {
      background-color: #365495; }
    .yellow .side-menu li {
      background-color: #facc20; }
    .red .side-menu li {
      background-color: #d0003c; }
    .magenta .side-menu li {
      background-color: #e800ae; }
  .side-menu a {
    color: #ffffff; }
    .white .side-menu a {
      color: #000000; }

.side-social li {
  border-width: 2px;
  border-style: solid;
  border-color: #000000; }
  .white .side-social li {
    border-color: #ffffff; }
  .black .side-social li {
    border-color: #000000; }
  .blue .side-social li {
    border-color: #2d7fc4; }
  .pink .side-social li {
    border-color: #f99cc8; }
  .teal .side-social li {
    border-color: #6ecbc7; }
  .purple .side-social li {
    border-color: #863796; }
  .peach .side-social li {
    border-color: #ee8275; }
  .navy .side-social li {
    border-color: #365495; }
  .yellow .side-social li {
    border-color: #facc20; }
  .red .side-social li {
    border-color: #d0003c; }
  .magenta .side-social li {
    border-color: #e800ae; }
  @media (max-width: 480px) {
    .side-social li {
      border-width: 1px; } }

.side-social a {
  color: #000000;
  margin-top: -1px; }
  .white .side-social a {
    color: #ffffff; }
  .black .side-social a {
    color: #000000; }
  .blue .side-social a {
    color: #2d7fc4; }
  .pink .side-social a {
    color: #f99cc8; }
  .teal .side-social a {
    color: #6ecbc7; }
  .purple .side-social a {
    color: #863796; }
  .peach .side-social a {
    color: #ee8275; }
  .navy .side-social a {
    color: #365495; }
  .yellow .side-social a {
    color: #facc20; }
  .red .side-social a {
    color: #d0003c; }
  .magenta .side-social a {
    color: #e800ae; }
  .white .side-social a:visited, .white .side-social a:hover, .white .side-social a:active {
    color: #ffffff; }
  .black .side-social a:visited, .black .side-social a:hover, .black .side-social a:active {
    color: #000000; }
  .blue .side-social a:visited, .blue .side-social a:hover, .blue .side-social a:active {
    color: #2d7fc4; }
  .pink .side-social a:visited, .pink .side-social a:hover, .pink .side-social a:active {
    color: #f99cc8; }
  .teal .side-social a:visited, .teal .side-social a:hover, .teal .side-social a:active {
    color: #6ecbc7; }
  .purple .side-social a:visited, .purple .side-social a:hover, .purple .side-social a:active {
    color: #863796; }
  .peach .side-social a:visited, .peach .side-social a:hover, .peach .side-social a:active {
    color: #ee8275; }
  .navy .side-social a:visited, .navy .side-social a:hover, .navy .side-social a:active {
    color: #365495; }
  .yellow .side-social a:visited, .yellow .side-social a:hover, .yellow .side-social a:active {
    color: #facc20; }
  .red .side-social a:visited, .red .side-social a:hover, .red .side-social a:active {
    color: #d0003c; }
  .magenta .side-social a:visited, .magenta .side-social a:hover, .magenta .side-social a:active {
    color: #e800ae; }

form, .nf-form-wrap, .ninja-forms-form-wrap {
  padding-top: 0.5em; }
  form input,
  form textarea,
  form select,
  form .radio, .nf-form-wrap input,
  .nf-form-wrap textarea,
  .nf-form-wrap select,
  .nf-form-wrap .radio, .ninja-forms-form-wrap input,
  .ninja-forms-form-wrap textarea,
  .ninja-forms-form-wrap select,
  .ninja-forms-form-wrap .radio {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 220ms ease;
    transition: all 220ms ease;
    outline: none;
    font-family: "wmt_medium", san-serif;
    font-size: 1em;
    text-transform: none;
    color: #000000;
    width: 100%;
    padding: 0.9em 0;
    border-bottom: 1px solid #000000; }
    form input::after,
    form textarea::after,
    form select::after,
    form .radio::after, .nf-form-wrap input::after,
    .nf-form-wrap textarea::after,
    .nf-form-wrap select::after,
    .nf-form-wrap .radio::after, .ninja-forms-form-wrap input::after,
    .ninja-forms-form-wrap textarea::after,
    .ninja-forms-form-wrap select::after,
    .ninja-forms-form-wrap .radio::after {
      clear: both;
      content: "";
      display: block; }
    form input:first-child,
    form textarea:first-child,
    form select:first-child,
    form .radio:first-child, .nf-form-wrap input:first-child,
    .nf-form-wrap textarea:first-child,
    .nf-form-wrap select:first-child,
    .nf-form-wrap .radio:first-child, .ninja-forms-form-wrap input:first-child,
    .ninja-forms-form-wrap textarea:first-child,
    .ninja-forms-form-wrap select:first-child,
    .ninja-forms-form-wrap .radio:first-child {
      border-top: 1px solid #000000; }
    form input:hover,
    form textarea:hover,
    form select:hover,
    form .radio:hover, .nf-form-wrap input:hover,
    .nf-form-wrap textarea:hover,
    .nf-form-wrap select:hover,
    .nf-form-wrap .radio:hover, .ninja-forms-form-wrap input:hover,
    .ninja-forms-form-wrap textarea:hover,
    .ninja-forms-form-wrap select:hover,
    .ninja-forms-form-wrap .radio:hover {
      background-color: #f4f0e0; }
    form input:focus,
    form textarea:focus,
    form select:focus,
    form .radio:focus, .nf-form-wrap input:focus,
    .nf-form-wrap textarea:focus,
    .nf-form-wrap select:focus,
    .nf-form-wrap .radio:focus, .ninja-forms-form-wrap input:focus,
    .ninja-forms-form-wrap textarea:focus,
    .ninja-forms-form-wrap select:focus,
    .ninja-forms-form-wrap .radio:focus {
      background-color: #ede7cd; }
    form input::-webkit-input-placeholder,
    form textarea::-webkit-input-placeholder,
    form select::-webkit-input-placeholder,
    form .radio::-webkit-input-placeholder, .nf-form-wrap input::-webkit-input-placeholder,
    .nf-form-wrap textarea::-webkit-input-placeholder,
    .nf-form-wrap select::-webkit-input-placeholder,
    .nf-form-wrap .radio::-webkit-input-placeholder, .ninja-forms-form-wrap input::-webkit-input-placeholder,
    .ninja-forms-form-wrap textarea::-webkit-input-placeholder,
    .ninja-forms-form-wrap select::-webkit-input-placeholder,
    .ninja-forms-form-wrap .radio::-webkit-input-placeholder {
      color: #000000;
      opacity: 1; }
    form input:-ms-input-placeholder,
    form textarea:-ms-input-placeholder,
    form select:-ms-input-placeholder,
    form .radio:-ms-input-placeholder, .nf-form-wrap input:-ms-input-placeholder,
    .nf-form-wrap textarea:-ms-input-placeholder,
    .nf-form-wrap select:-ms-input-placeholder,
    .nf-form-wrap .radio:-ms-input-placeholder, .ninja-forms-form-wrap input:-ms-input-placeholder,
    .ninja-forms-form-wrap textarea:-ms-input-placeholder,
    .ninja-forms-form-wrap select:-ms-input-placeholder,
    .ninja-forms-form-wrap .radio:-ms-input-placeholder {
      color: #000000;
      opacity: 1; }
    form input::-ms-input-placeholder,
    form textarea::-ms-input-placeholder,
    form select::-ms-input-placeholder,
    form .radio::-ms-input-placeholder, .nf-form-wrap input::-ms-input-placeholder,
    .nf-form-wrap textarea::-ms-input-placeholder,
    .nf-form-wrap select::-ms-input-placeholder,
    .nf-form-wrap .radio::-ms-input-placeholder, .ninja-forms-form-wrap input::-ms-input-placeholder,
    .ninja-forms-form-wrap textarea::-ms-input-placeholder,
    .ninja-forms-form-wrap select::-ms-input-placeholder,
    .ninja-forms-form-wrap .radio::-ms-input-placeholder {
      color: #000000;
      opacity: 1; }
    form input::placeholder,
    form textarea::placeholder,
    form select::placeholder,
    form .radio::placeholder, .nf-form-wrap input::placeholder,
    .nf-form-wrap textarea::placeholder,
    .nf-form-wrap select::placeholder,
    .nf-form-wrap .radio::placeholder, .ninja-forms-form-wrap input::placeholder,
    .ninja-forms-form-wrap textarea::placeholder,
    .ninja-forms-form-wrap select::placeholder,
    .ninja-forms-form-wrap .radio::placeholder {
      color: #000000;
      opacity: 1; }
  form select, .nf-form-wrap select, .ninja-forms-form-wrap select {
    width: 100%; }
  form button, form input[type="submit"], .nf-form-wrap button, .nf-form-wrap input[type="submit"], .ninja-forms-form-wrap button, .ninja-forms-form-wrap input[type="submit"] {
    width: 100%;
    margin-top: 2em; }
  form input[type="radio"],
  form input[type="checkbox"], .nf-form-wrap input[type="radio"],
  .nf-form-wrap input[type="checkbox"], .ninja-forms-form-wrap input[type="radio"],
  .ninja-forms-form-wrap input[type="checkbox"] {
    width: 14px !important;
    height: 14px !important;
    padding: 0;
    margin: -0.5em 0.5em 0;
    border: none;
    -webkit-box-shadow: inset 0 0 0 0px, 0 0 0 2px;
            box-shadow: inset 0 0 0 0px, 0 0 0 2px;
    border-radius: 50%;
    -webkit-transition: all 220ms ease;
    transition: all 220ms ease;
    float: right;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1; }
    .white form input[type="radio"], .white
    form input[type="checkbox"], .white .nf-form-wrap input[type="radio"], .white
    .nf-form-wrap input[type="checkbox"], .white .ninja-forms-form-wrap input[type="radio"], .white
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #ffffff; }
    .black form input[type="radio"], .black
    form input[type="checkbox"], .black .nf-form-wrap input[type="radio"], .black
    .nf-form-wrap input[type="checkbox"], .black .ninja-forms-form-wrap input[type="radio"], .black
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #000000; }
    .blue form input[type="radio"], .blue
    form input[type="checkbox"], .blue .nf-form-wrap input[type="radio"], .blue
    .nf-form-wrap input[type="checkbox"], .blue .ninja-forms-form-wrap input[type="radio"], .blue
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #2d7fc4; }
    .pink form input[type="radio"], .pink
    form input[type="checkbox"], .pink .nf-form-wrap input[type="radio"], .pink
    .nf-form-wrap input[type="checkbox"], .pink .ninja-forms-form-wrap input[type="radio"], .pink
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #f99cc8; }
    .teal form input[type="radio"], .teal
    form input[type="checkbox"], .teal .nf-form-wrap input[type="radio"], .teal
    .nf-form-wrap input[type="checkbox"], .teal .ninja-forms-form-wrap input[type="radio"], .teal
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #6ecbc7; }
    .purple form input[type="radio"], .purple
    form input[type="checkbox"], .purple .nf-form-wrap input[type="radio"], .purple
    .nf-form-wrap input[type="checkbox"], .purple .ninja-forms-form-wrap input[type="radio"], .purple
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #863796; }
    .peach form input[type="radio"], .peach
    form input[type="checkbox"], .peach .nf-form-wrap input[type="radio"], .peach
    .nf-form-wrap input[type="checkbox"], .peach .ninja-forms-form-wrap input[type="radio"], .peach
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #ee8275; }
    .navy form input[type="radio"], .navy
    form input[type="checkbox"], .navy .nf-form-wrap input[type="radio"], .navy
    .nf-form-wrap input[type="checkbox"], .navy .ninja-forms-form-wrap input[type="radio"], .navy
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #365495; }
    .yellow form input[type="radio"], .yellow
    form input[type="checkbox"], .yellow .nf-form-wrap input[type="radio"], .yellow
    .nf-form-wrap input[type="checkbox"], .yellow .ninja-forms-form-wrap input[type="radio"], .yellow
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #facc20; }
    .red form input[type="radio"], .red
    form input[type="checkbox"], .red .nf-form-wrap input[type="radio"], .red
    .nf-form-wrap input[type="checkbox"], .red .ninja-forms-form-wrap input[type="radio"], .red
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #d0003c; }
    .magenta form input[type="radio"], .magenta
    form input[type="checkbox"], .magenta .nf-form-wrap input[type="radio"], .magenta
    .nf-form-wrap input[type="checkbox"], .magenta .ninja-forms-form-wrap input[type="radio"], .magenta
    .ninja-forms-form-wrap input[type="checkbox"] {
      color: #e800ae; }
    form input[type="radio"]:hover,
    form input[type="checkbox"]:hover, .nf-form-wrap input[type="radio"]:hover,
    .nf-form-wrap input[type="checkbox"]:hover, .ninja-forms-form-wrap input[type="radio"]:hover,
    .ninja-forms-form-wrap input[type="checkbox"]:hover {
      cursor: pointer; }
    form input[type="radio"]:hover, form input[type="radio"]:checked, form input[type="radio"]:focus,
    form input[type="checkbox"]:hover,
    form input[type="checkbox"]:checked,
    form input[type="checkbox"]:focus, .nf-form-wrap input[type="radio"]:hover, .nf-form-wrap input[type="radio"]:checked, .nf-form-wrap input[type="radio"]:focus,
    .nf-form-wrap input[type="checkbox"]:hover,
    .nf-form-wrap input[type="checkbox"]:checked,
    .nf-form-wrap input[type="checkbox"]:focus, .ninja-forms-form-wrap input[type="radio"]:hover, .ninja-forms-form-wrap input[type="radio"]:checked, .ninja-forms-form-wrap input[type="radio"]:focus,
    .ninja-forms-form-wrap input[type="checkbox"]:hover,
    .ninja-forms-form-wrap input[type="checkbox"]:checked,
    .ninja-forms-form-wrap input[type="checkbox"]:focus {
      background: none;
      -webkit-box-shadow: inset 0 0 0 2px, 0 0 0 2px;
              box-shadow: inset 0 0 0 2px, 0 0 0 2px; }
    form input[type="radio"]:checked,
    form input[type="checkbox"]:checked, .nf-form-wrap input[type="radio"]:checked,
    .nf-form-wrap input[type="checkbox"]:checked, .ninja-forms-form-wrap input[type="radio"]:checked,
    .ninja-forms-form-wrap input[type="checkbox"]:checked {
      background-color: #000000;
      -webkit-box-shadow: inset 0 0 0 10px;
              box-shadow: inset 0 0 0 10px; }
      .white form input[type="radio"]:checked, .white
      form input[type="checkbox"]:checked, .white .nf-form-wrap input[type="radio"]:checked, .white
      .nf-form-wrap input[type="checkbox"]:checked, .white .ninja-forms-form-wrap input[type="radio"]:checked, .white
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #ffffff; }
      .black form input[type="radio"]:checked, .black
      form input[type="checkbox"]:checked, .black .nf-form-wrap input[type="radio"]:checked, .black
      .nf-form-wrap input[type="checkbox"]:checked, .black .ninja-forms-form-wrap input[type="radio"]:checked, .black
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #000000; }
      .blue form input[type="radio"]:checked, .blue
      form input[type="checkbox"]:checked, .blue .nf-form-wrap input[type="radio"]:checked, .blue
      .nf-form-wrap input[type="checkbox"]:checked, .blue .ninja-forms-form-wrap input[type="radio"]:checked, .blue
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #2d7fc4; }
      .pink form input[type="radio"]:checked, .pink
      form input[type="checkbox"]:checked, .pink .nf-form-wrap input[type="radio"]:checked, .pink
      .nf-form-wrap input[type="checkbox"]:checked, .pink .ninja-forms-form-wrap input[type="radio"]:checked, .pink
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #f99cc8; }
      .teal form input[type="radio"]:checked, .teal
      form input[type="checkbox"]:checked, .teal .nf-form-wrap input[type="radio"]:checked, .teal
      .nf-form-wrap input[type="checkbox"]:checked, .teal .ninja-forms-form-wrap input[type="radio"]:checked, .teal
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #6ecbc7; }
      .purple form input[type="radio"]:checked, .purple
      form input[type="checkbox"]:checked, .purple .nf-form-wrap input[type="radio"]:checked, .purple
      .nf-form-wrap input[type="checkbox"]:checked, .purple .ninja-forms-form-wrap input[type="radio"]:checked, .purple
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #863796; }
      .peach form input[type="radio"]:checked, .peach
      form input[type="checkbox"]:checked, .peach .nf-form-wrap input[type="radio"]:checked, .peach
      .nf-form-wrap input[type="checkbox"]:checked, .peach .ninja-forms-form-wrap input[type="radio"]:checked, .peach
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #ee8275; }
      .navy form input[type="radio"]:checked, .navy
      form input[type="checkbox"]:checked, .navy .nf-form-wrap input[type="radio"]:checked, .navy
      .nf-form-wrap input[type="checkbox"]:checked, .navy .ninja-forms-form-wrap input[type="radio"]:checked, .navy
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #365495; }
      .yellow form input[type="radio"]:checked, .yellow
      form input[type="checkbox"]:checked, .yellow .nf-form-wrap input[type="radio"]:checked, .yellow
      .nf-form-wrap input[type="checkbox"]:checked, .yellow .ninja-forms-form-wrap input[type="radio"]:checked, .yellow
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #facc20; }
      .red form input[type="radio"]:checked, .red
      form input[type="checkbox"]:checked, .red .nf-form-wrap input[type="radio"]:checked, .red
      .nf-form-wrap input[type="checkbox"]:checked, .red .ninja-forms-form-wrap input[type="radio"]:checked, .red
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #d0003c; }
      .magenta form input[type="radio"]:checked, .magenta
      form input[type="checkbox"]:checked, .magenta .nf-form-wrap input[type="radio"]:checked, .magenta
      .nf-form-wrap input[type="checkbox"]:checked, .magenta .ninja-forms-form-wrap input[type="radio"]:checked, .magenta
      .ninja-forms-form-wrap input[type="checkbox"]:checked {
        background-color: #e800ae; }
    form input[type="radio"] :-webkit-autofill,
    form input[type="checkbox"] :-webkit-autofill, .nf-form-wrap input[type="radio"] :-webkit-autofill,
    .nf-form-wrap input[type="checkbox"] :-webkit-autofill, .ninja-forms-form-wrap input[type="radio"] :-webkit-autofill,
    .ninja-forms-form-wrap input[type="checkbox"] :-webkit-autofill {
      -webkit-box-shadow: none;
              box-shadow: none;
      color: inherit; }
  form .checkbox,
  form .radio, .nf-form-wrap .checkbox,
  .nf-form-wrap .radio, .ninja-forms-form-wrap .checkbox,
  .ninja-forms-form-wrap .radio {
    display: block;
    position: relative; }
    form .checkbox label,
    form .radio label, .nf-form-wrap .checkbox label,
    .nf-form-wrap .radio label, .ninja-forms-form-wrap .checkbox label,
    .ninja-forms-form-wrap .radio label {
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border: none;
      border-radius: 0;
      background: none;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      -webkit-transition: all 220ms ease;
      transition: all 220ms ease;
      outline: none;
      font-family: "wmt_medium", san-serif;
      font-size: 1em;
      text-transform: none;
      color: #000000;
      width: 100%;
      padding: 0.9em 0;
      border-bottom: 1px solid #000000;
      padding-right: 2em;
      width: 100%;
      display: block;
      z-index: 0;
      position: relative; }
      form .checkbox label::after,
      form .radio label::after, .nf-form-wrap .checkbox label::after,
      .nf-form-wrap .radio label::after, .ninja-forms-form-wrap .checkbox label::after,
      .ninja-forms-form-wrap .radio label::after {
        clear: both;
        content: "";
        display: block; }
      form .checkbox label:hover,
      form .radio label:hover, .nf-form-wrap .checkbox label:hover,
      .nf-form-wrap .radio label:hover, .ninja-forms-form-wrap .checkbox label:hover,
      .ninja-forms-form-wrap .radio label:hover {
        cursor: pointer;
        background-color: #f4f0e0; }
  form .radio label, .nf-form-wrap .radio label, .ninja-forms-form-wrap .radio label {
    border-bottom: none; }
  .content form .radio, .content .nf-form-wrap .radio, .content .ninja-forms-form-wrap .radio {
    list-style: none;
    margin: 0;
    padding: 0; }
  form .radio li, .nf-form-wrap .radio li, .ninja-forms-form-wrap .radio li {
    display: block;
    position: relative;
    margin-bottom: 0; }
    form .radio li:last-child, .nf-form-wrap .radio li:last-child, .ninja-forms-form-wrap .radio li:last-child {
      margin-bottom: 0; }
  form select, .nf-form-wrap select, .ninja-forms-form-wrap select {
    background-image: url("../assets/windmill/select-black.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 2em; }
    .white form select, .white .nf-form-wrap select, .white .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-white.svg); }
    .black form select, .black .nf-form-wrap select, .black .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-black.svg); }
    .blue form select, .blue .nf-form-wrap select, .blue .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-blue.svg); }
    .pink form select, .pink .nf-form-wrap select, .pink .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-pink.svg); }
    .teal form select, .teal .nf-form-wrap select, .teal .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-teal.svg); }
    .purple form select, .purple .nf-form-wrap select, .purple .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-purple.svg); }
    .peach form select, .peach .nf-form-wrap select, .peach .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-peach.svg); }
    .navy form select, .navy .nf-form-wrap select, .navy .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-navy.svg); }
    .yellow form select, .yellow .nf-form-wrap select, .yellow .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-yellow.svg); }
    .red form select, .red .nf-form-wrap select, .red .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-red.svg); }
    .magenta form select, .magenta .nf-form-wrap select, .magenta .ninja-forms-form-wrap select {
      background-image: url(../assets/windmill/select-magenta.svg); }
    form select:hover, .nf-form-wrap select:hover, .ninja-forms-form-wrap select:hover {
      cursor: pointer; }
    form select::-ms-expand, .nf-form-wrap select::-ms-expand, .ninja-forms-form-wrap select::-ms-expand {
      display: none; }
  .content form h3, .content .nf-form-wrap h3, .content .ninja-forms-form-wrap h3 {
    width: 100%;
    border-top: none;
    font-size: 0.95em;
    margin: 0 0 0.5em;
    letter-spacing: 0.05em; }

.forgot {
  font-family: "wmt_bold", san-serif;
  letter-spacing: 0.05em;
  font-size: 0.7em;
  opacity: 0.5;
  margin-top: 2em;
  display: block;
  -webkit-transition: opacity 220ms ease;
  transition: opacity 220ms ease;
  text-transform: uppercase;
  text-decoration: none; }
  .forgot:hover {
    opacity: 1; }

.search, .amount {
  position: relative; }
  .search label, .amount label {
    font-size: 2em;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0.5em;
    line-height: 0.25em; }
  .search input, .amount input {
    background: #e7deba;
    text-transform: uppercase;
    font-size: 1.4em;
    padding: 0.7em 1em 0.75em 2.2em;
    border-radius: 4em;
    border: none;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
    font-family: "wmt_bold", san-serif; }
    .search input:hover, .amount input:hover {
      background-color: #ffffff; }
    @media (max-width: 480px) {
      .search input, .amount input {
        padding-left: 2.25em; } }
  .search :before, .amount :before {
    position: relative;
    top: -0.1em; }

.amount {
  margin-top: 1em; }
  .amount label {
    font-family: "wmt_extrabold", san-serif;
    font-size: 1.5em;
    left: 0.75em; }
  .amount input {
    font-family: "wmt_medium", san-serif;
    font-size: 1em;
    padding-left: 2.5em;
    border: none; }

.multi-step .step::after {
  clear: both;
  content: "";
  display: block; }

.multi-step .button.next-step {
  width: 100%;
  display: block;
  text-align: center; }

.multi-step .back-step {
  text-align: center;
  display: block;
  padding-top: 1em;
  opacity: 0.6;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.85em; }
  .multi-step .back-step:hover {
    opacity: 1; }

#ninja_forms_required_items, .nf-field-container {
  margin-bottom: -1px !important; }

.nf-field-label label, .nf-field-container.summary {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  font-family: "wmt_medium", san-serif;
  letter-spacing: 0; }

.nf-after-field {
  position: absolute;
  right: 0;
  bottom: 5px; }

.nf-error .ninja-forms-field {
  border-left: none !important;
  border-right: none !important;
  background-color: rgba(232, 0, 0, 0.15); }

.nf-help {
  background-image: none !important; }

.nf-field-container.summary label {
  display: inline-block;
  width: 35%;
  padding-right: 2%; }

.nf-field-container.summary p {
  margin: 0;
  padding-top: 0.9em;
  display: block; }

.nf-field-container.summary span {
  border-bottom: 1px solid black;
  padding-bottom: 0.9em;
  width: 65%;
  display: inline-block; }

.nf-response-msg {
  border-radius: 2em;
  padding: 1.5em;
  background-color: rgba(110, 203, 199, 0.5); }
  .nf-response-msg p {
    margin-bottom: 0; }

.button, button, .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"] {
  font-family: "wmt_extrabold", san-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 0.1em;
  font-size: 1.5em;
  line-height: 1em;
  display: inline-block;
  background: #000000;
  padding: 0.6em 1.4em 0.7em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 10em;
  border: none;
  -webkit-transition: all 220ms ease;
  transition: all 220ms ease; }
  .button.white,
  .white .button, button.white,
  .white button, .nf-form-wrap input[type="button"].white,
  .white .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].white,
  .white .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].white,
  .white .sf-form input[type="submit"] {
    background-color: #ffffff; }
  .button.black,
  .black .button, button.black,
  .black button, .nf-form-wrap input[type="button"].black,
  .black .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].black,
  .black .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].black,
  .black .sf-form input[type="submit"] {
    background-color: #000000; }
  .button.blue,
  .blue .button, button.blue,
  .blue button, .nf-form-wrap input[type="button"].blue,
  .blue .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].blue,
  .blue .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].blue,
  .blue .sf-form input[type="submit"] {
    background-color: #2d7fc4; }
  .button.pink,
  .pink .button, button.pink,
  .pink button, .nf-form-wrap input[type="button"].pink,
  .pink .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].pink,
  .pink .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].pink,
  .pink .sf-form input[type="submit"] {
    background-color: #f99cc8; }
  .button.teal,
  .teal .button, button.teal,
  .teal button, .nf-form-wrap input[type="button"].teal,
  .teal .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].teal,
  .teal .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].teal,
  .teal .sf-form input[type="submit"] {
    background-color: #6ecbc7; }
  .button.purple,
  .purple .button, button.purple,
  .purple button, .nf-form-wrap input[type="button"].purple,
  .purple .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].purple,
  .purple .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].purple,
  .purple .sf-form input[type="submit"] {
    background-color: #863796; }
  .button.peach,
  .peach .button, button.peach,
  .peach button, .nf-form-wrap input[type="button"].peach,
  .peach .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].peach,
  .peach .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].peach,
  .peach .sf-form input[type="submit"] {
    background-color: #ee8275; }
  .button.navy,
  .navy .button, button.navy,
  .navy button, .nf-form-wrap input[type="button"].navy,
  .navy .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].navy,
  .navy .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].navy,
  .navy .sf-form input[type="submit"] {
    background-color: #365495; }
  .button.yellow,
  .yellow .button, button.yellow,
  .yellow button, .nf-form-wrap input[type="button"].yellow,
  .yellow .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].yellow,
  .yellow .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].yellow,
  .yellow .sf-form input[type="submit"] {
    background-color: #facc20; }
  .button.red,
  .red .button, button.red,
  .red button, .nf-form-wrap input[type="button"].red,
  .red .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].red,
  .red .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].red,
  .red .sf-form input[type="submit"] {
    background-color: #d0003c; }
  .button.magenta,
  .magenta .button, button.magenta,
  .magenta button, .nf-form-wrap input[type="button"].magenta,
  .magenta .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"].magenta,
  .magenta .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"].magenta,
  .magenta .sf-form input[type="submit"] {
    background-color: #e800ae; }
  @media (max-width: 700px) {
    .button, button, .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"] {
      font-size: 1.4em;
      padding-left: 1.2em;
      padding-right: 1em; } }
  @media (max-width: 480px) {
    .button, button, .nf-form-wrap input[type="button"], .ninja-forms-form-wrap input[type="button"], .sf-form input[type="submit"] {
      width: 100%;
      text-align: center; } }
  .button:hover, button:hover, .nf-form-wrap input[type="button"]:hover, .ninja-forms-form-wrap input[type="button"]:hover, .sf-form input[type="submit"]:hover {
    background: #ffffff;
    color: #000000;
    cursor: pointer;
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
    .white .button:hover, .white button:hover, .white .nf-form-wrap input[type="button"]:hover, .white .ninja-forms-form-wrap input[type="button"]:hover, .white .sf-form input[type="submit"]:hover {
      color: #ffffff; }
    .black .button:hover, .black button:hover, .black .nf-form-wrap input[type="button"]:hover, .black .ninja-forms-form-wrap input[type="button"]:hover, .black .sf-form input[type="submit"]:hover {
      color: #000000; }
    .blue .button:hover, .blue button:hover, .blue .nf-form-wrap input[type="button"]:hover, .blue .ninja-forms-form-wrap input[type="button"]:hover, .blue .sf-form input[type="submit"]:hover {
      color: #2d7fc4; }
    .pink .button:hover, .pink button:hover, .pink .nf-form-wrap input[type="button"]:hover, .pink .ninja-forms-form-wrap input[type="button"]:hover, .pink .sf-form input[type="submit"]:hover {
      color: #f99cc8; }
    .teal .button:hover, .teal button:hover, .teal .nf-form-wrap input[type="button"]:hover, .teal .ninja-forms-form-wrap input[type="button"]:hover, .teal .sf-form input[type="submit"]:hover {
      color: #6ecbc7; }
    .purple .button:hover, .purple button:hover, .purple .nf-form-wrap input[type="button"]:hover, .purple .ninja-forms-form-wrap input[type="button"]:hover, .purple .sf-form input[type="submit"]:hover {
      color: #863796; }
    .peach .button:hover, .peach button:hover, .peach .nf-form-wrap input[type="button"]:hover, .peach .ninja-forms-form-wrap input[type="button"]:hover, .peach .sf-form input[type="submit"]:hover {
      color: #ee8275; }
    .navy .button:hover, .navy button:hover, .navy .nf-form-wrap input[type="button"]:hover, .navy .ninja-forms-form-wrap input[type="button"]:hover, .navy .sf-form input[type="submit"]:hover {
      color: #365495; }
    .yellow .button:hover, .yellow button:hover, .yellow .nf-form-wrap input[type="button"]:hover, .yellow .ninja-forms-form-wrap input[type="button"]:hover, .yellow .sf-form input[type="submit"]:hover {
      color: #facc20; }
    .red .button:hover, .red button:hover, .red .nf-form-wrap input[type="button"]:hover, .red .ninja-forms-form-wrap input[type="button"]:hover, .red .sf-form input[type="submit"]:hover {
      color: #d0003c; }
    .magenta .button:hover, .magenta button:hover, .magenta .nf-form-wrap input[type="button"]:hover, .magenta .ninja-forms-form-wrap input[type="button"]:hover, .magenta .sf-form input[type="submit"]:hover {
      color: #e800ae; }
  .button:active, button:active, .nf-form-wrap input[type="button"]:active, .ninja-forms-form-wrap input[type="button"]:active, .sf-form input[type="submit"]:active {
    opacity: 0.5; }
  .button.angle, button.angle, .nf-form-wrap input[type="button"].angle, .ninja-forms-form-wrap input[type="button"].angle, .sf-form input[type="submit"].angle {
    padding: 0.6em 2em 0.8em;
    font-size: 1.2em;
    border-radius: 0;
    -webkit-transform: skewX(16deg);
            transform: skewX(16deg);
    margin-right: 0.5em; }
    .button.angle span, button.angle span, .nf-form-wrap input[type="button"].angle span, .ninja-forms-form-wrap input[type="button"].angle span, .sf-form input[type="submit"].angle span {
      display: inline-block;
      -webkit-transform: skewX(-16deg);
              transform: skewX(-16deg); }
    .button.angle:hover, button.angle:hover, .nf-form-wrap input[type="button"].angle:hover, .ninja-forms-form-wrap input[type="button"].angle:hover, .sf-form input[type="submit"].angle:hover {
      -webkit-transform: scale(1.1) skewX(16deg);
              transform: scale(1.1) skewX(16deg); }
    @media (max-width: 700px) {
      .button.angle, button.angle, .nf-form-wrap input[type="button"].angle, .ninja-forms-form-wrap input[type="button"].angle, .sf-form input[type="submit"].angle {
        font-size: 1.1em; } }
    @media (max-width: 480px) {
      .button.angle, button.angle, .nf-form-wrap input[type="button"].angle, .ninja-forms-form-wrap input[type="button"].angle, .sf-form input[type="submit"].angle {
        font-size: 1em;
        padding: 0.6em 1.1em 0.8em;
        margin-right: 0.2em;
        width: auto;
        text-align: center; } }
  .button [class*="icon-"], button [class*="icon-"], .nf-form-wrap input[type="button"] [class*="icon-"], .ninja-forms-form-wrap input[type="button"] [class*="icon-"], .sf-form input[type="submit"] [class*="icon-"] {
    font-size: 1.5em;
    float: right;
    margin-top: -0.2em;
    margin-left: 0.2em; }
  .button .icon-email, button .icon-email, .nf-form-wrap input[type="button"] .icon-email, .ninja-forms-form-wrap input[type="button"] .icon-email, .sf-form input[type="submit"] .icon-email {
    margin-top: -0.12em; }
    @media (max-width: 700px) {
      .button .icon-email, button .icon-email, .nf-form-wrap input[type="button"] .icon-email, .ninja-forms-form-wrap input[type="button"] .icon-email, .sf-form input[type="submit"] .icon-email {
        margin-top: -0.15em; } }
  .button .icon-ticket, button .icon-ticket, .nf-form-wrap input[type="button"] .icon-ticket, .ninja-forms-form-wrap input[type="button"] .icon-ticket, .sf-form input[type="submit"] .icon-ticket {
    margin-top: -0.1em; }

/*
 *  Remodal - v1.0.7
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(10px);
          filter: blur(10px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
          animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
          animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0; }

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 6em 3.5em 4em;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  border-radius: 2em;
  color: #ffffff;
  background-color: #000000; }
  .white .remodal {
    background-color: #ffffff; }
  .black .remodal {
    background-color: #000000; }
  .blue .remodal {
    background-color: #2d7fc4; }
  .pink .remodal {
    background-color: #f99cc8; }
  .teal .remodal {
    background-color: #6ecbc7; }
  .purple .remodal {
    background-color: #863796; }
  .peach .remodal {
    background-color: #ee8275; }
  .navy .remodal {
    background-color: #365495; }
  .yellow .remodal {
    background-color: #facc20; }
  .red .remodal {
    background-color: #d0003c; }
  .magenta .remodal {
    background-color: #e800ae; }
  .remodal h1, .remodal h2, .remodal h3, .remodal h4, .remodal h5, .remodal p, .remodal form, .remodal input, .remodal select, .remodal textarea, .remodal a:not(.button) {
    color: #ffffff !important;
    border-color: #ffffff !important; }
  .remodal h1 {
    font-size: 2.4em;
    margin-bottom: 0.75em;
    letter-spacing: 0.02em; }
  .remodal h2 {
    font-size: 1.1em;
    letter-spacing: 0.05em;
    font-family: "wmt_bold", san-serif;
    margin-bottom: 0.5em;
    margin-top: 2em;
    border: none; }
  .remodal input::-webkit-input-placeholder,
  .remodal textarea::-webkit-input-placeholder,
  .remodal select::-webkit-input-placeholder,
  .remodal checkbox::-webkit-input-placeholder,
  .remodal radio::-webkit-input-placeholder {
    color: #ffffff !important;
    text-align: left; }
  .remodal input:-ms-input-placeholder,
  .remodal textarea:-ms-input-placeholder,
  .remodal select:-ms-input-placeholder,
  .remodal checkbox:-ms-input-placeholder,
  .remodal radio:-ms-input-placeholder {
    color: #ffffff !important;
    text-align: left; }
  .remodal input::-ms-input-placeholder,
  .remodal textarea::-ms-input-placeholder,
  .remodal select::-ms-input-placeholder,
  .remodal checkbox::-ms-input-placeholder,
  .remodal radio::-ms-input-placeholder {
    color: #ffffff !important;
    text-align: left; }
  .remodal input::placeholder,
  .remodal textarea::placeholder,
  .remodal select::placeholder,
  .remodal checkbox::placeholder,
  .remodal radio::placeholder {
    color: #ffffff !important;
    text-align: left; }
    .presenter .remodal input::-webkit-input-placeholder, .presenter
    .remodal textarea::-webkit-input-placeholder, .presenter
    .remodal select::-webkit-input-placeholder, .presenter
    .remodal checkbox::-webkit-input-placeholder, .presenter
    .remodal radio::-webkit-input-placeholder {
      color: #000000 !important; }
    .presenter .remodal input:-ms-input-placeholder, .presenter
    .remodal textarea:-ms-input-placeholder, .presenter
    .remodal select:-ms-input-placeholder, .presenter
    .remodal checkbox:-ms-input-placeholder, .presenter
    .remodal radio:-ms-input-placeholder {
      color: #000000 !important; }
    .presenter .remodal input::-ms-input-placeholder, .presenter
    .remodal textarea::-ms-input-placeholder, .presenter
    .remodal select::-ms-input-placeholder, .presenter
    .remodal checkbox::-ms-input-placeholder, .presenter
    .remodal radio::-ms-input-placeholder {
      color: #000000 !important; }
    .presenter .remodal input::placeholder, .presenter
    .remodal textarea::placeholder, .presenter
    .remodal select::placeholder, .presenter
    .remodal checkbox::placeholder, .presenter
    .remodal radio::placeholder {
      color: #000000 !important; }
  .remodal input:hover,
  .remodal textarea:hover,
  .remodal select:hover,
  .remodal checkbox:hover,
  .remodal radio:hover {
    background-color: rgba(255, 255, 255, 0.12); }
    .presenter .remodal input:hover, .presenter
    .remodal textarea:hover, .presenter
    .remodal select:hover, .presenter
    .remodal checkbox:hover, .presenter
    .remodal radio:hover {
      background-color: rgba(0, 0, 0, 0.06); }
  .remodal input:focus,
  .remodal textarea:focus,
  .remodal select:focus,
  .remodal checkbox:focus,
  .remodal radio:focus {
    background-color: rgba(255, 255, 255, 0.2); }
    .presenter .remodal input:focus, .presenter
    .remodal textarea:focus, .presenter
    .remodal select:focus, .presenter
    .remodal checkbox:focus, .presenter
    .remodal radio:focus {
      background-color: rgba(0, 0, 0, 0.12); }
  .remodal .checkbox label, .remodal .radio label {
    font-size: 0.75em;
    letter-spacing: 0.05em;
    text-align: left;
    border-bottom-color: #ffffff;
    color: #ffffff; }
    .presenter .remodal .checkbox label, .presenter .remodal .radio label {
      color: #000000;
      border-bottom-color: #000000; }
    .remodal .checkbox label:hover, .remodal .radio label:hover {
      background-color: rgba(255, 255, 255, 0.15); }
      .presenter .remodal .checkbox label:hover, .presenter .remodal .radio label:hover {
        background-color: #f4f0e0; }
  .remodal select {
    background-image: url("../assets/windmill/select-white.svg") !important; }
    .presenter .remodal select {
      background-image: url("../assets/windmill/select-black.svg") !important; }
  .remodal button {
    color: #000000;
    background-color: #ffffff !important; }
    .white .remodal button {
      color: #ffffff; }
    .black .remodal button {
      color: #000000; }
    .blue .remodal button {
      color: #2d7fc4; }
    .pink .remodal button {
      color: #f99cc8; }
    .teal .remodal button {
      color: #6ecbc7; }
    .purple .remodal button {
      color: #863796; }
    .peach .remodal button {
      color: #ee8275; }
    .navy .remodal button {
      color: #365495; }
    .yellow .remodal button {
      color: #facc20; }
    .red .remodal button {
      color: #d0003c; }
    .magenta .remodal button {
      color: #e800ae; }
    .presenter .remodal button {
      color: #ffffff;
      background-color: #000000 !important; }
  .remodal .interested {
    margin-top: 1em; }
  .remodal.sf {
    padding-left: 0;
    padding-right: 0; }
    .remodal.sf h1 {
      padding-left: 1.25em;
      padding-right: 1.25em; }
  .remodal.video {
    padding: 0;
    max-width: 80vw;
    background: none; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
          animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
          animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Close button */
.remodal-close {
  position: absolute;
  top: 1em;
  right: 1em;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0 !important;
  padding: 0;
  text-align: center;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  -webkit-transition: all 220ms ease;
  transition: all 220ms ease;
  border: 0;
  outline: 0; }
  .remodal.video .remodal-close {
    top: -1em;
    right: -1em;
    z-index: 99; }

.remodal-close:before {
  font-family: "wmt_bold", san-serif;
  font-size: 1.5em;
  line-height: 0;
  content: "\00d7";
  position: absolute;
  top: 45%;
  left: 55%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%); }

/* Dialog buttons */
/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1; } }

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 0; } }

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 0; } }

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 400px; } }

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38; }

.lt-ie9 .remodal {
  width: 400px; }

header {
  position: relative;
  z-index: 999;
  min-height: 400px;
  height: 40vh; }
  @media (max-width: 768px) {
    header {
      min-height: 280px;
      height: 25vh;
      z-index: auto; } }
  @media print {
    header {
      height: auto;
      margin-bottom: 2em; } }
  header nav {
    width: 100%;
    position: absolute;
    top: 20px;
    z-index: 999 !important; }
    @media (max-width: 480px) {
      header nav {
        top: 12px; } }
    @media print {
      header nav {
        display: none; } }
  header h1 {
    position: relative;
    text-align: center;
    color: #ffffff;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    @media print {
      header h1 {
        color: #000000;
        text-align: left;
        top: 0;
        -webkit-transform: none;
                transform: none; } }

#windmill_logo {
  position: absolute;
  top: 21px;
  left: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 900 !important; }
  @media (max-width: 480px) {
    #windmill_logo {
      left: 10px;
      top: 17px; } }
  #windmill_logo .icon {
    position: fixed;
    width: 45px;
    height: 45px;
    top: 21px; }
    @media (max-width: 768px) {
      #windmill_logo .icon {
        position: absolute;
        top: 0; } }
    @media print {
      #windmill_logo .icon {
        position: absolute;
        top: 0; } }
    #windmill_logo .icon .st0 {
      -webkit-transition: all 500ms ease;
      transition: all 500ms ease;
      fill: none;
      stroke: #ffffff; }
      #windmill_logo .icon .st0.white,
      .white #windmill_logo .icon .st0 {
        stroke: #ffffff; }
      #windmill_logo .icon .st0.black,
      .black #windmill_logo .icon .st0 {
        stroke: #000000; }
      #windmill_logo .icon .st0.blue,
      .blue #windmill_logo .icon .st0 {
        stroke: #2d7fc4; }
      #windmill_logo .icon .st0.pink,
      .pink #windmill_logo .icon .st0 {
        stroke: #f99cc8; }
      #windmill_logo .icon .st0.teal,
      .teal #windmill_logo .icon .st0 {
        stroke: #6ecbc7; }
      #windmill_logo .icon .st0.purple,
      .purple #windmill_logo .icon .st0 {
        stroke: #863796; }
      #windmill_logo .icon .st0.peach,
      .peach #windmill_logo .icon .st0 {
        stroke: #ee8275; }
      #windmill_logo .icon .st0.navy,
      .navy #windmill_logo .icon .st0 {
        stroke: #365495; }
      #windmill_logo .icon .st0.yellow,
      .yellow #windmill_logo .icon .st0 {
        stroke: #facc20; }
      #windmill_logo .icon .st0.red,
      .red #windmill_logo .icon .st0 {
        stroke: #d0003c; }
      #windmill_logo .icon .st0.magenta,
      .magenta #windmill_logo .icon .st0 {
        stroke: #e800ae; }
      .presenter #windmill_logo .icon .st0 {
        stroke: #ffffff; }
      .presenter .black #windmill_logo .icon .st0 {
        stroke: #000000; }
  #windmill_logo .text {
    height: 45px;
    width: 160px;
    margin-left: 44px;
    overflow: visible;
    position: relative; }
    #windmill_logo .text .st0 {
      -webkit-transition: all 500ms ease;
      transition: all 500ms ease;
      stroke: none;
      fill: #ffffff; }
      .white #windmill_logo .text .st0 {
        fill: #ffffff; }
      .black #windmill_logo .text .st0 {
        fill: #000000; }
      .blue #windmill_logo .text .st0 {
        fill: #2d7fc4; }
      .pink #windmill_logo .text .st0 {
        fill: #f99cc8; }
      .teal #windmill_logo .text .st0 {
        fill: #6ecbc7; }
      .purple #windmill_logo .text .st0 {
        fill: #863796; }
      .peach #windmill_logo .text .st0 {
        fill: #ee8275; }
      .navy #windmill_logo .text .st0 {
        fill: #365495; }
      .yellow #windmill_logo .text .st0 {
        fill: #facc20; }
      .red #windmill_logo .text .st0 {
        fill: #d0003c; }
      .magenta #windmill_logo .text .st0 {
        fill: #e800ae; }
      .presenter #windmill_logo .text .st0 {
        fill: #ffffff; }
      .presenter .black #windmill_logo .text .st0 {
        fill: #000000; }

@inculde media($mobile) {
  #windmill_logo .text {
    display: none; } }

footer {
  background: #000000;
  position: relative;
  padding: 6em 4em;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.75em;
  letter-spacing: 0.02em;
  font-family: "wmt_medium", san-serif;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 80px;
  padding-right: 90px;
  /*
    .presenter & {
        background: $color-reverse;
        color: $color-default;
        
        a {
            color: $color-default; 
        }
        
        .logo .svg * {
            stroke: $color-default;
        }
    }*/ }
  @media (max-width: 768px) {
    footer {
      padding-left: 20px;
      padding-right: 70px; } }
  @media (max-width: 480px) {
    footer {
      padding-top: 3em;
      padding-bottom: 3em;
      font-size: 0.75em;
      padding-right: 60px; } }
  @media print {
    footer {
      display: none; } }
  footer .logo {
    display: block;
    margin-bottom: 2em; }
    @media (max-width: 480px) {
      footer .logo {
        margin-bottom: 1em; } }
    footer .logo .svg {
      fill: #ffffff;
      height: 50px;
      width: 50px; }
      @media (max-width: 768px) {
        footer .logo .svg {
          height: 40px;
          height: 40px; } }
  footer nav {
    display: block;
    width: 100%; }
    @media (max-width: 768px) {
      footer nav {
        margin-top: -4px; } }
    footer nav ul {
      margin-bottom: 0.5em; }
      @media (max-width: 480px) {
        footer nav ul {
          display: none; } }
      footer nav ul:last-child {
        padding-right: 0; }
      footer nav ul li {
        display: inline-block;
        background-repeat: no-repeat;
        background-position: left;
        padding: 0 0.4em;
        background-size: 10px 40px; }
        footer nav ul li:first-child {
          padding-left: 0.5em;
          background: none !important; }
    footer nav a {
      color: #ffffff;
      text-decoration: none; }
      footer nav a:hover {
        text-decoration: underline; }
    footer nav .menu a {
      font-family: "wmt_bold", san-serif;
      letter-spacing: 0.1em;
      font-size: 1.5em; }
    footer nav .menu li {
      background: none !important; }
    footer nav .links {
      margin-bottom: 3em; }
    footer nav .social {
      list-style: none;
      margin-bottom: 3em; }
      footer nav .social li {
        display: inline-block;
        width: 25px;
        height: 25px;
        border-width: 1px;
        border-style: solid;
        border-color: #ffffff;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        text-align: center;
        border-radius: 50%;
        position: relative;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        margin: 0 0.2em;
        padding: 0 !important;
        -webkit-transform: translateZ(0); }
        @media (max-width: 480px) {
          footer nav .social li {
            border-width: 1px;
            width: 30px;
            height: 30px; } }
        footer nav .social li a {
          text-decoration: none;
          font-size: 20px;
          width: 100%;
          height: 100%;
          display: block;
          padding-top: 2px;
          line-height: 1em;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          -webkit-animation-delay: 500ms;
                  animation-delay: 500ms;
          -webkit-transition: all 220ms ease;
          transition: all 220ms ease;
          color: #ffffff;
          margin-top: -1px; }
          @media (max-width: 480px) {
            footer nav .social li a {
              font-size: 26px; } }
        footer nav .social li:hover {
          -webkit-transform: scale(1.4);
                  transform: scale(1.4); }
          footer nav .social li:hover a {
            -webkit-transform: scale(1.3) rotate(-16deg);
                    transform: scale(1.3) rotate(-16deg); }
    footer nav .partners li {
      margin: 1em 1em; }
      footer nav .partners li a {
        opacity: 0.35;
        -webkit-transition: opacity 500ms ease;
        transition: opacity 500ms ease; }
        footer nav .partners li a:hover {
          opacity: 1; }
      footer nav .partners li img {
        height: 50px;
        width: auto; }
    footer nav .credits {
      opacity: 0.35;
      text-transform: none;
      -webkit-transition: opacity 220ms ease;
      transition: opacity 220ms ease;
      padding: 0; }
      @media (max-width: 480px) {
        footer nav .credits {
          display: block; } }
      footer nav .credits:hover {
        opacity: 1; }
      footer nav .credits li {
        padding: 0; }
        footer nav .credits li:after {
          content: ' - '; }
        footer nav .credits li:last-child:after {
          content: none; }
        @media (max-width: 480px) {
          footer nav .credits li {
            display: block; }
            footer nav .credits li:after {
              content: none; } }

.related {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 80px;
  padding-right: 90px;
  padding-bottom: 2em; }
  .related::after {
    clear: both;
    content: "";
    display: block; }
  @media (max-width: 768px) {
    .related {
      padding-left: 20px;
      padding-right: 70px; } }
  @media print {
    .related {
      display: none; } }
  .related .show-preview {
    margin-bottom: 2em; }
    .related .show-preview:nth-of-type(n+4) {
      display: none; }

.show-preview {
  width: calc(25% - 25px);
  float: left;
  margin-left: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 1em;
  margin-bottom: 4em;
  position: relative;
  box-sizing: border-box; }
  @media (max-width: 768px) {
    .show-preview {
      width: calc(33.3333333333% - 26.6666666667px);
      float: left;
      margin-left: 20px; } }
  @media (max-width: 480px) {
    .show-preview {
      width: calc(100% - 40px);
      float: left;
      margin-left: 20px;
      padding-left: 0;
      padding-right: 0;
      margin-left: 0;
      width: 100%;
      margin-bottom: 3em; } }
  .related .show-preview {
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
    padding: 0 6%; }
    @media (max-width: 768px) {
      .related .show-preview {
        padding: 0 1em; } }
    @media (max-width: 480px) {
      .related .show-preview {
        width: calc(100% - 40px);
        float: left;
        margin-left: 20px;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        width: 100%;
        margin-bottom: 3em; } }
  .show-preview img {
    border-radius: 50%;
    -webkit-transition: all 220ms ease;
    transition: all 220ms ease; }
    @media (max-width: 480px) {
      .show-preview img {
        width: 30%;
        float: left;
        margin-right: 5%; } }
    .show-preview img:hover {
      -webkit-transform: scale(1.025);
              transform: scale(1.025); }
  .show-preview h3 {
    margin: 0.5em 0;
    padding-top: 0.1em;
    border-top: 3px solid #000000; }
    .white .show-preview h3 {
      border-color: #ffffff; }
    .black .show-preview h3 {
      border-color: #000000; }
    .blue .show-preview h3 {
      border-color: #2d7fc4; }
    .pink .show-preview h3 {
      border-color: #f99cc8; }
    .teal .show-preview h3 {
      border-color: #6ecbc7; }
    .purple .show-preview h3 {
      border-color: #863796; }
    .peach .show-preview h3 {
      border-color: #ee8275; }
    .navy .show-preview h3 {
      border-color: #365495; }
    .yellow .show-preview h3 {
      border-color: #facc20; }
    .red .show-preview h3 {
      border-color: #d0003c; }
    .magenta .show-preview h3 {
      border-color: #e800ae; }
    @media (max-width: 480px) {
      .show-preview h3 {
        width: 65%;
        float: left;
        margin-top: 0;
        border-top-width: 3px; } }
  .show-preview p {
    font-size: 0.9em; }
    @media (max-width: 480px) {
      .show-preview p {
        margin-left: 35%; } }
  @media (max-width: 480px) {
    .show-preview .links {
      width: 65%;
      float: right; } }
  .show-preview .details {
    margin-top: 2em;
    padding-top: 0.1em;
    border-top: 1px solid #000000;
    width: 50%; }
    .white .show-preview .details {
      border-color: #ffffff; }
    .black .show-preview .details {
      border-color: #000000; }
    .blue .show-preview .details {
      border-color: #2d7fc4; }
    .pink .show-preview .details {
      border-color: #f99cc8; }
    .teal .show-preview .details {
      border-color: #6ecbc7; }
    .purple .show-preview .details {
      border-color: #863796; }
    .peach .show-preview .details {
      border-color: #ee8275; }
    .navy .show-preview .details {
      border-color: #365495; }
    .yellow .show-preview .details {
      border-color: #facc20; }
    .red .show-preview .details {
      border-color: #d0003c; }
    .magenta .show-preview .details {
      border-color: #e800ae; }
    @media (max-width: 480px) {
      .show-preview .details {
        width: 65%;
        float: left;
        margin-left: 35%; } }
    .show-preview .details p {
      font-size: 0.8em;
      width: 200%; }
      @media (max-width: 480px) {
        .show-preview .details p {
          width: 100%; } }
      @media (max-width: 480px) {
        .show-preview .details p {
          margin-left: 0; } }
  .show-preview.resources .details {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0.5em; }
    .show-preview.resources .details p {
      font-size: 0.9em; }
  .show-preview.resources .links li {
    border-bottom: none; }
    .show-preview.resources .links li a {
      padding: 1.1em 0; }

.quote {
  font-family: "wmt_extrabold", san-serif;
  color: #333333; }
  @media (max-width: 768px) {
    .quote {
      text-align: center; } }
  .quote p {
    font-size: 2.5em;
    line-height: 1em;
    margin-bottom: 0.4em;
    text-indent: -0.3em; }
    @media (max-width: 1024px) {
      .quote p {
        font-size: 2.3em; } }
    @media (max-width: 480px) {
      .quote p {
        font-size: 1.8em; } }
    .quote p cite {
      font-size: 0.3em;
      margin-top: 0.5em;
      opacity: 1; }
    .media .content .quote p {
      opacity: 1; }
  .quote cite {
    display: block;
    font-size: 0.75em;
    font-style: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
    @media (max-width: 1024px) {
      .quote cite {
        font-size: 0.7em; } }
    .quote cite a {
      text-decoration: none; }
    .media .content .quote cite {
      opacity: 1; }

.promo, .page .promo {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 80px;
  padding-right: 90px;
  position: relative;
  padding-top: 3em; }
  .promo::after, .page .promo::after {
    clear: both;
    content: "";
    display: block; }
  @media (max-width: 768px) {
    .promo, .page .promo {
      padding-left: 20px;
      padding-right: 70px; } }
  .promo:before, .page .promo:before {
    content: '';
    display: block;
    background: #000;
    width: calc(100% - 170px);
    height: 3px;
    position: absolute;
    top: 0;
    left: 80px; }
    .white .promo:before, .white .page .promo:before {
      background-color: #ffffff; }
    .black .promo:before, .black .page .promo:before {
      background-color: #000000; }
    .blue .promo:before, .blue .page .promo:before {
      background-color: #2d7fc4; }
    .pink .promo:before, .pink .page .promo:before {
      background-color: #f99cc8; }
    .teal .promo:before, .teal .page .promo:before {
      background-color: #6ecbc7; }
    .purple .promo:before, .purple .page .promo:before {
      background-color: #863796; }
    .peach .promo:before, .peach .page .promo:before {
      background-color: #ee8275; }
    .navy .promo:before, .navy .page .promo:before {
      background-color: #365495; }
    .yellow .promo:before, .yellow .page .promo:before {
      background-color: #facc20; }
    .red .promo:before, .red .page .promo:before {
      background-color: #d0003c; }
    .magenta .promo:before, .magenta .page .promo:before {
      background-color: #e800ae; }
    @media (max-width: 768px) {
      .promo:before, .page .promo:before {
        width: calc(100% - 70px);
        left: 20px; } }
    .home .promo:before, .home .page .promo:before {
      content: none;
      height: 0; }
  @media print {
    .promo, .page .promo {
      display: none; } }
  .promo > div, .page .promo > div {
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
    padding: 0 7%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center; }
    @media (max-width: 1024px) {
      .promo > div, .page .promo > div {
        padding: 0 5%; } }
    @media (max-width: 768px) {
      .promo > div, .page .promo > div {
        width: calc(100% - 40px);
        float: left;
        margin-left: 20px;
        padding: 0 2em;
        margin-bottom: 4em;
        text-align: left; }
        .promo > div:last-child, .page .promo > div:last-child {
          margin-bottom: 0; } }
    @media (max-width: 480px) {
      .promo > div, .page .promo > div {
        width: calc(100% - 40px);
        float: left;
        margin-left: 20px;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        width: 100%;
        margin-bottom: 4em; } }
  .promo h2, .page .promo h2 {
    border-bottom: 1px solid #000000;
    padding: 0.3em 0 0.4em;
    margin-top: 1em;
    margin-bottom: 1em;
    text-transform: uppercase;
    font-size: 1.6em;
    font-family: "wmt_extrabold", san-serif;
    border-top: 3px solid #000000; }
    @media (max-width: 768px) {
      .promo h2, .page .promo h2 {
        width: 65%;
        float: left;
        margin-top: 3px; } }
    @media (max-width: 480px) {
      .promo h2, .page .promo h2 {
        margin-bottom: 0.5em;
        width: auto;
        float: none;
        margin-top: 1em;
        text-align: center; } }
  .promo p, .page .promo p {
    text-align: left;
    font-size: 0.9em; }
    @media (max-width: 768px) {
      .promo p, .page .promo p {
        width: 60%;
        float: left; } }
    @media (max-width: 480px) {
      .promo p, .page .promo p {
        width: auto;
        float: none;
        text-align: center; } }
  .promo img, .page .promo img {
    margin-bottom: 2em; }
    @media (max-width: 768px) {
      .promo img, .page .promo img {
        width: 30%;
        float: left;
        margin-right: 5%; } }
    @media (max-width: 480px) {
      .promo img, .page .promo img {
        width: 60%;
        float: none;
        margin-left: 20%; } }
  .promo .more, .page .promo .more {
    font-size: 2.6em;
    margin-top: 0.5em;
    color: #000000;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    .white .promo .more, .white .page .promo .more {
      color: #ffffff; }
    .black .promo .more, .black .page .promo .more {
      color: #000000; }
    .blue .promo .more, .blue .page .promo .more {
      color: #2d7fc4; }
    .pink .promo .more, .pink .page .promo .more {
      color: #f99cc8; }
    .teal .promo .more, .teal .page .promo .more {
      color: #6ecbc7; }
    .purple .promo .more, .purple .page .promo .more {
      color: #863796; }
    .peach .promo .more, .peach .page .promo .more {
      color: #ee8275; }
    .navy .promo .more, .navy .page .promo .more {
      color: #365495; }
    .yellow .promo .more, .yellow .page .promo .more {
      color: #facc20; }
    .red .promo .more, .red .page .promo .more {
      color: #d0003c; }
    .magenta .promo .more, .magenta .page .promo .more {
      color: #e800ae; }
    .promo .more:hover, .page .promo .more:hover {
      -webkit-transform: scale(1.2) rotate(360deg);
              transform: scale(1.2) rotate(360deg); }
    @media (max-width: 768px) {
      .promo .more, .page .promo .more {
        display: none; } }

#notification {
  max-width: 500px; }
  #notification.image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    padding-right: 12em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (max-width: 480px) {
      #notification.image {
        padding-right: 4em; } }
  #notification h1 {
    margin-bottom: 0.5em; }
    .white #notification h1 {
      color: #ffffff; }
    .black #notification h1 {
      color: #000000; }
    .blue #notification h1 {
      color: #2d7fc4; }
    .pink #notification h1 {
      color: #f99cc8; }
    .teal #notification h1 {
      color: #6ecbc7; }
    .purple #notification h1 {
      color: #863796; }
    .peach #notification h1 {
      color: #ee8275; }
    .navy #notification h1 {
      color: #365495; }
    .yellow #notification h1 {
      color: #facc20; }
    .red #notification h1 {
      color: #d0003c; }
    .magenta #notification h1 {
      color: #e800ae; }
  #notification p {
    font-size: 1.1em;
    margin-bottom: 1em;
    line-height: 1.35em; }
    .white #notification p {
      color: #ffffff; }
    .black #notification p {
      color: #000000; }
    .blue #notification p {
      color: #2d7fc4; }
    .pink #notification p {
      color: #f99cc8; }
    .teal #notification p {
      color: #6ecbc7; }
    .purple #notification p {
      color: #863796; }
    .peach #notification p {
      color: #ee8275; }
    .navy #notification p {
      color: #365495; }
    .yellow #notification p {
      color: #facc20; }
    .red #notification p {
      color: #d0003c; }
    .magenta #notification p {
      color: #e800ae; }
  #notification .interested {
    margin-top: 3em;
    margin-bottom: 0; }
    #notification .interested .button {
      display: block;
      text-align: center;
      padding: 0.7em 1em !important; }
  #notification button, #notification .button {
    background: #ffffff;
    color: #000000; }

.age, .year {
  width: 30px;
  height: 30px;
  display: block;
  text-align: center;
  float: right;
  margin-top: -30px;
  position: relative;
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
  font-family: "wmt_bold", san-serif; }
  .white .age, .white .year {
    color: #ffffff; }
  .black .age, .black .year {
    color: #000000; }
  .blue .age, .blue .year {
    color: #2d7fc4; }
  .pink .age, .pink .year {
    color: #f99cc8; }
  .teal .age, .teal .year {
    color: #6ecbc7; }
  .purple .age, .purple .year {
    color: #863796; }
  .peach .age, .peach .year {
    color: #ee8275; }
  .navy .age, .navy .year {
    color: #365495; }
  .yellow .age, .yellow .year {
    color: #facc20; }
  .red .age, .red .year {
    color: #d0003c; }
  .magenta .age, .magenta .year {
    color: #e800ae; }
  .white .age, .white .year {
    border-color: #ffffff; }
  .black .age, .black .year {
    border-color: #000000; }
  .blue .age, .blue .year {
    border-color: #2d7fc4; }
  .pink .age, .pink .year {
    border-color: #f99cc8; }
  .teal .age, .teal .year {
    border-color: #6ecbc7; }
  .purple .age, .purple .year {
    border-color: #863796; }
  .peach .age, .peach .year {
    border-color: #ee8275; }
  .navy .age, .navy .year {
    border-color: #365495; }
  .yellow .age, .yellow .year {
    border-color: #facc20; }
  .red .age, .red .year {
    border-color: #d0003c; }
  .magenta .age, .magenta .year {
    border-color: #e800ae; }
  .age span, .year span {
    font-size: 12px;
    display: block;
    width: 100%;
    height: 50%; }
    .age span.from, .year span.from {
      bottom: 50%;
      line-height: 15px; }
    .age span.to, .year span.to {
      top: calc(50% - 1px);
      border-top-style: solid;
      border-top-width: 1px;
      line-height: 11px; }
      .white .age span.to, .white .year span.to {
        border-top-color: #ffffff; }
      .black .age span.to, .black .year span.to {
        border-top-color: #000000; }
      .blue .age span.to, .blue .year span.to {
        border-top-color: #2d7fc4; }
      .pink .age span.to, .pink .year span.to {
        border-top-color: #f99cc8; }
      .teal .age span.to, .teal .year span.to {
        border-top-color: #6ecbc7; }
      .purple .age span.to, .purple .year span.to {
        border-top-color: #863796; }
      .peach .age span.to, .peach .year span.to {
        border-top-color: #ee8275; }
      .navy .age span.to, .navy .year span.to {
        border-top-color: #365495; }
      .yellow .age span.to, .yellow .year span.to {
        border-top-color: #facc20; }
      .red .age span.to, .red .year span.to {
        border-top-color: #d0003c; }
      .magenta .age span.to, .magenta .year span.to {
        border-top-color: #e800ae; }
  @media (max-width: 700px) {
    .age, .year {
      font-size: 1.75em; } }
  @media (max-width: 480px) {
    .age, .year {
      position: absolute;
      top: 115px;
      font-size: 1.6em; } }
  .age:before, .year:before {
    content: 'ages';
    font-size: 7.5px;
    text-transform: uppercase;
    position: absolute;
    letter-spacing: 0.05em;
    top: -14.2857142857px;
    display: block;
    width: 100%; }
    @media (max-width: 1200px) {
      .age:before, .year:before {
        display: none; } }

.year:before {
  content: 'yrs'; }

.side-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  height: 100vh;
  width: 40px;
  z-index: 99;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .white .side-nav {
    background-color: #ffffff; }
  .black .side-nav {
    background-color: #000000; }
  .blue .side-nav {
    background-color: #2d7fc4; }
  .pink .side-nav {
    background-color: #f99cc8; }
  .teal .side-nav {
    background-color: #6ecbc7; }
  .purple .side-nav {
    background-color: #863796; }
  .peach .side-nav {
    background-color: #ee8275; }
  .navy .side-nav {
    background-color: #365495; }
  .yellow .side-nav {
    background-color: #facc20; }
  .red .side-nav {
    background-color: #d0003c; }
  .magenta .side-nav {
    background-color: #e800ae; }
  @media (max-width: 768px) {
    .side-nav {
      display: none; } }
  .side-nav ul li {
    margin: 10px 0;
    overflow: visible; }
    .side-nav ul li a {
      position: relative;
      display: block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      -webkit-box-shadow: inset 0 0 0 1px #ffffff;
              box-shadow: inset 0 0 0 1px #ffffff;
      -webkit-transition: all 500ms ease;
      transition: all 500ms ease; }
      .side-nav ul li a:hover {
        -webkit-box-shadow: inset 0 0 0 10px #ffffff;
                box-shadow: inset 0 0 0 10px #ffffff;
        -webkit-transform: scale(1.1);
                transform: scale(1.1); }
        .side-nav ul li a:hover div {
          opacity: 1;
          visibility: visible;
          -webkit-transform: scale(1);
                  transform: scale(1); }
          .side-nav ul li a:hover div span {
            -webkit-transform: translateY(-50%);
                    transform: translateY(-50%); }
          .side-nav ul li a:hover div:after {
            -webkit-transform: translateY(-50%);
                    transform: translateY(-50%); }
      .side-nav ul li a.active {
        -webkit-box-shadow: inset 0 0 0 10px #ffffff;
                box-shadow: inset 0 0 0 10px #ffffff; }
      .side-nav ul li a div {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        width: 55px;
        height: 55px;
        padding: 10px;
        color: #ffffff;
        left: -105px;
        font-size: 11px;
        text-align: center;
        font-family: "wmt_bold", san-serif;
        line-height: 1em;
        border-radius: 50%;
        top: -32.5px;
        -webkit-transform: scale(0.5) translateX(100%);
                transform: scale(0.5) translateX(100%);
        -webkit-transition: all 220ms ease;
        transition: all 220ms ease; }
        .white .side-nav ul li a div {
          background-color: #ffffff; }
        .black .side-nav ul li a div {
          background-color: #000000; }
        .blue .side-nav ul li a div {
          background-color: #2d7fc4; }
        .pink .side-nav ul li a div {
          background-color: #f99cc8; }
        .teal .side-nav ul li a div {
          background-color: #6ecbc7; }
        .purple .side-nav ul li a div {
          background-color: #863796; }
        .peach .side-nav ul li a div {
          background-color: #ee8275; }
        .navy .side-nav ul li a div {
          background-color: #365495; }
        .yellow .side-nav ul li a div {
          background-color: #facc20; }
        .red .side-nav ul li a div {
          background-color: #d0003c; }
        .magenta .side-nav ul li a div {
          background-color: #e800ae; }
        .side-nav ul li a div span {
          display: block;
          top: 50%;
          -webkit-transform: translateY(-50%) translateX(-10%);
                  transform: translateY(-50%) translateX(-10%);
          position: absolute;
          width: calc(100% - 20px);
          letter-spacing: 0.03em;
          -webkit-transition: all 220ms ease;
          transition: all 220ms ease; }
        .side-nav ul li a div:after {
          display: block;
          content: '';
          right: -10px;
          position: absolute;
          top: 50%;
          -webkit-transform: translateY(-50%) translateX(-40%);
                  transform: translateY(-50%) translateX(-40%);
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 8px 0 8px 12px;
          border-color: transparent;
          -webkit-transition: all 500ms ease;
          transition: all 500ms ease; }
          .white .side-nav ul li a div:after {
            border-left-color: #ffffff; }
          .black .side-nav ul li a div:after {
            border-left-color: #000000; }
          .blue .side-nav ul li a div:after {
            border-left-color: #2d7fc4; }
          .pink .side-nav ul li a div:after {
            border-left-color: #f99cc8; }
          .teal .side-nav ul li a div:after {
            border-left-color: #6ecbc7; }
          .purple .side-nav ul li a div:after {
            border-left-color: #863796; }
          .peach .side-nav ul li a div:after {
            border-left-color: #ee8275; }
          .navy .side-nav ul li a div:after {
            border-left-color: #365495; }
          .yellow .side-nav ul li a div:after {
            border-left-color: #facc20; }
          .red .side-nav ul li a div:after {
            border-left-color: #d0003c; }
          .magenta .side-nav ul li a div:after {
            border-left-color: #e800ae; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

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

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.gallery {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 80px;
  padding-right: 90px;
  min-height: 0;
  position: relative; }
  .gallery::after {
    clear: both;
    content: "";
    display: block; }
  @media (max-width: 768px) {
    .gallery {
      padding-left: 20px;
      padding-right: 70px; } }
  @media (max-width: 480px) {
    .gallery {
      padding-right: 70px; } }

.owl-carousel {
  position: relative;
  z-index: 80;
  padding: 0;
  overflow: hidden; }
  .owl-carousel .owl-stage-outer, .owl-carousel .owl-stage, .owl-carousel .owl-item, .owl-carousel img {
    height: auto; }
  .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    color: #ffffff;
    font-size: 3em;
    width: 100%;
    line-height: 1em; }
    .owl-carousel .owl-nav::after {
      clear: both;
      content: "";
      display: block; }
    @media (max-width: 768px) {
      .owl-carousel .owl-nav {
        font-size: 3em; } }
    @media (max-width: 480px) {
      .owl-carousel .owl-nav {
        font-size: 2em; } }
    .owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
      position: absolute;
      top: -0.5em;
      -webkit-transition: -webkit-transform 220ms ease;
      transition: -webkit-transform 220ms ease;
      transition: transform 220ms ease;
      transition: transform 220ms ease, -webkit-transform 220ms ease;
      width: auto; }
      .owl-carousel .owl-nav .owl-prev [class*="icon-"], .owl-carousel .owl-nav .owl-prev [class*="icon-"], .owl-carousel .owl-nav .owl-next [class*="icon-"], .owl-carousel .owl-nav .owl-next [class*="icon-"] {
        position: relative;
        top: auto;
        right: auto;
        -webkit-transform: none;
                transform: none; }
    .owl-carousel .owl-nav .owl-prev {
      left: 0; }
      .owl-carousel .owl-nav .owl-prev:hover {
        -webkit-transform: translateX(-0.1em);
                transform: translateX(-0.1em); }
    .owl-carousel .owl-nav .owl-next {
      right: 0; }
      .owl-carousel .owl-nav .owl-next:hover {
        -webkit-transform: translateX(0.1em);
                transform: translateX(0.1em); }
  .owl-carousel .owl-item {
    -webkit-transition: opacity 220ms ease;
    transition: opacity 220ms ease;
    /*
        &.center {
            opacity: 1;
            
            .owl-video-play-icon {
                visibility: visible;
                opacity: 1;
            }
        } */ }
    .owl-carousel .owl-item .owl-video-play-icon {
      background-color: #000000;
      border-radius: 50%;
      font-family: "windmill";
      text-align: center;
      height: 3.9em;
      width: 3.9em;
      margin-left: -1.3em;
      margin-top: -1.3em;
      -webkit-transition: all 250ms ease;
      transition: all 250ms ease;
      visibility: hidden;
      opacity: 0; }
      .white .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #ffffff; }
      .black .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #000000; }
      .blue .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #2d7fc4; }
      .pink .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #f99cc8; }
      .teal .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #6ecbc7; }
      .purple .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #863796; }
      .peach .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #ee8275; }
      .navy .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #365495; }
      .yellow .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #facc20; }
      .red .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #d0003c; }
      .magenta .owl-carousel .owl-item .owl-video-play-icon {
        background-color: #e800ae; }
      .center .owl-carousel .owl-item .owl-video-play-icon {
        visibility: visible;
        opacity: 1; }
      .owl-carousel .owl-item .owl-video-play-icon:before {
        content: "\3d";
        color: #ffffff;
        font-size: 2.6em;
        position: relative;
        top: 0.2em;
        margin-left: 0.2em; }
        @media (max-width: 480px) {
          .owl-carousel .owl-item .owl-video-play-icon:before {
            font-size: 3em;
            top: 0.1em; } }
    .owl-carousel .owl-item .owl-video-play-icon {
      visibility: visible;
      opacity: 1; }

.owl-caption {
  font-size: 0.8em;
  font-style: italic;
  margin-top: 0.5em; }
  .owl-caption cite {
    -webkit-transition: opacity 220ms ease;
    transition: opacity 220ms ease; }

.owl-video-wrapper .owl-video-tn {
  padding-bottom: 0; }

.video-embed, .owl-video-frame, .owl-video-tn {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }
  .video-embed iframe, .video-embed object, .video-embed embed, .owl-video-frame iframe, .owl-video-frame object, .owl-video-frame embed, .owl-video-tn iframe, .owl-video-tn object, .owl-video-tn embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.reviews {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 80px;
  padding-right: 90px;
  margin-top: 4em;
  margin-bottom: 4em;
  min-height: auto; }
  .reviews::after {
    clear: both;
    content: "";
    display: block; }
  @media (max-width: 768px) {
    .reviews {
      padding-left: 20px;
      padding-right: 70px; } }
  @media (max-width: 480px) {
    .reviews {
      padding-right: 70px; } }
  .reviews .gallery-reviews {
    background: none;
    min-height: 0;
    height: auto;
    overflow: visible;
    z-index: 0; }
    .reviews .gallery-reviews .owl-item {
      opacity: 1; }
    .reviews .gallery-reviews .owl-nav {
      top: calc(70px + 0.6em); }
      .white .reviews .gallery-reviews .owl-nav {
        color: #ffffff; }
      .black .reviews .gallery-reviews .owl-nav {
        color: #000000; }
      .blue .reviews .gallery-reviews .owl-nav {
        color: #2d7fc4; }
      .pink .reviews .gallery-reviews .owl-nav {
        color: #f99cc8; }
      .teal .reviews .gallery-reviews .owl-nav {
        color: #6ecbc7; }
      .purple .reviews .gallery-reviews .owl-nav {
        color: #863796; }
      .peach .reviews .gallery-reviews .owl-nav {
        color: #ee8275; }
      .navy .reviews .gallery-reviews .owl-nav {
        color: #365495; }
      .yellow .reviews .gallery-reviews .owl-nav {
        color: #facc20; }
      .red .reviews .gallery-reviews .owl-nav {
        color: #d0003c; }
      .magenta .reviews .gallery-reviews .owl-nav {
        color: #e800ae; }
      .reviews .gallery-reviews .owl-nav button {
        font-size: 0.5em;
        width: 2em;
        height: 2em;
        padding: 0;
        margin: 0;
        text-align: center;
        color: #ffffff; }
        .white .reviews .gallery-reviews .owl-nav button {
          background-color: #ffffff; }
        .black .reviews .gallery-reviews .owl-nav button {
          background-color: #000000; }
        .blue .reviews .gallery-reviews .owl-nav button {
          background-color: #2d7fc4; }
        .pink .reviews .gallery-reviews .owl-nav button {
          background-color: #f99cc8; }
        .teal .reviews .gallery-reviews .owl-nav button {
          background-color: #6ecbc7; }
        .purple .reviews .gallery-reviews .owl-nav button {
          background-color: #863796; }
        .peach .reviews .gallery-reviews .owl-nav button {
          background-color: #ee8275; }
        .navy .reviews .gallery-reviews .owl-nav button {
          background-color: #365495; }
        .yellow .reviews .gallery-reviews .owl-nav button {
          background-color: #facc20; }
        .red .reviews .gallery-reviews .owl-nav button {
          background-color: #d0003c; }
        .magenta .reviews .gallery-reviews .owl-nav button {
          background-color: #e800ae; }
        .reviews .gallery-reviews .owl-nav button span {
          margin-left: 0;
          float: none; }
      .reviews .gallery-reviews .owl-nav .owl-prev {
        left: -2.5em; }
      .reviews .gallery-reviews .owl-nav .owl-next {
        right: -2.5em; }
  .reviews .review {
    font-family: "wmt_medium", san-serif;
    font-size: 0.9em; }
    .reviews .review .bubble {
      display: block;
      background: #ffffff;
      border-radius: 1em;
      padding: 2.5em;
      margin-bottom: 1em;
      height: 50%;
      min-height: 140px;
      position: relative;
      -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); }
      .reviews .review .bubble:before, .reviews .review .bubble:after {
        position: absolute;
        display: block;
        width: 70px;
        height: 30px;
        background: #ffffff;
        -webkit-transform: rotate(-45deg) skewX(-45deg);
                transform: rotate(-45deg) skewX(-45deg);
        content: '';
        right: 0;
        bottom: 0;
        z-index: 0; }
      .reviews .review .bubble:after {
        -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
                box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        z-index: -1; }
      .reviews .review .bubble p {
        position: relative;
        z-index: 1; }
    .reviews .review cite {
      font-family: "wmt_bold", san-serif;
      font-style: normal;
      text-transform: uppercase;
      font-size: 0.8em;
      letter-spacing: 0.05em; }
      .reviews .review cite img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-block;
        margin-right: 5px; }
  .reviews .leave-review {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
    left: calc(25% - 25px + 20px);
    position: relative;
    text-align: center;
    margin-top: 4em; }
    @media (max-width: 480px) {
      .reviews .leave-review {
        width: calc(100% - 40px);
        float: left;
        margin-left: 20px;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        width: 100%;
        left: calc(0% - 20px + 20px);
        position: relative;
        width: 100%; } }
    .reviews .leave-review h4, .reviews .leave-review h5 {
      font-family: "wmt_medium", san-serif;
      font-size: 0.85em;
      text-transform: uppercase;
      margin-bottom: 1em;
      font-size: 1em; }

.jump {
  font-size: 4em;
  position: absolute;
  bottom: 0.25em;
  left: 50%;
  margin-left: -0.5em;
  text-decoration: none;
  z-index: 999; }
  .jump.white,
  .white .jump {
    color: #ffffff; }
  .jump.black,
  .black .jump {
    color: #000000; }
  .jump.blue,
  .blue .jump {
    color: #2d7fc4; }
  .jump.pink,
  .pink .jump {
    color: #f99cc8; }
  .jump.teal,
  .teal .jump {
    color: #6ecbc7; }
  .jump.purple,
  .purple .jump {
    color: #863796; }
  .jump.peach,
  .peach .jump {
    color: #ee8275; }
  .jump.navy,
  .navy .jump {
    color: #365495; }
  .jump.yellow,
  .yellow .jump {
    color: #facc20; }
  .jump.red,
  .red .jump {
    color: #d0003c; }
  .jump.magenta,
  .magenta .jump {
    color: #e800ae; }
  .jump:before {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block; }
  .jump:hover:before {
    -webkit-transform: translateY(0.1em) rotateY(180deg);
            transform: translateY(0.1em) rotateY(180deg); }
  .jump:visited.white,
  .white .jump:visited {
    color: #ffffff; }
  .jump:visited.black,
  .black .jump:visited {
    color: #000000; }
  .jump:visited.blue,
  .blue .jump:visited {
    color: #2d7fc4; }
  .jump:visited.pink,
  .pink .jump:visited {
    color: #f99cc8; }
  .jump:visited.teal,
  .teal .jump:visited {
    color: #6ecbc7; }
  .jump:visited.purple,
  .purple .jump:visited {
    color: #863796; }
  .jump:visited.peach,
  .peach .jump:visited {
    color: #ee8275; }
  .jump:visited.navy,
  .navy .jump:visited {
    color: #365495; }
  .jump:visited.yellow,
  .yellow .jump:visited {
    color: #facc20; }
  .jump:visited.red,
  .red .jump:visited {
    color: #d0003c; }
  .jump:visited.magenta,
  .magenta .jump:visited {
    color: #e800ae; }
  @media (max-width: 480px) {
    .jump {
      font-size: 3em; } }
  @media (max-width: 700px) {
    .jump {
      display: none; } }

.popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center; }
  .popup .content a {
    text-decoration: none; }
  .popup .content h2, .popup .content h3, .popup .content h4, .popup .content h5 {
    color: #000000;
    margin-top: 0; }
  .popup .content h2 {
    font-size: 5em; }
    @media (max-width: 768px) {
      .popup .content h2 {
        font-size: 3em; } }
  .popup [class^="icon-"] {
    text-decoration: none;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 7em;
    margin: 0 auto 0.25em;
    background-image: url("../assets/windmill/icon-bg.svg");
    background-size: cover; }
    .white .popup [class^="icon-"] {
      background-color: #ffffff; }
    .black .popup [class^="icon-"] {
      background-color: #000000; }
    .blue .popup [class^="icon-"] {
      background-color: #2d7fc4; }
    .pink .popup [class^="icon-"] {
      background-color: #f99cc8; }
    .teal .popup [class^="icon-"] {
      background-color: #6ecbc7; }
    .purple .popup [class^="icon-"] {
      background-color: #863796; }
    .peach .popup [class^="icon-"] {
      background-color: #ee8275; }
    .navy .popup [class^="icon-"] {
      background-color: #365495; }
    .yellow .popup [class^="icon-"] {
      background-color: #facc20; }
    .red .popup [class^="icon-"] {
      background-color: #d0003c; }
    .magenta .popup [class^="icon-"] {
      background-color: #e800ae; }
    @media (max-width: 768px) {
      .popup [class^="icon-"] {
        font-size: 5em; } }

.studyguide header nav, .studyguide .promo {
  display: none; }

.studyguide footer {
  padding-left: 40px;
  padding-right: 40px; }

.parallax-mirror {
  z-index: -100 !important; }

header {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  header .info {
    display: block;
    margin-left: 7%; }
  header h1 {
    text-align: left;
    top: auto;
    -webkit-transform: none;
            transform: none; }
    .white header h1 {
      color: #ffffff; }
    .black header h1 {
      color: #000000; }
    .blue header h1 {
      color: #2d7fc4; }
    .pink header h1 {
      color: #f99cc8; }
    .teal header h1 {
      color: #6ecbc7; }
    .purple header h1 {
      color: #863796; }
    .peach header h1 {
      color: #ee8275; }
    .navy header h1 {
      color: #365495; }
    .yellow header h1 {
      color: #facc20; }
    .red header h1 {
      color: #d0003c; }
    .magenta header h1 {
      color: #e800ae; }
    @media (max-width: 768px) {
      header h1 {
        font-size: 6em; } }
  header h2 {
    border-top: none;
    text-transform: none;
    font-family: "wmt_book", san-serif;
    letter-spacing: 0;
    margin-bottom: 0;
    font-size: 2.5em; }
    .white header h2 {
      color: #ffffff; }
    .black header h2 {
      color: #000000; }
    .blue header h2 {
      color: #2d7fc4; }
    .pink header h2 {
      color: #f99cc8; }
    .teal header h2 {
      color: #6ecbc7; }
    .purple header h2 {
      color: #863796; }
    .peach header h2 {
      color: #ee8275; }
    .navy header h2 {
      color: #365495; }
    .yellow header h2 {
      color: #facc20; }
    .red header h2 {
      color: #d0003c; }
    .magenta header h2 {
      color: #e800ae; }

.intro {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 8em;
  padding-bottom: 8em;
  color: #ffffff;
  z-index: 1000; }
  @media (max-width: 1440px) {
    .intro {
      padding-top: 7em;
      padding-bottom: 7em; } }
  @media (max-width: 1350px) {
    .intro {
      padding-top: 5em;
      padding-bottom: 5em; } }
  @media (max-width: 1024px) {
    .intro {
      padding-top: 4em;
      padding-bottom: 4em; } }
  @media (max-width: 480px) {
    .intro {
      padding-top: 3em;
      padding-bottom: 3em; } }
  .white .intro {
    background-color: #ffffff; }
  .black .intro {
    background-color: #000000; }
  .blue .intro {
    background-color: #2d7fc4; }
  .pink .intro {
    background-color: #f99cc8; }
  .teal .intro {
    background-color: #6ecbc7; }
  .purple .intro {
    background-color: #863796; }
  .peach .intro {
    background-color: #ee8275; }
  .navy .intro {
    background-color: #365495; }
  .yellow .intro {
    background-color: #facc20; }
  .red .intro {
    background-color: #d0003c; }
  .magenta .intro {
    background-color: #e800ae; }
  .intro h2 {
    color: #ffffff !important;
    text-transform: none;
    font-size: 3em;
    font-family: "wmt_bold", san-serif;
    letter-spacing: 0;
    border: none;
    margin-bottom: 0.75em; }
  .intro .content {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 80px; }
    .intro .content::after {
      clear: both;
      content: "";
      display: block; }
    @media (max-width: 768px) {
      .intro .content {
        padding-right: 65px; } }
    @media (max-width: 480px) {
      .intro .content {
        padding-right: 20px; } }
  .intro .contents {
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
    border-right: 3px solid #ffffff;
    padding-right: 4em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative; }
    @media (max-width: 768px) {
      .intro .contents {
        width: calc(100% - 40px);
        float: left;
        margin-left: 20px;
        margin-left: 2.2em;
        border-right: none;
        border-bottom: 3px solid #ffffff;
        padding-bottom: 1.5em; } }
    @media (max-width: 480px) {
      .intro .contents {
        margin-left: 0;
        padding-right: 0;
        width: 100%; } }
    .intro .contents a {
      color: #ffffff;
      font-size: 1.2em; }
      @media (max-width: 1024px) {
        .intro .contents a {
          font-size: 1.1em; } }
      .intro .contents a.icon-download:before {
        font-size: 2.2em;
        margin-right: 0.25em;
        margin-top: -0.1em;
        float: left;
        display: inline-block;
        -webkit-transition: 220ms all ease;
        transition: 220ms all ease; }
      .intro .contents a.icon-download:hover:before {
        -webkit-transform: scale(1.1);
                transform: scale(1.1); }
      @media (max-width: 768px) {
        .intro .contents a.icon-download {
          position: absolute;
          bottom: 1.5em;
          right: 20px; } }
      @media (max-width: 480px) {
        .intro .contents a.icon-download {
          position: relative;
          bottom: auto;
          right: auto; } }
    .intro .contents ul {
      margin-bottom: 4em; }
      @media (max-width: 768px) {
        .intro .contents ul {
          margin-bottom: 0; } }
      @media (max-width: 480px) {
        .intro .contents ul {
          margin-bottom: 2em; } }
      .intro .contents ul li {
        margin-bottom: 0.75em;
        list-style: none;
        padding-left: 0; }
        .intro .contents ul li:before {
          display: none; }
        .intro .contents ul li a {
          text-decoration: none;
          font-family: "wmt_bold", san-serif;
          font-size: 1.75em;
          -webkit-transition: 220ms all ease;
          transition: 220ms all ease;
          display: inline-block;
          line-height: 1em; }
          .intro .contents ul li a:hover {
            -webkit-transform: translateX(0.2em);
                    transform: translateX(0.2em); }
  .intro .about {
    width: calc(66.6666666667% - 33.3333333333px);
    float: left;
    margin-left: 20px;
    padding-left: 4em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (max-width: 768px) {
      .intro .about {
        width: calc(100% - 40px);
        float: left;
        margin-left: 20px;
        padding-left: 1em;
        margin-top: 2em; } }
    @media (max-width: 480px) {
      .intro .about {
        padding: 0;
        margin: 2em 0 0;
        width: 100%; } }
    .intro .about .clinks {
      font-size: 0.85em;
      margin-top: 2em; }
      .intro .about .clinks li {
        display: inline-block;
        width: 33.33%;
        float: left;
        margin-bottom: 1.5em;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        padding-right: 2em;
        line-height: 1em;
        padding-left: 0; }
        .intro .about .clinks li:before {
          display: none; }
        @media (max-width: 1200px) {
          .intro .about .clinks li {
            width: 50%; } }
        .intro .about .clinks li a {
          color: #ffffff; }
          .intro .about .clinks li a:before {
            font-size: 2.6em;
            margin-right: 0.25em;
            margin-top: -0.25em;
            float: left;
            display: inline-block;
            -webkit-transition: 220ms all ease;
            transition: 220ms all ease; }
          .intro .about .clinks li a:hover:before {
            -webkit-transform: scale(1.1);
                    transform: scale(1.1); }

main {
  padding-right: 40px; }
  @media (max-width: 768px) {
    main {
      padding-right: 0; } }
  main section {
    min-height: 80vh; }
    @media (max-width: 768px) {
      main section {
        min-height: 50vh; } }
    main section > * {
      position: relative;
      z-index: 10; }
    main section .wrap {
      max-width: 1440px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 80px;
      padding-right: 40px; }
      main section .wrap::after {
        clear: both;
        content: "";
        display: block; }
      @media (max-width: 768px) {
        main section .wrap {
          padding-left: 40px;
          padding-right: 40px; } }
      @media (max-width: 480px) {
        main section .wrap {
          padding-left: 0;
          padding-right: 0; } }
  main h2 {
    border-top: none;
    text-transform: none;
    font-family: "wmt_bold", san-serif;
    letter-spacing: 0;
    font-size: 2.2em;
    margin-bottom: 0.5em; }
    .white main h2 {
      color: #ffffff; }
    .black main h2 {
      color: #000000; }
    .blue main h2 {
      color: #2d7fc4; }
    .pink main h2 {
      color: #f99cc8; }
    .teal main h2 {
      color: #6ecbc7; }
    .purple main h2 {
      color: #863796; }
    .peach main h2 {
      color: #ee8275; }
    .navy main h2 {
      color: #365495; }
    .yellow main h2 {
      color: #facc20; }
    .red main h2 {
      color: #d0003c; }
    .magenta main h2 {
      color: #e800ae; }

.white .content h2, .white .content h3, .white .content h4, .white .content h5 {
  color: #ffffff; }

.black .content h2, .black .content h3, .black .content h4, .black .content h5 {
  color: #000000; }

.blue .content h2, .blue .content h3, .blue .content h4, .blue .content h5 {
  color: #2d7fc4; }

.pink .content h2, .pink .content h3, .pink .content h4, .pink .content h5 {
  color: #f99cc8; }

.teal .content h2, .teal .content h3, .teal .content h4, .teal .content h5 {
  color: #6ecbc7; }

.purple .content h2, .purple .content h3, .purple .content h4, .purple .content h5 {
  color: #863796; }

.peach .content h2, .peach .content h3, .peach .content h4, .peach .content h5 {
  color: #ee8275; }

.navy .content h2, .navy .content h3, .navy .content h4, .navy .content h5 {
  color: #365495; }

.yellow .content h2, .yellow .content h3, .yellow .content h4, .yellow .content h5 {
  color: #facc20; }

.red .content h2, .red .content h3, .red .content h4, .red .content h5 {
  color: #d0003c; }

.magenta .content h2, .magenta .content h3, .magenta .content h4, .magenta .content h5 {
  color: #e800ae; }

.content h2.small {
  font-size: 1.4em; }

.content h3 {
  margin-bottom: 0.5em; }

.content p {
  margin-bottom: 0.66em; }

.content ul {
  margin: 1em 0; }
  .content ul li {
    padding-left: 1em;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 0.7em; }
    .content ul li:before {
      display: block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      content: ' ';
      position: absolute;
      left: 0;
      top: calc(0.5em + 2px); }
      .white .content ul li:before {
        background-color: #ffffff; }
      .black .content ul li:before {
        background-color: #000000; }
      .blue .content ul li:before {
        background-color: #2d7fc4; }
      .pink .content ul li:before {
        background-color: #f99cc8; }
      .teal .content ul li:before {
        background-color: #6ecbc7; }
      .purple .content ul li:before {
        background-color: #863796; }
      .peach .content ul li:before {
        background-color: #ee8275; }
      .navy .content ul li:before {
        background-color: #365495; }
      .yellow .content ul li:before {
        background-color: #facc20; }
      .red .content ul li:before {
        background-color: #d0003c; }
      .magenta .content ul li:before {
        background-color: #e800ae; }

.content .icon {
  font-size: 0.9em;
  text-align: left;
  padding: 0;
  margin-bottom: 1em;
  display: block;
  width: 100%;
  height: auto;
  background: none !important;
  font-family: "wmt_medium", san-serif; }
  .content .icon:before {
    color: #000000 !important; }

.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 8em;
  padding-bottom: 8em; }
  @media (max-width: 1440px) {
    .bg {
      padding-top: 7em;
      padding-bottom: 7em; } }
  @media (max-width: 1350px) {
    .bg {
      padding-top: 5em;
      padding-bottom: 5em; } }
  @media (max-width: 1024px) {
    .bg {
      padding-top: 4em;
      padding-bottom: 4em; } }
  @media (max-width: 480px) {
    .bg {
      padding-top: 3em;
      padding-bottom: 3em; } }
  .bg.tile {
    background-size: auto;
    background-repeat: repeat;
    background-attachment: fixed; }

.overlay:before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0; }

.quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 8em;
  padding-bottom: 8em; }
  @media (max-width: 1440px) {
    .quote {
      padding-top: 7em;
      padding-bottom: 7em; } }
  @media (max-width: 1350px) {
    .quote {
      padding-top: 5em;
      padding-bottom: 5em; } }
  @media (max-width: 1024px) {
    .quote {
      padding-top: 4em;
      padding-bottom: 4em; } }
  @media (max-width: 480px) {
    .quote {
      padding-top: 3em;
      padding-bottom: 3em; } }
  .quote blockquote {
    z-index: 10;
    position: relative;
    font-family: "wmt_bold", san-serif;
    font-size: 1.2em;
    width: 60%;
    text-align: center; }
    @media (max-width: 480px) {
      .quote blockquote {
        width: 90%; } }
    .quote blockquote p {
      text-indent: 0; }
      .white .quote blockquote p {
        color: #ffffff; }
      .black .quote blockquote p {
        color: #000000; }
      .blue .quote blockquote p {
        color: #2d7fc4; }
      .pink .quote blockquote p {
        color: #f99cc8; }
      .teal .quote blockquote p {
        color: #6ecbc7; }
      .purple .quote blockquote p {
        color: #863796; }
      .peach .quote blockquote p {
        color: #ee8275; }
      .navy .quote blockquote p {
        color: #365495; }
      .yellow .quote blockquote p {
        color: #facc20; }
      .red .quote blockquote p {
        color: #d0003c; }
      .magenta .quote blockquote p {
        color: #e800ae; }
      .quote blockquote p .icon {
        display: block;
        width: 100%;
        color: #ffffff;
        font-size: 0.33em;
        background: none;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1em; }
        .quote blockquote p .icon:before {
          display: inline-block;
          color: #ffffff;
          font-size: 1.8em;
          margin-top: 0.35em; }
    .quote blockquote cite {
      text-transform: none;
      font-family: "wmt_book", san-serif;
      font-size: 1.2em;
      letter-spacing: 0; }
      .white .quote blockquote cite {
        color: #ffffff; }
      .black .quote blockquote cite {
        color: #000000; }
      .blue .quote blockquote cite {
        color: #2d7fc4; }
      .pink .quote blockquote cite {
        color: #f99cc8; }
      .teal .quote blockquote cite {
        color: #6ecbc7; }
      .purple .quote blockquote cite {
        color: #863796; }
      .peach .quote blockquote cite {
        color: #ee8275; }
      .navy .quote blockquote cite {
        color: #365495; }
      .yellow .quote blockquote cite {
        color: #facc20; }
      .red .quote blockquote cite {
        color: #d0003c; }
      .magenta .quote blockquote cite {
        color: #e800ae; }
      @media (max-width: 480px) {
        .quote blockquote cite {
          font-size: 1.1em;
          line-height: 1.3em; } }
  .quote.right {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left; }
    .quote.right.reversed:before {
      content: ' ';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left top, right top, color-stop(40%, transparent), to(black));
      background: linear-gradient(to right, transparent 40%, black 100%);
      z-index: 0; }
    .quote.right blockquote {
      width: 40%;
      left: 55%;
      text-align: left; }
      @media (max-width: 768px) {
        .quote.right blockquote {
          width: 55%;
          left: 40%; } }
      @media (max-width: 480px) {
        .quote.right blockquote {
          width: 90%;
          left: 5%;
          text-align: center; } }
  .quote.left {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left; }
    .quote.left.reversed:before {
      content: ' ';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), color-stop(60%, transparent));
      background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
      z-index: 0; }
    .quote.left blockquote {
      width: 40%;
      left: 7%;
      text-align: left; }
      @media (max-width: 768px) {
        .quote.left blockquote {
          width: 55%; } }
      @media (max-width: 480px) {
        .quote.left blockquote {
          width: 80%;
          left: 10%;
          text-align: center; } }

.text, .note {
  min-height: auto; }
  .text .content, .note .content {
    width: calc(66.6666666667% - 33.3333333333px);
    float: left;
    margin-left: 20px;
    left: calc(16.6666666667% - 23.3333333333px + 20px);
    position: relative; }
    @media (max-width: 768px) {
      .text .content, .note .content {
        width: calc(83.3333333333% - 36.6666666667px);
        float: left;
        margin-left: 20px;
        left: calc(8.3333333333% - 21.6666666667px + 20px);
        position: relative; } }
    @media (max-width: 480px) {
      .text .content, .note .content {
        width: calc(100% - 40px);
        float: left;
        margin-left: 20px;
        left: calc(0% - 20px + 20px);
        position: relative; } }

.note .content {
  position: relative; }
  .note .content .thumbnail {
    border-radius: 50%;
    width: 120px;
    position: absolute;
    left: -150px;
    top: -10px; }
    @media (max-width: 768px) {
      .note .content .thumbnail {
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%); } }
  .note .content h2 {
    font-family: "wmt_book", san-serif;
    margin: 0; }
    @media (max-width: 768px) {
      .note .content h2 {
        text-align: center; } }
    @media (max-width: 480px) {
      .note .content h2 {
        font-size: 1.5em; } }
  .note .content h3 {
    font-family: "wmt_bold", san-serif;
    font-size: 4em;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.66em; }
    @media (max-width: 768px) {
      .note .content h3 {
        text-align: center; } }
    @media (max-width: 480px) {
      .note .content h3 {
        font-size: 2.2em; } }

.text-image {
  min-height: auto;
  padding-right: 2em;
  background-position: center;
  background-size: cover; }
  .text-image.tile {
    background-size: auto; }
  @media (max-width: 768px) {
    .text-image {
      padding-right: 0; } }
  .text-image .content {
    width: calc(66.6666666667% - 33.3333333333px);
    float: left;
    margin-left: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (max-width: 480px) {
      .text-image .content {
        width: calc(100% - 40px);
        float: left;
        margin-left: 20px; } }
  .text-image .image {
    width: calc(33.3333333333% - 26.6666666667px);
    float: left;
    margin-left: 20px;
    border-radius: 50%; }
    @media (max-width: 480px) {
      .text-image .image {
        width: calc(83.3333333333% - 36.6666666667px);
        float: left;
        margin-left: 20px;
        left: calc(8.3333333333% - 21.6666666667px + 20px);
        position: relative; } }
  .text-image.left .content {
    left: calc(33.3333333333% - 26.6666666667px + 20px);
    position: relative; }
    @media (max-width: 480px) {
      .text-image.left .content {
        left: calc(0% - 20px + 20px);
        position: relative; } }
  .text-image.left .image {
    left: calc(-66.6666666667% - 6.6666666667px + 20px);
    position: relative;
    margin-left: 0;
    margin-right: 20px; }
    @media (max-width: 480px) {
      .text-image.left .image {
        left: calc(8.3333333333% - 21.6666666667px + 20px);
        position: relative;
        margin-left: 20px;
        margin-right: 0; } }
  .text-image.right .content {
    padding-right: 5%; }
    @media (max-width: 480px) {
      .text-image.right .content {
        padding-right: 0; } }
  .text-image h3 {
    margin-top: 2em; }
  .text-image h4, .text-image h5, .text-image h5 {
    margin-top: 1.5em; }
  .text-image ul {
    margin: 1em 0; }
    .text-image ul.columns {
      -webkit-column-count: 2;
              column-count: 2;
      -webkit-column-gap: 20px;
              column-gap: 20px; }
      @media (max-width: 480px) {
        .text-image ul.columns {
          -webkit-column-count: 1;
                  column-count: 1;
          -webkit-column-gap: 0;
                  column-gap: 0; } }
      .text-image ul.columns li {
        display: inline-block; }
    .text-image ul li {
      padding-left: 1em;
      position: relative;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      margin-bottom: 0.7em; }
      .text-image ul li:before {
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        content: ' ';
        position: absolute;
        left: 0;
        top: calc(0.5em + 2px); }
        .white .text-image ul li:before {
          background-color: #ffffff; }
        .black .text-image ul li:before {
          background-color: #000000; }
        .blue .text-image ul li:before {
          background-color: #2d7fc4; }
        .pink .text-image ul li:before {
          background-color: #f99cc8; }
        .teal .text-image ul li:before {
          background-color: #6ecbc7; }
        .purple .text-image ul li:before {
          background-color: #863796; }
        .peach .text-image ul li:before {
          background-color: #ee8275; }
        .navy .text-image ul li:before {
          background-color: #365495; }
        .yellow .text-image ul li:before {
          background-color: #facc20; }
        .red .text-image ul li:before {
          background-color: #d0003c; }
        .magenta .text-image ul li:before {
          background-color: #e800ae; }

.text-columns {
  min-height: auto; }
  .text-columns h2 {
    font-size: 4em;
    margin-left: 20px;
    margin-bottom: 1em; }
    @media (max-width: 480px) {
      .text-columns h2 {
        font-size: 3em; } }
  .text-columns .content {
    width: calc(25% - 25px);
    float: left;
    margin-left: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 2em 0 0;
    margin-bottom: 4em; }
    .text-columns .content:nth-of-type(4n + 1) {
      clear: left; }
      @media (max-width: 768px) {
        .text-columns .content:nth-of-type(4n + 1) {
          clear: none; } }
    @media (max-width: 768px) {
      .text-columns .content {
        width: calc(50% - 30px);
        float: left;
        margin-left: 20px;
        padding: 0 2em 0 0; }
        .text-columns .content:nth-of-type(2n + 1) {
          clear: left; } }
    @media (max-width: 480px) {
      .text-columns .content {
        width: calc(100% - 40px);
        float: left;
        margin-left: 20px;
        padding: 0; } }
    .text-columns .content img {
      border-radius: 50%;
      display: block; }
      .text-columns .content img::after {
        clear: both;
        content: "";
        display: block; }
      @media (max-width: 480px) {
        .text-columns .content img {
          width: 60%;
          margin-bottom: 0.5rem; } }
    .text-columns .content h3 {
      border-top: 2px solid #000000;
      margin-top: 0.5em;
      padding-top: 0.1em;
      margin-bottom: 0.25em; }
      .white .text-columns .content h3 {
        border-color: #ffffff; }
      .black .text-columns .content h3 {
        border-color: #000000; }
      .blue .text-columns .content h3 {
        border-color: #2d7fc4; }
      .pink .text-columns .content h3 {
        border-color: #f99cc8; }
      .teal .text-columns .content h3 {
        border-color: #6ecbc7; }
      .purple .text-columns .content h3 {
        border-color: #863796; }
      .peach .text-columns .content h3 {
        border-color: #ee8275; }
      .navy .text-columns .content h3 {
        border-color: #365495; }
      .yellow .text-columns .content h3 {
        border-color: #facc20; }
      .red .text-columns .content h3 {
        border-color: #d0003c; }
      .magenta .text-columns .content h3 {
        border-color: #e800ae; }
    .text-columns .content h4, .text-columns .content h5 {
      font-family: "wmt_medium", san-serif;
      font-size: 0.85em;
      text-transform: uppercase;
      margin-bottom: 1em;
      margin-bottom: 1.5em; }
      .white .text-columns .content h4, .white .text-columns .content h5 {
        color: #ffffff; }
      .black .text-columns .content h4, .black .text-columns .content h5 {
        color: #000000; }
      .blue .text-columns .content h4, .blue .text-columns .content h5 {
        color: #2d7fc4; }
      .pink .text-columns .content h4, .pink .text-columns .content h5 {
        color: #f99cc8; }
      .teal .text-columns .content h4, .teal .text-columns .content h5 {
        color: #6ecbc7; }
      .purple .text-columns .content h4, .purple .text-columns .content h5 {
        color: #863796; }
      .peach .text-columns .content h4, .peach .text-columns .content h5 {
        color: #ee8275; }
      .navy .text-columns .content h4, .navy .text-columns .content h5 {
        color: #365495; }
      .yellow .text-columns .content h4, .yellow .text-columns .content h5 {
        color: #facc20; }
      .red .text-columns .content h4, .red .text-columns .content h5 {
        color: #d0003c; }
      .magenta .text-columns .content h4, .magenta .text-columns .content h5 {
        color: #e800ae; }
  .text-columns ul.columns {
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 20px;
            column-gap: 20px; }
    .text-columns ul.columns li {
      display: inline-block; }

.button-round [class^="icon-"], [class*=" icon-"], [class*=" icon-"] {
  text-decoration: none;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 7em;
  margin: 0 auto 0.25em;
  background-image: url("../assets/windmill/icon-bg.svg");
  background-size: cover; }
  .white .button-round [class^="icon-"], .white [class*=" icon-"], .white [class*=" icon-"] {
    background-color: #ffffff; }
  .black .button-round [class^="icon-"], .black [class*=" icon-"], .black [class*=" icon-"] {
    background-color: #000000; }
  .blue .button-round [class^="icon-"], .blue [class*=" icon-"], .blue [class*=" icon-"] {
    background-color: #2d7fc4; }
  .pink .button-round [class^="icon-"], .pink [class*=" icon-"], .pink [class*=" icon-"] {
    background-color: #f99cc8; }
  .teal .button-round [class^="icon-"], .teal [class*=" icon-"], .teal [class*=" icon-"] {
    background-color: #6ecbc7; }
  .purple .button-round [class^="icon-"], .purple [class*=" icon-"], .purple [class*=" icon-"] {
    background-color: #863796; }
  .peach .button-round [class^="icon-"], .peach [class*=" icon-"], .peach [class*=" icon-"] {
    background-color: #ee8275; }
  .navy .button-round [class^="icon-"], .navy [class*=" icon-"], .navy [class*=" icon-"] {
    background-color: #365495; }
  .yellow .button-round [class^="icon-"], .yellow [class*=" icon-"], .yellow [class*=" icon-"] {
    background-color: #facc20; }
  .red .button-round [class^="icon-"], .red [class*=" icon-"], .red [class*=" icon-"] {
    background-color: #d0003c; }
  .magenta .button-round [class^="icon-"], .magenta [class*=" icon-"], .magenta [class*=" icon-"] {
    background-color: #e800ae; }
  @media (max-width: 768px) {
    .button-round [class^="icon-"], [class*=" icon-"], [class*=" icon-"] {
      font-size: 5em; } }

@media (max-width: 768px) {
  .gallery {
    padding-left: 40px;
    padding-right: 40px; } }

@media (max-width: 480px) {
  .gallery {
    padding-left: 0;
    padding-right: 0; } }

.gallery.full, .gallery-video.full {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  min-height: auto; }
  .gallery.full h2, .gallery-video.full h2 {
    position: absolute;
    z-index: 90;
    color: #ffffff !important;
    font-size: 2.5em;
    padding: 1em;
    width: 100%;
    display: block;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (max-width: 768px) {
      .gallery.full h2, .gallery-video.full h2 {
        padding: 0.5em; } }

.gallery h2, .gallery-video h2 {
  font-size: 2.5em;
  padding: 0;
  background: none; }

.gallery .owl-carousel .owl-nav, .gallery-video .owl-carousel .owl-nav {
  font-size: 0.65em;
  display: inline-block;
  width: auto;
  bottom: 0.25em;
  right: 1em;
  top: auto;
  left: auto;
  -webkit-transform: none;
          transform: none; }
  @media (max-width: 480px) {
    .gallery .owl-carousel .owl-nav, .gallery-video .owl-carousel .owl-nav {
      display: none; } }
  .gallery .owl-carousel .owl-nav button, .gallery-video .owl-carousel .owl-nav button {
    padding: 0.25em;
    border-radius: 50%;
    -webkit-transition: all ease 220ms;
    transition: all ease 220ms;
    position: relative;
    font-size: 2.6em;
    width: 2.6em;
    height: 2.6em;
    display: inline-block; }
    .white .gallery .owl-carousel .owl-nav button, .white .gallery-video .owl-carousel .owl-nav button {
      background-color: #ffffff; }
    .black .gallery .owl-carousel .owl-nav button, .black .gallery-video .owl-carousel .owl-nav button {
      background-color: #000000; }
    .blue .gallery .owl-carousel .owl-nav button, .blue .gallery-video .owl-carousel .owl-nav button {
      background-color: #2d7fc4; }
    .pink .gallery .owl-carousel .owl-nav button, .pink .gallery-video .owl-carousel .owl-nav button {
      background-color: #f99cc8; }
    .teal .gallery .owl-carousel .owl-nav button, .teal .gallery-video .owl-carousel .owl-nav button {
      background-color: #6ecbc7; }
    .purple .gallery .owl-carousel .owl-nav button, .purple .gallery-video .owl-carousel .owl-nav button {
      background-color: #863796; }
    .peach .gallery .owl-carousel .owl-nav button, .peach .gallery-video .owl-carousel .owl-nav button {
      background-color: #ee8275; }
    .navy .gallery .owl-carousel .owl-nav button, .navy .gallery-video .owl-carousel .owl-nav button {
      background-color: #365495; }
    .yellow .gallery .owl-carousel .owl-nav button, .yellow .gallery-video .owl-carousel .owl-nav button {
      background-color: #facc20; }
    .red .gallery .owl-carousel .owl-nav button, .red .gallery-video .owl-carousel .owl-nav button {
      background-color: #d0003c; }
    .magenta .gallery .owl-carousel .owl-nav button, .magenta .gallery-video .owl-carousel .owl-nav button {
      background-color: #e800ae; }
    .gallery .owl-carousel .owl-nav button.disabled, .gallery-video .owl-carousel .owl-nav button.disabled {
      opacity: 0.25; }
    .gallery .owl-carousel .owl-nav button.owl-prev, .gallery-video .owl-carousel .owl-nav button.owl-prev {
      margin-right: 0.33em; }
    .gallery .owl-carousel .owl-nav button span, .gallery-video .owl-carousel .owl-nav button span {
      margin-left: 0;
      float: none; }

.gallery .owl-carousel .owl-caption, .gallery-video .owl-carousel .owl-caption {
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
  position: absolute;
  margin-top: 0;
  padding: 1em 2em 1.01em 1.5em;
  color: #ffffff;
  font-size: 1em;
  bottom: 0;
  width: calc(50% - 3.5em);
  border-top-right-radius: 2em; }
  .white .gallery .owl-carousel .owl-caption, .white .gallery-video .owl-carousel .owl-caption {
    background-color: #ffffff; }
  .black .gallery .owl-carousel .owl-caption, .black .gallery-video .owl-carousel .owl-caption {
    background-color: #000000; }
  .blue .gallery .owl-carousel .owl-caption, .blue .gallery-video .owl-carousel .owl-caption {
    background-color: #2d7fc4; }
  .pink .gallery .owl-carousel .owl-caption, .pink .gallery-video .owl-carousel .owl-caption {
    background-color: #f99cc8; }
  .teal .gallery .owl-carousel .owl-caption, .teal .gallery-video .owl-carousel .owl-caption {
    background-color: #6ecbc7; }
  .purple .gallery .owl-carousel .owl-caption, .purple .gallery-video .owl-carousel .owl-caption {
    background-color: #863796; }
  .peach .gallery .owl-carousel .owl-caption, .peach .gallery-video .owl-carousel .owl-caption {
    background-color: #ee8275; }
  .navy .gallery .owl-carousel .owl-caption, .navy .gallery-video .owl-carousel .owl-caption {
    background-color: #365495; }
  .yellow .gallery .owl-carousel .owl-caption, .yellow .gallery-video .owl-carousel .owl-caption {
    background-color: #facc20; }
  .red .gallery .owl-carousel .owl-caption, .red .gallery-video .owl-carousel .owl-caption {
    background-color: #d0003c; }
  .magenta .gallery .owl-carousel .owl-caption, .magenta .gallery-video .owl-carousel .owl-caption {
    background-color: #e800ae; }
  .gallery .owl-carousel .owl-caption cite, .gallery-video .owl-carousel .owl-caption cite {
    font-style: normal;
    font-family: "wmt_medium", san-serif; }
  @media (max-width: 768px) {
    .gallery .owl-carousel .owl-caption, .gallery-video .owl-carousel .owl-caption {
      width: 40%; } }
  @media (max-width: 480px) {
    .gallery .owl-carousel .owl-caption, .gallery-video .owl-carousel .owl-caption {
      width: 66%;
      font-size: 0.7em; } }

.video-single {
  padding: 0;
  margin: 0;
  min-height: auto; }

.activites {
  min-height: auto; }
  @media (max-width: 480px) {
    .activites {
      padding-left: 20px;
      padding-right: 20px; } }
  .activites h2 {
    font-size: 4em;
    margin-bottom: 1em; }
    @media (max-width: 480px) {
      .activites h2 {
        font-size: 2.5em; } }
  .activites .page-more {
    border-top: 3px solid #000000;
    font-family: "wmt_book", san-serif;
    font-size: 2.25em;
    text-transform: none;
    letter-spacing: 0;
    padding: 0.25em 0.25em 0.3em;
    text-decoration: none;
    display: block;
    position: relative; }
    .white .activites .page-more {
      color: #ffffff; }
    .black .activites .page-more {
      color: #000000; }
    .blue .activites .page-more {
      color: #2d7fc4; }
    .pink .activites .page-more {
      color: #f99cc8; }
    .teal .activites .page-more {
      color: #6ecbc7; }
    .purple .activites .page-more {
      color: #863796; }
    .peach .activites .page-more {
      color: #ee8275; }
    .navy .activites .page-more {
      color: #365495; }
    .yellow .activites .page-more {
      color: #facc20; }
    .red .activites .page-more {
      color: #d0003c; }
    .magenta .activites .page-more {
      color: #e800ae; }
    .white .activites .page-more {
      border-color: #ffffff; }
    .black .activites .page-more {
      border-color: #000000; }
    .blue .activites .page-more {
      border-color: #2d7fc4; }
    .pink .activites .page-more {
      border-color: #f99cc8; }
    .teal .activites .page-more {
      border-color: #6ecbc7; }
    .purple .activites .page-more {
      border-color: #863796; }
    .peach .activites .page-more {
      border-color: #ee8275; }
    .navy .activites .page-more {
      border-color: #365495; }
    .yellow .activites .page-more {
      border-color: #facc20; }
    .red .activites .page-more {
      border-color: #d0003c; }
    .magenta .activites .page-more {
      border-color: #e800ae; }
    @media (max-width: 480px) {
      .activites .page-more {
        font-size: 1.5em;
        padding-right: 10%; } }
    .activites .page-more span {
      position: absolute;
      font-size: 1.25em;
      right: 0;
      top: 0.2em;
      -webkit-transition: all 220ms ease;
      transition: all 220ms ease; }
    .activites .page-more.less span {
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg); }
  .activites .more-content::after {
    clear: both;
    content: "";
    display: block; }
  .activites .more-content .content {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2em 2em 4em 0.25em; }
    @media (max-width: 480px) {
      .activites .more-content .content {
        width: calc(100% - 40px);
        float: left;
        margin-left: 20px;
        padding: 2 0.5em;
        margin: 0;
        width: 100%; } }
    .activites .more-content .content h3 {
      text-transform: none;
      font-size: 2.75em;
      font-family: "wmt_bold", san-serif;
      margin-bottom: 0.5em;
      margin-top: 1em; }
      .activites .more-content .content h3:first-child {
        margin-top: 0; }
    .activites .more-content .content h4, .activites .more-content .content h5 {
      margin: 2em 0 0.5em; }
    .activites .more-content .content h5 {
      color: #000000;
      text-transform: none;
      letter-spacing: 0;
      font-size: 1em;
      font-family: "wmt_bold", san-serif;
      margin-top: 1.5em; }
    .activites .more-content .content .icon {
      border-top: 1px solid;
      border-radius: 0;
      margin: 1em 0 2em;
      padding-top: 1em;
      width: 66%;
      font-family: "wmt_bold", san-serif; }
      @media (max-width: 768px) {
        .activites .more-content .content .icon {
          width: 100%; } }
  .activites .clinks {
    border-top: 1px solid #000000;
    font-size: 0.85em;
    margin-top: 2em;
    width: 60%; }
    .white .activites .clinks {
      border-color: #ffffff; }
    .black .activites .clinks {
      border-color: #000000; }
    .blue .activites .clinks {
      border-color: #2d7fc4; }
    .pink .activites .clinks {
      border-color: #f99cc8; }
    .teal .activites .clinks {
      border-color: #6ecbc7; }
    .purple .activites .clinks {
      border-color: #863796; }
    .peach .activites .clinks {
      border-color: #ee8275; }
    .navy .activites .clinks {
      border-color: #365495; }
    .yellow .activites .clinks {
      border-color: #facc20; }
    .red .activites .clinks {
      border-color: #d0003c; }
    .magenta .activites .clinks {
      border-color: #e800ae; }
    @media (max-width: 480px) {
      .activites .clinks {
        width: 100%; } }
    .activites .clinks li {
      display: inline-block;
      float: left;
      margin: 0.66em 0.33em 0 0;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: 0; }
      .activites .clinks li:before {
        display: none; }
      .activites .clinks li a {
        position: relative;
        display: block; }
        .white .activites .clinks li a {
          color: #ffffff; }
        .black .activites .clinks li a {
          color: #000000; }
        .blue .activites .clinks li a {
          color: #2d7fc4; }
        .pink .activites .clinks li a {
          color: #f99cc8; }
        .teal .activites .clinks li a {
          color: #6ecbc7; }
        .purple .activites .clinks li a {
          color: #863796; }
        .peach .activites .clinks li a {
          color: #ee8275; }
        .navy .activites .clinks li a {
          color: #365495; }
        .yellow .activites .clinks li a {
          color: #facc20; }
        .red .activites .clinks li a {
          color: #d0003c; }
        .magenta .activites .clinks li a {
          color: #e800ae; }
        .activites .clinks li a:before {
          font-size: 2.6em;
          margin: 0;
          float: left;
          display: inline-block;
          -webkit-transition: 220ms all ease;
          transition: 220ms all ease;
          position: relative; }
        .activites .clinks li a:hover:before {
          -webkit-transform: scale(1.1);
                  transform: scale(1.1); }
        .activites .clinks li a:hover span {
          visibility: visible;
          opacity: 1;
          -webkit-transform: translateX(-50%) translateY(45px);
                  transform: translateX(-50%) translateY(45px); }
        .activites .clinks li a span {
          visibility: hidden;
          opacity: 0;
          position: absolute;
          text-align: center;
          border-radius: 2em;
          font-size: 0.85em;
          letter-spacing: 0.01em;
          line-height: 1em;
          padding: 1em 1.5em 1.1em;
          font-family: "wmt_medium", san-serif;
          color: #ffffff;
          left: 50%;
          -webkit-transform: translateX(-50%) translateY(30px);
                  transform: translateX(-50%) translateY(30px);
          -webkit-transition: all 220ms ease;
          transition: all 220ms ease;
          pointer-events: none; }
          .white .activites .clinks li a span {
            background-color: #ffffff; }
          .black .activites .clinks li a span {
            background-color: #000000; }
          .blue .activites .clinks li a span {
            background-color: #2d7fc4; }
          .pink .activites .clinks li a span {
            background-color: #f99cc8; }
          .teal .activites .clinks li a span {
            background-color: #6ecbc7; }
          .purple .activites .clinks li a span {
            background-color: #863796; }
          .peach .activites .clinks li a span {
            background-color: #ee8275; }
          .navy .activites .clinks li a span {
            background-color: #365495; }
          .yellow .activites .clinks li a span {
            background-color: #facc20; }
          .red .activites .clinks li a span {
            background-color: #d0003c; }
          .magenta .activites .clinks li a span {
            background-color: #e800ae; }
          .activites .clinks li a span:before {
            display: block;
            position: absolute;
            content: '';
            width: 0;
            height: 0;
            top: -8px;
            left: 50%;
            -webkit-transform: translateX(-50%);
                    transform: translateX(-50%);
            border-style: solid;
            border-width: 0 8px 12px 8px;
            border-color: transparent; }
            .white .activites .clinks li a span:before {
              border-bottom-color: #ffffff; }
            .black .activites .clinks li a span:before {
              border-bottom-color: #000000; }
            .blue .activites .clinks li a span:before {
              border-bottom-color: #2d7fc4; }
            .pink .activites .clinks li a span:before {
              border-bottom-color: #f99cc8; }
            .teal .activites .clinks li a span:before {
              border-bottom-color: #6ecbc7; }
            .purple .activites .clinks li a span:before {
              border-bottom-color: #863796; }
            .peach .activites .clinks li a span:before {
              border-bottom-color: #ee8275; }
            .navy .activites .clinks li a span:before {
              border-bottom-color: #365495; }
            .yellow .activites .clinks li a span:before {
              border-bottom-color: #facc20; }
            .red .activites .clinks li a span:before {
              border-bottom-color: #d0003c; }
            .magenta .activites .clinks li a span:before {
              border-bottom-color: #e800ae; }

.c2a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 20px;
  padding-right: 20px; }
  .c2a .content {
    text-align: center; }
    .c2a .content h2 {
      font-size: 4em; }
      @media (max-width: 480px) {
        .c2a .content h2 {
          font-size: 3.3em; } }
    .c2a .content h3 {
      font-family: "wmt_book", san-serif;
      font-size: 2em;
      text-transform: none; }
      @media (max-width: 480px) {
        .c2a .content h3 {
          font-size: 1.5em; } }
    .c2a .content .button {
      font-size: 2em;
      margin-top: 2em; }
      @media (max-width: 480px) {
        .c2a .content .button {
          font-size: 1.5em; } }

.reversed p, .reversed li, .reversed a {
  color: #ffffff; }

.reversed.quote blockquote p, .reversed.quote blockquote cite {
  color: #ffffff; }

.reversed.popup .content h2, .reversed.popup .content h3, .reversed.popup .content h4, .reversed.popup .content h5, .reversed.c2a h2, .reversed.c2a h3, .reversed.c2a h4, .reversed.c2a h5 {
  color: #ffffff; }

footer {
  z-index: 1000; }

.content .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none; }
  .content .logos li {
    margin: 1em 2em 1em 0;
    padding: 0; }
    .content .logos li:before {
      display: none; }
    .content .logos li img {
      height: 60px;
      width: auto; }
    @media (max-width: 480px) {
      .content .logos li {
        margin: 0.5em; }
        .content .logos li img {
          height: 50px; } }

.video-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden; }
  @media (max-width: 480px) {
    .video-bg {
      display: none; } }
  .video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); }
  .video-bg .fallback {
    z-index: 10;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  .video-bg *::-webkit-media-controls-panel {
    display: none !important;
    -webkit-appearance: none; }
  .video-bg *::-webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none; }
  .video-bg *::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none; }

.landing header nav, .landing .promo {
  display: none; }

header {
  height: 100vh;
  overflow: hidden; }
  @media (max-width: 480px) {
    header {
      height: 100vh; } }
  header .video-bg {
    z-index: 0; }
    @media (max-width: 480px) {
      header .video-bg {
        display: block; } }
  header .landing-intro {
    z-index: 10;
    width: 50%;
    padding: 0;
    margin-left: 7%; }
    @media (max-width: 768px) {
      header .landing-intro {
        width: 66%; } }
    @media (max-width: 480px) {
      header .landing-intro {
        width: 86%;
        font-size: 0.9em; } }
    header .landing-intro h1, header .landing-intro h2, header .landing-intro p {
      color: #ffffff;
      display: block;
      width: 100%;
      margin-left: 0; }
    header .landing-intro h1 {
      margin-bottom: 0.25em; }
      @media (max-width: 480px) {
        header .landing-intro h1 {
          font-size: 4.5em; } }
    @media (max-width: 480px) {
      header .landing-intro h2 {
        font-size: 2em; } }
    header .landing-intro p {
      font-size: 1.4em;
      line-height: 1.2em; }
    header .landing-intro .button-round {
      display: block;
      color: #ffffff;
      text-decoration: none;
      font-family: "wmt_bold", san-serif;
      font-size: 2em;
      margin-top: 1.5em; }
      header .landing-intro .button-round:hover span {
        -webkit-transform: scale(1.1);
                transform: scale(1.1); }
      header .landing-intro .button-round span {
        padding: 0.5em;
        font-size: 2em;
        width: 0.25em;
        height: 0.25em;
        float: left;
        margin-top: -0.2em;
        margin-right: 0.25em;
        -webkit-transition: all 220ms ease;
        transition: all 220ms ease; }
  header .popups {
    z-index: 20;
    color: #ffffff;
    position: absolute;
    bottom: 0;
    height: 0;
    width: 100%; }
    @media (max-width: 480px) {
      header .popups {
        display: none; } }
    header .popups:after {
      display: block;
      content: ' ';
      width: 100%;
      height: 0.66em;
      margin-top: -0.66em;
      z-index: 100;
      position: absolute; }
      .white header .popups:after {
        background-color: white; }
      .black header .popups:after {
        background-color: #1a1919; }
      .blue header .popups:after {
        background-color: #4e98d6; }
      .pink header .popups:after {
        background-color: #fccce3; }
      .teal header .popups:after {
        background-color: #94d8d5; }
      .purple header .popups:after {
        background-color: #a745bb; }
      .peach header .popups:after {
        background-color: #f4aba2; }
      .navy header .popups:after {
        background-color: #4469ba; }
      .yellow header .popups:after {
        background-color: #fbd752; }
      .red header .popups:after {
        background-color: #ff044c; }
      .magenta header .popups:after {
        background-color: #ff1cc6; }
      @media (max-width: 768px) {
        header .popups:after {
          height: 2em;
          margin-top: -2em; } }
    header .popups .wrap {
      margin: 0 7%; }
    header .popups .item {
      display: block;
      width: calc(33.33% - 0.25em);
      float: left;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: 1em 2em 3em;
      border-top-left-radius: 2em;
      border-top-right-radius: 2em;
      margin-right: 0.25em;
      -webkit-transform: translateY(-4.5em);
              transform: translateY(-4.5em);
      -webkit-transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 220ms;
      transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 220ms;
      z-index: 50;
      position: relative; }
      .white header .popups .item {
        background-color: #e6e5e5; }
      .black header .popups .item {
        background-color: black; }
      .blue header .popups .item {
        background-color: #23649b; }
      .pink header .popups .item {
        background-color: #f66cad; }
      .teal header .popups .item {
        background-color: #48beb9; }
      .purple header .popups .item {
        background-color: #652971; }
      .peach header .popups .item {
        background-color: #e85948; }
      .navy header .popups .item {
        background-color: #283f70; }
      .yellow header .popups .item {
        background-color: #e2b305; }
      .red header .popups .item {
        background-color: #9d002d; }
      .magenta header .popups .item {
        background-color: #b50088; }
      @media (max-width: 768px) {
        header .popups .item {
          -webkit-transform: translateY(-6.5em);
                  transform: translateY(-6.5em); } }
      header .popups .item:hover {
        -webkit-transform: translateY(calc(-100% + 1em));
                transform: translateY(calc(-100% + 1em));
        cursor: pointer; }
        .white header .popups .item:hover {
          background-color: #ffffff; }
        .black header .popups .item:hover {
          background-color: #000000; }
        .blue header .popups .item:hover {
          background-color: #2d7fc4; }
        .pink header .popups .item:hover {
          background-color: #f99cc8; }
        .teal header .popups .item:hover {
          background-color: #6ecbc7; }
        .purple header .popups .item:hover {
          background-color: #863796; }
        .peach header .popups .item:hover {
          background-color: #ee8275; }
        .navy header .popups .item:hover {
          background-color: #365495; }
        .yellow header .popups .item:hover {
          background-color: #facc20; }
        .red header .popups .item:hover {
          background-color: #d0003c; }
        .magenta header .popups .item:hover {
          background-color: #e800ae; }
        @media (max-width: 768px) {
          header .popups .item:hover {
            -webkit-transform: translateY(calc(-100%));
                    transform: translateY(calc(-100%)); } }
        header .popups .item:hover h3 {
          opacity: 1; }
        header .popups .item:hover img {
          -webkit-transform: translate(-10%, -7%) rotate(0);
                  transform: translate(-10%, -7%) rotate(0); }
      header .popups .item h3 {
        color: #ffffff;
        display: block;
        text-transform: none;
        font-size: 1.5em;
        font-family: "wmt_bold", san-serif;
        margin-bottom: 1em;
        opacity: 0.66; }
        @media (max-width: 1024px) {
          header .popups .item h3 {
            font-size: 1.4em;
            margin-bottom: 1.5em; } }
      header .popups .item p {
        font-size: 0.9em;
        padding-right: 35%; }
        @media (max-width: 1024px) {
          header .popups .item p {
            padding-right: 0; } }
      header .popups .item .button {
        font-size: 0.8em;
        padding: 0.7em 1.5em 0.8em;
        margin: 1em 0.25em 0 0;
        background: #ffffff; }
        .white header .popups .item .button {
          color: #ffffff; }
        .black header .popups .item .button {
          color: #000000; }
        .blue header .popups .item .button {
          color: #2d7fc4; }
        .pink header .popups .item .button {
          color: #f99cc8; }
        .teal header .popups .item .button {
          color: #6ecbc7; }
        .purple header .popups .item .button {
          color: #863796; }
        .peach header .popups .item .button {
          color: #ee8275; }
        .navy header .popups .item .button {
          color: #365495; }
        .yellow header .popups .item .button {
          color: #facc20; }
        .red header .popups .item .button {
          color: #d0003c; }
        .magenta header .popups .item .button {
          color: #e800ae; }
        @media (max-width: 1024px) {
          header .popups .item .button {
            width: 100%; } }
      header .popups .item img {
        position: absolute;
        display: block;
        height: 100%;
        width: auto;
        bottom: 0;
        right: 0;
        margin-top: -1em;
        margin-right: 1em;
        -webkit-transform: translate(-10%, 50%) rotate(-10deg);
                transform: translate(-10%, 50%) rotate(-10deg);
        -webkit-transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 330ms;
        transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 330ms; }
        @media (max-width: 1350px) {
          header .popups .item img {
            height: 80%; } }
        @media (max-width: 1024px) {
          header .popups .item img {
            display: none; } }

main {
  padding-right: 0; }

.text-image .content {
  width: calc(50% - 30px);
  float: left;
  margin-left: 20px; }
  @media (max-width: 480px) {
    .text-image .content {
      width: calc(100% - 40px);
      float: left;
      margin-left: 20px; } }

.text-image.left .content {
  left: calc(41.6666666667% - 28.3333333333px + 20px);
  position: relative; }
  @media (max-width: 480px) {
    .text-image.left .content {
      left: calc(0% - 20px + 20px);
      position: relative; } }

.text-image.left .image {
  left: calc(-41.6666666667% - 11.6666666667px + 20px);
  position: relative; }
  @media (max-width: 480px) {
    .text-image.left .image {
      left: calc(8.3333333333% - 21.6666666667px + 20px);
      position: relative; } }
/*# sourceMappingURL=landing-page.css.map */