/* Vertical Rhythm */
html {
  font-size: 100%;
  line-height: 1.375em;
}

/* Susy Grid */
/* Colours */
/* Font sizes */
/* Breakpoints */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* FSLucas */
@font-face {
  font-family: 'FSLucasWeb-ExtraLight';
  src: url("../webfonts/FSLucasWeb-ExtraLight.eot");
  /* IE9 */
  src: url("../webfonts/FSLucasWeb-ExtraLight.eot?#ie x") format("embedded-opentype"), url("../webfonts/FSLucasWeb-ExtraLight.woff") format("woff");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'FSLucasWeb-Light';
  src: url("../webfonts/FSLucasWeb-Light.eot");
  /* IE9 */
  src: url("../webfonts/FSLucasWeb-Light.eot?#ie x") format("embedded-opentype"), url("../webfonts/FSLucasWeb-Light.woff") format("woff");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'FSLucasWeb-Regular';
  src: url("../webfonts/FSLucasWeb-Regular.eot");
  /* IE9 */
  src: url("../webfonts/FSLucasWeb-Regular.eot?#ie x") format("embedded-opentype"), url("../webfonts/FSLucasWeb-Regular.woff") format("woff");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'FSLucasWeb-Medium';
  src: url("../webfonts/FSLucasWeb-Medium.eot");
  /* IE9 */
  src: url("../webfonts/FSLucasWeb-Medium.eot?#ie x") format("embedded-opentype"), url("../webfonts/FSLucasWeb-Medium.woff") format("woff");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'FSLucasWeb-SemiBold';
  src: url("../webfonts/FSLucasWeb-SemiBold.eot");
  /* IE9 */
  src: url("../webfonts/FSLucasWeb-SemiBold.eot?#ie x") format("embedded-opentype"), url("../webfonts/FSLucasWeb-SemiBold.woff") format("woff");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}
/* Fonts */
/* Grid padding */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

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

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

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

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

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

.slick-prev,
.slick-next {
  width: 0.73333em;
  height: 0.73333em;
  color: #FFF;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  transition: right 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
  top: 50%;
  z-index: 2;
  z-index: 200;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: transparent;
  border: 0;
  font-size: 60px;
  outline: 0;
}
.slick-prev:before,
.slick-next:before {
  font-family: FontAwesome;
}
.slick-prev:hover,
.slick-next:hover {
  color: #D3B37D;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.main-hero-img .slick-prev {
  left: 0.36667em;
}
.main-hero-img .slick-next {
  right: 0.36667em;
}

.related .slick-prev {
  left: -0.73333em;
}
.related .slick-next {
  right: -0.73333em;
}

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

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

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

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

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

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

body {
  font-family: 'FSLucasWeb-Regular', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 22px;
  color: #FFF;
  background-color: #001C36;
}

h1, h2, h3, h4, h5, h6, p, ol, ul, li, hr, blockquote, cite {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}
img.size-medium, img.alignnone, img[class^="wp-image-"] {
	width: auto;
	max-width: 100%;
}
input {
  -webkit-appearance: none;
  border-radius: 0;
}

.page-outer {
  background-color: #001C36;
}

.page-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  *zoom: 1;
  padding: 0 1.375em;
}
.page-inner:after {
  content: " ";
  display: block;
  clear: both;
}
.page-inner:before, .page-inner:after {
  content: "";
  display: table;
}
.page-inner:after {
  clear: both;
}
@media (min-width: 768px) {
  .page-inner {
    padding: 0 2.75em;
  }
}

@media (min-width: 768px) {
  .home .main-page-inner {
    padding: 0;
    max-width: none;
  }
}

.page-template-tmpl-people-landing .main-page-inner,
.page-template-tmpl-practicearea-landing .main-page-inner {
  padding: 0;
  max-width: none;
}

.contact {
  *zoom: 1;
}
.contact:before, .contact:after {
  content: "";
  display: table;
}
.contact:after {
  clear: both;
}
.contact:last-of-type {
  margin-bottom: 1.375em;
}
@media (min-width: 1024px) {
  .contact:last-of-type {
    margin-bottom: 4.125em;
  }
}

.contact-header {
  margin-bottom: 1.375em;
}
@media (min-width: 768px) {
  .contact-header {
    padding-top: 1.375em;
    border-top: 1px solid #D3B37D;
    margin-bottom: 2.75em;
  }
}
@media (min-width: 1024px) {
  .contact-header {
    margin-left: 5.66038%;
    width: 94.33962%;
    float: left;
    margin-right: 1.88679%;
    margin-bottom: 4.125em;
  }
}

.contact-info {
  padding-bottom: 1.375em;
}
@media (min-width: 768px) {
  .contact-info {
    padding-top: 1.375em;
    border-top: 1px solid #D3B37D;
    width: 32.07547%;
    float: left;
    margin-right: 1.88679%;
  }
}
@media (min-width: 1024px) {
  .contact-info {
    margin-left: 5.66038%;
    width: 26.41509%;
    float: left;
    margin-right: 1.88679%;
    margin-bottom: 4.125em;
  }
}
.contact-info h2 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25em;
  line-height: 1.65em;
  line-height: 1.2em;
  font-weight: 100;
  margin-bottom: 0.6875em;
}
@media (min-width: 1024px) {
  .contact-info h2 {
    font-size: 1.875em;
    line-height: 1.46667em;
    line-height: 1.2em;
  }
}
.contact-info p {
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.375em;
  margin-bottom: 1.375em;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info p a {
  color: #D3B37D;
  text-decoration: none;
  transition: all 300ms;
}
.contact-info p a:hover {
  color: #FFF;
}

.contact-map {
  padding-bottom: 1.375em;
}
@media (min-width: 768px) {
  .contact-map {
    width: 66.03774%;
    float: right;
    margin-right: 0;
    padding-top: 1.375em;
    border-top: 1px solid #D3B37D;
  }
}

.gmap-lrg {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background-color: #FFF;
}

.text-only-wrap {
  *zoom: 1;
  margin-bottom: 1.375em;
  padding-left: 1.88679%;
  border-left: 1px solid #D3B37D;
}
.text-only-wrap:before, .text-only-wrap:after {
  content: "";
  display: table;
}
.text-only-wrap:after {
  clear: both;
}
@media (min-width: 768px) {
  .text-only-wrap {
    margin-bottom: 6.875em;
  }
}
@media (min-width: 1024px) {
  .text-only-wrap {
    width: 94.33962%;
    float: left;
    margin-right: 1.88679%;
    margin-left: 3.77358%;
  }
}

.text-only-header h1 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25em;
  line-height: 1.65em;
  line-height: 1.375em;
  font-weight: 100;
  margin-bottom: 1.375em;
}
@media (min-width: 1024px) {
  .text-only-header h1 {
    font-size: 1.875em;
    line-height: 1.46667em;
    line-height: 1.28333em;
  }
}

.text-only-body {
  *zoom: 1;
}
.text-only-body:before, .text-only-body:after {
  content: "";
  display: table;
}
.text-only-body:after {
  clear: both;
}

@media (min-width: 768px) {
  .text-only-primary {
    width: 60.37736%;
    float: left;
    margin-right: 1.88679%;
  }
}
@media (min-width: 1024px) {
  .text-only-primary {
    width: 52%;
    float: left;
    margin-right: 2%;
  }
}

.text-only-secondary {
  padding-top: 1.375em;
  border-top: 1px solid #D3B37D;
}
@media (min-width: 768px) {
  .text-only-secondary {
    margin-left: 5.66038%;
    width: 32.07547%;
    float: right;
    margin-right: 0;
    padding-top: 2.75em;
  }
}
@media (min-width: 1024px) {
  .text-only-secondary {
    margin-left: 12%;
    width: 34%;
    float: right;
    margin-right: 0;
    padding-top: 3.4375em;
  }
}

.text-only-back {
  margin-bottom: 0.6875em;
  padding-top: 0.6875em;
  border-top: 1px solid #D3B37D;
}
.text-only-back a {
  font-size: 0.875em;
  line-height: 1.57143em;
  line-height: 1.57143em;
  color: #D3B37D;
  text-decoration: none;
  transition: all 300ms;
}
.text-only-back a:hover {
  color: #FFF;
}

.pullquote p {
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.375em;
  line-height: 1.5em;
  line-height: 1.25em;
  font-weight: 700;
  color: #D3B37D;
  margin-bottom: 0.6875em;
}
@media (min-width: 768px) {
  .pullquote p {
    font-size: 1em;
    line-height: 1.375em;
    line-height: 1.71875em;
  }
}
@media (min-width: 1024px) {
  .pullquote p {
    font-size: 1.375em;
    line-height: 1.5em;
    line-height: 1.5em;
  }
}
.pullquote cite {
  font-family: 'FSLucasWeb-Medium', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875em;
  line-height: 1.57143em;
  line-height: 1.96429em;
  font-style: normal;
  color: #D3B37D;
}

.preload {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: #001C36;
  top: 0;
  left: 0;
  z-index: 100;
  background: #001C36 url(../img/oval.svg) center center no-repeat;
}
@media (min-width: 768px) {
  .preload {
    display: block;
  }
}

@media (min-width: 768px) {
  .fp-banner {
    width: 100%;
    background-color: #FFF;
    height: 700px;
    position: relative;
    height: 100vh;
  }
}
@media (min-width: 1140px) {
  .fp-banner {
    height: calc(100vh - 180px);
  }
}

@media (min-width: 768px) {
  .parallax-wrap {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
    height: 100vh;
  }
}
@media (min-width: 1140px) {
  .parallax-wrap {
    height: calc(100vh - 180px);
  }
}

@media (min-width: 768px) {
  .fp-banner-img {
    position: absolute;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 150%;
    bottom: 0;
    z-index: 2;
  }
}

@media (min-width: 768px) {
  .fp-banner-img-2 {
    position: absolute;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 150%;
    bottom: 0;
    z-index: 2;
  }
}

.fp-section {
  position: relative;
}

.fp-quote {
  text-align: center;
  margin: 0 auto;
  padding: 1.375em 0;
  background-color: #001C36;
}
@media (min-width: 768px) {
  .fp-quote {
    z-index: 2;
    position: relative;
    width: 740px;
  }
}
.fp-quote p {
  margin-top: 20px;
  font-size: 1.875em;
  line-height: 1.46667em;
  font-weight: bold;
  color: #D3B37D;
}
@media (min-width: 768px) {
  .fp-quote p {
    font-size: 2.5em;
    line-height: 1.1em;
  }
}
.fp-quote footer {
  margin: 20px 0;
  color: #D3B37D;
}
@media (min-width: 768px) {
  .fp-quote footer {
    font-size: 1.25em;
    line-height: 1.65em;
  }
}

@media (min-width: 768px) {
  .ph {
    position: absolute;
    z-index: 5;
  }
}

@media (min-width: 768px) {
  .fp-intro {
    width: 49.0566%;
    height: 400px;
    padding: 0 1.375em 0 2.75em;
    background-color: transparent;
    margin-top: 100px;
  }
}

