@charset "UTF-8";
/*
 Theme Name:     BigRedRoosta
 Theme URI:      http://bigredrooster.com
 Description:    Custom theme for BigRedRooster.com
 Author:         Bobby Donathan - BigRedRooster
 Author URI:     http://bigredrooster.com
 Version:        1.0.2
*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=PT+Serif&display=swap");
@import url("https://use.fontawesome.com/releases/v5.0.9/css/all.css");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  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 {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/**********************
Variables & Mixins & Fonts
AUTHOR: Bobby Donathan - BigRedRooster
_variables.scss
***********************/
@font-face {
  font-family: 'Graphik-Bold';
  src: url("fonts/Graphik-Bold.otf");
  src: url("fonts/Graphik-Bold.eot");
  src: url("fonts/Graphik-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Graphik-Bold.woff") format("woff"), url("fonts/Graphik-Bold.ttf") format("truetype"); }
@font-face {
  font-family: 'Graphik-Semibold';
  src: url("fonts/Graphik-Semibold.otf");
  src: url("fonts/Graphik-Semibold.eot");
  src: url("fonts/Graphik-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Graphik-Semibold.woff") format("woff"), url("fonts/Graphik-Semibold.ttf") format("truetype"); }
@font-face {
  font-family: 'Graphik-Light';
  src: url("fonts/Graphik-Light.otf");
  src: url("fonts/Graphik-Light.eot");
  src: url("fonts/Graphik-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Graphik-Light.woff") format("woff"), url("fonts/Graphik-Light.ttf") format("truetype"); }
@font-face {
  font-family: 'Graphik-Medium';
  src: url("fonts/Graphik-Medium.otf");
  src: url("fonts/Graphik-Medium.eot");
  src: url("fonts/Graphik-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Graphik-Medium.woff") format("woff"), url("fonts/Graphik-Medium.ttf") format("truetype"); }
/*GENERAL COLORS*/
/* #bc141a or #ea2316(too bright on FF) */
/*MIXINS*/
/*!
 * Hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 22px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 2px;
    background-color: #000;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px; }
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg); }
  .hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px; }
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.7142857143px, -8px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.7142857143px, -8px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

body {
  width: 100%;
  height: 100%; }
  body.slideout-open #panel, body.slideout-open .mobile-menu, body.slideout-open .contactlinks {
    transform: translateX(-80vw); }

.mobile-menu, .contactlinks {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  position: fixed;
  left: 100vw;
  top: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  padding: 50px 0 0px 25px;
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  display: block;
  opacity: 0; }
  .mobile-menu ul li a, .contactlinks ul li a {
    font-size: 6vw;
    font-weight: 600;
    color: #fff;
    display: block;
    width: 100%;
    padding: 1.3vh 0px; }
    .mobile-menu ul li a:hover, .contactlinks ul li a:hover {
      text-decoration: none; }

#panel {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
  z-index: 1;
  will-change: transform; }

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden; }

body.slideout-open {
  position: fixed; }

.slideout-open .mobile-menu, .slideout-open .contactlinks {
  opacity: 1;
  display: block; }

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel {
  -webkit-tap-highlight-color: transparent;
  position: relative;
  display: none;
  width: 100%;
  z-index: 1; }
  .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden; }
    .owl-carousel .owl-stage:after {
      content: ".";
      display: block;
      clear: both;
      visibility: hidden;
      line-height: 0;
      height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item, .owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: none; }

.no-js .owl-carousel {
  display: block; }

.owl-carousel.owl-loaded {
  display: block; }
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }
.owl-carousel.owl-hidden {
  opacity: 0; }
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }
.owl-carousel.owl-rtl {
  direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
  z-index: 0; }
.owl-carousel .owl-animated-out {
  z-index: 1; }
.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.owl-height {
  transition: height .5s ease-in-out; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease; }
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease; }
  .owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none; }
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease; }
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**********************************************/
/**********************************************/
/*********** OWL CAROUSEL NAV STYLE ***********/
/**********************************************/
/**********************************************/
.owl-prev {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 40%;
  left: 30px;
  display: block !important;
  overflow: hidden;
  text-indent: 9999px;
  background: url(images/carousel-left.png) no-repeat center right;
  background-size: cover; }
  @media only screen and (min-width: 992px) {
    .owl-prev {
      width: 40px;
      height: 40px;
      left: 50px; } }

.owl-next {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 40%;
  right: 30px;
  display: block !important;
  overflow: hidden;
  text-indent: 9999px;
  background: url(images/carousel-right.png) no-repeat center left;
  background-size: cover; }
  @media only screen and (min-width: 992px) {
    .owl-next {
      width: 40px;
      height: 40px;
      right: 50px; } }

.owl-prev i,
.owl-next i {
  position: absolute;
  right: 0;
  color: #97999b;
  font-size: 50px; }

.owl-dots {
  text-align: center;
  width: 100%;
  display: block; }

.owl-dot {
  width: 25px;
  height: 5px;
  background: #ebebeb;
  margin-right: 5px;
  display: inline-block; }

.owl-dot.active {
  background: #DA291C; }

/**********************************************/
/**********************************************/
/************ END OF OWL CAROUSEL *************/
/**********************************************/
/**********************************************/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  0%, 50%, 100% {
    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 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); } }
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); } }
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); } }
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); } }
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); } }
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) 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 {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-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: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s, visibility 0s linear .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity .25s, visibility 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  height: 100%;
  margin-right: -.25em;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--next {
  z-index: 99995; }

.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px 6px 0 6px; }

.fancybox-slide--iframe {
  padding: 44px 44px 0; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px 0;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-can-drag .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-dragging .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(100% - 44px);
  margin-bottom: 44px; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

.fancybox-iframe {
  vertical-align: top; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  transition: color .2s;
  vertical-align: top;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff; }

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default; }

.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision; }

.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3; }

.fancybox-button--play svg path:nth-child(2) {
  display: none; }

.fancybox-button--pause svg path:nth-child(1) {
  display: none; }

.fancybox-button--play svg path,
.fancybox-button--share svg path,
.fancybox-button--thumbs svg path {
  fill: currentColor; }

.fancybox-button--share svg path {
  stroke-width: 1; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px; }

.fancybox-show-nav .fancybox-navigation .fancybox-button {
  transition: opacity .25s, visibility 0s, color .25s; }

.fancybox-navigation .fancybox-button::after {
  content: '';
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10; }

.fancybox-close-small svg {
  fill: transparent;
  opacity: .8;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: stroke .1s; }

.fancybox-close-small:focus {
  outline: none; }

.fancybox-close-small:hover svg {
  opacity: 1; }

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px; }

.fancybox-slide--image .fancybox-close-small:hover svg,
.fancybox-slide--video .fancybox-close-small:hover svg,
.fancybox-slide--iframe .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none; }

/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0; }

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1; }

.fancybox-caption::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  content: '';
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate .8s infinite linear;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  border: 6px solid rgba(100, 100, 100, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: .6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x > ul {
  overflow: hidden; }

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs > ul > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1); }

.fancybox-thumbs > ul > li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px; }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }

  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px); } }
.experientialcommercepage textarea {
  height: 100px; }
.experientialcommercepage .right-side {
  line-height: 1.5; }
.experientialcommercepage .left-side {
  margin-bottom: 50px; }
.experientialcommercepage strong {
  font-family: 'Graphik-Semibold', sans-serif;
  font-weight: normal; }
.experientialcommercepage .headerimage img {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  display: block; }
.experientialcommercepage .formstep {
  margin-bottom: 50px; }
.experientialcommercepage .question {
  font-family: 'Graphik-Semibold', sans-serif;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 10px; }
.experientialcommercepage .submitwrapper {
  margin-top: 50px; }
.experientialcommercepage .otherwrapper {
  display: none;
  font-family: 'Graphik-Semibold', sans-serif;
  font-weight: normal;
  padding: 0px 20px;
  margin-top: 10px; }
  .experientialcommercepage .otherwrapper input {
    font-family: 'Graphik-Light', sans-serif; }
.experientialcommercepage .orgRate {
  margin-bottom: 20px; }
  .experientialcommercepage .orgRate .wpcf7-list-item {
    display: block; }

.holiday2019landing {
  padding-bottom: 0px !important; }
  .holiday2019landing.content-wrapper {
    background-color: #e7e7e8 !important; }
  .holiday2019landing a img {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    transform: scale(1); }
  .holiday2019landing a:hover img {
    transform: scale(1.1); }
  .holiday2019landing img {
    display: block; }
  .holiday2019landing h2 {
    font-family: "Graphik-Bold", sans-serif !important;
    color: #000; }
  .holiday2019landing .headercontainer {
    z-index: 2;
    position: relative; }
  .holiday2019landing .grayback {
    background-color: #e7e7e8;
    padding: 200px 50px 50px 50px;
    margin-top: -160px; }
    @media only screen and (min-width: 992px) {
      .holiday2019landing .grayback {
        padding: 50px;
        margin-top: -10px; } }
  .holiday2019landing .pagecontent {
    padding-top: 0px; }
  .holiday2019landing .headerimage {
    overflow: hidden;
    position: relative; }
    .holiday2019landing .headerimage h1 {
      position: relative;
      z-index: 1; }
    .holiday2019landing .headerimage img {
      display: block; }
    .holiday2019landing .headerimage .skewbox {
      position: absolute;
      height: 47.5%;
      width: 600px;
      display: block;
      z-index: 0;
      transform: skew(0deg, 20deg); }
      .holiday2019landing .headerimage .skewbox.left {
        top: -110px;
        left: -600px;
        background-color: #cc2219; }
      .holiday2019landing .headerimage .skewbox.right {
        bottom: -100px;
        right: -600px;
        background-color: #562e7f; }
        @media only screen and (min-width: 576px) {
          .holiday2019landing .headerimage .skewbox.right {
            bottom: -109px; } }
        @media only screen and (min-width: 1200px) {
          .holiday2019landing .headerimage .skewbox.right {
            bottom: -108px; } }
      @media only screen and (min-width: 576px) {
        .holiday2019landing .headerimage .skewbox {
          height: 48.9%; } }
      @media only screen and (min-width: 768px) {
        .holiday2019landing .headerimage .skewbox {
          height: 48.8%; } }
      @media only screen and (min-width: 992px) {
        .holiday2019landing .headerimage .skewbox {
          height: 48.6%; } }
      @media only screen and (min-width: 1200px) {
        .holiday2019landing .headerimage .skewbox {
          height: 396px; } }
    .holiday2019landing .headerimage .stripe {
      width: 110vw;
      height: 9px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%) rotate(18.5deg) scaleX(0);
      animation-name: animatestripe;
      animation-iteration-count: infinite;
      animation-duration: 900ms;
      animation-timing-function: ease;
      animation-direction: alternate;
      z-index: 2;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      .holiday2019landing .headerimage .stripe.yellow {
        background-color: #f9ed32;
        top: 69%;
        animation-delay: 1s; }
      .holiday2019landing .headerimage .stripe.orange {
        background-color: #fbb040;
        top: 70.1%;
        animation-delay: 1.5s; }
      .holiday2019landing .headerimage .stripe.red {
        background-color: #e1251b;
        top: 71.1%;
        animation-delay: 2s; }
      .holiday2019landing .headerimage .stripe.purple {
        background-color: #92278f;
        top: 72.1%;
        animation-delay: 2.5s; }
      .holiday2019landing .headerimage .stripe.pink {
        background-color: #ec008c;
        top: 73.1%;
        animation-delay: 3s; }
      .holiday2019landing .headerimage .stripe.burntorange {
        background-color: #ef4136;
        top: 74.1%;
        animation-delay: 3.5s; }
@keyframes animatestripe {
  from {
    transform: translateX(-50%) rotate(18.5deg) scaleX(0); }
  to {
    transform: translateX(-50%) rotate(18.5deg) scaleX(1); } }
  .holiday2019landing .headlinecontainer {
    margin-top: -50px;
    z-index: 3;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 0px; }
    .holiday2019landing .headlinecontainer .yearicon {
      display: none; }
    @media only screen and (min-width: 992px) {
      .holiday2019landing .headlinecontainer {
        margin-top: -260px; }
        .holiday2019landing .headlinecontainer .yearicon {
          display: block; } }
  .holiday2019landing .introcopy {
    background-color: #fff;
    font-family: "Graphik-Semibold", sans-serif !important;
    letter-spacing: -1px;
    line-height: 1.3;
    font-size: 20px;
    padding: 20px 30px 20px 0;
    position: relative; }
    .holiday2019landing .introcopy span {
      color: #DA291C;
      font-family: "Graphik-Medium", sans-serif !important;
      margin-top: 20px;
      display: block;
      cursor: pointer; }
    .holiday2019landing .introcopy:before {
      content: '';
      width: 50px;
      height: 100%;
      display: block;
      position: absolute;
      top: 0px;
      left: -50px;
      background-color: #fff; }
  .holiday2019landing .topcontent {
    margin-top: 30px;
    display: none; }
  .holiday2019landing #readless {
    display: none; }
  .holiday2019landing .introborder {
    width: 100%;
    height: 3px;
    display: block;
    background-color: #fff;
    margin-top: 50px;
    position: relative;
    margin-bottom: 50px; }
    .holiday2019landing .introborder:before {
      content: '';
      width: 96px;
      height: 6px;
      display: block;
      background-color: #000;
      position: absolute;
      bottom: 0px;
      left: 0px; }
    @media only screen and (min-width: 992px) {
      .holiday2019landing .introborder {
        margin-bottom: 150px; } }
  .holiday2019landing .dimensionlisttitle {
    background-color: #939598;
    color: #fff;
    font-size: 18px;
    font-family: "Graphik-Bold", sans-serif !important;
    line-height: 23px;
    width: 100%;
    display: block;
    padding-left: 5px;
    position: relative; }
    .holiday2019landing .dimensionlisttitle:before {
      content: '+';
      position: absolute;
      top: 0px;
      left: -30px;
      font-size: 45px; }
  .holiday2019landing .dimensionlist {
    padding-top: 18px; }
    .holiday2019landing .dimensionlist li {
      line-height: 1;
      font-size: 14px;
      font-family: "Graphik-Bold", sans-serif !important;
      opacity: .5;
      display: block;
      padding: 5px 0;
      cursor: pointer;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      .holiday2019landing .dimensionlist li.active {
        opacity: 1; }
      .holiday2019landing .dimensionlist li:hover {
        opacity: 1;
        background-color: #ccc; }
      .holiday2019landing .dimensionlist li:before {
        content: '';
        width: 9px;
        height: 9px;
        display: inline-block;
        vertical-align: top;
        margin-right: 5px;
        margin-top: 2px;
        margin-left: 5px; }
      .holiday2019landing .dimensionlist li.yellow:before {
        background-color: #f9ed32; }
      .holiday2019landing .dimensionlist li.orange:before {
        background-color: #fbb040; }
      .holiday2019landing .dimensionlist li.red:before {
        background-color: #e1251b; }
      .holiday2019landing .dimensionlist li.purple:before {
        background-color: #92278f; }
      .holiday2019landing .dimensionlist li.pink:before {
        background-color: #ec008c; }
      .holiday2019landing .dimensionlist li.burntorange:before {
        background-color: #ef4136; }
  .holiday2019landing #viewall {
    line-height: 1;
    font-size: 14px;
    font-family: "Graphik-Bold", sans-serif !important;
    display: none;
    padding: 10px 20px;
    text-decoration: underline;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    .holiday2019landing #viewall:hover {
      background-color: #ccc; }
  .holiday2019landing .hidden {
    display: none; }
  .holiday2019landing .video-container {
    background-color: #000;
    height: 100%; }
    @media only screen and (min-width: 992px) {
      .holiday2019landing .video-container.tallvideo {
        padding-top: 10%; } }
  .holiday2019landing .postcontent {
    margin-bottom: 130px;
    font-family: 'Graphik-Light', sans-serif;
    font-size: 16px;
    line-height: 1.4; }
  .holiday2019landing .postnumber {
    font-family: "Graphik-Bold", sans-serif !important;
    letter-spacing: -1px;
    font-size: 195px;
    color: #fff;
    line-height: 1;
    position: relative; }
    .holiday2019landing .postnumber .postmonth {
      font-size: 30px;
      color: #000;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: -20px; }
      .holiday2019landing .postnumber .postmonth:before {
        content: '+';
        font-size: 40px;
        color: #e1251b;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -25px; }
  .holiday2019landing .twocolumnwtitle h2, .holiday2019landing .twocolumnwtitle .postnumber {
    display: inline-block;
    vertical-align: middle; }
  .holiday2019landing .twocolumnwtitle h2 {
    margin-bottom: 0px; }
    @media only screen and (min-width: 1200px) {
      .holiday2019landing .twocolumnwtitle h2 {
        margin-left: 20px;
        width: 70%; } }
  .holiday2019landing .singleimage {
    border: .5px solid #000;
    overflow: hidden; }
  .holiday2019landing .twoblockrow {
    position: relative; }
  .holiday2019landing .smallblock {
    width: 100%; }
    .holiday2019landing .smallblock:after {
      content: "";
      display: block;
      padding-bottom: 100%; }
    .holiday2019landing .smallblock .smallblockcontent {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background-color: #e7e7e8; }
      .holiday2019landing .smallblock .smallblockcontent.red {
        background-color: #e1251b; }
        .holiday2019landing .smallblock .smallblockcontent.red .smallblocktext {
          color: #fff; }
          .holiday2019landing .smallblock .smallblockcontent.red .smallblocktext:before {
            color: #fff; }
      .holiday2019landing .smallblock .smallblockcontent .smallblocktext {
        font-size: 16px;
        line-height: 1.2;
        padding: 0 20px;
        font-family: 'Graphik-Semibold', sans-serif;
        display: block; }
        .holiday2019landing .smallblock .smallblockcontent .smallblocktext:before {
          content: '+';
          font-size: 40px;
          color: #e1251b;
          line-height: 1; }
        @media only screen and (min-width: 992px) {
          .holiday2019landing .smallblock .smallblockcontent .smallblocktext {
            display: block;
            font-size: 12px; } }
  .holiday2019landing .fullwidthtext {
    margin: 30px 0; }

.page-happy-holidays #headerwrapper, .page-happy-holidays #footer {
  display: none !important; }

.happyholidays {
  background-color: #DA291C;
  height: 100vh; }
  .happyholidays .logolink {
    max-width: 250px; }
  .happyholidays .video-container {
    -webkit-box-shadow: 0px 26px 30px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 26px 30px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 26px 30px 0px rgba(0, 0, 0, 0.3); }
  .happyholidays .footersocials a {
    padding: 0 5px; }
    .happyholidays .footersocials a svg path {
      fill: #fff; }
    @media only screen and (min-width: 1200px) {
      .happyholidays .footersocials a {
        padding: 0 20px; } }

.scriptlesssocialsharing {
  margin: 0px; }
  .scriptlesssocialsharing .scriptlesssocialsharing__buttons {
    justify-content: flex-end; }
    .scriptlesssocialsharing .scriptlesssocialsharing__buttons a.button, .scriptlesssocialsharing .scriptlesssocialsharing__buttons a.alm-load-more-btn {
      padding: 0px;
      background-color: transparent;
      color: #DA291C;
      border: none;
      flex: .2;
      margin-right: 10px; }
      .scriptlesssocialsharing .scriptlesssocialsharing__buttons a.button:hover, .scriptlesssocialsharing .scriptlesssocialsharing__buttons a.alm-load-more-btn:hover {
        background-color: transparent;
        color: #3b3b3b; }

#creatingnextnavbar {
  background-color: #F4F4F4;
  width: 100vw;
  line-height: 1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  #creatingnextnavbar .topshare {
    padding-right: 0px; }
  #creatingnextnavbar .st0 {
    fill: #DA291C; }
  #creatingnextnavbar .st1 {
    fill: #000; }
  #creatingnextnavbar .container .row {
    height: 90px; }
  #creatingnextnavbar.headroom {
    position: fixed;
    z-index: 2; }
  #creatingnextnavbar.aboveoffset {
    transform: translateY(-100%); }
    #creatingnextnavbar.aboveoffset .pagenavigation.active {
      opacity: 0;
      pointer-events: none; }
  #creatingnextnavbar.scrollin-down {
    transform: translateY(0%); }
  #creatingnextnavbar .logolink {
    width: 100%;
    padding-left: 20px;
    border-left: 1px solid #707070;
    line-height: 1;
    margin-top: 0px; }
  #creatingnextnavbar .hamburger {
    background-color: #fff;
    padding: 10px; }
    #creatingnextnavbar .hamburger .hamburger-box, #creatingnextnavbar .hamburger .label {
      vertical-align: middle; }
    #creatingnextnavbar .hamburger .hamburger-box {
      width: 30px;
      height: 20px; }
    #creatingnextnavbar .hamburger .hamburger-inner, #creatingnextnavbar .hamburger .hamburger-inner::before, #creatingnextnavbar .hamburger .hamburger-inner::after {
      height: 3px;
      width: 30px; }
    #creatingnextnavbar .hamburger .hamburger-inner::after {
      bottom: -8px; }
    #creatingnextnavbar .hamburger .hamburger-inner::before {
      top: -8px; }
    #creatingnextnavbar .hamburger.hamburger--squeeze.is-active .hamburger-inner::after {
      bottom: 0px !important; }
    #creatingnextnavbar .hamburger .label {
      font-family: "Graphik-Semibold", sans-serif !important;
      color: #000;
      font-size: 12px;
      padding-right: 0px;
      padding-left: 0px; }
      @media only screen and (min-width: 1200px) {
        #creatingnextnavbar .hamburger .label {
          font-size: 16px;
          padding-right: 20px;
          padding-left: 20px; } }
  #creatingnextnavbar .pagenavigation {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    counter-reset: li;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    #creatingnextnavbar .pagenavigation li {
      position: relative;
      margin: 10px 0 6px 2em;
      padding: 4px 8px;
      list-style: none;
      color: #DA291C; }
      #creatingnextnavbar .pagenavigation li:before {
        content: counter(li);
        counter-increment: li;
        position: absolute;
        left: -1em;
        font-family: "Graphik-Semibold", sans-serif !important; }
      #creatingnextnavbar .pagenavigation li a {
        font-family: "Graphik-Semibold", sans-serif !important;
        color: #000;
        font-size: 12px;
        padding: 10px; }
        @media only screen and (min-width: 1200px) {
          #creatingnextnavbar .pagenavigation li a {
            font-size: 16px; } }
    #creatingnextnavbar .pagenavigation.active {
      opacity: 1;
      pointer-events: all; }
  #creatingnextnavbar .learnhow {
    background-color: #D3D3D3;
    font-family: "Graphik-Semibold", sans-serif !important;
    color: #000;
    font-size: 12px;
    padding: 14px 10px; }
    #creatingnextnavbar .learnhow:hover {
      background-color: #acacac; }
    @media only screen and (min-width: 1200px) {
      #creatingnextnavbar .learnhow {
        font-size: 16px;
        padding: 12px 20px; } }

body.home .creatingnexthero {
  margin-top: 100px; }

