@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/*!
 * 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: 0.75s;
  animation-duration: 0.75s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  color: #1d1d1d;
  font: 16px Lato;
  margin: 0;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#wrapper {
  flex: 1;
}

.no-scroll {
  display: none;
  position: fixed;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 240%;
  font-weight: 900;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 200%;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 175%;
  }
}
@media (max-width: 360px) {
  h1 {
    font-size: 150%;
  }
}
@media (max-width: 335px) {
  h1 {
    font-size: 140%;
  }
}

h2 {
  font-size: 150%;
  margin-bottom: 15px;
}
@media (max-width: 360px) {
  h2 {
    font-size: 125%;
  }
}

h3 {
  font-size: 125%;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 115%;
  }
}
@media (max-width: 640px) {
  h3 {
    font-size: 105%;
  }
}

.content {
  padding: 30px 40px;
}
@media (max-width: 360px) {
  .content {
    padding: 20px 30px;
  }
}

a.mad-btn {
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #33ccff, #0099cc);
  background-image: -moz-linear-gradient(top, #33ccff, #0099cc);
  background-image: -ms-linear-gradient(top, #33ccff, #0099cc);
  background-image: -o-linear-gradient(top, #33ccff, #0099cc);
  background-image: linear-gradient(to bottom, #33ccff, #0099cc);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  color: #ffffff;
  display: block;
  font-size: 24px;
  margin: 30px auto;
  padding: 15px 20px;
  text-decoration: none;
  max-width: 300px;
  width: 100%;
}
a.mad-btn:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffb76b+0,ff7f04+60 */
  background: rgb(255, 183, 107); /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, rgb(255, 183, 107) 0%, rgb(255, 127, 4) 60%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgb(255, 183, 107) 0%, rgb(255, 127, 4) 60%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgb(255, 183, 107) 0%, rgb(255, 127, 4) 60%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffb76b", endColorstr="#ff7f04",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  text-decoration: none;
}

p {
  margin: 0 0 20px 0;
  line-height: 24px;
}

.bold {
  font-weight: 700;
}

@media (max-width: 480px) {
  .mobile-break {
    display: block;
  }
}

@media (max-width: 480px) {
  .medium-or-smaller-size-screen-break {
    display: block;
  }
}

a.mad-general-link {
  color: #0099cc;
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}
a.mad-general-link:after {
  background: url("../img/link-arrow.8054c20f2a31.png") no-repeat center center;
  content: "";
  display: inline-block;
  background-size: contain;
  height: 10px;
  width: 10px;
  margin: 0 0 0 5px;
}
a.mad-general-link:hover {
  text-decoration: underline;
}

a.mad-general-link-bg {
  color: #ffffff;
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}
a.mad-general-link-bg:after {
  background: url("../img/link-arrow-hover.e4244a1b4930.png") no-repeat center center;
  content: "";
  display: inline-block;
  background-size: contain;
  height: 10px;
  width: 10px;
  margin: 0 0 0 5px;
}
a.mad-general-link-bg:hover {
  text-decoration: underline;
}

p.mad-link {
  color: #0099cc;
  position: absolute;
  text-decoration: none;
  bottom: 18px;
  margin-bottom: 2px;
}
p.mad-link:after {
  background: url("../img/link-arrow.8054c20f2a31.png") no-repeat center center;
  content: "";
  display: inline-block;
  background-size: contain;
  height: 10px;
  width: 10px;
  margin: 0 0 0 5px;
}
p.mad-link a {
  color: #0099cc;
  text-decoration: none;
}
p.mad-link a:hover {
  text-decoration: underline;
}

ul {
  margin-left: 30px;
}
ul li {
  list-style-type: disc;
  line-height: 1.2em;
  margin-bottom: 15px;
  padding-left: 3px;
}

.error-graphic-container {
  width: 100%;
  margin: 0 auto 10px;
  max-width: 400px;
}
@media (max-width: 560px) {
  .error-graphic-container {
    max-width: 250px;
  }
}

.big-error-text {
  color: #888;
  font-size: 100px;
  font-weight: 700;
  line-height: 1.4em;
}
@media (max-width: 560px) {
  .big-error-text {
    font-size: 60px;
  }
}

div.mighty-ant-404 {
  background: url("../img/mighty-ant-four-oh-four.399b92030251.jpg") no-repeat center;
  background-size: 100%;
  display: block;
  height: 0;
  padding-bottom: 96.6475095785%;
}

.error-graphic-container ~ h1 {
  max-width: 450px;
  width: 100%;
  margin: 0 auto 30px;
}
@media (max-width: 768px) {
  .error-graphic-container ~ h1 {
    max-width: 350px;
  }
}
@media (max-width: 640px) {
  .error-graphic-container ~ h1 {
    max-width: 350px;
  }
}
@media (max-width: 560px) {
  .error-graphic-container ~ h1 {
    max-width: 330px;
  }
}
@media (max-width: 360px) {
  .error-graphic-container ~ h1 {
    max-width: 280px;
  }
}

.navigation-cms {
  margin-top: 46px;
}
@media (max-width: 560px) {
  .navigation-cms {
    margin-top: 0;
  }
}

div.topic_page_container {
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
}
@media (max-width: 560px) {
  div.topic_page_container h1 {
    line-height: 1em;
    text-align: center;
  }
}

.famous-quote {
  box-sizing: border-box;
  color: #1d1d1d;
  float: right;
  margin-left: 30px;
  margin-bottom: 30px;
  text-align: center;
  width: 250px;
}
.famous-quote h3 {
  font-weight: 700;
  margin: 0 auto;
  width: 200px;
}
@media (max-width: 640px) {
  .famous-quote h3 {
    width: 175px;
  }
}
@media (max-width: 480px) {
  .famous-quote h3 {
    font-size: 125%;
    width: 100%;
    max-width: 240px;
  }
}
.famous-quote p {
  margin: 10px 0 0 0;
  font-style: italic;
}
@media (max-width: 480px) {
  .famous-quote p {
    margin: 5px 0 20px 0;
  }
}
@media (max-width: 640px) {
  .famous-quote {
    width: 175px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .famous-quote {
    float: none;
    margin-left: 0;
    width: 100%;
  }
}

.famous-quote-img {
  height: auto;
  margin: 0 auto 5px;
  width: 250px;
}
@media (max-width: 640px) {
  .famous-quote-img {
    width: 175px;
  }
}

.famous-quote-bio {
  float: left;
  height: auto;
  margin: -12px 10px 0 0;
  width: 70px;
}
@media (max-width: 480px) {
  .famous-quote-bio {
    margin: -8px 5px 0 0;
    width: 60px;
  }
}

.bill-gates {
  max-width: 280px;
}
@media (max-width: 480px) {
  .bill-gates {
    max-width: 265px;
  }
}

.steve-mcconnell {
  max-width: 245px;
}
@media (max-width: 480px) {
  .steve-mcconnell {
    max-width: 230px;
  }
}

.randall-stross {
  max-width: 235px;
}
@media (max-width: 480px) {
  .randall-stross {
    max-width: 220px;
  }
}

.famous-quote-id {
  font-size: 14px;
  line-height: 1.1em;
  margin: 25px 0 0 0;
  text-align: left;
  width: auto;
}
@media (max-width: 640px) {
  .famous-quote-id {
    margin: 25px auto 0;
  }
}

.call-out, .call-out-right, .call-out-left {
  box-sizing: border-box;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #1d1d1d;
  padding: 30px 15px;
  width: 350px;
  font-size: 1.1em;
}
.call-out h3, .call-out-right h3, .call-out-left h3 {
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
}
@media (max-width: 640px) {
  .call-out, .call-out-right, .call-out-left {
    float: none;
    display: block;
    margin: 0 0 20px 0;
    padding: 30px 15px;
    width: 100%;
    text-align: center;
  }
}

.call-out-left {
  margin: 10px 30px 20px 0;
  float: left;
}

.call-out-right {
  float: right;
  margin: 10px 0 20px 30px;
}

.call-out-right-img {
  border-top: 0 solid #ccc;
  border-bottom: 0 solid #ccc;
  color: #555;
  font-size: 16px;
  font-style: italic;
  float: right;
  margin: 10px 0 20px 30px;
  padding: 0;
  text-align: center;
}
.call-out-right-img img {
  width: 100%;
  max-width: 350px;
}
@media (max-width: 560px) {
  .call-out-right-img img {
    max-width: none;
  }
}
.call-out-right-img div {
  display: block;
}
@media (max-width: 640px) {
  .call-out-right-img {
    display: block;
    float: none;
    margin: 10px 0 20px 0;
  }
}
@media (max-width: 560px) {
  .call-out-right-img {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

@media (max-width: 640px) {
  .graphic-desktop {
    display: none;
  }
}

.graphic-mobile {
  display: none;
}
@media (max-width: 640px) {
  .graphic-mobile {
    display: inherit;
  }
}

@media (max-width: 868px) {
  .mobile-title {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .mobile-title {
    max-width: 400px;
  }
}

.mad-edge-block {
  background-color: #f8f8f8;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin: 50px -50vw -30px;
  padding: 0 0 15px;
}

.no-wrap {
  white-space: nowrap;
}

.no-wrap-header {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .no-wrap-header {
    white-space: normal;
  }
}

.hero-text-only {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#33ccff+1,0099cc+29 */
  background: #33ccff; /* Old browsers */
  background: -moz-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* FF3.6-15 */
  background: -webkit-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#33ccff", endColorstr="#0099cc", GradientType=1); /* IE6-9 fallback on horizontal gradient */
  height: 150px;
}
@media (max-width: 640px) {
  .hero-text-only {
    height: 185px;
  }
}
.hero-text-only div {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .hero-text-only div {
    max-width: 400px;
  }
}
.hero-text-only h1 {
  color: #ffffff;
  font-size: 200%;
  text-align: center;
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: 900;
}
.hero-text-only h3 {
  color: #ffffff;
  font-size: 135%;
  text-align: center;
  padding: 0 20px;
  font-weight: 900;
}
.hero-text-only .no-wrap-hero-text {
  white-space: nowrap;
}

h3.page-intro {
  border-bottom: 1px solid #dedede;
  line-height: 150%;
  padding-bottom: 30px;
}

.we-build-img-block {
  box-sizing: border-box;
  color: #1d1d1d;
  float: right;
  margin-left: 30px;
  margin-bottom: 30px;
  margin-top: 8px;
  text-align: center;
  max-width: 450px;
  width: 100%;
}
.we-build-img-block p {
  color: #777;
  font-size: 85%;
  line-height: 135%;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 560px) {
  .we-build-img-block p {
    margin-bottom: 20px;
  }
}
@media (max-width: 868px) {
  .we-build-img-block {
    width: 300px;
    margin-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .we-build-img-block {
    width: 200px;
    margin-bottom: 10px;
  }
}
@media (max-width: 560px) {
  .we-build-img-block {
    display: none;
  }
}

.we-build-img {
  margin: 0 auto 5px;
  width: 100%;
}

.we-build-img-block-mobile {
  display: none;
}
.we-build-img-block-mobile p {
  color: #777;
  font-size: 85%;
  line-height: 135%;
  max-width: 270px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 560px) {
  .we-build-img-block-mobile p {
    margin-bottom: 30px;
  }
}
@media (max-width: 560px) {
  .we-build-img-block-mobile {
    display: block;
    margin: 10px auto;
    width: 100%;
  }
  .we-build-img-block-mobile .we-build-img {
    margin: 0 auto 5px;
  }
}

.img-full-width-container {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}
.img-full-width-container p {
  color: #777;
  font-size: 85%;
  line-height: 135%;
  max-width: 800px;
  margin: 8px auto 30px;
  text-align: center;
}
@media (max-width: 640px) {
  .img-full-width-container p {
    max-width: 270px;
  }
}

.img-full-width {
  height: auto;
  width: 100%;
}
@media (max-width: 640px) {
  .img-full-width {
    display: none;
  }
}

.img-full-width-mobile {
  display: none;
}
@media (max-width: 640px) {
  .img-full-width-mobile {
    display: block;
    height: auto;
    width: 100%;
  }
}

/* lato-300 - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/lato-v11-latin-300.100dadd6d763.eot"); /* IE9 Compat Modes */
  src: local("Lato Light"), local("Lato-Light"), url("../fonts/lato-v11-latin-300.100dadd6d763.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-v11-latin-300.3e86c4948704.woff2") format("woff2"), url("../fonts/lato-v11-latin-300.6f934cd8100d.woff") format("woff"), url("../fonts/lato-v11-latin-300.ad9795e9e558.ttf") format("truetype"), url("../fonts/lato-v11-latin-300.1aed0c80f99d.svg#Lato") format("svg"); /* Legacy iOS */
}
/* lato-regular - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lato-v11-latin-regular.dc7b7052df5c.eot"); /* IE9 Compat Modes */
  src: local("Lato Regular"), local("Lato-Regular"), url("../fonts/lato-v11-latin-regular.dc7b7052df5c.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-v11-latin-regular.6748e0e1c0be.woff2") format("woff2"), url("../fonts/lato-v11-latin-regular.f137ee486278.woff") format("woff"), url("../fonts/lato-v11-latin-regular.c45152a20fca.ttf") format("truetype"), url("../fonts/lato-v11-latin-regular.ee3a1c8ce9d9.svg#Lato") format("svg"); /* Legacy iOS */
}
/* lato-700 - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/lato-v11-latin-700.43a8fa5531f2.eot"); /* IE9 Compat Modes */
  src: local("Lato Bold"), local("Lato-Bold"), url("../fonts/lato-v11-latin-700.43a8fa5531f2.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-v11-latin-700.649e18eb6a85.woff2") format("woff2"), url("../fonts/lato-v11-latin-700.fd373951a3af.woff") format("woff"), url("../fonts/lato-v11-latin-700.a30435e0c5ed.ttf") format("truetype"), url("../fonts/lato-v11-latin-700.cfdfec6d275f.svg#Lato") format("svg"); /* Legacy iOS */
}
/* lato-900 - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/lato-v11-latin-900.4f7ab788ecdf.eot"); /* IE9 Compat Modes */
  src: local("Lato Black"), local("Lato-Black"), url("../fonts/lato-v11-latin-900.4f7ab788ecdf.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-v11-latin-900.f377f4433f32.woff2") format("woff2"), url("../fonts/lato-v11-latin-900.c208c9784584.woff") format("woff"), url("../fonts/lato-v11-latin-900.01f5fcc5ad6e.ttf") format("truetype"), url("../fonts/lato-v11-latin-900.030643bf98d2.svg#Lato") format("svg"); /* Legacy iOS */
}
.navigation {
  padding: 0 30px;
}
@media (max-width: 640px) {
  .navigation {
    padding: 0;
  }
}

.nav-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

header {
  width: 100%;
  height: 75px;
  background: #eeeeee;
  -webkit-transition: margin-bottom 0.5s ease;
  padding-top: 8px;
}
@media (max-width: 768px) {
  header {
    height: 105px;
  }
}

.mobile-menu-margin {
  margin-bottom: 180px;
}

.header-left {
  float: left;
  width: 180px;
  margin-left: -15px;
}
@media (max-width: 768px) {
  .header-left {
    box-sizing: border-box;
    float: none;
    margin-left: 0;
    margin-right: 0;
    padding-right: 10px;
    text-align: center;
    width: 100%;
  }
}

label.mobile-more {
  display: none;
  background-color: transparent;
  font-size: 18px;
}
@media (max-width: 560px) {
  label.mobile-more {
    cursor: pointer;
    display: inline-block;
    padding: 8px 10px 20px;
    margin-left: 10px;
    margin-top: -5px;
    margin-right: -10px;
    box-sizing: content-box;
  }
}

label.mobile-more.mobile-menu-tab {
  background-color: #1d1d1d;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  -khtml-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  color: #fff;
}

.header-right {
  position: relative;
  float: right;
  text-align: right;
}
@media (max-width: 768px) {
  .header-right {
    float: none;
    text-align: center;
    width: 100%;
    z-index: 999999;
  }
}

#open {
  display: none;
}