@media (min-width: 768px) {
  .fp-inner {
    background-color: red;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .fp-nav-items {
    width: 32.07547%;
    height: 400px;
    right: 2.75em;
    top: 100px;
  }
}

@media (min-width: 768px) {
  .fp-pa {
    width: 32.07547%;
    height: 400px;
    right: 2.75em;
    top: 75%;
  }
}

@media (min-width: 768px) {
  .fp-line {
    width: 1px;
    background-color: #D3B37D;
    z-index: 3;
    position: absolute;
    left: 50%;
    top: 100px;
    height: 100vh;
  }
}

@media (min-width: 768px) {
  .fp-arrow {
    display: block;
    width: 50px;
    height: 40px;
    position: absolute;
    top: 0;
    opacity: 0;
    transform: translate(-50%, -60px);
    text-align: center;
  }
  .fp-arrow:before {
    content: "\f107";
    font-family: FontAwesome;
    line-height: 60px;
    color: #FFF;
    font-size: 72px;
  }
}

@media (min-width: 768px) {
  .fp-find {
    width: 49.0566%;
    margin-bottom: 150px;
    padding: 0 2.75em;
    top: -5.5em;
  }
  .fp-find .module-people {
    background-color: #001C36;
  }
}

@media (min-width: 768px) {
  .fp-line-flex {
    width: 1px;
    background-color: #D3B37D;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .section-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
  }
}

@media (min-width: 768px) {
  .fp-events {
    width: 49.0566%;
    height: 300px;
    right: 0;
    padding: 0 2.75em;
    background-color: transparent;
    position: absolute;
    z-index: 5;
  }
  .fp-events .module-events {
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

@media (min-width: 768px) {
  .fp-section-4 {
    background-color: #001C36;
    padding: 150px 0;
  }
}

@media (min-width: 768px) {
  .page-section-wrap {
    width: 100%;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
}

.section-page-inner {
  position: relative;
  padding: 0;
}

@media (min-width: 768px) {
  .fp-section-2 .section-page-inner {
    padding: 150px 0;
  }
}

.fp-banner,
.fp-section {
  display: none;
}
@media (min-width: 768px) {
  .fp-banner,
  .fp-section {
    display: block;
  }
}

.mobile-content {
  padding: 0 10px;
}
@media (min-width: 768px) {
  .mobile-content {
    display: none;
  }
}

.fp-area {
  display: block;
  position: relative;
  margin-bottom: 10px;
}
.fp-area img {
  display: block;
  z-index: 1;
}
.fp-area span {
  display: block;
  color: #FFF;
  position: absolute;
  z-index: 1;
  background-color: rgba(114, 127, 154, 0.9);
  text-align: center;
  padding: 10px;
  width: calc(100% - 20px);
  margin: 10px;
  bottom: 0;
  left: 0;
}

.bg {
  width: 100%;
  min-height: 100vh;
  background-image: url(../img/parallax.jpg);
  background-size: cover;
  background-position: center center;
  position: fixed;
  z-index: 1;
  top: 0;
}

.bg-cover {
  width: 100%;
  min-height: 100vh;
  z-index: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  background-color: #001C36;
}

.page-template-tmpl-people-landing,
.page-template-tmpl-practicearea-landing {
  background-color: transparent;
}
.page-template-tmpl-people-landing .main-header,
.page-template-tmpl-practicearea-landing .main-header {
  background-color: #001C36;
}
.page-template-tmpl-people-landing .location-footer,
.page-template-tmpl-practicearea-landing .location-footer {
  display: none;
}

.landing-wrapper {
  padding: 4.125em 0;
  *zoom: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
.landing-wrapper:before, .landing-wrapper:after {
  content: "";
  display: table;
}
.landing-wrapper:after {
  clear: both;
}
.landing-wrapper:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 768px) {
  .page-template-tmpl-people-landing .landing-wrapper {
    height: calc(100vh - 180px);
  }
}

.landing-pane {
  margin-left: 5.66038%;
  width: 88.67925%;
  float: left;
  margin-right: 1.88679%;
  margin-right: 5.66038%;
}
@media (min-width: 1024px) {
  .landing-pane {
    width: 54.71698%;
    float: left;
    margin-right: 1.88679%;
    margin-left: 22.64151%;
  }
}
.landing-pane header {
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.75em;
}

.landing-drop-nav > ul {
  list-style-type: none;
}
.landing-drop-nav > ul > li {
  margin-bottom: 0.6875em;
}
.landing-drop-nav > ul > li > a {
  display: block;
  padding: 1.375em 5.5em;
  background-color: rgba(114, 127, 154, 0.9);
  width: 100%;
  text-decoration: none;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
}
.landing-drop-nav > ul > li .toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  cursor: pointer;
  line-height: 4.125em;
  width: 4.125em;
  height: 4.125em;
  text-align: center;
  transition: all 250ms;
}
.landing-drop-nav > ul > li .toggle:before {
  content: "\f107";
  font-family: FontAwesome;
  color: #FFF;
}
.landing-drop-nav > ul > li .toggle.active:before {
  content: "\f106";
}
.landing-drop-nav > ul > li.active .toggle:before {
  content: "\f106";
}
.landing-drop-nav > ul > li a {
  transition: all 250ms;
}
.landing-drop-nav > ul > li a:hover {
  color: #FFF;
  background-color: #001C36;
}
.landing-drop-nav > ul > li.page_item_has_children, .landing-drop-nav > ul > li.menu-item-has-children {
  *zoom: 1;
  position: relative;
}
.landing-drop-nav > ul > li.page_item_has_children:before, .landing-drop-nav > ul > li.page_item_has_children:after, .landing-drop-nav > ul > li.menu-item-has-children:before, .landing-drop-nav > ul > li.menu-item-has-children:after {
  content: "";
  display: table;
}
.landing-drop-nav > ul > li.page_item_has_children:after, .landing-drop-nav > ul > li.menu-item-has-children:after {
  clear: both;
}
.landing-drop-nav .children,
.landing-drop-nav .sub-menu {
  display: none;
  *zoom: 1;
  list-style-type: none;
  padding: 1.375em;
  background-color: rgba(255, 255, 255, 0.9);
}
.landing-drop-nav .children:before, .landing-drop-nav .children:after,
.landing-drop-nav .sub-menu:before,
.landing-drop-nav .sub-menu:after {
  content: "";
  display: table;
}
.landing-drop-nav .children:after,
.landing-drop-nav .sub-menu:after {
  clear: both;
}
.landing-drop-nav .children li,
.landing-drop-nav .sub-menu li {
  border-bottom: 1px solid #001C36;
}
.landing-drop-nav .children li:last-of-type,
.landing-drop-nav .sub-menu li:last-of-type {
  border: 0;
}
.landing-drop-nav .children li a,
.landing-drop-nav .sub-menu li a {
  display: block;
  text-decoration: none;
  color: #001C36;
  text-transform: uppercase;
  text-align: center;
  line-height: 2.75em;
}

.intro-col {
  margin-bottom: 1.375em;
}
@media (min-width: 768px) {
  .intro-col {
    width: 29.78723%;
    float: left;
    margin-right: 2.12766%;
  }
}

@media (min-width: 768px) {
  .main-col {
    width: 68.08511%;
    float: right;
    margin-right: 0;
    padding-left: 1.88679%;
    border-left: 1px solid #D3B37D;
  }
}

.main-col-text h1 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25em;
  line-height: 1.65em;
  line-height: 1.375em;
  font-weight: 100;
  margin-bottom: 0.6875em;
}
@media (min-width: 1024px) {
  .main-col-text h1 {
    font-size: 1.875em;
    line-height: 1.46667em;
    line-height: 1.28333em;
  }
}
.main-col-text h2 {
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.375em;
  color: #D3B37D;
  border-top: 1px solid #D3B37D;
  margin-bottom: 0.6875em;
  padding-top: 0.6875em;
}
@media (min-width: 1024px) {
  .main-col-text h2 {
    padding-top: 1.03125em;
  }
}
.main-col-text p, .main-col-text ul, .main-col-text ol {
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.375em;
  margin-bottom: 1.03125em;
}
@media (min-width: 1024px) {
  .main-col-text p, .main-col-text ul, .main-col-text ol {
    margin-bottom: 1.375em;
  }
}
.main-col-text ul {
  margin-left: 1.25em;
}
.main-col-text ul.page-list {
  list-style: none;
  margin-left: 0;
}
.main-col-text ul.page-list ul {
  list-style: none;
  margin-bottom: 0;
}
.main-col-text .thumblist ul {
  margin: 0;
}
.main-col-text ol {
  list-style-type: decimal-leading-zero;
  margin-left: 1.6em;
}
.main-col-text a {
  color: #D3B37D;
/*  text-decoration: none;*/
  transition: all 300ms;
}
.main-col-text a:hover {
  color: #FFF;
}

.intro-col-header {
  margin-bottom: 1.375em;
}
@media (min-width: 768px) {
  .intro-col-header {
    margin-bottom: 2.75em;
  }
}
@media (min-width: 1024px) {
  .intro-col-header {
    margin-bottom: 4.125em;
  }
}

/* Tiled list */
.tiled-list ul {
  *zoom: 1;
  list-style: none;
}
.tiled-list ul:before, .tiled-list ul:after {
  content: "";
  display: table;
}
.tiled-list ul:after {
  clear: both;
}

.tiled-list-item {
  margin-bottom: 1.375em;
}
.tiled-list-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .tiled-list-item {
    width: 48.27586%;
    float: left;
    margin-bottom: 2.75em;
  }
  .tiled-list-item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .tiled-list-item:nth-child(2n + 2) {
    margin-left: 51.72414%;
    margin-right: -100%;
    clear: none;
  }
  .tiled-list-item:nth-last-child(2) {
    margin-bottom: 0;
  }
}
.tiled-list-item a {
  font-size: 0.875em;
  line-height: 1.57143em;
  line-height: 1.57143em;
  text-decoration: none;
  color: #FFF;
  transition: all 300ms;
}
@media (min-width: 768px) {
  .tiled-list-item a {
    font-size: 1.3vw;
  }
}
@media (min-width: 1140px) {
  .tiled-list-item a {
    font-size: 0.875em;
    line-height: 1.57143em;
    line-height: 1.57143em;
  }
}
.tiled-list-item a:hover .tile-overlay {
  height: 100%;
  background-color: #667786;
}
.tiled-list-item a:hover .tiled-list-item-btn span {
  background-color: #667786;
  color: #FFF;
  border: 1px solid #667786;
}

.tile-img {
  position: relative;
  margin-bottom: 0.6875em;
}

.tile-overlay {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background-color: #D3B37D;
  padding: 1.375em;
  transition: all 300ms ease;
}
.tile-overlay p {
  font-family: 'FSLucasWeb-SemiBold', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.17857em;
}
.tile-overlay p.date {
  font-family: 'FSLucasWeb-Regular', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dummy-tile {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 96.38554%;
  background-color: #667786;
}

.tiled-list-item-btn span {
  display: block;
  width: 100%;
  color: #D3B37D;
  text-decoration: none;
  padding: .25em .5em;
  border: 1px solid #D3B37D;
  transition: all 300ms;
}

/* Row list */
.row-list {
  font-size: 0.875em;
  line-height: 1.57143em;
  line-height: 1em;
}
@media (min-width: 1024px) {
  .row-list {
    line-height: 1em;
    font-size: 1em;
    line-height: 1.375em;
  }
}
.row-list ul {
  list-style: none;
}
.row-list li a {
  *zoom: 1;
  color: #FFF;
  text-decoration: none;
  background-color: #1a334a;
  padding: 1.375em 0.6875em;
  transition: all 300ms;
  position: relative;
}
.row-list li a:before, .row-list li a:after {
  content: "";
  display: table;
}
.row-list li a:after {
  clear: both;
}
.row-list li a:hover {
  background-color: #D3B37D;
}
@media (min-width: 1024px) {
  .row-list li a {
    padding: 1.375em 0.6875em;
  }
}
.row-list li a .fa {
  position: absolute;
  right: 1em;
}
.row-list li:nth-child(even) a {
  background-color: #001C36;
}
.row-list li:nth-child(even) a:hover {
  background-color: #D3B37D;
}
.row-list li.row-list-item a {
  display: block;
}
@media (min-width: 768px) {
  .row-list li.row-list-item a {
    display: flex;
    align-items: center;
  }
}
.row-list li span {
  display: block;
}
@media (min-width: 768px) {
  .row-list li span.text {
    flex: 1 6 500px;
  }
}
@media (min-width: 768px) {
  .row-list li span.venue {
    flex: 1 2 200px;
  }
}
@media (min-width: 768px) {
  .row-list li span.date, .row-list li span.cpd, .row-list li span.cost {
    flex: 1 1 100px;
  }
}
@media (min-width: 768px) {
  .row-list li span.date {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .row-list li span.cpd, .row-list li span.cost, .row-list li span.venue {
    text-align: center;
  }
}

/* Related people - Seminars page */
.related-people {
  margin-top: 1.375em;
}
@media (min-width: 1024px) {
  .related-people {
    margin-top: 2.75em;
  }
}
.related-people .thumblist .thumblist-item {
  width: 49.0566%;
  float: left;
  margin-bottom: 1.375em;
}
.related-people .thumblist .thumblist-item:nth-child(2n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}
.related-people .thumblist .thumblist-item:nth-child(2n + 2) {
  margin-left: 50.9434%;
  margin-right: -100%;
  clear: none;
}
@media (min-width: 768px) {
  .related-people .thumblist .thumblist-item {
    width: 15.625%;
    float: left;
  }
  .related-people .thumblist .thumblist-item:nth-child(5n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .related-people .thumblist .thumblist-item:nth-child(5n + 2) {
    margin-left: 18.75%;
    margin-right: -100%;
    clear: none;
  }
  .related-people .thumblist .thumblist-item:nth-child(5n + 3) {
    margin-left: 37.5%;
    margin-right: -100%;
    clear: none;
  }
  .related-people .thumblist .thumblist-item:nth-child(5n + 4) {
    margin-left: 56.25%;
    margin-right: -100%;
    clear: none;
  }
  .related-people .thumblist .thumblist-item:nth-child(5n + 5) {
    margin-left: 75%;
    margin-right: -100%;
    clear: none;
  }
}

/* Extras on detail pages - News, Events, Seminars, Conferences, Case Reports, Publications, Webcasts */
.case-report-footnote {
  font-size: 0.875em;
  line-height: 1.57143em;
  line-height: 1.57143em;
  border-top: 1px solid #D3B37D;
  padding-bottom: 1.03125em;
  padding-top: 0.6875em;
}
@media (min-width: 1024px) {
  .case-report-footnote {
    padding-top: 1.03125em;
    padding-bottom: 2.0625em;
  }
}
.case-report-footnote a {
  color: #D3B37D;
  text-decoration: none;
  transition: all 300ms;
}
.case-report-footnote a:hover {
  color: #FFF;
}
.case-report-footnote span {
  color: #D3B37D;
}

@media (min-width: 768px) {
  .blog .big-wrap,
  .post-type-archive-case-reports .big-wrap,
  .post-type-archive-conferences .big-wrap,
  .post-type-archive-webcasts .big-wrap,
  .post-type-archive-events .big-wrap,
  .post-type-archive-seminars .big-wrap {
    display: flex;
  }
}

.post-type-archive-case-reports .sidebar-menu .button-list .active.menu-news > a, .post-type-archive-case-reports .sidebar-menu .button-list-alt .active.menu-news > a,
.post-type-archive-conferences .sidebar-menu .button-list .active.menu-news > a,
.post-type-archive-conferences .sidebar-menu .button-list-alt .active.menu-news > a,
.post-type-archive-webcasts .sidebar-menu .button-list .active.menu-news > a,
.post-type-archive-webcasts .sidebar-menu .button-list-alt .active.menu-news > a,
.post-type-archive-events .sidebar-menu .button-list .active.menu-news > a,
.post-type-archive-events .sidebar-menu .button-list-alt .active.menu-news > a,
.post-type-archive-seminars .sidebar-menu .button-list .active.menu-news > a,
.post-type-archive-seminars .sidebar-menu .button-list-alt .active.menu-news > a {
  color: #FFF;
  background-color: #415067;
}
.post-type-archive-case-reports .sidebar-menu .button-list .active.menu-news > a:hover, .post-type-archive-case-reports .sidebar-menu .button-list-alt .active.menu-news > a:hover, .post-type-archive-case-reports .sidebar-menu .button-list .active.menu-news > a:active, .post-type-archive-case-reports .sidebar-menu .button-list-alt .active.menu-news > a:active,
.post-type-archive-conferences .sidebar-menu .button-list .active.menu-news > a:hover,
.post-type-archive-conferences .sidebar-menu .button-list-alt .active.menu-news > a:hover,
.post-type-archive-conferences .sidebar-menu .button-list .active.menu-news > a:active,
.post-type-archive-conferences .sidebar-menu .button-list-alt .active.menu-news > a:active,
.post-type-archive-webcasts .sidebar-menu .button-list .active.menu-news > a:hover,
.post-type-archive-webcasts .sidebar-menu .button-list-alt .active.menu-news > a:hover,
.post-type-archive-webcasts .sidebar-menu .button-list .active.menu-news > a:active,
.post-type-archive-webcasts .sidebar-menu .button-list-alt .active.menu-news > a:active,
.post-type-archive-events .sidebar-menu .button-list .active.menu-news > a:hover,
.post-type-archive-events .sidebar-menu .button-list-alt .active.menu-news > a:hover,
.post-type-archive-events .sidebar-menu .button-list .active.menu-news > a:active,
.post-type-archive-events .sidebar-menu .button-list-alt .active.menu-news > a:active,
.post-type-archive-seminars .sidebar-menu .button-list .active.menu-news > a:hover,
.post-type-archive-seminars .sidebar-menu .button-list-alt .active.menu-news > a:hover,
.post-type-archive-seminars .sidebar-menu .button-list .active.menu-news > a:active,
.post-type-archive-seminars .sidebar-menu .button-list-alt .active.menu-news > a:active {
  color: #001C36;
  background-color: #D3B37D;
}

.blog-navigation {
  margin: 2.75em 0;
}
.blog-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-navigation ul li.btn-prev {
  width: 48.27586%;
  float: left;
  margin-right: 3.44828%;
}
.blog-navigation ul li.btn-prev a {
  text-align: right;
}
.blog-navigation ul li.btn-prev a:before {
  content: "\f104";
  font-family: FontAwesome;
  position: absolute;
  left: .5em;
}
.blog-navigation ul li.btn-next {
  width: 48.27586%;
  float: right;
  margin-right: 0;
}
.blog-navigation ul li.btn-next a:after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: .5em;
}
.blog-navigation ul li a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0.875em;
  line-height: 1.57143em;
  color: #D3B37D;
  text-decoration: none;
  padding: .25em .5em;
  border: 1px solid #D3B37D;
  transition: all 300ms;
}
.blog-navigation ul li a:hover {
  background-color: #D3B37D;
  color: #000;
}

.category-drop {
  margin: 2.75em 0 0 0;
}
.category-drop select {
  overflow: hidden;
  width: 100%;
  font-size: 0.875em;
  line-height: 1.57143em;
  font-size: 16px;
  -webkit-appearance: none;
  outline: none;
  border-radius: 0;
  border: 1px solid #D3B37D;
  margin: 0 0 0 0;
  color: #D3B37D;
  padding: 0.34375em;
  background-color: transparent;
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}

.category-drop-wrap {
  position: relative;
}
.category-drop-wrap:after {
  content: "\f107";
  font-family: FontAwesome;
  color: #D3B37D;
  position: absolute;
  display: inline-block;
  right: 0.34375em;
  bottom: 0;
  padding: 0.34375em;
  z-index: 1;
}

@media (min-width: 768px) {
  .big-wrap-wide .main-col-text,
  .big-wrap-wide .related-people {
    width: 68.08511%;
  }
}

.pagination {
  margin: 1.375em 0;
  text-align: center;
}
.pagination a {
  color: #D3B37D;
  text-decoration: none;
  transition: all 250ms;
}
.pagination a:hover {
  color: #FFF;
}

/* People list layout */
.main-content {
  *zoom: 1;
}
.main-content:before, .main-content:after {
  content: "";
  display: table;
}
.main-content:after {
  clear: both;
}
@media (min-width: 768px) {
  .main-content {
    width: 77.35849%;
    float: right;
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .main-content {
    margin-left: 5.66038%;
    width: 71.69811%;
    float: right;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .main-content-primary {
    width: 70.73171%;
    float: left;
    margin-right: 2.43902%;
  }
}
@media (min-width: 1024px) {
  .main-content-primary {
    width: 76.31579%;
    float: left;
    margin-right: 2.63158%;
  }
}
.main-content-primary .thumblist .thumblist-item {
  width: 49.0566%;
  float: left;
  margin-bottom: 1.375em;
}
.main-content-primary .thumblist .thumblist-item:nth-child(2n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}
.main-content-primary .thumblist .thumblist-item:nth-child(2n + 2) {
  margin-left: 50.9434%;
  margin-right: -100%;
  clear: none;
}
@media (min-width: 768px) {
  .main-content-primary .thumblist .thumblist-item {
    width: 21.73913%;
    float: left;
  }
  .main-content-primary .thumblist .thumblist-item:nth-child(4n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .main-content-primary .thumblist .thumblist-item:nth-child(4n + 2) {
    margin-left: 26.08696%;
    margin-right: -100%;
    clear: none;
  }
  .main-content-primary .thumblist .thumblist-item:nth-child(4n + 3) {
    margin-left: 52.17391%;
    margin-right: -100%;
    clear: none;
  }
  .main-content-primary .thumblist .thumblist-item:nth-child(4n + 4) {
    margin-left: 78.26087%;
    margin-right: -100%;
    clear: none;
  }
}
.main-content-primary .people-list .thumblist .thumblist-item {
  width: 49.0566%;
  float: left;
  margin-bottom: 1.375em;
}
.main-content-primary .people-list .thumblist .thumblist-item:nth-child(2n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}
.main-content-primary .people-list .thumblist .thumblist-item:nth-child(2n + 2) {
  margin-left: 50.9434%;
  margin-right: -100%;
  clear: none;
}
@media (min-width: 768px) {
  .main-content-primary .people-list .thumblist .thumblist-item {
    width: 25%;
    float: left;
  }
  .main-content-primary .people-list .thumblist .thumblist-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .main-content-primary .people-list .thumblist .thumblist-item:nth-child(3n + 2) {
    margin-left: 37.5%;
    margin-right: -100%;
    clear: none;
  }
  .main-content-primary .people-list .thumblist .thumblist-item:nth-child(3n + 3) {
    margin-left: 75%;
    margin-right: -100%;
    clear: none;
  }
}

.people-list {
  display: none;
}
.people-list .thumblist-name span:first-of-type {
  font-size: 1.25em;
  line-height: 1.65em;
}
.people-list .thumblist .thumblist-item {
  width: 49.0566%;
  float: left;
  margin-bottom: 1.375em;
}
.people-list .thumblist .thumblist-item:nth-child(2n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}
.people-list .thumblist .thumblist-item:nth-child(2n + 2) {
  margin-left: 50.9434%;
  margin-right: -100%;
  clear: none;
}
@media (min-width: 768px) {
  .people-list .thumblist .thumblist-item {
    width: 25%;
    float: left;
  }
  .people-list .thumblist .thumblist-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .people-list .thumblist .thumblist-item:nth-child(3n + 2) {
    margin-left: 37.5%;
    margin-right: -100%;
    clear: none;
  }
  .people-list .thumblist .thumblist-item:nth-child(3n + 3) {
    margin-left: 75%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 768px) {
  .main-content-secondary {
    width: 26.82927%;
    float: right;
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .main-content-secondary {
    width: 21.05263%;
    float: right;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .sidebar {
    width: 20.75472%;
    float: left;
    margin-right: 1.88679%;
  }
}

.people-list-header {
  *zoom: 1;
  position: relative;
  margin-bottom: 0.6875em;
}
.people-list-header:before, .people-list-header:after {
  content: "";
  display: table;
}
.people-list-header:after {
  clear: both;
}
@media (min-width: 1024px) {
  .people-list-header {
    margin-bottom: 1.375em;
  }
}
.people-list-header .heading {
  margin-bottom: 0.6875em;
}
@media (min-width: 768px) {
  .people-list-header .heading {
    width: 70.73171%;
    float: left;
    margin-right: 2.43902%;
  }
}
@media (min-width: 1024px) {
  .people-list-header .heading {
    width: 76.31579%;
    float: left;
    margin-right: 2.63158%;
  }
}
@media (min-width: 768px) {
  .people-list-header .view-controls {
    width: 70.73171%;
    float: left;
    margin-right: 2.43902%;
  }
}
@media (min-width: 1024px) {
  .people-list-header .view-controls {
    width: 76.31579%;
    float: left;
    margin-right: 2.63158%;
  }
}
@media (min-width: 768px) {
  .people-list-header .view-controls-option {
    float: right;
  }
}

.view-controls-option .active {
  text-decoration: underline;
}

/* Profile summary */
.profile-summary, .alt-summary {
  font-size: 0.875em;
  line-height: 1.57143em;
  line-height: 1.57143em;
  margin-top: 3.92857em;
  margin-bottom: 3.14286em;
  padding-left: 0.78571em;
  border-left: 1px solid #D3B37D;
}

.profile-meta span {
  display: block;
}

.profile-summary-name {
  font-family: 'FSLucasWeb-SemiBold', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #D3B37D;
}

.profile-summary-contact {
  margin-bottom: 1.375em;
}
.profile-summary-contact span {
  font-family: 'FSLucasWeb-SemiBold', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #415067;
}

.profile-summary-lh {
  font-family: 'FSLucasWeb-SemiBold', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #D3B37D;
  margin-top: 1.375em;
}

.profile-summary-list {
  list-style: none;
}

@media (min-width: 768px) {
  .alt-summary {
    margin-top: 2.3em;
  }
}
@media (min-width: 1024px) {
  .alt-summary {
    margin-top: 3.3em;
  }
}
.alt-summary .profile-summary-name {
  color: #FFF;
}

/* Sidebar - button menu */
.sidebar-menu {
  *zoom: 1;
}
.sidebar-menu:before, .sidebar-menu:after {
  content: "";
  display: table;
}
.sidebar-menu:after {
  clear: both;
}
.sidebar-menu .search {
  margin-bottom: 0.6875em;
}
.sidebar-menu .search input {
  width: 100%;
  background-color: #001C36;
  font-size: 0.875em;
  line-height: 1.57143em;
  font-size: 16px;
  color: #D3B37D;
  padding: .25em .5em;
  border: 1px solid #D3B37D;
  -webkit-appearance: none;
  border-radius: 0;
}
.sidebar-menu .button-list ul, .sidebar-menu .button-list-alt ul {
  list-style: none;
}
.sidebar-menu .button-list li, .sidebar-menu .button-list-alt li {
  margin-bottom: 0.6875em;
}
.sidebar-menu .button-list a, .sidebar-menu .button-list-alt a {
  display: block;
  width: 100%;
  font-size: 0.875em;
  line-height: 1.57143em;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  background-color: #415067;
  padding: .25em .5em;
  transition: all 300ms;
}
.sidebar-menu .button-list a:hover, .sidebar-menu .button-list-alt a:hover, .sidebar-menu .button-list a:active, .sidebar-menu .button-list-alt a:active {
  background-color: #D3B37D;
  color: #001C36;
}
.sidebar-menu .button-list .children, .sidebar-menu .button-list-alt .children {
  margin-top: 0.6875em;
  margin-left: 0.6875em;
}
.sidebar-menu .button-list .current_page_item > a, .sidebar-menu .button-list-alt .current_page_item > a,
.sidebar-menu .button-list .active > a,
.sidebar-menu .button-list-alt .active > a,
.sidebar-menu .button-list .current-cat a,
.sidebar-menu .button-list-alt .current-cat a {
  background-color: #D3B37D;
  color: #001C36;
}
.sidebar-menu .button-list-alt {
  margin-bottom: 1.375em;
}
@media (min-width: 1024px) {
  .sidebar-menu .button-list-alt {
    margin-bottom: 2.75em;
  }
}
.sidebar-menu .button-list-alt a {
  border: 1px solid transparent;
}
.sidebar-menu .button-list-alt a:hover, .sidebar-menu .button-list-alt a:active {
  color: #D3B37D;
  background-color: transparent;
  border: 1px solid #D3B37D;
}
.sidebar-menu .button-list-alt .current_menu_item a {
  color: #D3B37D;
  background-color: transparent;
  border: 1px solid #D3B37D;
  cursor: default;
}

.post-type-archive-seminars .sidebar-menu .button-list .active.menu-news > a, .post-type-archive-seminars .sidebar-menu .button-list-alt .active.menu-news > a,
.category .sidebar-menu .button-list .active.menu-news > a,
.category .sidebar-menu .button-list-alt .active.menu-news > a {
  color: #FFF;
  background-color: #415067;
}
.post-type-archive-seminars .sidebar-menu .button-list .active.menu-news > a:hover, .post-type-archive-seminars .sidebar-menu .button-list-alt .active.menu-news > a:hover, .post-type-archive-seminars .sidebar-menu .button-list .active.menu-news > a:active, .post-type-archive-seminars .sidebar-menu .button-list-alt .active.menu-news > a:active,
.category .sidebar-menu .button-list .active.menu-news > a:hover,
.category .sidebar-menu .button-list-alt .active.menu-news > a:hover,
.category .sidebar-menu .button-list .active.menu-news > a:active,
.category .sidebar-menu .button-list-alt .active.menu-news > a:active {
  color: #001C36;
  background-color: #D3B37D;
}

/* Profile pages */
.profile-hero {
  position: relative;
}
@media (min-width: 768px) {
  .profile-hero {
    *zoom: 1;
    display: flex;
  }
  .profile-hero:before, .profile-hero:after {
    content: "";
    display: table;
  }
  .profile-hero:after {
    clear: both;
  }
}
@media (min-width: 1024px) {
  .profile-hero {
    display: block;
  }
}

.profile-hero-info {
  margin-top: 1.375em;
  margin-bottom: 1.375em;
}
@media (min-width: 768px) {
  .profile-hero-info {
    padding-left: 1.88679%;
    border-left: 1px solid #D3B37D;
  }
}
@media (min-width: 768px) {
  .profile-hero-info {
    width: 49.0566%;
    float: left;
    margin-right: 1.88679%;
  }
}
@media (min-width: 1024px) {
  .profile-hero-info {
    padding-left: 1.88679%;
    border-left: 1px solid #D3B37D;
    margin-top: 40px;
    width: 94.33962%;
    position: absolute;
    height: 100%;
    margin-bottom: 0;
    top: 0;
    left: 0;
    margin-left: 3.77358%;
  }
}
.profile-hero-info h1 {
  position: relative;
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.375em;
  line-height: 1.5em;
  line-height: 1.25em;
  font-weight: 200;
  margin-bottom: 0.34375em;
}
@media (min-width: 768px) {
  .profile-hero-info h1 {
    font-size: 1.875em;
    line-height: 1.46667em;
    line-height: 1.1em;
  }
}
@media (min-width: 1024px) {
  .profile-hero-info h1 {
    font-size: 2.1875em;
    line-height: 1.25714em;
    line-height: 1.1em;
    margin-bottom: 0.6875em;
  }
}
.profile-hero-info a {
  color: #FFF;
  text-decoration: none;
  transition: all 300ms;
}
.profile-hero-info a:hover {
  color: #D3B37D;
}

@media (min-width: 768px) {
  .profile-hero-img {
    margin-top: 1.375em;
    width: 49.0566%;
    float: right;
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .profile-hero-img {
    margin-top: 0;
    width: 100%;
    float: none;
  }
}

.profile-hero-sub {
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.71875em;
  margin-bottom: 0.34375em;
}
@media (min-width: 1024px) {
  .profile-hero-sub {
    margin-bottom: 0.6875em;
    font-size: 1.25em;
    line-height: 1.65em;
    line-height: 1.375em;
  }
}

.profile-hero-contact,
.profile-hero-web {
  font-size: 0.875em;
  line-height: 1.57143em;
  line-height: 1.57143em;
  margin-bottom: 0.34375em;
}
@media (min-width: 768px) {
  .profile-hero-contact,
  .profile-hero-web {
    margin-bottom: 0.6875em;
  }
}
@media (min-width: 1024px) {
  .profile-hero-contact,
  .profile-hero-web {
    font-size: 1em;
    line-height: 1.375em;
    line-height: 1.375em;
  }
}

.profile-hero-web {
  margin-bottom: 0;
}

.profile-hero-links {
  margin-top: 1.375em;
}
@media (min-width: 768px) {
  .profile-hero-links {
    width: 26.41509%;
    float: left;
    margin-right: 1.88679%;
    margin-top: 0.34375em;
  }
}
@media (min-width: 1024px) {
  .profile-hero-links {
    width: 20.75472%;
    float: left;
    margin-right: 1.88679%;
    margin-top: 0.6875em;
  }
}

.profile-content {
  margin-bottom: 1.375em;
}
@media (min-width: 768px) {
  .profile-content {
    margin-bottom: 2.75em;
  }
}
@media (min-width: 1024px) {
  .profile-content {
    display: flex;
    width: 100%;
    margin-bottom: 4.125em;
  }
}

.profile-content-main {
  margin-top: 1.375em;
}
@media (min-width: 1024px) {
  .profile-content-main {
    padding-left: 1.88679%;
    border-left: 1px solid #D3B37D;
    order: 2;
    margin-top: 2.75em;
    width: 49.0566%;
    float: right;
    margin-right: 0;
    margin-right: 11.32075%;
  }
}
.profile-content-main h1 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.375em;
  line-height: 1.5em;
  line-height: 1.25em;
  font-weight: 200;
  color: #FFF;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .profile-content-main h1 {
    font-size: 1.875em;
    line-height: 1.46667em;
    line-height: 1.46667em;
  }
}
@media (min-width: 1024px) {
  .profile-content-main h1 {
    font-size: 2.5em;
    line-height: 1.1em;
    line-height: 1.375em;
  }
}
.profile-content-main h2 {
  margin-bottom: 0.6875em;
}
.profile-content-main p,
.profile-content-main ul,
.profile-content-main ol {
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.375em;
  margin-bottom: 1.03125em;
}
@media (min-width: 1024px) {
  .profile-content-main p,
  .profile-content-main ul,
  .profile-content-main ol {
    margin-bottom: 1.375em;
  }
}
.profile-content-main ul,
.profile-content-main ol {
  margin-left: 1.375em;
}
.profile-content-main a {
  color: #D3B37D;
  transition: all 250ms;
}
.profile-content-main a:hover {
  color: #FFF;
}
.profile-content-main .row-list {
  margin-bottom: 2.75em;
}

@media (min-width: 1024px) {
  .profile-content-sidebar {
    padding-left: 1.88679%;
    border-left: 1px solid #D3B37D;
    width: 32.07547%;
    float: left;
    margin-right: 1.88679%;
    margin-left: 3.77358%;
    order: 1;
    padding-top: 2.75em;
  }
}

.download-btn,
.back-btn {
  margin-bottom: 0.6875em;
}
.download-btn a,
.back-btn a {
  display: block;
  width: 100%;
  font-size: 0.875em;
  line-height: 1.57143em;
  color: #D3B37D;
  text-decoration: none;
  background-color: transparent;
  padding: .25em .5em;
  border: 1px solid #D3B37D;
  transition: all 300ms;
}
.download-btn a:after,
.back-btn a:after {
  width: 10px;
  height: 8px;
  content: " ";
  background-image: url('../img/arrow-down-small.svg?1485428773');
  float: right;
  margin-top: .5em;
}
.download-btn a:hover, .download-btn a:active,
.back-btn a:hover,
.back-btn a:active {
  color: #FFF;
}
.download-btn a:hover:after, .download-btn a:active:after,
.back-btn a:hover:after,
.back-btn a:active:after {
  background-image: url('../img/arrow-down-small-hover.svg?1485428773');
}

.back-btn {
  margin-bottom: 0;
}
.back-btn a:after {
  width: 8px;
  height: 10px;
  content: " ";
  background-image: url('../img/arrow-back-small.svg?1485428773');
  float: right;
  margin-top: .35em;
}
.back-btn a:hover, .back-btn a:active {
  color: #FFF;
}
.back-btn a:hover:after, .back-btn a:active:after {
  background-image: url('../img/arrow-back-small-hover.svg?1485428772');
}

.roll-target {
  display: none;
}

.thumblist .heading-med {
  margin-bottom: 1.375em;
  font-size: 1em;
  line-height: 1.375em;
}
@media (min-width: 768px) {
  .thumblist .heading-med {
    font-size: 1.25em;
    line-height: 1.65em;
    margin-bottom: 1.1em;
  }
}
@media (min-width: 1024px) {
  .thumblist .heading-med {
    font-size: 1.375em;
    line-height: 1.5em;
    margin-bottom: 1em;
  }
}

.people-list-header .heading-lrg {
  margin: -5px 0 0 0;
  line-height: 1em;
}

@media (min-width: 1024px) {
  .profile-hero-quotes {
    max-width: 400px;
  }
}
@media (min-width: 1140px) {
  .profile-hero-quotes {
    max-width: 350px;
  }
}
.profile-hero-quotes blockquote {
  margin-top: 0.6875em;
}
.profile-hero-quotes blockquote p {
  margin: 0;
  font-family: 'FSLucasWeb-Medium', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.375em;
  color: #D3B37D;
}
.profile-hero-quotes blockquote footer {
  font-size: 0.75em;
  line-height: 1.83333em;
}
.profile-hero-quotes blockquote footer cite {
  font-style: normal;
  font-weight: 500;
  color: #D3B37D;
}

.back-top a {
  display: block;
  width: 100%;
  font-size: 0.875em;
  line-height: 1.57143em;
  color: #FFF;
  text-decoration: none;
  background-color: #415067;
  padding: .25em .5em;
  transition: all 300ms;
}
.back-top a:hover, .back-top a:active {
  background-color: #D3B37D;
  color: #001C36;
}
.back-top a:after {
  content: "\f106";
  font-family: FontAwesome;
  float: right;
}
@media (min-width: 768px) {
  .back-top {
    display: none;
  }
}

.name-search-wrap .no-items {
  display: none;
  position: absolute;
  padding: 5px;
  margin: 0;
  background-color: #FFF;
  font-size: 1em;
  line-height: 1.375em;
  text-transform: initial;
  color: #666;
  width: 100%;
}
.name-search-wrap .ui-autocomplete {
  position: absolute !important;
  z-index: 100;
  padding: 0;
  margin: 0;
  background-color: #FFF;
  font-size: 1em;
  line-height: 1.375em;
  text-transform: initial;
  list-style-type: none;
}
.name-search-wrap .ui-menu-item {
  padding: 5px;
  color: #666;
  transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.name-search-wrap .ui-menu-item a {
  color: #666;
  text-decoration: none;
}
.name-search-wrap .ui-state-highlight {
  text-decoration: underline;
}
.name-search-wrap .ui-state-focus {
  background-color: #D3B37D;
  color: #001C36;
}
.name-search-wrap .ui-state-focus a {
  color: #001C36;
}

.profile-content-sidebar {
  margin-top: 1.375em;
}
@media (min-width: 768px) {
  .profile-content-sidebar {
    margin-top: 0;
  }
}

.download-list {
  display: none;
}
@media (min-width: 768px) {
  .download-list {
    display: block;
  }
}

.main-hero, .banner-strip {
  display: none;
}
@media (min-width: 768px) {
  .main-hero, .banner-strip {
    display: block;
    margin-bottom: 1.375em;
    margin-bottom: 4.125em;
  }
}

/* Intro section */
.pa-intro-header {
  margin-bottom: 1.375em;
}

.pa-intro {
  *zoom: 1;
}
.pa-intro:before, .pa-intro:after {
  content: "";
  display: table;
}
.pa-intro:after {
  clear: both;
}
@media (min-width: 768px) {
  .pa-intro {
    display: flex;
    margin-bottom: 5.5em;
  }
}

@media (min-width: 768px) {
  .pa-intro-col {
    width: 36.17021%;
    float: left;
    margin-right: 2.12766%;
  }
}
@media (min-width: 768px) {
  .pa-intro-col.last {
    width: 61.70213%;
    float: right;
    margin-right: 0;
    padding-left: 1.88679%;
    border-left: 1px solid #D3B37D;
  }
}
.pa-intro-col p, .pa-intro-col ul {
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.375em;
  color: #FFF;
  margin-bottom: 1.375em;
}
.pa-intro-col p:last-child, .pa-intro-col ul:last-child {
  margin-bottom: 0;
}
.pa-intro-col ul {
  margin-left: 1.375em;
}
.pa-intro-col .button-list, .pa-intro-col .sidebar-menu .button-list-alt, .sidebar-menu .pa-intro-col .button-list-alt {
  margin-bottom: 1.375em;
}
.pa-intro-col .button-list ul, .pa-intro-col .sidebar-menu .button-list-alt ul, .sidebar-menu .pa-intro-col .button-list-alt ul {
  margin-left: 0;
}
.pa-intro-col .small-accordion ul {
  margin-left: 0;
}
.pa-intro-col a {
  transition: all 250ms;
	  color: #D3B37D;
	text-decoration: underline;
}
.pa-intro-col a:hover {
  color: #FFF;
}

@media (min-width: 768px) {
  .pa-menu, .sidebar-menu .button-list-sml {
    width: 100%;
  }
}

.pa-quotes {
  display: none;
}
@media (min-width: 1140px) {
  .pa-quotes {
    display: block;
    margin-top: 1.375em;
    *zoom: 1;
  }
  .pa-quotes:before, .pa-quotes:after {
    content: "";
    display: table;
  }
  .pa-quotes:after {
    clear: both;
  }
}

/* Team section */
.team-header {
  *zoom: 1;
  position: relative;
  margin-bottom: 1.375em;
}
.team-header:before, .team-header:after {
  content: "";
  display: table;
}
.team-header:after {
  clear: both;
}
@media (min-width: 768px) {
  .team-header {
    margin-bottom: 2.75em;
  }
}
.team-header .heading {
  margin-bottom: 0.6875em;
}
@media (min-width: 768px) {
  .team-header .heading {
    float: left;
  }
}
@media (min-width: 768px) {
  .team-header .view-controls {
    float: right;
    margin-top: 1.03125em;
  }
}
@media (min-width: 1024px) {
  .team-header .view-controls {
    margin-top: 1.375em;
  }
}

/* List view toggle */
.view-controls-option {
  list-style: none;
}
.view-controls-option li {
  display: inline;
  color: #FFF;
}
.view-controls-option li:after {
  content: " |";
}
.view-controls-option li:last-child:after {
  content: "";
}
.view-controls-option a {
  font-size: 0.75em;
  line-height: 1.83333em;
  line-height: 1.83333em;
  color: #FFF;
  text-decoration: none;
  transition: all 300ms;
}
.view-controls-option a:hover, .view-controls-option a:active {
  color: #D3B37D;
}

.view-controls-toggle {
  display: block;
  position: absolute;
  top: .25em;
  right: 0;
  background: url('../img/arrow-up.svg?1485428773') no-repeat;
  width: 35px;
  height: 17px;
}
@media (min-width: 768px) {
  .view-controls-toggle {
    width: 50px;
    height: 25px;
  }
}
@media (min-width: 1024px) {
  .view-controls-toggle {
    width: 60px;
    height: 30px;
  }
}

/* Team list layout */
@media (min-width: 768px) {
  .team-full .view-controls {
    padding-right: 9.43396%;
  }
}
.team-full .thumblist-item {
  width: 48.93617%;
  float: left;
  margin-bottom: 1.375em;
}
.team-full .thumblist-item:nth-child(2n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}
.team-full .thumblist-item:nth-child(2n + 2) {
  margin-left: 51.06383%;
  margin-right: -100%;
  clear: none;
}
@media (min-width: 768px) {
  .team-full .thumblist-item {
    width: 10.6383%;
    float: left;
  }
  .team-full .thumblist-item:nth-child(8n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .team-full .thumblist-item:nth-child(8n + 2) {
    margin-left: 12.76596%;
    margin-right: -100%;
    clear: none;
  }
  .team-full .thumblist-item:nth-child(8n + 3) {
    margin-left: 25.53191%;
    margin-right: -100%;
    clear: none;
  }
  .team-full .thumblist-item:nth-child(8n + 4) {
    margin-left: 38.29787%;
    margin-right: -100%;
    clear: none;
  }
  .team-full .thumblist-item:nth-child(8n + 5) {
    margin-left: 51.06383%;
    margin-right: -100%;
    clear: none;
  }
  .team-full .thumblist-item:nth-child(8n + 6) {
    margin-left: 63.82979%;
    margin-right: -100%;
    clear: none;
  }
  .team-full .thumblist-item:nth-child(8n + 7) {
    margin-left: 76.59574%;
    margin-right: -100%;
    clear: none;
  }
  .team-full .thumblist-item:nth-child(8n + 8) {
    margin-left: 89.3617%;
    margin-right: -100%;
    clear: none;
  }
}

.team-full {
  margin-top: 2.75em;
}

.pa-quotes {
  margin-bottom: 2.75em;
  color: #D3B37D;
  position: relative;
}
.pa-quotes p {
  color: #D3B37D;
  font-size: 1.25em;
  line-height: 1.65em;
  line-height: 1em;
  margin-bottom: 1.2em;
}
@media (min-width: 768px) {
  .pa-quotes p {
    font-size: 1.375em;
    line-height: 1.5em;
    line-height: 1em;
    margin-bottom: 1.2em;
  }
}
@media (min-width: 1024px) {
  .pa-quotes p {
    font-size: 1.875em;
    line-height: 1.46667em;
    line-height: 1em;
    margin-bottom: 1.2em;
  }
}
.pa-quotes footer {
  margin-top: 1.375em;
}
.pa-quotes cite {
  font-style: normal;
}
.pa-quotes .cycle-pager {
  bottom: 0;
  text-align: left;
}
.pa-quotes .cycle-pager span {
  margin-left: 0;
  margin-right: 10px;
  background-color: #D3B37D;
}
.pa-quotes .cycle-pager span.cycle-pager-active {
  background-color: #FFF;
}

.search-query {
  margin-bottom: 1.375em;
}
.search-query span {
  font-weight: bold;
  font-style: italic;
}

.search-result {
  margin-bottom: 2.75em;
}
.search-result .heading-med {
  line-height: 1.2em;
  margin-bottom: 0.6875em;
}
.search-result .heading-med a {
  color: #D3B37D;
  text-decoration: none;
  transition: all 250ms;
}
.search-result .heading-med a:hover {
  color: #FFF;
}
.search-result p:last-of-type {
  margin-top: 0.6875em;
}
.search-result p a {
  color: #D3B37D;
  text-decoration: none;
  transition: all 250ms;
}
.search-result p a:hover {
  color: #FFF;
}

.meta {
  margin-bottom: 1.375em;
}

.meta-item {
  display: flex;
}
.meta-item p {
  flex: 1 0;
  margin: 0;
}
.meta-item p.meta-title {
  flex: 0 100px;
  font-weight: bold;
}

.intro-col-seminars {
  *zoom: 1;
  margin-bottom: 2.75em;
}
.intro-col-seminars:before, .intro-col-seminars:after {
  content: "";
  display: table;
}
.intro-col-seminars:after {
  clear: both;
}
@media (min-width: 768px) {
  .intro-col-seminars .intro-col-header {
    width: 32.07547%;
    float: left;
    margin-right: 1.88679%;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .seminars-content {
    width: 61.70213%;
    float: right;
    margin-right: 0;
    padding-left: 1.88679%;
    border-left: 1px solid #D3B37D;
  }
}
.seminars-content a {
  color: #FFF;
  text-decoration: none;
  transition: all 250ms;
}
.seminars-content a:hover {
  color: #D3B37D;
}

.tenancy-sidebar {
  padding-top: 1.375em;
  border-top: 1px solid #D3B37D;
}
@media (min-width: 768px) {
  .tenancy-sidebar {
    width: 32.07547%;
    float: left;
    margin-right: 1.88679%;
  }
}
@media (min-width: 1024px) {
  .tenancy-sidebar {
    margin-left: 5.66038%;
    width: 26.41509%;
    float: left;
    margin-right: 1.88679%;
  }
}
@media (min-width: 768px) {
  .tenancy-sidebar .sidebar-menu {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
}
.tenancy-sidebar .button-list:first-child, .tenancy-sidebar .sidebar-menu .button-list-alt:first-child, .sidebar-menu .tenancy-sidebar .button-list-alt:first-child {
  margin-bottom: 1.375em;
}
@media (min-width: 768px) {
  .tenancy-sidebar .button-list:first-child, .tenancy-sidebar .sidebar-menu .button-list-alt:first-child, .sidebar-menu .tenancy-sidebar .button-list-alt:first-child {
    margin-bottom: 2.75em;
  }
}

@media (min-width: 768px) {
  .tenancy-main {
    padding-top: 1.375em;
    border-top: 1px solid #D3B37D;
    width: 66.03774%;
    float: right;
    margin-right: 0;
  }
}

.tenancy-intro {
  *zoom: 1;
  margin-bottom: 1.375em;
}
.tenancy-intro:before, .tenancy-intro:after {
  content: "";
  display: table;
}
.tenancy-intro:after {
  clear: both;
}
@media (min-width: 1024px) {
  .tenancy-intro {
    margin-bottom: 2.75em;
  }
}

.tenancy-intro-header {
  margin-bottom: 1.375em;
}
@media (min-width: 1024px) {
  .tenancy-intro-header {
    margin-bottom: 2.75em;
  }
}

@media (min-width: 1024px) {
  .tenancy-intro-body {
    width: 65.71429%;
    float: left;
    margin-right: 2.85714%;
  }
}
.tenancy-intro-body p {
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.375em;
  color: #FFF;
  margin-bottom: 1.375em;
}
.tenancy-intro-body p:last-child {
  margin-bottom: 0;
}
/*
.tenancy-intro-body p a,  {
  color: #fff;
}
*/
.tenancy-intro-body a {
  transition: all 250ms;
	  color: #D3B37D;
	text-decoration: underline;
}
.tenancy-intro-body a:hover {
  color: #FFF;
}


.tenancy-intro-body ul {
  margin-left: 1em;
}
/*
.tenancy-intro-body li a {
  color: #fff;
}
*/
.tenancy-content-item {
  *zoom: 1;
  padding-top: 1.375em;
  padding-bottom: 1.375em;
  border-top: 1px solid #D3B37D;
}
.tenancy-content-item:before, .tenancy-content-item:after {
  content: "";
  display: table;
}
.tenancy-content-item:after {
  clear: both;
}
@media (min-width: 1024px) {
  .tenancy-content-item {
    padding-top: 2.0625em;
    padding-bottom: 2.0625em;
  }
}

.item-header {
  position: relative;
  margin-bottom: 0.6875em;
  padding-right: 20%;
}
.item-header h2 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25em;
  line-height: 1.65em;
  line-height: 1.375em;
  font-weight: 100;
}
.item-header .toggle {
  display: block;
  position: absolute;
  top: .25em;
  right: 0;
  background: url('../img/arrow-up.svg?1485428773') no-repeat;
  width: 35px;
  height: 17px;
  cursor: pointer;
  transition: all 250ms;
}
.item-header .toggle.active {
  transform: rotate(180deg);
}

.item-body {
  display: none;
}
.item-body p {
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.375em;
  color: #FFF;
  margin-bottom: 1.375em;
}
.item-body p:last-child {
  margin-bottom: 0;
}
.item-body a {
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.375em;
  color: #D3B37D;
  background-color: transparent;
  text-decoration: none;
  padding: .25em 1em;
  border: 1px solid #D3B37D;
  transition: all 300ms;
}
.item-body a:hover {
  background-color: #D3B37D;
  color: #FFF;
}

/* Apply button */
.button a {
  line-height: 2.35714em;
  color: #D3B37D;
  background-color: transparent;
  text-decoration: none;
  padding: .25em 1em;
  border: 1px solid #D3B37D;
  transition: all 300ms;
}
.button a:hover {
  background-color: #D3B37D;
  color: #FFF;
}

.module-wrap {
  *zoom: 1;
}
.module-wrap:before, .module-wrap:after {
  content: "";
  display: table;
}
.module-wrap:after {
  clear: both;
}

.module-txt h2 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.375em;
  line-height: 1.5em;
  line-height: 1.2em;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.module-txt p {
  font-size: 0.875em;
  line-height: 1.57143em;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.module-txt ul {
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875em;
  line-height: 1.57143em;
  line-height: 1.2em;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 1.375em;
  margin-left: 1.375em;
}
@media (min-width: 1024px) {
  .module-txt ul {
    margin-bottom: 2.0625em;
  }
}
.module-txt a {
  color: #FFF;
  transition: all 300ms;
}
.module-txt a:hover {
  color: #D3B37D;
}

.module-thumb {
  width: 90px;
}
@media (min-width: 768px) {
  .module-thumb {
    float: left;
    margin-bottom: -50%;
  }
}
@media (min-width: 1024px) {
  .module-thumb {
    box-shadow: 10px 10px 0px 0px #415067;
  }
}

@media (min-width: 768px) {
  .module-btn-l {
    margin-left: -2.0625em;
  }
}
.module-btn-l a {
  display: block;
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25em;
  line-height: 1.65em;
  line-height: 1.1em;
  font-weight: 100;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  background-color: #415067;
  padding: .5em 1em;
  transition: all 300ms;
}
.module-btn-l a:hover {
  background-color: #D3B37D;
}
@media (min-width: 1024px) {
  .module-btn-l a {
    display: inline-block;
  }
}

.module-btn-r {
  margin-top: 2.75em;
}
@media (min-width: 768px) {
  .module-btn-r {
    margin-right: -2.0625em;
    float: right;
    margin-top: 0;
  }
}
.module-btn-r a {
  display: block;
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25em;
  line-height: 1.65em;
  line-height: 1.1em;
  font-weight: 100;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  background-color: #415067;
  padding: .5em 1em;
  transition: all 300ms;
}
.module-btn-r a:hover {
  background-color: #D3B37D;
}
@media (min-width: 1024px) {
  .module-btn-r a {
    display: inline-block;
  }
}

/* About us */
.module-about {
  background-color: rgba(55, 64, 82, 0.85);
  padding: 1.375em 0.6875em;
  border: 1px solid #667786;
  margin-bottom: 1.375em;
}
@media (min-width: 768px) {
  .module-about {
    padding: 1.375em 0.6875em;
  }
}

/* Practice areas */
.module-practice {
  background-color: rgba(0, 28, 54, 0.85);
  padding: 1.375em 0.6875em;
  border: 1px solid #667786;
  margin-bottom: 1.375em;
}
@media (min-width: 768px) {
  .module-practice {
    padding: 1.375em 0.6875em;
  }
}
.module-practice a {
  text-decoration: none;
}

/* Find a Barrister */
.module-people {
  *zoom: 1;
  background-color: rgba(0, 28, 54, 0.85);
  padding: 1.375em 0.6875em;
  border: 1px solid #667786;
  margin-bottom: 1.375em;
}
.module-people:before, .module-people:after {
  content: "";
  display: table;
}
.module-people:after {
  clear: both;
}
@media (min-width: 768px) {
  .module-people {
    padding: 1.375em 0.6875em;
  }
}

/* Events */
.module-events {
  background: url(http://placehold.it/630x420) no-repeat center center;
  width: 100%;
  background-size: cover;
  padding: 1.375em 0.6875em;
  border: 1px solid #667786;
  margin-bottom: 1.375em;
}
@media (min-width: 768px) {
  .module-events {
    padding-bottom: 2.0625em;
  }
}
.module-events .module-txt h3 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1em;
  line-height: 1.375em;
  line-height: 1.375em;
  margin-bottom: 0.6875em;
}
.module-events .module-txt p {
  margin-bottom: 0.6875em;
}
@media (min-width: 1024px) {
  .module-events .module-txt p {
    margin-bottom: 2.75em;
  }
}

/* Three buttons */
.module-buttons {
  margin-bottom: 1.375em;
}
.module-buttons ul {
  list-style: none;
}
.module-buttons li {
  margin-bottom: 0.6875em;
}
.module-buttons a {
  display: block;
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25em;
  line-height: 1.65em;
  line-height: 1.1em;
  font-weight: 100;
  color: #FFF;
  text-decoration: none;
  background-color: #415067;
  padding: .5em 1em;
  transition: all 300ms;
}
.module-buttons a:hover, .module-buttons a:active {
  background-color: #D3B37D;
}

.cycle-pager {
  position: absolute;
  left: 0;
  bottom: 1.375em;
  width: 100%;
  z-index: 200;
  text-align: center;
}
.cycle-pager span {
  text-indent: -999em;
  width: 0.6875em;
  height: 0.6875em;
  display: inline-block;
  background-color: #FFF;
  border-radius: 1.375em;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 250ms;
}
.cycle-pager span.cycle-pager-active {
  background-color: #001C36;
  cursor: default;
}

.cycle-next, .cycle-prev {
  width: 1.375em;
  height: 1.375em;
  transform: rotate(-45deg);
  position: absolute;
  display: block;
  transition: right 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
  top: 50%;
  border-top: 0;
  border-left: 0;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
  right: 2.75em;
  z-index: 2;
  margin-top: -0.6875em;
  z-index: 200;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cycle-next:hover, .cycle-prev:hover {
  border-color: #001C36;
}

.cycle-prev {
  right: auto;
  left: 2.75em;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  border-bottom: 0;
  border-right: 0;
}

.breadcrumb {
  background-color: #415067;
  display: none;
}
@media (min-width: 768px) {
  .breadcrumb {
    display: block;
    padding-top: 0.34375em;
    padding-bottom: 0.34375em;
  }
}
.breadcrumb ul {
  list-style: none;
  margin-left: 5.66038%;
}
.breadcrumb li {
  display: inline-block;
  font-size: 0.75em;
  line-height: 1.83333em;
  color: #FFF;
}
.breadcrumb li:after {
  content: "\f105";
  font-family: FontAwesome;
  margin: 0 7px;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb a {
  color: #FFF;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.main-footer {
  background-color: #001C36;
  padding-bottom: 1.375em;
  z-index: 10;
  position: relative;
}

/* Primary footer */
.main-footer-primary {
  border-top: 1px solid #FFF;
}

.main-footer-primary-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  *zoom: 1;
  box-sizing: content-box;
  padding: 0 1.375em;
  padding-top: 2.75em;
  padding-bottom: 1.375em;
  display: none;
}
.main-footer-primary-inner:after {
  content: " ";
  display: block;
  clear: both;
}
.main-footer-primary-inner:before, .main-footer-primary-inner:after {
  content: "";
  display: table;
}
.main-footer-primary-inner:after {
  clear: both;
}
@media (min-width: 768px) {
  .main-footer-primary-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 768px) {
  .main-footer-primary-inner {
    display: block;
  }
}

.main-footer-logos {
  *zoom: 1;
  margin-bottom: 1.375em;
  display: none;
}
.main-footer-logos:before, .main-footer-logos:after {
  content: "";
  display: table;
}
.main-footer-logos:after {
  clear: both;
}
@media (min-width: 768px) {
  .main-footer-logos {
    display: block;
    width: 49.0566%;
    float: left;
    margin-right: 1.88679%;
  }
}
.main-footer-logos .logos-1 {
  *zoom: 1;
  margin-left: 33.96226%;
  width: 32.07547%;
  float: left;
  margin-right: 1.88679%;
  /*margin-bottom: 2.75em;*/
}
.main-footer-logos .logos-1:before, .main-footer-logos .logos-1:after {
  content: "";
  display: table;
}
.main-footer-logos .logos-1:after {
  clear: both;
}
.main-footer-logos .logos-1 p{
  float: left;
  clear: left;
  font-size: 0.75em;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .main-footer-logos .logos-1 {
    width: 30.76923%;
    float: left;
    margin-right: 3.84615%;
    padding-right: 1.375em;
    margin-left: 0;
    margin-bottom: 1.375em;
  }
}
.main-footer-logos .logos-2 {
  *zoom: 1;
  margin-left: 11.32075%;
  width: 77.35849%;
  float: left;
  margin-right: 1.88679%;
  margin-right: 11.32075%;
}
.main-footer-logos .logos-2:before, .main-footer-logos .logos-2:after {
  content: "";
  display: table;
}
.main-footer-logos .logos-2:after {
  clear: both;
}
@media (min-width: 768px) {
  .main-footer-logos .logos-2 {
    margin-left: 11.53846%;
    width: 42.30769%;
    float: left;
    margin-right: 3.84615%;
    margin-right: 0;
    padding-right: 2.75em;
  }
}
.main-footer-logos .logos-2 img {
  width: 29.41176%;
  float: left;
}
.main-footer-logos .logos-2 img:nth-child(3n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}
.main-footer-logos .logos-2 img:nth-child(3n + 2) {
  margin-left: 35.29412%;
  margin-right: -100%;
  clear: none;
}
.main-footer-logos .logos-2 img:nth-child(3n + 3) {
  margin-left: 70.58824%;
  margin-right: -100%;
  clear: none;
}

.main-footer-contact {
  *zoom: 1;
}
.main-footer-contact:before, .main-footer-contact:after {
  content: "";
  display: table;
}
.main-footer-contact:after {
  clear: both;
}
@media (min-width: 768px) {
  .main-footer-contact {
    width: 49.0566%;
    float: right;
    margin-right: 0;
  }
}

.contact-col {
  font-size: 0.75em;
  line-height: 1.83333em;
  line-height: 1.375em;
  color: #FFF;
  margin-bottom: 1.375em;
}
.contact-col:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contact-col {
    width: 30.76923%;
    float: left;
    margin-right: 3.84615%;
  }
  .contact-col:last-child {
    width: 30.76923%;
    float: right;
    margin-right: 0;
  }
}

/* Secondary footer */
.main-footer-secondary {
  border-top: 1px solid #3f4f64;
  border-bottom: 1px solid #3f4f64;
}

.main-footer-secondary-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  *zoom: 1;
  box-sizing: content-box;
  padding: 0 1.375em;
  padding-top: 1.375em;
  padding-bottom: 1.375em;
}
.main-footer-secondary-inner:after {
  content: " ";
  display: block;
  clear: both;
}
.main-footer-secondary-inner:before, .main-footer-secondary-inner:after {
  content: "";
  display: table;
}
.main-footer-secondary-inner:after {
  clear: both;
}
@media (min-width: 768px) {
  .main-footer-secondary-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.main-footer-links {
  list-style: none;
}
@media (min-width: 768px) {
  .main-footer-links {
    width: 83%;
    float: left;
    margin-right: 1.88679%;
  }
}
.main-footer-links li {
  font-size: 0.75em;
  line-height: 1.83333em;
  line-height: 1.375em;
}
@media (min-width: 768px) {
  .main-footer-links li {
    margin-bottom: 1.375em;
    width: 18%;
    float: left;
    margin-right: 2.43902%;
  }
  .main-footer-links li:last-of-type {
    margin-right: 0;
  }
}
.main-footer-links a {
  color: #FFF;
  text-decoration: none;
  transition: all 300ms;
}
.main-footer-links a:hover {
  color: #D3B37D;
}

.social-links {
  margin-top: 1.375em;
}
@media (min-width: 768px) {
  .social-links {
    margin-top: 0;
  }
}

.main-header {
  position: relative;
  z-index: 20;
  padding-bottom: 0;
  z-index: 999;
}
@media (min-width: 1025px) {
  .main-header {
    padding-bottom: 1.375em;
  }
}

.main-header-masthead {
  *zoom: 1;
  position: relative;
  padding-top: 1.375em;
  padding-bottom: 1.375em;
}
.main-header-masthead:before, .main-header-masthead:after {
  content: "";
  display: table;
}
.main-header-masthead:after {
  clear: both;
}
@media (min-width: 1025px) {
  .main-header-masthead {
    padding-bottom: 0;
  }
}
.main-header-masthead .branding {
  width: 32.07547%;
  float: left;
  margin-right: 1.88679%;
}
@media (min-width: 768px) {
  .main-header-masthead .branding {
    width: 20.75472%;
    float: left;
    margin-right: 1.88679%;
    margin-left: 39.62264%;
    padding-right: 1.375em;
    padding-left: 1.375em;
  }
}
@media (min-width: 1025px) {
  .main-header-masthead .branding {
    margin-top: 10px;
    margin-bottom: 1.375em;
    padding-right: 2.0625em;
    padding-left: 2.0625em;
  }
}
.main-header-masthead .branding .logo {
  text-indent: -999em;
  display: block;
  background: url('../img/logo-exchange.svg?1485428774') no-repeat;
  width: 100%;
  height: 0;
  padding-bottom: 29.03226%;
}
.main-header-masthead .search {
  display: none;
}
@media (min-width: 1025px) {
  .main-header-masthead .search {
    display: block;
    position: absolute;
    width: 15.09434%;
    top: 1.375em;
    right: 1.88679%;
  }
}
.main-header-masthead .search input {
  width: 100%;
  background-color: #001C36;
  font-family: 'FSLucasWeb-Medium', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #FFF;
  padding: .25em .5em;
  border: 1px solid #415067;
}

.main-header-nav.stuck {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #001C36;
  width: 100%;
  z-index: 999;
}

.navbar {
  display: none;
  padding-bottom: 1.375em;
}
@media (min-width: 1025px) {
  .navbar {
    display: block;
    padding: 1.375em 0;
  }
}
.navbar ul {
  list-style: none;
  text-align: center;
}
@media (min-width: 1024px) {
  .navbar li {
    display: inline;
    padding: 0 1em;
    border-right: 1px solid #0070b9;
  }
  .navbar li:last-child {
    border-right: none;
  }
}
.navbar a {
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  transition: all 300ms;
}
.navbar a:hover {
  color: #D3B37D;
}
.navbar .active a,
.navbar .current_page_item a,
.navbar .current_menu_item a {
  color: #D3B37D;
}

.post-type-archive-people .navbar .menu-news a {
  color: #FFF;
}
.post-type-archive-people .navbar .menu-our-people a {
  color: #D3B37D;
}

.heading-lrg {
  font-family: 'Gotham SSm A', 'Gotham SSm B', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.375em;
  line-height: 1.5em;
  line-height: 1.25em;
  font-weight: 200;
  color: #FFF;
  margin-bottom: 20px;
  border-top: 1px solid #D3B37D;
  padding-top: 1em;
  border-bottom: 1px solid #D3B37D;
  padding-bottom: 1em;
}
@media (min-width: 768px) {
  .heading-lrg {
    border-top: none;
    border-bottom: none;
    padding: 0;
    font-size: 1.875em;
    line-height: 1.46667em;
    line-height: 1.46667em;
  }
}
@media (min-width: 1024px) {
  .heading-lrg {
    font-size: 2.5em;
    line-height: 1.1em;
    line-height: 1.375em;
  }
}

.heading-med {
  font-family: 'FSLucasWeb-Light', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1em;
  line-height: 1.375em;
  font-weight: 100;
  color: #D3B37D;
}
@media (min-width: 768px) {
  .heading-med {
    font-size: 1.25em;
    line-height: 1.65em;
  }
}
@media (min-width: 1024px) {
  .heading-med {
    font-size: 1.375em;
    line-height: 1.5em;
  }
}

.location-footer {
  position: relative;
  padding: 0 10px;
}
.location-footer .page-inner {
  padding: 0;
}
@media (min-width: 768px) {
  .location-footer {
    padding: 0;
  }
  .location-footer .page-inner {
    padding: 0 2.75em;
  }
}

@media (min-width: 768px) {
  .location-nav {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .location-footer-items {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}

.location-item {
  padding: 1.375em;
  background-color: #D3B37D;
  color: #FFF;
  position: relative;
}
@media (min-width: 768px) {
  .location-item {
    width: 33.33333%;
    width: calc(100% / 3);
  }
}
.location-item span {
  display: block;
}
.location-item span.toggle:after {
  content: "Location";
  font-weight: normal;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.location-item a {
  text-decoration: none;
  color: #FFF;
}
.location-item:nth-child(1) {
  background-color: #D3B37D;
}
.location-item:nth-child(2) {
  background-color: #001C36;
}
.location-item:nth-child(3) {
  background-color: #415067;
}
.location-item .gmap {
  position: absolute;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background-color: #FFF;
  transform: translateY(-100%);
  left: 0;
  top: 0;
  display: none;
}

@media (min-width: 1140px) {
  .related-content-wrapper {
    position: absolute;
    width: 100%;
    top: 0;
  }
}

.related-content {
  padding: 2.75em;
  display: none;
  z-index: 100;
  width: 100%;
}
@media (min-width: 1024px) {
  .related-content {
    display: block;
    padding: 2.75em 4.125em;
  }
}

.related-item-inner {
  background-color: rgba(211, 179, 125, 0.8);
  margin: 0.6875em;
  height: 280px;
  padding: 1.375em;
}
@media (min-width: 1140px) {
  .related-item-inner {
    height: 320px;
  }
}
.related-item-inner header {
  font-size: 1.375em;
  line-height: 1.5em;
  line-height: 1.2em;
  margin-bottom: 1em;
}
.related-item-inner header a {
  color: #FFF;
  text-decoration: none;
  transition: all 250ms;
}
.related-item-inner header a:hover {
  color: #001C36;
}
.related-item-inner p {
  color: #001C36;
  font-weight: 700;
  line-height: 1.2em;
}
.related-item-inner p:last-of-type {
  position: absolute;
  display: inline-block;
  bottom: 2.0625em;
}
.related-item-inner p a {
  color: #FFF;
}

/* Big accordions - main nav */
.big-accordion,
.big-accordion .children {
  list-style: none;
}

.big-accordion-wrap {
  display: none;
}

.big-accordion {
  *zoom: 1;
  background-color: #001C36;
}
.big-accordion:before, .big-accordion:after {
  content: "";
  display: table;
}
.big-accordion:after {
  clear: both;
}
@media (min-width: 768px) {
  .big-accordion {
    padding-bottom: 2.75em;
  }
}

.big-accordion .page_item {
  text-align: center;
  position: relative;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .big-accordion .page_item {
    width: calc(33.333333% - 5px);
    float: left;
    margin-right: calc(20px / 3);
  }
  .big-accordion .page_item:nth-child(3n) {
    margin-right: 0;
  }
}
.big-accordion .page_item > a {
  display: block;
  background-color: #415067;
  font-size: 0.875em;
  line-height: 1.57143em;
  line-height: 3.14286em;
  height: 3.14286em;
  color: #001C36;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 3.75em;
}
.big-accordion .page_item.page_item_has_children .toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #D3B37D;
  cursor: pointer;
  line-height: 2.75em;
  width: 2.75em;
  height: 2.75em;
  text-align: center;
}
.big-accordion .page_item.page_item_has_children .toggle:before {
  content: "\f107";
  font-family: FontAwesome;
  color: #001C36;
}
.big-accordion .page_item.page_item_has_children .toggle.active:before {
  content: "\f106";
}
.big-accordion .page_item.no-toggle > a {
  padding-right: 1em;
}

.big-accordion .children {
  display: none;
}
.big-accordion .children li {
  background-color: #BCC1D0;
  margin-top: 5px;
}
.big-accordion .children li:last-child {
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .big-accordion .children li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .big-accordion .children .page_item {
    width: auto;
    float: none;
    margin-right: 0;
  }
}
.big-accordion .children a {
  display: block;
  color: #001C36;
  text-transform: uppercase;
  text-decoration: none;
  line-height: normal;
  background-color: #BCC1D0;
  line-height: 3.14286em;
}

/* Small accordions - practice areas etc. */
.small-accordion ul {
  list-style: none;
}
.small-accordion .small-accordion-item {
  margin-bottom: 0.6875em;
  position: relative;
}
.small-accordion .small-accordion-item h3 {
  display: block;
  *zoom: 1;
  font-family: 'FSLucasWeb-Regular', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875em;
  line-height: 1.57143em;
  padding: 0.39286em 0.78571em;
  font-size: 16px;
  font-weight: normal;
  color: #D3B37D;
  border: 1px solid #D3B37D;
  transition: all 300ms;
  cursor: pointer;
}
.small-accordion .small-accordion-item h3:before, .small-accordion .small-accordion-item h3:after {
  content: "";
  display: table;
}
.small-accordion .small-accordion-item h3:after {
  clear: both;
}
.small-accordion .small-accordion-item h3:hover, .small-accordion .small-accordion-item h3:active {
  background-color: #D3B37D;
  color: #001C36;
}
.small-accordion .small-accordion-item h3:hover .toggle, .small-accordion .small-accordion-item h3:active .toggle {
  color: #001C36;
}
.small-accordion .small-accordion-item .toggle {
  position: absolute;
  top: 1px;
  right: 0;
  padding: 0.39286em 0.78571em;
  border-left: 1px solid #D3B37D;
  color: #D3B37D;
  transition: all 250ms;
}
.small-accordion .small-accordion-item .inner {
  display: none;
  padding: 0.6875em;
  border-right: 1px solid #D3B37D;
  border-bottom: 1px solid #D3B37D;
  border-left: 1px solid #D3B37D;
}
.small-accordion .small-accordion-item .inner span {
  display: block;
}
.small-accordion .small-accordion-item .inner ul {
  list-style: none;
  font-size: 0.875em;
  line-height: 1.57143em;
}
.small-accordion .small-accordion-item .inner ul li {
  margin-bottom: 0.6875em;
  line-height: 1.2em;
}
.small-accordion .small-accordion-item .inner ul li:last-of-type {
  margin-bottom: 0;
}
.small-accordion .small-accordion-item .inner ul ul {
  font-size: 1em;
  margin-left: 1em;
  position: relative;
}
.small-accordion .small-accordion-item .inner ul ul:before {
  content: "";
  display: block;
  position: absolute;
  left: -.75em;
  top: 0;
  width: 1px;
  height: calc( 100% - 0.825em );
  background-color: rgba(211, 179, 125, 0.25);
}
.small-accordion .small-accordion-item .inner ul ul li {
  position: relative;
  margin: 0;
}
.small-accordion .small-accordion-item .inner ul ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: -.75em;
  top: 0.6875em;
  width: 0.5em;
  height: 1px;
  background-color: rgba(211, 179, 125, 0.25);
}
.small-accordion .small-accordion-item .inner p {
  font-size: 0.875em;
  line-height: 1.57143em;
}
.small-accordion .small-accordion-item .inner p:last-of-type {
  margin: 0;
}
.small-accordion .small-accordion-item .inner a {
  font-family: 'FSLucasWeb-Regular', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #D3B37D;
  text-decoration: none;
  transition: all 300ms;
}
.small-accordion .small-accordion-item .inner a:hover {
  color: #FFF;
}

/* People menu */
.people-menu {
  list-style: none;
  display: table;
  width: 100%;
  margin-bottom: 1.375em;
}
@media (min-width: 768px) {
  .people-menu {
    margin-bottom: 2.75em;
  }
}
.people-menu li {
  display: inline-table;
  width: 50%;
  text-align: center;
}
.people-menu li:first-child, .people-menu li:nth-child(3) {
  border-right: 1px solid transparent;
}
.people-menu li:first-child, .people-menu li:nth-child(2) {
  border-bottom: 1px solid transparent;
}
.people-menu a {
  display: block;
  background-color: #415067;
  font-size: 0.875em;
  line-height: 1.57143em;
  color: #001C36;
  text-decoration: none;
  padding: 1.03125em;
  transition: all 300ms;
}
.people-menu a:hover {
  background-color: #D3B37D;
}
.people-menu .current_page_item a,
.people-menu .current_menu_item a,
.people-menu .active a {
  background-color: #D3B37D;
}

.mobile-tools {
  width: 66.03774%;
  float: right;
  margin-right: 0;
}
@media (min-width: 768px) {
  .mobile-tools {
    width: 15.09434%;
    float: right;
    margin-right: 0;
  }
}
@media (min-width: 1025px) {
  .mobile-tools {
    display: none;
  }
}

.mobile-icon {
  float: right;
  display: block;
  width: 25px;
  height: 25px;
  margin-left: 10px;
}
.mobile-icon:last-of-type {
  margin-left: 0;
}
@media (min-width: 768px) {
  .mobile-icon {
    width: 2.0625em;
    height: 2.0625em;
    margin-left: 1.375em;
  }
}

.icon-email {
  background-image: url(../img/icon-envelope.svg);
}

.icon-phone {
  background-image: url(../img/icon-phone.svg);
}

.icon-close {
  background-image: url(../img/icon-close.svg);
}

.icon-search {
  background-image: url(../img/icon-search.svg);
}

.icon-toggle {
  background-image: url(../img/icon-bars.svg);
}
.icon-toggle.close {
  background-image: url(../img/icon-close.svg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
}
.mobile-nav .navbar-mobile {
  display: block;
}
@media (min-width: 1140px) {
  .mobile-nav .navbar-mobile {
    display: none;
  }
}
.mobile-nav .navbar-mobile ul {
  list-style: none;
  text-align: center;
  padding-bottom: 1.375em;
}
.mobile-nav .navbar-mobile li {
  border: 1px solid #FFF;
  border-bottom: none;
}
.mobile-nav .navbar-mobile li:last-child {
  border-bottom: 1px solid #FFF;
}
.mobile-nav .navbar-mobile a {
  font-family: 'FSLucasWeb-SemiBold', "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  background-color: #001C36;
  padding: .25em .5em;
}
.mobile-nav .navbar-mobile a:hover {
  background-color: #667786;
}
.mobile-nav .navbar-mobile .current_menu_item > a {
  background-color: #667786;
}
.mobile-nav .subnav li {
  border: none;
  border-top: 2px solid #FFF;
}
.mobile-nav .subnav li:last-child {
  border-bottom: none;
}
.mobile-nav .subnav a {
  color: #001C36;
  background-color: #b3bbc3;
}
.mobile-nav .subnav a:hover {
  background-color: #b3bbc3;
}

.social-banner {
  background-color: #001C36;
  z-index: 10;
  position: relative;
  text-align: center;
  padding-top: 0.6875em;
  padding-bottom: 0.6875em;
}
.social-banner ul {
  list-style: none;
}
.social-banner li {
  display: inline;
  font-size: 30px;
  padding: 0 .25em;
}
.social-banner li a {
  color: #FFF;
  transition: all 300ms;
}
.social-banner li a:hover {
  color: #D3B37D;
}

@media (min-width: 768px) {
  .social-links {
    width: 15.09434%;
    float: right;
    margin-right: 0;
  }
}
.social-links ul {
  list-style: none;
}
.social-links li {
  display: inline;
  font-size: 1.375em;
  line-height: 1.5em;
  padding: 0 0.25em 0 0;
}
.social-links li a {
  color: #FFF;
  transition: all 300ms;
}
.social-links li a:hover {
  color: #D3B37D;
}

.thumblist h2 {
  margin-bottom: 0.6875em;
}
@media (min-width: 1024px) {
  .thumblist h2 {
    margin-bottom: 1.375em;
  }
}
.thumblist ul {
  *zoom: 1;
  list-style: none;
}
.thumblist ul:before, .thumblist ul:after {
  content: "";
  display: table;
}
.thumblist ul:after {
  clear: both;
}

.alt-thumblist {
  margin-bottom: 1.375em;
}
@media (min-width: 1024px) {
  .alt-thumblist {
    margin-bottom: 2.75em;
  }
}

.thumblist-item a {
  font-size: 0.75em;
  line-height: 1.83333em;
  line-height: 1.83333em;
  text-decoration: none;
  color: #FFF;
  transition: all 300ms;
}
.thumblist-item a:hover {
  color: #D3B37D;
}
.thumblist-item a:hover .thumblist-overlay {
  opacity: 1;
}
@media (min-width: 1024px) {
  .thumblist-item a {
    font-size: 0.875em;
    line-height: 1.57143em;
    line-height: 1.57143em;
  }
}

.thumblist-img {
  position: relative;
  margin-bottom: 1.375em;
}

.thumblist-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(211, 179, 125, 0.5);
  opacity: 0;
  transition: opacity 300ms ease;
}

.thumblist-name span {
  display: block;
}

.big-wrap {
  *zoom: 1;
  margin-bottom: 1.375em;
}
.big-wrap:before, .big-wrap:after {
  content: "";
  display: table;
}
.big-wrap:after {
  clear: both;
}
@media (min-width: 768px) {
  .big-wrap {
    padding-left: 1.88679%;
    border-left: 1px solid #D3B37D;
    margin-bottom: 6.875em;
  }
}
@media (min-width: 1024px) {
  .big-wrap {
    width: 94.33962%;
    float: left;
    margin-right: 1.88679%;
    margin-left: 3.77358%;
  }
}

.big-wrap-wide {
  *zoom: 1;
  margin-bottom: 1.375em;
}
.big-wrap-wide:before, .big-wrap-wide:after {
  content: "";
  display: table;
}
.big-wrap-wide:after {
  clear: both;
}
@media (min-width: 768px) {
  .big-wrap-wide {
    padding-left: 1.88679%;
    border-left: 1px solid #D3B37D;
  }
}

.main-content-wrap {
  *zoom: 1;
  margin-bottom: 2.75em;
}
.main-content-wrap:before, .main-content-wrap:after {
  content: "";
  display: table;
}
.main-content-wrap:after {
  clear: both;
}

/*# sourceMappingURL=main.css.map */