.creatingnexthero {
  background: #fff url(videos/creatingnexthero.jpg) no-repeat right bottom;
  background-size: contain;
  color: #000;
  position: relative; }
  .creatingnexthero .container, .creatingnexthero .row {
    height: 650px; }
  .creatingnexthero .container {
    position: relative;
    z-index: 1; }
  .creatingnexthero p {
    width: 60%;
    font-size: 20px;
    line-height: 1.2;
    margin-left: 50px;
    margin-top: 30px; }
  .creatingnexthero .btnholder {
    margin-left: 15px;
    display: block;
    text-align: left; }
    .creatingnexthero .btnholder a {
      color: #000;
      font-size: 25px;
      font-family: 'Graphik-Bold', sans-serif;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      .creatingnexthero .btnholder a.btn2 {
        display: block; }
        @media only screen and (min-width: 992px) {
          .creatingnexthero .btnholder a.btn2 {
            display: inline-block;
            border-left: 1px solid #000;
            padding-left: 20px;
            margin-left: 20px; } }
      .creatingnexthero .btnholder a:after {
        content: '>';
        color: #DA291C;
        display: inline-block;
        vertical-align: middle;
        margin-left: 8px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
      .creatingnexthero .btnholder a:hover {
        color: #DA291C; }
        .creatingnexthero .btnholder a:hover:after {
          margin-left: 12px; }
  .creatingnexthero h1 {
    line-height: .8;
    font-family: "Graphik-Bold" !important;
    position: relative;
    border-left: solid #DA291C 20px;
    padding-left: 20px; }
  .creatingnexthero .videoback {
    display: none;
    height: 100%;
    background-color: #fff; }
    @media only screen and (min-width: 992px) {
      .creatingnexthero .videoback {
        display: block; } }
    .creatingnexthero .videoback video {
      opacity: 1;
      height: 100%;
      left: 50%;
      transform: translateX(-40%);
      min-height: 0px !important;
      min-width: 0px !important; }

.behaviorsection {
  padding: 80px 0px;
  min-height: 1000px;
  color: #000; }
  .behaviorsection .container .row {
    align-items: stretch; }
  .behaviorsection h2 {
    font-family: "Graphik-Bold" !important;
    position: relative;
    display: flex;
    padding-right: 20px; }
    .behaviorsection h2 .sectionnumber {
      font-size: 90px;
      color: #DA291C;
      z-index: 1;
      line-height: .9; }
      @media only screen and (min-width: 1200px) {
        .behaviorsection h2 .sectionnumber {
          position: absolute;
          top: 50px;
          left: -115px;
          font-size: 350px; } }
    .behaviorsection h2 .sectiontitle {
      color: #000;
      text-transform: uppercase;
      line-height: 1;
      position: relative;
      z-index: 2; }
      @media only screen and (min-width: 1200px) {
        .behaviorsection h2 .sectiontitle {
          font-size: 65px; } }
  .behaviorsection .sectionfeature {
    display: block;
    margin-bottom: 20px; }
    .behaviorsection .sectionfeature video {
      max-width: 100%;
      height: auto; }
  .behaviorsection .scriptlesssocialsharing {
    width: 160px;
    display: inline-block; }
    .behaviorsection .scriptlesssocialsharing .scriptlesssocialsharing__buttons {
      justify-content: flex-start; }
  .behaviorsection .downloadwp {
    margin-top: 30px;
    margin-bottom: 50px; }
    .behaviorsection .downloadwp a {
      background-color: #F4F4F4;
      line-height: 1;
      display: inline-block;
      border-radius: 8px;
      padding: 15px 30px; }
      .behaviorsection .downloadwp a span {
        display: inline-block;
        vertical-align: middle; }
        .behaviorsection .downloadwp a span.pdf {
          color: #DA291C;
          font-size: 14px;
          vertical-align: bottom;
          margin-left: -10px; }
        .behaviorsection .downloadwp a span.linkcopy {
          color: #000;
          font-family: "Graphik-Semibold", sans-serif !important;
          font-size: 20px;
          padding-right: 15px; }
      .behaviorsection .downloadwp a:hover {
        transform: scale(1.05);
        background-color: #acacac; }
  .behaviorsection .articleside {
    position: relative; }
  .behaviorsection .scrollcontainer {
    overflow-y: scroll;
    border-left: 1px solid #acacac;
    height: 100%;
    position: relative;
    min-height: 500px; }
    .behaviorsection .scrollcontainer .scrollwrapper {
      display: flex;
      position: absolute;
      width: 100%; }
    .behaviorsection .scrollcontainer::-webkit-scrollbar {
      width: 13px; }
    .behaviorsection .scrollcontainer::-webkit-scrollbar-track:vertical {
      border: 1px solid #acacac; }
    .behaviorsection .scrollcontainer::-webkit-scrollbar-thumb {
      background-color: #DA291C; }
    .behaviorsection .scrollcontainer::-webkit-scrollbar-corner {
      display: none; }
    .behaviorsection .scrollcontainer .contentside {
      flex-basis: 50%;
      padding: 0px 20px; }
      .behaviorsection .scrollcontainer .contentside.rightside {
        border-left: 1px solid #acacac; }
    .behaviorsection .scrollcontainer .articleblock {
      display: block;
      margin-bottom: 80px; }
      .behaviorsection .scrollcontainer .articleblock a {
        display: block;
        font-size: 14px;
        color: #000;
        line-height: 1.3; }
        .behaviorsection .scrollcontainer .articleblock a .articletype {
          color: #DA291C;
          font-family: "Graphik-Light" sans-serif !important;
          margin: 20px 0px;
          display: inline-block;
          position: relative; }
          .behaviorsection .scrollcontainer .articleblock a .articletype span {
            display: block;
            position: absolute;
            top: 0px;
            left: 0px;
            background-color: #DA291C;
            z-index: -1;
            width: 0%;
            height: 100%;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            transition: all 300ms ease; }
        .behaviorsection .scrollcontainer .articleblock a .articletitle {
          font-family: "Graphik-Semibold", sans-serif !important;
          font-size: 18px;
          line-height: 1;
          display: block;
          margin-bottom: 20px; }
        .behaviorsection .scrollcontainer .articleblock a:hover .articletype {
          color: #fff; }
          .behaviorsection .scrollcontainer .articleblock a:hover .articletype span {
            width: 100%; }

.parallax-window {
  min-height: 500px;
  background: transparent;
  display: none;
  cursor: pointer; }
  @media only screen and (min-width: 992px) {
    .parallax-window {
      display: block; } }

.parallax-slider .statimage {
  display: inline-block;
  vertical-align: middle;
  z-index: 2;
  position: relative; }
.parallax-slider .statcopy {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  line-height: 1.2;
  padding: 40px 40px 40px 100px;
  margin-left: -80px;
  z-index: 1;
  position: relative;
  font-size: 20px;
  font-family: 'Graphik-Semibold', sans-serif;
  font-weight: normal; }
  .parallax-slider .statcopy .connect {
    display: block;
    text-decoration: underline;
    color: #fff;
    padding: 10px 0 30px 0; }

#downloadbar {
  background-color: #F4F4F4;
  padding: 20px 0; }
  #downloadbar a {
    color: #000;
    font-size: 25px;
    font-family: 'Graphik-Bold', sans-serif;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    #downloadbar a:after {
      content: '>';
      color: #DA291C;
      display: inline-block;
      vertical-align: middle;
      margin-left: 8px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    #downloadbar a:hover {
      color: #DA291C; }
      #downloadbar a:hover:after {
        margin-left: 12px; }

.page-2020-reel #headerwrapper, .page-2020-reel #footer, .page-2020-reel .grecaptcha-badge {
  display: none !important; }

.reel2020 {
  background-color: #000404;
  height: 100vh; }
  .reel2020 .video-container {
    width: 80vw;
    display: block;
    margin: 0 auto;
    position: relative; }
    .reel2020 .video-container .default, .reel2020 .video-container .default__controls {
      border-radius: 0px;
      -ms-transform: translateY(52px);
      transform: translateY(52px); }
    .reel2020 .video-container .default__button--big {
      background-color: #DA291C;
      border-radius: 100%;
      height: 50px;
      width: 50px;
      line-height: 17px;
      transform-origin: center center;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease;
      opacity: 1;
      text-align: center; }
      .reel2020 .video-container .default__button--big .ckin-play:before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-38%) translateY(-50%); }
      .reel2020 .video-container .default__button--big i {
        color: #fff;
        font-size: 15px; }
      .reel2020 .video-container .default__button--big:hover {
        opacity: .5;
        transform: translate(-50%, -50%) scale(1.1); }
      @media only screen and (min-width: 992px) {
        .reel2020 .video-container .default__button--big {
          height: 100px;
          width: 100px;
          line-height: 25px; }
          .reel2020 .video-container .default__button--big i {
            color: #fff;
            font-size: 35px; } }
    .reel2020 .video-container .fullscreen {
      min-width: 0px;
      min-height: 0px; }
    .reel2020 .video-container video {
      width: 100%;
      height: auto; }
  .reel2020 p {
    font-family: 'Graphik-Medium';
    margin-bottom: 10px;
    line-height: 1.2; }

#newfooter {
  background-color: #DA291C;
  position: relative; }
  #newfooter .socialwrapper {
    text-align: center;
    background-color: #DA291C; }
  #newfooter .container {
    z-index: 2;
    position: relative; }
  #newfooter .redoverlay {
    background-image: -moz-linear-gradient(-120deg, #ee2e24 1%, #8c0a15 100%);
    background-image: -webkit-linear-gradient(-120deg, #ee2e24 1%, #8c0a15 100%);
    background-image: -ms-linear-gradient(-120deg, #ee2e24 1%, #8c0a15 100%);
    opacity: 0.90;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  #newfooter .mapholder {
    display: none; }
  #newfooter .footerlinks {
    padding-top: 0px; }
    #newfooter .footerlinks .row {
      min-height: 130px; }
    #newfooter .footerlinks .copyrightwrapper {
      text-align: center;
      padding-bottom: 0px;
      background-color: #DA291C; }
      #newfooter .footerlinks .copyrightwrapper .copyright, #newfooter .footerlinks .copyrightwrapper a {
        color: #fff;
        display: inline-block;
        font-size: 13px;
        font-family: 'Graphik-Medium', sans-serif;
        font-weight: normal; }
    #newfooter .footerlinks .footerlogowrapper {
      text-align: center;
      padding-bottom: 0px;
      background-color: #fff;
      margin-top: -90px; }
      #newfooter .footerlinks .footerlogowrapper .logolink {
        margin-top: 0px;
        display: inline-block;
        max-width: 278px;
        margin-left: 0px; }
        #newfooter .footerlinks .footerlogowrapper .logolink svg path, #newfooter .footerlinks .footerlogowrapper .logolink svg rect, #newfooter .footerlinks .footerlogowrapper .logolink svg polygon {
          fill: #DA291C; }
        #newfooter .footerlinks .footerlogowrapper .logolink svg #Path_14 {
          fill: #000; }
      @media only screen and (min-width: 768px) {
        #newfooter .footerlinks .footerlogowrapper {
          text-align: left;
          background-color: #DA291C;
          margin-top: 0px; }
          #newfooter .footerlinks .footerlogowrapper .logolink {
            margin-left: 15px; }
            #newfooter .footerlinks .footerlogowrapper .logolink svg path, #newfooter .footerlinks .footerlogowrapper .logolink svg rect, #newfooter .footerlinks .footerlogowrapper .logolink svg polygon, #newfooter .footerlinks .footerlogowrapper .logolink svg #Path_14 {
              fill: #fff; } }
    #newfooter .footerlinks .contactholder {
      display: none; }
      @media only screen and (min-width: 1200px) {
        #newfooter .footerlinks .contactholder {
          display: inline-block; } }
    #newfooter .footerlinks .footmenu {
      margin-bottom: 40px;
      text-align: left; }
      #newfooter .footerlinks .footmenu a {
        color: #fff;
        margin: 0 30px; }
        #newfooter .footerlinks .footmenu a:first-child {
          margin-left: 0; }
        #newfooter .footerlinks .footmenu a:last-child {
          margin-right: 0; }
      @media only screen and (min-width: 992px) {
        #newfooter .footerlinks .footmenu {
          text-align: center; } }
    #newfooter .footerlinks .justify-content-center {
      -webkit-box-pack: left !important;
      -ms-flex-pack: left !important;
      justify-content: left !important; }
      @media only screen and (min-width: 992px) {
        #newfooter .footerlinks .justify-content-center {
          -webkit-box-pack: center !important;
          -ms-flex-pack: center !important;
          justify-content: center !important; } }
    #newfooter .footerlinks .linkrow {
      width: 100%; }
      #newfooter .footerlinks .linkrow .footersocials {
        display: block; }
      #newfooter .footerlinks .linkrow .contactenvelope {
        margin-right: 0px !important;
        line-height: 38px; }
        #newfooter .footerlinks .linkrow .contactenvelope i {
          color: #fff;
          font-size: 28px;
          display: block;
          margin-top: 3px; }
        @media only screen and (min-width: 1200px) {
          #newfooter .footerlinks .linkrow .contactenvelope {
            display: none !important; } }
      #newfooter .footerlinks .linkrow .link {
        display: inline-block;
        vertical-align: middle;
        color: #fff;
        margin-right: 10px; }
      #newfooter .footerlinks .linkrow a.link {
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
        #newfooter .footerlinks .linkrow a.link:hover {
          text-decoration: none;
          color: #000; }
      #newfooter .footerlinks .linkrow a.link.social svg {
        fill: #fff;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
      #newfooter .footerlinks .linkrow a.link.social:hover {
        text-decoration: none;
        opacity: 1; }
        #newfooter .footerlinks .linkrow a.link.social:hover svg {
          fill: #000; }

#mapcontentwrapper {
  text-align: left;
  margin: 120px auto;
  padding-left: 30px;
  padding-right: 30px; }
  #mapcontentwrapper h1,
  #mapcontentwrapper h3 {
    color: #DA291C; }
    #mapcontentwrapper h1 span,
    #mapcontentwrapper h3 span {
      color: #212121; }
  #mapcontentwrapper .locationblock .address {
    padding-top: 20px;
    border-top: 8px solid #EDEDED;
    display: block;
    color: #212121;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6; }
    #mapcontentwrapper .locationblock .address h3 {
      margin-bottom: 10px;
      font-size: 25px;
      font-family: 'Graphik-Bold', sans-serif;
      font-weight: normal; }
  #mapcontentwrapper .locationblock .contactbuttons {
    display: block;
    margin-bottom: 20px; }
    #mapcontentwrapper .locationblock .contactbuttons .email,
    #mapcontentwrapper .locationblock .contactbuttons .location {
      display: inline-block;
      vertical-align: middle;
      height: 24px;
      width: 24px;
      margin: 0 5px 0 0;
      cursor: pointer;
      color: #DA291C; }
      #mapcontentwrapper .locationblock .contactbuttons .email:hover,
      #mapcontentwrapper .locationblock .contactbuttons .location:hover {
        color: #212121; }

#videoherosection {
  position: relative;
  margin-top: 75px;
  display: none; }
  @media only screen and (min-width: 992px) {
    #videoherosection {
      display: block; } }
  #videoherosection .videoslide {
    position: relative; }
    #videoherosection .videoslide .heroimage {
      position: absolute;
      top: 0px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
      min-height: 100%;
      min-width: 100%;
      overflow: hidden; }
      #videoherosection .videoslide .heroimage img {
        min-height: 100%;
        min-width: 100%;
        max-width: none; }
  #videoherosection #progressbars {
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    width: 50%;
    justify-content: space-evenly; }
    #videoherosection #progressbars li {
      cursor: pointer;
      flex-grow: 1;
      margin: 0px 2px;
      height: 25px;
      position: relative; }
      #videoherosection #progressbars li:after {
        content: '';
        background-color: rgba(255, 255, 255, 0.4);
        height: 3px;
        width: 100%;
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0px;
        z-index: 0; }
      #videoherosection #progressbars li span {
        height: 3px;
        background-color: #fff;
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0px;
        z-index: 1;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
  #videoherosection #mutetoggle {
    position: absolute;
    top: 91.5%;
    right: 30px;
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer; }
    #videoherosection #mutetoggle.unmuted {
      background: url(images/sound-off.svg) no-repeat bottom left;
      background-size: contain; }
    #videoherosection #mutetoggle.muted {
      background: url(images/sound-on-01.svg) no-repeat bottom left;
      background-size: contain; }
  #videoherosection .bx-wrapper {
    border: none !important;
    height: 800px !important;
    margin-bottom: 0px !important;
    box-shadow: none !important; }
    #videoherosection .bx-wrapper .bx-pager {
      margin: 0;
      padding: 0;
      display: flex;
      width: 50%;
      justify-content: space-evenly;
      position: absolute;
      top: 92%;
      left: 50%;
      transform: translateX(-50%); }
      #videoherosection .bx-wrapper .bx-pager .bx-pager-item {
        height: 25px;
        margin: 0 2px;
        flex-grow: 1;
        position: relative; }
      #videoherosection .bx-wrapper .bx-pager.bx-default-pager a {
        background: transparent;
        text-indent: -9999px;
        margin: 0px;
        width: 100%;
        height: 100%;
        display: block;
        outline: 0;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        border-radius: 0px;
        position: relative; }
        #videoherosection .bx-wrapper .bx-pager.bx-default-pager a:after {
          content: '';
          width: 100%;
          height: 3px;
          background-color: #fff;
          opacity: .5;
          display: block;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: 0px;
          z-index: 1;
          -webkit-transition: all 300ms ease;
          -moz-transition: all 300ms ease;
          transition: all 300ms ease; }
        #videoherosection .bx-wrapper .bx-pager.bx-default-pager a.active:after {
          opacity: 1; }
    #videoherosection .bx-wrapper .slider .container {
      z-index: 2;
      position: relative;
      height: 800px; }
      #videoherosection .bx-wrapper .slider .container .row {
        height: 800px; }
        #videoherosection .bx-wrapper .slider .container .row .video_headline {
          text-align: center;
          line-height: 1.1; }
        #videoherosection .bx-wrapper .slider .container .row .herolinkholder {
          height: 52px;
          margin-top: 20px;
          overflow: hidden;
          margin-bottom: 100px; }
          #videoherosection .bx-wrapper .slider .container .row .herolinkholder:hover .herolink {
            transform: translateY(-100%); }
        #videoherosection .bx-wrapper .slider .container .row .herolink {
          display: block;
          color: #fff;
          font-size: 50px;
          height: 50px;
          line-height: 1;
          -webkit-transition: all 300ms ease;
          -moz-transition: all 300ms ease;
          transition: all 300ms ease;
          width: 100%;
          text-align: center;
          margin-bottom: 1px; }
    #videoherosection .bx-wrapper .slider .vjs-v7 {
      position: absolute;
      top: 0px;
      width: 100vw;
      overflow: hidden; }
      #videoherosection .bx-wrapper .slider .vjs-v7 video {
        position: absolute;
        top: 0px;
        width: auto;
        height: 800px;
        left: 50%;
        transform: translateX(-50%); }
        @media only screen and (min-width: 1900px) {
          #videoherosection .bx-wrapper .slider .vjs-v7 video {
            width: 100vw;
            height: auto; } }

.video_headline {
  font-size: 40px; }
  @media only screen and (min-width: 992px) {
    .video_headline {
      font-size: 75px; } }
  @media only screen and (min-width: 1200px) {
    .video_headline {
      font-size: 120px; } }
  @media only screen and (min-width: 1900px) {
    .video_headline {
      font-size: 150px; } }

#mobileherosection {
  background-color: green;
  height: 100vh;
  display: block;
  /*
  .bx-wrapper{
    border:none!important;
    margin-bottom: 0px!important;
    box-shadow: none!important;
    .bx-pager {
      z-index: 2;
      bottom:40px;
      display: flex;
      .bx-pager-item{
        flex:1 0 auto;
      }
      &.bx-default-pager a{
        height: 3px;
        width: 90%;
        border-radius: 0px;
        display: inline-block;
        background: rgba(255,255,255,.5);
        @include transitionAll();
        &.active{background: rgba(255,255,255,1);}
      }
    }
  }
  */ }
  @media only screen and (min-width: 992px) {
    #mobileherosection {
      display: none; } }
  #mobileherosection .bx-wrapper {
    border: none !important;
    margin-bottom: 0px !important;
    box-shadow: none !important; }
    #mobileherosection .bx-wrapper .bx-pager {
      margin: 0;
      padding: 0;
      display: flex;
      width: 100%;
      justify-content: space-evenly;
      position: absolute;
      top: 92%;
      left: 50%;
      transform: translateX(-50%); }
      #mobileherosection .bx-wrapper .bx-pager .bx-pager-item {
        height: 25px;
        margin: 0 2px;
        flex-grow: 1;
        position: relative; }
      #mobileherosection .bx-wrapper .bx-pager.bx-default-pager a {
        background: transparent;
        text-indent: -9999px;
        margin: 0px;
        width: 100%;
        height: 100%;
        display: block;
        outline: 0;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        border-radius: 0px;
        position: relative; }
        #mobileherosection .bx-wrapper .bx-pager.bx-default-pager a:after {
          content: '';
          width: 100%;
          height: 3px;
          background-color: #fff;
          opacity: .5;
          display: block;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: 0px;
          z-index: 1;
          -webkit-transition: all 300ms ease;
          -moz-transition: all 300ms ease;
          transition: all 300ms ease; }
        #mobileherosection .bx-wrapper .bx-pager.bx-default-pager a.active:after {
          opacity: 1; }
  #mobileherosection .mobilepane {
    height: 100vh;
    position: relative;
    overflow: hidden; }
    #mobileherosection .mobilepane .mobileherolink {
      color: inherit; }
    #mobileherosection .mobilepane .container {
      z-index: 1;
      position: relative;
      height: 100vh; }
      #mobileherosection .mobilepane .container .row {
        height: 100vh; }
    #mobileherosection .mobilepane .herolinkholder {
      font-size: 30px;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 100px; }
    #mobileherosection .mobilepane .mobileimage {
      position: absolute;
      bottom: 0px;
      left: 0px;
      height: 100vh;
      width: auto;
      z-index: 0;
      max-width: none;
      display: block; }
      @media only screen and (min-width: 576px) {
        #mobileherosection .mobilepane .mobileimage {
          width: 100vw;
          height: auto; } }

.newhomepagesection {
  position: relative;
  line-height: 1.2; }
  .newhomepagesection h2 {
    font-size: 40px;
    margin-bottom: 40px;
    line-height: 1; }
    @media only screen and (min-width: 992px) {
      .newhomepagesection h2 {
        font-size: 65px; } }
    @media only screen and (min-width: 1200px) {
      .newhomepagesection h2 {
        font-size: 100px; } }
  .newhomepagesection h3 {
    font-size: 40px;
    margin-bottom: 10px;
    line-height: 1; }
    @media only screen and (min-width: 992px) {
      .newhomepagesection h3 {
        font-size: 45px; } }
    @media only screen and (min-width: 1200px) {
      .newhomepagesection h3 {
        font-size: 75px; } }
  .newhomepagesection .sectionsubhead {
    color: inherit;
    font-size: 14px;
    font-family: "Graphik-Medium", sans-serif !important;
    margin-bottom: 20px;
    display: block; }
    .newhomepagesection .sectionsubhead strong {
      font-family: "Graphik-Bold", sans-serif !important;
      text-transform: uppercase; }