@media (max-width: 768px) {
  nav {
    display: block;
    background-color: #1d1d1d;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.5s ease;
    margin-bottom: 30px;
    width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 560px) {
  nav {
    margin-top: -11px;
  }
}

nav > a {
  color: #262626;
  font-size: 21px;
  position: relative;
  display: inline-block;
  line-height: 75px;
  margin: 10px 0 0 30px;
  text-decoration: none;
}
@media (max-width: 868px) {
  nav > a {
    font-size: 20px;
    margin: 10px 0 0 18px;
  }
}
@media (max-width: 640px) {
  nav > a {
    background-color: #1d1d1d;
    color: #ffffff;
    display: block;
    font-size: 20px;
    padding: 5px 30px;
    text-align: left;
    line-height: 18.75px;
  }
  nav > a:first-child {
    margin-top: 15px;
  }
}

nav > a:hover {
  color: #6c8c23;
}

@media (max-width: 640px) {
  input[type=checkbox]:checked + nav {
    height: 180px;
  }
}

.hidden-desktop {
  display: none;
}

.brand {
  box-sizing: border-box;
  float: left;
  height: 75px;
  padding: 10px 0;
  width: 180px;
}
@media (max-width: 768px) {
  .brand {
    float: none;
    margin-left: -10px;
    margin-bottom: -7px;
  }
}

.home-nav {
  display: none;
}
@media (max-width: 768px) {
  .home-nav {
    display: inherit;
  }
}

@media (max-width: 640px) {
  .mobile-hide-lg {
    display: inherit;
  }
}

@media (max-width: 768px) {
  .mobile-hide-sm {
    display: block;
  }
}

/* Hamburger / X animation */
div#mad-menu-icon {
  width: 8px;
  height: 8px;
  display: inline-block;
  position: relative;
  margin: 0 5px 0 1px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

#mad-menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #262626;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  opacity: 1;
}

#mad-menu-icon span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 3px;
  left: 5px;
}

#mad-menu-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 3px;
}

#mad-menu-icon.open span {
  background: #fff;
}

#mad-menu-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#mad-menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

a:hover > #mad-menu-icon span {
  background: #0099cc;
}

.shrinking-nav {
  display: none;
}
@media (max-width: 768px) {
  .shrinking-nav {
    display: inline-block;
    text-align: center;
  }
  .shrinking-nav a {
    color: #262626;
    font-size: 20px;
    margin: 0 0 0 20px;
    text-decoration: none;
  }
}
@media (max-width: 768px) and (max-width: 640px) {
  .shrinking-nav a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .shrinking-nav a:first-of-type {
    margin: 0;
  }
}

.standard-why {
  display: inherit;
}
@media (max-width: 992px) {
  .standard-why {
    display: none;
  }
}
@media (max-width: 560px) {
  .standard-why {
    display: inherit;
  }
}

.mobile-why {
  display: none;
}
@media (max-width: 992px) {
  .mobile-why {
    display: inherit;
  }
}
@media (max-width: 560px) {
  .mobile-why {
    display: none;
  }
}

@media (max-width: 560px) {
  .shrink-approach {
    display: none;
  }
}

@media (max-width: 360px) {
  .shrink-about {
    display: none;
  }
}

@media (max-width: 480px) {
  .shrink-why {
    display: none;
  }
}

@media (max-width: 560px) {
  .shrink-blog {
    display: none;
  }
}

div.free-consultation {
  background-color: #6c8c23;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
  -khtml-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  color: #fff;
  font-size: 18px;
  margin-top: -7px;
  padding: 5px 15px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  div.free-consultation {
    display: none;
    margin-top: -4px;
  }
}
div.free-consultation:after {
  top: 100%;
  left: 78%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #6c8c23;
  border-width: 8px;
  margin-left: -8px;
}
@media (max-width: 768px) {
  div.free-consultation:after {
    left: 81%;
  }
}
@media (max-width: 640px) {
  div.free-consultation {
    display: none;
  }
}

a.active {
  color: #6c8c23;
}
a.active:hover {
  color: #6c8c23;
}

a.mobile-active {
  color: #6c8c23;
}
a.mobile-active:hover {
  color: #6c8c23;
}

.footer {
  color: #fff;
  background: #222;
  padding: 0 30px;
  box-sizing: border-box;
  width: 100%;
}

.footer-container {
  box-sizing: border-box;
  padding: 20px 0;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.footer-container-nav {
  color: #fff;
  background: #1d1d1d;
  padding: 20px 30px;
  flex: 0 0 auto;
}

.footer-brand {
  display: inline-block;
  height: 55px;
  margin: -5px 40px 0 0;
  vertical-align: top;
  width: 180px;
}
@media (max-width: 992px) {
  .footer-brand {
    display: block;
  }
}

.footer-content {
  display: inline-block;
  /*max-width:700px;*/
}
@media (max-width: 992px) {
  .footer-content {
    display: block;
    max-width: 100%;
  }
}

footer {
  font-size: 15px;
  font-weight: 100;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 480px) {
  footer {
    font-size: 14px;
  }
}
footer ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: left;
  max-width: 550px;
}
@media (max-width: 480px) {
  footer ul {
    display: block;
    line-height: 20px;
    max-width: 270px;
    margin: 0 auto 10px;
    text-align: center;
  }
}
@media (max-width: 360px) {
  footer ul {
    max-width: 250px;
  }
}
footer ul li {
  list-style: none;
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  padding: 0 20px 0 0;
}
@media (max-width: 560px) {
  footer ul li {
    padding: 0 15px 0 0;
  }
}
@media (max-width: 360px) {
  footer ul li {
    padding: 0 12px 0 0;
  }
}
footer ul li a {
  display: block;
  color: #6c6c6c;
  text-decoration: none;
}
footer ul li a:hover {
  color: #f4da3d;
}
@media (max-width: 480px) {
  footer {
    float: none;
    text-align: center;
  }
}

.copyright {
  color: #6c6c6c;
  float: right;
  text-align: right;
  max-width: 335px;
}
.copyright a {
  color: #6c6c6c;
  display: inline-block;
  text-decoration: none;
}
.copyright a:hover {
  color: #f4da3d;
}
@media (max-width: 768px) {
  .copyright {
    float: none;
    font-size: 12px;
    display: block;
    margin-top: 10px;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .copyright {
    text-align: center;
    max-width: none;
  }
}

.copyright-spacer {
  padding: 0 15px;
}
@media (max-width: 560px) {
  .copyright-spacer {
    padding: 0 8px;
  }
}

.footer-overview {
  display: block;
  padding-top: 5px;
  width: 100%;
}

.footer-address {
  display: inline-block;
  max-width: 300px;
  vertical-align: top;
  width: 100%;
}
.footer-address h2 {
  color: #6c8c23;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}
.footer-address:nth-of-type(2) {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .footer-address:nth-of-type(2) {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.footer-address p {
  margin: 0 0 10px 0;
}
@media (max-width: 768px) {
  .footer-address {
    display: block;
    max-width: 500px;
  }
}

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

.lets-talk-content {
  padding: 50px 30px;
  position: relative;
}
@media (max-width: 768px) {
  .lets-talk-content {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .lets-talk-content {
    padding: 30px 0 0 0;
  }
}

div#lets-talk {
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
div#lets-talk h1, div#lets-talk h2, div#lets-talk p {
  color: #1d1d1d;
}
div#lets-talk h4 {
  color: #0099cc;
  text-transform: uppercase;
}

.lets-talk-intro {
  display: inline-block;
  width: 45%;
}
.lets-talk-intro h4 {
  font-weight: 700;
}
@media (max-width: 768px) {
  .lets-talk-intro {
    margin-bottom: 10px;
    width: 100%;
  }
  .lets-talk-intro h2 {
    max-width: 400px;
  }
  .lets-talk-intro p {
    max-width: 600px;
  }
}
@media (max-width: 480px) {
  .lets-talk-intro {
    box-sizing: border-box;
    padding: 0 30px;
  }
}

.lets-talk-container {
  background-color: #efefef;
  box-sizing: border-box;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  padding: 30px;
  width: 50%;
}
@media (max-width: 768px) {
  .lets-talk-container {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .lets-talk-container {
    margin-bottom: 0;
    border-radius: 0;
  }
}

#lets-talk-form > label {
  color: #333;
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
}
#lets-talk-form > label input, #lets-talk-form > label textarea {
  background-color: #ffffff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  border-style: none;
  box-sizing: border-box;
  display: block;
  font-family: Lato;
  font-size: 100%;
  line-height: 24px;
  margin-top: 5px;
  outline: none;
  padding: 8px;
  width: 100%;
}
#lets-talk-form > label textarea {
  min-height: 150px;
}

#lets-talk-form > label > input.error-box,
#lets-talk-form > label > textarea.error-box {
  border: 2px dashed #e9322d;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.error-message {
  color: #e9322d;
  font-size: 14px;
  font-weight: 700;
  float: right;
  margin-right: 5px;
  margin-top: -3px;
  padding: 3px 0;
}
@media (max-width: 360px) {
  .error-message {
    float: none;
    display: block;
    padding: 5px 0 0;
  }
}

.error-capture-message {
  background-color: #e9322d;
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 10px auto;
  padding: 3px 0;
  max-width: 400px;
  width: 100%;
}

.error-icon {
  display: inline-block;
  width: 18px;
  height: auto;
  margin: 0 2px -2px 2px;
}

#lets-talk-form > div.submit-container {
  text-align: center;
}
#lets-talk-form > div.submit-container button {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  background-color: #0099cc;
  border: 0 solid #0099cc;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  margin: 15px auto 0 auto;
  padding: 10px 30px;
  text-decoration: none;
}
#lets-talk-form > div.submit-container button:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffb76b+0,ff7f04+60 */
  background: rgb(255, 183, 107); /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, rgb(255, 183, 107) 0%, rgb(255, 127, 4) 60%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgb(255, 183, 107) 0%, rgb(255, 127, 4) 60%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgb(255, 183, 107) 0%, rgb(255, 127, 4) 60%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffb76b", endColorstr="#ff7f04",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  text-decoration: none;
}

.quote-block-content {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#33ccff+1,0099cc+29 */
  background: #33ccff; /* Old browsers */
  background: -moz-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* FF3.6-15 */
  background: -webkit-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33ccff", endColorstr="#0099cc",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  margin: 0 auto;
  padding: 40px 30px 30px;
}

.client-quote-block-content {
  background: linear-gradient(rgba(102, 153, 51, 0.9), rgba(102, 153, 51, 0.9)), url("../img/client-quote-bg-forensisgroup.73edd01285bd.jpg") no-repeat center center;
  background-size: cover;
  margin: 0 auto;
  padding: 40px 30px 30px;
}
.client-quote-block-content .quote-block-container p, .client-quote-block-content .quote-block-container h2 {
  color: #ffffff;
}