#newblogsection {
  z-index: 1;
  position: relative;
  background: #fff;
  margin: 15px 0; }
  @media only screen and (min-width: 992px) {
    #newblogsection {
      margin: 120px 0; } }
  #newblogsection .blogpostblock {
    position: relative;
    display: table-cell;
    width: 33.333333%;
    padding-left: 0%;
    padding-right: 0%; }
    #newblogsection .blogpostblock h3 {
      font-size: 26px;
      padding: 30px;
      position: absolute;
      background-color: #fff;
      top: 50%;
      right: 0px;
      width: 75%;
      line-height: 1.3; }
    #newblogsection .blogpostblock .postimagebutton {
      position: relative;
      max-height: 658px; }
      #newblogsection .blogpostblock .postimagebutton .postthumb img {
        width: 100%;
        height: auto;
        max-width: none; }
    #newblogsection .blogpostblock .blogcontentblock {
      position: absolute;
      z-index: 2;
      top: 0px;
      left: 0px;
      width: 200%;
      height: 100%;
      padding-top: 0px;
      overflow: hidden;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      #newblogsection .blogpostblock .blogcontentblock .wrapper {
        width: 100%;
        height: 100%; }
        #newblogsection .blogpostblock .blogcontentblock .wrapper td {
          width: 50%;
          height: 100%;
          vertical-align: top;
          position: relative; }
          #newblogsection .blogpostblock .blogcontentblock .wrapper td.excerptwrap {
            position: relative; }
            #newblogsection .blogpostblock .blogcontentblock .wrapper td.excerptwrap .excerptcontent {
              position: absolute;
              top: 50%;
              left: 0px;
              width: 100%;
              height: 50%;
              padding: 20px;
              font-size: 16px;
              line-height: 1.5;
              color: #fff;
              background-color: #DA291C; }
              @media only screen and (min-width: 992px) {
                #newblogsection .blogpostblock .blogcontentblock .wrapper td.excerptwrap .excerptcontent {
                  font-size: 16px; } }
              @media only screen and (min-width: 1200px) {
                #newblogsection .blogpostblock .blogcontentblock .wrapper td.excerptwrap .excerptcontent {
                  font-size: 20px; } }
              @media only screen and (min-width: 1900px) {
                #newblogsection .blogpostblock .blogcontentblock .wrapper td.excerptwrap .excerptcontent {
                  font-size: 25px; } }
    #newblogsection .blogpostblock .readflag {
      display: inline-block;
      background-color: #fff;
      color: #DA291C;
      padding: 10px 20px;
      font-size: 16px;
      text-align: center;
      margin-top: 20px;
      text-transform: uppercase;
      font-family: "Graphik-Bold", sans-serif !important; }
      #newblogsection .blogpostblock .readflag:hover {
        background-color: #000; }
    #newblogsection .blogpostblock:hover .blogcontentblock {
      left: -100%; }
    @media only screen and (min-width: 992px) {
      #newblogsection .blogpostblock {
        padding-left: 5%;
        padding-right: 5%; }
        #newblogsection .blogpostblock h3 {
          font-size: 20px; } }
    @media only screen and (min-width: 1200px) {
      #newblogsection .blogpostblock h3 {
        font-size: 28px; } }
  #newblogsection .owl-dots {
    position: absolute;
    bottom: 30px;
    display: flex; }
    #newblogsection .owl-dots .owl-dot {
      border: none;
      flex: 1 0 auto;
      height: 3px;
      padding: 0;
      margin: 0 5px;
      background: rgba(255, 255, 255, 0.5);
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      #newblogsection .owl-dots .owl-dot.active {
        background: white; }

#pov {
  padding: 100px 0px;
  overflow: hidden;
  -webkit-transform: translateZ(0) !important;
  -moz-transform: translateZ(0) !important;
  transform: translateZ(0) !important;
  background: #DA291C url(images/POVBackground@2x.png) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
  color: #fff;
  text-align: center; }
  #pov .sectionsubhead {
    margin-top: 30px; }
  @media only screen and (min-width: 992px) {
    #pov {
      text-align: left; }
      #pov .row {
        height: 100vh; }
      #pov .sectionsubhead {
        margin-top: 0px; } }
  #pov .phonecase {
    position: relative;
    display: block;
    width: 100%;
    height: 100%; }
  #pov #homephone1 {
    max-height: 880px;
    position: relative;
    z-index: 3; }
  #pov #homephone1shadow {
    position: absolute;
    z-index: 2;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    opacity: .5; }
  #pov #homephone2 {
    max-height: 700px;
    position: absolute;
    z-index: 2;
    top: 80px;
    left: 0%; }
  #pov #homephone3 {
    max-height: 700px;
    position: absolute;
    z-index: 1;
    top: 80px;
    right: 0%; }

#aldi {
  position: relative;
  color: #212121;
  padding: 0px 0px 100px 0px; }
  @media only screen and (min-width: 992px) {
    #aldi {
      padding: 0px; } }
  #aldi .sectioncontent {
    position: relative;
    padding-top: 20px;
    text-align: center; }
    #aldi .sectioncontent p {
      margin-bottom: 40px;
      font-size: 20px; }
    @media only screen and (min-width: 992px) {
      #aldi .sectioncontent {
        text-align: left;
        padding-top: 0px; }
        #aldi .sectioncontent p {
          font-size: 27px; } }
    #aldi .sectioncontent:after {
      position: absolute;
      top: -25px;
      left: 50%;
      transform: translateX(-50%);
      border: solid transparent;
      content: " ";
      width: 0;
      height: 0;
      border-width: 0 24px 20px 24px;
      border-color: transparent transparent #FFF transparent;
      border-style: solid; }
      @media only screen and (min-width: 992px) {
        #aldi .sectioncontent:after {
          display: none; } }
  #aldi .backwash {
    width: 50vw;
    position: absolute;
    left: 50%;
    top: 0px;
    z-index: 1;
    height: 100%;
    display: none;
    background-color: rgba(255, 255, 255, 0.8); }
  #aldi .backgroundimage {
    position: relative;
    z-index: 0;
    width: 100vw;
    height: auto;
    display: none; }
  #aldi .mobilealdi {
    display: block; }
    #aldi .mobilealdi img {
      width: 100%;
      height: auto; }
  @media only screen and (min-width: 992px) {
    #aldi .mobilealdi {
      display: none; }
    #aldi .backgroundimage, #aldi .backwash {
      display: block; }
    #aldi .container, #aldi .container-fluid {
      position: absolute;
      z-index: 2;
      height: 100%;
      width: 100vw;
      top: 0px;
      left: 50%;
      transform: translateX(-50%); }
      #aldi .container .row, #aldi .container-fluid .row {
        height: 100%; } }

#thdf {
  position: relative;
  color: #212121;
  background: #ebebeb;
  padding: 100px 0px; }
  @media only screen and (min-width: 992px) {
    #thdf {
      padding: 0px; } }
  #thdf .container, #thdf .container-fluid {
    z-index: 1;
    position: relative; }
  #thdf .sectioncontent {
    text-align: center; }
    #thdf .sectioncontent h2 {
      padding: 10px 40px; }
    @media only screen and (min-width: 992px) {
      #thdf .sectioncontent {
        text-align: left; }
        #thdf .sectioncontent h2 {
          padding: 0px; } }
  @media only screen and (min-width: 992px) {
    #thdf .row {
      height: 100vh; } }
  #thdf .mobilecrate img {
    width: 100%;
    height: auto;
    display: block; }
  @media only screen and (min-width: 992px) {
    #thdf .mobilecrate {
      display: none; } }
  #thdf #thdfbackground {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100%;
    z-index: 0;
    background: #ebebeb url(images/THDFCrate.png) no-repeat;
    background-position: 30vw bottom;
    background-size: contain; }
    @media only screen and (min-width: 992px) {
      #thdf #thdfbackground {
        display: block; } }

@media only screen and (min-width: 1200px) {
  body.page-holiday2020 .container {
    max-width: 1260px; } }
body.page-holiday2020 .audioswitch {
  position: absolute;
  top: 20px;
  right: 20px; }
  body.page-holiday2020 .audioswitch a {
    color: #fff;
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 40px;
    display: block;
    z-index: 1; }
    body.page-holiday2020 .audioswitch a#music-on {
      background: url(images/sound-off.svg) no-repeat center center;
      background-size: 50% 50%; }
    body.page-holiday2020 .audioswitch a#music-off {
      display: none;
      background: url(images/sound-on-01.svg) no-repeat center center;
      background-size: 50% 50%; }
  body.page-holiday2020 .audioswitch .better {
    pointer-events: none;
    position: absolute;
    top: 0px;
    right: 0px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 40px;
    line-height: 55px;
    padding: 0 60px 0 20px;
    z-index: 0;
    font-size: 20px;
    font-family: 'Graphik-SemiBold', sans-serif; }
body.page-holiday2020 img {
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none; }
body.page-holiday2020 #headerwrapper,
body.page-holiday2020 #mapcontentwrapper,
body.page-holiday2020 #newfooter,
body.page-holiday2020 .wpcf7-response-output,
body.page-holiday2020 .hidden {
  display: none !important; }
body.page-holiday2020 h3 {
  text-align: center; }
body.page-holiday2020 .introcopy {
  font-size: 30px;
  margin-bottom: 155px; }
body.page-holiday2020 .introarrow {
  margin-bottom: 75px; }
body.page-holiday2020 .downarrow {
  animation: bounce 0.4s;
  animation-direction: alternate;
  animation-iteration-count: infinite; }
@keyframes bounce {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-20px); } }
body.page-holiday2020 .greenbtn, body.page-holiday2020 input[type="submit"].greenbtn {
  background-color: #069362;
  color: #fff;
  font-family: 'Graphik-Bold', sans-serif;
  font-size: 35px;
  border-radius: 50px;
  padding: 32px 102px;
  line-height: 1;
  text-align: center;
  display: inline-block;
  margin-top: 20px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  body.page-holiday2020 .greenbtn:hover, body.page-holiday2020 input[type="submit"].greenbtn:hover {
    background-color: #fff;
    color: #069362; }
body.page-holiday2020 #previewwrapper {
  display: inline-block;
  background-color: #da281d;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  width: 750px;
  max-width: 100%;
  box-shadow: 0px 53px 99px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 53px 99px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 53px 99px 0px rgba(0, 0, 0, 0.75); }
  body.page-holiday2020 #previewwrapper #previewcontent .smalllogolockup {
    margin-top: -80px; }
  body.page-holiday2020 #previewwrapper #previewcontent .previewtitle {
    line-height: 1;
    margin-top: -60px; }
    body.page-holiday2020 #previewwrapper #previewcontent .previewtitle h2 {
      font-family: "Graphik-Light", sans-serif !important;
      font-size: 40px;
      margin: 0; }
    body.page-holiday2020 #previewwrapper #previewcontent .previewtitle #targetname {
      font-family: 'Graphik-Bold', sans-serif;
      color: #fff; }
    body.page-holiday2020 #previewwrapper #previewcontent .previewtitle #hitby, body.page-holiday2020 #previewwrapper #previewcontent .previewtitle .byline {
      font-family: 'Graphik-Bold', sans-serif;
      font-size: 40px; }
    body.page-holiday2020 #previewwrapper #previewcontent .previewtitle .byline {
      padding: 0px 30px;
      display: block; }
    @media only screen and (min-width: 992px) {
      body.page-holiday2020 #previewwrapper #previewcontent .previewtitle {
        margin-top: -100px; }
        body.page-holiday2020 #previewwrapper #previewcontent .previewtitle .smalllogolockup {
          margin-top: -100px; }
        body.page-holiday2020 #previewwrapper #previewcontent .previewtitle h2, body.page-holiday2020 #previewwrapper #previewcontent .previewtitle #hitby, body.page-holiday2020 #previewwrapper #previewcontent .previewtitle .byline {
          font-size: 50px; } }
  body.page-holiday2020 #previewwrapper #previewcontent .previewgraphic {
    margin-top: 30px;
    display: inline-block;
    max-width: 100%; }
    body.page-holiday2020 #previewwrapper #previewcontent .previewgraphic img {
      max-width: 100%;
      height: auto; }
    @media only screen and (min-width: 992px) {
      body.page-holiday2020 #previewwrapper #previewcontent .previewgraphic {
        width: 615px;
        height: 615px; } }
  body.page-holiday2020 #previewwrapper #previewcontent .previewmessage {
    text-align: left;
    max-width: 615px;
    display: block;
    margin: 30px 0;
    padding: 0 30px; }
  body.page-holiday2020 #previewwrapper .previewfooter {
    width: 100%;
    height: 170px;
    display: block;
    background: url(images/holiday2020images/previewfooter.png) no-repeat left top;
    background-size: cover;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px; }
body.page-holiday2020 #previewbtnholder {
  text-align: center;
  margin: 20px 0px; }
  body.page-holiday2020 #previewbtnholder #goback {
    margin-right: 20px; }
body.page-holiday2020 .fancybox-content {
  background: transparent;
  width: 100vw;
  text-align: center;
  padding-bottom: 150px; }
body.page-holiday2020 .fancybox-bg {
  background: rgba(218, 40, 29, 0.98); }
body.page-holiday2020 .fancybox-close-small {
  display: none; }
body.page-holiday2020 .ballpane {
  cursor: pointer;
  user-select: none;
  /* supported by Chrome and Opera */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */ }
  body.page-holiday2020 .ballpane:focus {
    outline: none; }
  body.page-holiday2020 .ballpane .imgholder {
    position: relative;
    overflow: hidden; }
    body.page-holiday2020 .ballpane .imgholder:focus {
      outline: none; }
    body.page-holiday2020 .ballpane .imgholder .nameplate {
      cursor: pointer;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      position: absolute;
      top: 100%;
      left: 0%;
      width: 100%;
      opacity: 0;
      background: rgba(6, 147, 98, 0.8);
      color: #fff;
      font-family: 'Graphik-Bold', sans-serif;
      font-size: 38px;
      border-radius: 50px;
      padding: 15px 30px;
      line-height: 1;
      text-align: center;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    body.page-holiday2020 .ballpane .imgholder:hover .nameplate {
      top: 45%;
      opacity: 1; }
body.page-holiday2020 #myfields {
  padding-top: 165px; }
  body.page-holiday2020 #myfields h3 {
    margin-bottom: 10px;
    font-size: 50px;
    margin-top: 85px; }

.content-wrapper.holiday2020landing {
  padding-top: 0px;
  padding-bottom: 300px;
  background-color: #da281d;
  color: #fff; }
  .content-wrapper.holiday2020landing #ballhero {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    text-align: center; }
    .content-wrapper.holiday2020landing #ballhero #ballcontainer {
      display: inline-block;
      margin-left: 0px; }
      .content-wrapper.holiday2020landing #ballhero #ballcontainer img {
        width: 600px;
        max-width: 100%; }
    .content-wrapper.holiday2020landing #ballhero #logotypetext {
      position: absolute;
      top: 28%;
      left: 50%;
      margin-left: -166px;
      z-index: 2;
      display: none; }
    .content-wrapper.holiday2020landing #ballhero #virtualtext {
      position: absolute;
      top: 44%;
      left: 1%;
      display: none;
      z-index: 3; }
    .content-wrapper.holiday2020landing #ballhero #snowballtext {
      position: absolute;
      top: 38%;
      left: 50%;
      margin-left: -246.5px;
      display: none;
      z-index: 3; }
    .content-wrapper.holiday2020landing #ballhero #fighttext {
      position: absolute;
      top: 43%;
      right: 1%;
      display: none;
      z-index: 3; }
    .content-wrapper.holiday2020landing #ballhero #mobilehero {
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%); }
    @media only screen and (min-width: 992px) {
      .content-wrapper.holiday2020landing #ballhero {
        height: 682px;
        width: 1330px; }
        .content-wrapper.holiday2020landing #ballhero #mobilehero {
          display: none; }
        .content-wrapper.holiday2020landing #ballhero #logotypetext,
        .content-wrapper.holiday2020landing #ballhero #snowballtext,
        .content-wrapper.holiday2020landing #ballhero #virtualtext,
        .content-wrapper.holiday2020landing #ballhero #fighttext {
          display: block; } }
  .content-wrapper.holiday2020landing #ballrow {
    background-color: #cf271c;
    padding: 100px 0px 180px 0px;
    margin: 0px 0px;
    position: relative; }
    .content-wrapper.holiday2020landing #ballrow h2 {
      margin-bottom: 40px;
      font-size: 50px; }
    .content-wrapper.holiday2020landing #ballrow .my-slider .ballpane {
      position: relative;
      padding-bottom: 70px; }
      .content-wrapper.holiday2020landing #ballrow .my-slider .ballpane:after {
        content: '';
        width: 54px;
        height: 54px;
        display: block;
        background: transparent;
        border: 3px solid #fff;
        border-radius: 100%;
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1; }
      .content-wrapper.holiday2020landing #ballrow .my-slider .ballpane.selected:before {
        z-index: 2;
        content: '';
        width: 54px;
        height: 54px;
        display: block;
        background: #fff url(images/holiday2020images/check.png) no-repeat center center;
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 100%;
        overflow: hidden; }
    .content-wrapper.holiday2020landing #ballrow .ballrowarrow {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%); }
  .content-wrapper.holiday2020landing input[type='text'], .content-wrapper.holiday2020landing input[type='email'] {
    text-align: center;
    border-radius: 10px;
    font-size: 35px; }
  .content-wrapper.holiday2020landing textarea {
    border-radius: 10px;
    border: none;
    font-size: 35px;
    padding: 55px;
    height: 443px;
    line-height: 1.2; }
  @media only screen and (min-width: 992px) {
    .content-wrapper.holiday2020landing {
      padding-top: 50px; } }
  .content-wrapper.holiday2020landing .dragnote {
    font-size: 22px;
    display: block;
    margin-bottom: 50px; }
  .content-wrapper.holiday2020landing .mynav {
    display: none;
    vertical-align: middle;
    cursor: pointer; }
    .content-wrapper.holiday2020landing .mynav:focus {
      outline: none; }
    .content-wrapper.holiday2020landing .mynav:hover {
      opacity: .8; }
    .content-wrapper.holiday2020landing .mynav[aria-disabled="true"] {
      opacity: .5; }
    .content-wrapper.holiday2020landing .mynav#myprev {
      margin-right: 10px; }
    .content-wrapper.holiday2020landing .mynav#mynext {
      margin-left: 10px; }
  .content-wrapper.holiday2020landing .tns-controls:focus {
    outline: none; }
  .content-wrapper.holiday2020landing .tns-controls button {
    border: none;
    width: 78px;
    height: 78px;
    text-indent: 999px;
    overflow: hidden; }
    .content-wrapper.holiday2020landing .tns-controls button:hover {
      opacity: .8; }
    .content-wrapper.holiday2020landing .tns-controls button[data-controls="next"] {
      background: url(images/holiday2020images/arrowright.png) no-repeat center center; }
    .content-wrapper.holiday2020landing .tns-controls button[data-controls="prev"] {
      background: url(images/holiday2020images/arrowleft.png) no-repeat center center; }
  .content-wrapper.holiday2020landing .tns-nav {
    display: flex;
    position: absolute;
    bottom: -30px;
    left: 0px;
    width: 100%; }
    .content-wrapper.holiday2020landing .tns-nav button {
      flex: 1 0 auto;
      border: none;
      height: 3px;
      background-color: #B82318;
      margin: 0 5px; }
      .content-wrapper.holiday2020landing .tns-nav button.tns-nav-active {
        background-color: #fff; }

#footersnow {
  width: 100vw;
  height: 245px;
  display: block;
  background: url(images/holiday2020images/footersnow.svg) no-repeat top center;
  background-size: cover;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none; }

body.page-holiday2020-insights #newfooter, body.page-holiday2020-insights #mapcontentwrapper {
  display: none; }
body.page-holiday2020-insights .content-wrapper.holiday2020insights {
  background: #1F4A37 url(images/holiday2020images/holiday2020reportback.png) no-repeat top center;
  background-size: 100% auto;
  color: #fff;
  text-align: left;
  padding-bottom: 300px; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights h4 {
    font-size: 20px;
    font-family: 'Graphik-Bold', sans-serif;
    display: block;
    margin: 80px 0 30px 0; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights h1 {
    font-size: 56px;
    font-family: 'Graphik-Light', sans-serif !important;
    display: block;
    margin: 30px 0 71px 0; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights h1 strong {
      font-family: 'Graphik-Bold', sans-serif; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights .inset {
    border-left: 24px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    font-size: 25px; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights .listsection {
    padding: 60px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 20px; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .listsection span {
      font-family: 'Graphik-Bold', sans-serif; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .listsection ul {
      list-style: disc;
      margin-left: 60px; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder {
    background-color: #fff;
    color: #B4B4B4; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder img {
      margin-top: -40px; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder input[type='text'], body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder input[type='email'] {
      text-align: center;
      border-radius: 10px;
      font-size: 21px;
      border: 1px solid #ccc;
      color: #B4B4B4; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder form {
      padding: 20px 80px; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder .text-right {
      padding-right: 0px; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder .downloadlinkholder {
      display: block;
      font-family: 'Graphik-Bold', sans-serif; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder .wpcf7-form.sent {
      display: none; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights .greenbtn, body.page-holiday2020-insights .content-wrapper.holiday2020insights input[type="submit"].greenbtn {
    background-color: #069362;
    color: #fff;
    font-family: 'Graphik-Bold', sans-serif;
    font-size: 25px;
    border-radius: 50px;
    padding: 25px;
    line-height: 1;
    text-align: center;
    display: block;
    margin-top: 20px;
    width: 100%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .greenbtn:hover, body.page-holiday2020-insights .content-wrapper.holiday2020insights input[type="submit"].greenbtn:hover {
      background-color: #B4B4B4;
      color: #069362; }

.scriptlesssocialsharing {
  margin: 0px; }
  .scriptlesssocialsharing .scriptlesssocialsharing__buttons {
    justify-content: flex-end; }
    .scriptlesssocialsharing .scriptlesssocialsharing__buttons a.button, .scriptlesssocialsharing .scriptlesssocialsharing__buttons a.alm-load-more-btn {
      padding: 0px;
      background-color: transparent;
      color: #DA291C;
      border: none;
      flex: .2;
      margin-right: 10px; }
      .scriptlesssocialsharing .scriptlesssocialsharing__buttons a.button:hover, .scriptlesssocialsharing .scriptlesssocialsharing__buttons a.alm-load-more-btn:hover {
        background-color: transparent;
        color: #3b3b3b; }

#creatingnextnavbar {
  background-color: #F4F4F4;
  width: 100vw;
  line-height: 1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  #creatingnextnavbar .topshare {
    padding-right: 0px; }
  #creatingnextnavbar .st0 {
    fill: #DA291C; }
  #creatingnextnavbar .st1 {
    fill: #000; }
  #creatingnextnavbar .container .row {
    height: 90px; }
  #creatingnextnavbar.headroom {
    position: fixed;
    z-index: 2; }
  #creatingnextnavbar.aboveoffset {
    transform: translateY(-100%); }
    #creatingnextnavbar.aboveoffset .pagenavigation.active {
      opacity: 0;
      pointer-events: none; }
  #creatingnextnavbar.scrollin-down {
    transform: translateY(0%); }
  #creatingnextnavbar .logolink {
    width: 100%;
    padding-left: 20px;
    border-left: 1px solid #707070;
    line-height: 1;
    margin-top: 0px; }
  #creatingnextnavbar .hamburger {
    background-color: #fff;
    padding: 10px; }
    #creatingnextnavbar .hamburger .hamburger-box, #creatingnextnavbar .hamburger .label {
      vertical-align: middle; }
    #creatingnextnavbar .hamburger .hamburger-box {
      width: 30px;
      height: 20px; }
    #creatingnextnavbar .hamburger .hamburger-inner, #creatingnextnavbar .hamburger .hamburger-inner::before, #creatingnextnavbar .hamburger .hamburger-inner::after {
      height: 3px;
      width: 30px; }
    #creatingnextnavbar .hamburger .hamburger-inner::after {
      bottom: -8px; }
    #creatingnextnavbar .hamburger .hamburger-inner::before {
      top: -8px; }
    #creatingnextnavbar .hamburger.hamburger--squeeze.is-active .hamburger-inner::after {
      bottom: 0px !important; }
    #creatingnextnavbar .hamburger .label {
      font-family: "Graphik-Semibold", sans-serif !important;
      color: #000;
      font-size: 12px;
      padding-right: 0px;
      padding-left: 0px; }
      @media only screen and (min-width: 1200px) {
        #creatingnextnavbar .hamburger .label {
          font-size: 16px;
          padding-right: 20px;
          padding-left: 20px; } }
  #creatingnextnavbar .pagenavigation {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    counter-reset: li;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    #creatingnextnavbar .pagenavigation li {
      position: relative;
      margin: 10px 0 6px 2em;
      padding: 4px 8px;
      list-style: none;
      color: #DA291C; }
      #creatingnextnavbar .pagenavigation li:before {
        content: counter(li);
        counter-increment: li;
        position: absolute;
        left: -1em;
        font-family: "Graphik-Semibold", sans-serif !important; }
      #creatingnextnavbar .pagenavigation li a {
        font-family: "Graphik-Semibold", sans-serif !important;
        color: #000;
        font-size: 12px;
        padding: 10px;
        text-transform: uppercase; }
        @media only screen and (min-width: 1200px) {
          #creatingnextnavbar .pagenavigation li a {
            font-size: 16px; } }
    #creatingnextnavbar .pagenavigation.active {
      opacity: 1;
      pointer-events: all; }
  #creatingnextnavbar .learnhow, #creatingnextnavbar .downloadreportbtn {
    background-color: #D3D3D3;
    font-family: "Graphik-Semibold", sans-serif !important;
    color: #000;
    font-size: 12px;
    padding: 14px 10px; }
    #creatingnextnavbar .learnhow:hover, #creatingnextnavbar .downloadreportbtn:hover {
      background-color: #acacac; }
    @media only screen and (min-width: 1200px) {
      #creatingnextnavbar .learnhow, #creatingnextnavbar .downloadreportbtn {
        font-size: 16px;
        padding: 12px 20px; } }
  #creatingnextnavbar .reportbtn {
    background-color: #DA291C;
    color: #fff !important;
    font-family: "Graphik-Semibold", sans-serif !important;
    color: #000;
    font-size: 12px;
    padding: 14px 10px; }
    #creatingnextnavbar .reportbtn:hover {
      background-color: #acacac; }
    @media only screen and (min-width: 1200px) {
      #creatingnextnavbar .reportbtn {
        font-size: 16px;
        padding: 12px 20px; } }

body.page-remix #ReportForm {
  color: #000;
  padding: 30px;
  font-size: 40px 20px; }
  body.page-remix #ReportForm .ebd_results {
    text-align: center; }
    body.page-remix #ReportForm .ebd_results .ebd_link div {
      justify-content: center; }
  body.page-remix #ReportForm label {
    width: 100%; }
  body.page-remix #ReportForm .wpcf7-response-output {
    border-color: #46b450;
    color: #46b450;
    text-align: center;
    font-weight: bold; }
  body.page-remix #ReportForm .wpcf7-form.sent p {
    display: none; }
  body.page-remix #ReportForm .wpcf7-form.invalid .wpcf7-response-output {
    border-color: red;
    color: red; }
body.page-remix .remixhero {
  background: #fff url(videos/remixhero.jpg) no-repeat right bottom;
  background-size: contain;
  color: #000;
  position: relative; }
  body.page-remix .remixhero .logolink {
    margin-top: 50px;
    position: absolute;
    top: 0px;
    left: 0px; }
    body.page-remix .remixhero .logolink .st1 {
      fill: #000; }
    body.page-remix .remixhero .logolink .st0 {
      fill: #DA291C; }
  body.page-remix .remixhero .container, body.page-remix .remixhero .row {
    height: 650px; }
  body.page-remix .remixhero .container {
    position: relative;
    z-index: 1; }
  body.page-remix .remixhero p {
    width: 50%;
    font-size: 25px;
    line-height: 1.2;
    margin-left: 0px;
    margin-top: 30px;
    color: #bbb; }
    @media only screen and (min-width: 992px) {
      body.page-remix .remixhero p {
        width: 90%; } }
  body.page-remix .remixhero .btnholder {
    margin-left: 15px;
    display: block;
    text-align: left; }
    body.page-remix .remixhero .btnholder a {
      color: #000;
      font-size: 25px;
      font-family: 'Graphik-Bold', sans-serif;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      body.page-remix .remixhero .btnholder a.btn2 {
        display: block; }
        @media only screen and (min-width: 992px) {
          body.page-remix .remixhero .btnholder a.btn2 {
            display: inline-block;
            border-left: 1px solid #000;
            padding-left: 20px;
            margin-left: 20px; } }
      body.page-remix .remixhero .btnholder a:after {
        content: '>';
        color: #DA291C;
        display: inline-block;
        vertical-align: middle;
        margin-left: 8px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
      body.page-remix .remixhero .btnholder a:hover {
        color: #DA291C; }
        body.page-remix .remixhero .btnholder a:hover:after {
          margin-left: 12px; }
  body.page-remix .remixhero h1 {
    line-height: 1;
    font-family: "Graphik-Semibold" !important;
    position: relative;
    font-size: 100px;
    color: #262626;
    text-align: center;
    margin-top: 40px;
    letter-spacing: -3px;
    margin-left: -43px; }
    body.page-remix .remixhero h1 span {
      display: block;
      margin-left: 130px;
      color: #262626; }
  body.page-remix .remixhero .videoback {
    display: none;
    height: 100%;
    background-color: #fff; }
    @media only screen and (min-width: 992px) {
      body.page-remix .remixhero .videoback {
        display: block; } }
    body.page-remix .remixhero .videoback video {
      opacity: 1;
      height: 100%;
      left: 50%;
      transform: translateX(-40%);
      min-height: 0px !important;
      min-width: 0px !important; }
body.page-remix .behaviorsection {
  padding: 80px 0px;
  min-height: 1000px;
  color: #000; }
  body.page-remix .behaviorsection .container .row {
    align-items: stretch; }
  body.page-remix .behaviorsection h2 {
    font-family: "Graphik-Bold" !important;
    position: relative;
    display: flex;
    padding-right: 20px;
    margin-bottom: -40px; }
    body.page-remix .behaviorsection h2 .sectionnumber {
      font-size: 90px;
      color: #DA291C;
      z-index: 1;
      line-height: .9; }
      @media only screen and (min-width: 1200px) {
        body.page-remix .behaviorsection h2 .sectionnumber {
          position: absolute;
          top: 50px;
          left: -115px;
          font-size: 350px; } }
    body.page-remix .behaviorsection h2 .sectiontitle {
      color: #000;
      text-transform: uppercase;
      line-height: 1;
      position: relative;
      z-index: 2; }
      @media only screen and (min-width: 1200px) {
        body.page-remix .behaviorsection h2 .sectiontitle {
          font-size: 65px; } }
  body.page-remix .behaviorsection .sectionfeature {
    display: block;
    margin-bottom: 20px; }
    body.page-remix .behaviorsection .sectionfeature video {
      max-width: 100%;
      height: auto; }
  body.page-remix .behaviorsection .scriptlesssocialsharing {
    width: 160px;
    display: inline-block; }
    body.page-remix .behaviorsection .scriptlesssocialsharing .scriptlesssocialsharing__buttons {
      justify-content: flex-start; }
  body.page-remix .behaviorsection .downloadwp {
    margin-top: 30px;
    margin-bottom: 50px; }
    body.page-remix .behaviorsection .downloadwp a {
      background-color: #F4F4F4;
      line-height: 1;
      display: inline-block;
      border-radius: 8px;
      padding: 15px 30px; }
      body.page-remix .behaviorsection .downloadwp a span {
        display: inline-block;
        vertical-align: middle; }
        body.page-remix .behaviorsection .downloadwp a span.pdf {
          color: #DA291C;
          font-size: 14px;
          vertical-align: bottom;
          margin-left: -10px; }
        body.page-remix .behaviorsection .downloadwp a span.linkcopy {
          color: #000;
          font-family: "Graphik-Semibold", sans-serif !important;
          font-size: 20px;
          padding-right: 15px; }
      body.page-remix .behaviorsection .downloadwp a:hover {
        transform: scale(1.05);
        background-color: #acacac; }
  body.page-remix .behaviorsection .articleside {
    position: relative; }
  body.page-remix .behaviorsection .scrollcontainer {
    overflow-y: scroll;
    border-left: 1px solid #acacac;
    height: 100%;
    position: relative;
    min-height: 500px; }
    body.page-remix .behaviorsection .scrollcontainer .scrollwrapper {
      display: block;
      position: absolute;
      width: 100%; }
    body.page-remix .behaviorsection .scrollcontainer::-webkit-scrollbar {
      width: 13px; }
    body.page-remix .behaviorsection .scrollcontainer::-webkit-scrollbar-track:vertical {
      border: 1px solid #acacac; }
    body.page-remix .behaviorsection .scrollcontainer::-webkit-scrollbar-thumb {
      background-color: #DA291C; }
    body.page-remix .behaviorsection .scrollcontainer::-webkit-scrollbar-corner {
      display: none; }
    body.page-remix .behaviorsection .scrollcontainer .contentside {
      padding: 0px 20px; }
      body.page-remix .behaviorsection .scrollcontainer .contentside.rightside {
        border-left: none; }
    body.page-remix .behaviorsection .scrollcontainer .articleblock {
      display: block;
      margin-bottom: 80px; }
      body.page-remix .behaviorsection .scrollcontainer .articleblock a {
        display: block;
        font-size: 14px;
        color: #000;
        line-height: 1.3; }
        body.page-remix .behaviorsection .scrollcontainer .articleblock a .articletype {
          color: #DA291C;
          font-family: "Graphik-Light" sans-serif !important;
          margin: 20px 0px;
          display: inline-block;
          position: relative; }
          body.page-remix .behaviorsection .scrollcontainer .articleblock a .articletype span {
            display: block;
            position: absolute;
            top: 0px;
            left: 0px;
            background-color: #DA291C;
            z-index: -1;
            width: 0%;
            height: 100%;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            transition: all 300ms ease; }
        body.page-remix .behaviorsection .scrollcontainer .articleblock a .articletitle {
          font-family: "Graphik-Semibold", sans-serif !important;
          font-size: 18px;
          line-height: 1;
          display: block;
          margin-bottom: 20px; }
        body.page-remix .behaviorsection .scrollcontainer .articleblock a:hover .articletype {
          color: #fff; }
          body.page-remix .behaviorsection .scrollcontainer .articleblock a:hover .articletype span {
            width: 100%; }
  body.page-remix .behaviorsection#calm .scrollcontainer::-webkit-scrollbar-thumb {
    background-color: #EC6740; }
  body.page-remix .behaviorsection#confidence .scrollcontainer::-webkit-scrollbar-thumb {
    background-color: #84141C; }
  body.page-remix .behaviorsection#clarity .scrollcontainer::-webkit-scrollbar-thumb {
    background-color: #EEC118; }
  body.page-remix .behaviorsection#choice .scrollcontainer::-webkit-scrollbar-thumb {
    background-color: #560547; }
body.page-remix .parallax-window {
  min-height: 500px;
  background: transparent;
  display: none;
  cursor: pointer; }
  @media only screen and (min-width: 992px) {
    body.page-remix .parallax-window {
      display: block; } }
body.page-remix .parallax-slider .statimage {
  display: inline-block;
  vertical-align: middle;
  z-index: 2;
  position: relative; }
body.page-remix .parallax-slider .statcopy {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  line-height: 1.2;
  padding: 40px 40px 40px 100px;
  margin-left: -80px;
  z-index: 1;
  position: relative;
  font-size: 25px;
  font-family: 'Graphik-Semibold', sans-serif;
  font-weight: normal; }
  body.page-remix .parallax-slider .statcopy span {
    display: block;
    margin-top: 10px;
    font-size: 16px !important; }
  body.page-remix .parallax-slider .statcopy .connect {
    display: block;
    text-decoration: underline;
    color: #fff;
    padding: 10px 0 30px 0; }
body.page-remix #downloadbar {
  background-color: #ccc;
  padding: 0px;
  margin-top: 0px;
  position: relative;
  z-index: 5;
  min-height: 20px; }
  body.page-remix #downloadbar a {
    color: #DA291C;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: 'Graphik-Light';
    font-size: 20px; }
    body.page-remix #downloadbar a:after {
      content: '>';
      color: #DA291C;
      display: inline-block;
      vertical-align: middle;
      margin-left: 8px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    body.page-remix #downloadbar a:hover {
      color: #DA291C; }
      body.page-remix #downloadbar a:hover:after {
        margin-left: 12px; }

.essentialworkerpage h1 {
  margin-bottom: 20px; }
  @media only screen and (min-width: 1200px) {
    .essentialworkerpage h1 {
      font-size: 65px; } }
.essentialworkerpage span.byline {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-style: italic;
  background-color: #ec1a29;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 0px 10px; }
.essentialworkerpage .pagecontent .btn-primary {
  border-radius: 6px;
  border: 0px solid #000;
  background-color: #000;
  font-size: 18px;
  text-transform: none;
  padding: 20px 40px; }
  .essentialworkerpage .pagecontent .btn-primary:hover {
    color: #000;
    border: 0px solid #ccc;
    background-color: #ccc; }
.essentialworkerpage #explorerow {
  margin-top: 40px; }
.essentialworkerpage .postblock {
  min-height: 0; }

.whyemployeespage.content-wrapper {
  color: #fff;
  margin-top: 100px;
  font-size: 15px; }
  .whyemployeespage.content-wrapper #explorerow {
    margin-top: 80px; }

body.page-holiday2022 {
  background-color: #6BB8C0; }
  body.page-holiday2022 .mobile {
    display: block; }
    @media only screen and (min-width: 1200px) {
      body.page-holiday2022 .mobile {
        display: none; } }
  body.page-holiday2022 .desktop {
    display: none; }
    @media only screen and (min-width: 1200px) {
      body.page-holiday2022 .desktop {
        display: block; } }
  body.page-holiday2022 .toplogo {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 5; }
  body.page-holiday2022 canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 10;
    pointer-events: none; }
  body.page-holiday2022 #landscape {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: block; }
    body.page-holiday2022 #landscape img {
      width: 100%;
      height: auto;
      display: block;
      position: absolute;
      bottom: 0px;
      left: 0px; }
  @media only screen and (min-width: 1200px) {
    body.page-holiday2022 .container {
      max-width: 1260px; } }
  body.page-holiday2022 .audioswitch {
    position: absolute;
    top: 20px;
    right: 20px; }
    body.page-holiday2022 .audioswitch a {
      color: #fff;
      position: relative;
      width: 48px;
      height: 48px;
      border-radius: 40px;
      display: block;
      z-index: 1; }
      body.page-holiday2022 .audioswitch a#music-on {
        background: url(images/sound-off.svg) no-repeat center center;
        background-size: 50% 50%; }
      body.page-holiday2022 .audioswitch a#music-off {
        display: none;
        background: url(images/sound-on-01.svg) no-repeat center center;
        background-size: 50% 50%; }
    body.page-holiday2022 .audioswitch .better {
      pointer-events: none;
      position: absolute;
      top: 0px;
      right: 0px;
      white-space: nowrap;
      background: rgba(255, 255, 255, 0.09);
      border-radius: 40px;
      line-height: 55px;
      padding: 0 60px 0 20px;
      z-index: 0;
      font-size: 20px;
      font-family: 'Graphik-SemiBold', sans-serif; }
  body.page-holiday2022 .disclaimer {
    margin-top: 20px; }
  body.page-holiday2022 img {
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none; }
  body.page-holiday2022 #headerwrapper,
  body.page-holiday2022 #mapcontentwrapper,
  body.page-holiday2022 #newfooter,
  body.page-holiday2022 .wpcf7-response-output,
  body.page-holiday2022 .hidden {
    display: none !important; }
  body.page-holiday2022 h3 {
    text-align: center; }
  body.page-holiday2022 .introcopy {
    font-size: 25px;
    margin-bottom: 155px; }
  body.page-holiday2022 .introarrow {
    margin-bottom: 75px; }
  body.page-holiday2022 .downarrow {
    animation: bounce 0.4s;
    animation-direction: alternate;
    animation-iteration-count: infinite; }
@keyframes bounce {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-20px); } }
  body.page-holiday2022 .greenbtn, body.page-holiday2022 input[type="submit"].greenbtn {
    background-color: #A62400;
    color: #fff;
    font-family: 'Graphik-Bold', sans-serif;
    font-size: 22px;
    border-radius: 50px;
    padding: 20px 65px;
    line-height: 1;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    body.page-holiday2022 .greenbtn:hover, body.page-holiday2022 input[type="submit"].greenbtn:hover {
      background-color: #fff;
      color: #A62400; }
  body.page-holiday2022 #previewwrapper {
    display: inline-block;
    background-color: #6BB8C0;
    color: #fff;
    text-align: center;
    border-radius: 25px;
    width: 750px;
    max-width: 100%;
    box-shadow: 0px 53px 99px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 53px 99px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 53px 99px 0px rgba(0, 0, 0, 0.75); }
    body.page-holiday2022 #previewwrapper #previewcontent .smalllogolockup {
      margin-top: 10px; }
    body.page-holiday2022 #previewwrapper #previewcontent .previewtitle {
      line-height: 1;
      margin-top: -60px; }
      body.page-holiday2022 #previewwrapper #previewcontent .previewtitle h2 {
        font-family: "Graphik-Light", sans-serif !important;
        font-size: 40px;
        margin: 0; }
      body.page-holiday2022 #previewwrapper #previewcontent .previewtitle #targetname {
        font-family: 'Graphik-Bold', sans-serif;
        color: #fff; }
      body.page-holiday2022 #previewwrapper #previewcontent .previewtitle #hitby, body.page-holiday2022 #previewwrapper #previewcontent .previewtitle .byline {
        font-family: 'Graphik-Bold', sans-serif;
        font-size: 40px; }
      body.page-holiday2022 #previewwrapper #previewcontent .previewtitle .byline {
        padding: 0px 30px;
        display: block; }
      @media only screen and (min-width: 992px) {
        body.page-holiday2022 #previewwrapper #previewcontent .previewtitle {
          margin-top: -100px; }
          body.page-holiday2022 #previewwrapper #previewcontent .previewtitle .smalllogolockup {
            margin-top: -100px; }
          body.page-holiday2022 #previewwrapper #previewcontent .previewtitle h2, body.page-holiday2022 #previewwrapper #previewcontent .previewtitle #hitby, body.page-holiday2022 #previewwrapper #previewcontent .previewtitle .byline {
            font-size: 50px; } }
    body.page-holiday2022 #previewwrapper #previewcontent .previewgraphic {
      margin-top: 30px;
      display: inline-block;
      max-width: 100%; }
      body.page-holiday2022 #previewwrapper #previewcontent .previewgraphic img {
        max-width: 100%;
        height: auto; }
      @media only screen and (min-width: 992px) {
        body.page-holiday2022 #previewwrapper #previewcontent .previewgraphic {
          width: 615px;
          height: 615px; } }
    body.page-holiday2022 #previewwrapper #previewcontent .previewmessage {
      text-align: center;
      display: block;
      margin: 30px 0 60px 0;
      padding: 0 30px; }
    body.page-holiday2022 #previewwrapper .previewfooterlogo {
      display: block;
      text-align: center; }
      body.page-holiday2022 #previewwrapper .previewfooterlogo img {
        display: inline-block; }
    body.page-holiday2022 #previewwrapper .previewfooter {
      width: 100%;
      height: 420px;
      display: block;
      background: url(images/holiday2022images/previewfooter.png) no-repeat left top;
      background-size: cover;
      border-bottom-left-radius: 25px;
      border-bottom-right-radius: 25px; }
  body.page-holiday2022 #previewbtnholder {
    text-align: center;
    margin: 20px 0px; }
    body.page-holiday2022 #previewbtnholder #goback {
      margin-right: 20px; }
  body.page-holiday2022 .fancybox-content {
    background: transparent;
    width: 100vw;
    text-align: center;
    padding-bottom: 150px; }
  body.page-holiday2022 .fancybox-bg {
    background: rgba(107, 184, 192, 0.9); }
  body.page-holiday2022 .fancybox-close-small {
    display: none; }
  body.page-holiday2022 .ballpane {
    cursor: pointer;
    user-select: none;
    /* supported by Chrome and Opera */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */ }
    body.page-holiday2022 .ballpane:focus {
      outline: none; }
    body.page-holiday2022 .ballpane .imgholder {
      position: relative;
      overflow: hidden; }
      body.page-holiday2022 .ballpane .imgholder:focus {
        outline: none; }
      body.page-holiday2022 .ballpane .imgholder .nameplate {
        cursor: pointer;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        position: absolute;
        top: 100%;
        left: 0%;
        width: 100%;
        opacity: 0;
        background: rgba(166, 36, 0, 0.8);
        color: #fff;
        font-family: 'Graphik-Bold', sans-serif;
        font-size: 30px;
        border-radius: 50px;
        padding: 15px 30px;
        line-height: 1;
        text-align: center;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
      body.page-holiday2022 .ballpane .imgholder:hover .nameplate {
        top: 45%;
        opacity: 1; }
  body.page-holiday2022 #myfields {
    padding-top: 165px; }
    body.page-holiday2022 #myfields h3 {
      margin-bottom: 10px;
      font-size: 32px;
      margin-top: 60px; }