.client-quote-block-placeholder-content {
  background: linear-gradient(rgba(102, 153, 51, 0.9), rgba(102, 153, 51, 0.9)), url("../img/client-quote-bg-placeholder.e9c0eca80c7b.jpg") no-repeat center center;
  background-size: cover;
  margin: 0 auto;
  padding: 40px 30px 30px;
}
.client-quote-block-placeholder-content .quote-block-container p, .client-quote-block-placeholder-content .quote-block-container h2 {
  color: #ffffff;
}

.quote-block-container {
  margin: 0 auto;
  max-width: 700px;
  padding: 0;
  width: 100%;
  position: relative;
}
@media (max-width: 992px) {
  .quote-block-container {
    margin: 0 auto;
    max-width: 600px;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 868px) {
  .quote-block-container {
    margin: 0 auto;
    max-width: 400px;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .quote-block-container {
    margin: 0 auto;
    max-width: 360px;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 560px) {
  .quote-block-container {
    padding: 40px 0 50px;
  }
}

.quote-block-container h2, .quote-block-container p {
  color: #ffffff;
}

.quote-block-container > div {
  font-size: 125%;
  line-height: 170%;
  margin: 0 0 20px 0;
}
@media (max-width: 560px) {
  .quote-block-container > div {
    font-size: 115%;
    margin: 0 auto 20px;
  }
}

.quote-block-container > p a {
  color: #ffffff;
  text-decoration: none;
}

.quotation, .quotation-right-white, .quotation-left-white, .quotation-right, .quotation-left {
  height: 50px;
  width: 50px;
  margin: 0 0 0 0;
  position: absolute;
}
@media (max-width: 768px) {
  .quotation, .quotation-right-white, .quotation-left-white, .quotation-right, .quotation-left {
    height: 40px;
    width: 40px;
  }
}

.quotation-left {
  background: url("../img/big-quote-left.c1e2cb9da8e5.png") no-repeat center center;
  background-size: contain;
  left: -100px;
  top: -10px;
}
@media (max-width: 640px) {
  .quotation-left {
    left: -60px;
  }
}
@media (max-width: 560px) {
  .quotation-left {
    left: 0;
    right: 0;
    margin: 0;
  }
}

.quotation-right {
  background: url("../img/big-quote-right.418228ae6c99.png") no-repeat center center;
  background-size: contain;
  right: -75px;
  bottom: -10px;
}
@media (max-width: 640px) {
  .quotation-right {
    right: -50px;
  }
}
@media (max-width: 560px) {
  .quotation-right {
    right: 0;
    left: 0;
    margin: auto;
  }
}

.quotation-left-white {
  background: url("../img/big-quote-left-white.e08425c49b62.png") no-repeat center center;
  background-size: contain;
  left: -90px;
  top: -10px;
}
@media (max-width: 768px) {
  .quotation-left-white {
    left: -70px;
  }
}
@media (max-width: 640px) {
  .quotation-left-white {
    left: -60px;
  }
}
@media (max-width: 560px) {
  .quotation-left-white {
    left: 0;
    right: 0;
    margin: 0;
  }
}

.quotation-right-white {
  background: url("../img/big-quote-right-white.6e9abbdcfabb.png") no-repeat center center;
  background-size: contain;
  right: -75px;
  bottom: -10px;
}
@media (max-width: 768px) {
  .quotation-right-white {
    right: -60px;
  }
}
@media (max-width: 640px) {
  .quotation-right-white {
    right: -50px;
  }
}
@media (max-width: 560px) {
  .quotation-right-white {
    right: 0;
    left: 0;
    margin: auto;
  }
}

.client-bio-placeholder {
  background: url("../img/client-bio-placeholder.1307af828583.jpg") no-repeat center center;
  background-size: contain;
  border: 2px #fff solid;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: -8px;
  height: 75px;
  width: 75px;
}

.client-bio-forensisgroup {
  background: url("../img/forensisgroup-mercy-steenwyk.35bf6e6623d0.jpg") no-repeat center center;
  background-size: contain;
  border: 2px #fff solid;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: -8px;
  height: 75px;
  width: 75px;
}

.client-logo-placeholder {
  background: url("../img/placeholder-logo.b7944a320196.png") no-repeat center center;
  background-size: contain;
  display: block;
  margin: 0 auto 20px;
  height: 75px;
  width: 100%;
}

.client-logo-forensisgroup {
  background: url("../img/forensisgroup-logo.843ee0950435.png") no-repeat center center;
  background-size: contain;
  display: block;
  margin: 0 auto 20px;
  height: 75px;
  width: 100%;
}

.quote-intro {
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
}

div.login {
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
  text-align: center;
}

div.login > form > input {
  background-color: #efefef;
  border: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  box-shadow: -1px -1px 3px #888888 inset;
  font-size: 1em;
  padding: 12px 8px;
  text-align: center;
  width: 200px;
}

div.login > form > button {
  position: relative;
  top: -2px;
  width: 100px;
  height: 42px;
  padding: 12px 8px;
  margin: 0;
  border-radius: 3px;
}

.client-stories-container-candace-rypisis {
  background: url("../img/client-stories-bg-candace-rypisi.562b7dddf842.jpg") no-repeat center center;
  background-size: cover;
  margin: 0 auto;
  padding: 0 0 40px 0;
}
@media (max-width: 560px) {
  .client-stories-container-candace-rypisis {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .client-stories-container-candace-rypisis {
    background: none;
  }
}

.client-stories-container-forensis {
  background: url("../img/client-stories-bg-forensis.620e093c2380.jpg") no-repeat center center;
  background-size: cover;
  margin: 0 auto;
  width: 100%;
  padding: 0 0 40px 0;
}
@media (max-width: 560px) {
  .client-stories-container-forensis {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .client-stories-container-forensis {
    background: none;
  }
}

.client-stories-container-highland {
  background: url("../img/client-stories-bg-highland.6933dbac0f21.jpg") no-repeat center center;
  background-size: cover;
  margin: 0 auto;
  width: 100%;
  padding: 0 0 40px 0;
}
@media (max-width: 560px) {
  .client-stories-container-highland {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .client-stories-container-highland {
    background: none;
  }
}

.client-story-logo-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  height: 120px;
  margin-top: -30px;
  width: 100%;
}

.client-story-logo {
  height: 70px;
  width: auto;
  margin: 0 auto;
}

.client-stories-container-nobg {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#788384+0,70797f+36,28343b+100 */
  background: rgb(120, 131, 132); /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, rgb(120, 131, 132) 0%, rgb(112, 121, 127) 36%, rgb(40, 52, 59) 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgb(120, 131, 132) 0%, rgb(112, 121, 127) 36%, rgb(40, 52, 59) 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgb(120, 131, 132) 0%, rgb(112, 121, 127) 36%, rgb(40, 52, 59) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#788384", endColorstr="#28343b",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  margin: 0 auto;
  padding: 0 0 0 0;
}
@media (max-width: 560px) {
  .client-stories-container-nobg {
    padding: 0;
  }
}

.client-stories-title-bar {
  background-color: #1d1d1d;
  color: #ffffff;
  margin-bottom: 40px;
  padding: 10px;
  text-align: center;
}
@media (max-width: 560px) {
  .client-stories-title-bar {
    margin-bottom: 0;
  }
}

.client-stories-content {
  margin: 0 auto;
  max-width: 700px;
  padding: 0;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#788384+0,70797f+36,28343b+100 */
  background: rgb(120, 131, 132); /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, rgb(120, 131, 132) 0%, rgb(112, 121, 127) 36%, rgb(40, 52, 59) 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgb(120, 131, 132) 0%, rgb(112, 121, 127) 36%, rgb(40, 52, 59) 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgb(120, 131, 132) 0%, rgb(112, 121, 127) 36%, rgb(40, 52, 59) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#788384", endColorstr="#28343b",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  box-sizing: border-box;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  -khtml-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  opacity: 0.97;
  padding: 30px 30px 50px 30px;
  position: relative;
}
.client-stories-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  margin: 0 auto 15px auto;
  max-width: 500px;
}
.client-stories-content p:last-of-type {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .client-stories-content {
    margin: 0 auto;
    max-width: 500px;
    padding: 0;
    width: 100%;
    padding: 30px 30px 50px 30px;
  }
  .client-stories-content p {
    max-width: 350px;
  }
}
@media (max-width: 768px) and (max-width: 560px) {
  .client-stories-content {
    -moz-border-radius: 0 0 0 0;
    -webkit-border-radius: 0 0 0 0;
    -ms-border-radius: 0 0 0 0;
    -o-border-radius: 0 0 0 0;
    -khtml-border-radius: 0 0 0 0;
    border-radius: 0 0 0 0;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    width: 100%;
    max-width: 100%;
    padding: 30px 30px 50px 30px;
  }
}

.client-stories-content-nobg {
  margin: 0 auto;
  max-width: 700px;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  -khtml-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  opacity: 0.9;
  padding: 0 30px 50px 30px;
  position: relative;
}
.client-stories-content-nobg p {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  margin: 0 auto 15px auto;
  max-width: 500px;
}
.client-stories-content-nobg p:last-of-type {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .client-stories-content-nobg {
    margin: 0 auto;
    max-width: 500px;
    padding: 0;
    width: 100%;
    padding: 0 30px 50px 30px;
  }
  .client-stories-content-nobg p {
    max-width: 350px;
  }
}
@media (max-width: 768px) and (max-width: 560px) {
  .client-stories-content-nobg {
    -moz-border-radius: 0 0 0 0;
    -webkit-border-radius: 0 0 0 0;
    -ms-border-radius: 0 0 0 0;
    -o-border-radius: 0 0 0 0;
    -khtml-border-radius: 0 0 0 0;
    border-radius: 0 0 0 0;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    width: 100%;
    max-width: 100%;
    padding: 30px 30px 50px 30px;
  }
}

.client-stories-highlight {
  font-weight: 700;
  font-size: 20px;
}

.client-stories-bio {
  margin: 0 auto;
  max-width: 700px;
  padding: 0;
  width: 100%;
  background-color: #1d1d1d;
  box-sizing: border-box;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  -khtml-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .client-stories-bio {
    margin: 0 auto;
    max-width: 500px;
    padding: 0;
    width: 100%;
    padding: 20px 30px;
  }
}
@media (max-width: 560px) {
  .client-stories-bio {
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    width: 100%;
    -moz-border-radius: 0 0 0 0;
    -webkit-border-radius: 0 0 0 0;
    -ms-border-radius: 0 0 0 0;
    -o-border-radius: 0 0 0 0;
    -khtml-border-radius: 0 0 0 0;
    border-radius: 0 0 0 0;
    padding: 20px 30px;
  }
}
@media (max-width: 480px) {
  .client-stories-bio {
    display: block;
  }
}

.client-stories-bio-nobg {
  background-color: #1d1d1d;
  box-sizing: border-box;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 768px) {
  .client-stories-bio-nobg {
    padding: 20px 30px;
  }
}
@media (max-width: 560px) {
  .client-stories-bio-nobg {
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    width: 100%;
    -moz-border-radius: 0 0 0 0;
    -webkit-border-radius: 0 0 0 0;
    -ms-border-radius: 0 0 0 0;
    -o-border-radius: 0 0 0 0;
    -khtml-border-radius: 0 0 0 0;
    border-radius: 0 0 0 0;
    padding: 20px 30px;
  }
}
@media (max-width: 480px) {
  .client-stories-bio-nobg {
    display: block;
  }
}

.client-bio-img {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  margin-right: 20px;
  height: 100px;
  width: 100px;
  z-index: 1;
}
@media (max-width: 768px) {
  .client-bio-img {
    height: 75px;
    width: 75px;
  }
}
@media (max-width: 480px) {
  .client-bio-img {
    display: block;
    height: 125px;
    width: 125px;
    margin: 0 auto -20px;
  }
}

@media (max-width: 480px) {
  .no-linkedin {
    margin: 0 auto 10px;
  }
}

.client-logo-placeholder {
  background: url("../img/placeholder-logo.b7944a320196.png") no-repeat center center;
  background-size: contain;
  display: block;
  margin: 0 auto 20px;
  height: 75px;
  width: 100%;
}

.client-logo-forensisgroup {
  background: url("../img/forensisgroup-logo.843ee0950435.png") no-repeat center center;
  background-size: contain;
  display: block;
  margin: 0 auto 20px;
  height: 75px;
  width: 100%;
}

.client-stories-linkedin {
  float: left;
  margin: 1px 10px 0 0;
  height: 30px;
  width: 30px;
}
@media (max-width: 480px) {
  .client-stories-linkedin {
    float: none;
    margin: 0 auto;
  }
}

.client-bio-details {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .client-bio-details {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .client-bio-details {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

.client-bio-name {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .client-bio-name {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .client-bio-name {
    margin-top: 5px;
  }
}

.bio-mercy-steenwyk {
  min-width: 230px;
}
@media (max-width: 768px) {
  .bio-mercy-steenwyk {
    min-width: 190px;
  }
}

.client-bio-title {
  color: #ffffff;
  font-style: italic;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .client-bio-title {
    font-size: 14px;
  }
}

.client-bio-organization {
  color: #fff;
  line-height: 1.3em;
  max-width: 390px;
}
.client-bio-organization a {
  color: #fff;
}
.client-bio-organization a:hover {
  color: #f4da3d;
  text-decoration: none;
}
@media (max-width: 768px) {
  .client-bio-organization {
    font-size: 14px;
    max-width: 335px;
  }
}
@media (max-width: 560px) {
  .client-bio-organization {
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .client-bio-organization {
    margin: 0 auto;
  }
}

.client-stories-quotation, .client-stories-quotation-right-logo-nobg, .client-stories-quotation-right-logo, .client-stories-quotation-right, .client-stories-quotation-left-logo, .client-stories-quotation-left-logo-nobg, .client-stories-quotation-left, .client-stories-quotation-left-mobile {
  height: 30px;
  width: 30px;
  margin: 0 0 0 0;
  position: absolute;
}
@media (max-width: 768px) {
  .client-stories-quotation, .client-stories-quotation-right-logo-nobg, .client-stories-quotation-right-logo, .client-stories-quotation-right, .client-stories-quotation-left-logo, .client-stories-quotation-left-logo-nobg, .client-stories-quotation-left, .client-stories-quotation-left-mobile {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 480px) {
  .client-stories-quotation, .client-stories-quotation-right-logo-nobg, .client-stories-quotation-right-logo, .client-stories-quotation-right, .client-stories-quotation-left-logo, .client-stories-quotation-left-logo-nobg, .client-stories-quotation-left, .client-stories-quotation-left-mobile {
    position: relative;
    display: block;
  }
}

.client-stories-quotation-left-mobile {
  display: none;
}
@media (max-width: 480px) {
  .client-stories-quotation-left-mobile {
    display: block;
    background: url("../img/big-quote-left-white.e08425c49b62.png") no-repeat center center;
    background-size: contain;
    margin: 0 auto 20px;
  }
}

.client-stories-quotation-left {
  background: url("../img/big-quote-left-white.e08425c49b62.png") no-repeat center center;
  background-size: contain;
  left: 40px;
  top: 25px;
}
@media (max-width: 768px) {
  .client-stories-quotation-left {
    left: 25px;
  }
}
@media (max-width: 560px) {
  .client-stories-quotation-left {
    left: 20px;
  }
}
@media (max-width: 480px) {
  .client-stories-quotation-left {
    display: none;
  }
}

.client-stories-quotation-left-logo-nobg {
  background: url("../img/big-quote-left-white.e08425c49b62.png") no-repeat center center;
  background-size: contain;
  left: 40px;
  top: 110px;
}
@media (max-width: 768px) {
  .client-stories-quotation-left-logo-nobg {
    left: 25px;
  }
}
@media (max-width: 560px) {
  .client-stories-quotation-left-logo-nobg {
    left: 20px;
  }
}
@media (max-width: 480px) {
  .client-stories-quotation-left-logo-nobg {
    display: none;
  }
}

.client-stories-quotation-left-logo {
  background: url("../img/big-quote-left-white.e08425c49b62.png") no-repeat center center;
  background-size: contain;
  left: 40px;
  top: 110px;
}
@media (max-width: 768px) {
  .client-stories-quotation-left-logo {
    left: 25px;
  }
}
@media (max-width: 560px) {
  .client-stories-quotation-left-logo {
    left: 20px;
  }
}
@media (max-width: 480px) {
  .client-stories-quotation-left-logo {
    display: none;
  }
}

.client-stories-quotation-right {
  background: url("../img/big-quote-right-white.6e9abbdcfabb.png") no-repeat center center;
  background-size: contain;
  right: 40px;
  bottom: 45px;
}
@media (max-width: 768px) {
  .client-stories-quotation-right {
    right: 25px;
  }
}
@media (max-width: 560px) {
  .client-stories-quotation-right {
    right: 20px;
  }
}
@media (max-width: 480px) {
  .client-stories-quotation-right {
    bottom: 0;
    margin: 20px auto 0;
    right: 0;
    left: 0;
  }
}

.client-stories-quotation-right-logo {
  background: url("../img/big-quote-right-white.6e9abbdcfabb.png") no-repeat center center;
  background-size: contain;
  right: 40px;
  bottom: 45px;
}
@media (max-width: 768px) {
  .client-stories-quotation-right-logo {
    right: 25px;
  }
}
@media (max-width: 560px) {
  .client-stories-quotation-right-logo {
    right: 20px;
  }
}
@media (max-width: 480px) {
  .client-stories-quotation-right-logo {
    bottom: 0;
    margin: 20px auto 0;
    right: 0;
    left: 0;
  }
}

.client-stories-quotation-right-logo-nobg {
  background: url("../img/big-quote-right-white.6e9abbdcfabb.png") no-repeat center center;
  background-size: contain;
  right: 40px;
  bottom: 45px;
}
@media (max-width: 768px) {
  .client-stories-quotation-right-logo-nobg {
    right: 25px;
  }
}
@media (max-width: 560px) {
  .client-stories-quotation-right-logo-nobg {
    right: 20px;
  }
}
@media (max-width: 480px) {
  .client-stories-quotation-right-logo-nobg {
    bottom: 0;
    margin: 20px auto 0;
    right: 0;
    left: 0;
  }
}

.client-work-header-container {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ededed+100 */
  background: #ffffff; /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, #ededed 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%, #ededed 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, #ffffff 0%, #ededed 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ededed",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  width: 100%;
  margin: 0 auto;
}

.client-work-header-img {
  max-width: 1200px;
  margin: 0 auto;
}

.client-work-content {
  padding: 20px 30px 0 30px;
  box-sizing: border-box;
}

.client-work-title-bg {
  margin: 0 auto;
  width: 100%;
  max-height: 800px;
}
@media (max-width: 560px) {
  .client-work-title-bg {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .client-work-title-bg {
    background: none;
  }
}

.client-work-title-bar {
  background-color: #00a8ab;
  color: #ffffff;
  font-size: 150%;
  font-weight: 700;
  padding: 10px;
  text-align: center;
}
@media (max-width: 560px) {
  .client-work-title-bar {
    margin-bottom: 0;
  }
}

.client-work-title {
  text-align: center;
  width: 100%;
  color: #1a1a1a;
  margin: 10px auto 50px;
}
@media (max-width: 640px) {
  .client-work-title {
    width: 100%;
    margin: 0 auto 65px;
  }
}

.client-work-title-single {
  text-align: center;
  width: 100%;
  color: #1a1a1a;
  margin: 10px auto 0;
}
@media (max-width: 640px) {
  .client-work-title-single {
    width: 100%;
    margin: 0 auto;
  }
}

.client-work-single-column {
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  color: #262626;
  padding: 5px 30px;
  position: relative;
  text-align: right;
}
.client-work-single-column h3 {
  float: right;
  max-width: 640px;
  margin: 0 0 30px 0;
}
@media (max-width: 768px) {
  .client-work-single-column h3 {
    max-width: 600px;
  }
}
@media (max-width: 640px) {
  .client-work-single-column h3 {
    margin-bottom: 15px;
  }
}
@media (max-width: 640px) {
  .client-work-single-column {
    text-align: center;
  }
}

.client-work-container {
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-sizing: border-box;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  padding: 30px 0;
}
@media (max-width: 640px) {
  .client-work-container {
    display: block;
  }
}

.client-work-intro {
  padding-bottom: 0;
  padding-top: 0;
}

.client-work-block {
  background-color: #00b6ba;
  color: #ffffff;
  margin: 80px 0 0;
}

.client-work-top-block {
  margin: 40px 0 0;
}

.client-work-clear-block {
  background-color: #ffffff;
  color: #222222;
  margin: 40px 0 0;
}

h1.client-work-long-title {
  display: block;
  font-size: 200%;
  font-weight: 900;
  margin: 0 auto 5px;
  text-align: right;
  width: 100%;
}
@media (max-width: 640px) {
  h1.client-work-long-title {
    text-align: center;
    font-size: 150%;
  }
}

.client-work-description {
  width: 45%;
  max-width: 350px;
  margin-right: 30px;
}
.client-work-description h1 {
  font-size: 200%;
  font-weight: 900;
  line-height: 1em;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .client-work-description {
    display: none;
  }
}

.client-work-description-mobile {
  display: none;
}
.client-work-description-mobile h1 {
  font-size: 150%;
  font-weight: 900;
  line-height: 1em;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .client-work-description-mobile {
    display: block;
    margin: 10px auto 0;
    max-width: 300px;
    text-align: center;
    width: 100%;
  }
}

.client-work-hero-img {
  margin: 20px auto 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  max-height: 1600px;
}
@media (max-width: 360px) {
  .client-work-hero-img {
    max-height: 400px;
  }
}

.client-work-img {
  max-height: 400px;
  width: 45%;
}
@media (max-width: 640px) {
  .client-work-img {
    max-height: 300px;
    position: relative;
    width: auto;
  }
}
@media (max-width: 560px) {
  .client-work-img {
    max-height: 250px;
  }
}
@media (max-width: 360px) {
  .client-work-img {
    max-height: 200px;
  }
}

.client-work-mobile-app {
  display: inline-block;
  margin-top: -97px;
}
@media (max-width: 640px) {
  .client-work-mobile-app {
    display: block;
    margin: -80px auto 0;
  }
}

.client-work-caliburger-order-queue, .client-work-highland-desktop {
  margin-top: -97px;
}
@media (max-width: 640px) {
  .client-work-caliburger-order-queue, .client-work-highland-desktop {
    display: block;
    margin: -80px auto 0;
  }
}

.client-work-family-infoshare-admin {
  margin-top: -97px;
  max-height: 300px;
}
@media (max-width: 640px) {
  .client-work-family-infoshare-admin {
    display: block;
    margin: -80px auto 0;
    max-height: 200px;
  }
}
@media (max-width: 480px) {
  .client-work-family-infoshare-admin {
    max-height: 150px;
  }
}
@media (max-width: 360px) {
  .client-work-family-infoshare-admin {
    max-height: 130px;
  }
}

ul#client-work-built {
  padding: 0;
  margin: 0 20px;
  width: 50%;
}
ul#client-work-built li {
  color: #ffffff;
  list-style-type: square;
  line-height: 1.2em;
  margin-bottom: 15px;
  padding: 0;
}
ul#client-work-built li:last-of-type {
  margin-bottom: 0;
}

.hero-case-study {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#33ccff+1,0099cc+29 */
  background: #33ccff; /* Old browsers */
  background: -moz-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* FF3.6-15 */
  background: -webkit-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#33ccff", endColorstr="#0099cc", GradientType=1); /* IE6-9 fallback on horizontal gradient */
  height: 100px;
}
.hero-case-study h1 {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ffffff;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
  font-weight: 900;
}

.case-study-container {
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
}

.case-study-columns {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 50px 0 0 0;
  position: relative;
}
.case-study-columns:after {
  content: "";
  flex: auto;
}
@media (max-width: 768px) {
  .case-study-columns {
    display: block;
    max-width: 100%;
    margin: 50px auto 0;
  }
}
@media (max-width: 480px) {
  .case-study-columns {
    margin: 30px auto 0;
  }
}

.case-study-image {
  width: 480px;
}
@media (max-width: 992px) {
  .case-study-image {
    width: 400px;
  }
}
@media (max-width: 868px) {
  .case-study-image {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .case-study-image {
    display: block;
    margin: 0 auto 30px;
    width: 70%;
  }
}
@media (max-width: 480px) {
  .case-study-image {
    width: 100%;
    margin: 0 auto 15px;
  }
}

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

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

.case-study-fullwidth {
  margin: 50px 0 0 0;
}
@media (max-width: 480px) {
  .case-study-fullwidth {
    margin: 30px -40px 0;
  }
}

.case-study-image-fullwidth {
  margin-bottom: 20px;
  max-width: 960px;
  width: 100%;
}

.image-desktop-view {
  display: inherit;
}
@media (max-width: 768px) {
  .image-desktop-view {
    display: none;
  }
}

.image-mobile-view {
  display: none;
}
@media (max-width: 768px) {
  .image-mobile-view {
    display: block;
  }
}
@media (max-width: 360px) {
  .image-mobile-view {
    display: none;
  }
}

.image-mobile-xs-view {
  display: none;
}
@media (max-width: 360px) {
  .image-mobile-xs-view {
    display: block;
  }
}

.staff-praise-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 200px;
  position: relative;
}
@media (max-width: 868px) {
  .staff-praise-container {
    max-width: 100%;
  }
}

.staff-praise-img {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  margin-right: 10px;
  height: 70px;
  width: 70px;
  z-index: 1;
}
@media (max-width: 868px) {
  .staff-praise-img {
    display: inherit;
    float: left;
  }
}
@media (max-width: 560px) {
  .staff-praise-img {
    display: block;
    float: none;
    margin-bottom: 8px;
  }
}

.staff-praise-details {
  position: relative;
  display: block;
  margin-top: 5px;
}
@media (max-width: 868px) {
  .staff-praise-details {
    display: inherit;
    float: left;
    margin-left: 20px;
    max-width: 300px;
  }
}
@media (max-width: 560px) {
  .staff-praise-details {
    display: block;
    float: none;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .staff-praise-details {
    max-width: 200px;
  }
}

.staff-praise-name {
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
}

.staff-praise-title {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 5px;
}

.staff-praise-organization {
  font-size: 14px;
  line-height: 1.3em;
}
.staff-praise-organization a {
  color: #0099cc;
  text-decoration: none;
}
.staff-praise-organization a:hover {
  text-decoration: underline;
}

.staff-praise-linkedin {
  height: 30px;
  width: 30px;
}
@media (max-width: 868px) {
  .staff-praise-linkedin {
    position: absolute;
    top: 20px;
    left: 60px;
  }
}
@media (max-width: 560px) {
  .staff-praise-linkedin {
    top: 40px;
    left: 80px;
  }
}

.row:after {
  display: block;
  clear: both;
  content: "";
}

.row + .row {
  margin-top: 5%;
}

[class^=col-] {
  float: left;
  margin-right: 5%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
[class^=col-]:last-child {
  margin-right: 0%;
}
@media (max-width: 868px) {
  [class^=col-] {
    margin-right: 0;
  }
}

/*
.col-1  { width:5.583333333333333%; }
.col-2  { width:14.16666666666667%; }
.col-3  { width:22.75%; }
.col-4  { width:31.33333333333333%; }
.col-5  { width:39.91666666666667%; }
.col-6  { width:48.5%; }
.col-7  { width:57.08333333333333%; }
.col-8  { width:65.66666666666666%; }
.col-9  { width:74.25%; }
.col-10 { width:82.83333333333333%; }
.col-11 { width:91.41666666666666%; }
.col-12 { width:100%; }
*/
.col-1 {
  width: 3.75%;
}

.col-2 {
  width: 12.5%;
}

.col-3 {
  width: 21.25%;
}

.col-4 {
  width: 30%;
}
@media (max-width: 868px) {
  .col-4 {
    width: 100%;
  }
}

.col-5 {
  width: 38.75%;
}

.col-6 {
  width: 47.5%;
}

.col-7 {
  width: 56.25%;
}

.col-8 {
  width: 65%;
}
@media (max-width: 868px) {
  .col-8 {
    width: 100%;
  }
}

.col-9 {
  width: 73.75%;
}

.col-10 {
  width: 82.5%;
}

.col-11 {
  width: 91.25%;
}

.col-12 {
  width: 100%;
}

div.home {
  position: relative;
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
}
div.home h1 {
  margin-bottom: 20px;
}
@media (max-width: 560px) {
  div.home h1 {
    line-height: 1.2em;
  }
}

.header-underline {
  border-top: 3px solid #ededed;
  padding-top: 10px;
  width: 100%;
}

.hero-home {
  background: -moz-radial-gradient(80% bottom, #33ccff 15%, #0099cc 35%);
  background: -webkit-radial-gradient(80% bottom, #33ccff 15%, #0099cc 35%);
  background: radial-gradient(80% bottom, #33ccff 15%, #0099cc 35%);
  background-size: 200% 200%;
  -webkit-animation: mad-gradient-bg 5s ease 1 forwards;
  -moz-animation: mad-gradient-bg 5s ease 1 forwards;
  animation: mad-gradient-bg 5s ease 1 forwards;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse;
  padding: 20px 0;
}
@-webkit-keyframes mad-gradient-bg {
  0% {
    background-position: 80% bottom;
  }
  50% {
    background-position: 40% bottom;
  }
}
@-moz-keyframes mad-gradient-bg {
  0% {
    background-position: 80% bottom;
  }
  50% {
    background-position: 40% bottom;
  }
}
@keyframes mad-gradient-bg {
  0% {
    background-position: 80% bottom;
  }
  50% {
    background-position: 40% bottom;
  }
}
.hero-home h1 {
  color: #fff;
  font-weight: 900;
}
.hero-home h2 {
  color: #fff;
}
.hero-home .content {
  padding-top: 10px;
}

.hero-text {
  position: relative;
  width: 80%;
  z-index: 1;
}
@media (max-width: 640px) {
  .hero-text {
    width: 100%;
    padding-bottom: 75px;
  }
}
.hero-text h1 {
  max-width: 550px;
}
@media (max-width: 768px) {
  .hero-text h1 {
    max-width: 450px;
  }
}
@media (max-width: 560px) {
  .hero-text h1 {
    max-width: 380px;
  }
}
@media (max-width: 480px) {
  .hero-text h1 {
    max-width: 300px;
  }
}
@media (max-width: 360px) {
  .hero-text h1 {
    max-width: 260px;
  }
}
.hero-text h2 {
  max-width: 550px;
}
@media (max-width: 768px) {
  .hero-text h2 {
    max-width: 450px;
  }
}
@media (max-width: 560px) {
  .hero-text h2 {
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .hero-text h2 {
    margin: 15px 0;
  }
}

div.home > h1.section-title {
  color: #1d1d1d;
  margin: 20px auto 25px;
  text-align: center;
}
@media (max-width: 768px) {
  div.home > h1.section-title {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 20px;
  }
}

.mighty-ant-hero {
  height: 235px;
  width: 192px;
  position: absolute;
  bottom: -84px;
  right: 0;
  z-index: 0;
}
@media (max-width: 640px) {
  .mighty-ant-hero {
    height: 125px;
    width: 100px;
    bottom: -60px;
    right: 100px;
  }
}
@media (max-width: 360px) {
  .mighty-ant-hero {
    bottom: -50px;
  }
}

.intro-container {
  display: inline-block;
  position: relative;
  width: 100%;
  font-size: 13pt;
}
.intro-container h2 {
  font-size: 125%;
  line-height: 150%;
}
@media (max-width: 360px) {
  .intro-container h2 {
    font-size: 110%;
  }
}

.outperform-your-size-hero {
  float: right;
  height: 90px;
  margin: -15px 0 0 15px;
  padding: 0 10px;
  width: 172px;
}
@media (max-width: 640px) {
  .outperform-your-size-hero {
    display: none;
  }
}

.obamacare-exchange-screenshot {
  box-sizing: border-box;
  text-align: center;
}
.obamacare-exchange-screenshot img {
  border: 1px solid black;
  height: auto;
  margin-bottom: 30px;
  width: 100%;
}
.obamacare-exchange-screenshot h3 {
  font-weight: bold;
  margin: 25px auto 15px;
  color: #0099cc;
}

.outperform-your-size-hero-mobile {
  height: 65px;
  width: 120px;
  display: none;
}
@media (max-width: 640px) {
  .outperform-your-size-hero-mobile {
    display: inherit;
    position: absolute;
    right: 0;
    bottom: -20px;
  }
}
@media (max-width: 360px) {
  .outperform-your-size-hero-mobile {
    bottom: -10px;
  }
}

.reasons-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  margin: 0 0 30px 0;
  position: relative;
}

.reasons-block {
  box-sizing: border-box;
  color: #222;
  margin: 0;
  padding: 0;
  position: relative;
  text-decoration: none;
  width: 30%;
}
@media (max-width: 868px) {
  .reasons-block {
    width: 100%;
  }
}
.reasons-block h3 {
  font-weight: 700;
  margin-top: 30px;
}

.mad-client-logos {
  margin-bottom: 30px;
  width: 100%;
  max-width: 960px;
}
@media (max-width: 640px) {
  .mad-client-logos {
    display: none;
  }
}
@media (max-width: 480px) {
  .mad-client-logos {
    display: none;
  }
}

.mad-client-logos-mid {
  display: none;
}
@media (max-width: 640px) {
  .mad-client-logos-mid {
    display: inherit;
    margin-bottom: 30px;
    width: 100%;
    max-width: 960px;
  }
}

.mad-client-logos-mobile {
  display: none;
}
@media (max-width: 640px) {
  .mad-client-logos-mobile {
    display: none;
  }
}
@media (max-width: 480px) {
  .mad-client-logos-mobile {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    max-width: 960px;
  }
}

.services-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  margin: 0;
  position: relative;
}
.services-container:after {
  content: "";
  flex: auto;
}

a.services-block {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+1,f6f6f6+47,efefef+100 */
  background: rgb(255, 255, 255); /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, rgb(255, 255, 255) 1%, rgb(246, 246, 246) 47%, rgb(239, 239, 239) 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgb(255, 255, 255) 1%, rgb(246, 246, 246) 47%, rgb(239, 239, 239) 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgb(255, 255, 255) 1%, rgb(246, 246, 246) 47%, rgb(239, 239, 239) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#efefef",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  color: #222;
  margin: 0 0 15px 0;
  padding: 18px 18px 25px 18px;
  position: relative;
  text-decoration: none;
  width: 32.5%;
}
@media (max-width: 560px) {
  a.services-block {
    padding-bottom: 36px;
  }
}
a.services-block:hover {
  cursor: pointer;
  background: #33ccff; /* Old browsers */
  background: -moz-radial-gradient(circle at top left, #33ccff 5%, #0099cc 75%); /* FF3.6-15 */
  background: -webkit-radial-gradient(circle at top left, #33ccff 5%, #0099cc 75%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(circle at top left, #33ccff 5%, #0099cc 75%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33ccff", endColorstr="#0099cc",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  color: #fff;
}
a.services-block h2 {
  display: table-cell;
  font-weight: 700;
  font-size: 120%;
  height: 60px;
  padding-left: 70px;
  vertical-align: middle;
}
a.services-block .service-title-margin {
  margin-top: 10px;
}
@media (max-width: 930px) {
  a.services-block {
    width: 49%;
  }
}
@media (max-width: 560px) {
  a.services-block {
    width: 100%;
  }
}
@media (max-width: 360px) {
  a.services-block {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  a.services-block.services-block-not-active {
    padding-bottom: 10px;
  }
}
a.services-block.services-block-not-active:hover {
  color: #222;
  cursor: default;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+1,f6f6f6+47,efefef+100 */
  background: rgb(255, 255, 255); /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, rgb(255, 255, 255) 1%, rgb(246, 246, 246) 47%, rgb(239, 239, 239) 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgb(255, 255, 255) 1%, rgb(246, 246, 246) 47%, rgb(239, 239, 239) 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgb(255, 255, 255) 1%, rgb(246, 246, 246) 47%, rgb(239, 239, 239) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#efefef", GradientType=1); /* IE6-9 fallback on horizontal gradient */
}

a.flex-end-block {
  margin-left: 12px;
}
@media (max-width: 930px) {
  a.flex-end-block {
    margin-left: 2%;
  }
}
@media (max-width: 560px) {
  a.flex-end-block {
    margin-left: 0;
  }
}

a.services-block:hover > p.mad-link, a.blog-block:hover > .blog-text > p.mad-link {
  color: #fff;
  text-decoration: underline;
}
a.services-block:hover > p.mad-link:after, a.blog-block:hover > .blog-text > p.mad-link:after {
  background: url("../img/link-arrow-hover.e4244a1b4930.png") no-repeat center center;
  content: "";
  display: inline-block;
  background-size: contain;
  height: 10px;
  width: 10px;
  margin: 0 0 0 5px;
}

.img-icons {
  float: left;
  height: 60px;
  margin-right: 10px;
  width: auto;
}

.icon-sprites {
  height: 60px;
  position: absolute;
  top: 20px;
  left: 15px;
  clip: rect(0 60px 60px 0);
}

a.services-block:hover > .icon-sprites {
  clip: rect(0 120px 60px 60px);
  left: -45px;
}

a.services-block.services-block-not-active:hover > .icon-sprites {
  left: 15px;
  clip: rect(0 60px 60px 0);
}

.advantage-home {
  background-color: #0099cc;
  margin-top: 3px;
  padding-top: 20px;
}
.advantage-home h1 {
  color: #fff;
  font-weight: 900;
  max-width: 700px;
  margin: 0 auto;
}
.advantage-home h2 {
  color: #fff;
  max-width: 550px;
  margin: 0 auto;
}
.advantage-home p {
  color: #fff;
}

.featured-blog-title-bar {
  background-color: #1d1d1d;
  color: #ffffff;
  margin-bottom: 40px;
  padding: 10px;
  text-align: center;
}

.blog-container {
  margin: 0 0 30px 0;
}
@media (max-width: 560px) {
  .blog-container {
    margin: 30px 0 30px 0;
  }
}

.blog-block {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  color: #222;
  text-decoration: none;
  position: relative;
}
@media (max-width: 640px) {
  .blog-block {
    display: block;
  }
}
.blog-block h2 a {
  color: #222;
  text-decoration: none;
}
.blog-block h2 a:hover {
  text-decoration: underline;
}

.blog-text {
  width: 100%;
  white-space: normal;
  margin-bottom: 20px;
  margin-left: 320px;
  min-height: 200px;
}
.blog-text h2 {
  margin: 15px 0 8px 0;
  padding: 0;
}
.blog-text p {
  margin: 0 0 10px 0;
  padding: 0;
}
@media (max-width: 768px) {
  .blog-text {
    margin-left: 220px;
  }
  .blog-text h2 {
    margin: 10px 0 8px 0;
  }
}
@media (max-width: 640px) {
  .blog-text {
    display: block;
    margin: 0 auto 40px;
    min-height: auto;
    max-width: 300px;
  }
  .blog-text h2 {
    font-size: 135%;
  }
}

.feature-blog-img {
  height: 200px;
  width: 300px;
  position: absolute;
  top: 0;
  left: 0;
}
.feature-blog-img:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .feature-blog-img {
    clip: rect(0 250px 200px 50px);
    left: -50px;
  }
}
@media (max-width: 640px) {
  .feature-blog-img {
    display: block;
    position: relative;
    clip: auto;
    top: auto;
    left: auto;
    margin: 0 auto;
  }
}
@media (max-width: 360px) {
  .feature-blog-img {
    width: 100%;
    height: 100%;
    max-width: 300px;
  }
}

.lets-talk-home {
  background-color: #6c6c6c;
  margin-top: 3px;
  text-align: center;
  padding-top: 20px;
}
.lets-talk-home h2 {
  color: #fff;
  margin: 0 auto 20px;
}
.lets-talk-home p {
  color: #fff;
  margin: 0 auto 20px;
  text-align: left;
}

.headline-italic {
  font-style: italic;
  margin: 0 5px 0 -3px;
}

.madFadeBounce {
  -webkit-animation-name: madFadeBounce;
  animation-name: madFadeBounce;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes madFadeBounce {
  0%, 16%, 32%, 48%, 64%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.3, 0.6, 0.9, 1.2, 1.5, 1.8);
    transition-timing-function: cubic-bezier(0.3, 0.6, 0.9, 1.2, 1.5, 1.8);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 300px, 0);
    transform: translate3d(0, 300px, 0);
  }
  16% {
    opacity: 1;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  32% {
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
  48% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  64% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes madFadeBounce {
  0%, 16%, 32%, 48%, 64%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.3, 0.6, 0.9, 1.2, 1.5, 1.8);
    transition-timing-function: cubic-bezier(0.3, 0.6, 0.9, 1.2, 1.5, 1.8);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 300px, 0);
    transform: translate3d(0, 300px, 0);
  }
  16% {
    opacity: 1;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  32% {
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
  48% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  64% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
div.about-us {
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
}
@media (max-width: 560px) {
  div.about-us h1 {
    line-height: 1em;
    text-align: center;
  }
}

.hero-about {
  background: url("../img/hero-about-mighty-ant-bg.6a306b8962dd.jpg") no-repeat center center;
  background-size: cover;
  margin: 0 auto;
  height: 150px;
}
@media (max-width: 640px) {
  .hero-about {
    height: 100px;
  }
}
.hero-about h1 {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ffffff;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  font-weight: 900;
}
@media (max-width: 480px) {
  .hero-about h1 {
    max-width: 300px;
  }
}

.bio-containers {
  height: 100%;
  position: relative;
}

.container-detail-text {
  background-color: #f8f8f8;
  box-sizing: border-box;
  border-bottom: 1px solid #c9c9c9;
  border-left: 1px solid #c9c9c9;
  border-right: 1px solid #c9c9c9;
  padding: 10px 50px 30px;
  margin: 0;
  width: 100%;
}
.container-detail-text h1 {
  padding-top: 20px;
}
@media (max-width: 480px) {
  .container-detail-text h1 {
    padding-top: 10px;
  }
}
@media (max-width: 768px) {
  .container-detail-text {
    padding: 10px 30px 30px;
  }
}
@media (max-width: 560px) {
  .container-detail-text {
    border-bottom: 1px solid #c9c9c9;
    border-left: 0 solid #c9c9c9;
    border-right: 0 solid #c9c9c9;
  }
}

.bio-summary-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  margin: 0 0 30px 0;
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 480px) {
  .bio-summary-container {
    display: inherit;
  }
}

.bio-block-container {
  padding: 10px 10px 30px 10px;
  width: 30%;
  margin-bottom: 15px;
  position: relative;
}
@media (max-width: 768px) {
  .bio-block-container {
    width: 45%;
  }
}
.bio-block-container:hover {
  background-color: #f9f9f9;
  padding: 9px 9px 29px 9px;
  border: 1px solid #e8e8e8;
  cursor: pointer;
}
.bio-block-container:hover .open-bio {
  bottom: 9px;
  left: 23px;
}
@media (max-width: 480px) {
  .bio-block-container:hover .open-bio {
    bottom: 9px;
    left: 38px;
  }
}
@media (max-width: 480px) {
  .bio-block-container:hover {
    padding: 0 0 29px 0;
    border: 0;
    border-bottom: 1px solid #e8e8e8;
  }
}
@media (max-width: 480px) {
  .bio-block-container {
    border: 0;
    padding: 0 0 30px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

div.about-us > .bio-detail-container {
  box-sizing: border-box;
  margin: 0 -50px 0;
  padding: 10px 0 0;
}
@media (max-width: 768px) {
  div.about-us > .bio-detail-container {
    margin: 0 -30px 0;
  }
}
div.about-us > .bio-detail-container h1 {
  font-weight: 900;
  margin: 0;
}
@media (max-width: 560px) {
  div.about-us > .bio-detail-container h1 {
    text-align: left;
  }
}
div.about-us > .bio-detail-container h2 {
  text-transform: uppercase;
  font-size: 140%;
}
@media (max-width: 560px) {
  div.about-us > .bio-detail-container h2 {
    font-size: 120%;
    margin-top: 5px;
    max-width: 260px;
  }
}
@media (max-width: 360px) {
  div.about-us > .bio-detail-container h2 {
    font-size: 100%;
    max-width: 200px;
  }
}
div.about-us > .bio-detail-container h3 {
  line-height: 1.5em;
}

.bio-detail-container > .close-bio:last-child {
  margin-top: 20px;
}

.bio-text {
  box-sizing: border-box;
  padding: 5px 15px;
}
@media (max-width: 480px) {
  .bio-text {
    padding: 5px 30px;
  }
}

.bio-detail-bar {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#33ccff+1,0099cc+29 */
  background: #33ccff; /* Old browsers */
  background: -moz-radial-gradient(20% top, #33ccff 15%, #0099cc 55%); /* FF3.6-15 */
  background: -webkit-radial-gradient(20% top, #33ccff 15%, #0099cc 55%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(20% top, #33ccff 15%, #0099cc 55%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33ccff", endColorstr="#0099cc",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  cursor: pointer;
  height: 34px;
}
@media (max-width: 560px) {
  .bio-detail-bar {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

.bio-detail-bar:hover > .close-icon {
  transition: transform 0.5s;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.bio-text-expanded {
  color: #ffffff;
  height: auto;
  margin-bottom: 2px;
  padding: 10px 15px 5px;
}
.bio-text-expanded:hover {
  cursor: pointer;
}

.bio-text > h2 {
  font-size: 150%;
  line-height: 1em;
  margin-bottom: 5px;
  font-weight: 900;
}

.bio-text > h3 {
  font-weight: 700;
  font-size: 110%;
  line-height: 1.1em;
  margin-bottom: 5px;
  margin-top: 3px;
}

.bio-text > p {
  line-height: 1.3em;
  margin-bottom: 10px;
}

.open-bio {
  position: absolute;
  bottom: 10px;
  left: 24px;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .open-bio {
    left: 38px;
  }
}

.open-bio > a.mad-general-link {
  margin-bottom: 5px;
}

.leadership-glenn-smith {
  background: url("../img/glenn-smith.25fb9a7f3144.jpg") no-repeat center center;
  background-size: cover;
  height: 300px;
  margin-bottom: 5px;
}

.leadership-eric-powers {
  background: url("../img/eric-powers.27481e13ff41.jpg") no-repeat center center;
  background-size: cover;
  height: 300px;
  margin-bottom: 5px;
}

.leadership-jaymie-smith {
  background: url("../img/jaymie-smith.8584c7283e34.jpg") no-repeat center center;
  background-size: cover;
  height: 300px;
  margin-bottom: 5px;
}

.leadership-cindy-suderberg {
  background: url("../img/cindy-suderberg.506071744f83.jpg") no-repeat center center;
  background-size: cover;
  height: 300px;
  margin-bottom: 5px;
}

.leadership-thomas-dale {
  background: url("../img/thomas-dale.a4bc5b12bb01.jpg") no-repeat center center;
  background-size: cover;
  height: 300px;
  margin-bottom: 5px;
}

.leadership-cco {
  background: url("../img/cco-02.7fc3620d48c4.jpg") no-repeat center center;
  background-size: cover;
  height: 300px;
  margin-bottom: 5px;
}

.leadership-img {
  max-height: 300px;
  margin-bottom: 5px;
  width: 100%;
}
@media (max-width: 480px) {
  .leadership-img {
    width: 100vw;
    max-height: 480px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

.bio-block-container:hover > .bio-block > .leadership-img {
  opacity: 0.8;
}

.leadership-glenn-smith-featured {
  background: url("../img/glenn-smith-featured.a479c505a879.jpg") no-repeat center top;
  background-size: cover;
  height: 400px;
  margin-bottom: 5px;
}

.leadership-detail-img {
  max-height: 500px;
  width: 100%;
  margin-bottom: -4px;
}
@media (max-width: 560px) {
  .leadership-detail-img {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

.leadership-detail-img-caption {
  background-color: #4c4c4c;
  box-sizing: content-box;
  color: #aaaaaa;
  text-align: left;
  width: auto;
  padding: 8px 50px;
}
@media (max-width: 480px) {
  .leadership-detail-img-caption {
    text-align: center;
  }
}

.leadership-detail-img:hover {
  cursor: pointer;
}

#glenn-detail, #eric-detail, #jaymie-detail, #cindy-detail, #thomas-detail, #cco-detail {
  display: none;
}

.close-bio a {
  text-align: center;
}
.close-bio a:hover {
  text-decoration: underline;
}

.close-icon {
  background: url("../img/expand-bio-icon.770175cac578.png") no-repeat center center;
  background-size: contain;
  cursor: pointer;
  float: right;
  height: 24px;
  margin: 5px 5px 0 0;
  width: 24px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 560px) {
  .close-icon {
    margin: 5px 15px 0 0;
  }
}

#glenn-detail, #eric-detail, #jaymie-detail, #cindy-detail, #thomas-detail, #cco-detail {
  display: none;
}

.mad-linkedin {
  height: 30px;
  width: 30px;
  margin: 0 0 -2px 5px;
}
@media (max-width: 360px) {
  .mad-linkedin {
    height: 24px;
    width: 24px;
    margin: 0 0 -3px 5px;
  }
}

#why-mighty-ant-block h1 {
  font-weight: 900;
  text-align: center;
}
#why-mighty-ant-block h2 {
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}

.why-choose-mighty-ant-img img {
  width: 100%;
}

.hero-why-us {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#33ccff+1,0099cc+29 */
  background: #33ccff; /* Old browsers */
  background: -moz-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* FF3.6-15 */
  background: -webkit-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#33ccff", endColorstr="#0099cc", GradientType=1); /* IE6-9 fallback on horizontal gradient */
  height: 150px;
}
.hero-why-us h1 {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ffffff;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
  font-weight: 900;
}

.hero-why-not-us {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b5bdc8+0,828c95+36,28343b+100;Grey+Black+3D */
  background: #b5bdc8; /* Old browsers */
  background: -moz-radial-gradient(80% bottom, #b5bdc8 0%, #828c95 36%, #28343b 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(80% bottom, #b5bdc8 0%, #828c95 36%, #28343b 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(80% bottom, #b5bdc8 0%, #828c95 36%, #28343b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b5bdc8", endColorstr="#28343b",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  height: 150px;
  margin: 30px 0;
}
@media (max-width: 480px) {
  .hero-why-not-us {
    height: 100px;
    margin: 30px -30px;
  }
}
.hero-why-not-us h1 {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ffffff;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 900;
}

div.services {
  position: relative;
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
}
@media (max-width: 560px) {
  div.services h1 {
    line-height: 1.25em;
    text-align: center;
  }
}

h1.step-headline {
  font-size: 160%;
  margin: 35px 0 20px;
}

.hero-services {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#33ccff+1,0099cc+29 */
  background: #33ccff; /* Old browsers */
  background: -moz-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* FF3.6-15 */
  background: -webkit-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33ccff", endColorstr="#0099cc",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  padding: 40px 0 30px;
}
.hero-services h1 {
  color: #fff;
  font-weight: 900;
}
.hero-services h2 {
  color: #fff;
}

.hero-text-services {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.hero-text-why-mighty-ant {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.small-medium-sized-business-owners-bg {
  background: linear-gradient(rgba(102, 153, 51, 0.7), rgba(102, 153, 51, 0.7)), url("../img/small-medium-sized-business-owners-bg.831e9f091955.jpg") no-repeat center center;
  background-size: cover;
}

.common-projects-container {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  background-color: #efefef;
  padding: 5px 20px 20px;
  margin-bottom: 0;
}
@media (max-width: 560px) {
  .common-projects-container {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -khtml-border-radius: 0;
    border-radius: 0;
    margin-left: -30px;
    margin-right: -30px;
  }
}

.common-projects-titles-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  font-weight: 700;
  margin: 0 0 10px;
  padding: 10px 0 0;
  text-transform: none;
  display: table;
}
.common-projects-titles-container div {
  width: 30%;
  display: table-cell;
  vertical-align: bottom;
  padding: 10px 0;
}
@media (max-width: 640px) {
  .common-projects-titles-container div {
    display: block;
    padding: 0 10px;
    text-transform: none;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .common-projects-titles-container {
    display: block;
    width: 100%;
    margin: 0 0 20px;
    padding: 10px 0;
  }
}

.title-dash {
  display: none;
}
@media (max-width: 640px) {
  .title-dash {
    display: inline-block;
    margin-left: 5px;
  }
}

.common-projects-details-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin: 0 0 10px;
  padding: 0 0 10px;
  position: relative;
  display: table;
}
@media (max-width: 640px) {
  .common-projects-details-container {
    padding: 0 10px 10px;
    margin: 0 0 20px;
  }
}
.common-projects-details-container div {
  display: table-cell;
  padding: 10px 0;
  width: 30%;
}
@media (max-width: 640px) {
  .common-projects-details-container div {
    display: block;
    margin-bottom: 15px;
    padding: 0;
    width: 100%;
  }
}
.common-projects-details-container:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.common-projects-titles-container div.ballpark {
  text-align: center;
  width: 14%;
}
@media (max-width: 640px) {
  .common-projects-titles-container div.ballpark {
    padding: 0 10px;
    text-align: left;
    width: 100%;
  }
}

.common-projects-details-container div.ballpark {
  text-align: center;
  width: 14%;
}
@media (max-width: 640px) {
  .common-projects-details-container div.ballpark {
    padding: 0;
    text-align: left;
    width: 100%;
  }
}

.common-projects-titles-container div.spacer {
  text-align: center;
  width: 4%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .common-projects-titles-container div.spacer {
    padding: 0;
    text-align: left;
    width: 100%;
  }
}

.common-projects-details-container div.spacer {
  text-align: center;
  width: 4%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .common-projects-details-container div.spacer {
    padding: 0;
    text-align: left;
    width: 100%;
  }
}

.casestudy-hero-caliburger {
  background: url("../img/casestudy-hero-caliburger.c23c7d575e64.jpg") no-repeat center;
  background-size: 100%;
  display: block;
  height: 0;
  padding-bottom: 60%;
}
@media (max-width: 560px) {
  .casestudy-hero-caliburger {
    background: url("../img/casestudy-hero-caliburger-mobile.dd7b4e156c06.jpg") no-repeat center;
    background-size: 100%;
    display: block;
    height: 0;
    padding-bottom: 112.375%;
  }
}

.hero-casetudy-caliburger {
  display: block;
  width: 100%;
}
@media (max-width: 560px) {
  .hero-casetudy-caliburger {
    display: none;
  }
}

.hero-casetudy-caliburger-mobile {
  display: none;
  width: 100%;
}
@media (max-width: 560px) {
  .hero-casetudy-caliburger-mobile {
    display: block;
  }
}

.hero-filemaker-consulting {
  background: url("../img/hero-bg-filemaker-consulting-xl.a50abc4b1ef3.jpg") no-repeat center top;
  background-size: cover;
  height: 350px;
}
@media (max-width: 768px) {
  .hero-filemaker-consulting {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .hero-filemaker-consulting {
    height: 150px;
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .hero-filemaker-consulting {
    background: url("../img/hero-bg-filemaker-consulting-v02.dc0aec6a9bb2.jpg") no-repeat center top;
    background-size: cover;
    height: 350px;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  .hero-filemaker-consulting {
    height: 250px;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  .hero-filemaker-consulting {
    height: 150px;
    margin-bottom: 70px;
  }
}

.hero-small-medium-size-business-solutions {
  background: url("../img/hero-bg-small-medium-sized-business-solutions-v02.9e4857df8e74.jpg") no-repeat center top;
  background-size: cover;
  height: 350px;
}
@media (max-width: 768px) {
  .hero-small-medium-size-business-solutions {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .hero-small-medium-size-business-solutions {
    height: 150px;
    margin-bottom: 70px;
  }
}

.hero-enterprise-work-group-solutions {
  background: url("../img/hero-bg-enterprise-work-group-solutions-v02.d55253b91643.jpg") no-repeat center top;
  background-size: cover;
  height: 350px;
}
@media (max-width: 768px) {
  .hero-enterprise-work-group-solutions {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .hero-enterprise-work-group-solutions {
    height: 150px;
    margin-bottom: 70px;
  }
}

.hero-launch-startup {
  background: url("../img/hero-bg-launch-startup-v02.666e1c25a053.jpg") no-repeat center top;
  background-size: cover;
  height: 350px;
}
@media (max-width: 768px) {
  .hero-launch-startup {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .hero-launch-startup {
    height: 150px;
    margin-bottom: 70px;
  }
}

.hero-title-bar {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(24, 154, 202, 0.8);
  height: 100px;
}
@media (max-width: 768px) {
  .hero-title-bar {
    height: 80px;
  }
}
@media (max-width: 560px) {
  .hero-title-bar {
    top: 215px;
  }
}
@media (max-width: 480px) {
  .hero-title-bar {
    background-color: rgba(24, 154, 202, 0.95);
    top: 186px;
  }
}
.hero-title-bar .hero-title-text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-content: center;
  margin: auto;
  padding: 0 30px;
}
@media (max-width: 360px) {
  .hero-title-bar .hero-title-text {
    padding: 0 20px;
  }
}
.hero-title-bar .hero-title-text h1 {
  align-self: center;
  color: #ffffff;
  font-weight: 900;
  line-height: 1em;
  margin: 0;
  padding: 0;
}
@media (max-width: 480px) {
  .hero-title-bar .hero-title-text h1 {
    font-size: 150%;
  }
}
.hero-title-bar .hero-title-text .hero-icon {
  align-self: center;
  margin-right: 15px;
  width: 80px;
}
@media (max-width: 768px) {
  .hero-title-bar .hero-title-text .hero-icon {
    width: 60px;
  }
}
@media (max-width: 360px) {
  .hero-title-bar .hero-title-text .hero-icon {
    width: 50px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  h1#hero-filemaker-consulting {
    max-width: 125px;
  }
}

@media (max-width: 868px) {
  h1#hero-small-medium-size-business-solutions {
    max-width: 345px;
  }
}
@media (max-width: 768px) {
  h1#hero-small-medium-size-business-solutions {
    max-width: 285px;
  }
}
@media (max-width: 560px) {
  h1#hero-small-medium-size-business-solutions {
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  h1#hero-small-medium-size-business-solutions {
    max-width: 215px;
  }
}

@media (max-width: 640px) {
  h1#hero-enterprise-work-group-solutions {
    max-width: 250px;
  }
}
@media (max-width: 560px) {
  h1#hero-enterprise-work-group-solutions {
    max-width: 220px;
  }
}
@media (max-width: 480px) {
  h1#hero-enterprise-work-group-solutions {
    max-width: 190px;
  }
}

div.contact {
  position: relative;
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
}

.hero-contact {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#33ccff+1,0099cc+29 */
  background: #33ccff; /* Old browsers */
  background: -moz-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* FF3.6-15 */
  background: -webkit-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#33ccff", endColorstr="#0099cc", GradientType=1); /* IE6-9 fallback on horizontal gradient */
  padding: 0 0 10px;
}
.hero-contact h1 {
  color: #fff;
  font-weight: 900;
}
@media (max-width: 640px) {
  .hero-contact h1 {
    text-align: center;
  }
}
.hero-contact h3 {
  color: #fff;
  max-width: 700px;
}
@media (max-width: 768px) {
  .hero-contact h3 {
    max-width: 450px;
  }
}
@media (max-width: 640px) {
  .hero-contact h3 {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .title-break {
    display: block;
  }
}

div.contact {
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
}
div.contact h4 {
  color: #0099cc;
  text-transform: uppercase;
}

.contact-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

.contact-block-half {
  width: 45%;
  position: relative;
}
@media (max-width: 768px) {
  .contact-block-half {
    width: 100%;
  }
}

.contact-block-two-thirds {
  width: 60%;
  position: relative;
}
@media (max-width: 768px) {
  .contact-block-two-thirds {
    width: 100%;
  }
}

.contact-block-one-third {
  width: 28%;
  position: relative;
  float: right;
}
@media (max-width: 930px) {
  .contact-block-one-third {
    width: 30%;
  }
}
@media (max-width: 868px) {
  .contact-block-one-third {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .contact-block-one-third {
    float: none;
    width: 100%;
  }
}

.contact-block-img {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .contact-block-img {
    text-align: right;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .contact-block-img {
    text-align: center;
  }
}

.contact-feature-img {
  box-sizing: border-box;
  width: auto;
  height: 220px;
  margin: 0 auto -5px;
  padding: 0 30px;
  z-index: -1000;
}
@media (max-width: 480px) {
  .contact-feature-img {
    height: 150px;
  }
}
@media (max-width: 360px) {
  .contact-feature-img {
    height: 120px;
  }
}

h4.locations {
  margin-top: 47px;
}
@media (max-width: 768px) {
  h4.locations {
    margin-top: 5px;
  }
}

div.contact {
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
}

div.blog {
  position: relative;
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
}
div.blog h1 {
  font-size: 200%;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 560px) {
  div.blog h1 {
    font-size: 140%;
    line-height: 1.2em;
  }
}

.hero-blog {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#33ccff+1,0099cc+29 */
  background: #33ccff; /* Old browsers */
  background: -moz-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* FF3.6-15 */
  background: -webkit-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33ccff", endColorstr="#0099cc",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  padding: 50px 0 30px;
}
.hero-blog h1 {
  color: #fff;
  font-weight: 900;
}
.hero-blog h2 {
  color: #fff;
}
@media (max-width: 480px) {
  .hero-blog {
    padding: 20px 0 0;
  }
}

.hero-text-blog {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.hero-blog-bg {
  background: url("../img/hero-blog-bg.dbaca2feade4.jpg") no-repeat center center;
  background-size: cover;
}

section.blog-list {
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
  width: 100%;
  margin-bottom: 30px;
  padding: 20px 30px;
}
section.blog-list article {
  border-top: 1px solid #dedede;
  margin-top: 30px;
  padding-top: 25px;
}
section.blog-list article:first-of-type {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
section.blog-list article > header > h3 a {
  color: #1d1d1d;
  text-align: left;
  text-decoration: none;
}
section.blog-list article > header > h3:hover {
  color: #6c8c23;
}
section.blog-list ul.post-detail {
  margin-left: 0;
}
section.blog-list ul.post-detail li {
  line-height: 1.2em;
  list-style-type: none;
  margin: 0 30px 0 0;
  padding: 0;
}
section.blog-list ul.post-detail li a {
  color: #1d1d1d;
  font-weight: 700;
  text-decoration: none;
}
section.blog-list ul.post-detail.tags {
  margin-left: 0;
}
section.blog-list ul.post-detail.tags li {
  line-height: 1.2em;
  list-style-type: none;
  margin: 5px 30px 15px 0;
  padding: 0;
}
section.blog-list ul.post-detail.tags li a {
  color: #555;
  font-size: 14px;
  font-weight: 100;
  text-decoration: none;
}

article > footer {
  text-align: left;
}

article > footer.read-more a {
  color: #0099cc;
  font-weight: 400;
  text-decoration: none;
}

.mad-sidebar {
  background-color: #fafafa;
  color: #5e5e5e;
  margin-top: 50px;
  padding: 30px;
  position: relative;
}
@media (max-width: 868px) {
  .mad-sidebar {
    margin: 0 -30px -30px;
    padding: 20px 30px 0;
    width: 100%;
    box-sizing: content-box;
  }
}
.mad-sidebar img {
  margin: 12px auto;
}

.sidebar-quote {
  font-size: 100%;
  line-height: 1.5em;
}

.sidebar-quote-bio {
  display: block;
  font-size: 80%;
  line-height: 1.2em;
  margin-top: 15px;
}

.sidebar-block {
  border-bottom: 2px dotted #c9c9c9;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.sidebar-block p {
  margin: 0;
}
.sidebar-block:last-of-type {
  border-bottom: 0;
}
@media (max-width: 868px) {
  .sidebar-block {
    width: 80%;
    margin: 0 auto 30px;
  }
}
@media (max-width: 560px) {
  .sidebar-block {
    width: 100%;
  }
}

.sidebar-book h3 {
  font-size: 110%;
  text-align: center;
}
@media (max-width: 868px) {
  .sidebar-book h3 {
    margin: 0 auto;
    max-width: 300px;
  }
}
.sidebar-book img {
  max-width: 150px;
}

.blog-block-feature {
  border-bottom: 2px dotted #c9c9c9;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.blog-block-feature h1 {
  font-weight: 900;
  color: #1d1d1d;
}
.blog-block-feature h1 a {
  text-decoration: none;
  color: #222;
}
.blog-block-feature h1 a:hover {
  text-decoration: underline;
}
.blog-block-feature:last-of-type {
  border-bottom: 0 solid #c9c9c9;
  margin-bottom: 0;
}

.blog-block-article {
  color: #222;
}
.blog-block-article a {
  text-decoration: underline;
  color: blue;
}
.blog-block-article a:hover {
  text-decoration: none;
}
.blog-block-article h1 {
  font-weight: 900;
  color: #1d1d1d;
}
.blog-block-article:last-of-type {
  margin-bottom: 0;
}

.blog-text-feature {
  width: 100%;
  margin: 15px 0 0 0;
}

.blog-img-feature {
  display: block;
  height: auto;
  width: 100%;
}

a .blog-img-feature:hover {
  opacity: 0.8;
}

.blog-list-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 30px 0 0 0;
  position: relative;
}
.blog-list-container:after {
  content: "";
  flex: auto;
}
@media (max-width: 768px) {
  .blog-list-container {
    display: block;
    max-width: 600px;
    margin: 30px auto 0;
  }
}

.blog-img-list {
  border: 1px solid #d8d8d8;
  height: 200px;
  width: 300px;
}
@media (max-width: 768px) {
  .blog-img-list {
    width: 100%;
    height: auto;
  }
}

.blog-text-list {
  padding: 15px 0 5px 30px;
}
.blog-text-list a {
  color: #0099cc;
}
@media (max-width: 768px) {
  .blog-text-list {
    padding: 15px 0 5px 0;
  }
}

.mad-breadcrumbs {
  color: #c9c9c9;
  font-weight: 700;
  margin-bottom: 30px;
}

.active-breadcrumb {
  color: #6c8c23;
}

a.active-breadcrumb {
  color: #6c8c23;
  text-decoration: none;
}
a.active-breadcrumb:hover {
  text-decoration: underline;
}

.sidebar-quotation, .sidebar-quotation-bottom, .sidebar-quotation-top {
  height: 25px;
  width: 25px;
  margin: 0 auto;
}

.sidebar-quotation-top {
  background: url("../img/big-quote-left-grey.8c814270eff4.png") no-repeat center center;
  background-size: contain;
  margin-bottom: 10px;
}

.sidebar-quotation-bottom {
  background: url("../img/big-quote-right-grey.dabd54f9e2e3.png") no-repeat center center;
  background-size: contain;
  margin-top: 15px;
}

.email-message-style {
  padding: 30px 30px 20px 30px;
  background-color: #fafafa;
  border: solid 1pt #ccc;
  max-width: 700px;
  margin: 20px auto 40px auto;
}
@media (max-width: 480px) {
  .email-message-style {
    margin: 5px -30px 40px -30px;
    width: 100%;
    box-sizing: content-box;
  }
}

.suggested-blog-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  margin: 0 0 30px 0;
}
@media (max-width: 560px) {
  .suggested-blog-container {
    margin: 30px 0 30px 0;
  }
}

.suggested-blog-block {
  color: #222;
  text-decoration: none;
  position: relative;
  width: 30%;
}
@media (max-width: 868px) {
  .suggested-blog-block {
    border-bottom: 2px dotted #c9c9c9;
    width: 80%;
    margin: 0 auto 40px;
    padding-bottom: 10px;
  }
  .suggested-blog-block:last-of-type {
    border-bottom: 0;
    margin: 0 auto;
  }
}
.suggested-blog-block a {
  color: #222;
  text-decoration: underline;
}
.suggested-blog-block a:hover {
  text-decoration: none;
}
@media (max-width: 560px) {
  .suggested-blog-block {
    width: 100%;
  }
}

.suggested-blog-img {
  display: block;
  width: 100%;
}

a .suggested-blog-img:hover {
  opacity: 0.8;
}

.suggested-blog-text {
  display: block;
  width: 100%;
  white-space: normal;
  margin-bottom: 20px;
}
.suggested-blog-text h2 {
  margin: 15px 0 8px 0;
  padding: 0;
}
.suggested-blog-text p {
  margin: 0 0 10px 0;
  padding: 0;
}

.video-trt {
  color: #555555;
  font-size: 80%;
}

.youtube-player {
  position: relative;
  padding-bottom: 56.23%;
  /* Use 75% for 4:3 videos */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #fff;
  margin: 0;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
}

.youtube-player img {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  transition: 0.4s all;
}
.youtube-player img:hover {
  opacity: 0.9;
}

.youtube-player .play {
  height: 72px;
  width: 72px;
  left: 50%;
  top: 50%;
  margin-left: -36px;
  margin-top: -36px;
  position: absolute;
  background: url("../img/video-blog-play-btn.fd24de68e406.png") no-repeat;
  cursor: pointer;
}

.lightning-quiz-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .lightning-quiz-container {
    padding: 0;
  }
}

.lightning-quiz {
  padding: 15px;
  border: 2px solid #9ab7cc;
  /*border-radius: 3px;
  -moz-border-radius:3px;
  -webkit-border-radius:3px;*/
  width: 100%;
  margin: 0 auto 25px;
  box-sizing: border-box;
  background-color: #f8f8f8;
}

.mailing-list-container {
  background-color: #efefef;
  margin-top: 3px;
  text-align: center;
  padding-top: 10px;
}
.mailing-list-container h2 {
  color: #6c6c6c;
  margin: 0 auto 20px;
}
.mailing-list-container p {
  color: #6c6c6c;
  margin: 0 auto 20px;
  text-align: left;
}

#newsletter-form > label {
  color: #333;
  display: block;
  font-size: 16px;
  margin: 0 auto 15px;
  max-width: 300px;
  width: 100%;
}
#newsletter-form > label input {
  background-color: #ffffff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  border-style: none;
  box-sizing: border-box;
  display: block;
  font-family: Lato;
  font-size: 100%;
  line-height: 24px;
  outline: none;
  padding: 8px;
  width: 100%;
  margin: 0 auto 15px;
  max-width: 300px;
  text-align: center;
}
#newsletter-form > label input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b5b5b5;
  text-align: center;
}
#newsletter-form > label input::-moz-placeholder { /* Firefox 19+ */
  color: #b5b5b5;
  text-align: center;
}
#newsletter-form > label input:-ms-input-placeholder { /* IE 10+ */
  color: #b5b5b5;
  text-align: center;
}
#newsletter-form > label input:-moz-placeholder { /* Firefox 18- */
  color: #b5b5b5;
  text-align: center;
}

#newsletter-form > label > input.error-box,
#newsletter-form > label > textarea.error-box {
  border: 2px dashed #e9322d;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

#newsletter-form > div.submit-container {
  text-align: center;
}
#newsletter-form > div.submit-container button {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  background-color: #0099cc;
  border: 0 solid #0099cc;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-size: 16px;
  margin: 0 auto;
  padding: 10px 30px;
  text-decoration: none;
}
#newsletter-form > div.submit-container button:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffb76b+0,ff7f04+60 */
  background: rgb(255, 183, 107); /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, rgb(255, 183, 107) 0%, rgb(255, 127, 4) 60%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgb(255, 183, 107) 0%, rgb(255, 127, 4) 60%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgb(255, 183, 107) 0%, rgb(255, 127, 4) 60%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffb76b", endColorstr="#ff7f04",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  text-decoration: none;
}

.mailing-list-block {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  margin: 0 0 30px 0;
  position: relative;
}

#newsletter-form .error-message {
  color: #e9322d;
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 5px;
  padding: 3px 0;
  max-width: 300px;
  width: 100%;
}
#newsletter-form .error-capture-message {
  background-color: #e9322d;
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 10px auto;
  padding: 3px 0;
  max-width: 400px;
  width: 100%;
}
#newsletter-form .error-icon {
  display: inline-block;
  width: 18px;
  height: auto;
  margin: 0 2px -2px 2px;
}

div#newsletter-result {
  padding: 20px;
  border: 2px solid #c9c9c9;
}

.mad-video-container-block {
  max-height: 540px;
  margin-bottom: 20px;
}
@media (max-width: 868px) {
  .mad-video-container-block {
    margin-bottom: 10px;
  }
}

.mad-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.mad-video-container iframe, .mad-video-container object, .mad-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 540px;
}

.blog-post-sidebar-content {
  box-sizing: border-box;
  float: right;
  margin: 10px 0 0 40px;
  max-width: 50%;
}
@media (max-width: 768px) {
  .blog-post-sidebar-content {
    display: block;
    float: none;
    margin: 20px -30px;
    max-width: 868px;
    padding: 0;
  }
}

div.blog-post-sidebar {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#33ccff+1,0099cc+29 */
  background: #33ccff; /* Old browsers */
  background: -moz-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* FF3.6-15 */
  background: -webkit-radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(80% bottom, #33ccff 15%, #0099cc 55%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33ccff", endColorstr="#0099cc",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  box-sizing: border-box;
  color: #ffffff;
  padding: 30px;
  margin-bottom: 30px;
  width: 100%;
}
div.blog-post-sidebar .subtitle {
  font-size: 80%;
  margin: 15px auto;
  text-align: center;
}
@media (max-width: 768px) {
  div.blog-post-sidebar .subtitle {
    font-size: 100%;
  }
}
div.blog-post-sidebar h1 {
  color: #ffffff;
  font-size: 115%;
  margin-bottom: 15px;
}
div.blog-post-sidebar h2 {
  font-size: 100%;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 15px;
}
div.blog-post-sidebar ul li {
  font-size: 90%;
  line-height: 150%;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  div.blog-post-sidebar ul li {
    font-size: 100%;
  }
}
div.blog-post-sidebar a {
  color: #FFFFFF;
}

.blog-info {
  display: block;
  position: relative;
  width: 100%;
}
.blog-info a {
  color: #0099cc;
}
.blog-info .byline {
  display: inline-block;
  width: 200px;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .blog-info .byline {
    display: block;
    width: 100%;
  }
}
.blog-info .categories {
  position: absolute;
  right: 180px;
  top: 0;
  padding: 10px 0;
  max-width: 300px;
}
@media (max-width: 768px) {
  .blog-info .categories {
    position: relative;
    display: block;
    right: auto;
    top: auto;
  }
}
@media (max-width: 480px) {
  .blog-info .categories {
    max-width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.blog-info .collapsible-container {
  width: 160px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 480px) {
  .blog-info .collapsible-container {
    position: relative;
    right: auto;
    top: auto;
    display: block;
  }
}
.blog-info .collapsible-container .active, .blog-info .collapsible-container .collapsible:hover {
  background-color: #555;
  border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
}
.blog-info .collapsible-container .active:after {
  content: "−";
}

.collapsible#blog-categories {
  background-color: #eeeeee;
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  color: #1d1d1d;
  cursor: pointer;
  font-size: 16px;
  outline: none;
  padding: 10px;
  text-align: left;
  width: 100%;
}
.collapsible#blog-categories:hover {
  color: #0099cc;
}

.collapsible#blog-categories.active {
  border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  background-color: #dedede;
}

.collapsible:after {
  content: "+";
  color: #1d1d1d;
  font-weight: bold;
  float: right;
}

.blog-categories {
  background-color: #eeeeee;
  border-radius: 8px 0 8px 8px;
  -webkit-border-radius: 8px 0 8px 8px;
  -moz-border-radius: 8px 0 8px 8px;
  -webkit-box-shadow: -2px 2px 1px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -2px 1 0 rgba(0, 0, 0, 0.2);
  box-shadow: -2px 2px 1px 0 rgba(0, 0, 0, 0.2);
  max-height: 0;
  margin-top: -2px;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.2s ease-out;
  position: absolute;
  right: 0;
  width: 180px;
  z-index: 9999;
}
.blog-categories div {
  margin-bottom: 5px;
}
.blog-categories a {
  display: block;
  line-height: 28px;
  color: rgb(0, 153, 204);
}
.blog-categories a:hover {
  text-decoration: none;
}
@media (max-width: 480px) {
  .blog-categories {
    left: 0;
    right: auto;
    border-radius: 0 8px 8px 8px;
    -webkit-border-radius: 0 8px 8px 8px;
    -moz-border-radius: 0 8px 8px 8px;
    -webkit-box-shadow: 2px 2px 1px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2px 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 1px 0 rgba(0, 0, 0, 0.2);
  }
}

.blog-categories-title {
  color: #6c8c23;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-categories-home {
  line-height: 2em;
}
.blog-categories-home a {
  color: rgb(0, 153, 204);
}
.blog-categories-home a:hover {
  text-decoration: none;
}

h1.page-title {
  color: #6c8c23;
  border-bottom: 2px dotted #c9c9c9;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
@media (max-width: 480px) {
  h1.page-title {
    padding-bottom: 75px;
    position: relative;
    text-align: center;
  }
}

#sidebar-blog-categories {
  display: block;
}
@media (max-width: 868px) {
  #sidebar-blog-categories {
    display: none;
  }
}

.collapsible-container-home {
  width: 160px;
  position: absolute;
  right: 0;
  top: 0;
  display: none;
}
@media (max-width: 868px) {
  .collapsible-container-home {
    display: block;
  }
}
@media (max-width: 560px) {
  .collapsible-container-home {
    top: -8px;
  }
}
@media (max-width: 480px) {
  .collapsible-container-home {
    right: 50%;
    margin-right: -80px;
    top: 40px;
  }
}
.collapsible-container-home .active, .collapsible-container-home .collapsible:hover {
  background-color: #555;
  border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
}
.collapsible-container-home .active:after {
  content: "−";
}

@media (max-width: 480px) {
  #center-dropdown {
    border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px 8px 8px;
    -moz-border-radius: 8px 8px 8px 8px;
    margin-left: -30px;
  }
}

#approach h1 {
  font-weight: 900;
}

.custom-software-dev-box {
  max-width: 600px;
}
@media (max-width: 768px) {
  .custom-software-dev-box {
    max-width: 450px;
  }
}

.custom-software-development-steps {
  float: right;
  margin: 0 0 20px 40px;
  max-width: 300px;
  width: 100%;
}
@media (max-width: 640px) {
  .custom-software-development-steps {
    float: none;
    margin: 0 auto 20px auto;
    text-align: center;
  }
}

.approach-text {
  background-color: #f8f8f8;
  color: #6c8c23;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px;
}
.approach-text p {
  margin-bottom: 5px;
}
.approach-text p:last-of-type {
  margin-bottom: 0;
}

.approach-step-headline {
  font-size: 160%;
  margin: 25px 0 20px;
}
@media (max-width: 768px) {
  .approach-step-headline {
    max-width: 340px;
    margin: 25px auto 20px;
    text-align: center;
  }
}

.inputs-outputs-mobile {
  max-width: 300px;
  margin: 0 auto;
}

/*# sourceMappingURL=mad-main.css.13e60a4fe800.map */