.content-wrapper.holiday2022landing {
  padding-top: 0px;
  padding-bottom: 300px;
  background-color: transparent;
  color: #fff;
  position: relative;
  z-index: 1; }
  .content-wrapper.holiday2022landing #ballhero {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    text-align: center; }
    .content-wrapper.holiday2022landing #ballhero #ballcontainer {
      display: inline-block;
      margin-left: 0px; }
      .content-wrapper.holiday2022landing #ballhero #ballcontainer img {
        width: 600px;
        max-width: 100%; }
    .content-wrapper.holiday2022landing #ballhero #logotypetext {
      position: absolute;
      top: 28%;
      left: 50%;
      margin-left: -166px;
      z-index: 2;
      display: none; }
    .content-wrapper.holiday2022landing #ballhero #virtualtext {
      position: absolute;
      top: 44%;
      left: 1%;
      display: none;
      z-index: 3; }
    .content-wrapper.holiday2022landing #ballhero #snowballtext {
      position: absolute;
      top: 38%;
      left: 50%;
      margin-left: -246.5px;
      display: none;
      z-index: 3;
      max-width: 36%; }
    .content-wrapper.holiday2022landing #ballhero #fighttext {
      position: absolute;
      top: 43%;
      right: 1%;
      display: none;
      z-index: 3; }
    .content-wrapper.holiday2022landing #ballhero #mobilehero {
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1; }
    @media only screen and (min-width: 992px) {
      .content-wrapper.holiday2022landing #ballhero {
        height: 682px;
        width: 1330px; }
        .content-wrapper.holiday2022landing #ballhero #mobilehero {
          display: none; }
        .content-wrapper.holiday2022landing #ballhero #logotypetext,
        .content-wrapper.holiday2022landing #ballhero #snowballtext,
        .content-wrapper.holiday2022landing #ballhero #virtualtext,
        .content-wrapper.holiday2022landing #ballhero #fighttext {
          display: block; } }
  .content-wrapper.holiday2022landing #ballrow {
    background-color: transparent;
    padding: 100px 0px 180px 0px;
    margin: 0px 0px;
    position: relative; }
    .content-wrapper.holiday2022landing #ballrow h2 {
      margin-bottom: 20px;
      font-size: 50px; }
    .content-wrapper.holiday2022landing #ballrow .my-slider .ballpane {
      position: relative;
      padding-bottom: 70px; }
      .content-wrapper.holiday2022landing #ballrow .my-slider .ballpane:after {
        content: '';
        width: 54px;
        height: 54px;
        display: block;
        background: transparent;
        border: 3px solid #fff;
        border-radius: 100%;
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1; }
      .content-wrapper.holiday2022landing #ballrow .my-slider .ballpane.selected:before {
        z-index: 2;
        content: '';
        width: 54px;
        height: 54px;
        display: block;
        background: #fff url(images/holiday2020images/check.png) no-repeat center center;
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 100%;
        overflow: hidden; }
    .content-wrapper.holiday2022landing #ballrow .ballrowarrow {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%); }
  .content-wrapper.holiday2022landing input[type='text'], .content-wrapper.holiday2022landing input[type='email'] {
    text-align: center;
    border-radius: 10px;
    font-size: 22px; }
  .content-wrapper.holiday2022landing textarea {
    border-radius: 10px;
    border: none;
    font-size: 22px;
    padding: 55px;
    height: 443px;
    line-height: 1.2; }
  @media only screen and (min-width: 992px) {
    .content-wrapper.holiday2022landing {
      padding-top: 50px; } }
  .content-wrapper.holiday2022landing .dragnote {
    font-size: 22px;
    display: block;
    margin-bottom: 50px; }
  .content-wrapper.holiday2022landing .mynav {
    display: none;
    vertical-align: middle;
    cursor: pointer; }
    .content-wrapper.holiday2022landing .mynav:focus {
      outline: none; }
    .content-wrapper.holiday2022landing .mynav:hover {
      opacity: .8; }
    .content-wrapper.holiday2022landing .mynav[aria-disabled="true"] {
      opacity: .5; }
    .content-wrapper.holiday2022landing .mynav#myprev {
      margin-right: 10px; }
    .content-wrapper.holiday2022landing .mynav#mynext {
      margin-left: 10px; }
  .content-wrapper.holiday2022landing .tns-controls:focus {
    outline: none; }
  .content-wrapper.holiday2022landing .tns-controls button {
    border: none;
    width: 78px;
    height: 78px;
    text-indent: 999px;
    overflow: hidden; }
    .content-wrapper.holiday2022landing .tns-controls button:hover {
      opacity: .8; }
    .content-wrapper.holiday2022landing .tns-controls button[data-controls="next"] {
      background: url(images/holiday2020images/arrowright.png) no-repeat center center; }
    .content-wrapper.holiday2022landing .tns-controls button[data-controls="prev"] {
      background: url(images/holiday2020images/arrowleft.png) no-repeat center center; }
  .content-wrapper.holiday2022landing .tns-nav {
    display: flex;
    position: absolute;
    bottom: -30px;
    left: 0px;
    width: 100%; }
    .content-wrapper.holiday2022landing .tns-nav button {
      flex: 1 0 auto;
      border: none;
      height: 3px;
      background-color: #B82318;
      margin: 0 5px; }
      .content-wrapper.holiday2022landing .tns-nav button.tns-nav-active {
        background-color: #fff; }

#footersnow {
  width: 100vw;
  height: 245px;
  display: block;
  background: url(images/holiday2020images/footersnow.svg) no-repeat top center;
  background-size: cover;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none; }

body.page-holiday2020-insights #newfooter, body.page-holiday2020-insights #mapcontentwrapper {
  display: none; }
body.page-holiday2020-insights .content-wrapper.holiday2020insights {
  background: #1F4A37 url(images/holiday2020images/holiday2020reportback.png) no-repeat top center;
  background-size: 100% auto;
  color: #fff;
  text-align: left;
  padding-bottom: 300px; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights h4 {
    font-size: 20px;
    font-family: 'Graphik-Bold', sans-serif;
    display: block;
    margin: 80px 0 30px 0; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights h1 {
    font-size: 56px;
    font-family: 'Graphik-Light', sans-serif !important;
    display: block;
    margin: 30px 0 71px 0; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights h1 strong {
      font-family: 'Graphik-Bold', sans-serif; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights .inset {
    border-left: 24px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    font-size: 25px; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights .listsection {
    padding: 60px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 20px; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .listsection span {
      font-family: 'Graphik-Bold', sans-serif; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .listsection ul {
      list-style: disc;
      margin-left: 60px; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder {
    background-color: #fff;
    color: #B4B4B4; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder img {
      margin-top: -40px; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder input[type='text'], body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder input[type='email'] {
      text-align: center;
      border-radius: 10px;
      font-size: 21px;
      border: 1px solid #ccc;
      color: #B4B4B4; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder form {
      padding: 20px 80px; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder .text-right {
      padding-right: 0px; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder .downloadlinkholder {
      display: block;
      font-family: 'Graphik-Bold', sans-serif; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .formholder .wpcf7-form.sent {
      display: none; }
  body.page-holiday2020-insights .content-wrapper.holiday2020insights .greenbtn, body.page-holiday2020-insights .content-wrapper.holiday2020insights input[type="submit"].greenbtn {
    background-color: #A62400;
    color: #fff;
    font-family: 'Graphik-Bold', sans-serif;
    font-size: 25px;
    border-radius: 50px;
    padding: 25px;
    line-height: 1;
    text-align: center;
    display: block;
    margin-top: 20px;
    width: 100%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    body.page-holiday2020-insights .content-wrapper.holiday2020insights .greenbtn:hover, body.page-holiday2020-insights .content-wrapper.holiday2020insights input[type="submit"].greenbtn:hover {
      background-color: #B4B4B4;
      color: #A62400; }

.grecaptcha-badge {
  z-index: 999;
  display: none; }

body {
  font-family: 'Graphik-Light', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  background-color: #fff;
  color: #fff;
  font-weight: 300; }
  body .curtain {
    position: fixed;
    height: 100vh;
    width: 100vw;
    display: block;
    z-index: 9999;
    background: #fff url(images/loader.gif) no-repeat center center; }
  body.lockbody {
    position: fixed;
    overflow: hidden; }
    @media only screen and (min-width: 992px) {
      body.lockbody {
        position: relative;
        overflow: auto; } }

h1,
h2,
h3 {
  color: inherit;
  font-family: "Graphik-Bold", sans-serif !important;
  letter-spacing: -0.5px;
  font-weight: 400;
  line-height: 1.1; }
  h1 span,
  h2 span,
  h3 span {
    color: #DA291C; }

h1 {
  font-size: 35px;
  padding-top: 0; }
  @media only screen and (min-width: 992px) {
    h1 {
      font-size: 75px; } }
  h1.search-title {
    font-size: 35px; }

h2 {
  font-size: 33px;
  margin-bottom: 40px; }
  @media only screen and (min-width: 992px) {
    h2 {
      font-size: 45px; } }

h3 {
  font-size: 25px;
  margin-bottom: 30px; }

a {
  color: #DA291C;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  a:hover {
    color: #3b3b3b;
    text-decoration: none; }
  a.smallcareerslink {
    color: #3b3b3b;
    margin-top: 50px;
    display: block;
    font-size: 14px; }
    a.smallcareerslink:hover {
      color: #DA291C;
      text-decoration: none;
      margin-left: 12px; }

img {
  max-width: 100%;
  height: auto; }

p {
  margin-bottom: 20px; }
  p b,
  p strong {
    font-family: 'Graphik-Semibold', sans-serif; }

@media only screen and (min-width: 1200px) {
  #headerwrapper .container,
  #mapcontentwrapper .container,
  #newfooter .container,
  body.home #panel .container {
    max-width: 1920px !important; } }

.no-pad {
  padding: 0px; }

.btn.btn-primary {
  border-radius: 0px;
  border: 0px solid #DA291C;
  background-color: #DA291C;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Graphik-Bold', sans-serif;
  font-size: 14px;
  position: relative; }
  .btn.btn-primary span.text {
    position: relative;
    z-index: 1;
    padding: 12px 20px;
    display: block; }
  .btn.btn-primary span.wiper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 100%;
    background-color: #212121;
    display: block;
    z-index: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
  .btn.btn-primary:hover span.wiper {
    width: 100%; }
  .btn.btn-primary:hover.inverted {
    color: #fff; }
  .btn.btn-primary.inverted {
    border: 0px solid #fff;
    background-color: #fff;
    color: #DA291C;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }

.editbutton {
  position: fixed;
  bottom: 80px;
  left: 0;
  z-index: 999;
  padding: 20px;
  background-color: #DA291C;
  color: #fff; }

#headerwrapper {
  position: fixed;
  width: 100vw;
  height: 95px;
  top: 0;
  left: 0;
  z-index: 19;
  display: block; }
  @media only screen and (min-width: 992px) {
    #headerwrapper {
      height: 125px; } }
  #headerwrapper.scrollin-up {
    pointer-events: all; }
  #headerwrapper.scrollin-down {
    pointer-events: none; }

#panel {
  z-index: 1;
  overflow: hidden; }
  #panel.blurred {
    filter: blur(10px); }

.mobile-menu, .contactlinks {
  z-index: 2;
  background-color: #DA291C; }
  .mobile-menu .contactlink, .contactlinks .contactlink {
    display: none;
    color: #fff;
    margin-bottom: 20px;
    padding-left: 20px; }
    .mobile-menu .contactlink:hover, .contactlinks .contactlink:hover {
      text-decoration: none; }
    .mobile-menu .contactlink:before, .contactlinks .contactlink:before {
      content: '';
      display: inline-block;
      vertical-align: middle;
      width: 28px;
      height: 20px;
      background: url(images/emailwhite.png) no-repeat center center;
      margin-right: 10px; }
  .mobile-menu .mobilesocials, .contactlinks .mobilesocials {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box; }
    .mobile-menu .mobilesocials a, .contactlinks .mobilesocials a {
      display: inline-block;
      vertical-align: middle;
      padding-right: 20px; }
      .mobile-menu .mobilesocials a svg, .contactlinks .mobilesocials a svg {
        fill: #fff; }
  .mobile-menu .logolink, .contactlinks .logolink {
    width: 60%; }
  .mobile-menu ul, .contactlinks ul {
    padding-top: 70px; }

.contactlinks {
  position: relative;
  left: 0;
  top: 0;
  padding: 25px;
  background: none; }
  .contactlinks .contactlink {
    color: #727475; }
    .contactlinks .contactlink:before {
      background: url(images/emailicon.png) no-repeat center center; }

.stripetile {
  -webkit-transform: translate3d(0, 0, 0);
  width: 100%;
  height: 100%;
  background: url("images/stripetile.png");
  display: block;
  z-index: 10;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.2; }

.gradientoverlay {
  -webkit-transform: translate3d(0, 0, 0);
  width: 100%;
  display: block;
  z-index: 9;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black); }

.homeblogsection .gradientoverlay {
  height: 75%; }

.pagecontent {
  padding-top: 50px; }

#mainnav {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
  padding: 0;
  background-color: #DA291C;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  @media only screen and (min-width: 992px) {
    #mainnav {
      padding: 0px; } }
  #mainnav.headroom {
    position: fixed; }
  #mainnav.scrollin-up.belowoffset {
    transform: translateY(0%); }
  #mainnav.scrollin-down {
    transform: translateY(-100%); }
  #mainnav .row.holder {
    height: 75px;
    margin-left: 0;
    margin-right: 0; }
  #mainnav .primary-navigation {
    display: none; }
    @media only screen and (min-width: 992px) {
      #mainnav .primary-navigation {
        display: block; } }
    #mainnav .primary-navigation ul li {
      display: inline-block;
      vertical-align: middle;
      margin-left: 30px; }
      #mainnav .primary-navigation ul li a {
        font-family: 'Graphik-Semibold', sans-serif;
        color: #fff;
        padding: 10px 0;
        display: block; }
      #mainnav .primary-navigation ul li.current_page_item a,
      #mainnav .primary-navigation ul li a:hover {
        color: #000;
        text-decoration: none; }
      #mainnav .primary-navigation ul li:first-child {
        margin-left: 0; }
  #mainnav .hamburger {
    display: inline-block; }
    @media only screen and (min-width: 992px) {
      #mainnav .hamburger {
        display: none; } }
    #mainnav .hamburger .hamburger-inner,
    #mainnav .hamburger .hamburger-inner::after,
    #mainnav .hamburger .hamburger-inner::before {
      background-color: #fff; }
    #mainnav .hamburger .hamburger-inner::after,
    #mainnav .hamburger .hamburger-inner::before {
      width: 30px;
      right: 0px; }
    #mainnav .hamburger.hamburger--arrowalt.is-active .hamburger-inner::before {
      transform: translate3d(-18px, -7px, 0) rotate(-45deg) scale(0.7, 1); }
    #mainnav .hamburger.hamburger--arrowalt.is-active .hamburger-inner::after {
      transform: translate3d(-18px, 7px, 0) rotate(45deg) scale(0.7, 1); }
  #mainnav #notebar {
    background-color: #000;
    padding: 5px 0;
    height: 42px;
    line-height: 32px;
    overflow: hidden; }
    #mainnav #notebar strong {
      font-family: 'Graphik-Semibold', sans-serif; }
    #mainnav #notebar .openbtn {
      position: absolute;
      top: 0%;
      right: 5%;
      display: block;
      text-align: center;
      width: 40px;
      line-height: 40px;
      background-color: #000;
      color: white;
      border-radius: 100%; }
    #mainnav #notebar .bartitle {
      font-size: 12px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    #mainnav #notebar:hover {
      cursor: pointer; }
      #mainnav #notebar:hover .bartitle {
        transform: translateY(-100%); }
    @media only screen and (min-width: 992px) {
      #mainnav #notebar .openbtn {
        top: 15%; }
      #mainnav #notebar .bartitle {
        font-size: 16px; } }

#barcontent {
  width: 100vw;
  background-color: #000;
  z-index: 20;
  position: fixed;
  padding: 40px 0;
  top: 0px;
  transform: translateY(-100%);
  line-height: 1.5;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  #barcontent.active {
    transform: translateY(0%); }
    #barcontent.active .closebtn {
      opacity: 1; }
  #barcontent .eventtype {
    display: block;
    text-align: left;
    font-size: 12px;
    font-family: 'Graphik-Semibold', sans-serif;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 10px; }
  #barcontent p {
    margin-bottom: 10px; }
  #barcontent a.ctabtn {
    display: block;
    font-size: 16px;
    font-family: 'Graphik-Semibold', sans-serif;
    color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    #barcontent a.ctabtn:after {
      content: '>';
      color: #DA291C;
      display: inline-block;
      vertical-align: middle;
      margin-left: 8px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    #barcontent a.ctabtn:hover {
      color: #DA291C; }
      #barcontent a.ctabtn:hover:after {
        margin-left: 12px; }
  #barcontent .closebtn {
    opacity: 0;
    position: absolute;
    top: 93%;
    right: 5%;
    display: block;
    text-align: center;
    width: 40px;
    line-height: 40px;
    background-color: #000;
    color: white;
    border-radius: 100%; }

#searchholder {
  color: #000; }
  #searchholder form {
    display: flex;
    width: 70vw;
    padding: 20px 0px; }
    #searchholder form input[type="text"] {
      flex: 1;
      font-size: 18px;
      font-weight: bold; }
      #searchholder form input[type="text"]:focus, #searchholder form input[type="text"]:active {
        outline: none; }
    #searchholder form button {
      width: 50px;
      background: transparent;
      color: #DA291C;
      font-size: 20px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      #searchholder form button:hover {
        color: #3b3b3b; }

.taxonomy-description {
  width: 80%;
  display: block;
  margin: 20px auto 40px auto; }
  .taxonomy-description p {
    border-left: 7px solid #DA291C;
    padding: 0px 10px;
    line-height: 1.3; }

.searchresult {
  padding: 40px 20px;
  border-bottom: 1px solid #000; }
  .searchresult h3 {
    margin-bottom: 5px; }

.slideout-open #mainnav {
  background-color: #353535; }

.fullscreen {
  z-index: 1;
  position: relative; }
  @media only screen and (min-width: 992px) {
    .fullscreen {
      min-width: 100vw;
      min-height: 100vh; } }

.logolink {
  display: inline-block;
  width: 100%;
  height: auto;
  max-width: 278px;
  margin-left: 15px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  .logolink svg {
    max-width: 100%;
    height: auto;
    fill: #fff; }
  .logolink:hover {
    opacity: 0.8; }

.dfoty {
  background: url(images/dfoty-homepageback.jpg) no-repeat center bottom;
  background-size: cover; }
  .dfoty .col-12 {
    height: 100vh; }
  .dfoty img {
    max-width: 50vw; }
  .dfoty .badgeclick img {
    transform: scale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    .dfoty .badgeclick img:hover {
      transform: scale(1.03); }
  .dfoty .btnholder {
    width: 50vw;
    display: block;
    float: right;
    text-align: left; }
    .dfoty .btnholder a {
      display: block;
      font-size: 25px;
      font-family: 'Graphik-Bold', sans-serif;
      color: #fff;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      .dfoty .btnholder a:after {
        content: '>';
        color: #DA291C;
        display: inline-block;
        vertical-align: middle;
        margin-left: 8px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
      .dfoty .btnholder a:hover {
        color: #DA291C; }
        .dfoty .btnholder a:hover:after {
          margin-left: 12px; }
  @media only screen and (min-width: 992px) {
    .dfoty .btnholder {
      width: 25vw;
      display: block;
      float: right;
      text-align: left; }
    .dfoty img {
      max-width: 25vw; } }

.covid {
  background: #fff url(videos/covidback.jpg) no-repeat right bottom;
  background-size: cover;
  color: #000; }
  .covid .herocontent {
    padding-top: 85px; }
  .covid .container, .covid .row {
    height: 100vh; }
  .covid .container {
    position: relative;
    z-index: 1; }
  .covid p {
    width: 50%;
    font-size: 20px;
    line-height: 1.2;
    margin-left: 15px; }
  .covid .btnholder {
    margin-left: 15px;
    display: block;
    text-align: left; }
    .covid .btnholder a {
      color: #000;
      font-size: 25px;
      font-family: 'Graphik-Bold', sans-serif;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      .covid .btnholder a.btn2 {
        display: block; }
        @media only screen and (min-width: 992px) {
          .covid .btnholder a.btn2 {
            display: inline-block;
            border-left: 1px solid #000;
            padding-left: 20px;
            margin-left: 20px; } }
      .covid .btnholder a:after {
        content: '>';
        color: #DA291C;
        display: inline-block;
        vertical-align: middle;
        margin-left: 8px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
      .covid .btnholder a:hover {
        color: #DA291C; }
        .covid .btnholder a:hover:after {
          margin-left: 12px; }
  .covid h1 {
    line-height: .8;
    font-family: "Graphik-Bold" !important;
    position: relative;
    padding: 0 0 20px 15px; }
    @media only screen and (min-width: 992px) {
      .covid h1 {
        padding: 0 0 0px 0px; } }
  .covid #redbrick {
    background-color: #DA291C;
    width: 40px;
    height: 95%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: none; }
    @media only screen and (min-width: 992px) {
      .covid #redbrick {
        display: block; } }
  .covid .videoback {
    display: none; }
    @media only screen and (min-width: 992px) {
      .covid .videoback {
        display: block; } }
    .covid .videoback video {
      opacity: 1; }

#holidaypromo {
  position: fixed;
  bottom: -78px;
  right: -15px;
  z-index: 10;
  width: 200px; }
  @media only screen and (min-width: 992px) {
    #holidaypromo {
      width: 300px;
      bottom: -100px; } }
  #holidaypromo img {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
  #holidaypromo:hover img {
    transform: scale(1.1); }

.homehero .container {
  position: relative;
  z-index: 1; }
.homehero .col-12 {
  min-height: 100vh;
  padding-bottom: 20px; }
.homehero .herocontent {
  text-align: left; }
  .homehero .herocontent h1 {
    color: #DA291C;
    line-height: 0.9em;
    margin-bottom: 0; }
    .homehero .herocontent h1 span {
      display: block;
      opacity: 0; }
      .homehero .herocontent h1 span:last-child {
        color: #fff; }
      .homehero .herocontent h1 span.animateWhite {
        opacity: 1;
        animation: blurWhite 1s ease-out 1; }
      .homehero .herocontent h1 span.animateRed {
        opacity: 1;
        animation: blurRed 1s ease-out 1; }
@keyframes blurWhite {
  from {
    text-shadow: 0 0 10px #fff, 0 0 50px #fff, 0 10px 60px #7B96B8, 0 -10px 60px #7B96B8; } }
@keyframes blurRed {
  from {
    text-shadow: 0 0 10px #fff, 0 0 50px #DA291C, 0 10px 60px #DA291C, 0 -10px 60px #DA291C; } }
  .homehero .herocontent a {
    padding-left: 15px;
    margin-top: 20px;
    display: block;
    font-size: 25px;
    font-family: 'Graphik-Bold', sans-serif;
    color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    .homehero .herocontent a:after {
      content: '>';
      color: #DA291C;
      display: inline-block;
      vertical-align: middle;
      margin-left: 8px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    .homehero .herocontent a:hover {
      color: #DA291C; }
      .homehero .herocontent a:hover:after {
        margin-left: 12px; }
.homehero .homedownarrow {
  position: absolute;
  width: 100%;
  display: block;
  bottom: 40px;
  left: 0;
  z-index: 10;
  text-align: center; }

.videoback {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  overflow: hidden; }
  .videoback .stripetile {
    position: fixed; }
  .videoback video {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    min-width: 100vw;
    min-height: 100vh;
    z-index: 0;
    opacity: 0.2; }

.content-wrapper {
  padding-top: 95px;
  padding-bottom: 70px;
  background-color: #fff;
  color: #3b3b3b; }
  @media only screen and (min-width: 992px) {
    .content-wrapper {
      padding-top: 125px; } }
  .content-wrapper .row.nomargin {
    margin: 0; }

.titlerow {
  text-align: left;
  padding-bottom: 40px;
  padding-top: 50px; }
  @media only screen and (min-width: 992px) {
    .titlerow {
      padding-bottom: 80px; } }

.desktopsort {
  text-align: center; }
  .desktopsort .title {
    font-weight: 500; }
  .desktopsort ul {
    display: block; }
    .desktopsort ul li {
      display: inline-block;
      margin-right: 65px; }
      .desktopsort ul li a {
        color: #000;
        line-height: 40px;
        vertical-align: middle;
        font-family: 'Graphik-Light', sans-serif; }
        .desktopsort ul li a i {
          color: #DA291C;
          font-size: 40px;
          margin-left: 17px;
          vertical-align: middle; }

.sidesort {
  text-align: left;
  padding-bottom: 40px; }
  .sidesort .title {
    font-weight: 500;
    display: block;
    margin-bottom: 10px; }
  .sidesort a.drawertrigger {
    color: #000;
    font-weight: 700;
    display: block;
    font-family: 'Graphik-Semibold', sans-serif; }
    .sidesort a.drawertrigger:after {
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease;
      content: '>';
      color: #DA291C;
      display: inline-block;
      vertical-align: top;
      margin-left: 10px;
      font-weight: 100;
      font-size: 20px; }
    .sidesort a.drawertrigger:hover:after {
      margin-left: 18px; }
    .sidesort a.drawertrigger.opened {
      color: #DA291C; }
      .sidesort a.drawertrigger.opened:after {
        transform: rotate(90deg); }
  .sidesort nav {
    display: none; }
    .sidesort nav#industrynav {
      margin-bottom: 30px; }
  .sidesort ul {
    display: block; }
    .sidesort ul li {
      display: block; }
      .sidesort ul li a {
        color: #000;
        line-height: 1.2;
        font-family: 'Graphik-Light', sans-serif;
        font-size: 14px;
        display: block;
        padding: 10px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
        .sidesort ul li a.active, .sidesort ul li a:hover {
          background-color: #DA291C;
          color: #fff; }
      .sidesort ul li ul {
        margin-left: 10px; }

.page-our-work .alm-listing .aos-init,
.sidework .aos-init {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) {
    .page-our-work .alm-listing .aos-init.col-md-6,
    .sidework .aos-init.col-md-6 {
      flex: 1 0 50%;
      max-width: 100%; } }
  .page-our-work .alm-listing .aos-init a img,
  .sidework .aos-init a img {
    width: 100%;
    height: auto; }
  @media only screen and (min-width: 992px) {
    .page-our-work .alm-listing .aos-init a,
    .sidework .aos-init a {
      margin-bottom: 10px; } }

.page-our-work .gridwrapper {
  margin-bottom: 50px; }

.search-filter-results {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0px;
  margin-left: 0px; }

.content-wrapper .searchandfilter ul li ul li {
  flex: 1 0 15%;
  white-space: nowrap;
  text-align: center;
  margin: 0 6px;
  padding: 0px; }
  .content-wrapper .searchandfilter ul li ul li.sf-item-0 {
    display: none; }
  .content-wrapper .searchandfilter ul li ul li input {
    display: none; }
  .content-wrapper .searchandfilter ul li ul li label {
    cursor: pointer;
    font-family: 'Graphik-Semibold', sans-serif;
    color: #acacac;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    display: block;
    padding-left: 0px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    /*
    &:after{
      content: '';
      width:30px;
      height: 10px;
      background-color: $red;
      display: block;
      position: absolute;
      top:-10px;
      left: 0px;
      opacity: 0;
      @include transitionAll();
    }
    */ }
    .content-wrapper .searchandfilter ul li ul li label:before {
      content: '';
      width: 100%;
      height: 1px;
      background-color: #DA291C;
      display: block;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease;
      position: absolute;
      top: 0px;
      left: 0px; }
    .content-wrapper .searchandfilter ul li ul li label .sub {
      opacity: 0;
      pointer-events: none;
      position: absolute;
      bottom: 120%;
      left: 0px;
      font-family: 'Graphik-Light', sans-serif;
      font-size: 14px;
      width: 300px;
      white-space: normal;
      line-height: 1.4;
      background-color: #fff;
      border: 2px solid #DA291C;
      padding: 10px;
      color: #000;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    .content-wrapper .searchandfilter ul li ul li label:hover {
      color: #DA291C; }
      .content-wrapper .searchandfilter ul li ul li label:hover:before {
        width: 100%;
        opacity: 1; }
      .content-wrapper .searchandfilter ul li ul li label:hover:after {
        width: 100%;
        opacity: 0; }
      .content-wrapper .searchandfilter ul li ul li label:hover .sub {
        opacity: 0; }
  .content-wrapper .searchandfilter ul li ul li:last-child a .sub {
    left: -224%; }
  .content-wrapper .searchandfilter ul li ul li.sf-option-active label {
    color: #DA291C; }
    .content-wrapper .searchandfilter ul li ul li.sf-option-active label:before {
      width: 100%; }
@media only screen and (min-width: 992px) {
  .content-wrapper .searchandfilter ul li ul {
    display: flex;
    justify-content: space-between;
    /*li a{
      &:hover{
        &:after, .sub{
          opacity: 1;
        }
      }
    }*/ } }

#pageheader {
  width: 100vw;
  color: #212121; }
  #pageheader .headercontent h1 {
    font-family: 'Graphik-Semibold', sans-serif;
    padding-top: 50px; }

.worknav li {
  flex: 0 1 auto;
  white-space: nowrap; }
  .worknav li a {
    font-family: 'Graphik-Semibold', sans-serif;
    color: #000;
    position: relative;
    display: block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    .worknav li a:before {
      content: '';
      width: 30px;
      height: 10px;
      background-color: #DA291C;
      display: block;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    .worknav li a:after {
      content: '';
      width: 30px;
      height: 10px;
      background-color: #DA291C;
      display: block;
      position: absolute;
      top: -10px;
      left: 0px;
      opacity: 0;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    .worknav li a .sub {
      opacity: 0;
      pointer-events: none;
      position: absolute;
      bottom: 120%;
      left: 0px;
      font-family: 'Graphik-Light', sans-serif;
      font-size: 14px;
      width: 300px;
      white-space: normal;
      line-height: 1.4;
      background-color: #fff;
      border: 2px solid #DA291C;
      padding: 10px;
      color: #000;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    .worknav li a:hover {
      color: #DA291C; }
      .worknav li a:hover:before {
        width: 100%;
        opacity: 1; }
      .worknav li a:hover:after {
        width: 100%;
        opacity: 0; }
      .worknav li a:hover .sub {
        opacity: 0; }
  .worknav li:last-child a .sub {
    left: -224%; }
  .worknav li.current-menu-item a {
    color: #DA291C; }
    .worknav li.current-menu-item a:before {
      width: 100%; }
@media only screen and (min-width: 992px) {
  .worknav {
    display: flex;
    justify-content: space-between;
    /*li a{
      &:hover{
        &:after, .sub{
          opacity: 1;
        }
      }
    }*/ } }

.workfilters {
  padding-bottom: 35px; }
  .workfilters .statement {
    margin-bottom: 120px;
    line-height: 1.5; }

#pushdowncontainer {
  padding: 20px;
  background-color: #DA291C; }
  #pushdowncontainer ul {
    margin: 0;
    padding: 0; }
    #pushdowncontainer ul li {
      display: block;
      text-align: left;
      line-height: 1; }
      #pushdowncontainer ul li a {
        color: #fff;
        padding: 10px 0;
        display: block;
        font-family: 'Graphik-Light', sans-serif; }
  @media only screen and (min-width: 768px) {
    #pushdowncontainer ul {
      max-height: 288px;
      margin: 10px 0 0;
      -webkit-column-count: 3;
      -moz-column-count: 3;
      column-count: 3; }
      #pushdowncontainer ul li {
        text-align: center;
        width: 100%;
        display: inline-block; }
        #pushdowncontainer ul li ul {
          -webkit-column-count: 1;
          -moz-column-count: 1;
          column-count: 1;
          margin-top: 0; } }

.capabilitieslist {
  font-family: 'PT Serif', serif;
  padding-bottom: 0; }
  .capabilitieslist li {
    display: inline-block; }
    .capabilitieslist li a {
      color: inherit;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      .capabilitieslist li a:hover {
        color: #DA291C; }
    .capabilitieslist li:after {
      content: ',';
      display: inline-block;
      margin-right: 5px; }
    .capabilitieslist li:last-child:after {
      display: none; }

.postblock {
  position: relative;
  display: block;
  margin-bottom: 10px;
  overflow: hidden;
  min-height: 100%; }
  .postblock img {
    display: block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    transform: scale(1.06); }
  .postblock .postoverlay {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    position: absolute;
    bottom: 0;
    opacity: 0;
    left: 0;
    width: 100%;
    text-align: center; }
    .postblock .postoverlay .overlaycontent {
      position: relative;
      display: inline-block;
      text-align: left;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 35px 70px 35px 30px;
      width: 90%;
      max-width: 600px;
      color: #fff; }
      .postblock .postoverlay .overlaycontent h4 {
        font-size: 25px;
        font-family: 'Graphik-Bold', sans-serif; }
      .postblock .postoverlay .overlaycontent .redtab {
        width: 40px;
        background-color: #DA291C;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        text-align: center;
        font-size: 24px; }
        .postblock .postoverlay .overlaycontent .redtab span {
          height: 100%;
          width: 1px;
          display: inline-block;
          vertical-align: middle; }
        .postblock .postoverlay .overlaycontent .redtab i {
          display: inline-block;
          vertical-align: middle; }
      .postblock .postoverlay .overlaycontent .excerpt {
        display: block;
        line-height: 1.3;
        font-size: 14px; }
        @media only screen and (min-width: 768px) {
          .postblock .postoverlay .overlaycontent .excerpt {
            display: none; } }
        @media only screen and (min-width: 992px) {
          .postblock .postoverlay .overlaycontent .excerpt {
            display: block;
            font-size: 18px; } }
  .postblock:hover .postoverlay {
    bottom: 20px;
    opacity: 1; }
  .postblock:hover img {
    transform: scale(1.1); }
  @media only screen and (min-width: 768px) {
    .postblock {
      margin-bottom: 30px; } }

@media only screen and (min-width: 768px) {
  .singleblock .postblock {
    max-height: 620px; }
    .singleblock .postblock img {
      margin-top: -150px; } }

.quoteblock {
  padding-top: 85px;
  padding-bottom: 115px; }

.quote p {
  font-size: 45px;
  font-family: 'Graphik-Light', sans-serif;
  line-height: 1.2;
  margin-bottom: 40px;
  margin-top: 60px;
  padding-left: 15px;
  padding-right: 15px; }
  .quote p strong {
    color: #DA291C;
    font-weight: 300; }
  @media only screen and (min-width: 992px) {
    .quote p {
      margin-top: 0; } }

.cite p {
  font-size: 25px;
  margin-bottom: 0;
  line-height: 1.2;
  font-family: 'Graphik-Light', sans-serif;
  padding-left: 15px;
  padding-right: 15px; }
  .cite p strong {
    font-weight: 600;
    font-family: 'Graphik-Semi', sans-serif; }
  @media only screen and (min-width: 992px) {
    .cite p {
      margin-top: 20px; } }

.tallboy {
  max-height: 639px; }
  .tallboy a {
    height: 100%; }

.threeblockrow {
  padding-bottom: 10px; }

.tallfeatureholder {
  height: 100%; }
  .tallfeatureholder .postthumb {
    display: block; }
  .tallfeatureholder .tallthumb {
    display: none; }
  @media only screen and (min-width: 768px) {
    .tallfeatureholder .postthumb {
      display: none; }
    .tallfeatureholder .tallthumb {
      display: block;
      height: 100%; }
      .tallfeatureholder .tallthumb img {
        min-height: 100%; } }

.contactcontent .contentblock {
  margin-bottom: 75px; }
  .contactcontent .contentblock p {
    padding-left: 20px;
    border-left: solid 2px #DA291C; }
  .contactcontent .contentblock a {
    display: block;
    font-family: 'Graphik-Semibold';
    margin-top: 35px; }
  .contactcontent .contentblock.first p {
    padding-left: 0;
    border-left: none; }
.contactcontent .contactform textarea {
  border: 1px solid #acacac !important; }
.contactcontent .contactform.hidden {
  display: none; }

.approach_row h3 {
  font-weight: 700;
  color: #000; }
.approach_row p {
  margin: 10px !important !important;
  font-style: italic; }

.openpositions {
  margin-top: 80px; }

.office {
  padding-bottom: 80px; }
  .office h3 span {
    font-size: 20px; }
  .office h5 {
    margin: 60px 0 20px; }
  .office .position .button, .office .position .alm-load-more-btn {
    margin: 20px 0 40px; }

.officeinfo h4 {
  margin: 20px 0 10px; }

.jobdescription h4 {
  font-family: 'Graphik-Semibold', sans-serif;
  font-size: 21px;
  margin-bottom: 20px; }
.jobdescription h3 {
  font-family: 'Graphik-Semibold', sans-serif;
  font-size: 43px;
  margin-bottom: 40px;
  line-height: 1; }
  .jobdescription h3 a {
    color: #3b3b3b; }
    .jobdescription h3 a:hover {
      color: #DA291C; }
.jobdescription h1 {
  margin-bottom: 20px;
  padding-top: 0;
  font-size: 43px;
  line-height: 1; }
.jobdescription h2 {
  font-family: 'Graphik-Light', sans-serif; }
.jobdescription p {
  margin-bottom: 40px; }
.jobdescription strong {
  font-weight: 600; }
.jobdescription ul {
  margin-left: 20px;
  margin-bottom: 40px;
  list-style: disc; }
  .jobdescription ul li {
    margin-bottom: 10px; }
.jobdescription a.button, .jobdescription a.alm-load-more-btn {
  display: block;
  font-size: 16px;
  font-family: 'Graphik-Semibold', sans-serif;
  color: #3b3b3b;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  .jobdescription a.button:after, .jobdescription a.alm-load-more-btn:after {
    content: '>';
    color: #DA291C;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
  .jobdescription a.button:hover, .jobdescription a.alm-load-more-btn:hover {
    color: #DA291C; }
    .jobdescription a.button:hover:after, .jobdescription a.alm-load-more-btn:hover:after {
      margin-left: 12px; }

.archive article {
  position: relative;
  box-shadow: -0.14px 3.998px 13px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 30px; }
  .archive article a {
    padding: 100px 20px 0;
    display: block;
    min-height: 560px;
    background-color: #fff;
    color: #3b3b3b;
    font-family: 'Graphik', sans-serif;
    font-size: 38px;
    line-height: 1.2; }
    .archive article a .title span {
      display: block;
      color: #DA291C;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    .archive article a .linktext {
      position: absolute;
      bottom: 40px;
      left: 0;
      width: 100%;
      padding-left: 20px; }
      .archive article a .linktext span {
        display: block;
        font-size: 16px;
        font-family: 'Graphik-Semibold', sans-serif;
        color: #3b3b3b;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease;
        margin-bottom: 40px; }
        .archive article a .linktext span:after {
          content: '>';
          color: #DA291C;
          display: inline-block;
          vertical-align: middle;
          margin-left: 8px;
          -webkit-transition: all 300ms ease;
          -moz-transition: all 300ms ease;
          transition: all 300ms ease; }
    .archive article a:hover {
      background-color: #DA291C;
      color: #fff; }
      .archive article a:hover .title span {
        color: #3b3b3b; }
      .archive article a:hover .linktext span {
        color: #fff; }
        .archive article a:hover .linktext span:after {
          color: #3b3b3b;
          margin-left: 12px; }

.button, .alm-load-more-btn {
  font-size: 18px;
  font-family: 'Graphik-Semibold';
  text-align: left;
  display: inline-block;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  .button:hover, .alm-load-more-btn:hover {
    text-decoration: none; }
  .button.upcase, .upcase.alm-load-more-btn {
    text-transform: uppercase; }
  .button.red, .alm-load-more-btn {
    color: #DA291C; }
    .button.red:hover, .alm-load-more-btn:hover {
      color: #3b3b3b; }
  .button.white, .white.alm-load-more-btn {
    color: #fff; }
    .button.white:hover, .white.alm-load-more-btn:hover {
      color: #DA291C; }

.arrowbtn {
  display: block;
  font-size: 16px;
  font-family: 'Graphik-Semibold', sans-serif;
  color: #3b3b3b;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-top: 20px; }
  .arrowbtn:after {
    content: '>';
    color: #DA291C;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
  .arrowbtn:hover {
    color: #DA291C; }
    .arrowbtn:hover:after {
      margin-left: 12px; }

.alm-btn-wrap {
  display: block;
  width: 100%;
  text-align: center;
  padding: 40px 0; }

.alm-load-more-btn {
  border: none;
  background-color: #fff;
  cursor: pointer; }
  .alm-load-more-btn.done {
    display: none; }
  .alm-load-more-btn:active, .alm-load-more-btn:focus {
    outline: 0; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="file"],
textarea {
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #3b3b3b;
  font-size: 16px;
  font-weight: 300;
  padding: 14px 0;
  margin-bottom: 20px; }

.messagelabel {
  margin-top: 20px; }

textarea {
  width: 100%;
  margin: 0 0 10px;
  border: 1px solid #3b3b3b;
  padding: 14px;
  height: 150px; }

.submitwrapper .afterarrow {
  color: #DA291C;
  font-size: 25px;
  font-family: 'Graphik-Medium';
  margin-left: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
.submitwrapper:hover .afterarrow {
  margin-left: 8px; }

input[type="submit"] {
  color: #3b3b3b;
  font-size: 25px;
  font-family: 'Graphik-Medium';
  border: none;
  background: none;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  input[type="submit"]:hover {
    color: #DA291C; }

.wpcf7-form p {
  margin: 0; }
.wpcf7-form #hiddentopic {
  visibility: hidden;
  height: 0;
  padding: 0;
  margin: 0; }

/*
.select-box {
  cursor: pointer;
  position : relative;
  max-width:  100%;
  width: 100%;

  .select {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0px;
    padding: 14px 0;
    height: 40px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    background: none transparent;
    border: 0 none;
  }
  .select-box1 {
    background: #fff;
  }

  .label {
    position: relative;
    text-align: left;
    cursor: pointer;
    @extend input[type="text"];
  }
  .open .label::after {
     content: "▲";
  }
  .label::after {
    content: "";
    width:22px;
    height: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -6px;
    background: url(images/downarrow.png)no-repeat center center;
  }

}
*/
.select-box select {
  width: 100%;
  border: 0;
  font: 18px 'Graphik-Light', sans-serif;
  height: 40px; }

.filterrow {
  display: none;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.08); }
  .filterrow .case-studies-filter,
  .filterrow .more-btn {
    display: inline-block;
    vertical-align: middle; }
  .filterrow .more-btn {
    color: #3b3b3b;
    font-weight: 600;
    padding: 0 12px;
    font-size: 14px; }
  .filterrow ul {
    width: 100%; }
    .filterrow ul li {
      display: inline-block;
      vertical-align: middle;
      line-height: 60px; }
      .filterrow ul li.active a {
        color: #DA291C;
        text-decoration: underline; }
      .filterrow ul li#client-filter-all, .filterrow ul li#client-filter-industry {
        display: none; }
      .filterrow ul li a {
        color: #3b3b3b;
        font-weight: 600;
        padding: 20px;
        font-size: 14px;
        display: block;
        text-align: center;
        line-height: 1.2; }
    .filterrow ul span {
      display: none; }
    @media only screen and (min-width: 992px) {
      .filterrow ul {
        display: table;
        table-layout: fixed; }
        .filterrow ul li {
          display: table-cell; } }
  @media only screen and (min-width: 992px) {
    .filterrow {
      display: block; } }

.featured-page-wrapper .workgrid {
  margin: 15px 0; }
  .featured-page-wrapper .workgrid img {
    width: 100%;
    display: block;
    -webkit-transition: all 5s ease;
    -moz-transition: all 5s ease;
    transition: all 5s ease;
    -moz-transition-delay: 0;
    -webkit-transition-delay: 0;
    transition-delay: 0; }
  .featured-page-wrapper .workgrid:hover img {
    transform: scale(1.5); }
  .featured-page-wrapper .workgrid:hover a {
    opacity: 1; }
  .featured-page-wrapper .workgrid a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    -moz-transition-delay: 0;
    -webkit-transition-delay: 0;
    transition-delay: 0; }
    .featured-page-wrapper .workgrid a .text {
      color: #fff;
      width: 100%;
      padding-right: 20px;
      padding-left: 20px;
      text-align: center;
      position: absolute;
      bottom: 10%; }
      .featured-page-wrapper .workgrid a .text .title {
        font-size: 20px;
        font-weight: 600; }
      .featured-page-wrapper .workgrid a .text .learnmore {
        color: #DA291C;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 10px;
        display: block; }
        @media only screen and (min-width: 992px) {
          .featured-page-wrapper .workgrid a .text .learnmore {
            margin-top: 26px; } }

.ajax-load-more-wrap {
  width: 100%; }

.filtercasestudysection {
  display: none; }
  .filtercasestudysection .gridwrapper {
    display: none; }
  .filtercasestudysection.active {
    display: block; }

.single-case-study .menu-item-33 a {
  color: #000 !important;
  text-decoration: none; }

.casestudytemplate .container.casestudytopcontainer {
  padding: 0; }
  @media only screen and (min-width: 992px) {
    .casestudytemplate .container.casestudytopcontainer {
      padding: 0 15px; } }
.casestudytemplate .owl-carousel {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }
  .casestudytemplate .owl-carousel img {
    width: 100%;
    height: auto;
    display: block; }
  .casestudytemplate .owl-carousel .owl-dots {
    bottom: 10px;
    right: 20px; }
  @media only screen and (min-width: 992px) {
    .casestudytemplate .owl-carousel .owl-next {
      right: -50px; }
    .casestudytemplate .owl-carousel .owl-prev {
      left: -50px; } }
.casestudytemplate .titlebar {
  background-color: #000;
  color: #fff;
  font-size: 20px;
  padding: 20px 25px;
  margin-bottom: 50px; }
  .casestudytemplate .titlebar h1 {
    font-size: 20px;
    color: #fff;
    display: inline-block;
    vertical-align: middle; }
  .casestudytemplate .titlebar span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px; }
    @media only screen and (min-width: 992px) {
      .casestudytemplate .titlebar span {
        font-size: 20px; } }
  .casestudytemplate .titlebar .share-links {
    display: inline-block; }
    .casestudytemplate .titlebar .share-links .crafty-social-buttons {
      margin: 0; }
      .casestudytemplate .titlebar .share-links .crafty-social-buttons ul li {
        margin: 0;
        vertical-align: middle; }
        .casestudytemplate .titlebar .share-links .crafty-social-buttons ul li a {
          display: block;
          width: 30px;
          height: 30px;
          box-sizing: border-box;
          background-position: center center;
          background-repeat: no-repeat; }
          .casestudytemplate .titlebar .share-links .crafty-social-buttons ul li a.csb-email {
            background-image: url("images/emailwhite.png");
            margin: 0 10px; }
          .casestudytemplate .titlebar .share-links .crafty-social-buttons ul li a.csb-linkedin {
            background-image: url("images/linkedinicon.png");
            margin: 0 10px; }
          .casestudytemplate .titlebar .share-links .crafty-social-buttons ul li a.csb-twitter {
            background-image: url("images/twittericon.png");
            margin: 0 10px; }
          .casestudytemplate .titlebar .share-links .crafty-social-buttons ul li a.csb-facebook, .casestudytemplate .titlebar .share-links .crafty-social-buttons ul li a.csb-pinterest {
            display: none !important;
            width: 0px !important; }
          .casestudytemplate .titlebar .share-links .crafty-social-buttons ul li a:hover {
            opacity: 0.8; }
          .casestudytemplate .titlebar .share-links .crafty-social-buttons ul li a img {
            display: none; }
.casestudytemplate .casestudycontent {
  margin-bottom: 50px; }
  .casestudytemplate .casestudycontent p {
    padding-bottom: 20px; }
  .casestudytemplate .casestudycontent h2 {
    font-size: 25px;
    color: #DA291C;
    margin-bottom: 20px; }
  .casestudytemplate .casestudycontent ul {
    list-style: disc;
    padding-left: 20px; }
    .casestudytemplate .casestudycontent ul li {
      margin-bottom: 20px; }
.casestudytemplate .nextprevbtns {
  padding: 50px 0; }
  .casestudytemplate .nextprevbtns .prevbtn:hover {
    color: #3b3b3b; }
    .casestudytemplate .nextprevbtns .prevbtn:hover:before {
      transform: translateX(-10px); }
  .casestudytemplate .nextprevbtns .prevbtn:before {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    content: '\f060';
    font-family: 'Fontawesome';
    color: #DA291C;
    font-weight: 100;
    font-size: 20px;
    text-align: right;
    width: 33px;
    height: 30px;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px; }
  .casestudytemplate .nextprevbtns .nextbtn:hover {
    color: #3b3b3b; }
    .casestudytemplate .nextprevbtns .nextbtn:hover:after {
      transform: translateX(10px); }
  .casestudytemplate .nextprevbtns .nextbtn:after {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    content: '\f061';
    font-family: 'Fontawesome';
    color: #DA291C;
    width: 33px;
    height: 30px;
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    font-weight: 100;
    font-size: 20px; }

.newcasestudytemplate a[data-fancybox] {
  display: block;
  position: relative; }
  .newcasestudytemplate a[data-fancybox]:after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Pro';
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 0px;
    right: 0px; }
  .newcasestudytemplate a[data-fancybox] img {
    display: block; }
.newcasestudytemplate .text-container p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 20px; }
  .newcasestudytemplate .text-container p strong {
    font-family: 'Graphik-Bold', sans-serif; }
.newcasestudytemplate .row {
  padding-bottom: 45px; }
  @media only screen and (min-width: 992px) {
    .newcasestudytemplate .row {
      padding-bottom: 60px; } }
@media only screen and (min-width: 992px) {
  .newcasestudytemplate .capabilitieslist {
    padding-bottom: 7px; } }
.newcasestudytemplate h2.subhead {
  font-size: 28px;
  line-height: 1.4;
  padding-bottom: 0;
  padding-top: 0;
  padding-right: 20px;
  font-family: 'Graphik-Semibold', sans-serif;
  font-weight: normal;
  margin-bottom: 80px; }
  .newcasestudytemplate h2.subhead strong {
    color: #DA291C;
    font-weight: normal; }
  @media only screen and (min-width: 992px) {
    .newcasestudytemplate h2.subhead {
      font-size: 33px; } }
.newcasestudytemplate h3 {
  font-size: 25px;
  margin-bottom: 30px;
  font-family: 'Graphik-Semibold', sans-serif;
  font-weight: normal; }
  .newcasestudytemplate h3 a {
    display: block;
    color: #DA291C;
    text-decoration: underline; }
.newcasestudytemplate .solutionblock {
  margin-top: 80px; }
.newcasestudytemplate .casestudycontent p {
  margin-bottom: 20px; }
.newcasestudytemplate .introimage {
  width: 100%;
  height: auto; }
.newcasestudytemplate .resultsholder {
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 50px 20px;
  margin-top: 60px; }
  @media only screen and (min-width: 992px) {
    .newcasestudytemplate .resultsholder {
      padding: 100px 50px; } }
  .newcasestudytemplate .resultsholder h2,
  .newcasestudytemplate .resultsholder h3 {
    font-size: 25px;
    color: #DA291C; }
  .newcasestudytemplate .resultsholder p {
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: 'Graphik-Semibold', sans-serif;
    line-height: 1.2;
    font-size: 28px; }
    @media only screen and (min-width: 992px) {
      .newcasestudytemplate .resultsholder p {
        font-size: 33px; } }
.newcasestudytemplate .mediaone {
  margin-bottom: 45px; }
  @media only screen and (min-width: 992px) {
    .newcasestudytemplate .mediaone {
      margin-bottom: 0; } }
.newcasestudytemplate .readytostart {
  text-align: center;
  background-color: #000;
  padding: 70px 0 50px;
  margin: 50px 0 90px;
  font-family: 'Graphik-Medium';
  font-size: 25px;
  color: #fff;
  line-height: 1.5; }
  .newcasestudytemplate .readytostart .challengesheadline {
    margin-bottom: 20px; }
  .newcasestudytemplate .readytostart .capabilityheadline {
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'Graphik-Medium';
    font-weight: normal; }
  .newcasestudytemplate .readytostart ul {
    font-family: 'PT Serif', serif;
    margin-top: 40px; }
    .newcasestudytemplate .readytostart ul li {
      list-style: none; }
      .newcasestudytemplate .readytostart ul li a {
        color: #fff;
        margin-top: 10px;
        padding: 5px 0;
        font-size: 16px;
        text-decoration: none;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
        .newcasestudytemplate .readytostart ul li a:hover {
          color: #DA291C; }
    @media only screen and (min-width: 992px) {
      .newcasestudytemplate .readytostart ul {
        margin-top: 0; } }
  .newcasestudytemplate .readytostart a {
    display: block;
    margin-top: 20px;
    color: #fff;
    text-decoration: none; }
    .newcasestudytemplate .readytostart a:hover {
      color: #DA291C; }
    .newcasestudytemplate .readytostart a:after {
      content: ">";
      color: #DA291C;
      margin-left: 8px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
  @media only screen and (min-width: 992px) {
    .newcasestudytemplate .readytostart {
      text-align: left; }
      .newcasestudytemplate .readytostart a:hover:after {
        margin-left: 12px; }
      .newcasestudytemplate .readytostart .challengesheadline {
        margin-top: 0; } }
.newcasestudytemplate .relatedwork img {
  width: 100%;
  height: auto; }

.singleblogtemplate .titlerow {
  text-align: left;
  padding-bottom: 50px; }
  .singleblogtemplate .titlerow h1 {
    margin-bottom: 40px; }
.singleblogtemplate .postdate {
  display: inline-block;
  vertical-align: top;
  line-height: 40px;
  margin-right: 10px; }
  .singleblogtemplate .postdate i {
    font-weight: 500;
    margin-right: 10px; }
.singleblogtemplate .sharelinks {
  display: inline-block;
  vertical-align: middle; }
.singleblogtemplate .featuredimage {
  margin-bottom: 125px; }
  .singleblogtemplate .featuredimage img {
    width: 100vw;
    height: auto; }
.singleblogtemplate .dapost {
  padding-top: 50px;
  padding-bottom: 125px; }
  .singleblogtemplate .dapost h2 {
    padding-top: 80px; }
  .singleblogtemplate .dapost h3 {
    margin-top: 60px; }
  .singleblogtemplate .dapost a[data-fancybox] {
    display: block;
    position: relative; }
    .singleblogtemplate .dapost a[data-fancybox]:after {
      content: '\f00e';
      font-family: 'Font Awesome 5 Pro';
      color: #fff;
      font-weight: 400;
      font-size: 20px;
      width: 30px;
      height: 30px;
      text-align: center;
      line-height: 30px;
      background-color: rgba(0, 0, 0, 0.8);
      position: absolute;
      bottom: 0px;
      right: 0px; }
    .singleblogtemplate .dapost a[data-fancybox] img {
      display: block; }
.singleblogtemplate .parallaxParent {
  height: 580px;
  overflow: hidden;
  display: none; }
  @media only screen and (min-width: 992px) {
    .singleblogtemplate .parallaxParent {
      display: block; } }
.singleblogtemplate .parallaxParent > * {
  height: 650px;
  position: relative;
  top: -200px;
  background-repeat: no-repeat;
  background-size: cover; }
.singleblogtemplate .mobileheader {
  display: block; }
  .singleblogtemplate .mobileheader img {
    width: 100%;
    height: auto; }
  @media only screen and (min-width: 992px) {
    .singleblogtemplate .mobileheader {
      display: none; } }

.blog .owl-carousel {
  margin-bottom: 50px; }
  .blog .owl-carousel .owl-dots {
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
    right: 0;
    bottom: -20px; }
    .blog .owl-carousel .owl-dots .owl-dot {
      background: #f6f6f6; }
      .blog .owl-carousel .owl-dots .owl-dot.active {
        background: #DA291C; }
.blog .blogfeatureholder {
  position: relative;
  display: none; }
  .blog .blogfeatureholder .blogfeatureimage {
    max-height: 580px;
    overflow: hidden;
    position: relative;
    z-index: 1; }
    .blog .blogfeatureholder .blogfeatureimage img {
      max-width: none;
      width: 100%;
      height: auto;
      display: block; }
  .blog .blogfeatureholder .blogfeaturecontent {
    z-index: 2;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 40px 27px 20px; }
    .blog .blogfeatureholder .blogfeaturecontent h3 {
      font-size: 25px;
      color: #fff;
      margin-bottom: 20px; }
    .blog .blogfeatureholder .blogfeaturecontent .excerptcontent {
      margin-bottom: 25px; }
    @media only screen and (min-width: 992px) {
      .blog .blogfeatureholder .blogfeaturecontent {
        position: absolute;
        bottom: 40px;
        background-color: rgba(0, 0, 0, 0.8);
        width: 70%;
        padding: 40px 27px 20px 18%; } }

.blogpostblock .postimagebutton {
  display: block;
  overflow: hidden; }
  .blogpostblock .postimagebutton .postthumb img {
    display: block;
    margin: 0 auto;
    transform: scale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
  .blogpostblock .postimagebutton:hover .postthumb img {
    transform: scale(1.1); }
.blogpostblock .blogcontentblock {
  position: relative;
  padding-top: 40px; }
  .blogpostblock .blogcontentblock .meta {
    display: none;
    background-color: #DA291C;
    color: #fff;
    position: absolute;
    top: -25px;
    left: 20px;
    width: 166px;
    padding: 8px 10px;
    text-align: left;
    font-weight: 600;
    line-height: 1;
    font-size: 14px; }
    @media only screen and (min-width: 992px) {
      .blogpostblock .blogcontentblock .meta {
        display: inline-block; } }
  .blogpostblock .blogcontentblock .excerptholder {
    min-height: 200px; }
.blogpostblock .button, .blogpostblock .alm-load-more-btn {
  margin: 35px 0 60px;
  color: #000;
  font-size: 16px; }
  .blogpostblock .button:after, .blogpostblock .alm-load-more-btn:after {
    content: '>';
    color: #DA291C;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
  .blogpostblock .button:hover, .blogpostblock .alm-load-more-btn:hover {
    color: #DA291C; }
    .blogpostblock .button:hover:after, .blogpostblock .alm-load-more-btn:hover:after {
      margin-left: 12px; }

.category .mobiletitle {
  margin-bottom: 20px;
  display: block;
  font-size: 28px; }
  .category .mobiletitle .title {
    font-size: 14px;
    display: block; }
  @media only screen and (min-width: 992px) {
    .category .mobiletitle {
      display: none; } }

#contactwrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999;
  display: block;
  pointer-events: none;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: transparent; }
  #contactwrapper.active {
    background-color: rgba(0, 0, 0, 0.8);
    pointer-events: all; }

#contactslide,
#footeremailslide,
#resumeslide {
  position: fixed;
  -webkit-backface-visibility: hidden;
  top: -100vh;
  left: 0;
  width: 100vw;
  z-index: 12;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  #contactslide .topic,
  #footeremailslide .topic,
  #resumeslide .topic {
    display: none; }
  #contactslide .contactpane,
  #footeremailslide .contactpane,
  #resumeslide .contactpane {
    height: 90vh;
    display: none;
    overflow: scroll;
    background-color: #fff;
    box-shadow: -0.14px 3.998px 125px 0 rgba(0, 0, 0, 0.28);
    padding: 40px 10px;
    color: #3b3b3b; }
    @media only screen and (min-width: 992px) {
      #contactslide .contactpane,
      #footeremailslide .contactpane,
      #resumeslide .contactpane {
        padding: 40px;
        height: 100vh; } }
    #contactslide .contactpane p,
    #footeremailslide .contactpane p,
    #resumeslide .contactpane p {
      margin-bottom: 20px; }
    #contactslide .contactpane .closecontact,
    #footeremailslide .contactpane .closecontact,
    #resumeslide .contactpane .closecontact {
      color: #DA291C;
      background-color: #fff;
      text-align: center;
      font-family: 'Graphik-Medium';
      font-size: 15px;
      line-height: 45px;
      border-radius: 100%;
      border: 2px solid #DA291C;
      width: 45px;
      height: 45px;
      display: block;
      position: absolute;
      z-index: 2;
      top: 50px;
      right: 40px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
      #contactslide .contactpane .closecontact:hover,
      #footeremailslide .contactpane .closecontact:hover,
      #resumeslide .contactpane .closecontact:hover {
        color: #fff;
        background-color: #DA291C; }
    #contactslide .contactpane h2,
    #footeremailslide .contactpane h2,
    #resumeslide .contactpane h2 {
      font-size: 35px;
      margin-bottom: 20px;
      white-space: normal !important; }
      @media only screen and (min-width: 992px) {
        #contactslide .contactpane h2,
        #footeremailslide .contactpane h2,
        #resumeslide .contactpane h2 {
          font-size: 75px; } }
  #contactslide.active,
  #footeremailslide.active,
  #resumeslide.active {
    top: 0; }
    #contactslide.active .contactpane,
    #footeremailslide.active .contactpane,
    #resumeslide.active .contactpane {
      display: block; }

#footerchat {
  background-color: #000; }
  #footerchat .row {
    color: #fff;
    text-align: center;
    font-family: 'Graphik-Medium';
    font-size: 25px;
    line-height: 1.5;
    padding-top: 80px;
    padding-bottom: 80px; }
  #footerchat .btnholder {
    display: block;
    text-align: center; }
  #footerchat a {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    position: relative; }
    #footerchat a:hover {
      color: #DA291C; }
      #footerchat a:hover:after {
        right: -24px; }
    #footerchat a:after {
      content: ">";
      color: #DA291C;
      position: absolute;
      top: 0;
      right: -20px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
  #footerchat.inverted {
    background-color: #fff; }
    #footerchat.inverted .row {
      color: #3b3b3b; }
    #footerchat.inverted a {
      color: #3b3b3b; }
      #footerchat.inverted a:hover {
        color: #DA291C; }

#footer {
  background-color: #DA291C;
  position: relative; }
  #footer .container {
    z-index: 2;
    position: relative; }
  #footer .redoverlay {
    background-image: -moz-linear-gradient(-120deg, #ee2e24 1%, #8c0a15 100%);
    background-image: -webkit-linear-gradient(-120deg, #ee2e24 1%, #8c0a15 100%);
    background-image: -ms-linear-gradient(-120deg, #ee2e24 1%, #8c0a15 100%);
    opacity: 0.90;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  #footer .mapcontentwrapper {
    text-align: left; }
    #footer .mapcontentwrapper h1,
    #footer .mapcontentwrapper h3 {
      color: #fff; }
      #footer .mapcontentwrapper h1 span,
      #footer .mapcontentwrapper h3 span {
        color: #212121; }
    #footer .mapcontentwrapper .locationblock {
      display: inline-block;
      width: 49%;
      float: left;
      padding-top: 70px; }
      #footer .mapcontentwrapper .locationblock .address {
        display: block;
        color: #fff;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.6; }
        #footer .mapcontentwrapper .locationblock .address h3 {
          margin-bottom: 10px;
          font-size: 25px;
          font-family: 'Graphik-Semibold', sans-serif;
          font-weight: 500; }
      #footer .mapcontentwrapper .locationblock .contactbuttons {
        display: block;
        margin-top: 20px; }
        #footer .mapcontentwrapper .locationblock .contactbuttons .email,
        #footer .mapcontentwrapper .locationblock .contactbuttons .location {
          display: inline-block;
          vertical-align: middle;
          height: 24px;
          width: 24px;
          margin: 0 10px 0 0;
          cursor: pointer; }
          #footer .mapcontentwrapper .locationblock .contactbuttons .email svg,
          #footer .mapcontentwrapper .locationblock .contactbuttons .location svg {
            fill: #fff;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            transition: all 300ms ease; }
          #footer .mapcontentwrapper .locationblock .contactbuttons .email:hover svg,
          #footer .mapcontentwrapper .locationblock .contactbuttons .location:hover svg {
            fill: #000; }
      @media only screen and (min-width: 992px) {
        #footer .mapcontentwrapper .locationblock {
          width: 20%; }
          #footer .mapcontentwrapper .locationblock .address {
            margin-bottom: 0; } }
  #footer .mapholder {
    display: none; }
  #footer .footerlinks {
    padding-top: 80px; }
    #footer .footerlinks .row {
      min-height: 130px; }
    #footer .footerlinks .linkwrapper {
      text-align: left; }
      @media only screen and (min-width: 992px) {
        #footer .footerlinks .linkwrapper {
          text-align: center; } }
    #footer .footerlinks .copyrightwrapper {
      text-align: left;
      padding-bottom: 20px; }
      #footer .footerlinks .copyrightwrapper .copyright {
        display: block;
        padding-bottom: 60px;
        font-size: 16px;
        font-family: 'Graphik-Medium', sans-serif;
        font-weight: normal; }
      @media only screen and (min-width: 992px) {
        #footer .footerlinks .copyrightwrapper {
          text-align: center; } }
    #footer .footerlinks .footerlogowrapper {
      text-align: left;
      padding-bottom: 20px; }
      #footer .footerlinks .footerlogowrapper .logolink {
        display: inline-block;
        transform: scale(1.6);
        transform-origin: bottom left; }
        #footer .footerlinks .footerlogowrapper .logolink #logoleft {
          display: block; }
        #footer .footerlinks .footerlogowrapper .logolink #logocenter {
          display: none; }
        @media only screen and (min-width: 992px) {
          #footer .footerlinks .footerlogowrapper .logolink {
            transform: scale(1.2);
            transform-origin: bottom center; }
            #footer .footerlinks .footerlogowrapper .logolink #logoleft {
              display: none; }
            #footer .footerlinks .footerlogowrapper .logolink #logocenter {
              display: block; } }
      @media only screen and (min-width: 992px) {
        #footer .footerlinks .footerlogowrapper {
          text-align: center; } }
    #footer .footerlinks .footmenu {
      margin-bottom: 40px;
      text-align: left; }
      #footer .footerlinks .footmenu a {
        color: #fff;
        margin: 0 30px; }
        #footer .footerlinks .footmenu a:first-child {
          margin-left: 0; }
        #footer .footerlinks .footmenu a:last-child {
          margin-right: 0; }
      @media only screen and (min-width: 992px) {
        #footer .footerlinks .footmenu {
          text-align: center; } }
    #footer .footerlinks .justify-content-center {
      -webkit-box-pack: left !important;
      -ms-flex-pack: left !important;
      justify-content: left !important; }
      @media only screen and (min-width: 992px) {
        #footer .footerlinks .justify-content-center {
          -webkit-box-pack: center !important;
          -ms-flex-pack: center !important;
          justify-content: center !important; } }
    #footer .footerlinks .linkrow {
      width: 100%; }
      #footer .footerlinks .linkrow .footersocials {
        margin-bottom: 28px;
        display: block; }
      #footer .footerlinks .linkrow .link {
        display: inline-block;
        vertical-align: middle;
        color: #fff;
        margin-right: 10px; }
      #footer .footerlinks .linkrow a.link {
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
        #footer .footerlinks .linkrow a.link:hover {
          text-decoration: none;
          color: #000; }
      #footer .footerlinks .linkrow a.link.social svg {
        fill: #fff;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
      #footer .footerlinks .linkrow a.link.social:hover {
        text-decoration: none;
        opacity: 1; }
        #footer .footerlinks .linkrow a.link.social:hover svg {
          fill: #000; }

.home #footer .mapcontentwrapper,
.page-contact-us #footer .mapcontentwrapper {
  display: block; }

.page-home {
  background-color: #fff; }
  .page-home .blogsection {
    z-index: 1;
    position: relative;
    background: #fff;
    padding-top: 50px; }
    .page-home .blogsection .blogpostblock {
      color: #3b3b3b;
      margin-bottom: 40px; }
      .page-home .blogsection .blogpostblock a {
        display: block;
        font-size: 16px;
        font-family: 'Graphik-Semibold', sans-serif;
        color: #3b3b3b;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease;
        margin-top: 20px; }
        .page-home .blogsection .blogpostblock a:after {
          content: '>';
          color: #DA291C;
          display: inline-block;
          vertical-align: middle;
          margin-left: 8px;
          -webkit-transition: all 300ms ease;
          -moz-transition: all 300ms ease;
          transition: all 300ms ease; }
        .page-home .blogsection .blogpostblock a:hover {
          color: #DA291C; }
          .page-home .blogsection .blogpostblock a:hover:after {
            margin-left: 12px; }
        .page-home .blogsection .blogpostblock a.postimagebutton:after {
          display: none; }
    @media only screen and (min-width: 992px) {
      .page-home .blogsection {
        padding-top: 100px; }
        .page-home .blogsection .blogpostblock {
          margin-bottom: 100px; } }
  .page-home .casestudycarousel {
    z-index: 1;
    position: relative;
    background: #fff;
    padding-top: 100px; }
    .page-home .casestudycarousel .owl-nav {
      display: none; }
      @media only screen and (min-width: 992px) {
        .page-home .casestudycarousel .owl-nav {
          display: block; } }
    .page-home .casestudycarousel .owl-dots {
      text-align: center;
      position: absolute;
      bottom: 10px;
      left: 0;
      display: block;
      width: 100%; }
      @media only screen and (min-width: 992px) {
        .page-home .casestudycarousel .owl-dots {
          bottom: 48px; } }
    .page-home .casestudycarousel .slidepane .panecontent {
      -webkit-transform: translate3d(0, 0, 0);
      position: absolute;
      bottom: 30px;
      left: 0;
      width: 100%;
      text-align: center; }
      @media only screen and (min-width: 992px) {
        .page-home .casestudycarousel .slidepane .panecontent {
          bottom: 100px; } }
      .page-home .casestudycarousel .slidepane .panecontent .overlaycontent {
        position: relative;
        display: inline-block;
        text-align: left;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 35px 70px 35px 30px;
        width: 90%;
        max-width: 600px;
        color: #fff; }
        .page-home .casestudycarousel .slidepane .panecontent .overlaycontent h4 {
          font-size: 25px;
          font-family: 'Graphik-Bold', sans-serif; }
        .page-home .casestudycarousel .slidepane .panecontent .overlaycontent .redtab {
          width: 40px;
          background-color: #DA291C;
          height: 100%;
          display: block;
          position: absolute;
          top: 0;
          right: 0;
          text-align: center;
          font-size: 24px; }
          .page-home .casestudycarousel .slidepane .panecontent .overlaycontent .redtab span {
            height: 100%;
            width: 1px;
            display: inline-block;
            vertical-align: middle; }
          .page-home .casestudycarousel .slidepane .panecontent .overlaycontent .redtab i {
            display: inline-block;
            vertical-align: middle; }
        .page-home .casestudycarousel .slidepane .panecontent .overlaycontent .excerpt {
          display: block;
          line-height: 1.3; }
          @media only screen and (min-width: 768px) {
            .page-home .casestudycarousel .slidepane .panecontent .overlaycontent .excerpt {
              display: none; } }
          @media only screen and (min-width: 992px) {
            .page-home .casestudycarousel .slidepane .panecontent .overlaycontent .excerpt {
              display: block; } }
    .page-home .casestudycarousel .slidepane .imageholder .desktopimage {
      display: none; }
    .page-home .casestudycarousel .slidepane .imageholder .mobileimage {
      display: block; }
    @media only screen and (min-width: 992px) {
      .page-home .casestudycarousel .slidepane .imageholder .desktopimage {
        display: block;
        width: 100%; }
      .page-home .casestudycarousel .slidepane .imageholder .mobileimage {
        display: none; } }
    .page-home .casestudycarousel .slidepane .videoholder {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      -webkit-transform: translate3d(0, 0, 0); }
    .page-home .casestudycarousel .slidepane video {
      /* Make video to at least 100% wide and tall */
      min-width: 100%;
      min-height: 100%;
      z-index: 1;
      /* Setting width & height to auto prevents the browser from stretching or squishing the video */
      width: auto;
      height: auto;
      /* Center the video */
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

.page-practices .titlerow h1 {
  margin-bottom: 40px;
  line-height: 1; }
.page-practices ul.pagenav {
  margin: 0;
  padding: 0; }
  .page-practices ul.pagenav li {
    display: inline-block;
    vertical-align: top;
    width: 40vw; }
    .page-practices ul.pagenav li a {
      color: #3b3b3b;
      line-height: 1.3;
      font-size: 18px;
      font-family: 'Graphik-Semibold', sans-serif;
      display: block;
      margin-right: 50px;
      margin-bottom: 20px; }
      .page-practices ul.pagenav li a.active, .page-practices ul.pagenav li a:hover {
        border-bottom: 4px solid #DA291C; }
    @media only screen and (min-width: 992px) {
      .page-practices ul.pagenav li {
        width: auto; }
        .page-practices ul.pagenav li a {
          font-size: 25px; } }
.page-practices .sectionheader {
  margin-top: 100px;
  margin-bottom: 50px; }
  .page-practices .sectionheader#strategy {
    margin-top: 40px; }
  .page-practices .sectionheader h2 {
    font-size: 45px;
    margin-bottom: 20px; }
  .page-practices .sectionheader p {
    font-family: 'Graphik-Medium';
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 0; }
.page-practices .tabbottom {
  border-bottom: solid 1px #e1e1e1; }
.page-practices .tabwrapper {
  display: block;
  border-top: solid 1px #e1e1e1;
  border-left: solid 1px #e1e1e1;
  border-right: solid 1px #e1e1e1; }
  .page-practices .tabwrapper h5 {
    padding: 38px 60px 38px 30px;
    font-size: 18px;
    font-family: 'Graphik-Semibold', sans-serif;
    color: #DA291C;
    cursor: pointer;
    background-image: url("images/circle-arrow-down.png");
    background-repeat: no-repeat;
    background-position: 96% 45%; }
    .page-practices .tabwrapper h5.active {
      background-image: url("images/circle-arrow-up.png"); }
    @media only screen and (min-width: 992px) {
      .page-practices .tabwrapper h5 {
        font-size: 25px; } }
  .page-practices .tabwrapper .tabcontent {
    padding: 0 30px 38px;
    display: none; }
    .page-practices .tabwrapper .tabcontent p {
      margin-bottom: 20px; }
    .page-practices .tabwrapper .tabcontent a {
      display: block;
      font-size: 16px;
      font-family: 'Graphik-Semibold', sans-serif;
      color: #3b3b3b;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease;
      margin-top: 0; }
      .page-practices .tabwrapper .tabcontent a:after {
        content: '>';
        color: #DA291C;
        display: inline-block;
        vertical-align: middle;
        margin-left: 8px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
      .page-practices .tabwrapper .tabcontent a:hover {
        color: #DA291C; }
        .page-practices .tabwrapper .tabcontent a:hover:after {
          margin-left: 12px; }

.page-culture .instagramrow {
  margin-top: 50px; }
  .page-culture .instagramrow h3 {
    padding: 10px 20px;
    background-color: #DA291C;
    color: #fff;
    margin-bottom: 1px; }
.page-culture .titlerow h1 {
  font-size: 25px;
  line-height: 1.6; }
  .page-culture .titlerow h1 strong {
    color: #DA291C; }
  @media only screen and (min-width: 992px) {
    .page-culture .titlerow h1 {
      font-size: 45px; } }
.page-culture .intro {
  padding-bottom: 40px; }
  .page-culture .intro h1 {
    margin-bottom: 20px; }
  .page-culture .intro span {
    color: #DA291C;
    display: block;
    font-family: 'Graphik-Semibold'; }
.page-culture #carouselrow {
  background-color: #000;
  color: #fff;
  padding: 100px 0; }
  .page-culture #carouselrow .owl-carousel {
    padding: 0 20px; }
    @media only screen and (min-width: 992px) {
      .page-culture #carouselrow .owl-carousel {
        padding: 0 50px; } }
  .page-culture #carouselrow .owl-prev {
    left: 0;
    display: none !important; }
  .page-culture #carouselrow .owl-next {
    right: 0;
    background-image: url("images/carousel-right2.png");
    background-repeat: no-repeat;
    background-position: center center;
    transform: scale(1.8);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    .page-culture #carouselrow .owl-next:hover {
      right: -8px; }
  @media only screen and (min-width: 992px) {
    .page-culture #carouselrow .owl-prev {
      left: -20px; }
    .page-culture #carouselrow .owl-next {
      right: 0; } }
  .page-culture #carouselrow .owl-dots {
    text-align: left; }
  @media only screen and (min-width: 992px) {
    .page-culture #carouselrow .slide h1 {
      font-size: 65px; } }
  .page-culture #carouselrow .slide h2 {
    color: #DA291C; }
  .page-culture #carouselrow .slide p {
    font-size: 20px;
    line-height: 1.3; }
    @media only screen and (min-width: 992px) {
      .page-culture #carouselrow .slide p {
        font-size: 45px; } }
.page-culture #photorow .owl-prev {
  left: 50px;
  background-image: url("images/carousel-left2.png");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 100%;
  border: 2px solid #DA291C;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  .page-culture #photorow .owl-prev:hover {
    background-image: url("images/carousel-left2wht.png");
    background-color: #DA291C; }
.page-culture #photorow .owl-next {
  right: 50px;
  background-image: url("images/carousel-right2.png");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 100%;
  border: 2px solid #DA291C;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  .page-culture #photorow .owl-next:hover {
    background-image: url("images/carousel-right2wht.png");
    background-color: #DA291C; }
.page-culture #careers {
  padding-bottom: 50px; }
.page-culture .careertop {
  padding-bottom: 50px; }
  .page-culture .careertop p {
    margin-bottom: 0; }
.page-culture .joblistrow .jobbox {
  position: relative;
  box-shadow: -0.14px 3.998px 13px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 30px; }
  .page-culture .joblistrow .jobbox a {
    padding: 40px 20px 0;
    display: block;
    min-height: 560px;
    background-color: #fff;
    color: #3b3b3b;
    font-family: 'Graphik', sans-serif;
    font-size: 38px;
    line-height: 1.2; }
    .page-culture .joblistrow .jobbox a .parent {
      font-family: 'Graphik-Semibold', sans-serif;
      font-size: 21px;
      margin-bottom: 38px;
      display: block; }
    .page-culture .joblistrow .jobbox a .catname {
      font-family: 'Graphik', sans-serif;
      font-size: 38px; }
    .page-culture .joblistrow .jobbox a .linktext {
      position: absolute;
      bottom: 40px;
      left: 0;
      width: 100%;
      padding-left: 20px; }
      .page-culture .joblistrow .jobbox a .linktext span {
        display: block;
        font-size: 16px;
        font-family: 'Graphik-Semibold', sans-serif;
        color: #3b3b3b;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease;
        margin-bottom: 40px; }
        .page-culture .joblistrow .jobbox a .linktext span:after {
          content: '>';
          color: #DA291C;
          display: inline-block;
          vertical-align: middle;
          margin-left: 8px;
          -webkit-transition: all 300ms ease;
          -moz-transition: all 300ms ease;
          transition: all 300ms ease; }
    .page-culture .joblistrow .jobbox a:hover {
      background-color: #DA291C;
      color: #fff; }
      .page-culture .joblistrow .jobbox a:hover .linktext span {
        color: #fff; }
        .page-culture .joblistrow .jobbox a:hover .linktext span:after {
          color: #3b3b3b;
          margin-left: 12px; }
.page-culture .ctarow {
  padding-top: 100px; }
  .page-culture .ctarow p {
    margin-bottom: 10px; }
  .page-culture .ctarow a {
    display: block;
    font-size: 16px;
    font-family: 'Graphik-Semibold', sans-serif;
    color: #3b3b3b;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 40px; }
    .page-culture .ctarow a:after {
      content: '>';
      color: #DA291C;
      display: inline-block;
      vertical-align: middle;
      margin-left: 8px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    .page-culture .ctarow a:hover {
      color: #DA291C; }
      .page-culture .ctarow a:hover:after {
        margin-left: 12px; }

.page-about-us .content-wrapper {
  padding-bottom: 0; }
.page-about-us .introcontent .topline {
  font-size: 18px;
  font-family: 'Graphik-Medium';
  margin-bottom: 5px;
  display: block; }
.page-about-us .introcontent h1 {
  text-align: left;
  white-space: nowrap;
  color: #DA291C;
  line-height: 1; }
.page-about-us .introcontent h2 {
  font-size: 20px;
  margin: 40px 0;
  font-family: 'Graphik';
  font-weight: normal;
  line-height: 1.4; }
@media only screen and (min-width: 992px) {
  .page-about-us .introcontent .topline {
    font-size: 25px;
    margin-bottom: 10px; }
  .page-about-us .introcontent h2 {
    font-size: 45px;
    margin: 65px 0; } }
.page-about-us #jll {
  background: #000;
  color: #fff;
  padding: 120px 0; }
  .page-about-us #jll .jll_full_width_content {
    margin-top: 20px; }
    .page-about-us #jll .jll_full_width_content a {
      color: #fff;
      font-size: 16px;
      font-family: 'Graphik-Semibold'; }
      .page-about-us #jll .jll_full_width_content a:after {
        content: '>';
        color: #DA291C;
        display: inline-block;
        vertical-align: middle;
        margin-left: 8px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease; }
      .page-about-us #jll .jll_full_width_content a:hover {
        color: #DA291C; }
        .page-about-us #jll .jll_full_width_content a:hover:after {
          margin-left: 12px; }
  .page-about-us #jll h2 {
    color: inherit; }
    .page-about-us #jll h2 strong {
      color: #DA291C; }
.page-about-us #brand {
  background: #DA291C;
  color: #fff;
  padding: 8% 0;
  text-align: center;
  /* START: Accommodating for IE */
  /* END: Accommodating for IE */
  /* vertical */
    /*
			.vertical.flip-container:hover .flipper {
				-webkit-transform: rotateX(-180deg);
				-moz-transform: rotateX(-180deg);
				-ms-transform: rotateX(-180deg);
				transform: rotateX(-180deg);
			}
			*/
  /* START: Accommodating for IE */
  /* END: Accommodating for IE */ }
  .page-about-us #brand .brrtitle {
    margin-bottom: 10px; }
  .page-about-us #brand .flip-container {
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    margin-bottom: 20px;
    -ms-transform: perspective(1000px);
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d; }
  .page-about-us #brand .flip-container.hover .back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg); }
  .page-about-us #brand .flip-container.hover .front {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  .page-about-us #brand .back,
  .page-about-us #brand .flip-container,
  .page-about-us #brand .front {
    width: 100%;
    height: 32px;
    font-size: 30px;
    white-space: nowrap;
    line-height: 1.1; }
    @media only screen and (min-width: 768px) {
      .page-about-us #brand .back,
      .page-about-us #brand .flip-container,
      .page-about-us #brand .front {
        height: 52px;
        font-size: 50px; } }
    @media only screen and (min-width: 992px) {
      .page-about-us #brand .back,
      .page-about-us #brand .flip-container,
      .page-about-us #brand .front {
        height: 82px;
        font-size: 80px; } }
  .page-about-us #brand .flipper {
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 0.6s;
    -moz-transition: 0.6s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative; }
  .page-about-us #brand .back,
  .page-about-us #brand .front {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: rotateY(0deg);
    -moz-transition: 0.6s;
    -moz-transform-style: preserve-3d;
    -moz-transform: rotateY(0deg);
    -o-transition: 0.6s;
    -o-transform-style: preserve-3d;
    -o-transform: rotateY(0deg);
    -ms-transition: 0.6s;
    -ms-transform-style: preserve-3d;
    -ms-transform: rotateY(0deg);
    transition: 0.6s;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    position: absolute;
    top: 0;
    left: 0;
    cursor: ns-resize; }
  .page-about-us #brand .front {
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    background: #DA291C;
    color: #000;
    font-family: 'Graphik-Light';
    z-index: 2; }
  .page-about-us #brand .back {
    background: #DA291C;
    color: #fff;
    font-family: 'Graphik-Semibold';
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg); }
  .page-about-us #brand .vertical.flip-container {
    position: relative; }
  .page-about-us #brand .vertical .back {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    transform: rotateX(180deg); }
  .page-about-us #brand .vertical.flip-container .flipper {
    -webkit-transform-origin: 100% 213.5px;
    -moz-transform-origin: 100% 213.5px;
    -ms-transform-origin: 100% 213.5px;
    transform-origin: 100% 213.5px; }
  .page-about-us #brand .vertical.flip-container.hover .back {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg); }
  .page-about-us #brand .vertical.flip-container.hover .front {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg); }
.page-about-us #clientwelcome {
  padding: 120px 0 50px; }
  .page-about-us #clientwelcome p {
    margin-bottom: 0; }
  .page-about-us #clientwelcome h2.light {
    font-size: 18px;
    font-family: 'Graphik';
    font-weight: normal;
    line-height: 1.4; }
    .page-about-us #clientwelcome h2.light p strong {
      color: #DA291C;
      font-family: 'Graphik';
      font-weight: normal; }
  @media only screen and (min-width: 992px) {
    .page-about-us #clientwelcome h2 {
      margin-bottom: 20px; }
      .page-about-us #clientwelcome h2.light {
        font-size: 45px; } }
.page-about-us #clientgrid {
  padding-bottom: 140px; }
  .page-about-us #clientgrid img {
    max-height: 100%;
    width: auto; }
  .page-about-us #clientgrid .clientlogo {
    height: 130px;
    margin: 20px 0;
    padding-left: 30px;
    padding-right: 30px; }
.page-about-us #leadership {
  /* END: Accommodating for IE */ }
  .page-about-us #leadership .btnholder {
    display: block;
    text-align: center;
    margin-bottom: 40px; }
    @media only screen and (min-width: 992px) {
      .page-about-us #leadership .btnholder {
        display: none; } }
    .page-about-us #leadership .btnholder a {
      color: #000;
      font-size: 16px;
      font-family: 'Graphik-Semibold';
      position: relative;
      display: inline-block; }
      .page-about-us #leadership .btnholder a:after {
        content: '>';
        color: #DA291C;
        display: block;
        position: absolute;
        top: 0;
        right: -12px;
        vertical-align: middle;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        transition: all 300ms ease;
        transform: rotate(-90deg); }
      .page-about-us #leadership .btnholder a:hover {
        color: #DA291C; }
        .page-about-us #leadership .btnholder a:hover:after {
          margin-top: -3px; }
  .page-about-us #leadership h2 {
    margin-bottom: 60px; }
  .page-about-us #leadership .flip-container {
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -ms-transform: perspective(1000px);
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    margin-bottom: 40px; }
  .page-about-us #leadership .flip-container.hover .back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg); }
  .page-about-us #leadership .flip-container.hover .front {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  .page-about-us #leadership .back,
  .page-about-us #leadership .flip-container,
  .page-about-us #leadership .front {
    width: 100%;
    height: 550px; }
  .page-about-us #leadership .flipper {
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 0.6s;
    -moz-transition: 0.6s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative; }
  .page-about-us #leadership .back,
  .page-about-us #leadership .front {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: rotateY(0deg);
    -moz-transition: 0.6s;
    -moz-transform-style: preserve-3d;
    -moz-transform: rotateY(0deg);
    -o-transition: 0.6s;
    -o-transform-style: preserve-3d;
    -o-transform: rotateY(0deg);
    -ms-transition: 0.6s;
    -ms-transform-style: preserve-3d;
    -ms-transform: rotateY(0deg);
    transition: 0.6s;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    position: absolute;
    top: 0;
    left: 0; }
  .page-about-us #leadership .front {
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    background: #fff;
    z-index: 2; }
    .page-about-us #leadership .front .leadercontent {
      padding: 30px 20px 0; }
  .page-about-us #leadership .back {
    background: #DA291C;
    color: #fff;
    padding: 30px 20px 0;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    line-height: 1.5; }
    .page-about-us #leadership .back .question {
      display: block;
      font-family: 'Graphik-Semibold';
      margin-bottom: 20px; }
    .page-about-us #leadership .back .leadercontent {
      margin-top: 40px; }
      .page-about-us #leadership .back .leadercontent h4 {
        margin-bottom: 5px; }
  .page-about-us #leadership .headshot {
    max-height: 450px;
    overflow: hidden; }
    .page-about-us #leadership .headshot img {
      width: 100%;
      height: auto;
      max-width: none; }
  .page-about-us #leadership .leadercontent h4 {
    font-family: 'Graphik-Semibold';
    font-size: 25px;
    margin-bottom: 25px; }
  .page-about-us #leadership .leadercontent .tagline {
    line-height: 1.3; }

.page-guidelines-360 .titlerow h2 {
  color: #DA291C; }
.page-guidelines-360 .imagerow {
  padding-top: 50px;
  padding-bottom: 120px; }
.page-guidelines-360 #carouselrow {
  background-color: #000;
  color: #fff;
  padding: 100px 0;
  margin-bottom: 50px; }
  .page-guidelines-360 #carouselrow .owl-carousel {
    padding: 0 20px; }
    @media only screen and (min-width: 992px) {
      .page-guidelines-360 #carouselrow .owl-carousel {
        padding: 0 50px; } }
  .page-guidelines-360 #carouselrow .owl-prev {
    left: 0;
    display: none !important; }
  .page-guidelines-360 #carouselrow .owl-next {
    right: 0;
    background-image: url("images/carousel-right2.png");
    background-repeat: no-repeat;
    background-position: center center;
    transform: scale(1.5);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
    .page-guidelines-360 #carouselrow .owl-next:hover {
      right: -8px; }
  @media only screen and (min-width: 992px) {
    .page-guidelines-360 #carouselrow .owl-prev {
      left: -20px; }
    .page-guidelines-360 #carouselrow .owl-next {
      right: 0; } }
  .page-guidelines-360 #carouselrow .owl-dots {
    text-align: left; }
  @media only screen and (min-width: 992px) {
    .page-guidelines-360 #carouselrow .slide h1 {
      font-size: 65px; } }
  .page-guidelines-360 #carouselrow .slide h2 {
    color: #DA291C; }
  .page-guidelines-360 #carouselrow .slide p {
    font-size: 20px;
    line-height: 1.3; }
    @media only screen and (min-width: 992px) {
      .page-guidelines-360 #carouselrow .slide p {
        font-size: 45px; } }
.page-guidelines-360 #closing {
  margin: 100px 0 50px 0; }
.page-guidelines-360 .btnholder {
  display: block;
  text-align: left; }
  .page-guidelines-360 .btnholder a {
    display: inline-block;
    margin-top: 20px;
    color: #000;
    position: relative;
    font-family: 'Graphik-Medium';
    font-size: 25px;
    line-height: 1.5; }
    .page-guidelines-360 .btnholder a:hover {
      color: #DA291C; }
      .page-guidelines-360 .btnholder a:hover:after {
        right: -24px; }
    .page-guidelines-360 .btnholder a:after {
      content: ">";
      color: #DA291C;
      position: absolute;
      top: 0;
      right: -20px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }

.prospecttemplate .pagecontent {
  padding-top: 0px; }
  @media only screen and (min-width: 992px) {
    .prospecttemplate .pagecontent {
      padding-top: 50px; } }
.prospecttemplate .welcomerow {
  margin-top: 90px;
  margin-bottom: 120px; }
  .prospecttemplate .welcomerow .downloadpres {
    display: block;
    font-size: 20px;
    font-family: 'Graphik-Semibold', sans-serif;
    color: #3b3b3b;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-top: 20px;
    background: url(images/pdficon.png) no-repeat left center;
    line-height: 60px;
    padding-left: 60px; }
    .prospecttemplate .welcomerow .downloadpres:after {
      content: '>';
      color: #DA291C;
      display: inline-block;
      vertical-align: middle;
      margin-left: 8px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
    .prospecttemplate .welcomerow .downloadpres:hover {
      color: #DA291C; }
      .prospecttemplate .welcomerow .downloadpres:hover:after {
        margin-left: 12px; }
.prospecttemplate .clientwelcome {
  margin-bottom: 0px;
  color: #DA291C; }
.prospecttemplate .casestudylink {
  display: block;
  font-size: 16px;
  font-family: 'Graphik-Semibold', sans-serif;
  color: #3b3b3b;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-top: 20px;
  margin-bottom: 50px; }
  .prospecttemplate .casestudylink:after {
    content: '>';
    color: #DA291C;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease; }
  .prospecttemplate .casestudylink:hover {
    color: #DA291C; }
    .prospecttemplate .casestudylink:hover:after {
      margin-left: 12px; }
  @media only screen and (min-width: 1200px) {
    .prospecttemplate .casestudylink {
      margin-bottom: 0px; } }
.prospecttemplate .howitrelates {
  font-size: 18px;
  font-family: 'Graphik-Semibold', sans-serif;
  color: #DA291C; }
.prospecttemplate .casestudysidetitle, .prospecttemplate .personalrooster {
  margin-top: 50px; }
.prospecttemplate .leadercontent {
  padding: 30px 20px 0; }
  .prospecttemplate .leadercontent h4 {
    font-family: 'Graphik-Semibold';
    font-size: 25px;
    margin-bottom: 0px; }
  .prospecttemplate .leadercontent .tagline {
    line-height: 1.3; }
.prospecttemplate .quote {
  font-size: 45px;
  font-family: 'Graphik-Thin', sans-serif;
  line-height: 1.2;
  margin-bottom: 40px;
  margin-top: 60px;
  padding-left: 15px;
  padding-right: 15px; }
.prospecttemplate .contactinfo .email, .prospecttemplate .contactinfo .liaccount {
  display: block;
  line-height: 1; }
  .prospecttemplate .contactinfo .email span, .prospecttemplate .contactinfo .liaccount span {
    display: inline-block;
    vertical-align: top;
    padding-top: 2px;
    padding-left: 5px;
    font-family: 'Graphik-Medium', sans-serif; }
  .prospecttemplate .contactinfo .email svg, .prospecttemplate .contactinfo .liaccount svg {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: center;
    fill: #DA291C; }
    .prospecttemplate .contactinfo .email svg .st0, .prospecttemplate .contactinfo .liaccount svg .st0 {
      fill: #DA291C; }
.prospecttemplate .contactinfo .phone {
  display: block;
  color: #DA291C;
  margin-top: 10px; }
  .prospecttemplate .contactinfo .phone span {
    display: inline-block;
    vertical-align: top;
    margin-top: -5px;
    padding-left: 5px;
    font-family: 'Graphik-Medium', sans-serif; }
  .prospecttemplate .contactinfo .phone svg {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: center;
    fill: #DA291C; }

.errorcontent {
  padding-top: 0px; }
  .errorcontent .birdholder {
    margin: 0 auto 10px auto;
    height: 400px;
    width: 200px;
    padding-top: 139px;
    background: url(images/errorrooster.svg) no-repeat center center;
    text-align: left; }
  .errorcontent .holder {
    display: inline-block;
    vertical-align: top; }
    .errorcontent .holder.left {
      margin-left: 30px; }
    .errorcontent .holder.right {
      margin-left: 13px;
      margin-top: 23px; }
    .errorcontent .holder .lefteye {
      width: 81px;
      height: 81px;
      position: relative;
      border: 1px solid #fff;
      border-radius: 100%; }
      .errorcontent .holder .lefteye #Pupil1 {
        width: 28px;
        height: 28px;
        left: 25px;
        top: 25px;
        border-radius: 100%;
        background-color: #000;
        position: relative; }
    .errorcontent .holder .righteye {
      width: 46px;
      height: 46px;
      position: relative;
      border: 1px solid #fff;
      border-radius: 100%; }
      .errorcontent .holder .righteye #Pupil2 {
        width: 22px;
        height: 22px;
        left: 10px;
        top: 10px;
        border-radius: 100%;
        background-color: #000;
        position: relative; }

.formlandingpage h1 {
  margin-top: 50px; }
.formlandingpage .pagecontent {
  padding-top: 0px; }
